Searched refs:OldI (Results 1 – 7 of 7) sorted by relevance
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 340 Instruction& OldI = *OldIter; in TEST_F() local 342 EXPECT_NE(&OldI, &NewI); in TEST_F() 344 EXPECT_EQ(OldI.hasMetadata(), NewI.hasMetadata()); in TEST_F() 345 if (OldI.hasMetadata()) { in TEST_F() 346 const DebugLoc& OldDL = OldI.getDebugLoc(); in TEST_F() 377 Instruction& OldI = *OldIter; in TEST_F() local 379 if (DbgDeclareInst* OldIntrin = dyn_cast<DbgDeclareInst>(&OldI)) { in TEST_F() 398 } else if (DbgValueInst* OldIntrin = dyn_cast<DbgValueInst>(&OldI)) { in TEST_F()
|
/external/llvm/lib/CodeGen/ |
D | MachineBasicBlock.cpp | 528 succ_iterator OldI = E; in replaceSuccessor() local 531 OldI = I; in replaceSuccessor() 537 if (OldI != E) in replaceSuccessor() 541 assert(OldI != E && "Old is not a successor of this block"); in replaceSuccessor() 547 *OldI = New; in replaceSuccessor() 554 weight_iterator OldWI = getWeightIterator(OldI); in replaceSuccessor() 558 Successors.erase(OldI); in replaceSuccessor()
|
/external/llvm/lib/Transforms/Utils/ |
D | CloneFunction.cpp | 617 BasicBlock::const_iterator OldI = OldBB->begin(); in CloneAndPruneIntoFromInst() local 621 assert(VMap[OldI] == PN && "VMap mismatch"); in CloneAndPruneIntoFromInst() 622 VMap[OldI] = NV; in CloneAndPruneIntoFromInst() 624 ++OldI; in CloneAndPruneIntoFromInst()
|
/external/llvm/tools/llvm-ar/ |
D | llvm-ar.cpp | 413 object::Archive::child_iterator OldI; member in __anonfb1e19f10111::NewArchiveIterator 436 : IsNewMember(false), Name(Name), OldI(I) {} in NewArchiveIterator() 447 return OldI; in getOld()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 8476 for (VerifyMap::iterator OldI = BackedgeDumpsOld.begin(), in verifyAnalysis() local 8479 OldI != OldE; ++OldI, ++NewI) { in verifyAnalysis() 8480 assert(OldI->first == NewI->first && "Loop order changed!"); in verifyAnalysis() 8487 if (OldI->second != NewI->second && in verifyAnalysis() 8488 OldI->second.find("undef") == std::string::npos && in verifyAnalysis() 8490 OldI->second != "***COULDNOTCOMPUTE***" && in verifyAnalysis() 8493 << OldI->first->getHeader()->getName() in verifyAnalysis() 8494 << "' changed from '" << OldI->second in verifyAnalysis()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 4229 if (Instruction *OldI = dyn_cast<Instruction>(OldV)) in clobberUse() local 4230 if (isInstructionTriviallyDead(OldI)) { in clobberUse() 4231 DeadInsts.insert(OldI); in clobberUse()
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 1058 OldI = Old->specific_attr_begin<EnableIfAttr>(), in IsOverload() 1060 NewI != NewE || OldI != OldE; ++NewI, ++OldI) { in IsOverload() 1061 if (NewI == NewE || OldI == OldE) in IsOverload() 1065 OldI->getCond()->Profile(OldID, Context, true); in IsOverload()
|