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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 void RecordWrite( | 316 void RecordWrite( |
317 Register object, | 317 Register object, |
318 Register address, | 318 Register address, |
319 Register value, | 319 Register value, |
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 // --------------------------------------------------------------------------- | |
327 // Debugger Support | |
328 | |
329 void DebugBreak(); | |
330 | |
331 // Generates function and stub prologue code. | 326 // Generates function and stub prologue code. |
332 void StubPrologue(StackFrame::Type type); | 327 void StubPrologue(StackFrame::Type type); |
333 void Prologue(bool code_pre_aging); | 328 void Prologue(bool code_pre_aging); |
334 | 329 |
335 // Enter specific kind of exit frame; either in normal or | 330 // Enter specific kind of exit frame; either in normal or |
336 // debug mode. Expects the number of arguments in register rax and | 331 // debug mode. Expects the number of arguments in register rax and |
337 // sets up the number of arguments in register rdi and the pointer | 332 // sets up the number of arguments in register rdi and the pointer |
338 // to the first argument in register rsi. | 333 // to the first argument in register rsi. |
339 // | 334 // |
340 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack | 335 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack |
(...skipping 1346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 inline Operand StackOperandForReturnAddress(int32_t disp) { | 1682 inline Operand StackOperandForReturnAddress(int32_t disp) { |
1688 return Operand(rsp, disp); | 1683 return Operand(rsp, disp); |
1689 } | 1684 } |
1690 | 1685 |
1691 #define ACCESS_MASM(masm) masm-> | 1686 #define ACCESS_MASM(masm) masm-> |
1692 | 1687 |
1693 } // namespace internal | 1688 } // namespace internal |
1694 } // namespace v8 | 1689 } // namespace v8 |
1695 | 1690 |
1696 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1691 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |