diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-20 21:39:52 +0000 | 
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-20 21:39:52 +0000 | 
| commit | 7d33c5739f7e287d841d2238642bfe0e913093bd (patch) | |
| tree | 7c49d9da7fbad3c1458cf805dc058f6dc565a408 | |
| parent | f1150d3a16f9cedea0cdba10e588a91fff840223 (diff) | |
| download | bcm5719-llvm-7d33c5739f7e287d841d2238642bfe0e913093bd.tar.gz bcm5719-llvm-7d33c5739f7e287d841d2238642bfe0e913093bd.zip  | |
Don't add CFG edges for redundant conditional branches.
IR that hasn't been through SimplifyCFG can look like this:
  br i1 %b, label %r, label %r
Make sure we don't create duplicate Machine CFG edges in this case.
Fix the machine code verifier to accept conditional branches with a
single CFG edge.
llvm-svn: 162230
| -rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 20 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 5 | ||||
| -rw-r--r-- | llvm/test/CodeGen/ARM/constants.ll | 2 | 
3 files changed, 23 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index f3e310ca3e0..852c169254d 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -580,7 +580,15 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {        ++MBBI;        if (MBBI == MF->end()) {          report("MBB conditionally falls through out of function!", MBB); -      } if (MBB->succ_size() != 2) { +      } if (MBB->succ_size() == 1) { +        // A conditional branch with only one successor is weird, but allowed. +        if (&*MBBI != TBB) +          report("MBB exits via conditional branch/fall-through but only has " +                 "one CFG successor!", MBB); +        else if (TBB != *MBB->succ_begin()) +          report("MBB exits via conditional branch/fall-through but the CFG " +                 "successor don't match the actual successor!", MBB); +      } else if (MBB->succ_size() != 2) {          report("MBB exits via conditional branch/fall-through but doesn't have "                 "exactly two CFG successors!", MBB);        } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) { @@ -600,7 +608,15 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {      } else if (TBB && FBB) {        // Block conditionally branches somewhere, otherwise branches        // somewhere else. -      if (MBB->succ_size() != 2) { +      if (MBB->succ_size() == 1) { +        // A conditional branch with only one successor is weird, but allowed. +        if (FBB != TBB) +          report("MBB exits via conditional branch/branch through but only has " +                 "one CFG successor!", MBB); +        else if (TBB != *MBB->succ_begin()) +          report("MBB exits via conditional branch/branch through but the CFG " +                 "successor don't match the actual successor!", MBB); +      } else if (MBB->succ_size() != 2) {          report("MBB exits via conditional branch/branch but doesn't have "                 "exactly two CFG successors!", MBB);        } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) { diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index ae2b32969a7..f3cf7582be3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -1601,7 +1601,10 @@ void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB,    // Update successor info    addSuccessorWithWeight(SwitchBB, CB.TrueBB, CB.TrueWeight); -  addSuccessorWithWeight(SwitchBB, CB.FalseBB, CB.FalseWeight); +  // TrueBB and FalseBB are always different unless the incoming IR is +  // degenerate. This only happens when running llc on weird IR. +  if (CB.TrueBB != CB.FalseBB) +    addSuccessorWithWeight(SwitchBB, CB.FalseBB, CB.FalseWeight);    // Set NextBlock to be the MBB immediately after the current one, if any.    // This is used to avoid emitting unnecessary branches to the next block. diff --git a/llvm/test/CodeGen/ARM/constants.ll b/llvm/test/CodeGen/ARM/constants.ll index f4c1b5acef9..0ac8b48d390 100644 --- a/llvm/test/CodeGen/ARM/constants.ll +++ b/llvm/test/CodeGen/ARM/constants.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=armv4t-unknown-linux-gnueabi -disable-cgp-branch-opts | FileCheck %s +; RUN: llc < %s -mtriple=armv4t-unknown-linux-gnueabi -disable-cgp-branch-opts -verify-machineinstrs | FileCheck %s  define i32 @f1() {  ; CHECK: f1  | 

