Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index f9feaf6de28ecab9453f20c19da8a130b67102ea..b53d778e0b3c075fde7aa7470c0de4cea912efe0 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -484,25 +484,30 @@ class LCallStub FINAL : public LTemplateInstruction<1, 1, 0> { |
class LTailCallThroughMegamorphicCache FINAL |
- : public LTemplateInstruction<0, 3, 0> { |
+ : public LTemplateInstruction<0, 5, 0> { |
public: |
- explicit LTailCallThroughMegamorphicCache(LOperand* context, |
- LOperand* receiver, |
- LOperand* name) { |
+ LTailCallThroughMegamorphicCache(LOperand* context, LOperand* receiver, |
+ LOperand* name, LOperand* slot, |
+ LOperand* vector) { |
inputs_[0] = context; |
inputs_[1] = receiver; |
inputs_[2] = name; |
+ inputs_[3] = slot; |
+ inputs_[4] = vector; |
} |
LOperand* context() { return inputs_[0]; } |
LOperand* receiver() { return inputs_[1]; } |
LOperand* name() { return inputs_[2]; } |
+ LOperand* slot() { return inputs_[3]; } |
+ LOperand* vector() { return inputs_[4]; } |
DECLARE_CONCRETE_INSTRUCTION(TailCallThroughMegamorphicCache, |
"tail-call-through-megamorphic-cache") |
DECLARE_HYDROGEN_ACCESSOR(TailCallThroughMegamorphicCache) |
}; |
+ |
class LUnknownOSRValue FINAL : public LTemplateInstruction<1, 0, 0> { |
public: |
virtual bool HasInterestingComment(LCodeGen* gen) const OVERRIDE { |
@@ -1907,9 +1912,10 @@ class LCallWithDescriptor FINAL : public LTemplateResultInstruction<1> { |
const CallInterfaceDescriptor descriptor() { return descriptor_; } |
+ DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor) |
+ |
private: |
DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor") |
- DECLARE_HYDROGEN_ACCESSOR(CallWithDescriptor) |
virtual void PrintDataTo(StringStream* stream) OVERRIDE; |