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

  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 136 BasicBlock *SuccBB = *SI;
137 if (!Visited.insert(SuccBB))
140 const Loop *SuccLoop = LI->getLoopFor(SuccBB);
141 if (SuccLoop && SuccLoop->getHeader() == SuccBB
143 VisitStack.push_back(WorklistItem(SuccBB, true));
158 ExitBlocks.end(), SuccBB);
162 VisitStack.push_back(WorklistItem(SuccBB, false));
JumpThreading.cpp 119 BasicBlock *SuccBB);
    [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.h 96 bool TryTailMergeBlocks(MachineBasicBlock* SuccBB,
106 MachineBasicBlock *SuccBB,
108 void RemoveBlocksWithHash(unsigned CurHash, MachineBasicBlock* SuccBB,
111 MachineBasicBlock *SuccBB,
BranchFolding.cpp 458 static void FixTail(MachineBasicBlock *CurMBB, MachineBasicBlock *SuccBB,
471 TII->InsertBranch(*CurMBB, SuccBB, NULL, Cond, dl);
476 TII->InsertBranch(*CurMBB, SuccBB, NULL,
528 MachineBasicBlock *SuccBB,
559 if (SuccBB && MBB1 != PredBB && MBB2 != PredBB &&
594 MachineBasicBlock *SuccBB,
609 SuccBB, PredBB)) {
630 MachineBasicBlock *SuccBB,
638 if (SuccBB && CurMBB != PredBB)
639 FixTail(CurMBB, SuccBB, TII)
    [all...]
LiveVariables.cpp 782 MachineBasicBlock *SuccBB) {
787 MachineBasicBlock::iterator BBI = SuccBB->begin(), BBE = SuccBB->end();
792 // All registers used by PHI nodes in SuccBB must be live through BB.
798 // Record all vreg defs and kills of all instructions in SuccBB.
819 // If the register is either killed in or live through SuccBB it's also live
822 if (Kills.count(Reg) || VI.AliveBlocks.test(SuccBB->getNumber()))
TailDuplication.cpp 457 MachineBasicBlock *SuccBB = *SI;
458 for (MachineBasicBlock::iterator II = SuccBB->begin(), EE = SuccBB->end();
501 if (!SrcBB->isSuccessor(SuccBB))
    [all...]
IfConversion.cpp 428 MachineBasicBlock *SuccBB = *SI;
429 if (SuccBB != TrueBB)
430 return SuccBB;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 52 "disable-mips-df-succbb-search",
94 /// the registers that are live-in to SuccBB.
96 const MachineBasicBlock &SuccBB);
342 const MachineBasicBlock &SuccBB) {
345 if (*SI != &SuccBB)
601 MachineBasicBlock *SuccBB = selectSuccBB(MBB);
603 if (!SuccBB)
612 // Iterate over SuccBB's predecessor list.
613 for (MachineBasicBlock::pred_iterator PI = SuccBB->pred_begin(),
614 PE = SuccBB->pred_end(); PI != PE; ++PI
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 290 /// addNewBlock - Add a new basic block BB between DomBB and SuccBB. All
291 /// variables that are live out of DomBB and live into SuccBB will be marked
296 MachineBasicBlock *SuccBB);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 231 BasicBlock *SuccBB = i.getCaseSuccessor();
233 TheClusterifier.add(CaseRanges, SuccBB);
PromoteMemoryToRegister.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 1153 milliseconds