| Index: src/arm/lithium-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-arm.cc (revision 7219)
|
| +++ src/arm/lithium-arm.cc (working copy)
|
| @@ -1725,21 +1725,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* global_object = UseFixed(instr->global_object(), r0);
|
| - LLoadGlobalGeneric* result = new LLoadGlobalGeneric(global_object);
|
| - return MarkAsCall(DefineFixed(result, r0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoStoreGlobal(HStoreGlobal* instr) {
|
| if (instr->check_hole_value()) {
|
| LOperand* temp = TempRegister();
|
|
|