Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index 37a4cf06eafbab6a9a8d961e47066de4f0e77df8..5a0bb3066b490860cbeffe65eaf478a1b07d0e33 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -932,34 +932,33 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) { |
- VariableProxy* proxy = declaration->proxy(); |
- Variable* variable = proxy->var(); |
- Handle<JSModule> instance = declaration->module()->interface()->Instance(); |
- ASSERT(!instance.is_null()); |
+ Variable* variable = declaration->proxy()->var(); |
+ ASSERT(variable->location() == Variable::CONTEXT); |
+ ASSERT(variable->interface()->IsFrozen()); |
- switch (variable->location()) { |
- case Variable::UNALLOCATED: { |
- Comment cmnt(masm_, "[ ModuleDeclaration"); |
- globals_->Add(variable->name(), zone()); |
- globals_->Add(instance, zone()); |
- Visit(declaration->module()); |
- break; |
- } |
+ Comment cmnt(masm_, "[ ModuleDeclaration"); |
+ EmitDebugCheckDeclarationContext(variable); |
- case Variable::CONTEXT: { |
- Comment cmnt(masm_, "[ ModuleDeclaration"); |
- EmitDebugCheckDeclarationContext(variable); |
- __ li(a1, Operand(instance)); |
- __ sw(a1, ContextOperand(cp, variable->index())); |
- Visit(declaration->module()); |
- break; |
- } |
+ // Load instance object. |
+ __ LoadContext(a1, scope_->ContextChainLength(scope_->GlobalScope())); |
+ __ lw(a1, ContextOperand(a1, variable->interface()->Index())); |
+ __ lw(a1, ContextOperand(a1, Context::EXTENSION_INDEX)); |
- case Variable::PARAMETER: |
- case Variable::LOCAL: |
- case Variable::LOOKUP: |
- UNREACHABLE(); |
- } |
+ // Assign it. |
+ __ sw(a1, ContextOperand(cp, variable->index())); |
+ // We know that we have written a module, which is not a smi. |
+ __ RecordWriteContextSlot(cp, |
+ Context::SlotOffset(variable->index()), |
+ a1, |
+ a3, |
+ kRAHasBeenSaved, |
+ kDontSaveFPRegs, |
+ EMIT_REMEMBERED_SET, |
+ OMIT_SMI_CHECK); |
+ PrepareForBailoutForId(declaration->proxy()->id(), NO_REGISTERS); |
+ |
+ // Traverse into body. |
+ Visit(declaration->module()); |
} |
@@ -1002,6 +1001,14 @@ void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) { |
} |
+void FullCodeGenerator::DeclareModules(Handle<FixedArray> descriptions) { |
+ // Call the runtime to declare the modules. |
+ __ Push(descriptions); |
+ __ CallRuntime(Runtime::kDeclareModules, 1); |
+ // Return value is ignored. |
+} |
+ |
+ |
void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { |
Comment cmnt(masm_, "[ SwitchStatement"); |
Breakable nested_statement(this, stmt); |
@@ -1402,9 +1409,9 @@ void FullCodeGenerator::EmitDynamicLookupFastCase(Variable* var, |
} else if (var->mode() == DYNAMIC_LOCAL) { |
Variable* local = var->local_if_not_shadowed(); |
__ lw(v0, ContextSlotOperandCheckExtensions(local, slow)); |
- if (local->mode() == CONST || |
- local->mode() == CONST_HARMONY || |
- local->mode() == LET) { |
+ if (local->mode() == LET || |
+ local->mode() == CONST || |
+ local->mode() == CONST_HARMONY) { |
__ LoadRoot(at, Heap::kTheHoleValueRootIndex); |
__ subu(at, v0, at); // Sub as compare: at == 0 on eq. |
if (local->mode() == CONST) { |