| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | EVLIndVarSimplify.cpp | 196 if (PN.getBasicBlockIndex(InitBlock) < 0 || in run() 197 PN.getBasicBlockIndex(BackEdgeBlock) < 0) in run()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnrollRuntime.cpp | 267 assert(EpilogPN->getBasicBlockIndex(EpilogPreHeader) >= 0 && in ConnectEpilog() 270 EpilogPN->setIncomingBlock(EpilogPN->getBasicBlockIndex(EpilogPreHeader), in ConnectEpilog() 428 unsigned idx = NewPHI->getBasicBlockIndex(Preheader); in CloneLoopBlocks() 431 idx = NewPHI->getBasicBlockIndex(Latch); in CloneLoopBlocks()
|
| H A D | CallPromotionUtils.cpp | 59 int Idx = Phi.getBasicBlockIndex(OrigBlock); in fixupPHINodeForNormalDest() 91 int Idx = Phi.getBasicBlockIndex(OrigBlock); in fixupPHINodeForUnwindDest()
|
| H A D | ControlFlowUtils.cpp | 249 if (Phi->getBasicBlockIndex(BB) != -1) { in reconnectPhis()
|
| H A D | BreakCriticalEdges.cpp | 204 BBIdx = PN->getBasicBlockIndex(TIBB); in SplitKnownCriticalEdge()
|
| H A D | LowerSwitch.cpp | 213 int BlockIdx = PN->getBasicBlockIndex(OrigBlock); in NewLeafBlock()
|
| H A D | SimplifyCFG.cpp | 1758 PN->setIncomingValue(PN->getBasicBlockIndex(BB), NewLoadStore); in hoistConditionalLoadsStores() 3375 unsigned OrigI = PN.getBasicBlockIndex(BB); in speculativelyExecuteBB() 3376 unsigned ThenI = PN.getBasicBlockIndex(ThenBB); in speculativelyExecuteBB() 4724 unsigned PBBIdx = PN.getBasicBlockIndex(PBI->getParent()); in SimplifyCondBranchToCondBranch() 5232 while (PhiLPInst->getBasicBlockIndex(TrivialBB) != -1) in simplifyCommonResume() 5320 int Idx = DestPN.getBasicBlockIndex(BB); in removeEmptyCleanup() 5913 int Idx = PHI.getBasicBlockIndex(BB); in findPHIForConditionForwarding() 5957 int SwitchBBIdx = Phi.getBasicBlockIndex(SwitchBlock); in forwardSwitchConditionToPHI() 6107 int Idx = PHI.getBasicBlockIndex(Pred); in getCaseResults()
|
| H A D | LoopRotationUtils.cpp | 109 PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreheader)); in RewriteUsesOfClonedInstructions()
|
| H A D | BasicBlockUtils.cpp | 685 BBIdx = PN.getBasicBlockIndex(OldPred); in updatePhiNodes() 849 int Idx = PN.getBasicBlockIndex(SplitBB); in createPHIsForSplitLoopExit()
|
| H A D | LoopUtils.cpp | 472 int LatchIdx = PN->getBasicBlockIndex(LatchBlock); in isAlmostDeadIV()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 289 int i = MP->getBasicBlockIndex(BB); in setMemoryPhiValueForBlock() 1245 MPhi->setIncomingBlock(MPhi->getBasicBlockIndex(From), To); in moveAllAfterSpliceBlocks() 1255 MPhi->setIncomingBlock(MPhi->getBasicBlockIndex(From), To); in moveAllAfterMergeBlocks()
|
| H A D | IVDescriptors.cpp | 1130 if (Phi->getBasicBlockIndex(Preheader) < 0 || in isFixedOrderRecurrence() 1131 Phi->getBasicBlockIndex(Latch) < 0) in isFixedOrderRecurrence()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 574 int getBasicBlockIndex(const BasicBlock *BB) const { 582 int Idx = getBasicBlockIndex(BB);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 486 int PreheaderIdx = ExitVal->getBasicBlockIndex(LoopPreheader); in rewriteFirstIterationLoopExitValues() 748 int Idx = Phi->getBasicBlockIndex(L->getLoopLatch()); in needsLFTR() 814 int LatchIdx = Phi->getBasicBlockIndex(L->getLoopLatch()); in isLoopCounter()
|
| H A D | LoopFuse.cpp | 1677 int L1LatchBBIdx = LCPHI->getBasicBlockIndex(FC1.Latch); in performFusion() 1962 int L1LatchBBIdx = LCPHI->getBasicBlockIndex(FC1.Latch); in fuseGuardedLoops()
|
| H A D | MergeICmps.cpp | 768 if (Phi.getBasicBlockIndex(SinglePredecessor) < 0) { in getOrderedBlocks()
|
| H A D | StructurizeCFG.cpp | 666 while (Phi.getBasicBlockIndex(From) != -1) { in delPhiValues()
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Instruction.cpp | 885 Tracker.emplaceIfTracking<PHIRemoveIncoming>(this, getBasicBlockIndex(BB)); in removeIncomingValue() 893 int PHINode::getBasicBlockIndex(const BasicBlock *BB) const { in getBasicBlockIndex() function in llvm::sandboxir::PHINode 895 return cast<llvm::PHINode>(Val)->getBasicBlockIndex(LLVMBB); in getBasicBlockIndex()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 2794 int Idx = getBasicBlockIndex(BB); 2807 int getBasicBlockIndex(const BasicBlock *BB) const { 2815 int Idx = getBasicBlockIndex(BB); 2847 return getBasicBlockIndex(Pred) >= 0;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCLoopInstrFormPrep.cpp | 1178 if (CurrentPHINode->getBasicBlockIndex(LatchBB) < 0) in getNodeForInc()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | WinEHPrepare.cpp | 1062 int OldBlockIdx = SuccPN.getBasicBlockIndex(OldBlock); in cloneCommonBlocks()
|
| H A D | ComplexDeinterleavingPass.cpp | 1670 auto BackEdgeIdx = PHI.getBasicBlockIndex(B); in collectPotentialReductions()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 1776 assert(PN.getBasicBlockIndex(NewPred) == -1); in handleLongjmpableCallsForWasmSjLj()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombinePHI.cpp | 1603 unsigned J = PN.getBasicBlockIndex(BBB); in visitPHINode()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 1306 int Index = PN->getBasicBlockIndex(InsertedBB); in movePHIValuesToInsertedBlock()
|