Searched refs:IBB (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DOrderedInstructions.cpp21 const BasicBlock *IBB = InstA->getParent(); local
22 auto OBB = OBBMap.find(IBB);
24 OBB = OBBMap.insert({IBB, std::make_unique<OrderedBasicBlock>(IBB)}).first;
H A DMemorySSAUpdater.cpp626 BasicBlock *IBB = MPhi->getIncomingBlock(I); local
628 if (IBB != Preheader) {
629 NewMPhi->addIncoming(IV, IBB);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBreakCriticalEdges.cpp335 BasicBlock *IBB = nullptr;
341 if (IBB)
343 IBB = PredBB;
354 return IBB;
H A DIntegerDivision.cpp180 BasicBlock *IBB = Builder.GetInsertBlock(); local
181 Function *F = IBB->getParent();
H A DLoopSimplify.cpp403 BasicBlock *IBB = PN->getIncomingBlock(i); local
405 if (IBB == Preheader) {
408 NewPN->addIncoming(IV, IBB);
H A DLocal.cpp782 BasicBlock *IBB = PN->getIncomingBlock(PI); local
783 if (BBPreds.count(IBB) &&
784 !CanMergeValues(BBPN->getIncomingValueForBlock(IBB),
790 << IBB->getName() << "\n");
800 BasicBlock *IBB = PN->getIncomingBlock(PI); local
801 if (BBPreds.count(IBB) &&
806 << "predecessor " << IBB->getName() << "\n");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp1070 // Look at blocks (IBB) with multiple predecessors (PBB).
1073 // to IBB, and
1075 // not IBB; this may require adding back an unconditional branch to IBB
1077 // Bcc IBB
1081 // with a conceptual B to IBB after that, which never actually exists.
1093 MachineBasicBlock *IBB = &*I; local
1098 // Bail if merging after placement and IBB is the loop header because
1099 // -- If merging predecessors that belong to the same loop as IBB, the
1104 // --If merging predecessors that do not belong to the same loop as IBB, th
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4095 BasicBlock *IBB = PH->getIncomingBlock(i);
4097 if (!VisitedBBs.insert(IBB).second) {
4098 NewPhi->addIncoming(NewPhi->getIncomingValueForBlock(IBB), IBB);
4102 Builder.SetInsertPoint(IBB->getTerminator());
4105 NewPhi->addIncoming(Vec, IBB);

Completed in 109 milliseconds