| Index: src/arm/macro-assembler-arm.h
|
| diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h
|
| index 3a133b92748d2fc5211772cfbaa8b63f9f71015c..6479ad9d2815bfbe4e346003fd5cf25dc14025f5 100644
|
| --- a/src/arm/macro-assembler-arm.h
|
| +++ b/src/arm/macro-assembler-arm.h
|
| @@ -594,47 +594,37 @@ class MacroAssembler: public Assembler {
|
| // ---------------------------------------------------------------------------
|
| // JavaScript invokes
|
|
|
| - // Set up call kind marking in ecx. The method takes ecx 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,
|
| Register map,
|
| @@ -1455,8 +1445,7 @@ class MacroAssembler: public Assembler {
|
| Label* done,
|
| bool* definitely_mismatches,
|
| InvokeFlag flag,
|
| - const CallWrapper& call_wrapper,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| void InitializeNewString(Register string,
|
| Register length,
|
|
|