[JAEGER] Handle JSOP_POPV; re=dvander.

This commit is contained in:
Sean Stangl
2010-06-02 14:11:46 -07:00
parent f6ec296cd3
commit e4debd197a

View File

@@ -289,6 +289,14 @@ mjit::Compiler::generateMethod()
BEGIN_CASE(JSOP_NOP)
END_CASE(JSOP_NOP)
BEGIN_CASE(JSOP_POPV)
{
FrameEntry *fe = frame.peek(-1);
frame.storeTo(fe, Address(Assembler::FpReg, offsetof(JSStackFrame, rval)), true);
frame.pop();
}
END_CASE(JSOP_POPV)
BEGIN_CASE(JSOP_RETURN)
{
/* Safe point! */