blob: d5b7e7768c2b5eed349b55fc4b4651eac0bd95af [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 -------------
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000127 // -- rax : key
128 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000129 // -----------------------------------
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000130 Generate_DebugBreakCallHelper(masm, rax.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000131}
132
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000133
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000134void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000135 // Register state for keyed IC load call (from ic-x64.cc).
136 // ----------- S t a t e -------------
137 // -- rax : value
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000138 // -- rcx : key
139 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000140 // -----------------------------------
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000141 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000142}
143
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000144
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000145void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000146 // Register state for IC load call (from ic-x64.cc).
147 // ----------- S t a t e -------------
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +0000148 // -- rax : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000149 // -- rcx : name
150 // -----------------------------------
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +0000151 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000152}
153
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000154
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000155void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000156 // Register state just before return from JS function (from codegen-x64.cc).
157 // ----------- S t a t e -------------
158 // -- rax: return value
159 // -----------------------------------
160 Generate_DebugBreakCallHelper(masm, rax.bit(), true);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000161}
162
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000163
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000164void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000165 // Register state for IC store call (from ic-x64.cc).
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000166 // ----------- S t a t e -------------
167 // -- rax : value
168 // -- rcx : name
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000169 // -- rdx : receiver
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000170 // -----------------------------------
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000171 Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit() | rdx.bit(), false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000172}
173
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000174
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000175void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000176 // Register state for stub CallFunction (from CallFunctionStub in ic-x64.cc).
177 // ----------- S t a t e -------------
178 // No registers used on entry.
179 // -----------------------------------
180 Generate_DebugBreakCallHelper(masm, 0, false);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000181}
182
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000183
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000184void Debug::GenerateSlot(MacroAssembler* masm) {
185 // Generate enough nop's to make space for a call instruction.
186 Label check_codesize;
187 __ bind(&check_codesize);
188 __ RecordDebugBreakSlot();
189 for (int i = 0; i < Assembler::kDebugBreakSlotLength; i++) {
190 __ nop();
191 }
192 ASSERT_EQ(Assembler::kDebugBreakSlotLength,
193 masm->SizeOfCodeGeneratedSince(&check_codesize));
194}
195
196
197void Debug::GenerateSlotDebugBreak(MacroAssembler* masm) {
198 // In the places where a debug break slot is inserted no registers can contain
199 // object pointers.
200 Generate_DebugBreakCallHelper(masm, 0, true);
201}
202
203
ager@chromium.org357bf652010-04-12 11:30:10 +0000204void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000205 masm->ret(0);
ager@chromium.org357bf652010-04-12 11:30:10 +0000206}
207
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000208
ager@chromium.org357bf652010-04-12 11:30:10 +0000209void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000210 ExternalReference restarter_frame_function_slot =
211 ExternalReference(Debug_Address::RestarterFrameFunctionPointer());
212 __ movq(rax, restarter_frame_function_slot);
213 __ movq(Operand(rax, 0), Immediate(0));
214
215 // We do not know our frame height, but set rsp based on rbp.
216 __ lea(rsp, Operand(rbp, -1 * kPointerSize));
217
218 __ pop(rdi); // Function.
219 __ pop(rbp);
220
221 // Load context from the function.
222 __ movq(rsi, FieldOperand(rdi, JSFunction::kContextOffset));
223
224 // Get function code.
225 __ movq(rdx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset));
226 __ movq(rdx, FieldOperand(rdx, SharedFunctionInfo::kCodeOffset));
227 __ lea(rdx, FieldOperand(rdx, Code::kHeaderSize));
228
229 // Re-run JSFunction, rdi is function, rsi is context.
230 __ jmp(rdx);
ager@chromium.org357bf652010-04-12 11:30:10 +0000231}
232
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000233const bool Debug::kFrameDropperSupported = true;
234
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000235#undef __
236
237
ager@chromium.org357bf652010-04-12 11:30:10 +0000238
239
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000240void BreakLocationIterator::ClearDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000241 rinfo()->PatchCode(original_rinfo()->pc(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000242 Assembler::kJSReturnSequenceLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000243}
244
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000245
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000246bool BreakLocationIterator::IsDebugBreakAtReturn() {
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000247 return Debug::IsDebugBreakAtReturn(rinfo());
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000248}
249
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000250
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000251void BreakLocationIterator::SetDebugBreakAtReturn() {
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000252 ASSERT(Assembler::kJSReturnSequenceLength >=
253 Assembler::kCallInstructionLength);
ager@chromium.orga1645e22009-09-09 19:27:10 +0000254 rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(),
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000255 Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000256}
257
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000258
259bool BreakLocationIterator::IsDebugBreakAtSlot() {
260 ASSERT(IsDebugBreakSlot());
261 // Check whether the debug break slot instructions have been patched.
262 return !Assembler::IsNop(rinfo()->pc());
263}
264
265
266void BreakLocationIterator::SetDebugBreakAtSlot() {
267 ASSERT(IsDebugBreakSlot());
268 rinfo()->PatchCodeWithCall(
269 Debug::debug_break_slot()->entry(),
270 Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
271}
272
273
274void BreakLocationIterator::ClearDebugBreakAtSlot() {
275 ASSERT(IsDebugBreakSlot());
276 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
277}
278
279
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000280#endif // ENABLE_DEBUGGER_SUPPORT
281
282} } // namespace v8::internal
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000283
284#endif // V8_TARGET_ARCH_X64