| Index: src/full-codegen/ppc/full-codegen-ppc.cc
|
| diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| index 29bc5fc2460acc048f70a25cd3ee981a66021d9c..19e4d9a3045ec4880df0078bc8b924fd0120f829 100644
|
| --- a/src/full-codegen/ppc/full-codegen-ppc.cc
|
| +++ b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| @@ -723,9 +723,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
| VariableDeclaration* declaration) {
|
| VariableProxy* proxy = declaration->proxy();
|
| Variable* variable = proxy->var();
|
| + DCHECK(!variable->binding_needs_init());
|
| switch (variable->location()) {
|
| case VariableLocation::UNALLOCATED: {
|
| - DCHECK(!variable->binding_needs_init());
|
| globals_->Add(variable->name(), zone());
|
| FeedbackVectorSlot slot = proxy->VariableFeedbackSlot();
|
| DCHECK(!slot.IsInvalid());
|
| @@ -735,22 +735,7 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
| }
|
| case VariableLocation::PARAMETER:
|
| case VariableLocation::LOCAL:
|
| - if (variable->binding_needs_init()) {
|
| - Comment cmnt(masm_, "[ VariableDeclaration");
|
| - __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
|
| - __ StoreP(ip, StackOperand(variable));
|
| - }
|
| - break;
|
| -
|
| case VariableLocation::CONTEXT:
|
| - if (variable->binding_needs_init()) {
|
| - Comment cmnt(masm_, "[ VariableDeclaration");
|
| - EmitDebugCheckDeclarationContext(variable);
|
| - __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
|
| - __ StoreP(ip, ContextMemOperand(cp, variable->index()), r0);
|
| - // No write barrier since the_hole_value is in old space.
|
| - PrepareForBailoutForId(proxy->id(), BailoutState::NO_REGISTERS);
|
| - }
|
| break;
|
|
|
| case VariableLocation::LOOKUP:
|
| @@ -1118,6 +1103,7 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
|
| SetExpressionPosition(proxy);
|
| PrepareForBailoutForId(proxy->BeforeId(), BailoutState::NO_REGISTERS);
|
| Variable* var = proxy->var();
|
| + DCHECK(!var->binding_needs_init());
|
|
|
| // Two cases: global variables and all other types of variables.
|
| switch (var->location()) {
|
| @@ -1134,20 +1120,6 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
|
| DCHECK_EQ(NOT_INSIDE_TYPEOF, typeof_mode);
|
| Comment cmnt(masm_, var->IsContextSlot() ? "[ Context variable"
|
| : "[ Stack variable");
|
| - if (proxy->hole_check_mode() == HoleCheckMode::kRequired) {
|
| - // Throw a reference error when using an uninitialized let/const
|
| - // binding in harmony mode.
|
| - Label done;
|
| - GetVar(r3, var);
|
| - __ CompareRoot(r3, Heap::kTheHoleValueRootIndex);
|
| - __ bne(&done);
|
| - __ mov(r3, Operand(var->name()));
|
| - __ push(r3);
|
| - __ CallRuntime(Runtime::kThrowReferenceError);
|
| - __ bind(&done);
|
| - context()->Plug(r3);
|
| - break;
|
| - }
|
| context()->Plug(var);
|
| break;
|
| }
|
| @@ -1460,8 +1432,7 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
| switch (assign_type) {
|
| case VARIABLE: {
|
| VariableProxy* proxy = expr->target()->AsVariableProxy();
|
| - EmitVariableAssignment(proxy->var(), expr->op(), expr->AssignmentSlot(),
|
| - proxy->hole_check_mode());
|
| + EmitVariableAssignment(proxy->var(), expr->op(), expr->AssignmentSlot());
|
| PrepareForBailoutForId(expr->AssignmentId(), BailoutState::TOS_REGISTER);
|
| context()->Plug(r3);
|
| break;
|
| @@ -1688,8 +1659,7 @@ void FullCodeGenerator::EmitAssignment(Expression* expr,
|
| case VARIABLE: {
|
| VariableProxy* proxy = expr->AsVariableProxy();
|
| EffectContext context(this);
|
| - EmitVariableAssignment(proxy->var(), Token::ASSIGN, slot,
|
| - proxy->hole_check_mode());
|
| + EmitVariableAssignment(proxy->var(), Token::ASSIGN, slot);
|
| break;
|
| }
|
| case NAMED_PROPERTY: {
|
| @@ -1732,60 +1702,22 @@ void FullCodeGenerator::EmitStoreToStackLocalOrContextSlot(
|
| }
|
|
|
| void FullCodeGenerator::EmitVariableAssignment(Variable* var, Token::Value op,
|
| - FeedbackVectorSlot slot,
|
| - HoleCheckMode hole_check_mode) {
|
| + FeedbackVectorSlot slot) {
|
| + DCHECK(!var->binding_needs_init());
|
| if (var->IsUnallocated()) {
|
| // Global var, const, or let.
|
| __ LoadGlobalObject(StoreDescriptor::ReceiverRegister());
|
| CallStoreIC(slot, var->name());
|
|
|
| - } else if (IsLexicalVariableMode(var->mode()) && op != Token::INIT) {
|
| - DCHECK(!var->IsLookupSlot());
|
| - DCHECK(var->IsStackAllocated() || var->IsContextSlot());
|
| - MemOperand location = VarOperand(var, r4);
|
| - // Perform an initialization check for lexically declared variables.
|
| - if (hole_check_mode == HoleCheckMode::kRequired) {
|
| - Label assign;
|
| - __ LoadP(r6, location);
|
| - __ CompareRoot(r6, Heap::kTheHoleValueRootIndex);
|
| - __ bne(&assign);
|
| - __ mov(r6, Operand(var->name()));
|
| - __ push(r6);
|
| - __ CallRuntime(Runtime::kThrowReferenceError);
|
| - __ bind(&assign);
|
| - }
|
| - if (var->mode() != CONST) {
|
| - EmitStoreToStackLocalOrContextSlot(var, location);
|
| - } else if (var->throw_on_const_assignment(language_mode())) {
|
| + } else if (var->mode() == CONST && op != Token::INIT) {
|
| + if (var->throw_on_const_assignment(language_mode())) {
|
| __ CallRuntime(Runtime::kThrowConstAssignError);
|
| }
|
| - } else if (var->is_this() && var->mode() == CONST && op == Token::INIT) {
|
| - // Initializing assignment to const {this} needs a write barrier.
|
| - DCHECK(var->IsStackAllocated() || var->IsContextSlot());
|
| - Label uninitialized_this;
|
| - MemOperand location = VarOperand(var, r4);
|
| - __ LoadP(r6, location);
|
| - __ CompareRoot(r6, Heap::kTheHoleValueRootIndex);
|
| - __ beq(&uninitialized_this);
|
| - __ mov(r4, Operand(var->name()));
|
| - __ push(r4);
|
| - __ CallRuntime(Runtime::kThrowReferenceError);
|
| - __ bind(&uninitialized_this);
|
| - EmitStoreToStackLocalOrContextSlot(var, location);
|
| -
|
| } else {
|
| - DCHECK(var->mode() != CONST || op == Token::INIT);
|
| + DCHECK(!var->is_this());
|
| DCHECK((var->IsStackAllocated() || var->IsContextSlot()));
|
| DCHECK(!var->IsLookupSlot());
|
| - // Assignment to var or initializing assignment to let/const in harmony
|
| - // mode.
|
| MemOperand location = VarOperand(var, r4);
|
| - if (FLAG_debug_code && var->mode() == LET && op == Token::INIT) {
|
| - // Check for an uninitialized let binding.
|
| - __ LoadP(r5, location);
|
| - __ CompareRoot(r5, Heap::kTheHoleValueRootIndex);
|
| - __ Check(eq, kLetBindingReInitialization);
|
| - }
|
| EmitStoreToStackLocalOrContextSlot(var, location);
|
| }
|
| }
|
| @@ -2516,8 +2448,8 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| if (expr->is_postfix()) {
|
| {
|
| EffectContext context(this);
|
| - EmitVariableAssignment(proxy->var(), Token::ASSIGN, expr->CountSlot(),
|
| - proxy->hole_check_mode());
|
| + EmitVariableAssignment(proxy->var(), Token::ASSIGN,
|
| + expr->CountSlot());
|
| PrepareForBailoutForId(expr->AssignmentId(),
|
| BailoutState::TOS_REGISTER);
|
| context.Plug(r3);
|
| @@ -2528,8 +2460,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| context()->PlugTOS();
|
| }
|
| } else {
|
| - EmitVariableAssignment(proxy->var(), Token::ASSIGN, expr->CountSlot(),
|
| - proxy->hole_check_mode());
|
| + EmitVariableAssignment(proxy->var(), Token::ASSIGN, expr->CountSlot());
|
| PrepareForBailoutForId(expr->AssignmentId(),
|
| BailoutState::TOS_REGISTER);
|
| context()->Plug(r3);
|
|
|