Index: src/ppc/full-codegen-ppc.cc |
diff --git a/src/ppc/full-codegen-ppc.cc b/src/ppc/full-codegen-ppc.cc |
index e8bae824a65eaaaf4385cbc4cf843c334f17289a..2175863721d23a2cfe5899c746825177047fa455 100644 |
--- a/src/ppc/full-codegen-ppc.cc |
+++ b/src/ppc/full-codegen-ppc.cc |
@@ -363,7 +363,7 @@ void FullCodeGenerator::Generate() { |
VariableDeclaration* function = scope()->function(); |
DCHECK(function->proxy()->var()->mode() == CONST || |
function->proxy()->var()->mode() == CONST_LEGACY); |
- DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); |
+ DCHECK(!function->proxy()->var()->IsUnallocatedOrGlobalSlot()); |
VisitVariableDeclaration(function); |
} |
VisitDeclarations(scope()->declarations()); |
@@ -850,7 +850,8 @@ void FullCodeGenerator::VisitVariableDeclaration( |
Variable* variable = proxy->var(); |
bool hole_init = mode == LET || mode == CONST || mode == CONST_LEGACY; |
switch (variable->location()) { |
- case Variable::UNALLOCATED: |
+ case VariableLocation::GLOBAL: |
+ case VariableLocation::UNALLOCATED: |
globals_->Add(variable->name(), zone()); |
globals_->Add(variable->binding_needs_init() |
? isolate()->factory()->the_hole_value() |
@@ -858,8 +859,8 @@ void FullCodeGenerator::VisitVariableDeclaration( |
zone()); |
break; |
- case Variable::PARAMETER: |
- case Variable::LOCAL: |
+ case VariableLocation::PARAMETER: |
+ case VariableLocation::LOCAL: |
if (hole_init) { |
Comment cmnt(masm_, "[ VariableDeclaration"); |
__ LoadRoot(ip, Heap::kTheHoleValueRootIndex); |
@@ -867,7 +868,7 @@ void FullCodeGenerator::VisitVariableDeclaration( |
} |
break; |
- case Variable::CONTEXT: |
+ case VariableLocation::CONTEXT: |
if (hole_init) { |
Comment cmnt(masm_, "[ VariableDeclaration"); |
EmitDebugCheckDeclarationContext(variable); |
@@ -878,7 +879,7 @@ void FullCodeGenerator::VisitVariableDeclaration( |
} |
break; |
- case Variable::LOOKUP: { |
+ case VariableLocation::LOOKUP: { |
Comment cmnt(masm_, "[ VariableDeclaration"); |
__ mov(r5, Operand(variable->name())); |
// Declaration nodes are always introduced in one of four modes. |
@@ -909,7 +910,8 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
VariableProxy* proxy = declaration->proxy(); |
Variable* variable = proxy->var(); |
switch (variable->location()) { |
- case Variable::UNALLOCATED: { |
+ case VariableLocation::GLOBAL: |
+ case VariableLocation::UNALLOCATED: { |
globals_->Add(variable->name(), zone()); |
Handle<SharedFunctionInfo> function = |
Compiler::GetSharedFunctionInfo(declaration->fun(), script(), info_); |
@@ -919,15 +921,15 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
break; |
} |
- case Variable::PARAMETER: |
- case Variable::LOCAL: { |
+ case VariableLocation::PARAMETER: |
+ case VariableLocation::LOCAL: { |
Comment cmnt(masm_, "[ FunctionDeclaration"); |
VisitForAccumulatorValue(declaration->fun()); |
__ StoreP(result_register(), StackOperand(variable)); |
break; |
} |
- case Variable::CONTEXT: { |
+ case VariableLocation::CONTEXT: { |
Comment cmnt(masm_, "[ FunctionDeclaration"); |
EmitDebugCheckDeclarationContext(variable); |
VisitForAccumulatorValue(declaration->fun()); |
@@ -941,7 +943,7 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
break; |
} |
- case Variable::LOOKUP: { |
+ case VariableLocation::LOOKUP: { |
Comment cmnt(masm_, "[ FunctionDeclaration"); |
__ mov(r5, Operand(variable->name())); |
__ LoadSmiLiteral(r4, Smi::FromInt(NONE)); |
@@ -959,20 +961,21 @@ void FullCodeGenerator::VisitImportDeclaration(ImportDeclaration* declaration) { |
VariableProxy* proxy = declaration->proxy(); |
Variable* variable = proxy->var(); |
switch (variable->location()) { |
- case Variable::UNALLOCATED: |
+ case VariableLocation::GLOBAL: |
+ case VariableLocation::UNALLOCATED: |
// TODO(rossberg) |
break; |
- case Variable::CONTEXT: { |
+ case VariableLocation::CONTEXT: { |
Comment cmnt(masm_, "[ ImportDeclaration"); |
EmitDebugCheckDeclarationContext(variable); |
// TODO(rossberg) |
break; |
} |
- case Variable::PARAMETER: |
- case Variable::LOCAL: |
- case Variable::LOOKUP: |
+ case VariableLocation::PARAMETER: |
+ case VariableLocation::LOCAL: |
+ case VariableLocation::LOOKUP: |
UNREACHABLE(); |
} |
} |
@@ -1467,7 +1470,8 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy) { |
// Three cases: global variables, lookup variables, and all other types of |
// variables. |
switch (var->location()) { |
- case Variable::UNALLOCATED: { |
+ case VariableLocation::GLOBAL: |
+ case VariableLocation::UNALLOCATED: { |
Comment cmnt(masm_, "[ Global variable"); |
__ LoadP(LoadDescriptor::ReceiverRegister(), GlobalObjectOperand()); |
__ mov(LoadDescriptor::NameRegister(), Operand(var->name())); |
@@ -1478,9 +1482,9 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy) { |
break; |
} |
- case Variable::PARAMETER: |
- case Variable::LOCAL: |
- case Variable::CONTEXT: { |
+ case VariableLocation::PARAMETER: |
+ case VariableLocation::LOCAL: |
+ case VariableLocation::CONTEXT: { |
Comment cmnt(masm_, var->IsContextSlot() ? "[ Context variable" |
: "[ Stack variable"); |
if (var->binding_needs_init()) { |
@@ -1549,7 +1553,7 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy) { |
break; |
} |
- case Variable::LOOKUP: { |
+ case VariableLocation::LOOKUP: { |
Comment cmnt(masm_, "[ Lookup variable"); |
Label done, slow; |
// Generate code for loading from variables potentially shadowed |