blob: 5b3591c81b3326aca58ccc98525f20f708e59900 [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.
Andrei Popescu31002712010-02-23 13:46:05 +00004
5
6
Ben Murdochb8a8cc12014-11-26 15:28:44 +00007#include "src/v8.h"
Andrei Popescu31002712010-02-23 13:46:05 +00008
Ben Murdochb8a8cc12014-11-26 15:28:44 +00009#if V8_TARGET_ARCH_MIPS
Leon Clarkef7060e22010-06-03 12:02:55 +010010
Ben Murdochb8a8cc12014-11-26 15:28:44 +000011#include "src/codegen.h"
12#include "src/debug.h"
Andrei Popescu31002712010-02-23 13:46:05 +000013
14namespace v8 {
15namespace internal {
16
Andrei Popescu31002712010-02-23 13:46:05 +000017bool BreakLocationIterator::IsDebugBreakAtReturn() {
Ben Murdoch257744e2011-11-30 15:57:28 +000018 return Debug::IsDebugBreakAtReturn(rinfo());
Andrei Popescu31002712010-02-23 13:46:05 +000019}
20
21
22void BreakLocationIterator::SetDebugBreakAtReturn() {
Ben Murdoch257744e2011-11-30 15:57:28 +000023 // Mips return sequence:
24 // mov sp, fp
25 // lw fp, sp(0)
26 // lw ra, sp(4)
27 // addiu sp, sp, 8
28 // addiu sp, sp, N
29 // jr ra
30 // nop (in branch delay slot)
31
32 // Make sure this constant matches the number if instrucntions we emit.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033 DCHECK(Assembler::kJSReturnSequenceInstructions == 7);
Ben Murdoch257744e2011-11-30 15:57:28 +000034 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
35 // li and Call pseudo-instructions emit two instructions each.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000036 patcher.masm()->li(v8::internal::t9, Operand(reinterpret_cast<int32_t>(
37 debug_info_->GetIsolate()->builtins()->Return_DebugBreak()->entry())));
Ben Murdoch257744e2011-11-30 15:57:28 +000038 patcher.masm()->Call(v8::internal::t9);
39 patcher.masm()->nop();
40 patcher.masm()->nop();
41 patcher.masm()->nop();
42
43 // TODO(mips): Open issue about using breakpoint instruction instead of nops.
44 // patcher.masm()->bkpt(0);
Andrei Popescu31002712010-02-23 13:46:05 +000045}
46
47
48// Restore the JS frame exit code.
49void BreakLocationIterator::ClearDebugBreakAtReturn() {
Ben Murdoch257744e2011-11-30 15:57:28 +000050 rinfo()->PatchCode(original_rinfo()->pc(),
51 Assembler::kJSReturnSequenceInstructions);
Andrei Popescu31002712010-02-23 13:46:05 +000052}
53
54
Steve Block44f0eee2011-05-26 01:26:41 +010055// A debug break in the exit code is identified by the JS frame exit code
Ben Murdoch257744e2011-11-30 15:57:28 +000056// having been patched with li/call psuedo-instrunction (liu/ori/jalr).
Andrei Popescu31002712010-02-23 13:46:05 +000057bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
Ben Murdoch257744e2011-11-30 15:57:28 +000059 return rinfo->IsPatchedReturnSequence();
Steve Block44f0eee2011-05-26 01:26:41 +010060}
61
62
63bool BreakLocationIterator::IsDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 DCHECK(IsDebugBreakSlot());
Ben Murdoch257744e2011-11-30 15:57:28 +000065 // Check whether the debug break slot instructions have been patched.
66 return rinfo()->IsPatchedDebugBreakSlotSequence();
Steve Block44f0eee2011-05-26 01:26:41 +010067}
68
69
70void BreakLocationIterator::SetDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000071 DCHECK(IsDebugBreakSlot());
Ben Murdoch257744e2011-11-30 15:57:28 +000072 // Patch the code changing the debug break slot code from:
73 // nop(DEBUG_BREAK_NOP) - nop(1) is sll(zero_reg, zero_reg, 1)
74 // nop(DEBUG_BREAK_NOP)
75 // nop(DEBUG_BREAK_NOP)
76 // nop(DEBUG_BREAK_NOP)
77 // to a call to the debug break slot code.
78 // li t9, address (lui t9 / ori t9 instruction pair)
79 // call t9 (jalr t9 / nop instruction pair)
80 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
81 patcher.masm()->li(v8::internal::t9, Operand(reinterpret_cast<int32_t>(
Ben Murdochb8a8cc12014-11-26 15:28:44 +000082 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry())));
Ben Murdoch257744e2011-11-30 15:57:28 +000083 patcher.masm()->Call(v8::internal::t9);
Steve Block44f0eee2011-05-26 01:26:41 +010084}
85
86
87void BreakLocationIterator::ClearDebugBreakAtSlot() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000088 DCHECK(IsDebugBreakSlot());
Ben Murdoch257744e2011-11-30 15:57:28 +000089 rinfo()->PatchCode(original_rinfo()->pc(),
90 Assembler::kDebugBreakSlotInstructions);
Andrei Popescu31002712010-02-23 13:46:05 +000091}
92
93
94#define __ ACCESS_MASM(masm)
95
96
Ben Murdoch257744e2011-11-30 15:57:28 +000097
98static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
99 RegList object_regs,
100 RegList non_object_regs) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100101 {
102 FrameScope scope(masm, StackFrame::INTERNAL);
Ben Murdoch257744e2011-11-30 15:57:28 +0000103
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000104 // Load padding words on stack.
105 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue)));
106 __ Subu(sp, sp,
107 Operand(kPointerSize * LiveEdit::kFramePaddingInitialSize));
108 for (int i = LiveEdit::kFramePaddingInitialSize - 1; i >= 0; i--) {
109 __ sw(at, MemOperand(sp, kPointerSize * i));
110 }
111 __ li(at, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize)));
112 __ push(at);
113
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100114 // Store the registers containing live values on the expression stack to
115 // make sure that these are correctly updated during GC. Non object values
116 // are stored as a smi causing it to be untouched by GC.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000117 DCHECK((object_regs & ~kJSCallerSaved) == 0);
118 DCHECK((non_object_regs & ~kJSCallerSaved) == 0);
119 DCHECK((object_regs & non_object_regs) == 0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100120 if ((object_regs | non_object_regs) != 0) {
121 for (int i = 0; i < kNumJSCallerSaved; i++) {
122 int r = JSCallerSavedCode(i);
123 Register reg = { r };
124 if ((non_object_regs & (1 << r)) != 0) {
125 if (FLAG_debug_code) {
126 __ And(at, reg, 0xc0000000);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000127 __ Assert(eq, kUnableToEncodeValueAsSmi, at, Operand(zero_reg));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100128 }
129 __ sll(reg, reg, kSmiTagSize);
Ben Murdoch257744e2011-11-30 15:57:28 +0000130 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000131 }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100132 __ MultiPush(object_regs | non_object_regs);
Ben Murdoch257744e2011-11-30 15:57:28 +0000133 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000134
135#ifdef DEBUG
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100136 __ RecordComment("// Calling from debug break to runtime - come in - over");
Ben Murdoch257744e2011-11-30 15:57:28 +0000137#endif
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100138 __ PrepareCEntryArgs(0); // No arguments.
139 __ PrepareCEntryFunction(ExternalReference::debug_break(masm->isolate()));
Ben Murdoch257744e2011-11-30 15:57:28 +0000140
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000141 CEntryStub ceb(masm->isolate(), 1);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100142 __ CallStub(&ceb);
Ben Murdoch257744e2011-11-30 15:57:28 +0000143
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100144 // Restore the register values from the expression stack.
145 if ((object_regs | non_object_regs) != 0) {
146 __ MultiPop(object_regs | non_object_regs);
147 for (int i = 0; i < kNumJSCallerSaved; i++) {
148 int r = JSCallerSavedCode(i);
149 Register reg = { r };
150 if ((non_object_regs & (1 << r)) != 0) {
151 __ srl(reg, reg, kSmiTagSize);
152 }
153 if (FLAG_debug_code &&
154 (((object_regs |non_object_regs) & (1 << r)) == 0)) {
155 __ li(reg, kDebugZapValue);
156 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000157 }
158 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000159
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000160 // Don't bother removing padding bytes pushed on the stack
161 // as the frame is going to be restored right away.
162
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100163 // Leave the internal frame.
164 }
Ben Murdoch85b71792012-04-11 18:30:58 +0100165
Ben Murdoch257744e2011-11-30 15:57:28 +0000166 // Now that the break point has been handled, resume normal execution by
167 // jumping to the target address intended by the caller and that was
168 // overwritten by the address of DebugBreakXXX.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000169 ExternalReference after_break_target =
170 ExternalReference::debug_after_break_target_address(masm->isolate());
171 __ li(t9, Operand(after_break_target));
Ben Murdoch257744e2011-11-30 15:57:28 +0000172 __ lw(t9, MemOperand(t9));
173 __ Jump(t9);
174}
175
176
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000177void DebugCodegen::GenerateCallICStubDebugBreak(MacroAssembler* masm) {
178 // Register state for CallICStub
Ben Murdoch257744e2011-11-30 15:57:28 +0000179 // ----------- S t a t e -------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000180 // -- a1 : function
181 // -- a3 : slot in feedback array (smi)
Ben Murdoch257744e2011-11-30 15:57:28 +0000182 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000183 Generate_DebugBreakCallHelper(masm, a1.bit() | a3.bit(), 0);
Andrei Popescu31002712010-02-23 13:46:05 +0000184}
185
186
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000187void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) {
188 Register receiver = LoadDescriptor::ReceiverRegister();
189 Register name = LoadDescriptor::NameRegister();
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400190 RegList regs = receiver.bit() | name.bit();
191 if (FLAG_vector_ics) {
192 regs |= VectorLoadICTrampolineDescriptor::SlotRegister().bit();
193 }
194 Generate_DebugBreakCallHelper(masm, regs, 0);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000195}
196
197
198void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000199 // Calling convention for IC store (from ic-mips.cc).
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000200 Register receiver = StoreDescriptor::ReceiverRegister();
201 Register name = StoreDescriptor::NameRegister();
202 Register value = StoreDescriptor::ValueRegister();
203 Generate_DebugBreakCallHelper(
204 masm, receiver.bit() | name.bit() | value.bit(), 0);
205}
206
207
208void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
209 // Calling convention for keyed IC load (from ic-mips.cc).
210 GenerateLoadICDebugBreak(masm);
211}
212
213
214void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
215 // Calling convention for IC keyed store call (from ic-mips.cc).
216 Register receiver = StoreDescriptor::ReceiverRegister();
217 Register name = StoreDescriptor::NameRegister();
218 Register value = StoreDescriptor::ValueRegister();
219 Generate_DebugBreakCallHelper(
220 masm, receiver.bit() | name.bit() | value.bit(), 0);
221}
222
223
224void DebugCodegen::GenerateCompareNilICDebugBreak(MacroAssembler* masm) {
225 // Register state for CompareNil IC
Ben Murdoch257744e2011-11-30 15:57:28 +0000226 // ----------- S t a t e -------------
227 // -- a0 : value
Ben Murdoch257744e2011-11-30 15:57:28 +0000228 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000229 Generate_DebugBreakCallHelper(masm, a0.bit(), 0);
Andrei Popescu31002712010-02-23 13:46:05 +0000230}
231
232
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000233void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000234 // In places other than IC call sites it is expected that v0 is TOS which
235 // is an object - this is not generally the case so this should be used with
236 // care.
237 Generate_DebugBreakCallHelper(masm, v0.bit(), 0);
Andrei Popescu31002712010-02-23 13:46:05 +0000238}
239
240
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000241void DebugCodegen::GenerateCallFunctionStubDebugBreak(MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100242 // Register state for CallFunctionStub (from code-stubs-mips.cc).
Ben Murdoch257744e2011-11-30 15:57:28 +0000243 // ----------- S t a t e -------------
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100244 // -- a1 : function
Ben Murdoch257744e2011-11-30 15:57:28 +0000245 // -----------------------------------
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100246 Generate_DebugBreakCallHelper(masm, a1.bit(), 0);
247}
248
249
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000250void DebugCodegen::GenerateCallConstructStubDebugBreak(MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100251 // Calling convention for CallConstructStub (from code-stubs-mips.cc).
252 // ----------- S t a t e -------------
253 // -- a0 : number of arguments (not smi)
254 // -- a1 : constructor function
255 // -----------------------------------
256 Generate_DebugBreakCallHelper(masm, a1.bit() , a0.bit());
257}
258
259
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000260void DebugCodegen::GenerateCallConstructStubRecordDebugBreak(
261 MacroAssembler* masm) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100262 // Calling convention for CallConstructStub (from code-stubs-mips.cc).
263 // ----------- S t a t e -------------
264 // -- a0 : number of arguments (not smi)
265 // -- a1 : constructor function
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000266 // -- a2 : feedback array
267 // -- a3 : feedback slot (smi)
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100268 // -----------------------------------
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000269 Generate_DebugBreakCallHelper(masm, a1.bit() | a2.bit() | a3.bit(), a0.bit());
Ben Murdoch5d4cdbf2012-04-11 10:23:59 +0100270}
271
272
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000273void DebugCodegen::GenerateSlot(MacroAssembler* masm) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000274 // Generate enough nop's to make space for a call instruction. Avoid emitting
275 // the trampoline pool in the debug break slot code.
276 Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm);
277 Label check_codesize;
278 __ bind(&check_codesize);
279 __ RecordDebugBreakSlot();
280 for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
281 __ nop(MacroAssembler::DEBUG_BREAK_NOP);
282 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000283 DCHECK_EQ(Assembler::kDebugBreakSlotInstructions,
Ben Murdoch257744e2011-11-30 15:57:28 +0000284 masm->InstructionsGeneratedSince(&check_codesize));
Steve Block6ded16b2010-05-10 14:33:55 +0100285}
286
Steve Block44f0eee2011-05-26 01:26:41 +0100287
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000288void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000289 // In the places where a debug break slot is inserted no registers can contain
290 // object pointers.
291 Generate_DebugBreakCallHelper(masm, 0, 0);
Steve Block44f0eee2011-05-26 01:26:41 +0100292}
293
294
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000295void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
296 __ Ret();
Steve Block44f0eee2011-05-26 01:26:41 +0100297}
298
299
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000300void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
301 ExternalReference restarter_frame_function_slot =
302 ExternalReference::debug_restarter_frame_function_pointer_address(
303 masm->isolate());
304 __ li(at, Operand(restarter_frame_function_slot));
305 __ sw(zero_reg, MemOperand(at, 0));
306
307 // We do not know our frame height, but set sp based on fp.
308 __ Subu(sp, fp, Operand(kPointerSize));
309
310 __ Pop(ra, fp, a1); // Return address, Frame, Function.
311
312 // Load context from the function.
313 __ lw(cp, FieldMemOperand(a1, JSFunction::kContextOffset));
314
315 // Get function code.
316 __ lw(at, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
317 __ lw(at, FieldMemOperand(at, SharedFunctionInfo::kCodeOffset));
318 __ Addu(t9, at, Operand(Code::kHeaderSize - kHeapObjectTag));
319
320 // Re-run JSFunction, a1 is function, cp is context.
321 __ Jump(t9);
Steve Block6ded16b2010-05-10 14:33:55 +0100322}
323
Iain Merrick75681382010-08-19 15:07:18 +0100324
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000325const bool LiveEdit::kFrameDropperSupported = true;
Iain Merrick75681382010-08-19 15:07:18 +0100326
Andrei Popescu31002712010-02-23 13:46:05 +0000327#undef __
328
Andrei Popescu31002712010-02-23 13:46:05 +0000329} } // namespace v8::internal
330
Leon Clarkef7060e22010-06-03 12:02:55 +0100331#endif // V8_TARGET_ARCH_MIPS