Index: src/ppc/lithium-ppc.h |
diff --git a/src/ppc/lithium-ppc.h b/src/ppc/lithium-ppc.h |
index 0f34d24eded7894fc4bdd181071d41e463cf60bf..5dce71cbf59391c6896ac5ce8a7d969c59e948c5 100644 |
--- a/src/ppc/lithium-ppc.h |
+++ b/src/ppc/lithium-ppc.h |
@@ -100,7 +100,6 @@ class LCodeGen; |
V(LoadRoot) \ |
V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
- V(LoadGlobalCell) \ |
V(LoadGlobalGeneric) \ |
V(LoadKeyed) \ |
V(LoadKeyedGeneric) \ |
@@ -142,7 +141,6 @@ class LCodeGen; |
V(StoreCodeEntry) \ |
V(StoreContextSlot) \ |
V(StoreFrameContext) \ |
- V(StoreGlobalCell) \ |
V(StoreKeyed) \ |
V(StoreKeyedGeneric) \ |
V(StoreNamedField) \ |
@@ -1641,13 +1639,6 @@ class LLoadKeyedGeneric FINAL : public LTemplateInstruction<1, 3, 1> { |
}; |
-class LLoadGlobalCell FINAL : public LTemplateInstruction<1, 0, 0> { |
- public: |
- DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell") |
- DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell) |
-}; |
- |
- |
class LLoadGlobalGeneric FINAL : public LTemplateInstruction<1, 2, 1> { |
public: |
LLoadGlobalGeneric(LOperand* context, LOperand* global_object, |
@@ -1669,21 +1660,6 @@ class LLoadGlobalGeneric FINAL : public LTemplateInstruction<1, 2, 1> { |
}; |
-class LStoreGlobalCell FINAL : public LTemplateInstruction<0, 1, 1> { |
- public: |
- LStoreGlobalCell(LOperand* value, LOperand* temp) { |
- inputs_[0] = value; |
- temps_[0] = temp; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- LOperand* temp() { return temps_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(StoreGlobalCell, "store-global-cell") |
- DECLARE_HYDROGEN_ACCESSOR(StoreGlobalCell) |
-}; |
- |
- |
class LLoadContextSlot FINAL : public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LLoadContextSlot(LOperand* context) { inputs_[0] = context; } |