HomeSort by relevance Sort by last modified time
    Searched refs:currentInstruction (Results 1 - 6 of 6) sorted by null

  /external/webkit/JavaScriptCore/jit/
JITOpcodes.cpp 389 void JIT::emit_op_mov(Instruction* currentInstruction)
391 unsigned dst = currentInstruction[1].u.operand;
392 unsigned src = currentInstruction[2].u.operand;
403 void JIT::emit_op_end(Instruction* currentInstruction)
408 emitLoad(currentInstruction[1].u.operand, regT1, regT0);
413 void JIT::emit_op_jmp(Instruction* currentInstruction)
415 unsigned target = currentInstruction[1].u.operand;
419 void JIT::emit_op_loop_if_lesseq(Instruction* currentInstruction)
421 unsigned op1 = currentInstruction[1].u.operand;
422 unsigned op2 = currentInstruction[2].u.operand
    [all...]
JITArithmetic.cpp 51 void JIT::emit_op_negate(Instruction* currentInstruction)
53 unsigned dst = currentInstruction[1].u.operand;
54 unsigned src = currentInstruction[2].u.operand;
77 void JIT::emitSlow_op_negate(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
79 unsigned dst = currentInstruction[1].u.operand;
89 void JIT::emit_op_jnless(Instruction* currentInstruction)
91 unsigned op1 = currentInstruction[1].u.operand;
92 unsigned op2 = currentInstruction[2].u.operand;
93 unsigned target = currentInstruction[3].u.operand;
126 void JIT::emitSlow_op_jnless(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter
    [all...]
JITPropertyAccess.cpp 53 void JIT::emit_op_put_by_index(Instruction* currentInstruction)
55 unsigned base = currentInstruction[1].u.operand;
56 unsigned property = currentInstruction[2].u.operand;
57 unsigned value = currentInstruction[3].u.operand;
66 void JIT::emit_op_put_getter(Instruction* currentInstruction)
68 unsigned base = currentInstruction[1].u.operand;
69 unsigned property = currentInstruction[2].u.operand;
70 unsigned function = currentInstruction[3].u.operand;
79 void JIT::emit_op_put_setter(Instruction* currentInstruction)
81 unsigned base = currentInstruction[1].u.operand
    [all...]
JIT.cpp 124 stubCall.addArgument(currentInstruction[2].u.operand); \
125 stubCall.addArgument(currentInstruction[3].u.operand); \
126 stubCall.call(currentInstruction[1].u.operand); \
133 stubCall.addArgument(currentInstruction[2].u.operand); \
134 stubCall.call(currentInstruction[1].u.operand); \
143 stubCall.addArgument(currentInstruction[2].u.operand, regT2); \
144 stubCall.addArgument(currentInstruction[3].u.operand, regT2); \
145 stubCall.call(currentInstruction[1].u.operand); \
152 stubCall.addArgument(currentInstruction[2].u.operand, regT2); \
153 stubCall.call(currentInstruction[1].u.operand);
    [all...]
JITCall.cpp 139 void JIT::emit_op_ret(Instruction* currentInstruction)
141 unsigned dst = currentInstruction[1].u.operand;
155 void JIT::emit_op_construct_verify(Instruction* currentInstruction)
157 unsigned dst = currentInstruction[1].u.operand;
165 void JIT::emitSlow_op_construct_verify(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
167 unsigned dst = currentInstruction[1].u.operand;
168 unsigned src = currentInstruction[2].u.operand;
176 void JIT::emitSlow_op_call(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter)
178 compileOpCallSlowCase(currentInstruction, iter, m_callLinkInfoIndex++, op_call);
181 void JIT::emitSlow_op_call_eval(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter
    [all...]
JIT.h     [all...]

Completed in 248 milliseconds