Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index c789f26b459903f6b8403d99817d66d5092a66b7..1c7f0952f2c7023c1f2c941db883af34b28b1b6c 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -1312,6 +1312,25 @@ void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) { |
} |
+void FullCodeGenerator::EmitLoadHomeObject(SuperReference* expr) { |
+ Comment cnmt(masm_, "[ SuperReference "); |
+ |
+ __ movp(LoadDescriptor::ReceiverRegister(), |
+ Operand(rbp, JavaScriptFrameConstants::kFunctionOffset)); |
+ |
+ Handle<Symbol> home_object_symbol(isolate()->heap()->home_object_symbol()); |
+ __ Move(LoadDescriptor::NameRegister(), home_object_symbol); |
+ |
+ CallLoadIC(NOT_CONTEXTUAL, expr->HomeObjectFeedbackId()); |
+ |
+ __ Cmp(rax, isolate()->factory()->undefined_value()); |
+ Label done; |
+ __ j(not_equal, &done); |
+ __ CallRuntime(Runtime::kThrowNonMethodError, 0); |
+ __ bind(&done); |
+} |
+ |
+ |
void FullCodeGenerator::EmitLoadGlobalCheckExtensions(VariableProxy* proxy, |
TypeofState typeof_state, |
Label* slow) { |
@@ -2263,6 +2282,21 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) { |
} |
+void FullCodeGenerator::EmitNamedSuperPropertyLoad(Property* prop) { |
+ SetSourcePosition(prop->position()); |
+ Literal* key = prop->key()->AsLiteral(); |
+ DCHECK(!key->value()->IsSmi()); |
+ DCHECK(prop->IsSuperAccess()); |
+ |
+ SuperReference* super_ref = prop->obj()->AsSuperReference(); |
+ EmitLoadHomeObject(super_ref); |
+ __ Push(rax); |
+ VisitForStackValue(super_ref->this_var()); |
+ __ Push(key->value()); |
+ __ CallRuntime(Runtime::kLoadFromSuper, 3); |
+} |
+ |
+ |
void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) { |
SetSourcePosition(prop->position()); |
Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate()).code(); |
@@ -2513,10 +2547,14 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
Expression* key = expr->key(); |
if (key->IsPropertyName()) { |
- VisitForAccumulatorValue(expr->obj()); |
- DCHECK(!rax.is(LoadDescriptor::ReceiverRegister())); |
- __ movp(LoadDescriptor::ReceiverRegister(), rax); |
- EmitNamedPropertyLoad(expr); |
+ if (!expr->IsSuperAccess()) { |
+ VisitForAccumulatorValue(expr->obj()); |
+ DCHECK(!rax.is(LoadDescriptor::ReceiverRegister())); |
+ __ movp(LoadDescriptor::ReceiverRegister(), rax); |
+ EmitNamedPropertyLoad(expr); |
+ } else { |
+ EmitNamedSuperPropertyLoad(expr); |
+ } |
PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
context()->Plug(rax); |
} else { |
@@ -2555,6 +2593,7 @@ void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) { |
} else { |
// Load the function from the receiver. |
DCHECK(callee->IsProperty()); |
+ DCHECK(!callee->AsProperty()->IsSuperAccess()); |
__ movp(LoadDescriptor::ReceiverRegister(), Operand(rsp, 0)); |
EmitNamedPropertyLoad(callee->AsProperty()); |
PrepareForBailoutForId(callee->AsProperty()->LoadId(), TOS_REG); |
@@ -2567,6 +2606,43 @@ void FullCodeGenerator::EmitCallWithLoadIC(Call* expr) { |
} |
+void FullCodeGenerator::EmitSuperCallWithLoadIC(Call* expr) { |
+ Expression* callee = expr->expression(); |
+ DCHECK(callee->IsProperty()); |
+ Property* prop = callee->AsProperty(); |
+ DCHECK(prop->IsSuperAccess()); |
+ |
+ SetSourcePosition(prop->position()); |
+ Literal* key = prop->key()->AsLiteral(); |
+ DCHECK(!key->value()->IsSmi()); |
+ // Load the function from the receiver. |
+ SuperReference* super_ref = prop->obj()->AsSuperReference(); |
+ EmitLoadHomeObject(super_ref); |
+ __ Push(rax); |
+ VisitForAccumulatorValue(super_ref->this_var()); |
+ __ Push(rax); |
+ __ Push(Operand(rsp, kPointerSize)); |
+ __ Push(rax); |
+ __ Push(key->value()); |
+ |
+ // Stack here: |
+ // - home_object |
+ // - this (receiver) |
+ // - home_object <-- LoadFromSuper will pop here and below. |
+ // - this (receiver) |
+ // - key |
+ __ CallRuntime(Runtime::kLoadFromSuper, 3); |
+ |
+ // Replace home_object with target function. |
+ __ movp(Operand(rsp, kPointerSize), rax); |
+ |
+ // Stack here: |
+ // - target function |
+ // - this (receiver) |
+ EmitCall(expr, CallICState::METHOD); |
+} |
+ |
+ |
// Common code for calls using the IC. |
void FullCodeGenerator::EmitKeyedCallWithLoadIC(Call* expr, |
Expression* key) { |
@@ -2728,13 +2804,20 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
EmitCall(expr); |
} else if (call_type == Call::PROPERTY_CALL) { |
Property* property = callee->AsProperty(); |
- { PreservePositionScope scope(masm()->positions_recorder()); |
- VisitForStackValue(property->obj()); |
- } |
- if (property->key()->IsPropertyName()) { |
- EmitCallWithLoadIC(expr); |
+ bool is_named_call = property->key()->IsPropertyName(); |
+ // super.x() is handled in EmitCallWithLoadIC. |
+ if (property->IsSuperAccess() && is_named_call) { |
+ EmitSuperCallWithLoadIC(expr); |
} else { |
- EmitKeyedCallWithLoadIC(expr, property->key()); |
+ { |
+ PreservePositionScope scope(masm()->positions_recorder()); |
+ VisitForStackValue(property->obj()); |
+ } |
+ if (is_named_call) { |
+ EmitCallWithLoadIC(expr); |
+ } else { |
+ EmitKeyedCallWithLoadIC(expr, property->key()); |
+ } |
} |
} else { |
DCHECK(call_type == Call::OTHER_CALL); |