Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 1ccba14bc8287844f3fe94edfe56a99a252ecc8f..ede4cbed91bc3c35c930c95393c69bbf95239425 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -100,7 +100,6 @@ class LCodeGen; |
V(LoadRoot) \ |
V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
- V(LoadGlobalCell) \ |
V(LoadGlobalGeneric) \ |
V(LoadKeyed) \ |
V(LoadKeyedGeneric) \ |
@@ -141,7 +140,6 @@ class LCodeGen; |
V(StoreCodeEntry) \ |
V(StoreContextSlot) \ |
V(StoreFrameContext) \ |
- V(StoreGlobalCell) \ |
V(StoreKeyed) \ |
V(StoreKeyedGeneric) \ |
V(StoreNamedField) \ |
@@ -1667,13 +1665,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, |
@@ -1695,21 +1686,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) { |