| Index: src/crankshaft/x64/lithium-x64.h
|
| diff --git a/src/crankshaft/x64/lithium-x64.h b/src/crankshaft/x64/lithium-x64.h
|
| index e7eaa015296bd47e1c2589fe211c79945428d1d3..502f1992a865189b4b26adf022e2f65c48998fbf 100644
|
| --- a/src/crankshaft/x64/lithium-x64.h
|
| +++ b/src/crankshaft/x64/lithium-x64.h
|
| @@ -89,7 +89,6 @@ class LCodeGen;
|
| V(LoadRoot) \
|
| V(LoadFieldByIndex) \
|
| V(LoadFunctionPrototype) \
|
| - V(LoadGlobalGeneric) \
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| @@ -1588,24 +1587,6 @@ class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
|
| LOperand* temp_vector() { return temps_[0]; }
|
| };
|
|
|
| -class LLoadGlobalGeneric final : public LTemplateInstruction<1, 1, 1> {
|
| - public:
|
| - explicit LLoadGlobalGeneric(LOperand* context, LOperand* vector) {
|
| - inputs_[0] = context;
|
| - temps_[0] = vector;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| - DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* temp_vector() { return temps_[0]; }
|
| -
|
| - 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) {
|
|
|