blob: b9d062d962b7b48bcf4138b9e5dca3e4744f96fc [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 -------------
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +0000147 // -- rax : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000148 // -- rcx : name
149 // -----------------------------------
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +0000150 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000151}
152
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000153
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000154void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000155 // Register state just before return from JS function (from codegen-x64.cc).
156 // ----------- S t a t e -------------
157 // -- rax: return value
158 // -----------------------------------
159 Generate_DebugBreakCallHelper(masm, rax.bit(), true);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000160}
161
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000162
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000163void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000164 // Register state for IC store call (from ic-x64.cc).
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000165 // ----------- S t a t e -------------
166 // -- rax : value
167 // -- rcx : name
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000168 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000169 // -----------------------------------
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000170 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000171}
172
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000173
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000174void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000175 // Register state for stub CallFunction (from CallFunctionStub in ic-x64.cc).
176 // ----------- S t a t e -------------
177 // No registers used on entry.
178 // -----------------------------------
179 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000180}
181
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000182
ager@chromium.org357bf652010-04-12 11:30:10 +0000183void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
184 masm->Abort("LiveEdit frame dropping is not supported on x64");
185}
186
187void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
188 masm->Abort("LiveEdit frame dropping is not supported on x64");
189}
190
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000191#undef __
192
193
ager@chromium.org357bf652010-04-12 11:30:10 +0000194void Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
195 Handle<Code> code) {
196 UNREACHABLE();
197}
198const int Debug::kFrameDropperFrameSize = -1;
199
200
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000201void BreakLocationIterator::ClearDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000202 rinfo()->PatchCode(original_rinfo()->pc(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000203 Assembler::kJSReturnSequenceLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000204}
205
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000206
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000207bool BreakLocationIterator::IsDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000208 return Debug::IsDebugBreakAtReturn(rinfo());
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000209}
210
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000211
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000212void BreakLocationIterator::SetDebugBreakAtReturn() {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000213 ASSERT(Assembler::kJSReturnSequenceLength >=
214 Assembler::kCallInstructionLength);
ager@chromium.orga1645e22009-09-09 19:27:10 +0000215 rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000216 Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000217}
218
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000219#endif // ENABLE_DEBUGGER_SUPPORT
220
221} } // namespace v8::internal
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000222
223#endif // V8_TARGET_ARCH_X64