Lines Matching full:newinst
2469 Instruction *newInst = new Instruction(...);
2471 pb->getInstList().insert(pi, newInst); // <i>Inserts newInst before pi in pb</i>
2484 Instruction *newInst = new Instruction(...);
2486 pb->getInstList().push_back(newInst); // <i>Appends newInst to pb</i>
2495 Instruction *newInst = new Instruction(..., pb);
2513 Instruction *newInst = new Instruction(...);
2515 pi->getParent()->getInstList().insert(pi, newInst);
2532 Instruction* newInst = new Instruction(..., pi);