Index: src/ia32/lithium-ia32.cc |
=================================================================== |
--- src/ia32/lithium-ia32.cc (revision 7218) |
+++ src/ia32/lithium-ia32.cc (working copy) |
@@ -1745,22 +1745,14 @@ |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) { |
- LLoadGlobalCell* result = new LLoadGlobalCell; |
+LInstruction* LChunkBuilder::DoLoadGlobal(HLoadGlobal* instr) { |
+ LLoadGlobal* result = new LLoadGlobal; |
return instr->check_hole_value() |
? AssignEnvironment(DefineAsRegister(result)) |
: DefineAsRegister(result); |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* global_object = UseFixed(instr->global_object(), eax); |
- LLoadGlobalGeneric* result = new LLoadGlobalGeneric(context, global_object); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStoreGlobal(HStoreGlobal* instr) { |
LStoreGlobal* result = new LStoreGlobal(UseRegisterAtStart(instr->value())); |
return instr->check_hole_value() ? AssignEnvironment(result) : result; |