| Index: src/x87/full-codegen-x87.cc
|
| diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc
|
| index 1bf9ff83b4d089add3c0e2a445863ba7fea5526e..ef8d5d993449db107145e58d2e86f2e00ca8a260 100644
|
| --- a/src/x87/full-codegen-x87.cc
|
| +++ b/src/x87/full-codegen-x87.cc
|
| @@ -1918,7 +1918,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
|
|
|
| void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
| - DCHECK(expr->target()->IsValidReferenceExpression());
|
| + DCHECK(expr->target()->IsValidReferenceExpressionOrThis());
|
|
|
| Comment cmnt(masm_, "[ Assignment");
|
| SetExpressionPosition(expr, INSERT_BREAK);
|
| @@ -2575,7 +2575,7 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, Token::Value op) {
|
|
|
| void FullCodeGenerator::EmitAssignment(Expression* expr,
|
| FeedbackVectorICSlot slot) {
|
| - DCHECK(expr->IsValidReferenceExpression());
|
| + DCHECK(expr->IsValidReferenceExpressionOrThis());
|
|
|
| Property* prop = expr->AsProperty();
|
| LhsKind assign_type = Property::GetAssignType(prop);
|
| @@ -2717,6 +2717,19 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
|
| __ bind(&const_error);
|
| __ CallRuntime(Runtime::kThrowConstAssignError, 0);
|
|
|
| + } else if (var->is_this() && op == Token::INIT_CONST) {
|
| + // Initializing assignment to const {this} needs a write barrier.
|
| + DCHECK(var->IsStackAllocated() || var->IsContextSlot());
|
| + Label uninitialized_this;
|
| + MemOperand location = VarOperand(var, ecx);
|
| + __ mov(edx, location);
|
| + __ cmp(edx, isolate()->factory()->the_hole_value());
|
| + __ j(equal, &uninitialized_this);
|
| + __ push(Immediate(var->name()));
|
| + __ CallRuntime(Runtime::kThrowReferenceError, 1);
|
| + __ bind(&uninitialized_this);
|
| + EmitStoreToStackLocalOrContextSlot(var, location);
|
| +
|
| } else if (!var->is_const_mode() || op == Token::INIT_CONST) {
|
| if (var->IsLookupSlot()) {
|
| // Assignment to var.
|
| @@ -3059,22 +3072,6 @@ void FullCodeGenerator::EmitResolvePossiblyDirectEval(int arg_count) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitInitializeThisAfterSuper(
|
| - SuperCallReference* super_call_ref, FeedbackVectorICSlot slot) {
|
| - Variable* this_var = super_call_ref->this_var()->var();
|
| - GetVar(ecx, this_var);
|
| - __ cmp(ecx, isolate()->factory()->the_hole_value());
|
| -
|
| - Label uninitialized_this;
|
| - __ j(equal, &uninitialized_this);
|
| - __ push(Immediate(this_var->name()));
|
| - __ CallRuntime(Runtime::kThrowReferenceError, 1);
|
| - __ bind(&uninitialized_this);
|
| -
|
| - EmitVariableAssignment(this_var, Token::INIT_CONST, slot);
|
| -}
|
| -
|
| -
|
| // See http://www.ecma-international.org/ecma-262/6.0/#sec-function-calls.
|
| void FullCodeGenerator::PushCalleeAndWithBaseObject(Call* expr) {
|
| VariableProxy* callee = expr->expression()->AsVariableProxy();
|
| @@ -3290,7 +3287,6 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) {
|
|
|
| RecordJSReturnSite(expr);
|
|
|
| - EmitInitializeThisAfterSuper(super_call_ref, expr->CallFeedbackICSlot());
|
| context()->Plug(eax);
|
| }
|
|
|
| @@ -4665,9 +4661,6 @@ void FullCodeGenerator::EmitCallSuperWithSpread(CallRuntime* expr) {
|
| // Restore context register.
|
| __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
|
| context()->DropAndPlug(1, eax);
|
| -
|
| - // TODO(mvstanton): with FLAG_vector_stores this needs a slot id.
|
| - EmitInitializeThisAfterSuper(super_call_ref);
|
| }
|
|
|
|
|
| @@ -4866,7 +4859,7 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
|
|
|
|
|
| void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| - DCHECK(expr->expression()->IsValidReferenceExpression());
|
| + DCHECK(expr->expression()->IsValidReferenceExpressionOrThis());
|
|
|
| Comment cmnt(masm_, "[ CountOperation");
|
|
|
|
|