oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 1 | /* |
fpizlo@apple.com | 8fefdd3 | 2015-02-18 19:55:47 +0000 | [diff] [blame] | 2 | * Copyright (C) 2013-2015 Apple Inc. All rights reserved. |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| 14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| 17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #include "config.h" |
ossy@webkit.org | beb0de4 | 2014-02-17 19:00:03 +0000 | [diff] [blame] | 27 | #include "DFGOSRExitCompilerCommon.h" |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 28 | |
| 29 | #if ENABLE(DFG_JIT) |
| 30 | |
fpizlo@apple.com | b426f86 | 2014-02-10 02:51:13 +0000 | [diff] [blame] | 31 | #include "DFGJITCode.h" |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 32 | #include "DFGOperations.h" |
msaboff@apple.com | 9589433 | 2014-01-29 19:18:54 +0000 | [diff] [blame] | 33 | #include "JIT.h" |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 34 | #include "JSCJSValueInlines.h" |
fpizlo@apple.com | fb7eff2 | 2014-02-11 01:45:50 +0000 | [diff] [blame] | 35 | #include "JSCInlines.h" |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 36 | |
| 37 | namespace JSC { namespace DFG { |
| 38 | |
oliver@apple.com | ea77149 | 2013-07-25 03:58:38 +0000 | [diff] [blame] | 39 | void handleExitCounts(CCallHelpers& jit, const OSRExitBase& exit) |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 40 | { |
| 41 | jit.add32(AssemblyHelpers::TrustedImm32(1), AssemblyHelpers::AbsoluteAddress(&exit.m_count)); |
| 42 | |
| 43 | jit.move(AssemblyHelpers::TrustedImmPtr(jit.codeBlock()), GPRInfo::regT0); |
| 44 | |
| 45 | AssemblyHelpers::Jump tooFewFails; |
| 46 | |
| 47 | jit.load32(AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfOSRExitCounter()), GPRInfo::regT2); |
| 48 | jit.add32(AssemblyHelpers::TrustedImm32(1), GPRInfo::regT2); |
| 49 | jit.store32(GPRInfo::regT2, AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfOSRExitCounter())); |
oliver@apple.com | d2a1638 | 2013-07-25 04:04:18 +0000 | [diff] [blame] | 50 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 51 | jit.move(AssemblyHelpers::TrustedImmPtr(jit.baselineCodeBlock()), GPRInfo::regT0); |
oliver@apple.com | d2a1638 | 2013-07-25 04:04:18 +0000 | [diff] [blame] | 52 | AssemblyHelpers::Jump reoptimizeNow = jit.branch32( |
| 53 | AssemblyHelpers::GreaterThanOrEqual, |
| 54 | AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfJITExecuteCounter()), |
| 55 | AssemblyHelpers::TrustedImm32(0)); |
fpizlo@apple.com | 2c4a7e9 | 2014-08-06 05:27:46 +0000 | [diff] [blame] | 56 | |
| 57 | // We want to figure out if there's a possibility that we're in a loop. For the outermost |
| 58 | // code block in the inline stack, we handle this appropriately by having the loop OSR trigger |
| 59 | // check the exit count of the replacement of the CodeBlock from which we are OSRing. The |
| 60 | // problem is the inlined functions, which might also have loops, but whose baseline versions |
| 61 | // don't know where to look for the exit count. Figure out if those loops are severe enough |
| 62 | // that we had tried to OSR enter. If so, then we should use the loop reoptimization trigger. |
| 63 | // Otherwise, we should use the normal reoptimization trigger. |
| 64 | |
| 65 | AssemblyHelpers::JumpList loopThreshold; |
| 66 | |
| 67 | for (InlineCallFrame* inlineCallFrame = exit.m_codeOrigin.inlineCallFrame; inlineCallFrame; inlineCallFrame = inlineCallFrame->caller.inlineCallFrame) { |
| 68 | loopThreshold.append( |
| 69 | jit.branchTest8( |
| 70 | AssemblyHelpers::NonZero, |
| 71 | AssemblyHelpers::AbsoluteAddress( |
| 72 | inlineCallFrame->executable->addressOfDidTryToEnterInLoop()))); |
| 73 | } |
| 74 | |
| 75 | jit.move( |
| 76 | AssemblyHelpers::TrustedImm32(jit.codeBlock()->exitCountThresholdForReoptimization()), |
| 77 | GPRInfo::regT1); |
| 78 | |
| 79 | if (!loopThreshold.empty()) { |
| 80 | AssemblyHelpers::Jump done = jit.jump(); |
| 81 | |
| 82 | loopThreshold.link(&jit); |
| 83 | jit.move( |
| 84 | AssemblyHelpers::TrustedImm32( |
| 85 | jit.codeBlock()->exitCountThresholdForReoptimizationFromLoop()), |
| 86 | GPRInfo::regT1); |
oliver@apple.com | d2a1638 | 2013-07-25 04:04:18 +0000 | [diff] [blame] | 87 | |
fpizlo@apple.com | 2c4a7e9 | 2014-08-06 05:27:46 +0000 | [diff] [blame] | 88 | done.link(&jit); |
| 89 | } |
| 90 | |
| 91 | tooFewFails = jit.branch32(AssemblyHelpers::BelowOrEqual, GPRInfo::regT2, GPRInfo::regT1); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 92 | |
oliver@apple.com | d2a1638 | 2013-07-25 04:04:18 +0000 | [diff] [blame] | 93 | reoptimizeNow.link(&jit); |
| 94 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 95 | // Reoptimize as soon as possible. |
| 96 | #if !NUMBER_OF_ARGUMENT_REGISTERS |
| 97 | jit.poke(GPRInfo::regT0); |
fpizlo@apple.com | 2c4a7e9 | 2014-08-06 05:27:46 +0000 | [diff] [blame] | 98 | jit.poke(AssemblyHelpers::TrustedImmPtr(&exit), 1); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 99 | #else |
| 100 | jit.move(GPRInfo::regT0, GPRInfo::argumentGPR0); |
fpizlo@apple.com | 2c4a7e9 | 2014-08-06 05:27:46 +0000 | [diff] [blame] | 101 | jit.move(AssemblyHelpers::TrustedImmPtr(&exit), GPRInfo::argumentGPR1); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 102 | #endif |
fpizlo@apple.com | 2c4a7e9 | 2014-08-06 05:27:46 +0000 | [diff] [blame] | 103 | jit.move(AssemblyHelpers::TrustedImmPtr(bitwise_cast<void*>(triggerReoptimizationNow)), GPRInfo::nonArgGPR0); |
| 104 | jit.call(GPRInfo::nonArgGPR0); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 105 | AssemblyHelpers::Jump doneAdjusting = jit.jump(); |
| 106 | |
| 107 | tooFewFails.link(&jit); |
| 108 | |
| 109 | // Adjust the execution counter such that the target is to only optimize after a while. |
| 110 | int32_t activeThreshold = |
fpizlo@apple.com | e5b6864 | 2013-08-29 20:27:15 +0000 | [diff] [blame] | 111 | jit.baselineCodeBlock()->adjustedCounterValue( |
| 112 | Options::thresholdForOptimizeAfterLongWarmUp()); |
fpizlo@apple.com | 86e3d39 | 2014-04-18 23:20:00 +0000 | [diff] [blame] | 113 | int32_t targetValue = applyMemoryUsageHeuristicsAndConvertToInt( |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 114 | activeThreshold, jit.baselineCodeBlock()); |
fpizlo@apple.com | 86e3d39 | 2014-04-18 23:20:00 +0000 | [diff] [blame] | 115 | int32_t clippedValue; |
| 116 | switch (jit.codeBlock()->jitType()) { |
| 117 | case JITCode::DFGJIT: |
| 118 | clippedValue = BaselineExecutionCounter::clippedThreshold(jit.codeBlock()->globalObject(), targetValue); |
| 119 | break; |
| 120 | case JITCode::FTLJIT: |
| 121 | clippedValue = UpperTierExecutionCounter::clippedThreshold(jit.codeBlock()->globalObject(), targetValue); |
| 122 | break; |
| 123 | default: |
| 124 | RELEASE_ASSERT_NOT_REACHED(); |
mjs@apple.com | 0a66116 | 2014-09-08 02:16:47 +0000 | [diff] [blame] | 125 | #if COMPILER_QUIRK(CONSIDERS_UNREACHABLE_CODE) |
fpizlo@apple.com | f2b1350 | 2014-04-18 23:26:19 +0000 | [diff] [blame] | 126 | clippedValue = 0; // Make some compilers, and mhahnenberg, happy. |
mjs@apple.com | 0a66116 | 2014-09-08 02:16:47 +0000 | [diff] [blame] | 127 | #endif |
fpizlo@apple.com | f2b1350 | 2014-04-18 23:26:19 +0000 | [diff] [blame] | 128 | break; |
fpizlo@apple.com | 86e3d39 | 2014-04-18 23:20:00 +0000 | [diff] [blame] | 129 | } |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 130 | jit.store32(AssemblyHelpers::TrustedImm32(-clippedValue), AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfJITExecuteCounter())); |
| 131 | jit.store32(AssemblyHelpers::TrustedImm32(activeThreshold), AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfJITExecutionActiveThreshold())); |
fpizlo@apple.com | 86e3d39 | 2014-04-18 23:20:00 +0000 | [diff] [blame] | 132 | jit.store32(AssemblyHelpers::TrustedImm32(formattedTotalExecutionCount(clippedValue)), AssemblyHelpers::Address(GPRInfo::regT0, CodeBlock::offsetOfJITExecutionTotalCount())); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 133 | |
| 134 | doneAdjusting.link(&jit); |
| 135 | } |
| 136 | |
oliver@apple.com | ea77149 | 2013-07-25 03:58:38 +0000 | [diff] [blame] | 137 | void reifyInlinedCallFrames(CCallHelpers& jit, const OSRExitBase& exit) |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 138 | { |
oliver@apple.com | 5a24fdd | 2013-07-25 04:00:54 +0000 | [diff] [blame] | 139 | ASSERT(jit.baselineCodeBlock()->jitType() == JITCode::BaselineJIT); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 140 | jit.storePtr(AssemblyHelpers::TrustedImmPtr(jit.baselineCodeBlock()), AssemblyHelpers::addressFor((VirtualRegister)JSStack::CodeBlock)); |
oliver@apple.com | 7ddfce8 | 2013-07-25 04:01:59 +0000 | [diff] [blame] | 141 | |
| 142 | CodeOrigin codeOrigin; |
| 143 | for (codeOrigin = exit.m_codeOrigin; codeOrigin.inlineCallFrame; codeOrigin = codeOrigin.inlineCallFrame->caller) { |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 144 | InlineCallFrame* inlineCallFrame = codeOrigin.inlineCallFrame; |
| 145 | CodeBlock* baselineCodeBlock = jit.baselineCodeBlockFor(codeOrigin); |
| 146 | CodeBlock* baselineCodeBlockForCaller = jit.baselineCodeBlockFor(inlineCallFrame->caller); |
mark.lam@apple.com | ca860af | 2014-10-06 22:17:09 +0000 | [diff] [blame] | 147 | void* jumpTarget = nullptr; |
fpizlo@apple.com | 4c6b8ad | 2014-07-22 21:08:50 +0000 | [diff] [blame] | 148 | void* trueReturnPC = nullptr; |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 149 | |
fpizlo@apple.com | 4c6b8ad | 2014-07-22 21:08:50 +0000 | [diff] [blame] | 150 | unsigned callBytecodeIndex = inlineCallFrame->caller.bytecodeIndex; |
| 151 | |
| 152 | switch (inlineCallFrame->kind) { |
| 153 | case InlineCallFrame::Call: |
fpizlo@apple.com | 8fefdd3 | 2015-02-18 19:55:47 +0000 | [diff] [blame] | 154 | case InlineCallFrame::Construct: |
| 155 | case InlineCallFrame::CallVarargs: |
| 156 | case InlineCallFrame::ConstructVarargs: { |
fpizlo@apple.com | 4c6b8ad | 2014-07-22 21:08:50 +0000 | [diff] [blame] | 157 | CallLinkInfo* callLinkInfo = |
| 158 | baselineCodeBlockForCaller->getCallLinkInfoForBytecodeIndex(callBytecodeIndex); |
| 159 | RELEASE_ASSERT(callLinkInfo); |
| 160 | |
msaboff@apple.com | 203a56e | 2015-06-24 22:37:30 +0000 | [diff] [blame] | 161 | jumpTarget = callLinkInfo->callReturnLocation().executableAddress(); |
fpizlo@apple.com | 4c6b8ad | 2014-07-22 21:08:50 +0000 | [diff] [blame] | 162 | break; |
| 163 | } |
| 164 | |
| 165 | case InlineCallFrame::GetterCall: |
| 166 | case InlineCallFrame::SetterCall: { |
| 167 | StructureStubInfo* stubInfo = |
| 168 | baselineCodeBlockForCaller->findStubInfo(CodeOrigin(callBytecodeIndex)); |
| 169 | RELEASE_ASSERT(stubInfo); |
| 170 | |
| 171 | switch (inlineCallFrame->kind) { |
| 172 | case InlineCallFrame::GetterCall: |
| 173 | jumpTarget = jit.vm()->getCTIStub(baselineGetterReturnThunkGenerator).code().executableAddress(); |
| 174 | break; |
| 175 | case InlineCallFrame::SetterCall: |
| 176 | jumpTarget = jit.vm()->getCTIStub(baselineSetterReturnThunkGenerator).code().executableAddress(); |
| 177 | break; |
| 178 | default: |
| 179 | RELEASE_ASSERT_NOT_REACHED(); |
| 180 | break; |
| 181 | } |
| 182 | |
| 183 | trueReturnPC = stubInfo->callReturnLocation.labelAtOffset( |
| 184 | stubInfo->patch.deltaCallToDone).executableAddress(); |
| 185 | break; |
| 186 | } } |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 187 | |
| 188 | GPRReg callerFrameGPR; |
| 189 | if (inlineCallFrame->caller.inlineCallFrame) { |
| 190 | jit.addPtr(AssemblyHelpers::TrustedImm32(inlineCallFrame->caller.inlineCallFrame->stackOffset * sizeof(EncodedJSValue)), GPRInfo::callFrameRegister, GPRInfo::regT3); |
| 191 | callerFrameGPR = GPRInfo::regT3; |
| 192 | } else |
| 193 | callerFrameGPR = GPRInfo::callFrameRegister; |
| 194 | |
fpizlo@apple.com | 4c6b8ad | 2014-07-22 21:08:50 +0000 | [diff] [blame] | 195 | jit.storePtr(AssemblyHelpers::TrustedImmPtr(jumpTarget), AssemblyHelpers::addressForByteOffset(inlineCallFrame->returnPCOffset())); |
| 196 | if (trueReturnPC) |
| 197 | jit.storePtr(AssemblyHelpers::TrustedImmPtr(trueReturnPC), AssemblyHelpers::addressFor(inlineCallFrame->stackOffset + virtualRegisterForArgument(inlineCallFrame->arguments.size()).offset())); |
| 198 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 199 | jit.storePtr(AssemblyHelpers::TrustedImmPtr(baselineCodeBlock), AssemblyHelpers::addressFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::CodeBlock))); |
fpizlo@apple.com | 8fefdd3 | 2015-02-18 19:55:47 +0000 | [diff] [blame] | 200 | if (!inlineCallFrame->isVarargs()) |
| 201 | jit.store32(AssemblyHelpers::TrustedImm32(inlineCallFrame->arguments.size()), AssemblyHelpers::payloadFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::ArgumentCount))); |
| 202 | #if USE(JSVALUE64) |
mark.lam@apple.com | c8151c4 | 2013-10-30 21:26:46 +0000 | [diff] [blame] | 203 | jit.store64(callerFrameGPR, AssemblyHelpers::addressForByteOffset(inlineCallFrame->callerFrameOffset())); |
saambarati1@gmail.com | 9137c0b | 2015-08-25 19:40:46 +0000 | [diff] [blame] | 204 | uint32_t locationBits = CallSiteIndex(codeOrigin.bytecodeIndex).bits(); |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 205 | jit.store32(AssemblyHelpers::TrustedImm32(locationBits), AssemblyHelpers::tagFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::ArgumentCount))); |
fpizlo@apple.com | a62d482 | 2013-10-06 04:22:43 +0000 | [diff] [blame] | 206 | if (!inlineCallFrame->isClosureCall) |
| 207 | jit.store64(AssemblyHelpers::TrustedImm64(JSValue::encode(JSValue(inlineCallFrame->calleeConstant()))), AssemblyHelpers::addressFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::Callee))); |
fpizlo@apple.com | 0e97f12 | 2013-10-07 14:36:49 +0000 | [diff] [blame] | 208 | #else // USE(JSVALUE64) // so this is the 32-bit part |
mark.lam@apple.com | c8151c4 | 2013-10-30 21:26:46 +0000 | [diff] [blame] | 209 | jit.storePtr(callerFrameGPR, AssemblyHelpers::addressForByteOffset(inlineCallFrame->callerFrameOffset())); |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 210 | Instruction* instruction = baselineCodeBlock->instructions().begin() + codeOrigin.bytecodeIndex; |
saambarati1@gmail.com | 9137c0b | 2015-08-25 19:40:46 +0000 | [diff] [blame] | 211 | uint32_t locationBits = CallSiteIndex(instruction).bits(); |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 212 | jit.store32(AssemblyHelpers::TrustedImm32(locationBits), AssemblyHelpers::tagFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::ArgumentCount))); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 213 | jit.store32(AssemblyHelpers::TrustedImm32(JSValue::CellTag), AssemblyHelpers::tagFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::Callee))); |
fpizlo@apple.com | a62d482 | 2013-10-06 04:22:43 +0000 | [diff] [blame] | 214 | if (!inlineCallFrame->isClosureCall) |
| 215 | jit.storePtr(AssemblyHelpers::TrustedImmPtr(inlineCallFrame->calleeConstant()), AssemblyHelpers::payloadFor((VirtualRegister)(inlineCallFrame->stackOffset + JSStack::Callee))); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 216 | #endif // USE(JSVALUE64) // ending the #else part, so directly above is the 32-bit part |
oliver@apple.com | cf0e6c4 | 2013-07-25 04:01:45 +0000 | [diff] [blame] | 217 | } |
oliver@apple.com | 7ddfce8 | 2013-07-25 04:01:59 +0000 | [diff] [blame] | 218 | |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 219 | #if USE(JSVALUE64) |
saambarati1@gmail.com | 9137c0b | 2015-08-25 19:40:46 +0000 | [diff] [blame] | 220 | uint32_t locationBits = CallSiteIndex(codeOrigin.bytecodeIndex).bits(); |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 221 | #else |
| 222 | Instruction* instruction = jit.baselineCodeBlock()->instructions().begin() + codeOrigin.bytecodeIndex; |
saambarati1@gmail.com | 9137c0b | 2015-08-25 19:40:46 +0000 | [diff] [blame] | 223 | uint32_t locationBits = CallSiteIndex(instruction).bits(); |
oliver@apple.com | c4c9b8a | 2013-07-25 04:02:09 +0000 | [diff] [blame] | 224 | #endif |
| 225 | jit.store32(AssemblyHelpers::TrustedImm32(locationBits), AssemblyHelpers::tagFor((VirtualRegister)(JSStack::ArgumentCount))); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 226 | } |
| 227 | |
mhahnenberg@apple.com | 9a4c529 | 2014-02-05 21:42:33 +0000 | [diff] [blame] | 228 | #if ENABLE(GGC) |
mhahnenberg@apple.com | b6f8519 | 2014-02-27 01:27:18 +0000 | [diff] [blame] | 229 | static void osrWriteBarrier(CCallHelpers& jit, GPRReg owner, GPRReg scratch) |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 230 | { |
mark.lam@apple.com | 874eacf | 2014-11-05 01:19:37 +0000 | [diff] [blame] | 231 | AssemblyHelpers::Jump ownerIsRememberedOrInEden = jit.jumpIfIsRememberedOrInEden(owner); |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 232 | |
| 233 | // We need these extra slots because setupArgumentsWithExecState will use poke on x86. |
| 234 | #if CPU(X86) |
| 235 | jit.subPtr(MacroAssembler::TrustedImm32(sizeof(void*) * 3), MacroAssembler::stackPointerRegister); |
| 236 | #endif |
| 237 | |
| 238 | jit.setupArgumentsWithExecState(owner); |
mhahnenberg@apple.com | b6f8519 | 2014-02-27 01:27:18 +0000 | [diff] [blame] | 239 | jit.move(MacroAssembler::TrustedImmPtr(reinterpret_cast<void*>(operationOSRWriteBarrier)), scratch); |
| 240 | jit.call(scratch); |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 241 | |
| 242 | #if CPU(X86) |
| 243 | jit.addPtr(MacroAssembler::TrustedImm32(sizeof(void*) * 3), MacroAssembler::stackPointerRegister); |
| 244 | #endif |
| 245 | |
mark.lam@apple.com | 874eacf | 2014-11-05 01:19:37 +0000 | [diff] [blame] | 246 | ownerIsRememberedOrInEden.link(&jit); |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 247 | } |
mhahnenberg@apple.com | 9a4c529 | 2014-02-05 21:42:33 +0000 | [diff] [blame] | 248 | #endif // ENABLE(GGC) |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 249 | |
oliver@apple.com | ea77149 | 2013-07-25 03:58:38 +0000 | [diff] [blame] | 250 | void adjustAndJumpToTarget(CCallHelpers& jit, const OSRExitBase& exit) |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 251 | { |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 252 | #if ENABLE(GGC) |
mhahnenberg@apple.com | b27e24a | 2014-06-13 22:18:52 +0000 | [diff] [blame] | 253 | jit.move(AssemblyHelpers::TrustedImmPtr(jit.codeBlock()->ownerExecutable()), GPRInfo::nonArgGPR0); |
| 254 | osrWriteBarrier(jit, GPRInfo::nonArgGPR0, GPRInfo::nonArgGPR1); |
| 255 | InlineCallFrameSet* inlineCallFrames = jit.codeBlock()->jitCode()->dfgCommon()->inlineCallFrames.get(); |
| 256 | if (inlineCallFrames) { |
| 257 | for (InlineCallFrame* inlineCallFrame : *inlineCallFrames) { |
| 258 | ScriptExecutable* ownerExecutable = inlineCallFrame->executable.get(); |
| 259 | jit.move(AssemblyHelpers::TrustedImmPtr(ownerExecutable), GPRInfo::nonArgGPR0); |
| 260 | osrWriteBarrier(jit, GPRInfo::nonArgGPR0, GPRInfo::nonArgGPR1); |
| 261 | } |
mhahnenberg@apple.com | b3eab8d | 2014-02-05 21:27:13 +0000 | [diff] [blame] | 262 | } |
| 263 | #endif |
| 264 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 265 | if (exit.m_codeOrigin.inlineCallFrame) |
| 266 | jit.addPtr(AssemblyHelpers::TrustedImm32(exit.m_codeOrigin.inlineCallFrame->stackOffset * sizeof(EncodedJSValue)), GPRInfo::callFrameRegister); |
| 267 | |
| 268 | CodeBlock* baselineCodeBlock = jit.baselineCodeBlockFor(exit.m_codeOrigin); |
| 269 | Vector<BytecodeAndMachineOffset>& decodedCodeMap = jit.decodedCodeMapFor(baselineCodeBlock); |
| 270 | |
| 271 | BytecodeAndMachineOffset* mapping = binarySearch<BytecodeAndMachineOffset, unsigned>(decodedCodeMap, decodedCodeMap.size(), exit.m_codeOrigin.bytecodeIndex, BytecodeAndMachineOffset::getBytecodeIndex); |
| 272 | |
| 273 | ASSERT(mapping); |
| 274 | ASSERT(mapping->m_bytecodeIndex == exit.m_codeOrigin.bytecodeIndex); |
| 275 | |
oliver@apple.com | 5a24fdd | 2013-07-25 04:00:54 +0000 | [diff] [blame] | 276 | void* jumpTarget = baselineCodeBlock->jitCode()->executableAddressAtOffset(mapping->m_machineCodeOffset); |
msaboff@apple.com | 9589433 | 2014-01-29 19:18:54 +0000 | [diff] [blame] | 277 | |
| 278 | jit.addPtr(AssemblyHelpers::TrustedImm32(JIT::stackPointerOffsetFor(baselineCodeBlock) * sizeof(Register)), GPRInfo::callFrameRegister, AssemblyHelpers::stackPointerRegister); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 279 | |
msaboff@apple.com | 9589433 | 2014-01-29 19:18:54 +0000 | [diff] [blame] | 280 | jit.jitAssertTagsInPlace(); |
| 281 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 282 | jit.move(AssemblyHelpers::TrustedImmPtr(jumpTarget), GPRInfo::regT2); |
| 283 | jit.jump(GPRInfo::regT2); |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 284 | } |
| 285 | |
oliver@apple.com | b900914 | 2013-07-25 03:58:26 +0000 | [diff] [blame] | 286 | } } // namespace JSC::DFG |
| 287 | |
| 288 | #endif // ENABLE(DFG_JIT) |
| 289 | |