[JAEGER] Added JSOP_CALLLOCAL.

This commit is contained in:
David Anderson
2010-06-07 16:44:25 -07:00
parent a260ad43c2
commit c52baa318c

View File

@@ -934,6 +934,11 @@ mjit::Compiler::generateMethod()
goto done;
END_CASE(JSOP_STOP)
BEGIN_CASE(JSOP_CALLLOCAL)
frame.pushLocal(GET_SLOTNO(PC));
frame.push(NullTag());
END_CASE(JSOP_CALLLOCAL)
BEGIN_CASE(JSOP_INT8)
frame.push(Value(Int32Tag(GET_INT8(PC))));
END_CASE(JSOP_INT8)