HomeSort by: relevance | last modified time | path
    Searched defs:OldBB (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 127 BasicBlock *OldBB = SplitI->getParent();
128 BasicBlock *Cont = OldBB->splitBasicBlock(SplitI);
129 OldBB->getTerminator()->eraseFromParent();
135 BranchInst::Create(GetTrapBB(IRB), OldBB);
140 BranchInst::Create(GetTrapBB(IRB), Cont, Or, OldBB);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CloneFunction.cpp 570 const BasicBlock *OldBB = OPN->getParent();
571 BasicBlock *NewBB = cast<BasicBlock>(VMap[OldBB]);
576 PHIToResolve[phino]->getParent() == OldBB;
634 BasicBlock::const_iterator OldI = OldBB->begin();
ValueMapper.cpp 59 BasicBlock *OldBB;
63 : OldBB(Old.getBasicBlock()),
891 BasicBlock *BB = cast_or_null<BasicBlock>(mapValue(DBB.OldBB));
892 DBB.TempBB->replaceAllUsesWith(BB ? BB : DBB.OldBB);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopInfo.h 1142 auto *OldBB = Inst->getParent();
1147 if (OldBB == NewBB)
1150 auto *OldLoop = getLoopFor(OldBB);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVNHoist.cpp 639 const BasicBlock *OldBB = OldPt->getParent();
648 if (BB == OldBB && firstInBB(OldPt, Insn))
688 const BasicBlock *OldBB = Def->getBlock();
689 assert(DT->dominates(NewBB, OldBB) && "invalid path");
694 // CFG from OldBB to NewBB. These blocks are all the blocks that may be
695 // executed between the execution of NewBB and OldBB. Hoisting an expression
696 // from OldBB into NewBB has to be safe on all execution paths.
697 for (auto I = idf_begin(OldBB), E = idf_end(OldBB); I != E;) {
705 if (hasEHhelper(BB, OldBB, NBBsOnAllPaths)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 1896 auto *OldBB = OldPacketMIs.front()->getParent();
1898 if (MLI->getLoopFor(OldBB) != MLI->getLoopFor(ThisBB))

Completed in 23 milliseconds