2 * Copyright (C) 2013, 2014 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
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.
27 #include "FTLOSREntry.h"
29 #include "CallFrame.h"
30 #include "CodeBlock.h"
31 #include "DFGJITCode.h"
32 #include "FTLForOSREntryJITCode.h"
33 #include "JSStackInlines.h"
34 #include "OperandsInlines.h"
35 #include "JSCInlines.h"
39 namespace JSC { namespace FTL {
42 void* prepareOSREntry(
43 ExecState* exec, CodeBlock* dfgCodeBlock, CodeBlock* entryCodeBlock,
44 unsigned bytecodeIndex, unsigned streamIndex)
47 CodeBlock* baseline = dfgCodeBlock->baselineVersion();
48 ExecutableBase* executable = dfgCodeBlock->ownerExecutable();
49 DFG::JITCode* dfgCode = dfgCodeBlock->jitCode()->dfg();
50 ForOSREntryJITCode* entryCode = entryCodeBlock->jitCode()->ftlForOSREntry();
52 if (Options::verboseOSR()) {
54 "FTL OSR from ", *dfgCodeBlock, " to ", *entryCodeBlock, " at bc#",
55 bytecodeIndex, ".\n");
59 jsCast<ScriptExecutable*>(executable)->setDidTryToEnterInLoop(true);
61 if (bytecodeIndex != entryCode->bytecodeIndex()) {
62 if (Options::verboseOSR())
63 dataLog(" OSR failed because we don't have an entrypoint for bc#", bytecodeIndex, "; ours is for bc#", entryCode->bytecodeIndex(), "\n");
67 Operands<JSValue> values;
69 exec, dfgCodeBlock, CodeOrigin(bytecodeIndex), streamIndex, values);
71 if (Options::verboseOSR())
72 dataLog(" Values at entry: ", values, "\n");
74 for (int argument = values.numberOfArguments(); argument--;) {
75 JSValue valueOnStack = exec->r(virtualRegisterForArgument(argument).offset()).asanUnsafeJSValue();
76 JSValue reconstructedValue = values.argument(argument);
77 if (valueOnStack == reconstructedValue || !argument)
79 dataLog("Mismatch between reconstructed values and the the value on the stack for argument arg", argument, " for ", *entryCodeBlock, " at bc#", bytecodeIndex, ":\n");
80 dataLog(" Value on stack: ", valueOnStack, "\n");
81 dataLog(" Reconstructed value: ", reconstructedValue, "\n");
82 RELEASE_ASSERT_NOT_REACHED();
86 static_cast<int>(values.numberOfLocals()) == baseline->m_numCalleeRegisters);
88 EncodedJSValue* scratch = static_cast<EncodedJSValue*>(
89 entryCode->entryBuffer()->dataBuffer());
91 for (int local = values.numberOfLocals(); local--;)
92 scratch[local] = JSValue::encode(values.local(local));
94 int stackFrameSize = entryCode->common.requiredRegisterCountForExecutionAndExit();
95 if (!vm.interpreter->stack().ensureCapacityFor(&exec->registers()[virtualRegisterForLocal(stackFrameSize - 1).offset()])) {
96 if (Options::verboseOSR())
97 dataLog(" OSR failed because stack growth failed.\n");
101 exec->setCodeBlock(entryCodeBlock);
103 void* result = entryCode->addressForCall(
104 vm, executable, ArityCheckNotRequired,
105 RegisterPreservationNotRequired).executableAddress();
106 if (Options::verboseOSR())
107 dataLog(" Entry will succeed, going to address", RawPointer(result), "\n");
112 } } // namespace JSC::FTL
114 #endif // ENABLE(FTL_JIT)