| Index: src/mips64/lithium-mips64.h
|
| diff --git a/src/mips64/lithium-mips64.h b/src/mips64/lithium-mips64.h
|
| index e5e810a15c8fc553f71fb877db2d7232f7d902d5..d73837ea02c9f72713262afb6f47e5568cc13333 100644
|
| --- a/src/mips64/lithium-mips64.h
|
| +++ b/src/mips64/lithium-mips64.h
|
| @@ -151,7 +151,6 @@ class LCodeGen;
|
| V(StringCompareAndBranch) \
|
| V(SubI) \
|
| V(TaggedToI) \
|
| - V(TailCallThroughMegamorphicCache) \
|
| V(ThisFunction) \
|
| V(ToFastProperties) \
|
| V(TransitionElementsKind) \
|
| @@ -471,26 +470,6 @@ class LCallStub final : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LTailCallThroughMegamorphicCache final
|
| - : public LTemplateInstruction<0, 3, 0> {
|
| - public:
|
| - LTailCallThroughMegamorphicCache(LOperand* context, LOperand* receiver,
|
| - LOperand* name) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = receiver;
|
| - inputs_[2] = name;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* receiver() { return inputs_[1]; }
|
| - LOperand* name() { return inputs_[2]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(TailCallThroughMegamorphicCache,
|
| - "tail-call-through-megamorphic-cache")
|
| - DECLARE_HYDROGEN_ACCESSOR(TailCallThroughMegamorphicCache)
|
| -};
|
| -
|
| -
|
| class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| bool HasInterestingComment(LCodeGen* gen) const override { return false; }
|
|
|