| 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..9d4c128b9279da76596f7df830151c1ccd9fcb15 100644
|
| --- a/src/arm/macro-assembler-arm.h
|
| +++ b/src/arm/macro-assembler-arm.h
|
| @@ -389,7 +389,7 @@ class MacroAssembler: public Assembler {
|
| }
|
| } else {
|
| Pop(src2, src3, cond);
|
| - str(src1, MemOperand(sp, 4, PostIndex), cond);
|
| + ldr(src1, MemOperand(sp, 4, PostIndex), cond);
|
| }
|
| }
|
|
|
| @@ -594,47 +594,31 @@ 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);
|
| -
|
| - void InvokeCode(Handle<Code> code,
|
| - const ParameterCount& expected,
|
| - const ParameterCount& actual,
|
| - RelocInfo::Mode rmode,
|
| - InvokeFlag flag,
|
| - CallKind call_kind);
|
| + const CallWrapper& call_wrapper);
|
|
|
| // 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 +1439,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,
|
|
|