| Index: arguments/src/arm/full-codegen-arm.cc
|
| diff --git a/arguments/src/arm/full-codegen-arm.cc b/arguments/src/arm/full-codegen-arm.cc
|
| index dae008213d41ba27170a350aa4460641c3403931..f608bf1f254f5aa9c51f41011ce31df798e9ef93 100644
|
| --- a/arguments/src/arm/full-codegen-arm.cc
|
| +++ b/arguments/src/arm/full-codegen-arm.cc
|
| @@ -681,7 +681,6 @@ void FullCodeGenerator::EmitDeclaration(Variable* variable,
|
| Comment cmnt(masm_, "[ Declaration");
|
| ASSERT(variable != NULL); // Must have been resolved.
|
| Slot* slot = variable->AsSlot();
|
| - Property* prop = variable->AsProperty();
|
|
|
| if (slot != NULL) {
|
| switch (slot->type()) {
|
| @@ -750,35 +749,6 @@ void FullCodeGenerator::EmitDeclaration(Variable* variable,
|
| break;
|
| }
|
| }
|
| -
|
| - } else if (prop != NULL) {
|
| - if (function != NULL || mode == Variable::CONST) {
|
| - // We are declaring a function or constant that rewrites to a
|
| - // property. Use (keyed) IC to set the initial value. We
|
| - // cannot visit the rewrite because it's shared and we risk
|
| - // recording duplicate AST IDs for bailouts from optimized code.
|
| - ASSERT(prop->obj()->AsVariableProxy() != NULL);
|
| - { AccumulatorValueContext for_object(this);
|
| - EmitVariableLoad(prop->obj()->AsVariableProxy()->var());
|
| - }
|
| - if (function != NULL) {
|
| - __ push(r0);
|
| - VisitForAccumulatorValue(function);
|
| - __ pop(r2);
|
| - } else {
|
| - __ mov(r2, r0);
|
| - __ LoadRoot(r0, Heap::kTheHoleValueRootIndex);
|
| - }
|
| - ASSERT(prop->key()->AsLiteral() != NULL &&
|
| - prop->key()->AsLiteral()->handle()->IsSmi());
|
| - __ mov(r1, Operand(prop->key()->AsLiteral()->handle()));
|
| -
|
| - Handle<Code> ic(Builtins::builtin(
|
| - is_strict_mode() ? Builtins::KeyedStoreIC_Initialize_Strict
|
| - : Builtins::KeyedStoreIC_Initialize));
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET);
|
| - // Value in r0 is ignored (declarations are statements).
|
| - }
|
| }
|
| }
|
|
|
| @@ -1151,7 +1121,6 @@ void FullCodeGenerator::EmitDynamicLoadFromSlotFastCase(
|
| __ jmp(done);
|
| } else if (slot->var()->mode() == Variable::DYNAMIC_LOCAL) {
|
| Slot* potential_slot = slot->var()->local_if_not_shadowed()->AsSlot();
|
| - Expression* rewrite = slot->var()->local_if_not_shadowed()->rewrite();
|
| if (potential_slot != NULL) {
|
| // Generate fast case for locals that rewrite to slots.
|
| __ ldr(r0, ContextSlotOperandCheckExtensions(potential_slot, slow));
|
| @@ -1161,28 +1130,6 @@ void FullCodeGenerator::EmitDynamicLoadFromSlotFastCase(
|
| __ LoadRoot(r0, Heap::kUndefinedValueRootIndex, eq);
|
| }
|
| __ jmp(done);
|
| - } else if (rewrite != NULL) {
|
| - // Generate fast case for calls of an argument function.
|
| - Property* property = rewrite->AsProperty();
|
| - if (property != NULL) {
|
| - VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
|
| - Literal* key_literal = property->key()->AsLiteral();
|
| - if (obj_proxy != NULL &&
|
| - key_literal != NULL &&
|
| - obj_proxy->IsArguments() &&
|
| - key_literal->handle()->IsSmi()) {
|
| - // Load arguments object if there are no eval-introduced
|
| - // variables. Then load the argument from the arguments
|
| - // object using keyed load.
|
| - __ ldr(r1,
|
| - ContextSlotOperandCheckExtensions(obj_proxy->var()->AsSlot(),
|
| - slow));
|
| - __ mov(r0, Operand(key_literal->handle()));
|
| - Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET);
|
| - __ jmp(done);
|
| - }
|
| - }
|
| }
|
| }
|
| }
|
| @@ -1250,13 +1197,12 @@ void FullCodeGenerator::EmitLoadGlobalSlotCheckExtensions(
|
|
|
|
|
| void FullCodeGenerator::EmitVariableLoad(Variable* var) {
|
| - // Four cases: non-this global variables, lookup slots, all other
|
| - // types of slots, and parameters that rewrite to explicit property
|
| - // accesses on the arguments object.
|
| + // Three cases: non-this global variables, lookup slots, and all other
|
| + // types of slots.
|
| Slot* slot = var->AsSlot();
|
| - Property* property = var->AsProperty();
|
| + ASSERT((var->is_global() && !var->is_this()) == (slot == NULL));
|
|
|
| - if (var->is_global() && !var->is_this()) {
|
| + if (slot == NULL) {
|
| Comment cmnt(masm_, "Global variable");
|
| // Use inline caching. Variable name is passed in r2 and the global
|
| // object (receiver) in r0.
|
| @@ -1266,7 +1212,7 @@ void FullCodeGenerator::EmitVariableLoad(Variable* var) {
|
| EmitCallIC(ic, RelocInfo::CODE_TARGET_CONTEXT);
|
| context()->Plug(r0);
|
|
|
| - } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
|
| + } else if (slot->type() == Slot::LOOKUP) {
|
| Label done, slow;
|
|
|
| // Generate code for loading from variables potentially shadowed
|
| @@ -1282,7 +1228,7 @@ void FullCodeGenerator::EmitVariableLoad(Variable* var) {
|
|
|
| context()->Plug(r0);
|
|
|
| - } else if (slot != NULL) {
|
| + } else {
|
| Comment cmnt(masm_, (slot->type() == Slot::CONTEXT)
|
| ? "Context slot"
|
| : "Stack slot");
|
| @@ -1298,32 +1244,6 @@ void FullCodeGenerator::EmitVariableLoad(Variable* var) {
|
| } else {
|
| context()->Plug(slot);
|
| }
|
| - } else {
|
| - Comment cmnt(masm_, "Rewritten parameter");
|
| - ASSERT_NOT_NULL(property);
|
| - // Rewritten parameter accesses are of the form "slot[literal]".
|
| -
|
| - // Assert that the object is in a slot.
|
| - Variable* object_var = property->obj()->AsVariableProxy()->AsVariable();
|
| - ASSERT_NOT_NULL(object_var);
|
| - Slot* object_slot = object_var->AsSlot();
|
| - ASSERT_NOT_NULL(object_slot);
|
| -
|
| - // Load the object.
|
| - Move(r1, object_slot);
|
| -
|
| - // Assert that the key is a smi.
|
| - Literal* key_literal = property->key()->AsLiteral();
|
| - ASSERT_NOT_NULL(key_literal);
|
| - ASSERT(key_literal->handle()->IsSmi());
|
| -
|
| - // Load the key.
|
| - __ mov(r0, Operand(key_literal->handle()));
|
| -
|
| - // Call keyed load IC. It has arguments key and receiver in r0 and r1.
|
| - Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET);
|
| - context()->Plug(r0);
|
| }
|
| }
|
|
|
| @@ -1547,7 +1467,7 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
| }
|
|
|
| // Left-hand side can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* property = expr->target()->AsProperty();
|
| @@ -1573,27 +1493,13 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
| break;
|
| case KEYED_PROPERTY:
|
| if (expr->is_compound()) {
|
| - if (property->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
|
| - __ ldr(r0, EmitSlotSearch(obj_proxy->var()->AsSlot(), r0));
|
| - __ push(r0);
|
| - __ mov(r0, Operand(property->key()->AsLiteral()->handle()));
|
| - } else {
|
| - VisitForStackValue(property->obj());
|
| - VisitForAccumulatorValue(property->key());
|
| - }
|
| + VisitForStackValue(property->obj());
|
| + VisitForAccumulatorValue(property->key());
|
| __ ldr(r1, MemOperand(sp, 0));
|
| __ push(r0);
|
| } else {
|
| - if (property->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = property->obj()->AsVariableProxy();
|
| - __ ldr(r1, EmitSlotSearch(obj_proxy->var()->AsSlot(), r0));
|
| - __ mov(r0, Operand(property->key()->AsLiteral()->handle()));
|
| - __ Push(r1, r0);
|
| - } else {
|
| - VisitForStackValue(property->obj());
|
| - VisitForStackValue(property->key());
|
| - }
|
| + VisitForStackValue(property->obj());
|
| + VisitForStackValue(property->key());
|
| }
|
| break;
|
| }
|
| @@ -1799,7 +1705,7 @@ void FullCodeGenerator::EmitAssignment(Expression* expr, int bailout_ast_id) {
|
| }
|
|
|
| // Left-hand side can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* prop = expr->AsProperty();
|
| @@ -1830,20 +1736,10 @@ void FullCodeGenerator::EmitAssignment(Expression* expr, int bailout_ast_id) {
|
| }
|
| case KEYED_PROPERTY: {
|
| __ push(r0); // Preserve value.
|
| - if (prop->is_synthetic()) {
|
| - ASSERT(prop->obj()->AsVariableProxy() != NULL);
|
| - ASSERT(prop->key()->AsLiteral() != NULL);
|
| - { AccumulatorValueContext for_object(this);
|
| - EmitVariableLoad(prop->obj()->AsVariableProxy()->var());
|
| - }
|
| - __ mov(r2, r0);
|
| - __ mov(r1, Operand(prop->key()->AsLiteral()->handle()));
|
| - } else {
|
| - VisitForStackValue(prop->obj());
|
| - VisitForAccumulatorValue(prop->key());
|
| - __ mov(r1, r0);
|
| - __ pop(r2);
|
| - }
|
| + VisitForStackValue(prop->obj());
|
| + VisitForAccumulatorValue(prop->key());
|
| + __ mov(r1, r0);
|
| + __ pop(r2);
|
| __ pop(r0); // Restore value.
|
| Handle<Code> ic(Builtins::builtin(
|
| is_strict_mode() ? Builtins::KeyedStoreIC_Initialize_Strict
|
| @@ -1859,8 +1755,6 @@ void FullCodeGenerator::EmitAssignment(Expression* expr, int bailout_ast_id) {
|
|
|
| void FullCodeGenerator::EmitVariableAssignment(Variable* var,
|
| Token::Value op) {
|
| - // Left-hand sides that rewrite to explicit property accesses do not reach
|
| - // here.
|
| ASSERT(var != NULL);
|
| ASSERT(var->is_global() || var->AsSlot() != NULL);
|
|
|
| @@ -2293,36 +2187,10 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| EmitCallWithIC(expr, key->handle(), RelocInfo::CODE_TARGET);
|
| } else {
|
| // Call to a keyed property.
|
| - // For a synthetic property use keyed load IC followed by function call,
|
| - // for a regular property use keyed CallIC.
|
| - if (prop->is_synthetic()) {
|
| - // Do not visit the object and key subexpressions (they are shared
|
| - // by all occurrences of the same rewritten parameter).
|
| - ASSERT(prop->obj()->AsVariableProxy() != NULL);
|
| - ASSERT(prop->obj()->AsVariableProxy()->var()->AsSlot() != NULL);
|
| - Slot* slot = prop->obj()->AsVariableProxy()->var()->AsSlot();
|
| - MemOperand operand = EmitSlotSearch(slot, r1);
|
| - __ ldr(r1, operand);
|
| -
|
| - ASSERT(prop->key()->AsLiteral() != NULL);
|
| - ASSERT(prop->key()->AsLiteral()->handle()->IsSmi());
|
| - __ mov(r0, Operand(prop->key()->AsLiteral()->handle()));
|
| -
|
| - // Record source code position for IC call.
|
| - SetSourcePosition(prop->position());
|
| -
|
| - Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize));
|
| - EmitCallIC(ic, RelocInfo::CODE_TARGET);
|
| - __ ldr(r1, GlobalObjectOperand());
|
| - __ ldr(r1, FieldMemOperand(r1, GlobalObject::kGlobalReceiverOffset));
|
| - __ Push(r0, r1); // Function, receiver.
|
| - EmitCallWithStub(expr);
|
| - } else {
|
| - { PreservePositionScope scope(masm()->positions_recorder());
|
| - VisitForStackValue(prop->obj());
|
| - }
|
| - EmitKeyedCallWithIC(expr, prop->key(), RelocInfo::CODE_TARGET);
|
| + { PreservePositionScope scope(masm()->positions_recorder());
|
| + VisitForStackValue(prop->obj());
|
| }
|
| + EmitKeyedCallWithIC(expr, prop->key(), RelocInfo::CODE_TARGET);
|
| }
|
| } else {
|
| // Call to some other expression. If the expression is an anonymous
|
| @@ -3594,18 +3462,12 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
|
| Variable* var = expr->expression()->AsVariableProxy()->AsVariable();
|
|
|
| if (prop != NULL) {
|
| - if (prop->is_synthetic()) {
|
| - // Result of deleting parameters is false, even when they rewrite
|
| - // to accesses on the arguments object.
|
| - context()->Plug(false);
|
| - } else {
|
| - VisitForStackValue(prop->obj());
|
| - VisitForStackValue(prop->key());
|
| - __ mov(r1, Operand(Smi::FromInt(strict_mode_flag())));
|
| - __ push(r1);
|
| - __ InvokeBuiltin(Builtins::DELETE, CALL_JS);
|
| - context()->Plug(r0);
|
| - }
|
| + VisitForStackValue(prop->obj());
|
| + VisitForStackValue(prop->key());
|
| + __ mov(r1, Operand(Smi::FromInt(strict_mode_flag())));
|
| + __ push(r1);
|
| + __ InvokeBuiltin(Builtins::DELETE, CALL_JS);
|
| + context()->Plug(r0);
|
| } else if (var != NULL) {
|
| // Delete of an unqualified identifier is disallowed in strict mode
|
| // but "delete this" is.
|
| @@ -3753,7 +3615,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| }
|
|
|
| // Expression can only be a property, a global or a (parameter or local)
|
| - // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
|
| + // slot.
|
| enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY };
|
| LhsKind assign_type = VARIABLE;
|
| Property* prop = expr->expression()->AsProperty();
|
| @@ -3781,15 +3643,8 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| __ push(r0);
|
| EmitNamedPropertyLoad(prop);
|
| } else {
|
| - if (prop->is_arguments_access()) {
|
| - VariableProxy* obj_proxy = prop->obj()->AsVariableProxy();
|
| - __ ldr(r0, EmitSlotSearch(obj_proxy->var()->AsSlot(), r0));
|
| - __ push(r0);
|
| - __ mov(r0, Operand(prop->key()->AsLiteral()->handle()));
|
| - } else {
|
| - VisitForStackValue(prop->obj());
|
| - VisitForAccumulatorValue(prop->key());
|
| - }
|
| + VisitForStackValue(prop->obj());
|
| + VisitForAccumulatorValue(prop->key());
|
| __ ldr(r1, MemOperand(sp, 0));
|
| __ push(r0);
|
| EmitKeyedPropertyLoad(prop);
|
|
|