Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index e9f79c07c28d1bc1075bce6986d21b9de65fb3ca..1920935e613cdb837a86c2e3540d10dca8d3db2a 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -476,25 +476,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: |
bool HasInterestingComment(LCodeGen* gen) const OVERRIDE { return false; } |
@@ -1893,9 +1898,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) |
void PrintDataTo(StringStream* stream) OVERRIDE; |