Home
last modified time | relevance | path

Searched refs:OldI (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineBasicBlock.cpp494 succ_iterator OldI = E; in replaceSuccessor() local
497 OldI = I; in replaceSuccessor()
503 if (OldI != E) in replaceSuccessor()
507 assert(OldI != E && "Old is not a successor of this block"); in replaceSuccessor()
513 *OldI = New; in replaceSuccessor()
520 weight_iterator OldWI = getWeightIterator(OldI); in replaceSuccessor()
524 Successors.erase(OldI); in replaceSuccessor()
/external/llvm/lib/Transforms/Utils/
DCloneFunction.cpp490 BasicBlock::const_iterator OldI = OldBB->begin(); in CloneAndPruneFunctionInto() local
494 assert(VMap[OldI] == PN && "VMap mismatch"); in CloneAndPruneFunctionInto()
495 VMap[OldI] = NV; in CloneAndPruneFunctionInto()
497 ++OldI; in CloneAndPruneFunctionInto()
/external/llvm/lib/IR/
DConstantsContext.h629 typename MapTy::iterator OldI = FindExistingElement(C);
630 assert(OldI != Map.end() && "Constant not found in constant table!");
631 assert(OldI->second == C && "Didn't find correct element?");
634 Map.erase(OldI);
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7002 for (VerifyMap::iterator OldI = BackedgeDumpsOld.begin(), in verifyAnalysis() local
7005 OldI != OldE; ++OldI, ++NewI) { in verifyAnalysis()
7006 assert(OldI->first == NewI->first && "Loop order changed!"); in verifyAnalysis()
7013 if (OldI->second != NewI->second && in verifyAnalysis()
7014 OldI->second.find("undef") == std::string::npos && in verifyAnalysis()
7016 OldI->second != "***COULDNOTCOMPUTE***" && in verifyAnalysis()
7019 << OldI->first->getHeader()->getName() in verifyAnalysis()
7020 << "' changed from '" << OldI->second in verifyAnalysis()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp3547 if (Instruction *OldI = dyn_cast<Instruction>(OldV)) in runOnAlloca() local
3548 if (isInstructionTriviallyDead(OldI)) { in runOnAlloca()
3550 DeadInsts.insert(OldI); in runOnAlloca()