| Index: src/arm64/lithium-arm64.h
|
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
|
| index 8b4872930258a86576d2139af16d7392cf8fb07a..0549689e796cadc575356c590ad62c3b4e12808e 100644
|
| --- a/src/arm64/lithium-arm64.h
|
| +++ b/src/arm64/lithium-arm64.h
|
| @@ -102,7 +102,6 @@ class LCodeGen;
|
| V(LoadContextSlot) \
|
| V(LoadFieldByIndex) \
|
| V(LoadFunctionPrototype) \
|
| - V(LoadGlobalCell) \
|
| V(LoadGlobalGeneric) \
|
| V(LoadKeyedExternal) \
|
| V(LoadKeyedFixed) \
|
| @@ -151,7 +150,6 @@ class LCodeGen;
|
| V(StoreCodeEntry) \
|
| V(StoreContextSlot) \
|
| V(StoreFrameContext) \
|
| - V(StoreGlobalCell) \
|
| V(StoreKeyedExternal) \
|
| V(StoreKeyedFixed) \
|
| V(StoreKeyedFixedDouble) \
|
| @@ -1731,13 +1729,6 @@ class LLoadFunctionPrototype FINAL : public LTemplateInstruction<1, 1, 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,
|
| @@ -2809,23 +2800,6 @@ class LStoreContextSlot FINAL : public LTemplateInstruction<0, 2, 1> {
|
| };
|
|
|
|
|
| -class LStoreGlobalCell FINAL : public LTemplateInstruction<0, 1, 2> {
|
| - public:
|
| - LStoreGlobalCell(LOperand* value, LOperand* temp1, LOperand* temp2) {
|
| - inputs_[0] = value;
|
| - temps_[0] = temp1;
|
| - temps_[1] = temp2;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| - LOperand* temp1() { return temps_[0]; }
|
| - LOperand* temp2() { return temps_[1]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(StoreGlobalCell, "store-global-cell")
|
| - DECLARE_HYDROGEN_ACCESSOR(StoreGlobalCell)
|
| -};
|
| -
|
| -
|
| class LSubI FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LSubI(LOperand* left, LOperand* right)
|
|
|