Searched defs:DestB (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp1011 /// DestB, remove any other MBB successors from the CFG. DestA and DestB can be
1014 /// Besides DestA and DestB, retain other edges leading to LandingPads
1016 /// Note it is possible that DestA and/or DestB are LandingPads.
1018 MachineBasicBlock *DestB,
1020 // The values of DestA and DestB frequently come from a call to the
1024 // 1. If both DestA and DestB are null, then the block ends with no branches
1026 // 2. If DestA is set, DestB is null, and isCond is false, then the block ends
1028 // 3. If DestA is set, DestB is null, and isCond is true, then the block ends
1029 // with a conditional branch that falls through to a successor (DestB)
1017 CorrectExtraCFGEdges(MachineBasicBlock *DestA, MachineBasicBlock *DestB, bool isCond) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3142 BasicBlock *DestB = nullptr; local
3153 if (!DestB) DestB = Dest;
3154 if (Dest == DestB) {
3161 assert(DestA && DestB && "Single-destination switch should have been folded.");
3162 assert(DestA != DestB);
3163 assert(DestB != SI->getDefaultDest());
3174 OtherDest = DestB;
3177 ContiguousDest = DestB;

Completed in 131 milliseconds