| Index: src/ppc/builtins-ppc.cc
|
| diff --git a/src/ppc/builtins-ppc.cc b/src/ppc/builtins-ppc.cc
|
| index fee244f21b6f88b459c013721f115841d0194614..456147717ce62f491a24dc61078c658e4f08595e 100644
|
| --- a/src/ppc/builtins-ppc.cc
|
| +++ b/src/ppc/builtins-ppc.cc
|
| @@ -969,6 +969,8 @@ void Builtins::Generate_JSConstructEntryTrampoline(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).
|
| @@ -1033,11 +1035,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ bind(&no_args);
|
| }
|
|
|
| - // 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 accumulator, register file, bytecode offset, dispatch table into
|
| // registers.
|
| __ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex);
|
|
|