Index: src/x64/macro-assembler-x64.h |
diff --git a/src/x64/macro-assembler-x64.h b/src/x64/macro-assembler-x64.h |
index e69cb6e0096f498241c8029ff0b08b8d958bdc72..b9eb7fef59faa715a924bf1a2a574e32937eb2cc 100644 |
--- a/src/x64/macro-assembler-x64.h |
+++ b/src/x64/macro-assembler-x64.h |
@@ -342,48 +342,38 @@ class MacroAssembler: public Assembler { |
// --------------------------------------------------------------------------- |
// JavaScript invokes |
- // Set up call kind marking in rcx. The method takes rcx 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, |
- const CallWrapper& call_wrapper, |
- 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); |
// Invoke specified builtin JavaScript function. Adds an entry to |
// the unresolved list if the name does not resolve. |
@@ -1490,8 +1480,7 @@ class MacroAssembler: public Assembler { |
bool* definitely_mismatches, |
InvokeFlag flag, |
Label::Distance near_jump = Label::kFar, |
- const CallWrapper& call_wrapper = NullCallWrapper(), |
- CallKind call_kind = CALL_AS_METHOD); |
+ const CallWrapper& call_wrapper = NullCallWrapper()); |
void EnterExitFramePrologue(bool save_rax); |