/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | BoundsChecking.cpp | 127 BasicBlock *OldBB = SplitI->getParent(); in insertBoundsCheck() local 128 BasicBlock *Cont = OldBB->splitBasicBlock(SplitI); in insertBoundsCheck() 129 OldBB->getTerminator()->eraseFromParent(); in insertBoundsCheck() 135 BranchInst::Create(GetTrapBB(IRB), OldBB); in insertBoundsCheck() 140 BranchInst::Create(GetTrapBB(IRB), Cont, Or, OldBB); in insertBoundsCheck()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | GVNHoist.cpp | 392 const BasicBlock *OldBB = OldPt->getParent(); in hasMemoryUse() local 401 if (BB == OldBB && firstInBB(OldPt, Insn)) in hasMemoryUse() 448 const BasicBlock *OldBB = Def->getBlock(); in hasEHOrLoadsOnPath() local 449 assert(DT->dominates(NewBB, OldBB) && "invalid path"); in hasEHOrLoadsOnPath() 457 for (auto I = idf_begin(OldBB), E = idf_end(OldBB); I != E;) { in hasEHOrLoadsOnPath() 465 if (hasEHhelper(BB, OldBB, NBBsOnAllPaths)) in hasEHOrLoadsOnPath() 525 const BasicBlock *OldBB = OldPt->getParent(); in safeToHoistLdSt() local 545 } else if (hasEHOnPath(NewBB, OldBB, NBBsOnAllPaths)) in safeToHoistLdSt()
|
D | LoopInterchange.cpp | 1325 static void updateSuccessor(BranchInst *BI, BasicBlock *OldBB, in updateSuccessor() argument 1331 [OldBB](BasicBlock *BB) { in updateSuccessor() 1332 return BB == OldBB; in updateSuccessor() 1336 if (Op == OldBB) { in updateSuccessor() 1345 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
|
D | SimpleLoopUnswitch.cpp | 999 auto CloneBlock = [&](BasicBlock *OldBB) { in buildClonedLoopBlocks() argument 1001 BasicBlock *NewBB = CloneBasicBlock(OldBB, VMap, ".us", OldBB->getParent()); in buildClonedLoopBlocks() 1006 VMap[OldBB] = NewBB; in buildClonedLoopBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 552 static void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, in UpdateAnalysisInformation() argument 559 if (OldBB == DT->getRootNode()->getBlock()) { in UpdateAnalysisInformation() 570 MSSAU->wireOldPredecessorsToNewImmediatePredecessor(OldBB, NewBB, Preds); in UpdateAnalysisInformation() 577 Loop *L = LI->getLoopFor(OldBB); in UpdateAnalysisInformation() 594 if (!PL->contains(OldBB)) in UpdateAnalysisInformation() 621 while (PredLoop && !PredLoop->contains(OldBB)) in UpdateAnalysisInformation() 625 if (PredLoop && PredLoop->contains(OldBB) && in UpdateAnalysisInformation()
|
D | LoopUnrollAndJam.cpp | 412 auto updatePHIBlocks = [](BasicBlock *BB, BasicBlock *OldBB, in UnrollAndJamLoop() 415 int I = Phi.getBasicBlockIndex(OldBB); in UnrollAndJamLoop() 421 auto updatePHIBlocksAndValues = [](BasicBlock *BB, BasicBlock *OldBB, in UnrollAndJamLoop() argument 426 if (Phi.getIncomingBlock(b) == OldBB) { in UnrollAndJamLoop()
|
D | CloneFunction.cpp | 524 const BasicBlock *OldBB = OPN->getParent(); in CloneAndPruneIntoFromInst() local 525 BasicBlock *NewBB = cast<BasicBlock>(VMap[OldBB]); in CloneAndPruneIntoFromInst() 530 PHIToResolve[phino]->getParent() == OldBB; ++phino) { in CloneAndPruneIntoFromInst() 588 BasicBlock::const_iterator OldI = OldBB->begin(); in CloneAndPruneIntoFromInst()
|
D | ValueMapper.cpp | 57 BasicBlock *OldBB; member 61 : OldBB(Old.getBasicBlock()), in DelayedBasicBlock() 847 BasicBlock *BB = cast_or_null<BasicBlock>(mapValue(DBB.OldBB)); in flush() 848 DBB.TempBB->replaceAllUsesWith(BB ? BB : DBB.OldBB); in flush()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 1111 auto *OldBB = Inst->getParent(); in movementPreservesLCSSAForm() local 1116 if (OldBB == NewBB) in movementPreservesLCSSAForm() 1119 auto *OldLoop = getLoopFor(OldBB); in movementPreservesLCSSAForm()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 681 void Instruction::replaceSuccessorWith(BasicBlock *OldBB, BasicBlock *NewBB) { in replaceSuccessorWith() argument 684 if (getSuccessor(Idx) == OldBB) in replaceSuccessorWith()
|
D | Instructions.cpp | 822 if (BasicBlock *OldBB = getIndirectDest(i)) { in updateArgBlockAddresses() local 823 BlockAddress *Old = BlockAddress::get(OldBB); in updateArgBlockAddresses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instruction.h | 680 void replaceSuccessorWith(BasicBlock *OldBB, BasicBlock *NewBB);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonVLIWPacketizer.cpp | 1830 auto *OldBB = OldPacketMIs.front()->getParent(); in producesStall() local 1832 if (MLI->getLoopFor(OldBB) != MLI->getLoopFor(ThisBB)) in producesStall()
|