| Index: src/x64/macro-assembler-x64.h
|
| diff --git a/src/x64/macro-assembler-x64.h b/src/x64/macro-assembler-x64.h
|
| index 06b2f801a3ed22030b4ca48101da2249aa76d750..98808a867228481dbfb462ab4f501b58a5eec80d 100644
|
| --- a/src/x64/macro-assembler-x64.h
|
| +++ b/src/x64/macro-assembler-x64.h
|
| @@ -371,6 +371,13 @@ class MacroAssembler: public Assembler {
|
| const CallWrapper& call_wrapper,
|
| CallKind call_kind);
|
|
|
| + void InvokeFunction(Register function,
|
| + const ParameterCount& expected,
|
| + const ParameterCount& actual,
|
| + InvokeFlag flag,
|
| + const CallWrapper& call_wrapper,
|
| + CallKind call_kind);
|
| +
|
| void InvokeFunction(Handle<JSFunction> function,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| @@ -1393,8 +1400,6 @@ class MacroAssembler: public Assembler {
|
| // Verify restrictions about code generated in stubs.
|
| void set_generating_stub(bool value) { generating_stub_ = value; }
|
| bool generating_stub() { return generating_stub_; }
|
| - void set_allow_stub_calls(bool value) { allow_stub_calls_ = value; }
|
| - bool allow_stub_calls() { return allow_stub_calls_; }
|
| void set_has_frame(bool value) { has_frame_ = value; }
|
| bool has_frame() { return has_frame_; }
|
| inline bool AllowThisStubCall(CodeStub* stub);
|
| @@ -1444,7 +1449,6 @@ class MacroAssembler: public Assembler {
|
| static const int kSmiShift = kSmiTagSize + kSmiShiftSize;
|
|
|
| bool generating_stub_;
|
| - bool allow_stub_calls_;
|
| bool has_frame_;
|
| bool root_array_available_;
|
|
|
|
|