| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index 8fc5d9d6d54b5bab7d3d3b5a90db948063019d23..b0c5035c7b1857a47c1b7e9f9e1e48a9099bed1a 100644
|
| --- a/src/mips/macro-assembler-mips.h
|
| +++ b/src/mips/macro-assembler-mips.h
|
| @@ -894,47 +894,37 @@ class MacroAssembler: public Assembler {
|
| // -------------------------------------------------------------------------
|
| // JavaScript invokes.
|
|
|
| - // Set up call kind marking in t1. The method takes t1 as an
|
| - // explicit first parameter to make the code more readable at the
|
| - // call sites.
|
| - void SetCallKind(Register dst, CallKind kind);
|
| -
|
| // Invoke the JavaScript function code by either calling or jumping.
|
| void InvokeCode(Register code,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| void InvokeCode(Handle<Code> code,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| RelocInfo::Mode rmode,
|
| - InvokeFlag flag,
|
| - CallKind call_kind);
|
| + InvokeFlag flag);
|
|
|
| // Invoke the JavaScript function in the given register. Changes the
|
| // current context to the context in the function before invoking.
|
| void InvokeFunction(Register function,
|
| const ParameterCount& actual,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| void InvokeFunction(Register function,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| void InvokeFunction(Handle<JSFunction> function,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
|
|
| void IsObjectJSObjectType(Register heap_object,
|
| @@ -1616,8 +1606,7 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
|
| Label* done,
|
| bool* definitely_mismatches,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| // Get the code for the given builtin. Returns if able to resolve
|
| // the function in the 'resolved' flag.
|
|
|