Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index 5d85b398cf6f3b4f2a2640770114ac46972dc7c4..cfaed15077a1f8dc664dbda56ad045b6f4f42c5d 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -91,7 +91,6 @@ class LCodeGen; |
V(Drop) \ |
V(DummyUse) \ |
V(Dummy) \ |
- V(ElementsKind) \ |
V(ForInCacheArray) \ |
V(ForInPrepareMap) \ |
V(FunctionLiteral) \ |
@@ -165,7 +164,6 @@ class LCodeGen; |
V(SubI) \ |
V(TaggedToI) \ |
V(ThisFunction) \ |
- V(Throw) \ |
V(ToFastProperties) \ |
V(TransitionElementsKind) \ |
V(TrapAllocationMemento) \ |
@@ -174,7 +172,6 @@ class LCodeGen; |
V(Uint32ToDouble) \ |
V(Uint32ToSmi) \ |
V(UnknownOSRValue) \ |
- V(ValueOf) \ |
V(WrapReceiver) |
@@ -555,6 +552,7 @@ class LWrapReceiver V8_FINAL : public LTemplateInstruction<1, 2, 0> { |
LOperand* function() { return inputs_[1]; } |
DECLARE_CONCRETE_INSTRUCTION(WrapReceiver, "wrap-receiver") |
+ DECLARE_HYDROGEN_ACCESSOR(WrapReceiver) |
}; |
@@ -1236,32 +1234,6 @@ class LMapEnumLength V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
}; |
-class LElementsKind V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LElementsKind(LOperand* value) { |
- inputs_[0] = value; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(ElementsKind, "elements-kind") |
- DECLARE_HYDROGEN_ACCESSOR(ElementsKind) |
-}; |
- |
- |
-class LValueOf V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LValueOf(LOperand* value) { |
- inputs_[0] = value; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(ValueOf, "value-of") |
- DECLARE_HYDROGEN_ACCESSOR(ValueOf) |
-}; |
- |
- |
class LDateField V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
public: |
LDateField(LOperand* date, Smi* index) : index_(index) { |
@@ -1315,20 +1287,6 @@ class LSeqStringSetChar V8_FINAL : public LTemplateInstruction<1, 4, 0> { |
}; |
-class LThrow V8_FINAL : public LTemplateInstruction<0, 2, 0> { |
- public: |
- explicit LThrow(LOperand* context, LOperand* value) { |
- inputs_[0] = context; |
- inputs_[1] = value; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* value() { return inputs_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(Throw, "throw") |
-}; |
- |
- |
class LAddI V8_FINAL : public LTemplateInstruction<1, 2, 0> { |
public: |
LAddI(LOperand* left, LOperand* right) { |