HomeSort by relevance Sort by last modified time
    Searched defs:DestBB (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 91 /// is the new loop exit block, and DestBB is the old loop exit, now the
95 BasicBlock *DestBB) {
101 for (BasicBlock::iterator I = DestBB->begin();
152 BasicBlock *DestBB = TI->getSuccessor(SuccNum);
156 if (DestBB->isLandingPad()) return 0;
160 TIBB->getName() + "." + DestBB->getName() + "_crit_edge");
162 BranchInst *NewBI = BranchInst::Create(DestBB, NewBB);
173 // If there are any PHI nodes in DestBB, we need to update them so that they
177 for (BasicBlock::iterator I = DestBB->begin(); isa<PHINode>(I); ++I) {
194 // If there are any other edges from TIBB to DestBB, update those to g
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64BranchFixupPass.cpp 434 MachineBasicBlock *DestBB,
437 int64_t DestOffset = BBInfo[DestBB->getNumber()].Offset;
439 DEBUG(dbgs() << "Branch of destination BB#" << DestBB->getNumber()
452 MachineBasicBlock *DestBB = 0;
455 DestBB = MI->getOperand(i).getMBB();
459 assert(DestBB && "Branch with no destination BB?");
461 // Check to see if the DestBB is already in-range.
462 if (isBBInRange(MI, DestBB, Br.OffsetBits))
543 MachineBasicBlock *DestBB = MI->getOperand(CondBrMBBOperand).getMBB();
544 BMI->getOperand(0).setMBB(DestBB);
    [all...]
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 698 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0);
702 pred_iterator PI = pred_begin(DestBB);
709 if (++PI == pred_end(DestBB))
718 if (++PI != pred_end(DestBB))
723 if (StoreBB == DestBB || OtherBB == DestBB)
791 MergedVal = InsertNewInstBefore(PN, DestBB->front());
796 BBI = DestBB->getFirstInsertionPt();
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 121 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
298 BasicBlock *DestBB = BI->getSuccessor(0);
299 if (DestBB == BB)
302 if (!CanMergeBlocks(BB, DestBB))
311 /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
315 const BasicBlock *DestBB) const {
324 if (User->getParent() != DestBB || !isa<PHINode>(User))
326 // If User is inside DestBB block and it is a PHINode then check
329 if (User->getParent() == DestBB) {
341 // If BB and DestBB contain any common predecessors, then the phi nodes in B
    [all...]
JumpThreading.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 194 milliseconds