| Index: src/mips/builtins-mips.cc
|
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
|
| index b26616a78dd3af0bde01ca733e6d60765ad631bb..0528eefd31fa98f1d6902d1a9b655724e0e057f7 100644
|
| --- a/src/mips/builtins-mips.cc
|
| +++ b/src/mips/builtins-mips.cc
|
| @@ -949,6 +949,8 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) {
|
| // The function builds an interpreter frame. See InterpreterFrameConstants in
|
| // frames.h for its layout.
|
| void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| + ProfileEntryHookStub::MaybeCallEntryHook(masm);
|
| +
|
| // Open a frame scope to indicate that there is a frame on the stack. The
|
| // MANUAL indicates that the scope shouldn't actually generate code to set up
|
| // the frame (that is done below).
|
| @@ -1009,11 +1011,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ Branch(&loop_header, ge, t0, Operand(zero_reg));
|
| }
|
|
|
| - // TODO(rmcilroy): List of things not currently dealt with here but done in
|
| - // fullcodegen's prologue:
|
| - // - Call ProfileEntryHookStub when isolate has a function_entry_hook.
|
| - // - Code aging of the BytecodeArray object.
|
| -
|
| // Load bytecode offset and dispatch table into registers.
|
| __ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex);
|
| __ Addu(kInterpreterRegisterFileRegister, fp,
|
|
|