Index: src/x87/full-codegen-x87.cc |
diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc |
index 7cd503e58c506862d80c3da17390631a8cb69060..4a3e5cc3766a0774fdaeca7c2736919e2c6da67c 100644 |
--- a/src/x87/full-codegen-x87.cc |
+++ b/src/x87/full-codegen-x87.cc |
@@ -2991,7 +2991,6 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
} else if (call_type == Call::GLOBAL_CALL) { |
EmitCallWithLoadIC(expr); |
- |
} else if (call_type == Call::LOOKUP_SLOT_CALL) { |
// Call to a lookup slot (dynamically introduced variable). |
VariableProxy* proxy = callee->AsVariableProxy(); |
@@ -3050,11 +3049,15 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
} |
} |
} else if (call_type == Call::SUPER_CALL) { |
- SuperReference* super_ref = callee->AsSuperReference(); |
- EmitLoadSuperConstructor(super_ref); |
- __ push(result_register()); |
- VisitForStackValue(super_ref->this_var()); |
- EmitCall(expr, CallICState::METHOD); |
+ if (FLAG_experimental_classes) { |
+ EmitSuperConstructorCall(expr); |
+ } else { |
+ SuperReference* super_ref = callee->AsSuperReference(); |
+ EmitLoadSuperConstructor(super_ref); |
+ __ push(result_register()); |
+ VisitForStackValue(super_ref->this_var()); |
+ EmitCall(expr, CallICState::METHOD); |
+ } |
} else { |
DCHECK(call_type == Call::OTHER_CALL); |
// Call to an arbitrary expression not handled specially above. |
@@ -3121,6 +3124,51 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) { |
} |
+void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) { |
+ SuperReference* super_ref = expr->expression()->AsSuperReference(); |
+ EmitLoadSuperConstructor(super_ref); |
+ __ push(result_register()); |
+ |
+ // Push the arguments ("left-to-right") on the stack. |
+ ZoneList<Expression*>* args = expr->arguments(); |
+ int arg_count = args->length(); |
+ for (int i = 0; i < arg_count; i++) { |
+ VisitForStackValue(args->at(i)); |
+ } |
+ |
+ // Call the construct call builtin that handles allocation and |
+ // constructor invocation. |
+ SetSourcePosition(expr->position()); |
+ |
+ // Load function and argument count into edi and eax. |
+ __ Move(eax, Immediate(arg_count)); |
+ __ mov(edi, Operand(esp, arg_count * kPointerSize)); |
+ |
+ // Record call targets in unoptimized code. |
+ if (FLAG_pretenuring_call_new) { |
+ UNREACHABLE(); |
+ /* TODO(dslomov): support pretenuring. |
+ EnsureSlotContainsAllocationSite(expr->AllocationSiteFeedbackSlot()); |
+ DCHECK(expr->AllocationSiteFeedbackSlot().ToInt() == |
+ expr->CallNewFeedbackSlot().ToInt() + 1); |
+ */ |
+ } |
+ |
+ __ LoadHeapObject(ebx, FeedbackVector()); |
+ __ mov(edx, Immediate(SmiFromSlot(expr->CallFeedbackSlot()))); |
+ |
+ // TODO(dslomov): use a different stub and propagate new.target. |
+ CallConstructStub stub(isolate(), RECORD_CONSTRUCTOR_TARGET); |
+ __ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL); |
+ |
+ RecordJSReturnSite(expr); |
+ |
+ // TODO(dslomov): implement TDZ for `this`. |
+ EmitVariableAssignment(super_ref->this_var()->var(), Token::ASSIGN); |
+ context()->Plug(eax); |
+} |
+ |
+ |
void FullCodeGenerator::EmitIsSmi(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
DCHECK(args->length() == 1); |