Home | History | Annotate | Download | only in jit

Lines Matching refs:JIT

27 #include "JIT.h"
29 #if ENABLE(JIT)
50 void JIT::compileOpCallInitializeCallFrame()
62 void JIT::compileOpCallSetupArgs(Instruction* instruction)
72 void JIT::compileOpConstructSetupArgs(Instruction* instruction)
86 void JIT::compileOpCallVarargsSetupArgs(Instruction*)
93 void JIT::compileOpCallVarargs(Instruction* instruction)
124 void JIT::compileOpCallVarargsSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter)
139 void JIT::emit_op_ret(Instruction* currentInstruction)
143 // We could JIT generate the deref, only calling out to C when the refcount hits zero.
155 void JIT::emit_op_construct_verify(Instruction* currentInstruction)
165 void JIT::emitSlow_op_construct_verify(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
176 void JIT::emitSlow_op_call(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
181 void JIT::emitSlow_op_call_eval(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
186 void JIT::emitSlow_op_call_varargs(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
191 void JIT::emitSlow_op_construct(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
196 void JIT::emit_op_call(Instruction* currentInstruction)
201 void JIT::emit_op_call_eval(Instruction* currentInstruction)
206 void JIT::emit_op_load_varargs(Instruction* currentInstruction)
218 void JIT::emit_op_call_varargs(Instruction* currentInstruction)
223 void JIT::emit_op_construct(Instruction* currentInstruction)
232 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned)
243 stubCall.addArgument(JIT::Imm32(registerOffset));
244 stubCall.addArgument(JIT::Imm32(argCount));
280 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned, OpcodeID opcodeID)
298 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned callLinkInfoIndex)
309 stubCall.addArgument(JIT::Imm32(registerOffset));
310 stubCall.addArgument(JIT::Imm32(argCount));
372 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned callLinkInfoIndex, OpcodeID opcodeID)
433 void JIT::compileOpCallInitializeCallFrame()
444 void JIT::compileOpCallSetupArgs(Instruction* instruction)
455 void JIT::compileOpCallVarargsSetupArgs(Instruction* instruction)
466 void JIT::compileOpConstructSetupArgs(Instruction* instruction)
481 void JIT::compileOpCallVarargs(Instruction* instruction)
510 void JIT::compileOpCallVarargsSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter)
526 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned)
538 stubCall.addArgument(JIT::Imm32(registerOffset));
539 stubCall.addArgument(JIT::Imm32(argCount));
577 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned, OpcodeID opcodeID)
593 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned callLinkInfoIndex)
605 stubCall.addArgument(JIT::Imm32(registerOffset));
606 stubCall.addArgument(JIT::Imm32(argCount));
662 void JIT::compileOpCallSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter, unsigned callLinkInfoIndex, OpcodeID opcodeID)
726 #endif // ENABLE(JIT)