Lines Matching full:newinst
2397 Instruction *newInst = new Instruction(...);
2399 pb->getInstList().insert(pi, newInst); // <i>Inserts newInst before pi in pb</i>
2412 Instruction *newInst = new Instruction(...);
2414 pb->getInstList().push_back(newInst); // <i>Appends newInst to pb</i>
2423 Instruction *newInst = new Instruction(..., pb);
2441 Instruction *newInst = new Instruction(...);
2443 pi->getParent()->getInstList().insert(pi, newInst);
2460 Instruction* newInst = new Instruction(..., pi);