Home | History | Annotate | Download | only in docs

Lines Matching full:newinst

1946       Instruction *newInst = new Instruction(...);
1948 pb->getInstList().insert(pi, newInst); // Inserts newInst before pi in pb
1958 Instruction *newInst = new Instruction(...);
1960 pb->getInstList().push_back(newInst); // Appends newInst to pb
1967 Instruction *newInst = new Instruction(..., pb);
1982 Instruction *newInst = new Instruction(...);
1984 pi->getParent()->getInstList().insert(pi, newInst);
1998 Instruction* newInst = new Instruction(..., pi);