HomeSort by relevance Sort by last modified time
    Searched defs:OldI (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 633 BasicBlock::const_iterator OldI = OldBB->begin();
637 assert(VMap[&*OldI] == PN && "VMap mismatch");
638 VMap[&*OldI] = NV;
640 ++OldI;
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 342 Instruction& OldI = *OldIter;
344 EXPECT_NE(&OldI, &NewI);
346 EXPECT_EQ(OldI.hasMetadata(), NewI.hasMetadata());
347 if (OldI.hasMetadata()) {
348 const DebugLoc& OldDL = OldI.getDebugLoc();
379 Instruction& OldI = *OldIter;
381 if (DbgDeclareInst* OldIntrin = dyn_cast<DbgDeclareInst>(&OldI)) {
398 } else if (DbgValueInst* OldIntrin = dyn_cast<DbgValueInst>(&OldI)) {
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 573 succ_iterator OldI = E;
576 OldI = I;
582 if (OldI != E)
586 assert(OldI != E && "Old is not a successor of this block");
592 *OldI = New;
601 *ProbIter += *getProbabilityIterator(OldI);
603 removeSuccessor(OldI);
    [all...]
WinEHPrepare.cpp 681 for (Instruction &OldI : *OldBlock) {
682 auto *OldPN = dyn_cast<PHINode>(&OldI);
733 auto *OldI = dyn_cast<Instruction>(const_cast<Value *>(VT.first));
734 if (!OldI)
739 for (Use &U : OldI->uses()) {
754 // We found a use of OldI outside of the funclet. Rename all uses of OldI
758 SSAUpdate.Initialize(OldI->getType(), OldI->getName());
759 SSAUpdate.AddAvailableValue(OldI->getParent(), OldI)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]

Completed in 794 milliseconds