Index: src/mips64/lithium-mips64.h |
diff --git a/src/mips64/lithium-mips64.h b/src/mips64/lithium-mips64.h |
index 7bcc7695100779af96beacdcb1bf0104d4f1e5c1..b89a9c4dd313bcd9a147d8b2ba41f6c420a53712 100644 |
--- a/src/mips64/lithium-mips64.h |
+++ b/src/mips64/lithium-mips64.h |
@@ -472,19 +472,23 @@ 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") |
@@ -1856,9 +1860,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; |