void JIT::emit_op_construct(Instruction* currentInstruction) { compileOpCall(op_construct, currentInstruction, m_callLinkInfoIndex++); }
void JIT::emit_op_tail_call_forward_arguments(Instruction* currentInstruction) { compileOpCall(op_tail_call_forward_arguments, currentInstruction, m_callLinkInfoIndex++); }
void JIT::emit_op_call_eval(Instruction* currentInstruction) { compileOpCall(op_call_eval, currentInstruction, m_callLinkInfoIndex); }
void JIT::emit_op_tail_call_varargs(Instruction* currentInstruction) { compileOpCall(op_tail_call_varargs, currentInstruction, m_callLinkInfoIndex++); }