Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:CurInst

704   SF.CurInst = SF.CurBB->begin();     // Update new instruction ptr...
706 if (!isa<PHINode>(SF.CurInst)) return; // Nothing fancy to do
711 for (; PHINode *PN = dyn_cast<PHINode>(SF.CurInst); ++SF.CurInst) {
722 SF.CurInst = SF.CurBB->begin();
723 for (unsigned i = 0; isa<PHINode>(SF.CurInst); ++SF.CurInst, ++i) {
724 PHINode *PN = cast<PHINode>(SF.CurInst);
867 // Restore the CurInst pointer to the first instruction newly inserted, if
870 SF.CurInst = Parent->begin();
872 SF.CurInst = me;
873 ++SF.CurInst;
1301 StackFrame.CurInst = StackFrame.CurBB->begin();
1323 Instruction &I = *SF.CurInst++; // Increment before execute