| Index: src/mips/builtins-mips.cc
|
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
|
| index fcd5ad0fd6eb4da0fa938414c0ef99fe60f6dc98..e970af2e3beaf11963a0a116194b6239eca04bd5 100644
|
| --- a/src/mips/builtins-mips.cc
|
| +++ b/src/mips/builtins-mips.cc
|
| @@ -942,6 +942,96 @@ void Builtins::Generate_InterpreterPushArgsAndConstruct(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| +static void Generate_InterpreterNotifyDeoptimizedHelper(
|
| + MacroAssembler* masm, Deoptimizer::BailoutType type) {
|
| + // Enter an internal frame.
|
| + {
|
| + FrameScope scope(masm, StackFrame::INTERNAL);
|
| + __ push(kInterpreterAccumulatorRegister); // Save accumulator register.
|
| +
|
| + // Pass the deoptimization type to the runtime system.
|
| + __ li(a1, Operand(Smi::FromInt(static_cast<int>(type))));
|
| + __ push(a1);
|
| + __ CallRuntime(Runtime::kNotifyDeoptimized, 1);
|
| +
|
| + __ pop(kInterpreterAccumulatorRegister); // Restore accumulator register.
|
| + // Tear down internal frame.
|
| + }
|
| +
|
| + // Drop state (we don't use these for interpreter deopts) and push PC at top
|
| + // of stack (to simulate initial call to bytecode handler in interpreter entry
|
| + // trampoline).
|
| + __ lw(a1, MemOperand(sp));
|
| + __ Drop(1);
|
| + __ sw(a1, MemOperand(sp));
|
| +
|
| + // Initialize register file register and dispatch table register.
|
| + __ Addu(kInterpreterRegisterFileRegister, fp,
|
| + Operand(InterpreterFrameConstants::kRegisterFilePointerFromFp));
|
| + __ LoadRoot(kInterpreterDispatchTableRegister,
|
| + Heap::kInterpreterTableRootIndex);
|
| + __ Addu(kInterpreterDispatchTableRegister, kInterpreterDispatchTableRegister,
|
| + Operand(FixedArray::kHeaderSize - kHeapObjectTag));
|
| +
|
| + // Get the context from the frame.
|
| + // TODO(rmcilroy): Update interpreter frame to expect current context at the
|
| + // context slot instead of the function context.
|
| + __ lw(kContextRegister,
|
| + MemOperand(kInterpreterRegisterFileRegister,
|
| + InterpreterFrameConstants::kContextFromRegisterPointer));
|
| +
|
| + // Get the bytecode array pointer from the frame.
|
| + __ lw(a1,
|
| + MemOperand(kInterpreterRegisterFileRegister,
|
| + InterpreterFrameConstants::kFunctionFromRegisterPointer));
|
| + __ lw(a1, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
|
| + __ lw(kInterpreterBytecodeArrayRegister,
|
| + FieldMemOperand(a1, SharedFunctionInfo::kFunctionDataOffset));
|
| +
|
| + if (FLAG_debug_code) {
|
| + // Check function data field is actually a BytecodeArray object.
|
| + __ SmiTst(kInterpreterBytecodeArrayRegister, at);
|
| + __ Assert(ne, kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry, at,
|
| + Operand(zero_reg));
|
| + __ GetObjectType(kInterpreterBytecodeArrayRegister, a1, a1);
|
| + __ Assert(eq, kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry, a1,
|
| + Operand(BYTECODE_ARRAY_TYPE));
|
| + }
|
| +
|
| + // Get the target bytecode offset from the frame.
|
| + __ lw(kInterpreterBytecodeOffsetRegister,
|
| + MemOperand(
|
| + kInterpreterRegisterFileRegister,
|
| + InterpreterFrameConstants::kBytecodeOffsetFromRegisterPointer));
|
| + __ SmiUntag(kInterpreterBytecodeOffsetRegister);
|
| +
|
| + // Dispatch to the target bytecode.
|
| + __ Addu(a1, kInterpreterBytecodeArrayRegister,
|
| + kInterpreterBytecodeOffsetRegister);
|
| + __ lbu(a1, MemOperand(a1));
|
| + __ sll(a1, a1, kPointerSizeLog2);
|
| + __ Addu(a1, kInterpreterDispatchTableRegister, a1);
|
| + __ lw(a1, MemOperand(a1));
|
| + __ Addu(a1, a1, Operand(Code::kHeaderSize - kHeapObjectTag));
|
| + __ Jump(a1);
|
| +}
|
| +
|
| +
|
| +void Builtins::Generate_InterpreterNotifyDeoptimized(MacroAssembler* masm) {
|
| + Generate_InterpreterNotifyDeoptimizedHelper(masm, Deoptimizer::EAGER);
|
| +}
|
| +
|
| +
|
| +void Builtins::Generate_InterpreterNotifySoftDeoptimized(MacroAssembler* masm) {
|
| + Generate_InterpreterNotifyDeoptimizedHelper(masm, Deoptimizer::SOFT);
|
| +}
|
| +
|
| +
|
| +void Builtins::Generate_InterpreterNotifyLazyDeoptimized(MacroAssembler* masm) {
|
| + Generate_InterpreterNotifyDeoptimizedHelper(masm, Deoptimizer::LAZY);
|
| +}
|
| +
|
| +
|
| void Builtins::Generate_CompileLazy(MacroAssembler* masm) {
|
| CallRuntimePassFunction(masm, Runtime::kCompileLazy);
|
| GenerateTailCallToReturnedCode(masm);
|
|
|