Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index e9f13c199eabfe3417987aecdfb87777d2fd71cd..7812eba2aa332306ea3ab393f6bc07ce38d0e330 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -802,7 +802,7 @@ void FullCodeGenerator::VisitVariableDeclaration( |
} else { |
__ push(Immediate(Smi::FromInt(0))); // Indicates no initial value. |
} |
- __ CallRuntime(Runtime::kDeclareContextSlot, 4); |
+ __ CallRuntime(Runtime::kDeclareLookupSlot, 4); |
break; |
} |
} |
@@ -855,7 +855,7 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
__ push(Immediate(variable->name())); |
__ push(Immediate(Smi::FromInt(NONE))); |
VisitForStackValue(declaration->fun()); |
- __ CallRuntime(Runtime::kDeclareContextSlot, 4); |
+ __ CallRuntime(Runtime::kDeclareLookupSlot, 4); |
break; |
} |
} |
@@ -2384,16 +2384,6 @@ void FullCodeGenerator::EmitStoreToStackLocalOrContextSlot( |
} |
-void FullCodeGenerator::EmitCallStoreContextSlot( |
- Handle<String> name, StrictMode strict_mode) { |
- __ push(eax); // Value. |
- __ push(esi); // Context. |
- __ push(Immediate(name)); |
- __ push(Immediate(Smi::FromInt(strict_mode))); |
- __ CallRuntime(Runtime::kStoreContextSlot, 4); |
-} |
- |
- |
void FullCodeGenerator::EmitVariableAssignment(Variable* var, |
Token::Value op) { |
if (var->IsUnallocated()) { |
@@ -2409,7 +2399,7 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, |
__ push(eax); |
__ push(esi); |
__ push(Immediate(var->name())); |
- __ CallRuntime(Runtime::kInitializeConstContextSlot, 3); |
+ __ CallRuntime(Runtime::kInitializeLegacyConstLookupSlot, 3); |
} else { |
ASSERT(var->IsStackLocal() || var->IsContextSlot()); |
Label skip; |
@@ -2423,27 +2413,31 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, |
} else if (var->mode() == LET && op != Token::INIT_LET) { |
// Non-initializing assignment to let variable needs a write barrier. |
- if (var->IsLookupSlot()) { |
- EmitCallStoreContextSlot(var->name(), strict_mode()); |
- } else { |
- ASSERT(var->IsStackAllocated() || var->IsContextSlot()); |
- Label assign; |
- MemOperand location = VarOperand(var, ecx); |
- __ mov(edx, location); |
- __ cmp(edx, isolate()->factory()->the_hole_value()); |
- __ j(not_equal, &assign, Label::kNear); |
- __ push(Immediate(var->name())); |
- __ CallRuntime(Runtime::kThrowReferenceError, 1); |
- __ bind(&assign); |
- EmitStoreToStackLocalOrContextSlot(var, location); |
- } |
+ ASSERT(!var->IsLookupSlot()); |
+ ASSERT(var->IsStackAllocated() || var->IsContextSlot()); |
+ Label assign; |
+ MemOperand location = VarOperand(var, ecx); |
+ __ mov(edx, location); |
+ __ cmp(edx, isolate()->factory()->the_hole_value()); |
+ __ j(not_equal, &assign, Label::kNear); |
+ __ push(Immediate(var->name())); |
+ __ CallRuntime(Runtime::kThrowReferenceError, 1); |
+ __ bind(&assign); |
+ EmitStoreToStackLocalOrContextSlot(var, location); |
} else if (!var->is_const_mode() || op == Token::INIT_CONST) { |
- // Assignment to var or initializing assignment to let/const |
- // in harmony mode. |
if (var->IsLookupSlot()) { |
- EmitCallStoreContextSlot(var->name(), strict_mode()); |
+ ASSERT(op == Token::ASSIGN || op == Token::INIT_VAR || |
+ op == Token::ASSIGN_ADD); |
+ // Assignment to var. |
+ __ push(eax); // Value. |
+ __ push(esi); // Context. |
+ __ push(Immediate(var->name())); |
+ __ push(Immediate(Smi::FromInt(strict_mode()))); |
+ __ CallRuntime(Runtime::kStoreLookupSlot, 4); |
} else { |
+ // Assignment to var or initializing assignment to let/const in harmony |
+ // mode. |
ASSERT(var->IsStackAllocated() || var->IsContextSlot()); |
MemOperand location = VarOperand(var, ecx); |
if (generate_debug_code_ && op == Token::INIT_LET) { |