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);
1095 // Restore the CurInst pointer to the first instruction newly inserted, if
1098 SF.CurInst = Parent->begin();
1100 SF.CurInst = me;
1101 ++SF.CurInst;
2094 StackFrame.CurInst = StackFrame.CurBB->begin();
2116 Instruction &I = *SF.CurInst++; // Increment before execute