| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 4adf02657debdb3899cfc3fb75a995c7f958da6d..b91288d9401952009c37043ab4ae844fbb91e87c 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -92,7 +92,6 @@ class LCodeGen;
|
| V(Context) \
|
| V(DebugBreak) \
|
| V(DeclareGlobals) \
|
| - V(DeleteProperty) \
|
| V(Deoptimize) \
|
| V(DivI) \
|
| V(DoubleToI) \
|
| @@ -106,7 +105,6 @@ class LCodeGen;
|
| V(Goto) \
|
| V(HasCachedArrayIndexAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| - V(In) \
|
| V(InstanceOf) \
|
| V(InstanceOfKnownGlobal) \
|
| V(InstanceSize) \
|
| @@ -2566,20 +2564,6 @@ class LIsConstructCallAndBranch: public LControlInstruction<0, 1> {
|
| };
|
|
|
|
|
| -class LDeleteProperty: public LTemplateInstruction<1, 2, 0> {
|
| - public:
|
| - LDeleteProperty(LOperand* object, LOperand* key) {
|
| - inputs_[0] = object;
|
| - inputs_[1] = key;
|
| - }
|
| -
|
| - LOperand* object() { return inputs_[0]; }
|
| - LOperand* key() { return inputs_[1]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(DeleteProperty, "delete-property")
|
| -};
|
| -
|
| -
|
| class LOsrEntry: public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| LOsrEntry() {}
|
| @@ -2601,20 +2585,6 @@ class LStackCheck: public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| -class LIn: public LTemplateInstruction<1, 2, 0> {
|
| - public:
|
| - LIn(LOperand* key, LOperand* object) {
|
| - inputs_[0] = key;
|
| - inputs_[1] = object;
|
| - }
|
| -
|
| - LOperand* key() { return inputs_[0]; }
|
| - LOperand* object() { return inputs_[1]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(In, "in")
|
| -};
|
| -
|
| -
|
| class LForInPrepareMap: public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LForInPrepareMap(LOperand* object) {
|
|
|