blob: 89b98f14f5b386dc47ae9d914fd3ec4f445a9b39 [file] [log] [blame]
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001// Copyright 2010 the V8 project authors. All rights reserved.
ager@chromium.org5ec48922009-05-05 07:25:34 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
kasperl@chromium.org71affb52009-05-26 05:44:31 +000028
29#include "v8.h"
30
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000031#if defined(V8_TARGET_ARCH_X64)
32
kasperl@chromium.org71affb52009-05-26 05:44:31 +000033#include "codegen-inl.h"
34#include "debug.h"
35
36
37namespace v8 {
38namespace internal {
39
40#ifdef ENABLE_DEBUGGER_SUPPORT
41
42bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000043 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000044 return rinfo->IsPatchedReturnSequence();
kasperl@chromium.org71affb52009-05-26 05:44:31 +000045}
46
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000047#define __ ACCESS_MASM(masm)
48
49static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
50 RegList pointer_regs,
51 bool convert_call_to_jmp) {
52 // Save the content of all general purpose registers in memory. This copy in
53 // memory is later pushed onto the JS expression stack for the fake JS frame
54 // generated and also to the C frame generated on top of that. In the JS
55 // frame ONLY the registers containing pointers will be pushed on the
56 // expression stack. This causes the GC to update these pointers so that
57 // they will have the correct value when returning from the debugger.
58 __ SaveRegistersToMemory(kJSCallerSaved);
59
60 // Enter an internal frame.
61 __ EnterInternalFrame();
62
63 // Store the registers containing object pointers on the expression stack to
64 // make sure that these are correctly updated during GC.
65 __ PushRegistersFromMemory(pointer_regs);
66
67#ifdef DEBUG
68 __ RecordComment("// Calling from debug break to runtime - come in - over");
69#endif
70 __ xor_(rax, rax); // No arguments (argc == 0).
71 __ movq(rbx, ExternalReference::debug_break());
72
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000073 CEntryStub ceb(1, ExitFrame::MODE_DEBUG);
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000074 __ CallStub(&ceb);
75
76 // Restore the register values containing object pointers from the expression
77 // stack in the reverse order as they where pushed.
78 __ PopRegistersToMemory(pointer_regs);
79
80 // Get rid of the internal frame.
81 __ LeaveInternalFrame();
82
83 // If this call did not replace a call but patched other code then there will
84 // be an unwanted return address left on the stack. Here we get rid of that.
85 if (convert_call_to_jmp) {
86 __ pop(rax);
87 }
88
89 // Finally restore all registers.
90 __ RestoreRegistersFromMemory(kJSCallerSaved);
91
92 // Now that the break point has been handled, resume normal execution by
93 // jumping to the target address intended by the caller and that was
94 // overwritten by the address of DebugBreakXXX.
95 ExternalReference after_break_target =
96 ExternalReference(Debug_Address::AfterBreakTarget());
97 __ movq(kScratchRegister, after_break_target);
98 __ jmp(Operand(kScratchRegister, 0));
99}
100
101
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000102void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000103 // Register state for keyed IC call call (from ic-x64.cc)
104 // ----------- S t a t e -------------
105 // -- rax: number of arguments
106 // -----------------------------------
107 // The number of arguments in rax is not smi encoded.
108 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000109}
110
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000111
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000112void Debug::GenerateConstructCallDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000113 // Register state just before return from JS function (from codegen-x64.cc).
114 // rax is the actual number of arguments not encoded as a smi, see comment
115 // above IC call.
116 // ----------- S t a t e -------------
117 // -- rax: number of arguments
118 // -----------------------------------
119 // The number of arguments in rax is not smi encoded.
120 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000121}
122
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000123
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000124void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000125 // Register state for keyed IC load call (from ic-x64.cc).
126 // ----------- S t a t e -------------
127 // No registers used on entry.
128 // -----------------------------------
129 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000130}
131
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000132
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000133void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000134 // Register state for keyed IC load call (from ic-x64.cc).
135 // ----------- S t a t e -------------
136 // -- rax : value
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000137 // -- rcx : key
138 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000139 // -----------------------------------
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000140 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000141}
142
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000143
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000144void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000145 // Register state for IC load call (from ic-x64.cc).
146 // ----------- S t a t e -------------
147 // -- rcx : name
148 // -----------------------------------
149 Generate_DebugBreakCallHelper(masm, rcx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000150}
151
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000152
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000153void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000154 // Register state just before return from JS function (from codegen-x64.cc).
155 // ----------- S t a t e -------------
156 // -- rax: return value
157 // -----------------------------------
158 Generate_DebugBreakCallHelper(masm, rax.bit(), true);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000159}
160
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000161
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000162void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000163 // Register state for IC store call (from ic-x64.cc).
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000164 // ----------- S t a t e -------------
165 // -- rax : value
166 // -- rcx : name
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000167 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000168 // -----------------------------------
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000169 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000170}
171
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000172
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000173void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000174 // Register state for stub CallFunction (from CallFunctionStub in ic-x64.cc).
175 // ----------- S t a t e -------------
176 // No registers used on entry.
177 // -----------------------------------
178 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000179}
180
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000181
ager@chromium.org357bf652010-04-12 11:30:10 +0000182void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
183 masm->Abort("LiveEdit frame dropping is not supported on x64");
184}
185
186void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
187 masm->Abort("LiveEdit frame dropping is not supported on x64");
188}
189
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000190#undef __
191
192
ager@chromium.org357bf652010-04-12 11:30:10 +0000193void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
194 Handle<Code> code) {
195 UNREACHABLE();
196}
197const int Debug::kFrameDropperFrameSize = -1;
198
199
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000200void BreakLocationIterator::ClearDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000201 rinfo()->PatchCode(original_rinfo()->pc(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000202 Assembler::kJSReturnSequenceLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000203}
204
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000205
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000206bool BreakLocationIterator::IsDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000207 return Debug::IsDebugBreakAtReturn(rinfo());
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000208}
209
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000210
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000211void BreakLocationIterator::SetDebugBreakAtReturn() {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000212 ASSERT(Assembler::kJSReturnSequenceLength >=
213 Assembler::kCallInstructionLength);
ager@chromium.orga1645e22009-09-09 19:27:10 +0000214 rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000215 Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000216}
217
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000218#endif // ENABLE_DEBUGGER_SUPPORT
219
220} } // namespace v8::internal
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000221
222#endif // V8_TARGET_ARCH_X64