| Index: src/mips64/macro-assembler-mips64.h
|
| diff --git a/src/mips64/macro-assembler-mips64.h b/src/mips64/macro-assembler-mips64.h
|
| index 797ddcdfe09aca40d01847aa899d2ad173d2b49c..c467cb9bb7d486c5ccaed2d16ae07d313c503688 100644
|
| --- a/src/mips64/macro-assembler-mips64.h
|
| +++ b/src/mips64/macro-assembler-mips64.h
|
| @@ -1020,12 +1020,10 @@ class MacroAssembler: public Assembler {
|
| // JavaScript invokes.
|
|
|
| // Invoke the JavaScript function code by either calling or jumping.
|
| - void InvokeCode(Register code,
|
| - Register new_code,
|
| - const ParameterCount& expected,
|
| - const ParameterCount& actual,
|
| - InvokeFlag flag,
|
| - const CallWrapper& call_wrapper);
|
| + void InvokeFunctionCode(Register function, Register new_target,
|
| + const ParameterCount& expected,
|
| + const ParameterCount& actual, InvokeFlag flag,
|
| + const CallWrapper& call_wrapper);
|
|
|
| // Invoke the JavaScript function in the given register. Changes the
|
| // current context to the context in the function before invoking.
|
| @@ -1768,6 +1766,10 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
|
| InvokeFlag flag,
|
| const CallWrapper& call_wrapper);
|
|
|
| + void FloodFunctionIfStepping(Register fun, Register new_target,
|
| + const ParameterCount& expected,
|
| + const ParameterCount& actual);
|
| +
|
| void InitializeNewString(Register string,
|
| Register length,
|
| Heap::RootListIndex map_index,
|
|
|