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

Side by Side Diff: src/debug/x64/debug-x64.cc

Issue 1842683002: [Interpreter] Adds support to fetch return value on break at return. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed failures on linux-nosnap-dbg Created 4 years, 8 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/debug/s390/debug-s390.cc ('k') | src/debug/x87/debug-x87.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 #if V8_TARGET_ARCH_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/assembler.h" 7 #include "src/assembler.h"
8 #include "src/codegen.h" 8 #include "src/codegen.h"
9 #include "src/debug/debug.h" 9 #include "src/debug/debug.h"
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 // Enter an internal frame. 62 // Enter an internal frame.
63 { 63 {
64 FrameScope scope(masm, StackFrame::INTERNAL); 64 FrameScope scope(masm, StackFrame::INTERNAL);
65 65
66 // Load padding words on stack. 66 // Load padding words on stack.
67 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { 67 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
68 __ Push(Smi::FromInt(LiveEdit::kFramePaddingValue)); 68 __ Push(Smi::FromInt(LiveEdit::kFramePaddingValue));
69 } 69 }
70 __ Push(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)); 70 __ Push(Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
71 71
72 if (mode == SAVE_RESULT_REGISTER) __ Push(rax); 72 // Push arguments for DebugBreak call.
73 73 if (mode == SAVE_RESULT_REGISTER) {
74 __ Set(rax, 0); // No arguments (argc == 0). 74 // Break on return.
75 __ Push(rax);
76 } else {
77 // Non-return breaks.
78 __ Push(masm->isolate()->factory()->the_hole_value());
79 }
80 __ Set(rax, 1);
75 __ Move(rbx, ExternalReference(Runtime::FunctionForId(Runtime::kDebugBreak), 81 __ Move(rbx, ExternalReference(Runtime::FunctionForId(Runtime::kDebugBreak),
76 masm->isolate())); 82 masm->isolate()));
77 83
78 CEntryStub ceb(masm->isolate(), 1); 84 CEntryStub ceb(masm->isolate(), 1);
79 __ CallStub(&ceb); 85 __ CallStub(&ceb);
80 86
81 if (FLAG_debug_code) { 87 if (FLAG_debug_code) {
82 for (int i = 0; i < kNumJSCallerSaved; ++i) { 88 for (int i = 0; i < kNumJSCallerSaved; ++i) {
83 Register reg = {JSCallerSavedCode(i)}; 89 Register reg = {JSCallerSavedCode(i)};
84 __ Set(reg, kDebugZapValue); 90 // Do not clobber rax if mode is SAVE_RESULT_REGISTER. It will
91 // contain return value of the function.
92 if (!(reg.is(rax) && (mode == SAVE_RESULT_REGISTER))) {
93 __ Set(reg, kDebugZapValue);
94 }
85 } 95 }
86 } 96 }
87 97
88 if (mode == SAVE_RESULT_REGISTER) __ Pop(rax);
89
90 // Read current padding counter and skip corresponding number of words. 98 // Read current padding counter and skip corresponding number of words.
91 __ Pop(kScratchRegister); 99 __ Pop(kScratchRegister);
92 __ SmiToInteger32(kScratchRegister, kScratchRegister); 100 __ SmiToInteger32(kScratchRegister, kScratchRegister);
93 __ leap(rsp, Operand(rsp, kScratchRegister, times_pointer_size, 0)); 101 __ leap(rsp, Operand(rsp, kScratchRegister, times_pointer_size, 0));
94 102
95 // Get rid of the internal frame. 103 // Get rid of the internal frame.
96 } 104 }
97 105
98 // This call did not replace a call , so there will be an unwanted 106 // This call did not replace a call , so there will be an unwanted
99 // return address left on the stack. Here we get rid of that. 107 // return address left on the stack. Here we get rid of that.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 } 146 }
139 147
140 const bool LiveEdit::kFrameDropperSupported = true; 148 const bool LiveEdit::kFrameDropperSupported = true;
141 149
142 #undef __ 150 #undef __
143 151
144 } // namespace internal 152 } // namespace internal
145 } // namespace v8 153 } // namespace v8
146 154
147 #endif // V8_TARGET_ARCH_X64 155 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/debug/s390/debug-s390.cc ('k') | src/debug/x87/debug-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698