Index: src/x64/macro-assembler-x64.cc |
diff --git a/src/x64/macro-assembler-x64.cc b/src/x64/macro-assembler-x64.cc |
index b62ffc67d8f8eef016f1d0b98f1ed2b4a54ab80f..49629c7fb1844cde089270dbc689ea65652bf9f1 100644 |
--- a/src/x64/macro-assembler-x64.cc |
+++ b/src/x64/macro-assembler-x64.cc |
@@ -3601,7 +3601,7 @@ void MacroAssembler::InvokeFunction(Register function, |
} |
-void MacroAssembler::InvokeFunction(Register function, |
+void MacroAssembler::InvokeFunction(Handle<JSFunction> function, |
const ParameterCount& expected, |
const ParameterCount& actual, |
InvokeFlag flag, |
@@ -3610,27 +3610,18 @@ void MacroAssembler::InvokeFunction(Register function, |
// You can't call a function without a valid frame. |
ASSERT(flag == JUMP_FUNCTION || has_frame()); |
- ASSERT(function.is(rdi)); |
- movq(rsi, FieldOperand(function, JSFunction::kContextOffset)); |
- // Advances rdx to the end of the Code object header, to the start of |
- // the executable code. |
- movq(rdx, FieldOperand(rdi, JSFunction::kCodeEntryOffset)); |
+ // Get the function and setup the context. |
+ Move(rdi, function); |
+ movq(rsi, FieldOperand(rdi, JSFunction::kContextOffset)); |
+ // We call indirectly through the code field in the function to |
+ // allow recompilation to take effect without changing any of the |
+ // call sites. |
+ movq(rdx, FieldOperand(rdi, JSFunction::kCodeEntryOffset)); |
InvokeCode(rdx, expected, actual, flag, call_wrapper, call_kind); |
} |
-void MacroAssembler::InvokeFunction(Handle<JSFunction> function, |
- const ParameterCount& expected, |
- const ParameterCount& actual, |
- InvokeFlag flag, |
- const CallWrapper& call_wrapper, |
- CallKind call_kind) { |
- Move(rdi, function); |
- InvokeFunction(rdi, expected, actual, flag, call_wrapper, call_kind); |
-} |
- |
- |
void MacroAssembler::InvokePrologue(const ParameterCount& expected, |
const ParameterCount& actual, |
Handle<Code> code_constant, |