[JAEGER] Added JSOP_URSH.

This commit is contained in:
David Anderson
2010-06-05 17:26:19 -07:00
parent 2929762456
commit 4024289917
3 changed files with 23 additions and 0 deletions

View File

@@ -464,6 +464,13 @@ mjit::Compiler::generateMethod()
jsop_bitop(op);
END_CASE(JSOP_RSH)
BEGIN_CASE(JSOP_URSH)
prepareStubCall();
stubCall(stubs::Ursh, Uses(2), Defs(1));
frame.popn(2);
frame.pushSynced();
END_CASE(JSOP_URSH)
BEGIN_CASE(JSOP_ADD)
jsop_binary(op, stubs::Add);
END_CASE(JSOP_ADD)