blob: c9100576d2f61813654edfb34f3b91f0d50c42c7 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
Ben Murdochb8a8cc12014-11-26 15:28:44 +00005#include "src/v8.h"
Steve Blocka7e24c12009-10-30 11:49:00 +00006
Ben Murdochb8a8cc12014-11-26 15:28:44 +00007#if V8_TARGET_ARCH_ARM
Leon Clarkef7060e22010-06-03 12:02:55 +01008
Ben Murdochb8a8cc12014-11-26 15:28:44 +00009#include "src/codegen.h"
10#include "src/debug.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000011
12namespace v8 {
13namespace internal {
14
Steve Blocka7e24c12009-10-30 11:49:00 +000015bool BreakLocationIterator::IsDebugBreakAtReturn() {
16 return Debug::IsDebugBreakAtReturn(rinfo());
17}
18
19
20void BreakLocationIterator::SetDebugBreakAtReturn() {
21 // Patch the code changing the return from JS function sequence from
22 // mov sp, fp
23 // ldmia sp!, {fp, lr}
24 // add sp, sp, #4
25 // bx lr
26 // to a call to the debug break return code.
Steve Block6ded16b2010-05-10 14:33:55 +010027 // ldr ip, [pc, #0]
28 // blx ip
Steve Blocka7e24c12009-10-30 11:49:00 +000029 // <debug break return code entry point address>
Ben Murdochb8a8cc12014-11-26 15:28:44 +000030 // bkpt 0
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010031 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
Steve Block6ded16b2010-05-10 14:33:55 +010032 patcher.masm()->ldr(v8::internal::ip, MemOperand(v8::internal::pc, 0));
33 patcher.masm()->blx(v8::internal::ip);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000034 patcher.Emit(
35 debug_info_->GetIsolate()->builtins()->Return_DebugBreak()->entry());
Steve Blocka7e24c12009-10-30 11:49:00 +000036 patcher.masm()->bkpt(0);
37}
38
39
40// Restore the JS frame exit code.
41void BreakLocationIterator::ClearDebugBreakAtReturn() {
42 rinfo()->PatchCode(original_rinfo()->pc(),
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010043 Assembler::kJSReturnSequenceInstructions);
Steve Blocka7e24c12009-10-30 11:49:00 +000044}
45
46
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010047// A debug break in the frame exit code is identified by the JS frame exit code
48// having been patched with a call instruction.
Steve Blocka7e24c12009-10-30 11:49:00 +000049bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000050 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
Steve Block3ce2e202009-11-05 08:53:23 +000051 return rinfo->IsPatchedReturnSequence();
Steve Blocka7e24c12009-10-30 11:49:00 +000052}
53
54
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010055bool BreakLocationIterator::IsDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000056 DCHECK(IsDebugBreakSlot());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010057 // Check whether the debug break slot instructions have been patched.
58 return rinfo()->IsPatchedDebugBreakSlotSequence();
59}
60
61
62void BreakLocationIterator::SetDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000063 DCHECK(IsDebugBreakSlot());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010064 // Patch the code changing the debug break slot code from
65 // mov r2, r2
66 // mov r2, r2
67 // mov r2, r2
68 // to a call to the debug break slot code.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010069 // ldr ip, [pc, #0]
70 // blx ip
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010071 // <debug break slot code entry point address>
72 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010073 patcher.masm()->ldr(v8::internal::ip, MemOperand(v8::internal::pc, 0));
74 patcher.masm()->blx(v8::internal::ip);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000075 patcher.Emit(
76 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010077}
78
79
80void BreakLocationIterator::ClearDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000081 DCHECK(IsDebugBreakSlot());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010082 rinfo()->PatchCode(original_rinfo()->pc(),
83 Assembler::kDebugBreakSlotInstructions);
84}
85
86
Steve Blocka7e24c12009-10-30 11:49:00 +000087#define __ ACCESS_MASM(masm)
88
89
90static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
Kristian Monsen80d68ea2010-09-08 11:05:35 +010091 RegList object_regs,
92 RegList non_object_regs) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +010093 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000094 FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL);
95
96 // Load padding words on stack.
97 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue)));
98 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
99 __ push(ip);
100 }
101 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
102 __ push(ip);
Steve Blocka7e24c12009-10-30 11:49:00 +0000103
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100104 // Store the registers containing live values on the expression stack to
105 // make sure that these are correctly updated during GC. Non object values
106 // are stored as a smi causing it to be untouched by GC.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000107 DCHECK((object_regs & ~kJSCallerSaved) == 0);
108 DCHECK((non_object_regs & ~kJSCallerSaved) == 0);
109 DCHECK((object_regs & non_object_regs) == 0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100110 if ((object_regs | non_object_regs) != 0) {
111 for (int i = 0; i < kNumJSCallerSaved; i++) {
112 int r = JSCallerSavedCode(i);
113 Register reg = { r };
114 if ((non_object_regs & (1 << r)) != 0) {
115 if (FLAG_debug_code) {
116 __ tst(reg, Operand(0xc0000000));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000117 __ Assert(eq, kUnableToEncodeValueAsSmi);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100118 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000119 __ SmiTag(reg);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100120 }
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100121 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100122 __ stm(db_w, sp, object_regs | non_object_regs);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100123 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000124
125#ifdef DEBUG
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100126 __ RecordComment("// Calling from debug break to runtime - come in - over");
Steve Blocka7e24c12009-10-30 11:49:00 +0000127#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000128 __ mov(r0, Operand::Zero()); // no arguments
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100129 __ mov(r1, Operand(ExternalReference::debug_break(masm->isolate())));
Steve Blocka7e24c12009-10-30 11:49:00 +0000130
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000131 CEntryStub ceb(masm->isolate(), 1);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100132 __ CallStub(&ceb);
Steve Blocka7e24c12009-10-30 11:49:00 +0000133
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100134 // Restore the register values from the expression stack.
135 if ((object_regs | non_object_regs) != 0) {
136 __ ldm(ia_w, sp, object_regs | non_object_regs);
137 for (int i = 0; i < kNumJSCallerSaved; i++) {
138 int r = JSCallerSavedCode(i);
139 Register reg = { r };
140 if ((non_object_regs & (1 << r)) != 0) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000141 __ SmiUntag(reg);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100142 }
143 if (FLAG_debug_code &&
144 (((object_regs |non_object_regs) & (1 << r)) == 0)) {
145 __ mov(reg, Operand(kDebugZapValue));
146 }
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100147 }
148 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000149
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000150 // Don't bother removing padding bytes pushed on the stack
151 // as the frame is going to be restored right away.
152
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100153 // Leave the internal frame.
154 }
Ben Murdoch85b71792012-04-11 18:30:58 +0100155
Steve Blocka7e24c12009-10-30 11:49:00 +0000156 // Now that the break point has been handled, resume normal execution by
157 // jumping to the target address intended by the caller and that was
158 // overwritten by the address of DebugBreakXXX.
Steve Block44f0eee2011-05-26 01:26:41 +0100159 ExternalReference after_break_target =
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000160 ExternalReference::debug_after_break_target_address(masm->isolate());
Steve Block44f0eee2011-05-26 01:26:41 +0100161 __ mov(ip, Operand(after_break_target));
Steve Blocka7e24c12009-10-30 11:49:00 +0000162 __ ldr(ip, MemOperand(ip));
163 __ Jump(ip);
164}
165
166
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000167void DebugCodegen::GenerateCallICStubDebugBreak(MacroAssembler* masm) {
168 // Register state for CallICStub
Steve Blocka7e24c12009-10-30 11:49:00 +0000169 // ----------- S t a t e -------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000170 // -- r1 : function
171 // -- r3 : slot in feedback array (smi)
Steve Blocka7e24c12009-10-30 11:49:00 +0000172 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000173 Generate_DebugBreakCallHelper(masm, r1.bit() | r3.bit(), 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000174}
175
176
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000177void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) {
178 // Calling convention for IC load (from ic-arm.cc).
179 Register receiver = LoadDescriptor::ReceiverRegister();
180 Register name = LoadDescriptor::NameRegister();
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400181 RegList regs = receiver.bit() | name.bit();
182 if (FLAG_vector_ics) {
183 regs |= VectorLoadICTrampolineDescriptor::SlotRegister().bit();
184 }
185 Generate_DebugBreakCallHelper(masm, regs, 0);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000186}
187
188
189void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000190 // Calling convention for IC store (from ic-arm.cc).
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000191 Register receiver = StoreDescriptor::ReceiverRegister();
192 Register name = StoreDescriptor::NameRegister();
193 Register value = StoreDescriptor::ValueRegister();
194 Generate_DebugBreakCallHelper(
195 masm, receiver.bit() | name.bit() | value.bit(), 0);
196}
197
198
199void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
200 // Calling convention for keyed IC load (from ic-arm.cc).
201 GenerateLoadICDebugBreak(masm);
202}
203
204
205void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
206 // Calling convention for IC keyed store call (from ic-arm.cc).
207 Register receiver = StoreDescriptor::ReceiverRegister();
208 Register name = StoreDescriptor::NameRegister();
209 Register value = StoreDescriptor::ValueRegister();
210 Generate_DebugBreakCallHelper(
211 masm, receiver.bit() | name.bit() | value.bit(), 0);
212}
213
214
215void DebugCodegen::GenerateCompareNilICDebugBreak(MacroAssembler* masm) {
216 // Register state for CompareNil IC
Steve Blocka7e24c12009-10-30 11:49:00 +0000217 // ----------- S t a t e -------------
Andrei Popescu402d9372010-02-26 13:31:12 +0000218 // -- r0 : value
Steve Blocka7e24c12009-10-30 11:49:00 +0000219 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000220 Generate_DebugBreakCallHelper(masm, r0.bit(), 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000221}
222
223
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000224void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000225 // In places other than IC call sites it is expected that r0 is TOS which
226 // is an object - this is not generally the case so this should be used with
227 // care.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100228 Generate_DebugBreakCallHelper(masm, r0.bit(), 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000229}
230
231
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000232void DebugCodegen::GenerateCallFunctionStubDebugBreak(MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100233 // Register state for CallFunctionStub (from code-stubs-arm.cc).
Steve Blocka7e24c12009-10-30 11:49:00 +0000234 // ----------- S t a t e -------------
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100235 // -- r1 : function
Steve Blocka7e24c12009-10-30 11:49:00 +0000236 // -----------------------------------
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100237 Generate_DebugBreakCallHelper(masm, r1.bit(), 0);
238}
239
240
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000241void DebugCodegen::GenerateCallConstructStubDebugBreak(MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100242 // Calling convention for CallConstructStub (from code-stubs-arm.cc)
243 // ----------- S t a t e -------------
244 // -- r0 : number of arguments (not smi)
245 // -- r1 : constructor function
246 // -----------------------------------
247 Generate_DebugBreakCallHelper(masm, r1.bit(), r0.bit());
248}
249
250
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000251void DebugCodegen::GenerateCallConstructStubRecordDebugBreak(
252 MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100253 // Calling convention for CallConstructStub (from code-stubs-arm.cc)
254 // ----------- S t a t e -------------
255 // -- r0 : number of arguments (not smi)
256 // -- r1 : constructor function
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000257 // -- r2 : feedback array
258 // -- r3 : feedback slot (smi)
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100259 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000260 Generate_DebugBreakCallHelper(masm, r1.bit() | r2.bit() | r3.bit(), r0.bit());
Ben Murdoch5d4cdbf2012-04-11 10:23:59 +0100261}
262
263
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000264void DebugCodegen::GenerateSlot(MacroAssembler* masm) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100265 // Generate enough nop's to make space for a call instruction. Avoid emitting
266 // the constant pool in the debug break slot code.
267 Assembler::BlockConstPoolScope block_const_pool(masm);
268 Label check_codesize;
269 __ bind(&check_codesize);
270 __ RecordDebugBreakSlot();
271 for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800272 __ nop(MacroAssembler::DEBUG_BREAK_NOP);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100273 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000274 DCHECK_EQ(Assembler::kDebugBreakSlotInstructions,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100275 masm->InstructionsGeneratedSince(&check_codesize));
276}
277
278
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000279void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100280 // In the places where a debug break slot is inserted no registers can contain
281 // object pointers.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100282 Generate_DebugBreakCallHelper(masm, 0, 0);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100283}
284
285
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000286void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
287 __ Ret();
Steve Block6ded16b2010-05-10 14:33:55 +0100288}
289
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100290
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000291void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
292 ExternalReference restarter_frame_function_slot =
293 ExternalReference::debug_restarter_frame_function_pointer_address(
294 masm->isolate());
295 __ mov(ip, Operand(restarter_frame_function_slot));
296 __ mov(r1, Operand::Zero());
297 __ str(r1, MemOperand(ip, 0));
298
299 // Load the function pointer off of our current stack frame.
300 __ ldr(r1, MemOperand(fp,
301 StandardFrameConstants::kConstantPoolOffset - kPointerSize));
302
303 // Pop return address, frame and constant pool pointer (if
304 // FLAG_enable_ool_constant_pool).
305 __ LeaveFrame(StackFrame::INTERNAL);
306
307 { ConstantPoolUnavailableScope constant_pool_unavailable(masm);
308 // Load context from the function.
309 __ ldr(cp, FieldMemOperand(r1, JSFunction::kContextOffset));
310
311 // Get function code.
312 __ ldr(ip, FieldMemOperand(r1, JSFunction::kSharedFunctionInfoOffset));
313 __ ldr(ip, FieldMemOperand(ip, SharedFunctionInfo::kCodeOffset));
314 __ add(ip, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
315
316 // Re-run JSFunction, r1 is function, cp is context.
317 __ Jump(ip);
318 }
Steve Block6ded16b2010-05-10 14:33:55 +0100319}
320
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000321
322const bool LiveEdit::kFrameDropperSupported = true;
Iain Merrick75681382010-08-19 15:07:18 +0100323
Steve Blocka7e24c12009-10-30 11:49:00 +0000324#undef __
325
Steve Blocka7e24c12009-10-30 11:49:00 +0000326} } // namespace v8::internal
Leon Clarkef7060e22010-06-03 12:02:55 +0100327
328#endif // V8_TARGET_ARCH_ARM