Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 8d1b45fa3054a270196d8b31d93936f8d505f82b..b710ef9fdeb3b48fca01c33af1d899efb8c4923c 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2087,14 +2087,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) { |
- LLoadGlobalCell* result = new(zone()) LLoadGlobalCell; |
- return instr->RequiresHoleCheck() |
- ? AssignEnvironment(DefineAsRegister(result)) |
- : DefineAsRegister(result); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
LOperand* global_object = |
@@ -2109,16 +2101,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreGlobalCell(HStoreGlobalCell* instr) { |
- LOperand* value = UseRegister(instr->value()); |
- // Use a temp to check the value in the cell in the case where we perform |
- // a hole check. |
- return instr->RequiresHoleCheck() |
- ? AssignEnvironment(new(zone()) LStoreGlobalCell(value, TempRegister())) |
- : new(zone()) LStoreGlobalCell(value, NULL); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |