| Index: src/crankshaft/ppc/lithium-ppc.h
|
| diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h
|
| index 6974041318a850859862e6862787b43e0cca6dae..6ead8f75982c8919e6db5c9a2bc03a9cbdddb3fe 100644
|
| --- a/src/crankshaft/ppc/lithium-ppc.h
|
| +++ b/src/crankshaft/ppc/lithium-ppc.h
|
| @@ -71,9 +71,7 @@ class LCodeGen;
|
| V(FlooringDivI) \
|
| V(ForInCacheArray) \
|
| V(ForInPrepareMap) \
|
| - V(GetCachedArrayIndex) \
|
| V(Goto) \
|
| - V(HasCachedArrayIndexAndBranch) \
|
| V(HasInPrototypeChainAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(InnerAllocatedObject) \
|
| @@ -1055,34 +1053,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) {
|
|
|