| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 009b116fa01a24add90acb1c0ee1fa3ac30381b2..f78482e2a60a7ef5a4cf91b55b15629cf75ba313 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -159,7 +159,6 @@ class LCodeGen;
|
| V(StoreCodeEntry) \
|
| V(StoreContextSlot) \
|
| V(StoreGlobalCell) \
|
| - V(StoreGlobalGeneric) \
|
| V(StoreKeyed) \
|
| V(StoreKeyedGeneric) \
|
| V(StoreNamedField) \
|
| @@ -1640,28 +1639,6 @@ class LStoreGlobalCell V8_FINAL : public LTemplateInstruction<0, 1, 1> {
|
| };
|
|
|
|
|
| -class LStoreGlobalGeneric V8_FINAL : public LTemplateInstruction<0, 3, 0> {
|
| - public:
|
| - LStoreGlobalGeneric(LOperand* context,
|
| - LOperand* global_object,
|
| - LOperand* value) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = global_object;
|
| - inputs_[2] = value;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* global_object() { return inputs_[1]; }
|
| - LOperand* value() { return inputs_[2]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(StoreGlobalGeneric, "store-global-generic")
|
| - DECLARE_HYDROGEN_ACCESSOR(StoreGlobalGeneric)
|
| -
|
| - Handle<Object> name() const { return hydrogen()->name(); }
|
| - StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); }
|
| -};
|
| -
|
| -
|
| class LLoadContextSlot V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadContextSlot(LOperand* context) {
|
|
|