Index: src/ppc/lithium-ppc.cc |
diff --git a/src/ppc/lithium-ppc.cc b/src/ppc/lithium-ppc.cc |
index 305b1149bab9e1e0b9e698c17309c29adfc2e1f0..ec757134802c8cbfa4ad549aeb5676636275011c 100644 |
--- a/src/ppc/lithium-ppc.cc |
+++ b/src/ppc/lithium-ppc.cc |
@@ -2098,14 +2098,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 = |
@@ -2120,17 +2112,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 = |