Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 39d4d7644ed0bd478c9d4ad06317848cb0df1e38..7f81ad5dfbafe21e9a18f37f0f2d57325d919f5b 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -1814,22 +1814,8 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
Comment cmnt(masm_, "[ Assignment"); |
- // Left-hand side can only be a property, a global or a (parameter or local) |
- // slot. |
- enum LhsKind { |
- VARIABLE, |
- NAMED_PROPERTY, |
- KEYED_PROPERTY, |
- NAMED_SUPER_PROPERTY |
- }; |
- LhsKind assign_type = VARIABLE; |
Property* property = expr->target()->AsProperty(); |
- if (property != NULL) { |
- assign_type = (property->key()->IsPropertyName()) |
- ? (property->IsSuperAccess() ? NAMED_SUPER_PROPERTY |
- : NAMED_PROPERTY) |
- : KEYED_PROPERTY; |
- } |
+ LhsKind assign_type = GetAssignType(property); |
// Evaluate LHS expression. |
switch (assign_type) { |
@@ -1854,6 +1840,18 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
VisitForStackValue(property->obj()); |
} |
break; |
+ case KEYED_SUPER_PROPERTY: |
+ VisitForStackValue(property->obj()->AsSuperReference()->this_var()); |
+ EmitLoadHomeObject(property->obj()->AsSuperReference()); |
+ __ Push(result_register()); |
+ VisitForAccumulatorValue(property->key()); |
+ __ Push(result_register()); |
+ if (expr->is_compound()) { |
+ __ push(MemOperand(esp, 2 * kPointerSize)); |
+ __ push(MemOperand(esp, 2 * kPointerSize)); |
+ __ push(result_register()); |
+ } |
+ break; |
case KEYED_PROPERTY: { |
if (expr->is_compound()) { |
VisitForStackValue(property->obj()); |
@@ -1886,6 +1884,10 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
EmitNamedPropertyLoad(property); |
PrepareForBailoutForId(property->LoadId(), TOS_REG); |
break; |
+ case KEYED_SUPER_PROPERTY: |
+ EmitKeyedSuperPropertyLoad(property); |
+ PrepareForBailoutForId(property->LoadId(), TOS_REG); |
+ break; |
case KEYED_PROPERTY: |
EmitKeyedPropertyLoad(property); |
PrepareForBailoutForId(property->LoadId(), TOS_REG); |
@@ -1933,7 +1935,11 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
break; |
case NAMED_SUPER_PROPERTY: |
EmitNamedSuperPropertyStore(property); |
- context()->Plug(eax); |
+ context()->Plug(result_register()); |
+ break; |
+ case KEYED_SUPER_PROPERTY: |
+ EmitKeyedSuperPropertyStore(property); |
+ context()->Plug(result_register()); |
break; |
case KEYED_PROPERTY: |
EmitKeyedPropertyAssignment(expr); |
@@ -2568,14 +2574,26 @@ void FullCodeGenerator::EmitNamedSuperPropertyStore(Property* prop) { |
Literal* key = prop->key()->AsLiteral(); |
DCHECK(key != NULL); |
- __ push(eax); |
__ push(Immediate(key->value())); |
+ __ push(eax); |
__ CallRuntime((strict_mode() == STRICT ? Runtime::kStoreToSuper_Strict |
: Runtime::kStoreToSuper_Sloppy), |
4); |
} |
+void FullCodeGenerator::EmitKeyedSuperPropertyStore(Property* prop) { |
+ // Assignment to named property of super. |
+ // eax : value |
+ // stack : receiver ('this'), home_object, key |
+ |
+ __ push(eax); |
+ __ CallRuntime((strict_mode() == STRICT ? Runtime::kStoreKeyedToSuper_Strict |
+ : Runtime::kStoreKeyedToSuper_Sloppy), |
+ 4); |
+} |
+ |
+ |
void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) { |
// Assignment to a property, using a keyed store IC. |
// eax : value |
@@ -4385,24 +4403,8 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
Comment cmnt(masm_, "[ CountOperation"); |
SetSourcePosition(expr->position()); |
- // Expression can only be a property, a global or a (parameter or local) |
- // slot. |
- enum LhsKind { |
- VARIABLE, |
- NAMED_PROPERTY, |
- KEYED_PROPERTY, |
- NAMED_SUPER_PROPERTY |
- }; |
- LhsKind assign_type = VARIABLE; |
Property* prop = expr->expression()->AsProperty(); |
- // In case of a property we use the uninitialized expression context |
- // of the key to detect a named property. |
- if (prop != NULL) { |
- assign_type = |
- (prop->key()->IsPropertyName()) |
- ? (prop->IsSuperAccess() ? NAMED_SUPER_PROPERTY : NAMED_PROPERTY) |
- : KEYED_PROPERTY; |
- } |
+ LhsKind assign_type = GetAssignType(prop); |
// Evaluate expression and get value. |
if (assign_type == VARIABLE) { |
@@ -4426,6 +4428,16 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
__ push(MemOperand(esp, kPointerSize)); |
__ push(result_register()); |
EmitNamedSuperPropertyLoad(prop); |
+ } else if (assign_type == KEYED_SUPER_PROPERTY) { |
+ VisitForStackValue(prop->obj()->AsSuperReference()->this_var()); |
+ EmitLoadHomeObject(prop->obj()->AsSuperReference()); |
+ __ push(result_register()); |
+ VisitForAccumulatorValue(prop->key()); |
+ __ push(result_register()); |
+ __ push(MemOperand(esp, 2 * kPointerSize)); |
+ __ push(MemOperand(esp, 2 * kPointerSize)); |
+ __ push(result_register()); |
+ EmitKeyedSuperPropertyLoad(prop); |
} else { |
VisitForStackValue(prop->obj()); |
VisitForStackValue(prop->key()); |
@@ -4470,6 +4482,9 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
case KEYED_PROPERTY: |
__ mov(Operand(esp, 2 * kPointerSize), eax); |
break; |
+ case KEYED_SUPER_PROPERTY: |
+ __ mov(Operand(esp, 3 * kPointerSize), eax); |
+ break; |
} |
} |
} |
@@ -4511,6 +4526,9 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
case KEYED_PROPERTY: |
__ mov(Operand(esp, 2 * kPointerSize), eax); |
break; |
+ case KEYED_SUPER_PROPERTY: |
+ __ mov(Operand(esp, 3 * kPointerSize), eax); |
+ break; |
} |
} |
} |
@@ -4578,6 +4596,17 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
} |
break; |
} |
+ case KEYED_SUPER_PROPERTY: { |
+ EmitKeyedSuperPropertyStore(prop); |
+ if (expr->is_postfix()) { |
+ if (!context()->IsEffect()) { |
+ context()->PlugTOS(); |
+ } |
+ } else { |
+ context()->Plug(eax); |
+ } |
+ break; |
+ } |
case KEYED_PROPERTY: { |
__ pop(StoreDescriptor::NameRegister()); |
__ pop(StoreDescriptor::ReceiverRegister()); |