Home
last modified time | relevance | path

Searched refs:NewI (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp860 LiveInterval::iterator NewI = LI.advanceTo(I, NewIdx.getRegSlot()); in handleMoveDown() local
861 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) { in handleMoveDown()
864 assert(NewI->valno != DefVNI && "Multiple defs of value?"); in handleMoveDown()
872 assert(NewI != I && "Inconsistent iterators"); in handleMoveDown()
873 std::copy(llvm::next(I), NewI, I); in handleMoveDown()
874 *llvm::prior(NewI) = LiveRange(DefVNI->def, NewIdx.getDeadSlot(), DefVNI); in handleMoveDown()
930 LiveInterval::iterator NewI = LI.find(NewIdx.getRegSlot()); in handleMoveUp() local
931 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) { in handleMoveUp()
932 assert(NewI->valno != DefVNI && "Same value defined more than once?"); in handleMoveUp()
941 LI.removeValNo(NewI->valno); in handleMoveUp()
[all …]
DMachineBasicBlock.cpp493 succ_iterator NewI = E; in replaceSuccessor() local
498 if (NewI != E) in replaceSuccessor()
502 NewI = I; in replaceSuccessor()
511 if (NewI == E) { in replaceSuccessor()
521 *getWeightIterator(NewI) += *OldWI; in replaceSuccessor()
/external/clang/lib/Edit/
DEditedSource.cpp167 NewI = FileEdits.insert(I, std::make_pair(BeginOffs, FileEdit())); in commitRemove() local
168 NewI->second.RemoveLen = Len; in commitRemove()
177 NewI = FileEdits.insert(I, std::make_pair(BeginOffs, FileEdit())); in commitRemove() local
180 TopFA = &NewI->second; in commitRemove()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp265 Instruction *NewI in visitAllocaInst() local
270 return NewI; in visitAllocaInst()
/external/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp328 Value* NewI = VMap.lookup(OldInst); in cloneData() local
329 const SwitchInst* NewInst = cast_or_null<SwitchInst>(NewI); in cloneData()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7004 NewI = BackedgeDumpsNew.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()
7015 NewI->second.find("undef") == std::string::npos && in verifyAnalysis()
7017 NewI->second != "***COULDNOTCOMPUTE***") { in verifyAnalysis()
7021 << "' to '" << NewI->second << "'!\n"; in verifyAnalysis()