| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 7fca1c18bc0a8aa2dc0de681403a1897c0f15785..c42feccdc668d0a24bb1242ebb4f02e0e13ecd6a 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -3368,9 +3368,6 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
|
| expr->expression()->AsSuperCallReference();
|
| DCHECK_NOT_NULL(super_call_ref);
|
|
|
| - VariableProxy* new_target_proxy = super_call_ref->new_target_var();
|
| - VisitForStackValue(new_target_proxy);
|
| -
|
| EmitLoadSuperConstructor(super_call_ref);
|
| __ push(result_register());
|
|
|
| @@ -3385,6 +3382,10 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
|
| // constructor invocation.
|
| SetConstructCallPosition(expr);
|
|
|
| + // Load original constructor into t0.
|
| + VisitForAccumulatorValue(super_call_ref->new_target_var());
|
| + __ mov(t0, result_register());
|
| +
|
| // Load function and argument count into a1 and a0.
|
| __ li(a0, Operand(arg_count));
|
| __ lw(a1, MemOperand(sp, arg_count * kPointerSize));
|
| @@ -3405,8 +3406,6 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
|
| CallConstructStub stub(isolate(), SUPER_CALL_RECORD_TARGET);
|
| __ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
|
|
|
| - __ Drop(1);
|
| -
|
| RecordJSReturnSite(expr);
|
|
|
| EmitInitializeThisAfterSuper(super_call_ref, expr->CallFeedbackICSlot());
|
| @@ -4342,6 +4341,9 @@ void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) {
|
| __ CallRuntime(Runtime::kGetPrototype, 1);
|
| __ Push(result_register());
|
|
|
| + // Load original constructor into t0.
|
| + __ lw(t0, MemOperand(sp, 1 * kPointerSize));
|
| +
|
| // Check if the calling frame is an arguments adaptor frame.
|
| Label adaptor_frame, args_set_up, runtime;
|
| __ lw(a2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
|
|
|