| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index 52bd01069ac100d7781db948a43906ae23cac51a..32c4d38c14834ef64dd6dee5a81673ecf6cc5b35 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -75,9 +75,7 @@ class LCodeGen;
|
| V(FlooringDivI) \
|
| V(ForInCacheArray) \
|
| V(ForInPrepareMap) \
|
| - V(GetCachedArrayIndex) \
|
| V(Goto) \
|
| - V(HasCachedArrayIndexAndBranch) \
|
| V(HasInPrototypeChainAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(InnerAllocatedObject) \
|
| @@ -1077,35 +1075,6 @@ class LHasInstanceTypeAndBranch final : public LControlInstruction<1, 1> {
|
| 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")
|
| -
|
| - void PrintDataTo(StringStream* stream) override;
|
| -};
|
| -
|
| -
|
| class LClassOfTestAndBranch final : public LControlInstruction<1, 2> {
|
| public:
|
| LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) {
|
|
|