HomeSort by relevance Sort by last modified time
    Searched refs:SuccBB (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 135 BasicBlock *SuccBB = *SI;
136 if (!Visited.insert(SuccBB))
139 const Loop *SuccLoop = LI->getLoopFor(SuccBB);
140 if (SuccLoop && SuccLoop->getHeader() == SuccBB
142 VisitStack.push_back(WorklistItem(SuccBB, true));
157 ExitBlocks.end(), SuccBB);
161 VisitStack.push_back(WorklistItem(SuccBB, false));
JumpThreading.cpp 118 BasicBlock *SuccBB);
    [all...]
ObjCARC.cpp     [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.h 96 bool TryTailMergeBlocks(MachineBasicBlock* SuccBB,
105 MachineBasicBlock *SuccBB,
107 void RemoveBlocksWithHash(unsigned CurHash, MachineBasicBlock* SuccBB,
BranchFolding.cpp 459 static void FixTail(MachineBasicBlock *CurMBB, MachineBasicBlock *SuccBB,
472 TII->InsertBranch(*CurMBB, SuccBB, NULL, Cond, dl);
477 TII->InsertBranch(*CurMBB, SuccBB, NULL,
531 MachineBasicBlock *SuccBB,
562 if (SuccBB && MBB1 != PredBB && MBB2 != PredBB &&
596 MachineBasicBlock *SuccBB,
611 SuccBB, PredBB)) {
632 MachineBasicBlock *SuccBB,
640 if (SuccBB && CurMBB != PredBB)
641 FixTail(CurMBB, SuccBB, TII)
    [all...]
LiveVariables.cpp 808 MachineBasicBlock *SuccBB) {
813 MachineBasicBlock::iterator BBI = SuccBB->begin(), BBE = SuccBB->end();
818 // All registers used by PHI nodes in SuccBB must be live through BB.
824 // Record all vreg defs and kills of all instructions in SuccBB.
845 // If the register is either killed in or live through SuccBB it's also live
848 if (Kills.count(Reg) || VI.AliveBlocks.test(SuccBB->getNumber()))
TailDuplication.cpp 459 MachineBasicBlock *SuccBB = *SI;
460 for (MachineBasicBlock::iterator II = SuccBB->begin(), EE = SuccBB->end();
502 if (!SrcBB->isSuccessor(SuccBB))
    [all...]
IfConversion.cpp 427 MachineBasicBlock *SuccBB = *SI;
428 if (SuccBB != TrueBB)
429 return SuccBB;
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 298 /// addNewBlock - Add a new basic block BB between DomBB and SuccBB. All
299 /// variables that are live out of DomBB and live into SuccBB will be marked
304 MachineBasicBlock *SuccBB);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 231 BasicBlock *SuccBB = i.getCaseSuccessor();
233 TheClusterifier.add(CaseRanges, SuccBB);
PromoteMemoryToRegister.cpp 806 BasicBlock *SuccBB = SuccNode->getBlock();
807 if (!LiveInBlocks.count(SuccBB))
810 DFBlocks.push_back(std::make_pair(BBNumbers[SuccBB], SuccBB));
811 if (!DefBlocks.count(SuccBB))
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]

Completed in 174 milliseconds