OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ | 5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ |
6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ | 6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
10 #include "src/base/flags.h" | 10 #include "src/base/flags.h" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 SaveFPRegsMode save_fp, | 320 SaveFPRegsMode save_fp, |
321 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET, | 321 RememberedSetAction remembered_set_action = EMIT_REMEMBERED_SET, |
322 SmiCheck smi_check = INLINE_SMI_CHECK, | 322 SmiCheck smi_check = INLINE_SMI_CHECK, |
323 PointersToHereCheck pointers_to_here_check_for_value = | 323 PointersToHereCheck pointers_to_here_check_for_value = |
324 kPointersToHereMaybeInteresting); | 324 kPointersToHereMaybeInteresting); |
325 | 325 |
326 // --------------------------------------------------------------------------- | 326 // --------------------------------------------------------------------------- |
327 // Debugger Support | 327 // Debugger Support |
328 | 328 |
329 void DebugBreak(); | 329 void DebugBreak(); |
| 330 void MaybeDropFrames(); |
330 | 331 |
331 // Generates function and stub prologue code. | 332 // Generates function and stub prologue code. |
332 void StubPrologue(StackFrame::Type type); | 333 void StubPrologue(StackFrame::Type type); |
333 void Prologue(bool code_pre_aging); | 334 void Prologue(bool code_pre_aging); |
334 | 335 |
335 // Enter specific kind of exit frame; either in normal or | 336 // Enter specific kind of exit frame; either in normal or |
336 // debug mode. Expects the number of arguments in register rax and | 337 // debug mode. Expects the number of arguments in register rax and |
337 // sets up the number of arguments in register rdi and the pointer | 338 // sets up the number of arguments in register rdi and the pointer |
338 // to the first argument in register rsi. | 339 // to the first argument in register rsi. |
339 // | 340 // |
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1683 inline Operand StackOperandForReturnAddress(int32_t disp) { | 1684 inline Operand StackOperandForReturnAddress(int32_t disp) { |
1684 return Operand(rsp, disp); | 1685 return Operand(rsp, disp); |
1685 } | 1686 } |
1686 | 1687 |
1687 #define ACCESS_MASM(masm) masm-> | 1688 #define ACCESS_MASM(masm) masm-> |
1688 | 1689 |
1689 } // namespace internal | 1690 } // namespace internal |
1690 } // namespace v8 | 1691 } // namespace v8 |
1691 | 1692 |
1692 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1693 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |