Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1141)

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x64/interface-descriptors-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
1687 inline Operand StackOperandForReturnAddress(int32_t disp) { 1688 inline Operand StackOperandForReturnAddress(int32_t disp) {
1688 return Operand(rsp, disp); 1689 return Operand(rsp, disp);
1689 } 1690 }
1690 1691
1691 #define ACCESS_MASM(masm) masm-> 1692 #define ACCESS_MASM(masm) masm->
1692 1693
1693 } // namespace internal 1694 } // namespace internal
1694 } // namespace v8 1695 } // namespace v8
1695 1696
1696 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1697 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/interface-descriptors-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698