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 123 /// is the new loop exit block, and DestBB is the old loop exit, now the
127 BasicBlock *DestBB) {
133 for (BasicBlock::iterator I = DestBB->begin();
184 BasicBlock *DestBB = TI->getSuccessor(SuccNum);
188 if (DestBB->isLandingPad()) return 0;
192 TIBB->getName() + "." + DestBB->getName() + "_crit_edge");
194 BranchInst *NewBI = BranchInst::Create(DestBB, NewBB);
205 // If there are any PHI nodes in DestBB, we need to update them so that they
209 for (BasicBlock::iterator I = DestBB->begin(); isa<PHINode>(I); ++I) {
226 // 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 119 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
295 BasicBlock *DestBB = BI->getSuccessor(0);
296 if (DestBB == BB)
299 if (!CanMergeBlocks(BB, DestBB))
308 /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
312 const BasicBlock *DestBB) const {
321 if (User->getParent() != DestBB || !isa<PHINode>(User))
323 // If User is inside DestBB block and it is a PHINode then check
326 if (User->getParent() == DestBB) {
338 // 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 168 milliseconds