Searched defs:NewI (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/MC/MCAnalysis/
H A DMCModule.cpp65 AtomListTy::iterator NewI = std::lower_bound(atom_begin(), atom_end(), local
67 assert((NewI == atom_end() || (*NewI)->getBeginAddr() > Atom->End)
69 Atoms.insert(NewI, Atom);
/external/clang/lib/Edit/
H A DEditedSource.cpp165 NewI = FileEdits.insert(I, std::make_pair(BeginOffs, FileEdit())); local
166 NewI->second.RemoveLen = Len;
175 NewI = FileEdits.insert(I, std::make_pair(BeginOffs, FileEdit())); local
178 TopFA = &NewI->second;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp280 Instruction *NewI = ReplaceInstUsesWith(AI, Cast); local
283 return NewI;
H A DInstCombineAddSub.cpp1618 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, V); local
1619 NewI->copyFastMathFlags(&I);
1620 return NewI;
1625 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewTrunc); local
1626 NewI->copyFastMathFlags(&I);
1627 return NewI;
1632 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewExt); local
1633 NewI->copyFastMathFlags(&I);
1634 return NewI;
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp337 Instruction& NewI = *NewIter; local
338 EXPECT_NE(&OldI, &NewI);
340 EXPECT_EQ(OldI.hasMetadata(), NewI.hasMetadata());
343 const DebugLoc& NewDL = NewI.getDebugLoc();
374 Instruction& NewI = *NewIter; local
376 DbgDeclareInst* NewIntrin = dyn_cast<DbgDeclareInst>(&NewI);
393 DbgValueInst* NewIntrin = dyn_cast<DbgValueInst>(&NewI);
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp876 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot()); local
877 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
880 assert(NewI->valno != DefVNI && "Multiple defs of value?");
886 // values. The new range should be placed immediately before NewI, move any
888 assert(NewI != I && "Inconsistent iterators");
889 std::copy(std::next(I), NewI, I); local
890 *std::prev(NewI)
947 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot()); local
948 if (SlotIndex::isSameInstr(NewI
[all...]
H A DMachineBasicBlock.cpp536 succ_iterator NewI = E; local
541 if (NewI != E)
545 NewI = I;
554 if (NewI == E) {
564 *getWeightIterator(NewI) += *OldWI;
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp317 Value *NewI = VMap.lookup(OldInst); local
318 const SwitchInst *NewInst = cast_or_null<SwitchInst>(NewI);

Completed in 1071 milliseconds