| Index: src/ppc/builtins-ppc.cc
|
| diff --git a/src/ppc/builtins-ppc.cc b/src/ppc/builtins-ppc.cc
|
| index e08c865e4e92d44b300edd7aa1ede7cdd2107cc0..7269b18b4c11a90fdec76da24ada712e91aa0b5f 100644
|
| --- a/src/ppc/builtins-ppc.cc
|
| +++ b/src/ppc/builtins-ppc.cc
|
| @@ -956,6 +956,32 @@ void Builtins::Generate_InterpreterExitTrampoline(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| +// static
|
| +void Builtins::Generate_InterpreterPushArgsAndCall(MacroAssembler* masm) {
|
| + // ----------- S t a t e -------------
|
| + // -- r3 : the number of arguments (not including the receiver)
|
| + // -- r5 : the address of the first argument to be pushed. Subsequent
|
| + // arguments should be consecutive above this, in the same order as
|
| + // they are to be pushed onto the stack.
|
| + // -- r4 : the target to call (can be any Object).
|
| +
|
| + // Calculate number of arguments (add one for receiver).
|
| + __ addi(r6, r3, Operand(1));
|
| +
|
| + // Push the arguments.
|
| + Label loop;
|
| + __ addi(r5, r5, Operand(kPointerSize)); // Bias up for LoadPU
|
| + __ mtctr(r6);
|
| + __ bind(&loop);
|
| + __ LoadPU(r6, MemOperand(r5, -kPointerSize));
|
| + __ push(r6);
|
| + __ bdnz(&loop);
|
| +
|
| + // Call the target.
|
| + __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
|
| +}
|
| +
|
| +
|
| void Builtins::Generate_CompileLazy(MacroAssembler* masm) {
|
| CallRuntimePassFunction(masm, Runtime::kCompileLazy);
|
| GenerateTailCallToReturnedCode(masm);
|
| @@ -1719,32 +1745,6 @@ void Builtins::Generate_Construct(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -// static
|
| -void Builtins::Generate_PushArgsAndCall(MacroAssembler* masm) {
|
| - // ----------- S t a t e -------------
|
| - // -- r3 : the number of arguments (not including the receiver)
|
| - // -- r5 : the address of the first argument to be pushed. Subsequent
|
| - // arguments should be consecutive above this, in the same order as
|
| - // they are to be pushed onto the stack.
|
| - // -- r4 : the target to call (can be any Object).
|
| -
|
| - // Calculate number of arguments (add one for receiver).
|
| - __ addi(r6, r3, Operand(1));
|
| -
|
| - // Push the arguments.
|
| - Label loop;
|
| - __ addi(r5, r5, Operand(kPointerSize)); // Bias up for LoadPU
|
| - __ mtctr(r6);
|
| - __ bind(&loop);
|
| - __ LoadPU(r6, MemOperand(r5, -kPointerSize));
|
| - __ push(r6);
|
| - __ bdnz(&loop);
|
| -
|
| - // Call the target.
|
| - __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET);
|
| -}
|
| -
|
| -
|
| void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) {
|
| // ----------- S t a t e -------------
|
| // -- r3 : actual number of arguments
|
|
|