Home | History | Annotate | Download | only in jit

Lines Matching refs:instruction

58 void JIT::emit_op_call_put_result(Instruction* instruction)
60 int dst = instruction[1].u.operand;
64 void JIT::compileOpCallVarargs(Instruction* instruction)
66 int callee = instruction[1].u.operand;
67 int argCountRegister = instruction[2].u.operand;
68 int registerOffset = instruction[3].u.operand;
91 void JIT::compileOpCallVarargsSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter)
93 int callee = instruction[1].u.operand;
107 void JIT::emit_op_ret(Instruction* currentInstruction)
119 void JIT::emit_op_ret_object_or_this(Instruction* currentInstruction)
146 void JIT::emitSlow_op_call(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
151 void JIT::emitSlow_op_call_eval(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
156 void JIT::emitSlow_op_call_varargs(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
161 void JIT::emitSlow_op_construct(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
166 void JIT::emit_op_call(Instruction* currentInstruction)
171 void JIT::emit_op_call_eval(Instruction* currentInstruction)
176 void JIT::emit_op_call_varargs(Instruction* currentInstruction)
181 void JIT::emit_op_construct(Instruction* currentInstruction)
190 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned)
192 int callee = instruction[1].u.operand;
193 int argCount = instruction[2].u.operand;
194 int registerOffset = instruction[3].u.operand;
225 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned, OpcodeID opcodeID)
227 int callee = instruction[1].u.operand;
228 int argCount = instruction[2].u.operand;
229 int registerOffset = instruction[3].u.operand;
247 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned callLinkInfoIndex)
249 int callee = instruction[1].u.operand;
250 int argCount = instruction[2].u.operand;
251 int registerOffset = instruction[3].u.operand;
302 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned callLinkInfoIndex, OpcodeID opcodeID)
304 int callee = instruction[1].u.operand;
305 int argCount = instruction[2].u.operand;
306 int registerOffset = instruction[3].u.operand;