| Index: src/crankshaft/mips64/lithium-mips64.h
|
| diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h
|
| index 7bc89afd46cb59b05b1cf84d78d6bd454f35f1d9..9d85095f4c1c96451ec99f7926bb32440a8bfda1 100644
|
| --- a/src/crankshaft/mips64/lithium-mips64.h
|
| +++ b/src/crankshaft/mips64/lithium-mips64.h
|
| @@ -91,7 +91,6 @@ class LCodeGen;
|
| V(LoadRoot) \
|
| V(LoadFieldByIndex) \
|
| V(LoadFunctionPrototype) \
|
| - V(LoadGlobalGeneric) \
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| @@ -1596,24 +1595,6 @@ class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
|
| DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric)
|
| };
|
|
|
| -class LLoadGlobalGeneric final : public LTemplateInstruction<1, 1, 1> {
|
| - public:
|
| - LLoadGlobalGeneric(LOperand* context, LOperand* vector) {
|
| - inputs_[0] = context;
|
| - temps_[0] = vector;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* temp_vector() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| - DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
| -
|
| - Handle<Object> name() const { return hydrogen()->name(); }
|
| - TypeofMode typeof_mode() const { return hydrogen()->typeof_mode(); }
|
| -};
|
| -
|
| -
|
| class LLoadContextSlot final : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadContextSlot(LOperand* context) {
|
|
|