Home | History | Annotate | Download | only in docs

Lines Matching full:newinst

1938       Instruction *newInst = new Instruction(...);
1940 pb->getInstList().insert(pi, newInst); // Inserts newInst before pi in pb
1950 Instruction *newInst = new Instruction(...);
1952 pb->getInstList().push_back(newInst); // Appends newInst to pb
1959 Instruction *newInst = new Instruction(..., pb);
1974 Instruction *newInst = new Instruction(...);
1976 pi->getParent()->getInstList().insert(pi, newInst);
1990 Instruction* newInst = new Instruction(..., pi);