blob: a382f51cad18eef7a90307308f7a5a85f4ca6aae [file] [log] [blame]
/*
* Copyright (C) 2008 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "JIT.h"
#if ENABLE(JIT)
#include "CodeBlock.h"
#include "JITInlineMethods.h"
#include "JSArray.h"
#include "JSFunction.h"
#include "Interpreter.h"
#include "ResultType.h"
#include "SamplingTool.h"
#ifndef NDEBUG
#include <stdio.h>
#endif
using namespace std;
namespace JSC {
COMPILE_ASSERT(CTI_ARGS_code == 0xC, CTI_ARGS_code_is_C);
COMPILE_ASSERT(CTI_ARGS_callFrame == 0xE, CTI_ARGS_callFrame_is_E);
#if COMPILER(GCC) && PLATFORM(X86)
#if PLATFORM(DARWIN)
#define SYMBOL_STRING(name) "_" #name
#else
#define SYMBOL_STRING(name) #name
#endif
asm(
".globl " SYMBOL_STRING(ctiTrampoline) "\n"
SYMBOL_STRING(ctiTrampoline) ":" "\n"
"pushl %esi" "\n"
"pushl %edi" "\n"
"pushl %ebx" "\n"
"subl $0x20, %esp" "\n"
"movl $512, %esi" "\n"
"movl 0x38(%esp), %edi" "\n" // Ox38 = 0x0E * 4, 0x0E = CTI_ARGS_callFrame (see assertion above)
"call *0x30(%esp)" "\n" // Ox30 = 0x0C * 4, 0x0C = CTI_ARGS_code (see assertion above)
"addl $0x20, %esp" "\n"
"popl %ebx" "\n"
"popl %edi" "\n"
"popl %esi" "\n"
"ret" "\n"
);
asm(
".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"
SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n"
#if USE(CTI_ARGUMENT)
#if USE(FAST_CALL_CTI_ARGUMENT)
"movl %esp, %ecx" "\n"
#else
"movl %esp, 0(%esp)" "\n"
#endif
"call " SYMBOL_STRING(_ZN3JSC11Interpreter12cti_vm_throwEPPv) "\n"
#else
"call " SYMBOL_STRING(_ZN3JSC11Interpreter12cti_vm_throwEPvz) "\n"
#endif
"addl $0x20, %esp" "\n"
"popl %ebx" "\n"
"popl %edi" "\n"
"popl %esi" "\n"
"ret" "\n"
);
#elif COMPILER(MSVC)
extern "C" {
__declspec(naked) JSValue* ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue** exception, Profiler**, JSGlobalData*)
{
__asm {
push esi;
push edi;
push ebx;
sub esp, 0x20;
mov esi, 512;
mov ecx, esp;
mov edi, [esp + 0x38];
call [esp + 0x30]; // Ox30 = 0x0C * 4, 0x0C = CTI_ARGS_code (see assertion above)
add esp, 0x20;
pop ebx;
pop edi;
pop esi;
ret;
}
}
__declspec(naked) void ctiVMThrowTrampoline()
{
__asm {
mov ecx, esp;
call JSC::Interpreter::cti_vm_throw;
add esp, 0x20;
pop ebx;
pop edi;
pop esi;
ret;
}
}
}
#endif
void ctiSetReturnAddress(void** where, void* what)
{
*where = what;
}
void ctiRepatchCallByReturnAddress(void* where, void* what)
{
(static_cast<void**>(where))[-1] = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(what) - reinterpret_cast<uintptr_t>(where));
}
#ifndef NDEBUG
void JIT::printBytecodeOperandTypes(unsigned src1, unsigned src2)
{
char which1 = '*';
if (m_codeBlock->isConstantRegisterIndex(src1)) {
JSValue* value = m_codeBlock->getConstant(src1);
which1 =
JSImmediate::isImmediate(value) ?
(JSImmediate::isNumber(value) ? 'i' :
JSImmediate::isBoolean(value) ? 'b' :
value->isUndefined() ? 'u' :
value->isNull() ? 'n' : '?')
:
(value->isString() ? 's' :
value->isObject() ? 'o' :
'k');
}
char which2 = '*';
if (m_codeBlock->isConstantRegisterIndex(src2)) {
JSValue* value = m_codeBlock->getConstant(src2);
which2 =
JSImmediate::isImmediate(value) ?
(JSImmediate::isNumber(value) ? 'i' :
JSImmediate::isBoolean(value) ? 'b' :
value->isUndefined() ? 'u' :
value->isNull() ? 'n' : '?')
:
(value->isString() ? 's' :
value->isObject() ? 'o' :
'k');
}
if ((which1 != '*') | (which2 != '*'))
fprintf(stderr, "Types %c %c\n", which1, which2);
}
#endif
JIT::JIT(JSGlobalData* globalData, CodeBlock* codeBlock)
: m_interpreter(globalData->interpreter)
, m_globalData(globalData)
, m_codeBlock(codeBlock)
, m_labels(codeBlock ? codeBlock->instructions.size() : 0)
, m_propertyAccessCompilationInfo(codeBlock ? codeBlock->propertyAccessInstructions.size() : 0)
, m_callStructureStubCompilationInfo(codeBlock ? codeBlock->callLinkInfos.size() : 0)
, m_lastResultBytecodeRegister(std::numeric_limits<int>::max())
, m_jumpTargetsPosition(0)
{
}
#define CTI_COMPILE_BINARY_OP(name) \
case name: { \
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx); \
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx); \
emitCTICall(i, Interpreter::cti_##name); \
emitPutVirtualRegister(instruction[i + 1].u.operand); \
i += 4; \
break; \
}
#define CTI_COMPILE_UNARY_OP(name) \
case name: { \
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx); \
emitCTICall(i, Interpreter::cti_##name); \
emitPutVirtualRegister(instruction[i + 1].u.operand); \
i += 3; \
break; \
}
void JIT::compileOpStrictEq(Instruction* instruction, unsigned i, CompileOpStrictEqType type)
{
bool negated = (type == OpNStrictEq);
unsigned dst = instruction[1].u.operand;
unsigned src1 = instruction[2].u.operand;
unsigned src2 = instruction[3].u.operand;
emitGetVirtualRegisters(src1, X86::eax, src2, X86::edx, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc firstNotImmediate = __ je();
__ testl_i32r(JSImmediate::TagMask, X86::edx);
JmpSrc secondNotImmediate = __ je();
__ cmpl_rr(X86::edx, X86::eax);
if (negated)
__ setne_r(X86::eax);
else
__ sete_r(X86::eax);
__ movzbl_rr(X86::eax, X86::eax);
emitTagAsBoolImmediate(X86::eax);
JmpSrc bothWereImmediates = __ jmp();
__ link(firstNotImmediate, __ label());
// check that edx is immediate but not the zero immediate
__ testl_i32r(JSImmediate::TagMask, X86::edx);
__ setz_r(X86::ecx);
__ movzbl_rr(X86::ecx, X86::ecx); // ecx is now 1 if edx was nonimmediate
__ cmpl_i32r(asInteger(JSImmediate::zeroImmediate()), X86::edx);
__ sete_r(X86::edx);
__ movzbl_rr(X86::edx, X86::edx); // edx is now 1 if edx was the 0 immediate
__ orl_rr(X86::ecx, X86::edx);
m_slowCases.append(SlowCaseEntry(__ jnz(), i));
__ movl_i32r(asInteger(jsBoolean(negated)), X86::eax);
JmpSrc firstWasNotImmediate = __ jmp();
__ link(secondNotImmediate, __ label());
// check that eax is not the zero immediate (we know it must be immediate)
__ cmpl_i32r(asInteger(JSImmediate::zeroImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ je(), i));
__ movl_i32r(asInteger(jsBoolean(negated)), X86::eax);
__ link(bothWereImmediates, __ label());
__ link(firstWasNotImmediate, __ label());
emitPutVirtualRegister(dst);
}
void JIT::emitSlowScriptCheck(unsigned bytecodeIndex)
{
__ subl_i8r(1, X86::esi);
JmpSrc skipTimeout = __ jne();
emitCTICall(bytecodeIndex, Interpreter::cti_timeout_check);
emitGetCTIParam(CTI_ARGS_globalData, X86::ecx);
__ movl_mr(FIELD_OFFSET(JSGlobalData, interpreter), X86::ecx, X86::ecx);
__ movl_mr(FIELD_OFFSET(Interpreter, m_ticksUntilNextTimeoutCheck), X86::ecx, X86::esi);
__ link(skipTimeout, __ label());
killLastResultRegister();
}
void JIT::privateCompileMainPass()
{
Instruction* instruction = m_codeBlock->instructions.begin();
unsigned instructionCount = m_codeBlock->instructions.size();
unsigned propertyAccessInstructionIndex = 0;
unsigned callLinkInfoIndex = 0;
for (unsigned i = 0; i < instructionCount; ) {
ASSERT_WITH_MESSAGE(m_interpreter->isOpcode(instruction[i].u.opcode), "privateCompileMainPass gone bad @ %d", i);
#if ENABLE(OPCODE_SAMPLING)
if (i > 0) // Avoid the overhead of sampling op_enter twice.
__ movl_i32m(m_interpreter->sampler()->encodeSample(instruction + i), m_interpreter->sampler()->sampleSlot());
#endif
m_labels[i] = __ label();
OpcodeID opcodeID = m_interpreter->getOpcodeID(instruction[i].u.opcode);
switch (opcodeID) {
case op_mov: {
unsigned src = instruction[i + 2].u.operand;
if (m_codeBlock->isConstantRegisterIndex(src))
__ movl_i32r(asInteger(m_codeBlock->getConstant(src)), X86::eax);
else
emitGetVirtualRegister(src, X86::eax, i);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_add: {
unsigned dst = instruction[i + 1].u.operand;
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
if (JSValue* value = getConstantImmediateNumericArg(src1)) {
emitGetVirtualRegister(src2, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ addl_i32r(getDeTaggedConstantImmediate(value), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(dst);
} else if (JSValue* value = getConstantImmediateNumericArg(src2)) {
emitGetVirtualRegister(src1, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ addl_i32r(getDeTaggedConstantImmediate(value), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(dst);
} else {
OperandTypes types = OperandTypes::fromInt(instruction[i + 4].u.operand);
if (types.first().mightBeNumber() && types.second().mightBeNumber())
compileBinaryArithOp(op_add, instruction[i + 1].u.operand, instruction[i + 2].u.operand, instruction[i + 3].u.operand, OperandTypes::fromInt(instruction[i + 4].u.operand), i);
else {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_add);
emitPutVirtualRegister(instruction[i + 1].u.operand);
}
}
i += 5;
break;
}
case op_end: {
if (m_codeBlock->needsFullScopeChain)
emitCTICall(i, Interpreter::cti_op_end);
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
__ pushl_m(RegisterFile::ReturnPC * static_cast<int>(sizeof(Register)), X86::edi);
__ ret();
i += 2;
break;
}
case op_jmp: {
unsigned target = instruction[i + 1].u.operand;
m_jmpTable.append(JmpTable(__ jmp(), i + 1 + target));
i += 2;
break;
}
case op_pre_inc: {
int srcDst = instruction[i + 1].u.operand;
emitGetVirtualRegister(srcDst, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ addl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(srcDst);
i += 2;
break;
}
case op_loop: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 1].u.operand;
m_jmpTable.append(JmpTable(__ jmp(), i + 1 + target));
i += 2;
break;
}
case op_loop_if_less: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_i32r(asInteger(src2imm), X86::edx);
m_jmpTable.append(JmpTable(__ jl(), i + 3 + target));
} else {
emitGetVirtualRegisters(instruction[i + 1].u.operand, X86::eax, instruction[i + 2].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_rr(X86::edx, X86::eax);
m_jmpTable.append(JmpTable(__ jl(), i + 3 + target));
}
i += 4;
break;
}
case op_loop_if_lesseq: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_i32r(asInteger(src2imm), X86::edx);
m_jmpTable.append(JmpTable(__ jle(), i + 3 + target));
} else {
emitGetVirtualRegisters(instruction[i + 1].u.operand, X86::eax, instruction[i + 2].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_rr(X86::edx, X86::eax);
m_jmpTable.append(JmpTable(__ jle(), i + 3 + target));
}
i += 4;
break;
}
case op_new_object: {
emitCTICall(i, Interpreter::cti_op_new_object);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 2;
break;
}
case op_put_by_id: {
compilePutByIdHotPath(instruction[i + 1].u.operand, &(m_codeBlock->identifiers[instruction[i + 2].u.operand]), instruction[i + 3].u.operand, i, propertyAccessInstructionIndex++);
i += 8;
break;
}
case op_get_by_id: {
compileGetByIdHotPath(instruction[i + 1].u.operand, instruction[i + 2].u.operand, &(m_codeBlock->identifiers[instruction[i + 3].u.operand]), i, propertyAccessInstructionIndex++);
i += 8;
break;
}
case op_instanceof: {
emitGetVirtualRegister(instruction[i + 2].u.operand, X86::eax, i); // value
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::ecx, i); // baseVal
emitGetVirtualRegister(instruction[i + 4].u.operand, X86::edx, i); // proto
// check if any are immediates
__ orl_rr(X86::eax, X86::ecx);
__ orl_rr(X86::edx, X86::ecx);
__ testl_i32r(JSImmediate::TagMask, X86::ecx);
m_slowCases.append(SlowCaseEntry(__ jnz(), i));
// check that all are object type - this is a bit of a bithack to avoid excess branching;
// we check that the sum of the three type codes from Structures is exactly 3 * ObjectType,
// this works because NumberType and StringType are smaller
__ movl_i32r(3 * ObjectType, X86::ecx);
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::eax);
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::edx, X86::edx);
__ subl_mr(FIELD_OFFSET(Structure, m_typeInfo.m_type), X86::eax, X86::ecx);
__ subl_mr(FIELD_OFFSET(Structure, m_typeInfo.m_type), X86::edx, X86::ecx);
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::edx, i); // reload baseVal
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::edx, X86::edx);
__ cmpl_rm(X86::ecx, FIELD_OFFSET(Structure, m_typeInfo.m_type), X86::edx);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
// check that baseVal's flags include ImplementsHasInstance but not OverridesHasInstance
__ movl_mr(FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::edx, X86::ecx);
__ andl_i32r(ImplementsHasInstance | OverridesHasInstance, X86::ecx);
__ cmpl_i32r(ImplementsHasInstance, X86::ecx);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
emitGetVirtualRegister(instruction[i + 2].u.operand, X86::ecx, i); // reload value
emitGetVirtualRegister(instruction[i + 4].u.operand, X86::edx, i); // reload proto
// optimistically load true result
__ movl_i32r(asInteger(jsBoolean(true)), X86::eax);
JmpDst loop = __ label();
// load value's prototype
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::ecx, X86::ecx);
__ movl_mr(FIELD_OFFSET(Structure, m_prototype), X86::ecx, X86::ecx);
__ cmpl_rr(X86::ecx, X86::edx);
JmpSrc exit = __ je();
__ cmpl_i32r(asInteger(jsNull()), X86::ecx);
JmpSrc goToLoop = __ jne();
__ link(goToLoop, loop);
__ movl_i32r(asInteger(jsBoolean(false)), X86::eax);
__ link(exit, __ label());
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_del_by_id: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 3].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 4);
emitCTICall(i, Interpreter::cti_op_del_by_id);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_mul: {
unsigned dst = instruction[i + 1].u.operand;
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
// For now, only plant a fast int case if the constant operand is greater than zero.
JSValue* src1Value = getConstantImmediateNumericArg(src1);
JSValue* src2Value = getConstantImmediateNumericArg(src2);
int32_t value;
if (src1Value && ((value = JSImmediate::intValue(src1Value)) > 0)) {
emitGetVirtualRegister(src2, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitFastArithDeTagImmediate(X86::eax);
__ imull_i32r(X86::eax, value, X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitFastArithReTagImmediate(X86::eax);
emitPutVirtualRegister(dst);
} else if (src2Value && ((value = JSImmediate::intValue(src2Value)) > 0)) {
emitGetVirtualRegister(src1, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitFastArithDeTagImmediate(X86::eax);
__ imull_i32r(X86::eax, value, X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitFastArithReTagImmediate(X86::eax);
emitPutVirtualRegister(dst);
} else
compileBinaryArithOp(op_mul, instruction[i + 1].u.operand, instruction[i + 2].u.operand, instruction[i + 3].u.operand, OperandTypes::fromInt(instruction[i + 4].u.operand), i);
i += 5;
break;
}
case op_new_func: {
FuncDeclNode* func = (m_codeBlock->functions[instruction[i + 2].u.operand]).get();
emitPutCTIArgConstant(reinterpret_cast<unsigned>(func), 0);
emitCTICall(i, Interpreter::cti_op_new_func);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_call:
case op_call_eval:
case op_construct: {
compileOpCall(opcodeID, instruction + i, i, callLinkInfoIndex++);
i += (opcodeID == op_construct ? 7 : 5);
break;
}
case op_get_global_var: {
JSVariableObject* globalObject = static_cast<JSVariableObject*>(instruction[i + 2].u.jsCell);
__ movl_i32r(asInteger(globalObject), X86::eax);
emitGetVariableObjectRegister(X86::eax, instruction[i + 3].u.operand, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_put_global_var: {
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::edx, i);
JSVariableObject* globalObject = static_cast<JSVariableObject*>(instruction[i + 1].u.jsCell);
__ movl_i32r(asInteger(globalObject), X86::eax);
emitPutVariableObjectRegister(X86::edx, X86::eax, instruction[i + 2].u.operand);
i += 4;
break;
}
case op_get_scoped_var: {
int skip = instruction[i + 3].u.operand + m_codeBlock->needsFullScopeChain;
emitGetVirtualRegister(RegisterFile::ScopeChain, X86::eax, i);
while (skip--)
__ movl_mr(FIELD_OFFSET(ScopeChainNode, next), X86::eax, X86::eax);
__ movl_mr(FIELD_OFFSET(ScopeChainNode, object), X86::eax, X86::eax);
emitGetVariableObjectRegister(X86::eax, instruction[i + 2].u.operand, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_put_scoped_var: {
int skip = instruction[i + 2].u.operand + m_codeBlock->needsFullScopeChain;
emitGetVirtualRegister(RegisterFile::ScopeChain, X86::edx, i);
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::eax, i);
while (skip--)
__ movl_mr(FIELD_OFFSET(ScopeChainNode, next), X86::edx, X86::edx);
__ movl_mr(FIELD_OFFSET(ScopeChainNode, object), X86::edx, X86::edx);
emitPutVariableObjectRegister(X86::eax, X86::edx, instruction[i + 1].u.operand);
i += 4;
break;
}
case op_tear_off_activation: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
emitCTICall(i, Interpreter::cti_op_tear_off_activation);
i += 2;
break;
}
case op_tear_off_arguments: {
emitCTICall(i, Interpreter::cti_op_tear_off_arguments);
i += 1;
break;
}
case op_ret: {
// We could JIT generate the deref, only calling out to C when the refcount hits zero.
if (m_codeBlock->needsFullScopeChain)
emitCTICall(i, Interpreter::cti_op_ret_scopeChain);
// Return the result in %eax.
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
// Grab the return address.
emitGetVirtualRegister(RegisterFile::ReturnPC, X86::edx, i);
// Restore our caller's "r".
emitGetVirtualRegister(RegisterFile::CallerFrame, X86::edi, i);
// Return.
__ pushl_r(X86::edx);
__ ret();
i += 2;
break;
}
case op_new_array: {
__ leal_mr(sizeof(Register) * instruction[i + 2].u.operand, X86::edi, X86::edx);
emitPutCTIArg(X86::edx, 0);
emitPutCTIArgConstant(instruction[i + 3].u.operand, 4);
emitCTICall(i, Interpreter::cti_op_new_array);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_resolve: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitCTICall(i, Interpreter::cti_op_resolve);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_construct_verify: {
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc isImmediate = __ jne();
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ cmpl_i32m(ObjectType, FIELD_OFFSET(Structure, m_typeInfo) + FIELD_OFFSET(TypeInfo, m_type), X86::ecx);
JmpSrc isObject = __ je();
__ link(isImmediate, __ label());
emitGetVirtualRegister(instruction[i + 2].u.operand, X86::eax, i);
emitPutVirtualRegister(instruction[i + 1].u.operand);
__ link(isObject, __ label());
i += 3;
break;
}
case op_get_by_val: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
emitFastArithImmToInt(X86::edx);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ cmpl_i32m(reinterpret_cast<unsigned>(m_interpreter->m_jsArrayVptr), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
// This is an array; get the m_storage pointer into ecx, then check if the index is below the fast cutoff
__ movl_mr(FIELD_OFFSET(JSArray, m_storage), X86::eax, X86::ecx);
__ cmpl_rm(X86::edx, FIELD_OFFSET(JSArray, m_fastAccessCutoff), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jbe(), i));
// Get the value from the vector
__ movl_mr(FIELD_OFFSET(ArrayStorage, m_vector[0]), X86::ecx, X86::edx, sizeof(JSValue*), X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_resolve_func: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 3].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitCTICall(i, Interpreter::cti_op_resolve_func);
emitPutVirtualRegister(instruction[i + 2].u.operand, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_sub: {
compileBinaryArithOp(op_sub, instruction[i + 1].u.operand, instruction[i + 2].u.operand, instruction[i + 3].u.operand, OperandTypes::fromInt(instruction[i + 4].u.operand), i);
i += 5;
break;
}
case op_put_by_val: {
emitGetVirtualRegisters(instruction[i + 1].u.operand, X86::eax, instruction[i + 2].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
emitFastArithImmToInt(X86::edx);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ cmpl_i32m(reinterpret_cast<unsigned>(m_interpreter->m_jsArrayVptr), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
// This is an array; get the m_storage pointer into ecx, then check if the index is below the fast cutoff
__ movl_mr(FIELD_OFFSET(JSArray, m_storage), X86::eax, X86::ecx);
__ cmpl_rm(X86::edx, FIELD_OFFSET(JSArray, m_fastAccessCutoff), X86::eax);
JmpSrc inFastVector = __ ja();
// No; oh well, check if the access if within the vector - if so, we may still be okay.
__ cmpl_rm(X86::edx, FIELD_OFFSET(ArrayStorage, m_vectorLength), X86::ecx);
m_slowCases.append(SlowCaseEntry(__ jbe(), i));
// This is a write to the slow part of the vector; first, we have to check if this would be the first write to this location.
// FIXME: should be able to handle initial write to array; increment the the number of items in the array, and potentially update fast access cutoff.
__ cmpl_i8m(0, FIELD_OFFSET(ArrayStorage, m_vector[0]), X86::ecx, X86::edx, sizeof(JSValue*));
m_slowCases.append(SlowCaseEntry(__ je(), i));
// All good - put the value into the array.
__ link(inFastVector, __ label());
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::eax, i);
__ movl_rm(X86::eax, FIELD_OFFSET(ArrayStorage, m_vector[0]), X86::ecx, X86::edx, sizeof(JSValue*));
i += 4;
break;
}
CTI_COMPILE_BINARY_OP(op_lesseq)
case op_loop_if_true: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 2].u.operand;
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
__ cmpl_i32r(asInteger(JSImmediate::zeroImmediate()), X86::eax);
JmpSrc isZero = __ je();
__ testl_i32r(JSImmediate::TagBitTypeInteger, X86::eax);
m_jmpTable.append(JmpTable(__ jne(), i + 2 + target));
__ cmpl_i32r(asInteger(JSImmediate::trueImmediate()), X86::eax);
m_jmpTable.append(JmpTable(__ je(), i + 2 + target));
__ cmpl_i32r(asInteger(JSImmediate::falseImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ link(isZero, __ label());
i += 3;
break;
};
case op_resolve_base: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitCTICall(i, Interpreter::cti_op_resolve_base);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_negate: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitCTICall(i, Interpreter::cti_op_negate);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_resolve_skip: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitPutCTIArgConstant(instruction[i + 3].u.operand + m_codeBlock->needsFullScopeChain, 4);
emitCTICall(i, Interpreter::cti_op_resolve_skip);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_resolve_global: {
// Fast case
unsigned globalObject = asInteger(instruction[i + 2].u.jsCell);
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 3].u.operand]);
void* structureAddress = reinterpret_cast<void*>(instruction + i + 4);
void* offsetAddr = reinterpret_cast<void*>(instruction + i + 5);
// Check Structure of global object
__ movl_i32r(globalObject, X86::eax);
__ movl_mr(structureAddress, X86::edx);
__ cmpl_rm(X86::edx, FIELD_OFFSET(JSCell, m_structure), X86::eax);
JmpSrc noMatch = __ jne(); // Structures don't match
// Load cached property
__ movl_mr(FIELD_OFFSET(JSGlobalObject, m_propertyStorage), X86::eax, X86::eax);
__ movl_mr(offsetAddr, X86::edx);
__ movl_mr(0, X86::eax, X86::edx, sizeof(JSValue*), X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
JmpSrc end = __ jmp();
// Slow case
__ link(noMatch, __ label());
emitPutCTIArgConstant(globalObject, 0);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 4);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(instruction + i), 8);
emitCTICall(i, Interpreter::cti_op_resolve_global);
emitPutVirtualRegister(instruction[i + 1].u.operand);
__ link(end, __ label());
i += 6;
break;
}
CTI_COMPILE_BINARY_OP(op_div)
case op_pre_dec: {
int srcDst = instruction[i + 1].u.operand;
emitGetVirtualRegister(srcDst, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ subl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(srcDst);
i += 2;
break;
}
case op_jnless: {
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_i32r(asInteger(src2imm), X86::edx);
m_jmpTable.append(JmpTable(__ jge(), i + 3 + target));
} else {
emitGetVirtualRegisters(instruction[i + 1].u.operand, X86::eax, instruction[i + 2].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::edx, i);
__ cmpl_rr(X86::edx, X86::eax);
m_jmpTable.append(JmpTable(__ jge(), i + 3 + target));
}
i += 4;
break;
}
case op_not: {
emitGetVirtualRegister(instruction[i + 2].u.operand, X86::eax, i);
__ xorl_i8r(JSImmediate::FullTagTypeBool, X86::eax);
__ testl_i32r(JSImmediate::FullTagTypeMask, X86::eax); // i8?
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ xorl_i8r((JSImmediate::FullTagTypeBool | JSImmediate::ExtendedPayloadBitBoolValue), X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_jfalse: {
unsigned target = instruction[i + 2].u.operand;
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
__ cmpl_i32r(asInteger(JSImmediate::zeroImmediate()), X86::eax);
m_jmpTable.append(JmpTable(__ je(), i + 2 + target));
__ testl_i32r(JSImmediate::TagBitTypeInteger, X86::eax);
JmpSrc isNonZero = __ jne();
__ cmpl_i32r(asInteger(JSImmediate::falseImmediate()), X86::eax);
m_jmpTable.append(JmpTable(__ je(), i + 2 + target));
__ cmpl_i32r(asInteger(JSImmediate::trueImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ link(isNonZero, __ label());
i += 3;
break;
};
case op_jeq_null: {
unsigned src = instruction[i + 1].u.operand;
unsigned target = instruction[i + 2].u.operand;
emitGetVirtualRegister(src, X86::eax, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc isImmediate = __ jnz();
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ testl_i32m(MasqueradesAsUndefined, FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::ecx);
__ setnz_r(X86::eax);
JmpSrc wasNotImmediate = __ jmp();
__ link(isImmediate, __ label());
__ movl_i32r(~JSImmediate::ExtendedTagBitUndefined, X86::ecx);
__ andl_rr(X86::eax, X86::ecx);
__ cmpl_i32r(JSImmediate::FullTagTypeNull, X86::ecx);
__ sete_r(X86::eax);
__ link(wasNotImmediate, __ label());
__ movzbl_rr(X86::eax, X86::eax);
__ cmpl_i32r(0, X86::eax);
m_jmpTable.append(JmpTable(__ jnz(), i + 2 + target));
i += 3;
break;
};
case op_jneq_null: {
unsigned src = instruction[i + 1].u.operand;
unsigned target = instruction[i + 2].u.operand;
emitGetVirtualRegister(src, X86::eax, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc isImmediate = __ jnz();
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ testl_i32m(MasqueradesAsUndefined, FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::ecx);
__ setz_r(X86::eax);
JmpSrc wasNotImmediate = __ jmp();
__ link(isImmediate, __ label());
__ movl_i32r(~JSImmediate::ExtendedTagBitUndefined, X86::ecx);
__ andl_rr(X86::eax, X86::ecx);
__ cmpl_i32r(JSImmediate::FullTagTypeNull, X86::ecx);
__ setne_r(X86::eax);
__ link(wasNotImmediate, __ label());
__ movzbl_rr(X86::eax, X86::eax);
__ cmpl_i32r(0, X86::eax);
m_jmpTable.append(JmpTable(__ jnz(), i + 2 + target));
i += 3;
break;
}
case op_post_inc: {
int srcDst = instruction[i + 2].u.operand;
emitGetVirtualRegister(srcDst, X86::eax, i);
__ movl_rr(X86::eax, X86::edx);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ addl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::edx);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(srcDst, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_unexpected_load: {
JSValue* v = m_codeBlock->unexpectedConstants[instruction[i + 2].u.operand];
__ movl_i32r(asInteger(v), X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_jsr: {
int retAddrDst = instruction[i + 1].u.operand;
int target = instruction[i + 2].u.operand;
__ movl_i32m(0, sizeof(Register) * retAddrDst, X86::edi);
JmpDst addrPosition = __ label();
m_jmpTable.append(JmpTable(__ jmp(), i + 2 + target));
JmpDst sretTarget = __ label();
m_jsrSites.append(JSRInfo(addrPosition, sretTarget));
i += 3;
break;
}
case op_sret: {
__ jmp_m(sizeof(Register) * instruction[i + 1].u.operand, X86::edi);
i += 2;
break;
}
case op_eq: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNums(X86::eax, X86::edx, i);
__ cmpl_rr(X86::edx, X86::eax);
__ sete_r(X86::eax);
__ movzbl_rr(X86::eax, X86::eax);
emitTagAsBoolImmediate(X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_lshift: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::ecx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::ecx, i);
emitFastArithImmToInt(X86::eax);
emitFastArithImmToInt(X86::ecx);
__ shll_CLr(X86::eax);
emitFastArithIntToImmOrSlowCase(X86::eax, i);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_bitand: {
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
unsigned dst = instruction[i + 1].u.operand;
if (JSValue* value = getConstantImmediateNumericArg(src1)) {
emitGetVirtualRegister(src2, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ andl_i32r(asInteger(value), X86::eax); // FIXME: make it more obvious this is relying on the format of JSImmediate
emitPutVirtualRegister(dst);
} else if (JSValue* value = getConstantImmediateNumericArg(src2)) {
emitGetVirtualRegister(src1, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ andl_i32r(asInteger(value), X86::eax);
emitPutVirtualRegister(dst);
} else {
emitGetVirtualRegisters(src1, X86::eax, src2, X86::edx, i);
__ andl_rr(X86::edx, X86::eax);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitPutVirtualRegister(dst);
}
i += 5;
break;
}
case op_rshift: {
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
if (JSValue* value = getConstantImmediateNumericArg(src2)) {
emitGetVirtualRegister(src1, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
// Mask with 0x1f as per ecma-262 11.7.2 step 7.
__ sarl_i8r(JSImmediate::getTruncatedUInt32(value) & 0x1f, X86::eax);
} else {
emitGetVirtualRegisters(src1, X86::eax, src2, X86::ecx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::ecx, i);
emitFastArithImmToInt(X86::ecx);
__ sarl_CLr(X86::eax);
}
emitFastArithPotentiallyReTagImmediate(X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_bitnot: {
emitGetVirtualRegister(instruction[i + 2].u.operand, X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ xorl_i8r(~JSImmediate::TagBitTypeInteger, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_resolve_with_base: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 3].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitCTICall(i, Interpreter::cti_op_resolve_with_base);
emitPutVirtualRegister(instruction[i + 2].u.operand, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_new_func_exp: {
FuncExprNode* func = (m_codeBlock->functionExpressions[instruction[i + 2].u.operand]).get();
emitPutCTIArgConstant(reinterpret_cast<unsigned>(func), 0);
emitCTICall(i, Interpreter::cti_op_new_func_exp);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_mod: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::ecx, i);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
emitJumpSlowCaseIfNotImmNum(X86::ecx, i);
emitFastArithDeTagImmediate(X86::eax);
m_slowCases.append(SlowCaseEntry(emitFastArithDeTagImmediateJumpIfZero(X86::ecx), i));
__ cdq();
__ idivl_r(X86::ecx);
emitFastArithReTagImmediate(X86::edx);
__ movl_rr(X86::edx, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_jtrue: {
unsigned target = instruction[i + 2].u.operand;
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
__ cmpl_i32r(asInteger(JSImmediate::zeroImmediate()), X86::eax);
JmpSrc isZero = __ je();
__ testl_i32r(JSImmediate::TagBitTypeInteger, X86::eax);
m_jmpTable.append(JmpTable(__ jne(), i + 2 + target));
__ cmpl_i32r(asInteger(JSImmediate::trueImmediate()), X86::eax);
m_jmpTable.append(JmpTable(__ je(), i + 2 + target));
__ cmpl_i32r(asInteger(JSImmediate::falseImmediate()), X86::eax);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ link(isZero, __ label());
i += 3;
break;
}
CTI_COMPILE_BINARY_OP(op_less)
case op_neq: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNums(X86::eax, X86::edx, i);
__ cmpl_rr(X86::eax, X86::edx);
__ setne_r(X86::eax);
__ movzbl_rr(X86::eax, X86::eax);
emitTagAsBoolImmediate(X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_post_dec: {
int srcDst = instruction[i + 2].u.operand;
emitGetVirtualRegister(srcDst, X86::eax, i);
__ movl_rr(X86::eax, X86::edx);
emitJumpSlowCaseIfNotImmNum(X86::eax, i);
__ subl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::edx);
m_slowCases.append(SlowCaseEntry(__ jo(), i));
emitPutVirtualRegister(srcDst, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
CTI_COMPILE_BINARY_OP(op_urshift)
case op_bitxor: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNums(X86::eax, X86::edx, i);
__ xorl_rr(X86::edx, X86::eax);
emitFastArithReTagImmediate(X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_new_regexp: {
RegExp* regExp = m_codeBlock->regexps[instruction[i + 2].u.operand].get();
emitPutCTIArgConstant(reinterpret_cast<unsigned>(regExp), 0);
emitCTICall(i, Interpreter::cti_op_new_regexp);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_bitor: {
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::edx, i);
emitJumpSlowCaseIfNotImmNums(X86::eax, X86::edx, i);
__ orl_rr(X86::edx, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_throw: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
emitCTICall(i, Interpreter::cti_op_throw);
__ addl_i8r(0x20, X86::esp);
__ popl_r(X86::ebx);
__ popl_r(X86::edi);
__ popl_r(X86::esi);
__ ret();
i += 2;
break;
}
case op_get_pnames: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitCTICall(i, Interpreter::cti_op_get_pnames);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_next_pname: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
unsigned target = instruction[i + 3].u.operand;
emitCTICall(i, Interpreter::cti_op_next_pname);
__ testl_rr(X86::eax, X86::eax);
JmpSrc endOfIter = __ je();
emitPutVirtualRegister(instruction[i + 1].u.operand);
m_jmpTable.append(JmpTable(__ jmp(), i + 3 + target));
__ link(endOfIter, __ label());
i += 4;
break;
}
case op_push_scope: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
emitCTICall(i, Interpreter::cti_op_push_scope);
i += 2;
break;
}
case op_pop_scope: {
emitCTICall(i, Interpreter::cti_op_pop_scope);
i += 1;
break;
}
CTI_COMPILE_UNARY_OP(op_typeof)
CTI_COMPILE_UNARY_OP(op_is_undefined)
CTI_COMPILE_UNARY_OP(op_is_boolean)
CTI_COMPILE_UNARY_OP(op_is_number)
CTI_COMPILE_UNARY_OP(op_is_string)
CTI_COMPILE_UNARY_OP(op_is_object)
CTI_COMPILE_UNARY_OP(op_is_function)
case op_stricteq: {
compileOpStrictEq(instruction + i, i, OpStrictEq);
i += 4;
break;
}
case op_nstricteq: {
compileOpStrictEq(instruction + i, i, OpNStrictEq);
i += 4;
break;
}
case op_to_jsnumber: {
int srcVReg = instruction[i + 2].u.operand;
emitGetVirtualRegister(srcVReg, X86::eax, i);
__ testl_i32r(JSImmediate::TagBitTypeInteger, X86::eax);
JmpSrc wasImmediate = __ jnz();
emitJumpSlowCaseIfNotJSCell(X86::eax, i, srcVReg);
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ cmpl_i32m(NumberType, FIELD_OFFSET(Structure, m_typeInfo.m_type), X86::ecx);
m_slowCases.append(SlowCaseEntry(__ jne(), i));
__ link(wasImmediate, __ label());
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_in: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_in);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_push_new_scope: {
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 0);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_push_new_scope);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_catch: {
emitGetCTIParam(CTI_ARGS_callFrame, X86::edi); // edi := r
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 2;
break;
}
case op_jmp_scopes: {
unsigned count = instruction[i + 1].u.operand;
emitPutCTIArgConstant(count, 0);
emitCTICall(i, Interpreter::cti_op_jmp_scopes);
unsigned target = instruction[i + 2].u.operand;
m_jmpTable.append(JmpTable(__ jmp(), i + 2 + target));
i += 3;
break;
}
case op_put_by_index: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
emitPutCTIArgConstant(instruction[i + 2].u.operand, 4);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 8, X86::ecx);
emitCTICall(i, Interpreter::cti_op_put_by_index);
i += 4;
break;
}
case op_switch_imm: {
unsigned tableIndex = instruction[i + 1].u.operand;
unsigned defaultOffset = instruction[i + 2].u.operand;
unsigned scrutinee = instruction[i + 3].u.operand;
// create jump table for switch destinations, track this switch statement.
SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTables[tableIndex];
m_switches.append(SwitchRecord(jumpTable, i, defaultOffset, SwitchRecord::Immediate));
jumpTable->ctiOffsets.grow(jumpTable->branchOffsets.size());
emitPutCTIArgFromVirtualRegister(scrutinee, 0, X86::ecx);
emitPutCTIArgConstant(tableIndex, 4);
emitCTICall(i, Interpreter::cti_op_switch_imm);
__ jmp_r(X86::eax);
i += 4;
break;
}
case op_switch_char: {
unsigned tableIndex = instruction[i + 1].u.operand;
unsigned defaultOffset = instruction[i + 2].u.operand;
unsigned scrutinee = instruction[i + 3].u.operand;
// create jump table for switch destinations, track this switch statement.
SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTables[tableIndex];
m_switches.append(SwitchRecord(jumpTable, i, defaultOffset, SwitchRecord::Character));
jumpTable->ctiOffsets.grow(jumpTable->branchOffsets.size());
emitPutCTIArgFromVirtualRegister(scrutinee, 0, X86::ecx);
emitPutCTIArgConstant(tableIndex, 4);
emitCTICall(i, Interpreter::cti_op_switch_char);
__ jmp_r(X86::eax);
i += 4;
break;
}
case op_switch_string: {
unsigned tableIndex = instruction[i + 1].u.operand;
unsigned defaultOffset = instruction[i + 2].u.operand;
unsigned scrutinee = instruction[i + 3].u.operand;
// create jump table for switch destinations, track this switch statement.
StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTables[tableIndex];
m_switches.append(SwitchRecord(jumpTable, i, defaultOffset));
emitPutCTIArgFromVirtualRegister(scrutinee, 0, X86::ecx);
emitPutCTIArgConstant(tableIndex, 4);
emitCTICall(i, Interpreter::cti_op_switch_string);
__ jmp_r(X86::eax);
i += 4;
break;
}
case op_del_by_val: {
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_del_by_val);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_put_getter: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 4);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 8, X86::ecx);
emitCTICall(i, Interpreter::cti_op_put_getter);
i += 4;
break;
}
case op_put_setter: {
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::ecx);
Identifier* ident = &(m_codeBlock->identifiers[instruction[i + 2].u.operand]);
emitPutCTIArgConstant(reinterpret_cast<unsigned>(ident), 4);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 8, X86::ecx);
emitCTICall(i, Interpreter::cti_op_put_setter);
i += 4;
break;
}
case op_new_error: {
JSValue* message = m_codeBlock->unexpectedConstants[instruction[i + 3].u.operand];
emitPutCTIArgConstant(instruction[i + 2].u.operand, 0);
emitPutCTIArgConstant(asInteger(message), 4);
emitPutCTIArgConstant(m_codeBlock->lineNumberForVPC(&instruction[i]), 8);
emitCTICall(i, Interpreter::cti_op_new_error);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_debug: {
emitPutCTIArgConstant(instruction[i + 1].u.operand, 0);
emitPutCTIArgConstant(instruction[i + 2].u.operand, 4);
emitPutCTIArgConstant(instruction[i + 3].u.operand, 8);
emitCTICall(i, Interpreter::cti_op_debug);
i += 4;
break;
}
case op_eq_null: {
unsigned dst = instruction[i + 1].u.operand;
unsigned src1 = instruction[i + 2].u.operand;
emitGetVirtualRegister(src1, X86::eax, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc isImmediate = __ jnz();
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ testl_i32m(MasqueradesAsUndefined, FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::ecx);
__ setnz_r(X86::eax);
JmpSrc wasNotImmediate = __ jmp();
__ link(isImmediate, __ label());
__ movl_i32r(~JSImmediate::ExtendedTagBitUndefined, X86::ecx);
__ andl_rr(X86::eax, X86::ecx);
__ cmpl_i32r(JSImmediate::FullTagTypeNull, X86::ecx);
__ sete_r(X86::eax);
__ link(wasNotImmediate, __ label());
__ movzbl_rr(X86::eax, X86::eax);
emitTagAsBoolImmediate(X86::eax);
emitPutVirtualRegister(dst);
i += 3;
break;
}
case op_neq_null: {
unsigned dst = instruction[i + 1].u.operand;
unsigned src1 = instruction[i + 2].u.operand;
emitGetVirtualRegister(src1, X86::eax, i);
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc isImmediate = __ jnz();
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::ecx);
__ testl_i32m(MasqueradesAsUndefined, FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::ecx);
__ setz_r(X86::eax);
JmpSrc wasNotImmediate = __ jmp();
__ link(isImmediate, __ label());
__ movl_i32r(~JSImmediate::ExtendedTagBitUndefined, X86::ecx);
__ andl_rr(X86::eax, X86::ecx);
__ cmpl_i32r(JSImmediate::FullTagTypeNull, X86::ecx);
__ setne_r(X86::eax);
__ link(wasNotImmediate, __ label());
__ movzbl_rr(X86::eax, X86::eax);
emitTagAsBoolImmediate(X86::eax);
emitPutVirtualRegister(dst);
i += 3;
break;
}
case op_enter: {
// Even though CTI doesn't use them, we initialize our constant
// registers to zap stale pointers, to avoid unnecessarily prolonging
// object lifetime and increasing GC pressure.
size_t count = m_codeBlock->numVars + m_codeBlock->constantRegisters.size();
for (size_t j = 0; j < count; ++j)
emitInitRegister(j);
i+= 1;
break;
}
case op_enter_with_activation: {
// Even though CTI doesn't use them, we initialize our constant
// registers to zap stale pointers, to avoid unnecessarily prolonging
// object lifetime and increasing GC pressure.
size_t count = m_codeBlock->numVars + m_codeBlock->constantRegisters.size();
for (size_t j = 0; j < count; ++j)
emitInitRegister(j);
emitCTICall(i, Interpreter::cti_op_push_activation);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i+= 2;
break;
}
case op_create_arguments: {
emitCTICall(i, (m_codeBlock->numParameters == 1) ? Interpreter::cti_op_create_arguments_no_params : Interpreter::cti_op_create_arguments);
i += 1;
break;
}
case op_convert_this: {
emitGetVirtualRegister(instruction[i + 1].u.operand, X86::eax, i);
emitJumpSlowCaseIfNotJSCell(X86::eax, i);
__ movl_mr(FIELD_OFFSET(JSCell, m_structure), X86::eax, X86::edx);
__ testl_i32m(NeedsThisConversion, FIELD_OFFSET(Structure, m_typeInfo.m_flags), X86::edx);
m_slowCases.append(SlowCaseEntry(__ jnz(), i));
i += 2;
break;
}
case op_profile_will_call: {
emitGetCTIParam(CTI_ARGS_profilerReference, X86::eax);
__ cmpl_i32m(0, X86::eax);
JmpSrc noProfiler = __ je();
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::eax);
emitCTICall(i, Interpreter::cti_op_profile_will_call);
__ link(noProfiler, __ label());
i += 2;
break;
}
case op_profile_did_call: {
emitGetCTIParam(CTI_ARGS_profilerReference, X86::eax);
__ cmpl_i32m(0, X86::eax);
JmpSrc noProfiler = __ je();
emitPutCTIArgFromVirtualRegister(instruction[i + 1].u.operand, 0, X86::eax);
emitCTICall(i, Interpreter::cti_op_profile_did_call);
__ link(noProfiler, __ label());
i += 2;
break;
}
case op_get_array_length:
case op_get_by_id_chain:
case op_get_by_id_generic:
case op_get_by_id_proto:
case op_get_by_id_proto_list:
case op_get_by_id_self:
case op_get_by_id_self_list:
case op_get_string_length:
case op_put_by_id_generic:
case op_put_by_id_replace:
case op_put_by_id_transition:
ASSERT_NOT_REACHED();
}
}
ASSERT(propertyAccessInstructionIndex == m_codeBlock->propertyAccessInstructions.size());
ASSERT(callLinkInfoIndex == m_codeBlock->callLinkInfos.size());
}
void JIT::privateCompileLinkPass()
{
unsigned jmpTableCount = m_jmpTable.size();
for (unsigned i = 0; i < jmpTableCount; ++i)
__ link(m_jmpTable[i].from, m_labels[m_jmpTable[i].to]);
m_jmpTable.clear();
}
#define CTI_COMPILE_BINARY_OP_SLOW_CASE(name) \
case name: { \
__ link(iter->from, __ label()); \
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx); \
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx); \
emitCTICall(i, Interpreter::cti_##name); \
emitPutVirtualRegister(instruction[i + 1].u.operand); \
i += 4; \
break; \
}
#define CTI_COMPILE_BINARY_OP_SLOW_CASE_DOUBLE_ENTRY(name) \
case name: { \
__ link(iter->from, __ label()); \
__ link((++iter)->from, __ label()); \
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx); \
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx); \
emitCTICall(i, Interpreter::cti_##name); \
emitPutVirtualRegister(instruction[i + 1].u.operand); \
i += 4; \
break; \
}
void JIT::privateCompileSlowCases()
{
unsigned propertyAccessInstructionIndex = 0;
unsigned callLinkInfoIndex = 0;
Instruction* instruction = m_codeBlock->instructions.begin();
for (Vector<SlowCaseEntry>::iterator iter = m_slowCases.begin(); iter != m_slowCases.end(); ++iter) {
// FIXME: enable peephole optimizations for slow cases when applicable
killLastResultRegister();
unsigned i = iter->to;
#ifndef NDEBUG
unsigned firstTo = i;
#endif
switch (OpcodeID opcodeID = m_interpreter->getOpcodeID(instruction[i].u.opcode)) {
case op_convert_this: {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_convert_this);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 2;
break;
}
case op_add: {
unsigned dst = instruction[i + 1].u.operand;
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
if (JSValue* value = getConstantImmediateNumericArg(src1)) {
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ subl_i32r(getDeTaggedConstantImmediate(value), X86::eax);
__ link(notImm, __ label());
emitPutCTIArgFromVirtualRegister(src1, 0, X86::ecx);
emitPutCTIArg(X86::eax, 4);
emitCTICall(i, Interpreter::cti_op_add);
emitPutVirtualRegister(dst);
} else if (JSValue* value = getConstantImmediateNumericArg(src2)) {
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ subl_i32r(getDeTaggedConstantImmediate(value), X86::eax);
__ link(notImm, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArgFromVirtualRegister(src2, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_add);
emitPutVirtualRegister(dst);
} else {
OperandTypes types = OperandTypes::fromInt(instruction[i + 4].u.operand);
if (types.first().mightBeNumber() && types.second().mightBeNumber())
compileBinaryArithOpSlowCase(op_add, iter, dst, src1, src2, types, i);
else
ASSERT_NOT_REACHED();
}
i += 5;
break;
}
case op_get_by_val: {
// The slow case that handles accesses to arrays (below) may jump back up to here.
JmpDst beginGetByValSlow = __ label();
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ link((++iter)->from, __ label());
emitFastArithIntToImmNoCheck(X86::edx);
__ link(notImm, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_get_by_val);
emitPutVirtualRegister(instruction[i + 1].u.operand);
__ link(__ jmp(), m_labels[i + 4]);
// This is slow case that handles accesses to arrays above the fast cut-off.
// First, check if this is an access to the vector
__ link((++iter)->from, __ label());
__ cmpl_rm(X86::edx, FIELD_OFFSET(ArrayStorage, m_vectorLength), X86::ecx);
__ link(__ jbe(), beginGetByValSlow);
// okay, missed the fast region, but it is still in the vector. Get the value.
__ movl_mr(FIELD_OFFSET(ArrayStorage, m_vector[0]), X86::ecx, X86::edx, sizeof(JSValue*), X86::ecx);
// Check whether the value loaded is zero; if so we need to return undefined.
__ testl_rr(X86::ecx, X86::ecx);
__ link(__ je(), beginGetByValSlow);
__ movl_rr(X86::ecx, X86::eax);
emitPutVirtualRegister(instruction[i + 1].u.operand, X86::eax);
i += 4;
break;
}
case op_sub: {
compileBinaryArithOpSlowCase(op_sub, iter, instruction[i + 1].u.operand, instruction[i + 2].u.operand, instruction[i + 3].u.operand, OperandTypes::fromInt(instruction[i + 4].u.operand), i);
i += 5;
break;
}
case op_rshift: {
unsigned src2 = instruction[i + 3].u.operand;
__ link(iter->from, __ label());
if (getConstantImmediateNumericArg(src2))
emitPutCTIArgFromVirtualRegister(src2, 4, X86::ecx);
else {
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::ecx, 4);
}
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_rshift);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_lshift: {
JmpSrc notImm1 = iter->from;
JmpSrc notImm2 = (++iter)->from;
__ link((++iter)->from, __ label());
emitGetVirtualRegisters(instruction[i + 2].u.operand, X86::eax, instruction[i + 3].u.operand, X86::ecx, i);
__ link(notImm1, __ label());
__ link(notImm2, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::ecx, 4);
emitCTICall(i, Interpreter::cti_op_lshift);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_loop_if_less: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
__ link(iter->from, __ label());
emitPutCTIArg(X86::edx, 0);
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_loop_if_less);
__ testl_rr(X86::eax, X86::eax);
__ link(__ jne(), m_labels[i + 3 + target]);
} else {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_loop_if_less);
__ testl_rr(X86::eax, X86::eax);
__ link(__ jne(), m_labels[i + 3 + target]);
}
i += 4;
break;
}
case op_put_by_id: {
compilePutByIdSlowCase(instruction[i + 1].u.operand, &(m_codeBlock->identifiers[instruction[i + 2].u.operand]), instruction[i + 3].u.operand, i, iter, propertyAccessInstructionIndex++);
i += 8;
break;
}
case op_get_by_id: {
compileGetByIdSlowCase(instruction[i + 1].u.operand, instruction[i + 2].u.operand, &(m_codeBlock->identifiers[instruction[i + 3].u.operand]), i, iter, propertyAccessInstructionIndex++);
i += 8;
break;
}
case op_loop_if_lesseq: {
emitSlowScriptCheck(i);
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
__ link(iter->from, __ label());
emitPutCTIArg(X86::edx, 0);
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_loop_if_lesseq);
__ testl_rr(X86::eax, X86::eax);
__ link(__ jne(), m_labels[i + 3 + target]);
} else {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_loop_if_lesseq);
__ testl_rr(X86::eax, X86::eax);
__ link(__ jne(), m_labels[i + 3 + target]);
}
i += 4;
break;
}
case op_pre_inc: {
unsigned srcDst = instruction[i + 1].u.operand;
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ subl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::eax);
__ link(notImm, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_pre_inc);
emitPutVirtualRegister(srcDst);
i += 2;
break;
}
case op_put_by_val: {
// Normal slow cases - either is not an immediate imm, or is an array.
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ link((++iter)->from, __ label());
emitFastArithIntToImmNoCheck(X86::edx);
__ link(notImm, __ label());
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::ecx, i);
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitPutCTIArg(X86::ecx, 8);
emitCTICall(i, Interpreter::cti_op_put_by_val);
__ link(__ jmp(), m_labels[i + 4]);
// slow cases for immediate int accesses to arrays
__ link((++iter)->from, __ label());
__ link((++iter)->from, __ label());
emitGetVirtualRegister(instruction[i + 3].u.operand, X86::ecx, i);
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitPutCTIArg(X86::ecx, 8);
emitCTICall(i, Interpreter::cti_op_put_by_val_array);
i += 4;
break;
}
case op_loop_if_true: {
emitSlowScriptCheck(i);
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_jtrue);
__ testl_rr(X86::eax, X86::eax);
unsigned target = instruction[i + 2].u.operand;
__ link(__ jne(), m_labels[i + 2 + target]);
i += 3;
break;
}
case op_pre_dec: {
unsigned srcDst = instruction[i + 1].u.operand;
JmpSrc notImm = iter->from;
__ link((++iter)->from, __ label());
__ addl_i8r(getDeTaggedConstantImmediate(JSImmediate::oneImmediate()), X86::eax);
__ link(notImm, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_pre_dec);
emitPutVirtualRegister(srcDst);
i += 2;
break;
}
case op_jnless: {
unsigned target = instruction[i + 3].u.operand;
JSValue* src2imm = getConstantImmediateNumericArg(instruction[i + 2].u.operand);
if (src2imm) {
__ link(iter->from, __ label());
emitPutCTIArg(X86::edx, 0);
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_jless);
__ testl_rr(X86::eax, X86::eax);
__ link(__ je(), m_labels[i + 3 + target]);
} else {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_jless);
__ testl_rr(X86::eax, X86::eax);
__ link(__ je(), m_labels[i + 3 + target]);
}
i += 4;
break;
}
case op_not: {
__ link(iter->from, __ label());
__ xorl_i8r(JSImmediate::FullTagTypeBool, X86::eax);
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_not);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_jfalse: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_jtrue);
__ testl_rr(X86::eax, X86::eax);
unsigned target = instruction[i + 2].u.operand;
__ link(__ je(), m_labels[i + 2 + target]); // inverted!
i += 3;
break;
}
case op_post_inc: {
unsigned srcDst = instruction[i + 2].u.operand;
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_post_inc);
emitPutVirtualRegister(srcDst, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_bitnot: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_bitnot);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_bitand: {
unsigned src1 = instruction[i + 2].u.operand;
unsigned src2 = instruction[i + 3].u.operand;
unsigned dst = instruction[i + 1].u.operand;
if (getConstantImmediateNumericArg(src1)) {
__ link(iter->from, __ label());
emitPutCTIArgFromVirtualRegister(src1, 0, X86::ecx);
emitPutCTIArg(X86::eax, 4);
emitCTICall(i, Interpreter::cti_op_bitand);
emitPutVirtualRegister(dst);
} else if (getConstantImmediateNumericArg(src2)) {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArgFromVirtualRegister(src2, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_bitand);
emitPutVirtualRegister(dst);
} else {
__ link(iter->from, __ label());
emitPutCTIArgFromVirtualRegister(src1, 0, X86::ecx);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_bitand);
emitPutVirtualRegister(dst);
}
i += 5;
break;
}
case op_jtrue: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_jtrue);
__ testl_rr(X86::eax, X86::eax);
unsigned target = instruction[i + 2].u.operand;
__ link(__ jne(), m_labels[i + 2 + target]);
i += 3;
break;
}
case op_post_dec: {
unsigned srcDst = instruction[i + 2].u.operand;
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_post_dec);
emitPutVirtualRegister(srcDst, X86::edx);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
case op_bitxor: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_bitxor);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_bitor: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_bitor);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_eq: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_eq);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_neq: {
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::edx, 4);
emitCTICall(i, Interpreter::cti_op_neq);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
CTI_COMPILE_BINARY_OP_SLOW_CASE_DOUBLE_ENTRY(op_stricteq);
CTI_COMPILE_BINARY_OP_SLOW_CASE_DOUBLE_ENTRY(op_nstricteq);
case op_instanceof: {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
__ link((++iter)->from, __ label());
emitPutCTIArgFromVirtualRegister(instruction[i + 2].u.operand, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(instruction[i + 3].u.operand, 4, X86::ecx);
emitPutCTIArgFromVirtualRegister(instruction[i + 4].u.operand, 8, X86::ecx);
emitCTICall(i, Interpreter::cti_op_instanceof);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 5;
break;
}
case op_mod: {
JmpSrc notImm1 = iter->from;
JmpSrc notImm2 = (++iter)->from;
__ link((++iter)->from, __ label());
emitFastArithReTagImmediate(X86::eax);
emitFastArithReTagImmediate(X86::ecx);
__ link(notImm1, __ label());
__ link(notImm2, __ label());
emitPutCTIArg(X86::eax, 0);
emitPutCTIArg(X86::ecx, 4);
emitCTICall(i, Interpreter::cti_op_mod);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 4;
break;
}
case op_mul: {
int dst = instruction[i + 1].u.operand;
int src1 = instruction[i + 2].u.operand;
int src2 = instruction[i + 3].u.operand;
JSValue* src1Value = getConstantImmediateNumericArg(src1);
JSValue* src2Value = getConstantImmediateNumericArg(src2);
int32_t value;
if (src1Value && ((value = JSImmediate::intValue(src1Value)) > 0)) {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
// There is an extra slow case for (op1 * -N) or (-N * op2), to check for 0 since this should produce a result of -0.
emitPutCTIArgFromVirtualRegister(src1, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(src2, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_mul);
emitPutVirtualRegister(dst);
} else if (src2Value && ((value = JSImmediate::intValue(src2Value)) > 0)) {
__ link(iter->from, __ label());
__ link((++iter)->from, __ label());
// There is an extra slow case for (op1 * -N) or (-N * op2), to check for 0 since this should produce a result of -0.
emitPutCTIArgFromVirtualRegister(src1, 0, X86::ecx);
emitPutCTIArgFromVirtualRegister(src2, 4, X86::ecx);
emitCTICall(i, Interpreter::cti_op_mul);
emitPutVirtualRegister(dst);
} else
compileBinaryArithOpSlowCase(op_mul, iter, dst, src1, src2, OperandTypes::fromInt(instruction[i + 4].u.operand), i);
i += 5;
break;
}
case op_call:
case op_call_eval:
case op_construct: {
compileOpCallSlowCase(instruction + i, i, iter, callLinkInfoIndex++, opcodeID);
i += (opcodeID == op_construct ? 7 : 5);
break;
}
case op_to_jsnumber: {
if (linkSlowCaseIfNotJSCell(iter, instruction[i + 2].u.operand))
++iter;
__ link(iter->from, __ label());
emitPutCTIArg(X86::eax, 0);
emitCTICall(i, Interpreter::cti_op_to_jsnumber);
emitPutVirtualRegister(instruction[i + 1].u.operand);
i += 3;
break;
}
default:
ASSERT_NOT_REACHED();
break;
}
ASSERT_WITH_MESSAGE((iter + 1) == m_slowCases.end() || firstTo != (iter + 1)->to,"Not enough jumps linked in slow case codegen.");
ASSERT_WITH_MESSAGE(firstTo == iter->to, "Too many jumps linked in slow case codegen.");
__ link(__ jmp(), m_labels[i]);
}
ASSERT(propertyAccessInstructionIndex == m_codeBlock->propertyAccessInstructions.size());
ASSERT(callLinkInfoIndex == m_codeBlock->callLinkInfos.size());
}
void JIT::privateCompile()
{
#if ENABLE(CODEBLOCK_SAMPLING)
__ movl_i32m(reinterpret_cast<unsigned>(m_codeBlock), m_interpreter->sampler()->codeBlockSlot());
#endif
#if ENABLE(OPCODE_SAMPLING)
__ movl_i32m(m_interpreter->sampler()->encodeSample(m_codeBlock->instructions.begin()), m_interpreter->sampler()->sampleSlot());
#endif
// Could use a popl_m, but would need to offset the following instruction if so.
__ popl_r(X86::ecx);
emitPutToCallFrameHeader(X86::ecx, RegisterFile::ReturnPC);
JmpSrc slowRegisterFileCheck;
JmpDst afterRegisterFileCheck;
if (m_codeBlock->codeType == FunctionCode) {
// In the case of a fast linked call, we do not set this up in the caller.
__ movl_i32m(reinterpret_cast<unsigned>(m_codeBlock), RegisterFile::CodeBlock * static_cast<int>(sizeof(Register)), X86::edi);
emitGetCTIParam(CTI_ARGS_registerFile, X86::eax);
__ leal_mr(m_codeBlock->numCalleeRegisters * sizeof(Register), X86::edi, X86::edx);
__ cmpl_mr(FIELD_OFFSET(RegisterFile, m_end), X86::eax, X86::edx);
slowRegisterFileCheck = __ jg();
afterRegisterFileCheck = __ label();
}
privateCompileMainPass();
privateCompileLinkPass();
privateCompileSlowCases();
if (m_codeBlock->codeType == FunctionCode) {
__ link(slowRegisterFileCheck, __ label());
emitCTICall(0, Interpreter::cti_register_file_check);
JmpSrc backToBody = __ jmp();
__ link(backToBody, afterRegisterFileCheck);
}
ASSERT(m_jmpTable.isEmpty());
void* code = __ executableCopy();
// Translate vPC offsets into addresses in JIT generated code, for switch tables.
for (unsigned i = 0; i < m_switches.size(); ++i) {
SwitchRecord record = m_switches[i];
unsigned bytecodeIndex = record.bytecodeIndex;
if (record.type != SwitchRecord::String) {
ASSERT(record.type == SwitchRecord::Immediate || record.type == SwitchRecord::Character);
ASSERT(record.jumpTable.simpleJumpTable->branchOffsets.size() == record.jumpTable.simpleJumpTable->ctiOffsets.size());
record.jumpTable.simpleJumpTable->ctiDefault = __ getRelocatedAddress(code, m_labels[bytecodeIndex + 3 + record.defaultOffset]);
for (unsigned j = 0; j < record.jumpTable.simpleJumpTable->branchOffsets.size(); ++j) {
unsigned offset = record.jumpTable.simpleJumpTable->branchOffsets[j];
record.jumpTable.simpleJumpTable->ctiOffsets[j] = offset ? __ getRelocatedAddress(code, m_labels[bytecodeIndex + 3 + offset]) : record.jumpTable.simpleJumpTable->ctiDefault;
}
} else {
ASSERT(record.type == SwitchRecord::String);
record.jumpTable.stringJumpTable->ctiDefault = __ getRelocatedAddress(code, m_labels[bytecodeIndex + 3 + record.defaultOffset]);
StringJumpTable::StringOffsetTable::iterator end = record.jumpTable.stringJumpTable->offsetTable.end();
for (StringJumpTable::StringOffsetTable::iterator it = record.jumpTable.stringJumpTable->offsetTable.begin(); it != end; ++it) {
unsigned offset = it->second.branchOffset;
it->second.ctiOffset = offset ? __ getRelocatedAddress(code, m_labels[bytecodeIndex + 3 + offset]) : record.jumpTable.stringJumpTable->ctiDefault;
}
}
}
for (Vector<HandlerInfo>::iterator iter = m_codeBlock->exceptionHandlers.begin(); iter != m_codeBlock->exceptionHandlers.end(); ++iter)
iter->nativeCode = __ getRelocatedAddress(code, m_labels[iter->target]);
for (Vector<CallRecord>::iterator iter = m_calls.begin(); iter != m_calls.end(); ++iter) {
if (iter->to)
X86Assembler::link(code, iter->from, iter->to);
m_codeBlock->ctiReturnAddressVPCMap.add(__ getRelocatedAddress(code, iter->from), iter->bytecodeIndex);
}
// Link absolute addresses for jsr
for (Vector<JSRInfo>::iterator iter = m_jsrSites.begin(); iter != m_jsrSites.end(); ++iter)
X86Assembler::linkAbsoluteAddress(code, iter->addrPosition, iter->target);
for (unsigned i = 0; i < m_codeBlock->propertyAccessInstructions.size(); ++i) {
StructureStubInfo& info = m_codeBlock->propertyAccessInstructions[i];
info.callReturnLocation = X86Assembler::getRelocatedAddress(code, m_propertyAccessCompilationInfo[i].callReturnLocation);
info.hotPathBegin = X86Assembler::getRelocatedAddress(code, m_propertyAccessCompilationInfo[i].hotPathBegin);
}
for (unsigned i = 0; i < m_codeBlock->callLinkInfos.size(); ++i) {
CallLinkInfo& info = m_codeBlock->callLinkInfos[i];
info.callReturnLocation = X86Assembler::getRelocatedAddress(code, m_callStructureStubCompilationInfo[i].callReturnLocation);
info.hotPathBegin = X86Assembler::getRelocatedAddress(code, m_callStructureStubCompilationInfo[i].hotPathBegin);
info.hotPathOther = X86Assembler::getRelocatedAddress(code, m_callStructureStubCompilationInfo[i].hotPathOther);
info.coldPathOther = X86Assembler::getRelocatedAddress(code, m_callStructureStubCompilationInfo[i].coldPathOther);
}
m_codeBlock->ctiCode = code;
}
void JIT::privateCompileCTIMachineTrampolines()
{
// (1) The first function provides fast property access for array length
// Check eax is an array
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc array_failureCases1 = __ jne();
__ cmpl_i32m(reinterpret_cast<unsigned>(m_interpreter->m_jsArrayVptr), X86::eax);
JmpSrc array_failureCases2 = __ jne();
// Checks out okay! - get the length from the storage
__ movl_mr(FIELD_OFFSET(JSArray, m_storage), X86::eax, X86::eax);
__ movl_mr(FIELD_OFFSET(ArrayStorage, m_length), X86::eax, X86::eax);
__ cmpl_i32r(JSImmediate::maxImmediateInt, X86::eax);
JmpSrc array_failureCases3 = __ ja();
__ addl_rr(X86::eax, X86::eax);
__ addl_i8r(1, X86::eax);
__ ret();
// (2) The second function provides fast property access for string length
JmpDst stringLengthBegin = __ align(16);
// Check eax is a string
__ testl_i32r(JSImmediate::TagMask, X86::eax);
JmpSrc string_failureCases1 = __ jne();
__ cmpl_i32m(reinterpret_cast<unsigned>(m_interpreter->m_jsStringVptr), X86::eax);
JmpSrc string_failureCases2 = __ jne();
// Checks out okay! - get the length from the Ustring.
__ movl_mr(FIELD_OFFSET(JSString, m_value) + FIELD_OFFSET(UString, m_rep), X86::eax, X86::eax);
__ movl_mr(FIELD_OFFSET(UString::Rep, len), X86::eax, X86::eax);
__ cmpl_i32r(JSImmediate::maxImmediateInt, X86::eax);
JmpSrc string_failureCases3 = __ ja();
__ addl_rr(X86::eax, X86::eax);
__ addl_i8r(1, X86::eax);
__ ret();
// (3) Trampolines for the slow cases of op_call / op_call_eval / op_construct.
JmpDst virtualCallPreLinkBegin = __ align(16);
// Load the callee CodeBlock* into eax
__ movl_mr(FIELD_OFFSET(JSFunction, m_body), X86::ecx, X86::eax);
__ movl_mr(FIELD_OFFSET(FunctionBodyNode, m_code), X86::eax, X86::eax);
__ testl_rr(X86::eax, X86::eax);
JmpSrc hasCodeBlock1 = __ jne();
__ popl_r(X86::ebx);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callJSFunction1 = __ call();
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(hasCodeBlock1, __ label());
// Check argCount matches callee arity.
__ cmpl_rm(X86::edx, FIELD_OFFSET(CodeBlock, numParameters), X86::eax);
JmpSrc arityCheckOkay1 = __ je();
__ popl_r(X86::ebx);
emitPutCTIArg(X86::ebx, 4);
emitPutCTIArg(X86::eax, 12);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callArityCheck1 = __ call();
__ movl_rr(X86::edx, X86::edi);
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(arityCheckOkay1, __ label());
compileOpCallInitializeCallFrame();
__ popl_r(X86::ebx);
emitPutCTIArg(X86::ebx, 4);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callDontLazyLinkCall = __ call();
__ pushl_r(X86::ebx);
__ jmp_r(X86::eax);
JmpDst virtualCallLinkBegin = __ align(16);
// Load the callee CodeBlock* into eax
__ movl_mr(FIELD_OFFSET(JSFunction, m_body), X86::ecx, X86::eax);
__ movl_mr(FIELD_OFFSET(FunctionBodyNode, m_code), X86::eax, X86::eax);
__ testl_rr(X86::eax, X86::eax);
JmpSrc hasCodeBlock2 = __ jne();
__ popl_r(X86::ebx);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callJSFunction2 = __ call();
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(hasCodeBlock2, __ label());
// Check argCount matches callee arity.
__ cmpl_rm(X86::edx, FIELD_OFFSET(CodeBlock, numParameters), X86::eax);
JmpSrc arityCheckOkay2 = __ je();
__ popl_r(X86::ebx);
emitPutCTIArg(X86::ebx, 4);
emitPutCTIArg(X86::eax, 12);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callArityCheck2 = __ call();
__ movl_rr(X86::edx, X86::edi);
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(arityCheckOkay2, __ label());
compileOpCallInitializeCallFrame();
__ popl_r(X86::ebx);
emitPutCTIArg(X86::ebx, 4);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callLazyLinkCall = __ call();
__ pushl_r(X86::ebx);
__ jmp_r(X86::eax);
JmpDst virtualCallBegin = __ align(16);
// Load the callee CodeBlock* into eax
__ movl_mr(FIELD_OFFSET(JSFunction, m_body), X86::ecx, X86::eax);
__ movl_mr(FIELD_OFFSET(FunctionBodyNode, m_code), X86::eax, X86::eax);
__ testl_rr(X86::eax, X86::eax);
JmpSrc hasCodeBlock3 = __ jne();
__ popl_r(X86::ebx);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callJSFunction3 = __ call();
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(hasCodeBlock3, __ label());
// Check argCount matches callee arity.
__ cmpl_rm(X86::edx, FIELD_OFFSET(CodeBlock, numParameters), X86::eax);
JmpSrc arityCheckOkay3 = __ je();
__ popl_r(X86::ebx);
emitPutCTIArg(X86::ebx, 4);
emitPutCTIArg(X86::eax, 12);
__ restoreArgumentReference();
emitPutCTIParam(X86::edi, CTI_ARGS_callFrame);
JmpSrc callArityCheck3 = __ call();
__ movl_rr(X86::edx, X86::edi);
emitGetCTIArg(0, X86::ecx);
emitGetCTIArg(8, X86::edx);
__ pushl_r(X86::ebx);
__ link(arityCheckOkay3, __ label());
compileOpCallInitializeCallFrame();
// load ctiCode from the new codeBlock.
__ movl_mr(FIELD_OFFSET(CodeBlock, ctiCode), X86::eax, X86::eax);
__ jmp_r(X86::eax);
// All trampolines constructed! copy the code, link up calls, and set the pointers on the Machine object.
void* code = __ executableCopy();
X86Assembler::link(code, array_failureCases1, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_array_fail));
X86Assembler::link(code, array_failureCases2, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_array_fail));
X86Assembler::link(code, array_failureCases3, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_array_fail));
X86Assembler::link(code, string_failureCases1, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_string_fail));
X86Assembler::link(code, string_failureCases2, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_string_fail));
X86Assembler::link(code, string_failureCases3, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_string_fail));
X86Assembler::link(code, callArityCheck1, reinterpret_cast<void*>(Interpreter::cti_op_call_arityCheck));
X86Assembler::link(code, callArityCheck2, reinterpret_cast<void*>(Interpreter::cti_op_call_arityCheck));
X86Assembler::link(code, callArityCheck3, reinterpret_cast<void*>(Interpreter::cti_op_call_arityCheck));
X86Assembler::link(code, callJSFunction1, reinterpret_cast<void*>(Interpreter::cti_op_call_JSFunction));
X86Assembler::link(code, callJSFunction2, reinterpret_cast<void*>(Interpreter::cti_op_call_JSFunction));
X86Assembler::link(code, callJSFunction3, reinterpret_cast<void*>(Interpreter::cti_op_call_JSFunction));
X86Assembler::link(code, callDontLazyLinkCall, reinterpret_cast<void*>(Interpreter::cti_vm_dontLazyLinkCall));
X86Assembler::link(code, callLazyLinkCall, reinterpret_cast<void*>(Interpreter::cti_vm_lazyLinkCall));
m_interpreter->m_ctiArrayLengthTrampoline = code;
m_interpreter->m_ctiStringLengthTrampoline = X86Assembler::getRelocatedAddress(code, stringLengthBegin);
m_interpreter->m_ctiVirtualCallPreLink = X86Assembler::getRelocatedAddress(code, virtualCallPreLinkBegin);
m_interpreter->m_ctiVirtualCallLink = X86Assembler::getRelocatedAddress(code, virtualCallLinkBegin);
m_interpreter->m_ctiVirtualCall = X86Assembler::getRelocatedAddress(code, virtualCallBegin);
}
void JIT::freeCTIMachineTrampolines(Interpreter* interpreter)
{
WTF::fastFreeExecutable(interpreter->m_ctiArrayLengthTrampoline);
}
void JIT::emitGetVariableObjectRegister(RegisterID variableObject, int index, RegisterID dst)
{
__ movl_mr(FIELD_OFFSET(JSVariableObject, d), variableObject, dst);
__ movl_mr(FIELD_OFFSET(JSVariableObject::JSVariableObjectData, registers), dst, dst);
__ movl_mr(index * sizeof(Register), dst, dst);
}
void JIT::emitPutVariableObjectRegister(RegisterID src, RegisterID variableObject, int index)
{
__ movl_mr(FIELD_OFFSET(JSVariableObject, d), variableObject, variableObject);
__ movl_mr(FIELD_OFFSET(JSVariableObject::JSVariableObjectData, registers), variableObject, variableObject);
__ movl_rm(src, index * sizeof(Register), variableObject);
}
} // namespace JSC
#endif // ENABLE(JIT)