HomeSort by relevance Sort by last modified time
    Searched defs:DestBB (Results 1 - 7 of 7) 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();
178 BasicBlock *DestBB = TI->getSuccessor(SuccNum);
182 if (DestBB->isLandingPad()) return 0;
186 TIBB->getName() + "." + DestBB->getName() + "_crit_edge");
188 BranchInst *NewBI = BranchInst::Create(DestBB, NewBB);
199 // If there are any PHI nodes in DestBB, we need to update them so that they
203 for (BasicBlock::iterator I = DestBB->begin(); isa<PHINode>(I); ++I) {
220 // If there are any other edges from TIBB to DestBB, update those to g
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 505 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0);
509 pred_iterator PI = pred_begin(DestBB);
516 if (++PI == pred_end(DestBB))
525 if (++PI != pred_end(DestBB))
530 if (StoreBB == DestBB || OtherBB == DestBB)
598 MergedVal = InsertNewInstBefore(PN, DestBB->front());
603 BBI = DestBB->getFirstInsertionPt();
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 104 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
201 BasicBlock *DestBB = BI->getSuccessor(0);
202 if (DestBB == BB)
205 if (!CanMergeBlocks(BB, DestBB))
214 /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
218 const BasicBlock *DestBB) const {
227 if (User->getParent() != DestBB || !isa<PHINode>(User))
229 // If User is inside DestBB block and it is a PHINode then check
232 if (User->getParent() == DestBB) {
244 // If BB and DestBB contain any common predecessors, then the phi nodes in B
    [all...]
JumpThreading.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]

Completed in 534 milliseconds