Index: src/x64/macro-assembler-x64.h |
diff --git a/src/x64/macro-assembler-x64.h b/src/x64/macro-assembler-x64.h |
index 62864e1cdbb78685f882c08a99e5f655b9aee364..1814fc3939f4f97364ce6842c20b99e5567b3d63 100644 |
--- a/src/x64/macro-assembler-x64.h |
+++ b/src/x64/macro-assembler-x64.h |
@@ -371,12 +371,10 @@ class MacroAssembler: public Assembler { |
// JavaScript invokes |
// Invoke the JavaScript function code by either calling or jumping. |
- void InvokeCode(Register code, |
- Register new_target, |
- 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. |
@@ -406,10 +404,6 @@ class MacroAssembler: public Assembler { |
// Store the function for the given builtin in the target register. |
void GetBuiltinFunction(Register target, int native_context_index); |
- // Store the code object for the given builtin in the target register. |
- void GetBuiltinEntry(Register target, int native_context_index); |
- |
- |
// --------------------------------------------------------------------------- |
// Smi tagging, untagging and operations on tagged smis. |
@@ -1594,6 +1588,10 @@ class MacroAssembler: public Assembler { |
Label::Distance near_jump, |
const CallWrapper& call_wrapper); |
+ void FloodFunctionIfStepping(Register fun, Register new_target, |
+ const ParameterCount& expected, |
+ const ParameterCount& actual); |
+ |
void EnterExitFramePrologue(bool save_rax); |
// Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack |