Searched refs:OldI (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp677 succ_iterator OldI = llvm::find(successors(), Old);
678 assert(OldI != succ_end() && "Old is not a successor of this block!");
688 : *getProbabilityIterator(OldI));
723 succ_iterator OldI = E;
726 OldI = I;
732 if (OldI != E)
736 assert(OldI != E && "Old is not a successor of this block");
742 *OldI = New;
751 *ProbIter += *getProbabilityIterator(OldI);
753 removeSuccessor(OldI);
[all...]
H A DWinEHPrepare.cpp898 auto *OldI = dyn_cast<Instruction>(const_cast<Value *>(VT.first)); local
899 if (!OldI)
904 for (Use &U : OldI->uses()) {
919 // We found a use of OldI outside of the funclet. Rename all uses of OldI
923 SSAUpdate.Initialize(OldI->getType(), OldI->getName());
924 SSAUpdate.AddAvailableValue(OldI->getParent(), OldI);
H A DCodeGenPrepare.cpp6324 Instruction *OldI = cast<Instruction>(U->getUser()); local
6325 if (NewInstructions.count(OldI))
6326 NewInstructions[OldI]->setOperand(U->getOperandNo(), NI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp588 BasicBlock::const_iterator OldI = OldBB->begin(); local
592 assert(VMap[&*OldI] == PN && "VMap mismatch");
593 VMap[&*OldI] = NV;
595 ++OldI;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1371 Instruction *OldI = Old; local
1374 assert(OldI != NewI && "Disallowed at construction?!");
1382 OldI->replaceAllUsesWith(NewI);
1387 auto *RI = cast<ReturnInst>(OldI->getParent()->getTerminator());
1392 OldI->eraseFromParent();
H A DSROA.cpp4426 if (Instruction *OldI = dyn_cast<Instruction>(OldV))
4427 if (isInstructionTriviallyDead(OldI)) {
4428 DeadInsts.insert(OldI);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp1262 OldI = Old->specific_attr_begin<EnableIfAttr>(),
1264 NewI != NewE || OldI != OldE; ++NewI, ++OldI) {
1265 if (NewI == NewE || OldI == OldE)
1269 OldI->getCond()->Profile(OldID, Context, true);

Completed in 317 milliseconds