| Index: src/crankshaft/mips64/lithium-mips64.h
|
| diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h
|
| index 1376acbeef9833c5c9ab93c97dc14c9b3b797e9c..e317ae569bf8025ebbe20b9691a7f21d9e5f0761 100644
|
| --- a/src/crankshaft/mips64/lithium-mips64.h
|
| +++ b/src/crankshaft/mips64/lithium-mips64.h
|
| @@ -73,9 +73,7 @@ class LCodeGen;
|
| V(FlooringDivI) \
|
| V(ForInCacheArray) \
|
| V(ForInPrepareMap) \
|
| - V(GetCachedArrayIndex) \
|
| V(Goto) \
|
| - V(HasCachedArrayIndexAndBranch) \
|
| V(HasInPrototypeChainAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(InnerAllocatedObject) \
|
| @@ -1064,36 +1062,6 @@ class LHasInstanceTypeAndBranch final : public LControlInstruction<1, 0> {
|
| void PrintDataTo(StringStream* stream) override;
|
| };
|
|
|
| -
|
| -class LGetCachedArrayIndex final : public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LGetCachedArrayIndex(LOperand* value) {
|
| - inputs_[0] = value;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(GetCachedArrayIndex, "get-cached-array-index")
|
| - DECLARE_HYDROGEN_ACCESSOR(GetCachedArrayIndex)
|
| -};
|
| -
|
| -
|
| -class LHasCachedArrayIndexAndBranch final : public LControlInstruction<1, 0> {
|
| - public:
|
| - explicit LHasCachedArrayIndexAndBranch(LOperand* value) {
|
| - inputs_[0] = value;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(HasCachedArrayIndexAndBranch,
|
| - "has-cached-array-index-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(HasCachedArrayIndexAndBranch)
|
| -
|
| - void PrintDataTo(StringStream* stream) override;
|
| -};
|
| -
|
| -
|
| class LClassOfTestAndBranch final : public LControlInstruction<1, 1> {
|
| public:
|
| LClassOfTestAndBranch(LOperand* value, LOperand* temp) {
|
|
|