| Index: src/mips64/lithium-mips64.h
|
| diff --git a/src/mips64/lithium-mips64.h b/src/mips64/lithium-mips64.h
|
| index b89a9c4dd313bcd9a147d8b2ba41f6c420a53712..a50fa51616d16b118c9996b0c576d233ecf97f3b 100644
|
| --- a/src/mips64/lithium-mips64.h
|
| +++ b/src/mips64/lithium-mips64.h
|
| @@ -1901,20 +1901,26 @@ class LInvokeFunction FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LCallFunction FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LCallFunction FINAL : public LTemplateInstruction<1, 2, 2> {
|
| public:
|
| - LCallFunction(LOperand* context, LOperand* function) {
|
| + LCallFunction(LOperand* context, LOperand* function, LOperand* slot,
|
| + LOperand* vector) {
|
| inputs_[0] = context;
|
| inputs_[1] = function;
|
| + temps_[0] = slot;
|
| + temps_[1] = vector;
|
| }
|
|
|
| LOperand* context() { return inputs_[0]; }
|
| LOperand* function() { return inputs_[1]; }
|
| + LOperand* temp_slot() { return temps_[0]; }
|
| + LOperand* temp_vector() { return temps_[1]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function")
|
| DECLARE_HYDROGEN_ACCESSOR(CallFunction)
|
|
|
| int arity() const { return hydrogen()->argument_count() - 1; }
|
| + void PrintDataTo(StringStream* stream) OVERRIDE;
|
| };
|
|
|
|
|
|
|