[JAEGER] Added JSOP_CALLLOCAL.

This commit is contained in:
David Anderson 2010-06-07 16:44:25 -07:00
parent 9592877ac7
commit 0acdab7b8b

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)