| /* |
| * Copyright (C) 2008, 2009, 2014, 2015 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" |
| |
| #if ENABLE(JIT) |
| #if USE(JSVALUE32_64) |
| #include "JIT.h" |
| |
| #include "CodeBlock.h" |
| #include "DirectArguments.h" |
| #include "GCAwareJITStubRoutine.h" |
| #include "Interpreter.h" |
| #include "JITInlines.h" |
| #include "JSArray.h" |
| #include "JSEnvironmentRecord.h" |
| #include "JSFunction.h" |
| #include "LinkBuffer.h" |
| #include "ResultType.h" |
| #include "SamplingTool.h" |
| #include "SlowPathCall.h" |
| #include <wtf/StringPrintStream.h> |
| |
| |
| namespace JSC { |
| |
| void JIT::emit_op_put_by_index(Instruction* currentInstruction) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| int value = currentInstruction[3].u.operand; |
| |
| emitLoad(base, regT1, regT0); |
| emitLoad(value, regT3, regT2); |
| callOperation(operationPutByIndex, regT1, regT0, property, regT3, regT2); |
| } |
| |
| void JIT::emit_op_put_getter_by_id(Instruction* currentInstruction) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| int options = currentInstruction[3].u.operand; |
| int getter = currentInstruction[4].u.operand; |
| |
| emitLoadPayload(base, regT1); |
| emitLoadPayload(getter, regT3); |
| callOperation(operationPutGetterById, regT1, &m_codeBlock->identifier(property), options, regT3); |
| } |
| |
| void JIT::emit_op_put_setter_by_id(Instruction* currentInstruction) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| unsigned options = currentInstruction[3].u.operand; |
| int setter = currentInstruction[4].u.operand; |
| |
| emitLoadPayload(base, regT1); |
| emitLoadPayload(setter, regT3); |
| callOperation(operationPutSetterById, regT1, &m_codeBlock->identifier(property), options, regT3); |
| } |
| |
| void JIT::emit_op_put_getter_setter(Instruction* currentInstruction) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| unsigned attribute = currentInstruction[3].u.operand; |
| int getter = currentInstruction[4].u.operand; |
| int setter = currentInstruction[5].u.operand; |
| |
| emitLoadPayload(base, regT1); |
| emitLoadPayload(getter, regT3); |
| emitLoadPayload(setter, regT4); |
| callOperation(operationPutGetterSetter, regT1, &m_codeBlock->identifier(property), attribute, regT3, regT4); |
| } |
| |
| void JIT::emit_op_del_by_id(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int base = currentInstruction[2].u.operand; |
| int property = currentInstruction[3].u.operand; |
| emitLoad(base, regT1, regT0); |
| callOperation(operationDeleteById, dst, regT1, regT0, &m_codeBlock->identifier(property)); |
| } |
| |
| JIT::CodeRef JIT::stringGetByValStubGenerator(VM* vm) |
| { |
| JSInterfaceJIT jit(vm); |
| JumpList failures; |
| failures.append(jit.branchStructure(NotEqual, Address(regT0, JSCell::structureIDOffset()), vm->stringStructure.get())); |
| |
| // Load string length to regT1, and start the process of loading the data pointer into regT0 |
| jit.load32(Address(regT0, ThunkHelpers::jsStringLengthOffset()), regT1); |
| jit.loadPtr(Address(regT0, ThunkHelpers::jsStringValueOffset()), regT0); |
| failures.append(jit.branchTest32(Zero, regT0)); |
| |
| // Do an unsigned compare to simultaneously filter negative indices as well as indices that are too large |
| failures.append(jit.branch32(AboveOrEqual, regT2, regT1)); |
| |
| // Load the character |
| JumpList is16Bit; |
| JumpList cont8Bit; |
| // Load the string flags |
| jit.loadPtr(Address(regT0, StringImpl::flagsOffset()), regT1); |
| jit.loadPtr(Address(regT0, StringImpl::dataOffset()), regT0); |
| is16Bit.append(jit.branchTest32(Zero, regT1, TrustedImm32(StringImpl::flagIs8Bit()))); |
| jit.load8(BaseIndex(regT0, regT2, TimesOne, 0), regT0); |
| cont8Bit.append(jit.jump()); |
| is16Bit.link(&jit); |
| jit.load16(BaseIndex(regT0, regT2, TimesTwo, 0), regT0); |
| |
| cont8Bit.link(&jit); |
| |
| failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100))); |
| jit.move(TrustedImmPtr(vm->smallStrings.singleCharacterStrings()), regT1); |
| jit.loadPtr(BaseIndex(regT1, regT0, ScalePtr, 0), regT0); |
| jit.move(TrustedImm32(JSValue::CellTag), regT1); // We null check regT0 on return so this is safe |
| jit.ret(); |
| |
| failures.link(&jit); |
| jit.move(TrustedImm32(0), regT0); |
| jit.ret(); |
| |
| LinkBuffer patchBuffer(*vm, jit, GLOBAL_THUNK_ID); |
| return FINALIZE_CODE(patchBuffer, ("String get_by_val stub")); |
| } |
| |
| void JIT::emit_op_get_by_val(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int base = currentInstruction[2].u.operand; |
| int property = currentInstruction[3].u.operand; |
| ArrayProfile* profile = currentInstruction[4].u.arrayProfile; |
| ByValInfo* byValInfo = m_codeBlock->addByValInfo(); |
| |
| emitLoad2(base, regT1, regT0, property, regT3, regT2); |
| |
| emitJumpSlowCaseIfNotJSCell(base, regT1); |
| PatchableJump notIndex = patchableBranch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag)); |
| addSlowCase(notIndex); |
| emitArrayProfilingSiteWithCell(regT0, regT1, profile); |
| and32(TrustedImm32(IndexingShapeMask), regT1); |
| |
| PatchableJump badType; |
| JumpList slowCases; |
| |
| JITArrayMode mode = chooseArrayMode(profile); |
| switch (mode) { |
| case JITInt32: |
| slowCases = emitInt32GetByVal(currentInstruction, badType); |
| break; |
| case JITDouble: |
| slowCases = emitDoubleGetByVal(currentInstruction, badType); |
| break; |
| case JITContiguous: |
| slowCases = emitContiguousGetByVal(currentInstruction, badType); |
| break; |
| case JITArrayStorage: |
| slowCases = emitArrayStorageGetByVal(currentInstruction, badType); |
| break; |
| default: |
| CRASH(); |
| } |
| |
| addSlowCase(badType); |
| addSlowCase(slowCases); |
| |
| Label done = label(); |
| |
| if (!ASSERT_DISABLED) { |
| Jump resultOK = branch32(NotEqual, regT1, TrustedImm32(JSValue::EmptyValueTag)); |
| abortWithReason(JITGetByValResultIsNotEmpty); |
| resultOK.link(this); |
| } |
| |
| emitValueProfilingSite(); |
| emitStore(dst, regT1, regT0); |
| |
| Label nextHotPath = label(); |
| |
| m_byValCompilationInfo.append(ByValCompilationInfo(byValInfo, m_bytecodeOffset, notIndex, badType, mode, profile, done, nextHotPath)); |
| } |
| |
| JIT::JumpList JIT::emitContiguousLoad(Instruction*, PatchableJump& badType, IndexingType expectedShape) |
| { |
| JumpList slowCases; |
| |
| badType = patchableBranch32(NotEqual, regT1, TrustedImm32(expectedShape)); |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT3); |
| slowCases.append(branch32(AboveOrEqual, regT2, Address(regT3, Butterfly::offsetOfPublicLength()))); |
| load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.tag)), regT1); // tag |
| load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0); // payload |
| slowCases.append(branch32(Equal, regT1, TrustedImm32(JSValue::EmptyValueTag))); |
| |
| return slowCases; |
| } |
| |
| JIT::JumpList JIT::emitDoubleLoad(Instruction*, PatchableJump& badType) |
| { |
| JumpList slowCases; |
| |
| badType = patchableBranch32(NotEqual, regT1, TrustedImm32(DoubleShape)); |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT3); |
| slowCases.append(branch32(AboveOrEqual, regT2, Address(regT3, Butterfly::offsetOfPublicLength()))); |
| loadDouble(BaseIndex(regT3, regT2, TimesEight), fpRegT0); |
| slowCases.append(branchDouble(DoubleNotEqualOrUnordered, fpRegT0, fpRegT0)); |
| |
| return slowCases; |
| } |
| |
| JIT::JumpList JIT::emitArrayStorageLoad(Instruction*, PatchableJump& badType) |
| { |
| JumpList slowCases; |
| |
| add32(TrustedImm32(-ArrayStorageShape), regT1, regT3); |
| badType = patchableBranch32(Above, regT3, TrustedImm32(SlowPutArrayStorageShape - ArrayStorageShape)); |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT3); |
| slowCases.append(branch32(AboveOrEqual, regT2, Address(regT3, ArrayStorage::vectorLengthOffset()))); |
| load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), regT1); // tag |
| load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0); // payload |
| slowCases.append(branch32(Equal, regT1, TrustedImm32(JSValue::EmptyValueTag))); |
| |
| return slowCases; |
| } |
| |
| JITGetByIdGenerator JIT::emitGetByValWithCachedId(Instruction* currentInstruction, const Identifier& propertyName, Jump& fastDoneCase, Jump& slowDoneCase, JumpList& slowCases) |
| { |
| int dst = currentInstruction[1].u.operand; |
| |
| // base: tag(regT1), payload(regT0) |
| // property: tag(regT3), payload(regT2) |
| // scratch: regT4 |
| |
| slowCases.append(branch32(NotEqual, regT3, TrustedImm32(JSValue::CellTag))); |
| emitIdentifierCheck(regT2, regT4, propertyName, slowCases); |
| |
| JITGetByIdGenerator gen( |
| m_codeBlock, CodeOrigin(m_bytecodeOffset), CallSiteIndex(currentInstruction), RegisterSet::specialRegisters(), |
| JSValueRegs::payloadOnly(regT0), JSValueRegs(regT1, regT0), DontSpill); |
| gen.generateFastPath(*this); |
| |
| fastDoneCase = jump(); |
| |
| Label coldPathBegin = label(); |
| gen.slowPathJump().link(this); |
| |
| Call call = callOperation(WithProfile, operationGetByIdOptimize, dst, gen.stubInfo(), regT1, regT0, propertyName.impl()); |
| gen.reportSlowPathCall(coldPathBegin, call); |
| slowDoneCase = jump(); |
| |
| return gen; |
| } |
| |
| void JIT::emitSlow_op_get_by_val(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int base = currentInstruction[2].u.operand; |
| int property = currentInstruction[3].u.operand; |
| ByValInfo* byValInfo = m_byValCompilationInfo[m_byValInstructionIndex].byValInfo; |
| |
| linkSlowCaseIfNotJSCell(iter, base); // base cell check |
| linkSlowCase(iter); // property int32 check |
| |
| Jump nonCell = jump(); |
| linkSlowCase(iter); // base array check |
| Jump notString = branchStructure(NotEqual, Address(regT0, JSCell::structureIDOffset()), m_vm->stringStructure.get()); |
| emitNakedCall(m_vm->getCTIStub(stringGetByValStubGenerator).code()); |
| Jump failed = branchTestPtr(Zero, regT0); |
| emitStore(dst, regT1, regT0); |
| emitJumpSlowToHot(jump(), OPCODE_LENGTH(op_get_by_val)); |
| failed.link(this); |
| notString.link(this); |
| nonCell.link(this); |
| |
| linkSlowCase(iter); // vector length check |
| linkSlowCase(iter); // empty value |
| |
| Label slowPath = label(); |
| |
| emitLoad(base, regT1, regT0); |
| emitLoad(property, regT3, regT2); |
| Call call = callOperation(operationGetByValOptimize, dst, regT1, regT0, regT3, regT2, byValInfo); |
| |
| m_byValCompilationInfo[m_byValInstructionIndex].slowPathTarget = slowPath; |
| m_byValCompilationInfo[m_byValInstructionIndex].returnAddress = call; |
| m_byValInstructionIndex++; |
| |
| emitValueProfilingSite(); |
| } |
| |
| void JIT::emit_op_put_by_val(Instruction* currentInstruction) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| ArrayProfile* profile = currentInstruction[4].u.arrayProfile; |
| ByValInfo* byValInfo = m_codeBlock->addByValInfo(); |
| |
| emitLoad2(base, regT1, regT0, property, regT3, regT2); |
| |
| emitJumpSlowCaseIfNotJSCell(base, regT1); |
| PatchableJump notIndex = patchableBranch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag)); |
| addSlowCase(notIndex); |
| emitArrayProfilingSiteWithCell(regT0, regT1, profile); |
| and32(TrustedImm32(IndexingShapeMask), regT1); |
| |
| PatchableJump badType; |
| JumpList slowCases; |
| |
| JITArrayMode mode = chooseArrayMode(profile); |
| switch (mode) { |
| case JITInt32: |
| slowCases = emitInt32PutByVal(currentInstruction, badType); |
| break; |
| case JITDouble: |
| slowCases = emitDoublePutByVal(currentInstruction, badType); |
| break; |
| case JITContiguous: |
| slowCases = emitContiguousPutByVal(currentInstruction, badType); |
| break; |
| case JITArrayStorage: |
| slowCases = emitArrayStoragePutByVal(currentInstruction, badType); |
| break; |
| default: |
| CRASH(); |
| break; |
| } |
| |
| addSlowCase(badType); |
| addSlowCase(slowCases); |
| |
| Label done = label(); |
| |
| m_byValCompilationInfo.append(ByValCompilationInfo(byValInfo, m_bytecodeOffset, notIndex, badType, mode, profile, done, done)); |
| } |
| |
| JIT::JumpList JIT::emitGenericContiguousPutByVal(Instruction* currentInstruction, PatchableJump& badType, IndexingType indexingShape) |
| { |
| int base = currentInstruction[1].u.operand; |
| int value = currentInstruction[3].u.operand; |
| ArrayProfile* profile = currentInstruction[4].u.arrayProfile; |
| |
| JumpList slowCases; |
| |
| badType = patchableBranch32(NotEqual, regT1, TrustedImm32(ContiguousShape)); |
| |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT3); |
| Jump outOfBounds = branch32(AboveOrEqual, regT2, Address(regT3, Butterfly::offsetOfPublicLength())); |
| |
| Label storeResult = label(); |
| emitLoad(value, regT1, regT0); |
| switch (indexingShape) { |
| case Int32Shape: |
| slowCases.append(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); |
| store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload))); |
| store32(regT1, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.tag))); |
| break; |
| case ContiguousShape: |
| store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload))); |
| store32(regT1, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.tag))); |
| emitLoad(base, regT2, regT3); |
| emitWriteBarrier(base, value, ShouldFilterValue); |
| break; |
| case DoubleShape: { |
| Jump notInt = branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag)); |
| convertInt32ToDouble(regT0, fpRegT0); |
| Jump ready = jump(); |
| notInt.link(this); |
| moveIntsToDouble(regT0, regT1, fpRegT0, fpRegT1); |
| slowCases.append(branchDouble(DoubleNotEqualOrUnordered, fpRegT0, fpRegT0)); |
| ready.link(this); |
| storeDouble(fpRegT0, BaseIndex(regT3, regT2, TimesEight)); |
| break; |
| } |
| default: |
| CRASH(); |
| break; |
| } |
| |
| Jump done = jump(); |
| |
| outOfBounds.link(this); |
| slowCases.append(branch32(AboveOrEqual, regT2, Address(regT3, Butterfly::offsetOfVectorLength()))); |
| |
| emitArrayProfileStoreToHoleSpecialCase(profile); |
| |
| add32(TrustedImm32(1), regT2, regT1); |
| store32(regT1, Address(regT3, Butterfly::offsetOfPublicLength())); |
| jump().linkTo(storeResult, this); |
| |
| done.link(this); |
| |
| return slowCases; |
| } |
| |
| JIT::JumpList JIT::emitArrayStoragePutByVal(Instruction* currentInstruction, PatchableJump& badType) |
| { |
| int base = currentInstruction[1].u.operand; |
| int value = currentInstruction[3].u.operand; |
| ArrayProfile* profile = currentInstruction[4].u.arrayProfile; |
| |
| JumpList slowCases; |
| |
| badType = patchableBranch32(NotEqual, regT1, TrustedImm32(ArrayStorageShape)); |
| |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT3); |
| slowCases.append(branch32(AboveOrEqual, regT2, Address(regT3, ArrayStorage::vectorLengthOffset()))); |
| |
| Jump empty = branch32(Equal, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), TrustedImm32(JSValue::EmptyValueTag)); |
| |
| Label storeResult(this); |
| emitLoad(value, regT1, regT0); |
| store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload))); // payload |
| store32(regT1, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.tag))); // tag |
| Jump end = jump(); |
| |
| empty.link(this); |
| emitArrayProfileStoreToHoleSpecialCase(profile); |
| add32(TrustedImm32(1), Address(regT3, OBJECT_OFFSETOF(ArrayStorage, m_numValuesInVector))); |
| branch32(Below, regT2, Address(regT3, ArrayStorage::lengthOffset())).linkTo(storeResult, this); |
| |
| add32(TrustedImm32(1), regT2, regT0); |
| store32(regT0, Address(regT3, ArrayStorage::lengthOffset())); |
| jump().linkTo(storeResult, this); |
| |
| end.link(this); |
| |
| emitWriteBarrier(base, value, ShouldFilterValue); |
| |
| return slowCases; |
| } |
| |
| JITPutByIdGenerator JIT::emitPutByValWithCachedId(Instruction* currentInstruction, PutKind putKind, const Identifier& propertyName, JumpList& doneCases, JumpList& slowCases) |
| { |
| // base: tag(regT1), payload(regT0) |
| // property: tag(regT3), payload(regT2) |
| |
| int base = currentInstruction[1].u.operand; |
| int value = currentInstruction[3].u.operand; |
| |
| slowCases.append(branch32(NotEqual, regT3, TrustedImm32(JSValue::CellTag))); |
| emitIdentifierCheck(regT2, regT2, propertyName, slowCases); |
| |
| // Write barrier breaks the registers. So after issuing the write barrier, |
| // reload the registers. |
| emitWriteBarrier(base, value, ShouldFilterBase); |
| emitLoadPayload(base, regT0); |
| emitLoad(value, regT3, regT2); |
| |
| JITPutByIdGenerator gen( |
| m_codeBlock, CodeOrigin(m_bytecodeOffset), CallSiteIndex(currentInstruction), RegisterSet::specialRegisters(), |
| JSValueRegs::payloadOnly(regT0), JSValueRegs(regT3, regT2), regT1, DontSpill, m_codeBlock->ecmaMode(), putKind); |
| gen.generateFastPath(*this); |
| doneCases.append(jump()); |
| |
| Label coldPathBegin = label(); |
| gen.slowPathJump().link(this); |
| |
| // JITPutByIdGenerator only preserve the value and the base's payload, we have to reload the tag. |
| emitLoadTag(base, regT1); |
| |
| Call call = callOperation(gen.slowPathFunction(), gen.stubInfo(), regT3, regT2, regT1, regT0, propertyName.impl()); |
| gen.reportSlowPathCall(coldPathBegin, call); |
| doneCases.append(jump()); |
| |
| return gen; |
| } |
| |
| void JIT::emitSlow_op_put_by_val(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| int base = currentInstruction[1].u.operand; |
| int property = currentInstruction[2].u.operand; |
| int value = currentInstruction[3].u.operand; |
| ArrayProfile* profile = currentInstruction[4].u.arrayProfile; |
| ByValInfo* byValInfo = m_byValCompilationInfo[m_byValInstructionIndex].byValInfo; |
| |
| linkSlowCaseIfNotJSCell(iter, base); // base cell check |
| linkSlowCase(iter); // property int32 check |
| linkSlowCase(iter); // base not array check |
| |
| JITArrayMode mode = chooseArrayMode(profile); |
| switch (mode) { |
| case JITInt32: |
| case JITDouble: |
| linkSlowCase(iter); // value type check |
| break; |
| default: |
| break; |
| } |
| |
| Jump skipProfiling = jump(); |
| linkSlowCase(iter); // out of bounds |
| emitArrayProfileOutOfBoundsSpecialCase(profile); |
| skipProfiling.link(this); |
| |
| Label slowPath = label(); |
| |
| bool isDirect = m_interpreter->getOpcodeID(currentInstruction->u.opcode) == op_put_by_val_direct; |
| |
| #if CPU(X86) |
| // FIXME: We only have 5 temp registers, but need 6 to make this call, therefore we materialize |
| // our own call. When we finish moving JSC to the C call stack, we'll get another register so |
| // we can use the normal case. |
| resetCallArguments(); |
| addCallArgument(GPRInfo::callFrameRegister); |
| emitLoad(base, regT0, regT1); |
| addCallArgument(regT1); |
| addCallArgument(regT0); |
| emitLoad(property, regT0, regT1); |
| addCallArgument(regT1); |
| addCallArgument(regT0); |
| emitLoad(value, regT0, regT1); |
| addCallArgument(regT1); |
| addCallArgument(regT0); |
| addCallArgument(TrustedImmPtr(byValInfo)); |
| Call call = appendCallWithExceptionCheck(isDirect ? operationDirectPutByValOptimize : operationPutByValOptimize); |
| #else |
| // The register selection below is chosen to reduce register swapping on ARM. |
| // Swapping shouldn't happen on other platforms. |
| emitLoad(base, regT2, regT1); |
| emitLoad(property, regT3, regT0); |
| emitLoad(value, regT5, regT4); |
| Call call = callOperation(isDirect ? operationDirectPutByValOptimize : operationPutByValOptimize, regT2, regT1, regT3, regT0, regT5, regT4, byValInfo); |
| #endif |
| |
| m_byValCompilationInfo[m_byValInstructionIndex].slowPathTarget = slowPath; |
| m_byValCompilationInfo[m_byValInstructionIndex].returnAddress = call; |
| m_byValInstructionIndex++; |
| } |
| |
| void JIT::emit_op_get_by_id(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int base = currentInstruction[2].u.operand; |
| const Identifier* ident = &(m_codeBlock->identifier(currentInstruction[3].u.operand)); |
| |
| emitLoad(base, regT1, regT0); |
| emitJumpSlowCaseIfNotJSCell(base, regT1); |
| |
| if (*ident == m_vm->propertyNames->length && shouldEmitProfiling()) |
| emitArrayProfilingSiteForBytecodeIndexWithCell(regT0, regT2, m_bytecodeOffset); |
| |
| JITGetByIdGenerator gen( |
| m_codeBlock, CodeOrigin(m_bytecodeOffset), CallSiteIndex(currentInstruction), RegisterSet::specialRegisters(), |
| JSValueRegs::payloadOnly(regT0), JSValueRegs(regT1, regT0), DontSpill); |
| gen.generateFastPath(*this); |
| addSlowCase(gen.slowPathJump()); |
| m_getByIds.append(gen); |
| |
| emitValueProfilingSite(); |
| emitStore(dst, regT1, regT0); |
| } |
| |
| void JIT::emitSlow_op_get_by_id(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| int resultVReg = currentInstruction[1].u.operand; |
| int baseVReg = currentInstruction[2].u.operand; |
| const Identifier* ident = &(m_codeBlock->identifier(currentInstruction[3].u.operand)); |
| |
| linkSlowCaseIfNotJSCell(iter, baseVReg); |
| linkSlowCase(iter); |
| |
| JITGetByIdGenerator& gen = m_getByIds[m_getByIdIndex++]; |
| |
| Label coldPathBegin = label(); |
| |
| Call call = callOperation(WithProfile, operationGetByIdOptimize, resultVReg, gen.stubInfo(), regT1, regT0, ident->impl()); |
| |
| gen.reportSlowPathCall(coldPathBegin, call); |
| } |
| |
| void JIT::emit_op_put_by_id(Instruction* currentInstruction) |
| { |
| // In order to be able to patch both the Structure, and the object offset, we store one pointer, |
| // to just after the arguments have been loaded into registers 'hotPathBegin', and we generate code |
| // such that the Structure & offset are always at the same distance from this. |
| |
| int base = currentInstruction[1].u.operand; |
| int value = currentInstruction[3].u.operand; |
| int direct = currentInstruction[8].u.operand; |
| |
| emitWriteBarrier(base, value, ShouldFilterBase); |
| |
| emitLoad2(base, regT1, regT0, value, regT3, regT2); |
| |
| emitJumpSlowCaseIfNotJSCell(base, regT1); |
| |
| JITPutByIdGenerator gen( |
| m_codeBlock, CodeOrigin(m_bytecodeOffset), CallSiteIndex(currentInstruction), RegisterSet::specialRegisters(), |
| JSValueRegs::payloadOnly(regT0), JSValueRegs(regT3, regT2), |
| regT1, DontSpill, m_codeBlock->ecmaMode(), direct ? Direct : NotDirect); |
| |
| gen.generateFastPath(*this); |
| addSlowCase(gen.slowPathJump()); |
| |
| m_putByIds.append(gen); |
| } |
| |
| void JIT::emitSlow_op_put_by_id(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| int base = currentInstruction[1].u.operand; |
| const Identifier* ident = &(m_codeBlock->identifier(currentInstruction[2].u.operand)); |
| |
| linkSlowCaseIfNotJSCell(iter, base); |
| linkSlowCase(iter); |
| |
| Label coldPathBegin(this); |
| |
| // JITPutByIdGenerator only preserve the value and the base's payload, we have to reload the tag. |
| emitLoadTag(base, regT1); |
| |
| JITPutByIdGenerator& gen = m_putByIds[m_putByIdIndex++]; |
| |
| Call call = callOperation( |
| gen.slowPathFunction(), gen.stubInfo(), regT3, regT2, regT1, regT0, ident->impl()); |
| |
| gen.reportSlowPathCall(coldPathBegin, call); |
| } |
| |
| // Compile a store into an object's property storage. May overwrite base. |
| void JIT::compilePutDirectOffset(RegisterID base, RegisterID valueTag, RegisterID valuePayload, PropertyOffset cachedOffset) |
| { |
| if (isOutOfLineOffset(cachedOffset)) |
| loadPtr(Address(base, JSObject::butterflyOffset()), base); |
| emitStore(indexRelativeToBase(cachedOffset), valueTag, valuePayload, base); |
| } |
| |
| // Compile a load from an object's property storage. May overwrite base. |
| void JIT::compileGetDirectOffset(RegisterID base, RegisterID resultTag, RegisterID resultPayload, PropertyOffset cachedOffset) |
| { |
| if (isInlineOffset(cachedOffset)) { |
| emitLoad(indexRelativeToBase(cachedOffset), resultTag, resultPayload, base); |
| return; |
| } |
| |
| RegisterID temp = resultPayload; |
| loadPtr(Address(base, JSObject::butterflyOffset()), temp); |
| emitLoad(indexRelativeToBase(cachedOffset), resultTag, resultPayload, temp); |
| } |
| |
| void JIT::compileGetDirectOffset(JSObject* base, RegisterID resultTag, RegisterID resultPayload, PropertyOffset cachedOffset) |
| { |
| if (isInlineOffset(cachedOffset)) { |
| move(TrustedImmPtr(base->locationForOffset(cachedOffset)), resultTag); |
| load32(Address(resultTag, OBJECT_OFFSETOF(JSValue, u.asBits.payload)), resultPayload); |
| load32(Address(resultTag, OBJECT_OFFSETOF(JSValue, u.asBits.tag)), resultTag); |
| return; |
| } |
| |
| loadPtr(base->butterflyAddress(), resultTag); |
| load32(Address(resultTag, offsetInButterfly(cachedOffset) * sizeof(WriteBarrier<Unknown>) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), resultPayload); |
| load32(Address(resultTag, offsetInButterfly(cachedOffset) * sizeof(WriteBarrier<Unknown>) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), resultTag); |
| } |
| |
| void JIT::compileGetDirectOffset(RegisterID base, RegisterID resultTag, RegisterID resultPayload, RegisterID offset, FinalObjectMode finalObjectMode) |
| { |
| ASSERT(sizeof(JSValue) == 8); |
| |
| if (finalObjectMode == MayBeFinal) { |
| Jump isInline = branch32(LessThan, offset, TrustedImm32(firstOutOfLineOffset)); |
| loadPtr(Address(base, JSObject::butterflyOffset()), base); |
| neg32(offset); |
| Jump done = jump(); |
| isInline.link(this); |
| addPtr(TrustedImmPtr(JSObject::offsetOfInlineStorage() - (firstOutOfLineOffset - 2) * sizeof(EncodedJSValue)), base); |
| done.link(this); |
| } else { |
| if (!ASSERT_DISABLED) { |
| Jump isOutOfLine = branch32(GreaterThanOrEqual, offset, TrustedImm32(firstOutOfLineOffset)); |
| abortWithReason(JITOffsetIsNotOutOfLine); |
| isOutOfLine.link(this); |
| } |
| loadPtr(Address(base, JSObject::butterflyOffset()), base); |
| neg32(offset); |
| } |
| load32(BaseIndex(base, offset, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload) + (firstOutOfLineOffset - 2) * sizeof(EncodedJSValue)), resultPayload); |
| load32(BaseIndex(base, offset, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.tag) + (firstOutOfLineOffset - 2) * sizeof(EncodedJSValue)), resultTag); |
| } |
| |
| void JIT::emitVarInjectionCheck(bool needsVarInjectionChecks) |
| { |
| if (!needsVarInjectionChecks) |
| return; |
| addSlowCase(branch8(Equal, AbsoluteAddress(m_codeBlock->globalObject()->varInjectionWatchpoint()->addressOfState()), TrustedImm32(IsInvalidated))); |
| } |
| |
| void JIT::emitResolveClosure(int dst, int scope, bool needsVarInjectionChecks, unsigned depth) |
| { |
| emitVarInjectionCheck(needsVarInjectionChecks); |
| move(TrustedImm32(JSValue::CellTag), regT1); |
| emitLoadPayload(scope, regT0); |
| for (unsigned i = 0; i < depth; ++i) |
| loadPtr(Address(regT0, JSScope::offsetOfNext()), regT0); |
| emitStore(dst, regT1, regT0); |
| } |
| |
| void JIT::emit_op_resolve_scope(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int scope = currentInstruction[2].u.operand; |
| ResolveType resolveType = static_cast<ResolveType>(currentInstruction[4].u.operand); |
| unsigned depth = currentInstruction[5].u.operand; |
| |
| switch (resolveType) { |
| case GlobalProperty: |
| case GlobalVar: |
| case GlobalLexicalVar: |
| case GlobalPropertyWithVarInjectionChecks: |
| case GlobalVarWithVarInjectionChecks: |
| case GlobalLexicalVarWithVarInjectionChecks: { |
| JSScope* constantScope = JSScope::constantScopeForCodeBlock(resolveType, m_codeBlock); |
| RELEASE_ASSERT(constantScope); |
| RELEASE_ASSERT(static_cast<JSScope*>(currentInstruction[6].u.pointer) == constantScope); |
| emitVarInjectionCheck(needsVarInjectionChecks(resolveType)); |
| move(TrustedImm32(JSValue::CellTag), regT1); |
| move(TrustedImmPtr(constantScope), regT0); |
| emitStore(dst, regT1, regT0); |
| break; |
| } |
| case ClosureVar: |
| case ClosureVarWithVarInjectionChecks: |
| emitResolveClosure(dst, scope, needsVarInjectionChecks(resolveType), depth); |
| break; |
| case UnresolvedProperty: |
| case UnresolvedPropertyWithVarInjectionChecks: |
| case Dynamic: |
| addSlowCase(jump()); |
| break; |
| case LocalClosureVar: |
| RELEASE_ASSERT_NOT_REACHED(); |
| } |
| } |
| |
| void JIT::emitSlow_op_resolve_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| ResolveType resolveType = static_cast<ResolveType>(currentInstruction[4].u.operand); |
| |
| if (resolveType == GlobalProperty || resolveType == GlobalVar || resolveType == ClosureVar || resolveType == GlobalLexicalVar) |
| return; |
| |
| linkSlowCase(iter); |
| JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_resolve_scope); |
| slowPathCall.call(); |
| } |
| |
| void JIT::emitLoadWithStructureCheck(int scope, Structure** structureSlot) |
| { |
| emitLoad(scope, regT1, regT0); |
| loadPtr(structureSlot, regT2); |
| addSlowCase(branchPtr(NotEqual, Address(regT0, JSCell::structureIDOffset()), regT2)); |
| } |
| |
| void JIT::emitGetGlobalProperty(uintptr_t* operandSlot) |
| { |
| move(regT0, regT2); |
| load32(operandSlot, regT3); |
| compileGetDirectOffset(regT2, regT1, regT0, regT3, KnownNotFinal); |
| } |
| |
| void JIT::emitGetVarFromPointer(uintptr_t operand, GPRReg tag, GPRReg payload) |
| { |
| load32(reinterpret_cast<char*>(operand) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.tag), tag); |
| load32(reinterpret_cast<char*>(operand) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload), payload); |
| } |
| |
| void JIT::emitGetClosureVar(int scope, uintptr_t operand) |
| { |
| emitLoad(scope, regT1, regT0); |
| load32(Address(regT0, JSEnvironmentRecord::offsetOfVariables() + operand * sizeof(Register) + TagOffset), regT1); |
| load32(Address(regT0, JSEnvironmentRecord::offsetOfVariables() + operand * sizeof(Register) + PayloadOffset), regT0); |
| } |
| |
| void JIT::emit_op_get_from_scope(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int scope = currentInstruction[2].u.operand; |
| ResolveType resolveType = GetPutInfo(currentInstruction[4].u.operand).resolveType(); |
| Structure** structureSlot = currentInstruction[5].u.structure.slot(); |
| uintptr_t* operandSlot = reinterpret_cast<uintptr_t*>(¤tInstruction[6].u.pointer); |
| |
| switch (resolveType) { |
| case GlobalProperty: |
| case GlobalPropertyWithVarInjectionChecks: |
| emitLoadWithStructureCheck(scope, structureSlot); // Structure check covers var injection. |
| emitGetGlobalProperty(operandSlot); |
| break; |
| case GlobalVar: |
| case GlobalVarWithVarInjectionChecks: |
| case GlobalLexicalVar: |
| case GlobalLexicalVarWithVarInjectionChecks: |
| emitVarInjectionCheck(needsVarInjectionChecks(resolveType)); |
| emitGetVarFromPointer(*operandSlot, regT1, regT0); |
| if (resolveType == GlobalLexicalVar || resolveType == GlobalLexicalVarWithVarInjectionChecks) // TDZ check. |
| addSlowCase(branch32(Equal, regT1, TrustedImm32(JSValue::EmptyValueTag))); |
| break; |
| case ClosureVar: |
| case ClosureVarWithVarInjectionChecks: |
| emitVarInjectionCheck(needsVarInjectionChecks(resolveType)); |
| emitGetClosureVar(scope, *operandSlot); |
| break; |
| case UnresolvedProperty: |
| case UnresolvedPropertyWithVarInjectionChecks: |
| case Dynamic: |
| addSlowCase(jump()); |
| break; |
| case LocalClosureVar: |
| RELEASE_ASSERT_NOT_REACHED(); |
| } |
| emitValueProfilingSite(); |
| emitStore(dst, regT1, regT0); |
| } |
| |
| void JIT::emitSlow_op_get_from_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| int dst = currentInstruction[1].u.operand; |
| ResolveType resolveType = GetPutInfo(currentInstruction[4].u.operand).resolveType(); |
| |
| if (resolveType == GlobalVar || resolveType == ClosureVar) |
| return; |
| |
| if (resolveType == GlobalLexicalVarWithVarInjectionChecks) // Var Injections check. |
| linkSlowCase(iter); |
| |
| linkSlowCase(iter); |
| callOperation(WithProfile, operationGetFromScope, dst, currentInstruction); |
| } |
| |
| void JIT::emitPutGlobalProperty(uintptr_t* operandSlot, int value) |
| { |
| emitLoad(value, regT3, regT2); |
| |
| loadPtr(Address(regT0, JSObject::butterflyOffset()), regT0); |
| loadPtr(operandSlot, regT1); |
| negPtr(regT1); |
| store32(regT3, BaseIndex(regT0, regT1, TimesEight, (firstOutOfLineOffset - 2) * sizeof(EncodedJSValue) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.tag))); |
| store32(regT2, BaseIndex(regT0, regT1, TimesEight, (firstOutOfLineOffset - 2) * sizeof(EncodedJSValue) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload))); |
| } |
| |
| void JIT::emitPutGlobalVariable(uintptr_t operand, int value, WatchpointSet* set) |
| { |
| emitLoad(value, regT1, regT0); |
| emitNotifyWrite(set); |
| store32(regT1, reinterpret_cast<char*>(operand) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.tag)); |
| store32(regT0, reinterpret_cast<char*>(operand) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)); |
| } |
| |
| void JIT::emitPutClosureVar(int scope, uintptr_t operand, int value, WatchpointSet* set) |
| { |
| emitLoad(value, regT3, regT2); |
| emitLoad(scope, regT1, regT0); |
| emitNotifyWrite(set); |
| store32(regT3, Address(regT0, JSEnvironmentRecord::offsetOfVariables() + operand * sizeof(Register) + TagOffset)); |
| store32(regT2, Address(regT0, JSEnvironmentRecord::offsetOfVariables() + operand * sizeof(Register) + PayloadOffset)); |
| } |
| |
| void JIT::emit_op_put_to_scope(Instruction* currentInstruction) |
| { |
| int scope = currentInstruction[1].u.operand; |
| int value = currentInstruction[3].u.operand; |
| GetPutInfo getPutInfo = GetPutInfo(currentInstruction[4].u.operand); |
| ResolveType resolveType = getPutInfo.resolveType(); |
| Structure** structureSlot = currentInstruction[5].u.structure.slot(); |
| uintptr_t* operandSlot = reinterpret_cast<uintptr_t*>(¤tInstruction[6].u.pointer); |
| |
| switch (resolveType) { |
| case GlobalProperty: |
| case GlobalPropertyWithVarInjectionChecks: |
| emitWriteBarrier(m_codeBlock->globalObject(), value, ShouldFilterValue); |
| emitLoadWithStructureCheck(scope, structureSlot); // Structure check covers var injection. |
| emitPutGlobalProperty(operandSlot, value); |
| break; |
| case GlobalVar: |
| case GlobalVarWithVarInjectionChecks: |
| case GlobalLexicalVar: |
| case GlobalLexicalVarWithVarInjectionChecks: { |
| JSScope* constantScope = JSScope::constantScopeForCodeBlock(resolveType, m_codeBlock); |
| RELEASE_ASSERT(constantScope); |
| emitWriteBarrier(constantScope, value, ShouldFilterValue); |
| emitVarInjectionCheck(needsVarInjectionChecks(resolveType)); |
| if (getPutInfo.initializationMode() != Initialization && (resolveType == GlobalLexicalVar || resolveType == GlobalLexicalVarWithVarInjectionChecks)) { |
| // We need to do a TDZ check here because we can't always prove we need to emit TDZ checks statically. |
| emitGetVarFromPointer(*operandSlot, regT1, regT0); |
| addSlowCase(branch32(Equal, regT1, TrustedImm32(JSValue::EmptyValueTag))); |
| } |
| emitPutGlobalVariable(*operandSlot, value, currentInstruction[5].u.watchpointSet); |
| break; |
| } |
| case LocalClosureVar: |
| case ClosureVar: |
| case ClosureVarWithVarInjectionChecks: |
| emitWriteBarrier(scope, value, ShouldFilterValue); |
| emitVarInjectionCheck(needsVarInjectionChecks(resolveType)); |
| emitPutClosureVar(scope, *operandSlot, value, currentInstruction[5].u.watchpointSet); |
| break; |
| case UnresolvedProperty: |
| case UnresolvedPropertyWithVarInjectionChecks: |
| case Dynamic: |
| addSlowCase(jump()); |
| break; |
| } |
| } |
| |
| void JIT::emitSlow_op_put_to_scope(Instruction* currentInstruction, Vector<SlowCaseEntry>::iterator& iter) |
| { |
| GetPutInfo getPutInfo = GetPutInfo(currentInstruction[4].u.operand); |
| ResolveType resolveType = getPutInfo.resolveType(); |
| unsigned linkCount = 0; |
| if (resolveType != GlobalVar && resolveType != ClosureVar && resolveType != LocalClosureVar && resolveType != GlobalLexicalVar) |
| linkCount++; |
| if ((resolveType == GlobalVar || resolveType == GlobalVarWithVarInjectionChecks || resolveType == LocalClosureVar |
| || resolveType == GlobalLexicalVar || resolveType == GlobalLexicalVarWithVarInjectionChecks) |
| && currentInstruction[5].u.watchpointSet->state() != IsInvalidated) |
| linkCount++; |
| if (getPutInfo.initializationMode() != Initialization && (resolveType == GlobalLexicalVar || resolveType == GlobalLexicalVarWithVarInjectionChecks)) // TDZ check. |
| linkCount++; |
| if (!linkCount) |
| return; |
| while (linkCount--) |
| linkSlowCase(iter); |
| callOperation(operationPutToScope, currentInstruction); |
| } |
| |
| void JIT::emit_op_get_from_arguments(Instruction* currentInstruction) |
| { |
| int dst = currentInstruction[1].u.operand; |
| int arguments = currentInstruction[2].u.operand; |
| int index = currentInstruction[3].u.operand; |
| |
| emitLoadPayload(arguments, regT0); |
| load32(Address(regT0, DirectArguments::storageOffset() + index * sizeof(WriteBarrier<Unknown>) + TagOffset), regT1); |
| load32(Address(regT0, DirectArguments::storageOffset() + index * sizeof(WriteBarrier<Unknown>) + PayloadOffset), regT0); |
| emitValueProfilingSite(); |
| emitStore(dst, regT1, regT0); |
| } |
| |
| void JIT::emit_op_put_to_arguments(Instruction* currentInstruction) |
| { |
| int arguments = currentInstruction[1].u.operand; |
| int index = currentInstruction[2].u.operand; |
| int value = currentInstruction[3].u.operand; |
| |
| emitWriteBarrier(arguments, value, ShouldFilterValue); |
| |
| emitLoadPayload(arguments, regT0); |
| emitLoad(value, regT1, regT2); |
| store32(regT1, Address(regT0, DirectArguments::storageOffset() + index * sizeof(WriteBarrier<Unknown>) + TagOffset)); |
| store32(regT2, Address(regT0, DirectArguments::storageOffset() + index * sizeof(WriteBarrier<Unknown>) + PayloadOffset)); |
| } |
| |
| } // namespace JSC |
| |
| #endif // USE(JSVALUE32_64) |
| #endif // ENABLE(JIT) |