Searched defs:NewInsts (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp339 /// All newly created instructions are added to the NewInsts list. This
345 SmallVectorImpl<Instruction*> &NewInsts) {
346 unsigned NISize = NewInsts.size();
349 Addr = InsertPHITranslatedSubExpr(Addr, CurBB, PredBB, DT, NewInsts);
355 while (NewInsts.size() != NISize)
356 NewInsts.pop_back_val()->eraseFromParent();
363 /// block. All newly created instructions are added to the NewInsts list.
369 SmallVectorImpl<Instruction*> &NewInsts) {
384 CurBB, PredBB, DT, NewInsts);
392 NewInsts
343 PHITranslateWithInsertion(BasicBlock *CurBB, BasicBlock *PredBB, const DominatorTree &DT, SmallVectorImpl<Instruction*> &NewInsts) argument
367 InsertPHITranslatedSubExpr(Value *InVal, BasicBlock *CurBB, BasicBlock *PredBB, const DominatorTree &DT, SmallVectorImpl<Instruction*> &NewInsts) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1609 SmallVector<Instruction*, 8> NewInsts; local
1622 *DT, NewInsts);
1637 while (!NewInsts.empty()) {
1638 Instruction *I = NewInsts.pop_back_val();
1651 DEBUG(if (!NewInsts.empty())
1652 dbgs() << "INSERTED " << NewInsts.size() << " INSTS: "
1653 << *NewInsts.back() << '\n');
1656 for (unsigned i = 0, e = NewInsts.size(); i != e; ++i) {
1661 VN.lookup_or_add(NewInsts[i]);

Completed in 448 milliseconds