Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:CurInst

933   SF.CurInst = SF.CurBB->begin();     // Update new instruction ptr...
935 if (!isa<PHINode>(SF.CurInst)) return; // Nothing fancy to do
940 for (; PHINode *PN = dyn_cast<PHINode>(SF.CurInst); ++SF.CurInst) {
951 SF.CurInst = SF.CurBB->begin();
952 for (unsigned i = 0; isa<PHINode>(SF.CurInst); ++SF.CurInst, ++i) {
953 PHINode *PN = cast<PHINode>(SF.CurInst);
1096 // Restore the CurInst pointer to the first instruction newly inserted, if
1099 SF.CurInst = Parent->begin();
1101 SF.CurInst = me;
1102 ++SF.CurInst;
2095 StackFrame.CurInst = StackFrame.CurBB->begin();
2117 Instruction &I = *SF.CurInst++; // Increment before execute