blob: 587bade70492007724df177d1577a3136c2e1668 [file] [log] [blame]
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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
28#include "v8.h"
29
30#include "api.h"
31#include "arguments.h"
32#include "bootstrapper.h"
33#include "code-stubs.h"
ager@chromium.org5c838252010-02-19 08:53:10 +000034#include "codegen.h"
kasperl@chromium.org71affb52009-05-26 05:44:31 +000035#include "compilation-cache.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036#include "compiler.h"
37#include "debug.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000038#include "deoptimizer.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039#include "execution.h"
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +000040#include "full-codegen.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041#include "global-handles.h"
ager@chromium.org65dad4b2009-04-23 08:48:43 +000042#include "ic.h"
43#include "ic-inl.h"
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000044#include "isolate-inl.h"
lrn@chromium.org34e60782011-09-15 07:25:40 +000045#include "list.h"
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000046#include "messages.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047#include "natives.h"
48#include "stub-cache.h"
kasper.lund7276f142008-07-30 08:49:36 +000049#include "log.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050
ager@chromium.org5ec48922009-05-05 07:25:34 +000051#include "../include/v8-debug.h"
52
kasperl@chromium.org71affb52009-05-26 05:44:31 +000053namespace v8 {
54namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000055
ager@chromium.org65dad4b2009-04-23 08:48:43 +000056#ifdef ENABLE_DEBUGGER_SUPPORT
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000057
58
59Debug::Debug(Isolate* isolate)
60 : has_break_points_(false),
61 script_cache_(NULL),
62 debug_info_list_(NULL),
63 disable_break_(false),
64 break_on_exception_(false),
65 break_on_uncaught_exception_(false),
66 debug_break_return_(NULL),
67 debug_break_slot_(NULL),
68 isolate_(isolate) {
69 memset(registers_, 0, sizeof(JSCallerSavedBuffer));
70}
71
72
73Debug::~Debug() {
74}
75
76
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000077static void PrintLn(v8::Local<v8::Value> value) {
78 v8::Local<v8::String> s = value->ToString();
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000079 ScopedVector<char> data(s->Length() + 1);
80 if (data.start() == NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000081 V8::FatalProcessOutOfMemory("PrintLn");
82 return;
83 }
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000084 s->WriteAscii(data.start());
85 PrintF("%s\n", data.start());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000086}
87
88
danno@chromium.org40cb8782011-05-25 07:58:50 +000089static Handle<Code> ComputeCallDebugPrepareStepIn(int argc, Code::Kind kind) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000090 Isolate* isolate = Isolate::Current();
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000091 return isolate->stub_cache()->ComputeCallDebugPrepareStepIn(argc, kind);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000092}
93
94
95static v8::Handle<v8::Context> GetDebugEventContext(Isolate* isolate) {
96 Handle<Context> context = isolate->debug()->debugger_entry()->GetContext();
97 // Isolate::context() may have been NULL when "script collected" event
98 // occured.
99 if (context.is_null()) return v8::Local<v8::Context>();
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000100 Handle<Context> native_context(context->native_context());
101 return v8::Utils::ToLocal(native_context);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000102}
103
104
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000105BreakLocationIterator::BreakLocationIterator(Handle<DebugInfo> debug_info,
106 BreakLocatorType type) {
107 debug_info_ = debug_info;
108 type_ = type;
109 reloc_iterator_ = NULL;
110 reloc_iterator_original_ = NULL;
111 Reset(); // Initialize the rest of the member variables.
112}
113
114
115BreakLocationIterator::~BreakLocationIterator() {
116 ASSERT(reloc_iterator_ != NULL);
117 ASSERT(reloc_iterator_original_ != NULL);
118 delete reloc_iterator_;
119 delete reloc_iterator_original_;
120}
121
122
123void BreakLocationIterator::Next() {
124 AssertNoAllocation nogc;
125 ASSERT(!RinfoDone());
126
127 // Iterate through reloc info for code and original code stopping at each
128 // breakable code target.
129 bool first = break_point_ == -1;
130 while (!RinfoDone()) {
131 if (!first) RinfoNext();
132 first = false;
133 if (RinfoDone()) return;
134
ager@chromium.org236ad962008-09-25 09:45:57 +0000135 // Whenever a statement position or (plain) position is passed update the
136 // current value of these.
137 if (RelocInfo::IsPosition(rmode())) {
138 if (RelocInfo::IsStatementPosition(rmode())) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000139 statement_position_ = static_cast<int>(
140 rinfo()->data() - debug_info_->shared()->start_position());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000141 }
ager@chromium.org236ad962008-09-25 09:45:57 +0000142 // Always update the position as we don't want that to be before the
143 // statement position.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000144 position_ = static_cast<int>(
145 rinfo()->data() - debug_info_->shared()->start_position());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146 ASSERT(position_ >= 0);
147 ASSERT(statement_position_ >= 0);
148 }
149
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000150 if (IsDebugBreakSlot()) {
151 // There is always a possible break point at a debug break slot.
152 break_point_++;
153 return;
154 } else if (RelocInfo::IsCodeTarget(rmode())) {
155 // Check for breakable code target. Look in the original code as setting
156 // break points can cause the code targets in the running (debugged) code
157 // to be of a different kind than in the original code.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000158 Address target = original_rinfo()->target_address();
ager@chromium.org8bb60582008-12-11 12:02:20 +0000159 Code* code = Code::GetCodeFromTargetAddress(target);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000160 if ((code->is_inline_cache_stub() &&
danno@chromium.org40cb8782011-05-25 07:58:50 +0000161 !code->is_binary_op_stub() &&
162 !code->is_unary_op_stub() &&
ricow@chromium.org9fa09672011-07-25 11:05:35 +0000163 !code->is_compare_ic_stub() &&
164 !code->is_to_boolean_ic_stub()) ||
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000165 RelocInfo::IsConstructCall(rmode())) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000166 break_point_++;
167 return;
168 }
169 if (code->kind() == Code::STUB) {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000170 if (IsDebuggerStatement()) {
171 break_point_++;
172 return;
173 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000174 if (type_ == ALL_BREAK_LOCATIONS) {
175 if (Debug::IsBreakStub(code)) {
176 break_point_++;
177 return;
178 }
179 } else {
180 ASSERT(type_ == SOURCE_BREAK_LOCATIONS);
181 if (Debug::IsSourceBreakStub(code)) {
182 break_point_++;
183 return;
184 }
185 }
186 }
187 }
188
189 // Check for break at return.
ager@chromium.org236ad962008-09-25 09:45:57 +0000190 if (RelocInfo::IsJSReturn(rmode())) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000191 // Set the positions to the end of the function.
192 if (debug_info_->shared()->HasSourceCode()) {
193 position_ = debug_info_->shared()->end_position() -
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000194 debug_info_->shared()->start_position() - 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000195 } else {
196 position_ = 0;
197 }
198 statement_position_ = position_;
199 break_point_++;
200 return;
201 }
202 }
203}
204
205
206void BreakLocationIterator::Next(int count) {
207 while (count > 0) {
208 Next();
209 count--;
210 }
211}
212
213
214// Find the break point closest to the supplied address.
215void BreakLocationIterator::FindBreakLocationFromAddress(Address pc) {
216 // Run through all break points to locate the one closest to the address.
217 int closest_break_point = 0;
218 int distance = kMaxInt;
219 while (!Done()) {
220 // Check if this break point is closer that what was previously found.
221 if (this->pc() < pc && pc - this->pc() < distance) {
222 closest_break_point = break_point();
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000223 distance = static_cast<int>(pc - this->pc());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000224 // Check whether we can't get any closer.
225 if (distance == 0) break;
226 }
227 Next();
228 }
229
230 // Move to the break point found.
231 Reset();
232 Next(closest_break_point);
233}
234
235
236// Find the break point closest to the supplied source position.
237void BreakLocationIterator::FindBreakLocationFromPosition(int position) {
238 // Run through all break points to locate the one closest to the source
239 // position.
240 int closest_break_point = 0;
241 int distance = kMaxInt;
242 while (!Done()) {
243 // Check if this break point is closer that what was previously found.
244 if (position <= statement_position() &&
245 statement_position() - position < distance) {
246 closest_break_point = break_point();
247 distance = statement_position() - position;
248 // Check whether we can't get any closer.
249 if (distance == 0) break;
250 }
251 Next();
252 }
253
254 // Move to the break point found.
255 Reset();
256 Next(closest_break_point);
257}
258
259
260void BreakLocationIterator::Reset() {
261 // Create relocation iterators for the two code objects.
262 if (reloc_iterator_ != NULL) delete reloc_iterator_;
263 if (reloc_iterator_original_ != NULL) delete reloc_iterator_original_;
mvstanton@chromium.orge4ac3ef2012-11-12 14:53:34 +0000264 reloc_iterator_ = new RelocIterator(
265 debug_info_->code(),
266 ~RelocInfo::ModeMask(RelocInfo::CODE_AGE_SEQUENCE));
267 reloc_iterator_original_ = new RelocIterator(
268 debug_info_->original_code(),
269 ~RelocInfo::ModeMask(RelocInfo::CODE_AGE_SEQUENCE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000270
271 // Position at the first break point.
272 break_point_ = -1;
273 position_ = 1;
274 statement_position_ = 1;
275 Next();
276}
277
278
279bool BreakLocationIterator::Done() const {
280 return RinfoDone();
281}
282
283
284void BreakLocationIterator::SetBreakPoint(Handle<Object> break_point_object) {
285 // If there is not already a real break point here patch code with debug
286 // break.
287 if (!HasBreakPoint()) {
288 SetDebugBreak();
289 }
ager@chromium.orga1645e22009-09-09 19:27:10 +0000290 ASSERT(IsDebugBreak() || IsDebuggerStatement());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291 // Set the break point information.
292 DebugInfo::SetBreakPoint(debug_info_, code_position(),
293 position(), statement_position(),
294 break_point_object);
295}
296
297
298void BreakLocationIterator::ClearBreakPoint(Handle<Object> break_point_object) {
299 // Clear the break point information.
300 DebugInfo::ClearBreakPoint(debug_info_, code_position(), break_point_object);
301 // If there are no more break points here remove the debug break.
302 if (!HasBreakPoint()) {
303 ClearDebugBreak();
304 ASSERT(!IsDebugBreak());
305 }
306}
307
308
309void BreakLocationIterator::SetOneShot() {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000310 // Debugger statement always calls debugger. No need to modify it.
311 if (IsDebuggerStatement()) {
312 return;
313 }
314
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000315 // If there is a real break point here no more to do.
316 if (HasBreakPoint()) {
317 ASSERT(IsDebugBreak());
318 return;
319 }
320
321 // Patch code with debug break.
322 SetDebugBreak();
323}
324
325
326void BreakLocationIterator::ClearOneShot() {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000327 // Debugger statement always calls debugger. No need to modify it.
328 if (IsDebuggerStatement()) {
329 return;
330 }
331
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000332 // If there is a real break point here no more to do.
333 if (HasBreakPoint()) {
334 ASSERT(IsDebugBreak());
335 return;
336 }
337
338 // Patch code removing debug break.
339 ClearDebugBreak();
340 ASSERT(!IsDebugBreak());
341}
342
343
344void BreakLocationIterator::SetDebugBreak() {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000345 // Debugger statement always calls debugger. No need to modify it.
346 if (IsDebuggerStatement()) {
347 return;
348 }
349
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000350 // If there is already a break point here just return. This might happen if
v8.team.kasperl727e9952008-09-02 14:56:44 +0000351 // the same code is flooded with break points twice. Flooding the same
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000352 // function twice might happen when stepping in a function with an exception
353 // handler as the handler and the function is the same.
354 if (IsDebugBreak()) {
355 return;
356 }
357
ager@chromium.org236ad962008-09-25 09:45:57 +0000358 if (RelocInfo::IsJSReturn(rmode())) {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000359 // Patch the frame exit code with a break point.
360 SetDebugBreakAtReturn();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000361 } else if (IsDebugBreakSlot()) {
362 // Patch the code in the break slot.
363 SetDebugBreakAtSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000364 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000365 // Patch the IC call.
366 SetDebugBreakAtIC();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000367 }
368 ASSERT(IsDebugBreak());
369}
370
371
372void BreakLocationIterator::ClearDebugBreak() {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000373 // Debugger statement always calls debugger. No need to modify it.
374 if (IsDebuggerStatement()) {
375 return;
376 }
377
ager@chromium.org236ad962008-09-25 09:45:57 +0000378 if (RelocInfo::IsJSReturn(rmode())) {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000379 // Restore the frame exit code.
380 ClearDebugBreakAtReturn();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000381 } else if (IsDebugBreakSlot()) {
382 // Restore the code in the break slot.
383 ClearDebugBreakAtSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000384 } else {
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000385 // Patch the IC call.
386 ClearDebugBreakAtIC();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000387 }
388 ASSERT(!IsDebugBreak());
389}
390
391
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000392void BreakLocationIterator::PrepareStepIn(Isolate* isolate) {
393 HandleScope scope(isolate);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000394
ager@chromium.orga1645e22009-09-09 19:27:10 +0000395 // Step in can only be prepared if currently positioned on an IC call,
396 // construct call or CallFunction stub call.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000397 Address target = rinfo()->target_address();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000398 Handle<Code> target_code(Code::GetCodeFromTargetAddress(target));
399 if (target_code->is_call_stub() || target_code->is_keyed_call_stub()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000400 // Step in through IC call is handled by the runtime system. Therefore make
401 // sure that the any current IC is cleared and the runtime system is
402 // called. If the executing code has a debug break at the location change
403 // the call in the original code as it is the code there that will be
404 // executed in place of the debug break call.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000405 Handle<Code> stub = ComputeCallDebugPrepareStepIn(
406 target_code->arguments_count(), target_code->kind());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000407 if (IsDebugBreak()) {
408 original_rinfo()->set_target_address(stub->entry());
409 } else {
410 rinfo()->set_target_address(stub->entry());
411 }
412 } else {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000413#ifdef DEBUG
414 // All the following stuff is needed only for assertion checks so the code
415 // is wrapped in ifdef.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000416 Handle<Code> maybe_call_function_stub = target_code;
ager@chromium.orga1645e22009-09-09 19:27:10 +0000417 if (IsDebugBreak()) {
418 Address original_target = original_rinfo()->target_address();
419 maybe_call_function_stub =
420 Handle<Code>(Code::GetCodeFromTargetAddress(original_target));
421 }
422 bool is_call_function_stub =
423 (maybe_call_function_stub->kind() == Code::STUB &&
424 maybe_call_function_stub->major_key() == CodeStub::CallFunction);
425
kasperl@chromium.orge959c182009-07-27 08:59:04 +0000426 // Step in through construct call requires no changes to the running code.
427 // Step in through getters/setters should already be prepared as well
428 // because caller of this function (Debug::PrepareStep) is expected to
429 // flood the top frame's function with one shot breakpoints.
ager@chromium.orga1645e22009-09-09 19:27:10 +0000430 // Step in through CallFunction stub should also be prepared by caller of
431 // this function (Debug::PrepareStep) which should flood target function
432 // with breakpoints.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000433 ASSERT(RelocInfo::IsConstructCall(rmode()) ||
434 target_code->is_inline_cache_stub() ||
435 is_call_function_stub);
ager@chromium.orga1645e22009-09-09 19:27:10 +0000436#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437 }
438}
439
440
441// Check whether the break point is at a position which will exit the function.
442bool BreakLocationIterator::IsExit() const {
ager@chromium.org236ad962008-09-25 09:45:57 +0000443 return (RelocInfo::IsJSReturn(rmode()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000444}
445
446
447bool BreakLocationIterator::HasBreakPoint() {
448 return debug_info_->HasBreakPoint(code_position());
449}
450
451
452// Check whether there is a debug break at the current position.
453bool BreakLocationIterator::IsDebugBreak() {
ager@chromium.org236ad962008-09-25 09:45:57 +0000454 if (RelocInfo::IsJSReturn(rmode())) {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000455 return IsDebugBreakAtReturn();
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000456 } else if (IsDebugBreakSlot()) {
457 return IsDebugBreakAtSlot();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000458 } else {
459 return Debug::IsDebugBreak(rinfo()->target_address());
460 }
461}
462
463
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000464void BreakLocationIterator::SetDebugBreakAtIC() {
465 // Patch the original code with the current address as the current address
466 // might have changed by the inline caching since the code was copied.
467 original_rinfo()->set_target_address(rinfo()->target_address());
468
469 RelocInfo::Mode mode = rmode();
470 if (RelocInfo::IsCodeTarget(mode)) {
471 Address target = rinfo()->target_address();
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000472 Handle<Code> target_code(Code::GetCodeFromTargetAddress(target));
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000473
474 // Patch the code to invoke the builtin debug break function matching the
475 // calling convention used by the call site.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000476 Handle<Code> dbgbrk_code(Debug::FindDebugBreak(target_code, mode));
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000477 rinfo()->set_target_address(dbgbrk_code->entry());
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000478 }
479}
480
481
482void BreakLocationIterator::ClearDebugBreakAtIC() {
483 // Patch the code to the original invoke.
484 rinfo()->set_target_address(original_rinfo()->target_address());
485}
486
487
ager@chromium.orga1645e22009-09-09 19:27:10 +0000488bool BreakLocationIterator::IsDebuggerStatement() {
ager@chromium.org5c838252010-02-19 08:53:10 +0000489 return RelocInfo::DEBUG_BREAK == rmode();
ager@chromium.orga1645e22009-09-09 19:27:10 +0000490}
491
492
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000493bool BreakLocationIterator::IsDebugBreakSlot() {
494 return RelocInfo::DEBUG_BREAK_SLOT == rmode();
495}
496
497
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000498Object* BreakLocationIterator::BreakPointObjects() {
499 return debug_info_->GetBreakPointObjects(code_position());
500}
501
502
ager@chromium.org381abbb2009-02-25 13:23:22 +0000503// Clear out all the debug break code. This is ONLY supposed to be used when
504// shutting down the debugger as it will leave the break point information in
505// DebugInfo even though the code is patched back to the non break point state.
506void BreakLocationIterator::ClearAllDebugBreak() {
507 while (!Done()) {
508 ClearDebugBreak();
509 Next();
510 }
511}
512
513
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000514bool BreakLocationIterator::RinfoDone() const {
515 ASSERT(reloc_iterator_->done() == reloc_iterator_original_->done());
516 return reloc_iterator_->done();
517}
518
519
520void BreakLocationIterator::RinfoNext() {
521 reloc_iterator_->next();
522 reloc_iterator_original_->next();
523#ifdef DEBUG
524 ASSERT(reloc_iterator_->done() == reloc_iterator_original_->done());
525 if (!reloc_iterator_->done()) {
526 ASSERT(rmode() == original_rmode());
527 }
528#endif
529}
530
531
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000532// Threading support.
533void Debug::ThreadInit() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000534 thread_local_.break_count_ = 0;
535 thread_local_.break_id_ = 0;
536 thread_local_.break_frame_id_ = StackFrame::NO_ID;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000537 thread_local_.last_step_action_ = StepNone;
ager@chromium.org236ad962008-09-25 09:45:57 +0000538 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000539 thread_local_.step_count_ = 0;
540 thread_local_.last_fp_ = 0;
lrn@chromium.org34e60782011-09-15 07:25:40 +0000541 thread_local_.queued_step_count_ = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000542 thread_local_.step_into_fp_ = 0;
ager@chromium.orga1645e22009-09-09 19:27:10 +0000543 thread_local_.step_out_fp_ = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000544 thread_local_.after_break_target_ = 0;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000545 // TODO(isolates): frames_are_dropped_?
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000546 thread_local_.debugger_entry_ = NULL;
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000547 thread_local_.pending_interrupts_ = 0;
ricow@chromium.org0b9f8502010-08-18 07:45:01 +0000548 thread_local_.restarter_frame_function_pointer_ = NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000549}
550
551
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552char* Debug::ArchiveDebug(char* storage) {
553 char* to = storage;
554 memcpy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal));
555 to += sizeof(ThreadLocal);
556 memcpy(to, reinterpret_cast<char*>(&registers_), sizeof(registers_));
557 ThreadInit();
558 ASSERT(to <= storage + ArchiveSpacePerThread());
559 return storage + ArchiveSpacePerThread();
560}
561
562
563char* Debug::RestoreDebug(char* storage) {
564 char* from = storage;
565 memcpy(reinterpret_cast<char*>(&thread_local_), from, sizeof(ThreadLocal));
566 from += sizeof(ThreadLocal);
567 memcpy(reinterpret_cast<char*>(&registers_), from, sizeof(registers_));
568 ASSERT(from <= storage + ArchiveSpacePerThread());
569 return storage + ArchiveSpacePerThread();
570}
571
572
573int Debug::ArchiveSpacePerThread() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000574 return sizeof(ThreadLocal) + sizeof(JSCallerSavedBuffer);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000575}
576
577
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000578// Frame structure (conforms InternalFrame structure):
579// -- code
580// -- SMI maker
581// -- function (slot is called "context")
582// -- frame base
583Object** Debug::SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
584 Handle<Code> code) {
585 ASSERT(bottom_js_frame->is_java_script());
586
587 Address fp = bottom_js_frame->fp();
588
589 // Move function pointer into "context" slot.
590 Memory::Object_at(fp + StandardFrameConstants::kContextOffset) =
591 Memory::Object_at(fp + JavaScriptFrameConstants::kFunctionOffset);
592
593 Memory::Object_at(fp + InternalFrameConstants::kCodeOffset) = *code;
594 Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset) =
595 Smi::FromInt(StackFrame::INTERNAL);
596
597 return reinterpret_cast<Object**>(&Memory::Object_at(
598 fp + StandardFrameConstants::kContextOffset));
599}
600
601const int Debug::kFrameDropperFrameSize = 4;
602
603
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000604void ScriptCache::Add(Handle<Script> script) {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000605 GlobalHandles* global_handles = Isolate::Current()->global_handles();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000606 // Create an entry in the hash map for the script.
607 int id = Smi::cast(script->id())->value();
608 HashMap::Entry* entry =
609 HashMap::Lookup(reinterpret_cast<void*>(id), Hash(id), true);
610 if (entry->value != NULL) {
611 ASSERT(*script == *reinterpret_cast<Script**>(entry->value));
612 return;
613 }
614
615 // Globalize the script object, make it weak and use the location of the
616 // global handle as the value in the hash map.
617 Handle<Script> script_ =
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000618 Handle<Script>::cast(
lrn@chromium.org7516f052011-03-30 08:52:27 +0000619 (global_handles->Create(*script)));
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000620 global_handles->MakeWeak(reinterpret_cast<Object**>(script_.location()),
621 this,
622 NULL,
623 ScriptCache::HandleWeakScript);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000624 entry->value = script_.location();
625}
626
627
628Handle<FixedArray> ScriptCache::GetScripts() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000629 Handle<FixedArray> instances = FACTORY->NewFixedArray(occupancy());
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000630 int count = 0;
631 for (HashMap::Entry* entry = Start(); entry != NULL; entry = Next(entry)) {
632 ASSERT(entry->value != NULL);
633 if (entry->value != NULL) {
634 instances->set(count, *reinterpret_cast<Script**>(entry->value));
635 count++;
636 }
637 }
638 return instances;
639}
640
641
642void ScriptCache::ProcessCollectedScripts() {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000643 Debugger* debugger = Isolate::Current()->debugger();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000644 for (int i = 0; i < collected_scripts_.length(); i++) {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000645 debugger->OnScriptCollected(collected_scripts_[i]);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000646 }
647 collected_scripts_.Clear();
648}
649
650
651void ScriptCache::Clear() {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000652 GlobalHandles* global_handles = Isolate::Current()->global_handles();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000653 // Iterate the script cache to get rid of all the weak handles.
654 for (HashMap::Entry* entry = Start(); entry != NULL; entry = Next(entry)) {
655 ASSERT(entry != NULL);
656 Object** location = reinterpret_cast<Object**>(entry->value);
657 ASSERT((*location)->IsScript());
lrn@chromium.org7516f052011-03-30 08:52:27 +0000658 global_handles->ClearWeakness(location);
659 global_handles->Destroy(location);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000660 }
661 // Clear the content of the hash map.
662 HashMap::Clear();
663}
664
665
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000666void ScriptCache::HandleWeakScript(v8::Isolate* isolate,
667 v8::Persistent<v8::Value> obj,
668 void* data) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000669 ScriptCache* script_cache = reinterpret_cast<ScriptCache*>(data);
670 // Find the location of the global handle.
671 Script** location =
672 reinterpret_cast<Script**>(Utils::OpenHandle(*obj).location());
673 ASSERT((*location)->IsScript());
674
675 // Remove the entry from the cache.
676 int id = Smi::cast((*location)->id())->value();
677 script_cache->Remove(reinterpret_cast<void*>(id), Hash(id));
678 script_cache->collected_scripts_.Add(id);
679
680 // Clear the weak handle.
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000681 obj.Dispose(isolate);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000682 obj.Clear();
683}
684
685
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000686void Debug::SetUp(bool create_heap_objects) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000687 ThreadInit();
688 if (create_heap_objects) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000689 // Get code to handle debug break on return.
690 debug_break_return_ =
lrn@chromium.org7516f052011-03-30 08:52:27 +0000691 isolate_->builtins()->builtin(Builtins::kReturn_DebugBreak);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000692 ASSERT(debug_break_return_->IsCode());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000693 // Get code to handle debug break in debug break slots.
694 debug_break_slot_ =
lrn@chromium.org7516f052011-03-30 08:52:27 +0000695 isolate_->builtins()->builtin(Builtins::kSlot_DebugBreak);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000696 ASSERT(debug_break_slot_->IsCode());
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000697 }
698}
699
700
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000701void Debug::HandleWeakDebugInfo(v8::Isolate* isolate,
702 v8::Persistent<v8::Value> obj,
703 void* data) {
704 Debug* debug = reinterpret_cast<Isolate*>(isolate)->debug();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000705 DebugInfoListNode* node = reinterpret_cast<DebugInfoListNode*>(data);
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000706 // We need to clear all breakpoints associated with the function to restore
707 // original code and avoid patching the code twice later because
708 // the function will live in the heap until next gc, and can be found by
jkummerow@chromium.org78502a92012-09-06 13:50:42 +0000709 // Debug::FindSharedFunctionInfoInScript.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000710 BreakLocationIterator it(node->debug_info(), ALL_BREAK_LOCATIONS);
711 it.ClearAllDebugBreak();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000712 debug->RemoveDebugInfo(node->debug_info());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000713#ifdef DEBUG
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000714 node = debug->debug_info_list_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000715 while (node != NULL) {
716 ASSERT(node != reinterpret_cast<DebugInfoListNode*>(data));
717 node = node->next();
718 }
719#endif
720}
721
722
723DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000724 GlobalHandles* global_handles = Isolate::Current()->global_handles();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000725 // Globalize the request debug info object and make it weak.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000726 debug_info_ = Handle<DebugInfo>::cast(
lrn@chromium.org7516f052011-03-30 08:52:27 +0000727 (global_handles->Create(debug_info)));
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000728 global_handles->MakeWeak(reinterpret_cast<Object**>(debug_info_.location()),
729 this,
730 NULL,
731 Debug::HandleWeakDebugInfo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000732}
733
734
735DebugInfoListNode::~DebugInfoListNode() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000736 Isolate::Current()->global_handles()->Destroy(
737 reinterpret_cast<Object**>(debug_info_.location()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000738}
739
740
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000741bool Debug::CompileDebuggerScript(int index) {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000742 Isolate* isolate = Isolate::Current();
743 Factory* factory = isolate->factory();
744 HandleScope scope(isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000745
kasper.lund44510672008-07-25 07:37:58 +0000746 // Bail out if the index is invalid.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000747 if (index == -1) {
748 return false;
749 }
kasper.lund44510672008-07-25 07:37:58 +0000750
751 // Find source and name for the requested script.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000752 Handle<String> source_code =
lrn@chromium.org7516f052011-03-30 08:52:27 +0000753 isolate->bootstrapper()->NativesSourceLookup(index);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000754 Vector<const char> name = Natives::GetScriptName(index);
lrn@chromium.org7516f052011-03-30 08:52:27 +0000755 Handle<String> script_name = factory->NewStringFromAscii(name);
yangguo@chromium.org355cfd12012-08-29 15:32:24 +0000756 Handle<Context> context = isolate->native_context();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000757
758 // Compile the script.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000759 Handle<SharedFunctionInfo> function_info;
760 function_info = Compiler::Compile(source_code,
761 script_name,
yangguo@chromium.org355cfd12012-08-29 15:32:24 +0000762 0, 0,
763 context,
764 NULL, NULL,
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000765 Handle<String>::null(),
766 NATIVES_CODE);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000767
768 // Silently ignore stack overflows during compilation.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000769 if (function_info.is_null()) {
lrn@chromium.org7516f052011-03-30 08:52:27 +0000770 ASSERT(isolate->has_pending_exception());
771 isolate->clear_pending_exception();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000772 return false;
773 }
774
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000775 // Execute the shared function in the debugger context.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000776 bool caught_exception;
kasper.lund44510672008-07-25 07:37:58 +0000777 Handle<JSFunction> function =
lrn@chromium.org7516f052011-03-30 08:52:27 +0000778 factory->NewFunctionFromSharedFunctionInfo(function_info, context);
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000779
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000780 Handle<Object> exception =
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000781 Execution::TryCall(function, Handle<Object>(context->global_object()),
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000782 0, NULL, &caught_exception);
kasper.lund44510672008-07-25 07:37:58 +0000783
784 // Check for caught exceptions.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000785 if (caught_exception) {
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000786 ASSERT(!isolate->has_pending_exception());
787 MessageLocation computed_location;
788 isolate->ComputeLocation(&computed_location);
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000789 Handle<Object> message = MessageHandler::MakeMessageObject(
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000790 "error_loading_debugger", &computed_location,
791 Vector<Handle<Object> >::empty(), Handle<String>(), Handle<JSArray>());
792 ASSERT(!isolate->has_pending_exception());
mmassi@chromium.org49a44672012-12-04 13:52:03 +0000793 if (!exception.is_null()) {
794 isolate->set_pending_exception(*exception);
795 MessageHandler::ReportMessage(Isolate::Current(), NULL, message);
796 isolate->clear_pending_exception();
797 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000798 return false;
799 }
800
kasper.lund44510672008-07-25 07:37:58 +0000801 // Mark this script as native and return successfully.
802 Handle<Script> script(Script::cast(function->shared()->script()));
ager@chromium.orge2902be2009-06-08 12:21:35 +0000803 script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000804 return true;
805}
806
807
808bool Debug::Load() {
809 // Return if debugger is already loaded.
kasper.lund212ac232008-07-16 07:07:30 +0000810 if (IsLoaded()) return true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000811
lrn@chromium.org7516f052011-03-30 08:52:27 +0000812 Debugger* debugger = isolate_->debugger();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000813
kasper.lund44510672008-07-25 07:37:58 +0000814 // Bail out if we're already in the process of compiling the native
815 // JavaScript source code for the debugger.
lrn@chromium.org7516f052011-03-30 08:52:27 +0000816 if (debugger->compiling_natives() ||
817 debugger->is_loading_debugger())
mads.s.agercbaa0602008-08-14 13:41:48 +0000818 return false;
lrn@chromium.org7516f052011-03-30 08:52:27 +0000819 debugger->set_loading_debugger(true);
kasper.lund44510672008-07-25 07:37:58 +0000820
821 // Disable breakpoints and interrupts while compiling and running the
822 // debugger scripts including the context creation code.
823 DisableBreak disable(true);
lrn@chromium.org7516f052011-03-30 08:52:27 +0000824 PostponeInterruptsScope postpone(isolate_);
kasper.lund44510672008-07-25 07:37:58 +0000825
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000826 // Create the debugger context.
lrn@chromium.org7516f052011-03-30 08:52:27 +0000827 HandleScope scope(isolate_);
kasper.lund44510672008-07-25 07:37:58 +0000828 Handle<Context> context =
lrn@chromium.org7516f052011-03-30 08:52:27 +0000829 isolate_->bootstrapper()->CreateEnvironment(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000830 Handle<Object>::null(),
831 v8::Handle<ObjectTemplate>(),
832 NULL);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000833
fschneider@chromium.org7d10be52012-04-10 12:30:14 +0000834 // Fail if no context could be created.
835 if (context.is_null()) return false;
836
kasper.lund44510672008-07-25 07:37:58 +0000837 // Use the debugger context.
lrn@chromium.org7516f052011-03-30 08:52:27 +0000838 SaveContext save(isolate_);
839 isolate_->set_context(*context);
kasper.lund44510672008-07-25 07:37:58 +0000840
841 // Expose the builtins object in the debugger context.
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000842 Handle<String> key = isolate_->factory()->LookupOneByteSymbol(
843 STATIC_ASCII_VECTOR("builtins"));
yangguo@chromium.org46839fb2012-08-28 09:06:19 +0000844 Handle<GlobalObject> global = Handle<GlobalObject>(context->global_object());
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000845 RETURN_IF_EMPTY_HANDLE_VALUE(
lrn@chromium.org7516f052011-03-30 08:52:27 +0000846 isolate_,
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000847 JSReceiver::SetProperty(global, key, Handle<Object>(global->builtins()),
848 NONE, kNonStrictMode),
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000849 false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000850
851 // Compile the JavaScript for the debugger in the debugger context.
lrn@chromium.org7516f052011-03-30 08:52:27 +0000852 debugger->set_compiling_natives(true);
kasper.lund44510672008-07-25 07:37:58 +0000853 bool caught_exception =
854 !CompileDebuggerScript(Natives::GetIndex("mirror")) ||
855 !CompileDebuggerScript(Natives::GetIndex("debug"));
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000856
857 if (FLAG_enable_liveedit) {
858 caught_exception = caught_exception ||
859 !CompileDebuggerScript(Natives::GetIndex("liveedit"));
860 }
861
lrn@chromium.org7516f052011-03-30 08:52:27 +0000862 debugger->set_compiling_natives(false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000863
mads.s.agercbaa0602008-08-14 13:41:48 +0000864 // Make sure we mark the debugger as not loading before we might
865 // return.
lrn@chromium.org7516f052011-03-30 08:52:27 +0000866 debugger->set_loading_debugger(false);
mads.s.agercbaa0602008-08-14 13:41:48 +0000867
kasper.lund44510672008-07-25 07:37:58 +0000868 // Check for caught exceptions.
869 if (caught_exception) return false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000870
871 // Debugger loaded.
whesse@chromium.org023421e2010-12-21 12:19:12 +0000872 debug_context_ = context;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000873
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000874 return true;
875}
876
877
878void Debug::Unload() {
879 // Return debugger is not loaded.
880 if (!IsLoaded()) {
881 return;
882 }
883
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000884 // Clear the script cache.
885 DestroyScriptCache();
886
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000887 // Clear debugger context global handle.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000888 Isolate::Current()->global_handles()->Destroy(
889 reinterpret_cast<Object**>(debug_context_.location()));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000890 debug_context_ = Handle<Context>();
891}
892
893
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000894// Set the flag indicating that preemption happened during debugging.
895void Debug::PreemptionWhileInDebugger() {
896 ASSERT(InDebugger());
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000897 Debug::set_interrupts_pending(PREEMPT);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000898}
899
900
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000901void Debug::Iterate(ObjectVisitor* v) {
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000902 v->VisitPointer(BitCast<Object**>(&(debug_break_return_)));
903 v->VisitPointer(BitCast<Object**>(&(debug_break_slot_)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000904}
905
906
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000907Object* Debug::Break(Arguments args) {
908 Heap* heap = isolate_->heap();
909 HandleScope scope(isolate_);
mads.s.ager31e71382008-08-13 09:32:07 +0000910 ASSERT(args.length() == 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000911
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000912 thread_local_.frame_drop_mode_ = FRAMES_UNTOUCHED;
ager@chromium.org357bf652010-04-12 11:30:10 +0000913
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000914 // Get the top-most JavaScript frame.
vegorov@chromium.org74f333b2011-04-06 11:17:46 +0000915 JavaScriptFrameIterator it(isolate_);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000916 JavaScriptFrame* frame = it.frame();
917
918 // Just continue if breaks are disabled or debugger cannot be loaded.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000919 if (disable_break() || !Load()) {
920 SetAfterBreakTarget(frame);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000921 return heap->undefined_value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000922 }
923
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000924 // Enter the debugger.
925 EnterDebugger debugger;
926 if (debugger.FailedToEnter()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000927 return heap->undefined_value();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000928 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000929
kasper.lund44510672008-07-25 07:37:58 +0000930 // Postpone interrupt during breakpoint processing.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000931 PostponeInterruptsScope postpone(isolate_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000932
933 // Get the debug info (create it if it does not exist).
934 Handle<SharedFunctionInfo> shared =
935 Handle<SharedFunctionInfo>(JSFunction::cast(frame->function())->shared());
936 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
937
938 // Find the break point where execution has stopped.
939 BreakLocationIterator break_location_iterator(debug_info,
940 ALL_BREAK_LOCATIONS);
941 break_location_iterator.FindBreakLocationFromAddress(frame->pc());
942
943 // Check whether step next reached a new statement.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000944 if (!StepNextContinue(&break_location_iterator, frame)) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000945 // Decrease steps left if performing multiple steps.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000946 if (thread_local_.step_count_ > 0) {
947 thread_local_.step_count_--;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000948 }
949 }
950
951 // If there is one or more real break points check whether any of these are
952 // triggered.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000953 Handle<Object> break_points_hit(heap->undefined_value());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000954 if (break_location_iterator.HasBreakPoint()) {
955 Handle<Object> break_point_objects =
956 Handle<Object>(break_location_iterator.BreakPointObjects());
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000957 break_points_hit = CheckBreakPoints(break_point_objects);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000958 }
959
ager@chromium.orga1645e22009-09-09 19:27:10 +0000960 // If step out is active skip everything until the frame where we need to step
961 // out to is reached, unless real breakpoint is hit.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000962 if (StepOutActive() && frame->fp() != step_out_fp() &&
ager@chromium.orga1645e22009-09-09 19:27:10 +0000963 break_points_hit->IsUndefined() ) {
964 // Step count should always be 0 for StepOut.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000965 ASSERT(thread_local_.step_count_ == 0);
ager@chromium.orga1645e22009-09-09 19:27:10 +0000966 } else if (!break_points_hit->IsUndefined() ||
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000967 (thread_local_.last_step_action_ != StepNone &&
968 thread_local_.step_count_ == 0)) {
ager@chromium.orga1645e22009-09-09 19:27:10 +0000969 // Notify debugger if a real break point is triggered or if performing
970 // single stepping with no more steps to perform. Otherwise do another step.
971
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000972 // Clear all current stepping setup.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000973 ClearStepping();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000974
lrn@chromium.org34e60782011-09-15 07:25:40 +0000975 if (thread_local_.queued_step_count_ > 0) {
976 // Perform queued steps
977 int step_count = thread_local_.queued_step_count_;
978
979 // Clear queue
980 thread_local_.queued_step_count_ = 0;
981
982 PrepareStep(StepNext, step_count);
983 } else {
984 // Notify the debug event listeners.
985 isolate_->debugger()->OnDebugBreak(break_points_hit, false);
986 }
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000987 } else if (thread_local_.last_step_action_ != StepNone) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000988 // Hold on to last step action as it is cleared by the call to
989 // ClearStepping.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000990 StepAction step_action = thread_local_.last_step_action_;
991 int step_count = thread_local_.step_count_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000992
lrn@chromium.org34e60782011-09-15 07:25:40 +0000993 // If StepNext goes deeper in code, StepOut until original frame
994 // and keep step count queued up in the meantime.
995 if (step_action == StepNext && frame->fp() < thread_local_.last_fp_) {
996 // Count frames until target frame
997 int count = 0;
998 JavaScriptFrameIterator it(isolate_);
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000999 while (!it.done() && it.frame()->fp() < thread_local_.last_fp_) {
lrn@chromium.org34e60782011-09-15 07:25:40 +00001000 count++;
1001 it.Advance();
1002 }
1003
danno@chromium.org81cac2b2012-07-10 11:28:27 +00001004 // Check that we indeed found the frame we are looking for.
1005 CHECK(!it.done() && (it.frame()->fp() == thread_local_.last_fp_));
1006 if (step_count > 1) {
1007 // Save old count and action to continue stepping after StepOut.
1008 thread_local_.queued_step_count_ = step_count - 1;
jkummerow@chromium.org212d9642012-05-11 15:02:09 +00001009 }
1010
danno@chromium.org81cac2b2012-07-10 11:28:27 +00001011 // Set up for StepOut to reach target frame.
1012 step_action = StepOut;
1013 step_count = count;
lrn@chromium.org34e60782011-09-15 07:25:40 +00001014 }
1015
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001016 // Clear all current stepping setup.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001017 ClearStepping();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001018
1019 // Set up for the remaining steps.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001020 PrepareStep(step_action, step_count);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001021 }
1022
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001023 if (thread_local_.frame_drop_mode_ == FRAMES_UNTOUCHED) {
1024 SetAfterBreakTarget(frame);
1025 } else if (thread_local_.frame_drop_mode_ ==
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001026 FRAME_DROPPED_IN_IC_CALL) {
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001027 // We must have been calling IC stub. Do not go there anymore.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001028 Code* plain_return = isolate_->builtins()->builtin(
1029 Builtins::kPlainReturn_LiveEdit);
1030 thread_local_.after_break_target_ = plain_return->entry();
1031 } else if (thread_local_.frame_drop_mode_ ==
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001032 FRAME_DROPPED_IN_DEBUG_SLOT_CALL) {
1033 // Debug break slot stub does not return normally, instead it manually
1034 // cleans the stack and jumps. We should patch the jump address.
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001035 Code* plain_return = isolate_->builtins()->builtin(
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00001036 Builtins::kFrameDropper_LiveEdit);
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001037 thread_local_.after_break_target_ = plain_return->entry();
1038 } else if (thread_local_.frame_drop_mode_ ==
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001039 FRAME_DROPPED_IN_DIRECT_CALL) {
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001040 // Nothing to do, after_break_target is not used here.
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00001041 } else if (thread_local_.frame_drop_mode_ ==
1042 FRAME_DROPPED_IN_RETURN_CALL) {
1043 Code* plain_return = isolate_->builtins()->builtin(
1044 Builtins::kFrameDropper_LiveEdit);
1045 thread_local_.after_break_target_ = plain_return->entry();
ager@chromium.org357bf652010-04-12 11:30:10 +00001046 } else {
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001047 UNREACHABLE();
ager@chromium.org357bf652010-04-12 11:30:10 +00001048 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001049
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001050 return heap->undefined_value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001051}
1052
1053
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00001054RUNTIME_FUNCTION(Object*, Debug_Break) {
1055 return isolate->debug()->Break(args);
1056}
1057
1058
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001059// Check the break point objects for whether one or more are actually
1060// triggered. This function returns a JSArray with the break point objects
1061// which is triggered.
1062Handle<Object> Debug::CheckBreakPoints(Handle<Object> break_point_objects) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001063 Factory* factory = isolate_->factory();
1064
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001065 // Count the number of break points hit. If there are multiple break points
1066 // they are in a FixedArray.
1067 Handle<FixedArray> break_points_hit;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001068 int break_points_hit_count = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001069 ASSERT(!break_point_objects->IsUndefined());
1070 if (break_point_objects->IsFixedArray()) {
1071 Handle<FixedArray> array(FixedArray::cast(*break_point_objects));
lrn@chromium.org7516f052011-03-30 08:52:27 +00001072 break_points_hit = factory->NewFixedArray(array->length());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001073 for (int i = 0; i < array->length(); i++) {
1074 Handle<Object> o(array->get(i));
1075 if (CheckBreakPoint(o)) {
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001076 break_points_hit->set(break_points_hit_count++, *o);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001077 }
1078 }
1079 } else {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001080 break_points_hit = factory->NewFixedArray(1);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001081 if (CheckBreakPoint(break_point_objects)) {
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001082 break_points_hit->set(break_points_hit_count++, *break_point_objects);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001083 }
1084 }
1085
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001086 // Return undefined if no break points were triggered.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001087 if (break_points_hit_count == 0) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001088 return factory->undefined_value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001089 }
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001090 // Return break points hit as a JSArray.
lrn@chromium.org7516f052011-03-30 08:52:27 +00001091 Handle<JSArray> result = factory->NewJSArrayWithElements(break_points_hit);
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001092 result->set_length(Smi::FromInt(break_points_hit_count));
1093 return result;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001094}
1095
1096
1097// Check whether a single break point object is triggered.
1098bool Debug::CheckBreakPoint(Handle<Object> break_point_object) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001099 Factory* factory = isolate_->factory();
1100 HandleScope scope(isolate_);
ager@chromium.org381abbb2009-02-25 13:23:22 +00001101
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001102 // Ignore check if break point object is not a JSObject.
1103 if (!break_point_object->IsJSObject()) return true;
1104
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00001105 // Get the function IsBreakPointTriggered (defined in debug-debugger.js).
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001106 Handle<String> is_break_point_triggered_symbol =
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00001107 factory->LookupOneByteSymbol(
1108 STATIC_ASCII_VECTOR("IsBreakPointTriggered"));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001109 Handle<JSFunction> check_break_point =
1110 Handle<JSFunction>(JSFunction::cast(
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001111 debug_context()->global_object()->GetPropertyNoExceptionThrown(
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001112 *is_break_point_triggered_symbol)));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001113
1114 // Get the break id as an object.
lrn@chromium.org7516f052011-03-30 08:52:27 +00001115 Handle<Object> break_id = factory->NewNumberFromInt(Debug::break_id());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001116
1117 // Call HandleBreakPointx.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001118 bool caught_exception;
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001119 Handle<Object> argv[] = { break_id, break_point_object };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001120 Handle<Object> result = Execution::TryCall(check_break_point,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00001121 isolate_->js_builtins_object(),
1122 ARRAY_SIZE(argv),
1123 argv,
1124 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001125
1126 // If exception or non boolean result handle as not triggered
1127 if (caught_exception || !result->IsBoolean()) {
1128 return false;
1129 }
1130
1131 // Return whether the break point is triggered.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001132 ASSERT(!result.is_null());
1133 return (*result)->IsTrue();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001134}
1135
1136
1137// Check whether the function has debug information.
1138bool Debug::HasDebugInfo(Handle<SharedFunctionInfo> shared) {
1139 return !shared->debug_info()->IsUndefined();
1140}
1141
1142
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001143// Return the debug info for this function. EnsureDebugInfo must be called
1144// prior to ensure the debug info has been generated for shared.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001145Handle<DebugInfo> Debug::GetDebugInfo(Handle<SharedFunctionInfo> shared) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001146 ASSERT(HasDebugInfo(shared));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001147 return Handle<DebugInfo>(DebugInfo::cast(shared->debug_info()));
1148}
1149
1150
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001151void Debug::SetBreakPoint(Handle<JSFunction> function,
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001152 Handle<Object> break_point_object,
1153 int* source_position) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001154 HandleScope scope(isolate_);
ager@chromium.org381abbb2009-02-25 13:23:22 +00001155
lrn@chromium.org34e60782011-09-15 07:25:40 +00001156 PrepareForBreakPoints();
1157
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001158 // Make sure the function is compiled and has set up the debug info.
1159 Handle<SharedFunctionInfo> shared(function->shared());
1160 if (!EnsureDebugInfo(shared, function)) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001161 // Return if retrieving debug info failed.
1162 return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001163 }
1164
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001165 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001166 // Source positions starts with zero.
danno@chromium.orgbf0c8202011-12-27 10:09:42 +00001167 ASSERT(*source_position >= 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001168
1169 // Find the break point and change it.
1170 BreakLocationIterator it(debug_info, SOURCE_BREAK_LOCATIONS);
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001171 it.FindBreakLocationFromPosition(*source_position);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001172 it.SetBreakPoint(break_point_object);
1173
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001174 *source_position = it.position();
1175
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001176 // At least one active break point now.
1177 ASSERT(debug_info->GetBreakPointCount() > 0);
1178}
1179
1180
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001181bool Debug::SetBreakPointForScript(Handle<Script> script,
1182 Handle<Object> break_point_object,
1183 int* source_position) {
1184 HandleScope scope(isolate_);
1185
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00001186 PrepareForBreakPoints();
1187
1188 // Obtain shared function info for the function.
1189 Object* result = FindSharedFunctionInfoInScript(script, *source_position);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001190 if (result->IsUndefined()) return false;
1191
1192 // Make sure the function has set up the debug info.
1193 Handle<SharedFunctionInfo> shared(SharedFunctionInfo::cast(result));
1194 if (!EnsureDebugInfo(shared, Handle<JSFunction>::null())) {
1195 // Return if retrieving debug info failed.
1196 return false;
1197 }
1198
1199 // Find position within function. The script position might be before the
1200 // source position of the first function.
1201 int position;
1202 if (shared->start_position() > *source_position) {
1203 position = 0;
1204 } else {
1205 position = *source_position - shared->start_position();
1206 }
1207
1208 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
1209 // Source positions starts with zero.
1210 ASSERT(position >= 0);
1211
1212 // Find the break point and change it.
1213 BreakLocationIterator it(debug_info, SOURCE_BREAK_LOCATIONS);
1214 it.FindBreakLocationFromPosition(position);
1215 it.SetBreakPoint(break_point_object);
1216
1217 *source_position = it.position() + shared->start_position();
1218
1219 // At least one active break point now.
1220 ASSERT(debug_info->GetBreakPointCount() > 0);
1221 return true;
1222}
1223
1224
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001225void Debug::ClearBreakPoint(Handle<Object> break_point_object) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001226 HandleScope scope(isolate_);
ager@chromium.org381abbb2009-02-25 13:23:22 +00001227
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001228 DebugInfoListNode* node = debug_info_list_;
1229 while (node != NULL) {
1230 Object* result = DebugInfo::FindBreakPointInfo(node->debug_info(),
1231 break_point_object);
1232 if (!result->IsUndefined()) {
1233 // Get information in the break point.
1234 BreakPointInfo* break_point_info = BreakPointInfo::cast(result);
1235 Handle<DebugInfo> debug_info = node->debug_info();
1236 Handle<SharedFunctionInfo> shared(debug_info->shared());
1237 int source_position = break_point_info->statement_position()->value();
1238
1239 // Source positions starts with zero.
1240 ASSERT(source_position >= 0);
1241
1242 // Find the break point and clear it.
1243 BreakLocationIterator it(debug_info, SOURCE_BREAK_LOCATIONS);
1244 it.FindBreakLocationFromPosition(source_position);
1245 it.ClearBreakPoint(break_point_object);
1246
1247 // If there are no more break points left remove the debug info for this
1248 // function.
1249 if (debug_info->GetBreakPointCount() == 0) {
1250 RemoveDebugInfo(debug_info);
1251 }
1252
1253 return;
1254 }
1255 node = node->next();
1256 }
1257}
1258
1259
ager@chromium.org381abbb2009-02-25 13:23:22 +00001260void Debug::ClearAllBreakPoints() {
1261 DebugInfoListNode* node = debug_info_list_;
1262 while (node != NULL) {
1263 // Remove all debug break code.
1264 BreakLocationIterator it(node->debug_info(), ALL_BREAK_LOCATIONS);
1265 it.ClearAllDebugBreak();
1266 node = node->next();
1267 }
1268
1269 // Remove all debug info.
1270 while (debug_info_list_ != NULL) {
1271 RemoveDebugInfo(debug_info_list_->debug_info());
1272 }
1273}
1274
1275
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001276void Debug::FloodWithOneShot(Handle<JSFunction> function) {
lrn@chromium.org34e60782011-09-15 07:25:40 +00001277 PrepareForBreakPoints();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001278
1279 // Make sure the function is compiled and has set up the debug info.
1280 Handle<SharedFunctionInfo> shared(function->shared());
1281 if (!EnsureDebugInfo(shared, function)) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001282 // Return if we failed to retrieve the debug info.
1283 return;
1284 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001285
1286 // Flood the function with break points.
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001287 BreakLocationIterator it(GetDebugInfo(shared), ALL_BREAK_LOCATIONS);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001288 while (!it.Done()) {
1289 it.SetOneShot();
1290 it.Next();
1291 }
1292}
1293
1294
rossberg@chromium.org2c067b12012-03-19 11:01:52 +00001295void Debug::FloodBoundFunctionWithOneShot(Handle<JSFunction> function) {
1296 Handle<FixedArray> new_bindings(function->function_bindings());
1297 Handle<Object> bindee(new_bindings->get(JSFunction::kBoundFunctionIndex));
1298
1299 if (!bindee.is_null() && bindee->IsJSFunction() &&
1300 !JSFunction::cast(*bindee)->IsBuiltin()) {
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001301 Handle<JSFunction> bindee_function(JSFunction::cast(*bindee));
1302 Debug::FloodWithOneShot(bindee_function);
rossberg@chromium.org2c067b12012-03-19 11:01:52 +00001303 }
1304}
1305
1306
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001307void Debug::FloodHandlerWithOneShot() {
ager@chromium.org8bb60582008-12-11 12:02:20 +00001308 // Iterate through the JavaScript stack looking for handlers.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001309 StackFrame::Id id = break_frame_id();
ager@chromium.org8bb60582008-12-11 12:02:20 +00001310 if (id == StackFrame::NO_ID) {
1311 // If there is no JavaScript stack don't do anything.
1312 return;
1313 }
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00001314 for (JavaScriptFrameIterator it(isolate_, id); !it.done(); it.Advance()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001315 JavaScriptFrame* frame = it.frame();
1316 if (frame->HasHandler()) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001317 // Flood the function with the catch block with break points
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001318 JSFunction* function = JSFunction::cast(frame->function());
1319 FloodWithOneShot(Handle<JSFunction>(function));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001320 return;
1321 }
1322 }
1323}
1324
1325
1326void Debug::ChangeBreakOnException(ExceptionBreakType type, bool enable) {
1327 if (type == BreakUncaughtException) {
1328 break_on_uncaught_exception_ = enable;
1329 } else {
1330 break_on_exception_ = enable;
1331 }
1332}
1333
1334
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001335bool Debug::IsBreakOnException(ExceptionBreakType type) {
1336 if (type == BreakUncaughtException) {
1337 return break_on_uncaught_exception_;
1338 } else {
1339 return break_on_exception_;
1340 }
1341}
1342
1343
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001344void Debug::PrepareStep(StepAction step_action, int step_count) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001345 HandleScope scope(isolate_);
lrn@chromium.org34e60782011-09-15 07:25:40 +00001346
1347 PrepareForBreakPoints();
1348
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001349 ASSERT(Debug::InDebugger());
1350
1351 // Remember this step action and count.
1352 thread_local_.last_step_action_ = step_action;
ager@chromium.orga1645e22009-09-09 19:27:10 +00001353 if (step_action == StepOut) {
1354 // For step out target frame will be found on the stack so there is no need
1355 // to set step counter for it. It's expected to always be 0 for StepOut.
1356 thread_local_.step_count_ = 0;
1357 } else {
1358 thread_local_.step_count_ = step_count;
1359 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001360
1361 // Get the frame where the execution has stopped and skip the debug frame if
1362 // any. The debug frame will only be present if execution was stopped due to
1363 // hitting a break point. In other situations (e.g. unhandled exception) the
1364 // debug frame is not present.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001365 StackFrame::Id id = break_frame_id();
ager@chromium.org8bb60582008-12-11 12:02:20 +00001366 if (id == StackFrame::NO_ID) {
1367 // If there is no JavaScript stack don't do anything.
1368 return;
1369 }
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00001370 JavaScriptFrameIterator frames_it(isolate_, id);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001371 JavaScriptFrame* frame = frames_it.frame();
1372
1373 // First of all ensure there is one-shot break points in the top handler
1374 // if any.
1375 FloodHandlerWithOneShot();
1376
1377 // If the function on the top frame is unresolved perform step out. This will
1378 // be the case when calling unknown functions and having the debugger stopped
1379 // in an unhandled exception.
1380 if (!frame->function()->IsJSFunction()) {
1381 // Step out: Find the calling JavaScript frame and flood it with
1382 // breakpoints.
1383 frames_it.Advance();
1384 // Fill the function to return to with one-shot break points.
1385 JSFunction* function = JSFunction::cast(frames_it.frame()->function());
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001386 FloodWithOneShot(Handle<JSFunction>(function));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001387 return;
1388 }
1389
1390 // Get the debug info (create it if it does not exist).
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001391 Handle<JSFunction> function(JSFunction::cast(frame->function()));
1392 Handle<SharedFunctionInfo> shared(function->shared());
1393 if (!EnsureDebugInfo(shared, function)) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001394 // Return if ensuring debug info failed.
1395 return;
1396 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001397 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
1398
1399 // Find the break location where execution has stopped.
1400 BreakLocationIterator it(debug_info, ALL_BREAK_LOCATIONS);
1401 it.FindBreakLocationFromAddress(frame->pc());
1402
1403 // Compute whether or not the target is a call target.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001404 bool is_load_or_store = false;
1405 bool is_inline_cache_stub = false;
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001406 bool is_at_restarted_function = false;
ager@chromium.orga1645e22009-09-09 19:27:10 +00001407 Handle<Code> call_function_stub;
ager@chromium.orga1645e22009-09-09 19:27:10 +00001408
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001409 if (thread_local_.restarter_frame_function_pointer_ == NULL) {
1410 if (RelocInfo::IsCodeTarget(it.rinfo()->rmode())) {
1411 bool is_call_target = false;
1412 Address target = it.rinfo()->target_address();
1413 Code* code = Code::GetCodeFromTargetAddress(target);
1414 if (code->is_call_stub() || code->is_keyed_call_stub()) {
1415 is_call_target = true;
1416 }
1417 if (code->is_inline_cache_stub()) {
1418 is_inline_cache_stub = true;
1419 is_load_or_store = !is_call_target;
1420 }
1421
1422 // Check if target code is CallFunction stub.
1423 Code* maybe_call_function_stub = code;
1424 // If there is a breakpoint at this line look at the original code to
1425 // check if it is a CallFunction stub.
1426 if (it.IsDebugBreak()) {
1427 Address original_target = it.original_rinfo()->target_address();
1428 maybe_call_function_stub =
1429 Code::GetCodeFromTargetAddress(original_target);
1430 }
1431 if (maybe_call_function_stub->kind() == Code::STUB &&
1432 maybe_call_function_stub->major_key() == CodeStub::CallFunction) {
1433 // Save reference to the code as we may need it to find out arguments
1434 // count for 'step in' later.
1435 call_function_stub = Handle<Code>(maybe_call_function_stub);
1436 }
ager@chromium.orga1645e22009-09-09 19:27:10 +00001437 }
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001438 } else {
1439 is_at_restarted_function = true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001440 }
1441
v8.team.kasperl727e9952008-09-02 14:56:44 +00001442 // If this is the last break code target step out is the only possibility.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001443 if (it.IsExit() || step_action == StepOut) {
ager@chromium.orga1645e22009-09-09 19:27:10 +00001444 if (step_action == StepOut) {
1445 // Skip step_count frames starting with the current one.
1446 while (step_count-- > 0 && !frames_it.done()) {
1447 frames_it.Advance();
1448 }
1449 } else {
1450 ASSERT(it.IsExit());
1451 frames_it.Advance();
1452 }
1453 // Skip builtin functions on the stack.
1454 while (!frames_it.done() &&
1455 JSFunction::cast(frames_it.frame()->function())->IsBuiltin()) {
1456 frames_it.Advance();
1457 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001458 // Step out: If there is a JavaScript caller frame, we need to
1459 // flood it with breakpoints.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001460 if (!frames_it.done()) {
1461 // Fill the function to return to with one-shot break points.
1462 JSFunction* function = JSFunction::cast(frames_it.frame()->function());
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001463 FloodWithOneShot(Handle<JSFunction>(function));
ager@chromium.orga1645e22009-09-09 19:27:10 +00001464 // Set target frame pointer.
1465 ActivateStepOut(frames_it.frame());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001466 }
ager@chromium.orga1645e22009-09-09 19:27:10 +00001467 } else if (!(is_inline_cache_stub || RelocInfo::IsConstructCall(it.rmode()) ||
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001468 !call_function_stub.is_null() || is_at_restarted_function)
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001469 || step_action == StepNext || step_action == StepMin) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001470 // Step next or step min.
1471
1472 // Fill the current function with one-shot break points.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001473 FloodWithOneShot(function);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001474
1475 // Remember source position and frame to handle step next.
1476 thread_local_.last_statement_position_ =
1477 debug_info->code()->SourceStatementPosition(frame->pc());
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001478 thread_local_.last_fp_ = frame->UnpaddedFP();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001479 } else {
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001480 // If there's restarter frame on top of the stack, just get the pointer
1481 // to function which is going to be restarted.
1482 if (is_at_restarted_function) {
1483 Handle<JSFunction> restarted_function(
1484 JSFunction::cast(*thread_local_.restarter_frame_function_pointer_));
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001485 FloodWithOneShot(restarted_function);
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001486 } else if (!call_function_stub.is_null()) {
1487 // If it's CallFunction stub ensure target function is compiled and flood
1488 // it with one shot breakpoints.
1489
ager@chromium.orga1645e22009-09-09 19:27:10 +00001490 // Find out number of arguments from the stub minor key.
1491 // Reverse lookup required as the minor key cannot be retrieved
1492 // from the code object.
1493 Handle<Object> obj(
lrn@chromium.org7516f052011-03-30 08:52:27 +00001494 isolate_->heap()->code_stubs()->SlowReverseLookup(
1495 *call_function_stub));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001496 ASSERT(!obj.is_null());
1497 ASSERT(!(*obj)->IsUndefined());
ager@chromium.orga1645e22009-09-09 19:27:10 +00001498 ASSERT(obj->IsSmi());
1499 // Get the STUB key and extract major and minor key.
1500 uint32_t key = Smi::cast(*obj)->value();
1501 // Argc in the stub is the number of arguments passed - not the
1502 // expected arguments of the called function.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001503 int call_function_arg_count =
1504 CallFunctionStub::ExtractArgcFromMinorKey(
1505 CodeStub::MinorKeyFromKey(key));
ager@chromium.orga1645e22009-09-09 19:27:10 +00001506 ASSERT(call_function_stub->major_key() ==
1507 CodeStub::MajorKeyFromKey(key));
1508
1509 // Find target function on the expression stack.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001510 // Expression stack looks like this (top to bottom):
ager@chromium.orga1645e22009-09-09 19:27:10 +00001511 // argN
1512 // ...
1513 // arg0
1514 // Receiver
1515 // Function to call
1516 int expressions_count = frame->ComputeExpressionsCount();
1517 ASSERT(expressions_count - 2 - call_function_arg_count >= 0);
1518 Object* fun = frame->GetExpression(
1519 expressions_count - 2 - call_function_arg_count);
1520 if (fun->IsJSFunction()) {
1521 Handle<JSFunction> js_function(JSFunction::cast(fun));
rossberg@chromium.org2c067b12012-03-19 11:01:52 +00001522 if (js_function->shared()->bound()) {
1523 Debug::FloodBoundFunctionWithOneShot(js_function);
1524 } else if (!js_function->IsBuiltin()) {
1525 // Don't step into builtins.
ager@chromium.orga1645e22009-09-09 19:27:10 +00001526 // It will also compile target function if it's not compiled yet.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001527 FloodWithOneShot(js_function);
ager@chromium.orga1645e22009-09-09 19:27:10 +00001528 }
1529 }
1530 }
1531
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001532 // Fill the current function with one-shot break points even for step in on
1533 // a call target as the function called might be a native function for
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001534 // which step in will not stop. It also prepares for stepping in
1535 // getters/setters.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001536 FloodWithOneShot(function);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001537
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001538 if (is_load_or_store) {
1539 // Remember source position and frame to handle step in getter/setter. If
1540 // there is a custom getter/setter it will be handled in
1541 // Object::Get/SetPropertyWithCallback, otherwise the step action will be
1542 // propagated on the next Debug::Break.
1543 thread_local_.last_statement_position_ =
1544 debug_info->code()->SourceStatementPosition(frame->pc());
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001545 thread_local_.last_fp_ = frame->UnpaddedFP();
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001546 }
1547
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001548 // Step in or Step in min
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00001549 it.PrepareStepIn(isolate_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001550 ActivateStepIn(frame);
1551 }
1552}
1553
1554
1555// Check whether the current debug break should be reported to the debugger. It
1556// is used to have step next and step in only report break back to the debugger
1557// if on a different frame or in a different statement. In some situations
1558// there will be several break points in the same statement when the code is
v8.team.kasperl727e9952008-09-02 14:56:44 +00001559// flooded with one-shot break points. This function helps to perform several
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001560// steps before reporting break back to the debugger.
1561bool Debug::StepNextContinue(BreakLocationIterator* break_location_iterator,
1562 JavaScriptFrame* frame) {
lrn@chromium.org34e60782011-09-15 07:25:40 +00001563 // StepNext and StepOut shouldn't bring us deeper in code, so last frame
1564 // shouldn't be a parent of current frame.
1565 if (thread_local_.last_step_action_ == StepNext ||
1566 thread_local_.last_step_action_ == StepOut) {
1567 if (frame->fp() < thread_local_.last_fp_) return true;
1568 }
1569
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001570 // If the step last action was step next or step in make sure that a new
1571 // statement is hit.
1572 if (thread_local_.last_step_action_ == StepNext ||
1573 thread_local_.last_step_action_ == StepIn) {
1574 // Never continue if returning from function.
1575 if (break_location_iterator->IsExit()) return false;
1576
1577 // Continue if we are still on the same frame and in the same statement.
1578 int current_statement_position =
1579 break_location_iterator->code()->SourceStatementPosition(frame->pc());
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001580 return thread_local_.last_fp_ == frame->UnpaddedFP() &&
ager@chromium.org236ad962008-09-25 09:45:57 +00001581 thread_local_.last_statement_position_ == current_statement_position;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001582 }
1583
1584 // No step next action - don't continue.
1585 return false;
1586}
1587
1588
1589// Check whether the code object at the specified address is a debug break code
1590// object.
1591bool Debug::IsDebugBreak(Address addr) {
ager@chromium.org8bb60582008-12-11 12:02:20 +00001592 Code* code = Code::GetCodeFromTargetAddress(addr);
yangguo@chromium.org9768bf12013-01-11 14:51:07 +00001593 return code->is_debug_break();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001594}
1595
1596
1597// Check whether a code stub with the specified major key is a possible break
1598// point location when looking for source break locations.
1599bool Debug::IsSourceBreakStub(Code* code) {
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001600 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001601 return major_key == CodeStub::CallFunction;
1602}
1603
1604
1605// Check whether a code stub with the specified major key is a possible break
1606// location.
1607bool Debug::IsBreakStub(Code* code) {
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001608 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00001609 return major_key == CodeStub::CallFunction;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001610}
1611
1612
1613// Find the builtin to use for invoking the debug break
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001614Handle<Code> Debug::FindDebugBreak(Handle<Code> code, RelocInfo::Mode mode) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001615 Isolate* isolate = Isolate::Current();
1616
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001617 // Find the builtin debug break function matching the calling convention
1618 // used by the call site.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001619 if (code->is_inline_cache_stub()) {
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001620 switch (code->kind()) {
1621 case Code::CALL_IC:
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001622 case Code::KEYED_CALL_IC:
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001623 return isolate->stub_cache()->ComputeCallDebugBreak(
1624 code->arguments_count(), code->kind());
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001625
1626 case Code::LOAD_IC:
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001627 return isolate->builtins()->LoadIC_DebugBreak();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001628
1629 case Code::STORE_IC:
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001630 return isolate->builtins()->StoreIC_DebugBreak();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001631
1632 case Code::KEYED_LOAD_IC:
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001633 return isolate->builtins()->KeyedLoadIC_DebugBreak();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001634
1635 case Code::KEYED_STORE_IC:
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001636 return isolate->builtins()->KeyedStoreIC_DebugBreak();
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001637
1638 default:
1639 UNREACHABLE();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001640 }
1641 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001642 if (RelocInfo::IsConstructCall(mode)) {
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001643 if (code->has_function_cache()) {
1644 return isolate->builtins()->CallConstructStub_Recording_DebugBreak();
1645 } else {
1646 return isolate->builtins()->CallConstructStub_DebugBreak();
1647 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001648 }
1649 if (code->kind() == Code::STUB) {
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00001650 ASSERT(code->major_key() == CodeStub::CallFunction);
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001651 if (code->has_function_cache()) {
1652 return isolate->builtins()->CallFunctionStub_Recording_DebugBreak();
1653 } else {
1654 return isolate->builtins()->CallFunctionStub_DebugBreak();
1655 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001656 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001657
1658 UNREACHABLE();
1659 return Handle<Code>::null();
1660}
1661
1662
1663// Simple function for returning the source positions for active break points.
1664Handle<Object> Debug::GetSourceBreakLocations(
1665 Handle<SharedFunctionInfo> shared) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001666 Isolate* isolate = Isolate::Current();
1667 Heap* heap = isolate->heap();
1668 if (!HasDebugInfo(shared)) return Handle<Object>(heap->undefined_value());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001669 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
1670 if (debug_info->GetBreakPointCount() == 0) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00001671 return Handle<Object>(heap->undefined_value());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001672 }
1673 Handle<FixedArray> locations =
lrn@chromium.org7516f052011-03-30 08:52:27 +00001674 isolate->factory()->NewFixedArray(debug_info->GetBreakPointCount());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001675 int count = 0;
1676 for (int i = 0; i < debug_info->break_points()->length(); i++) {
1677 if (!debug_info->break_points()->get(i)->IsUndefined()) {
1678 BreakPointInfo* break_point_info =
1679 BreakPointInfo::cast(debug_info->break_points()->get(i));
1680 if (break_point_info->GetBreakPointCount() > 0) {
1681 locations->set(count++, break_point_info->statement_position());
1682 }
1683 }
1684 }
1685 return locations;
1686}
1687
1688
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001689void Debug::NewBreak(StackFrame::Id break_frame_id) {
1690 thread_local_.break_frame_id_ = break_frame_id;
1691 thread_local_.break_id_ = ++thread_local_.break_count_;
1692}
1693
1694
1695void Debug::SetBreak(StackFrame::Id break_frame_id, int break_id) {
1696 thread_local_.break_frame_id_ = break_frame_id;
1697 thread_local_.break_id_ = break_id;
1698}
1699
1700
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001701// Handle stepping into a function.
1702void Debug::HandleStepIn(Handle<JSFunction> function,
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +00001703 Handle<Object> holder,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001704 Address fp,
1705 bool is_constructor) {
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00001706 Isolate* isolate = function->GetIsolate();
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001707 // If the frame pointer is not supplied by the caller find it.
1708 if (fp == 0) {
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00001709 StackFrameIterator it(isolate);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001710 it.Advance();
1711 // For constructor functions skip another frame.
1712 if (is_constructor) {
1713 ASSERT(it.frame()->is_construct());
1714 it.Advance();
1715 }
1716 fp = it.frame()->fp();
1717 }
1718
1719 // Flood the function with one-shot break points if it is called from where
1720 // step into was requested.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001721 if (fp == step_in_fp()) {
rossberg@chromium.org2c067b12012-03-19 11:01:52 +00001722 if (function->shared()->bound()) {
1723 // Handle Function.prototype.bind
1724 Debug::FloodBoundFunctionWithOneShot(function);
1725 } else if (!function->IsBuiltin()) {
1726 // Don't allow step into functions in the native context.
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001727 if (function->shared()->code() ==
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00001728 isolate->builtins()->builtin(Builtins::kFunctionApply) ||
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001729 function->shared()->code() ==
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00001730 isolate->builtins()->builtin(Builtins::kFunctionCall)) {
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001731 // Handle function.apply and function.call separately to flood the
1732 // function to be called and not the code for Builtins::FunctionApply or
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +00001733 // Builtins::FunctionCall. The receiver of call/apply is the target
1734 // function.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00001735 if (!holder.is_null() && holder->IsJSFunction() &&
1736 !JSFunction::cast(*holder)->IsBuiltin()) {
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001737 Handle<JSFunction> js_function = Handle<JSFunction>::cast(holder);
1738 Debug::FloodWithOneShot(js_function);
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001739 }
1740 } else {
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001741 Debug::FloodWithOneShot(function);
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001742 }
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00001743 }
1744 }
1745}
1746
1747
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001748void Debug::ClearStepping() {
1749 // Clear the various stepping setup.
1750 ClearOneShot();
1751 ClearStepIn();
ager@chromium.orga1645e22009-09-09 19:27:10 +00001752 ClearStepOut();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001753 ClearStepNext();
1754
1755 // Clear multiple step counter.
1756 thread_local_.step_count_ = 0;
1757}
1758
1759// Clears all the one-shot break points that are currently set. Normally this
1760// function is called each time a break point is hit as one shot break points
1761// are used to support stepping.
1762void Debug::ClearOneShot() {
1763 // The current implementation just runs through all the breakpoints. When the
v8.team.kasperl727e9952008-09-02 14:56:44 +00001764 // last break point for a function is removed that function is automatically
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001765 // removed from the list.
1766
1767 DebugInfoListNode* node = debug_info_list_;
1768 while (node != NULL) {
1769 BreakLocationIterator it(node->debug_info(), ALL_BREAK_LOCATIONS);
1770 while (!it.Done()) {
1771 it.ClearOneShot();
1772 it.Next();
1773 }
1774 node = node->next();
1775 }
1776}
1777
1778
1779void Debug::ActivateStepIn(StackFrame* frame) {
ager@chromium.orga1645e22009-09-09 19:27:10 +00001780 ASSERT(!StepOutActive());
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001781 thread_local_.step_into_fp_ = frame->UnpaddedFP();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001782}
1783
1784
1785void Debug::ClearStepIn() {
1786 thread_local_.step_into_fp_ = 0;
1787}
1788
1789
ager@chromium.orga1645e22009-09-09 19:27:10 +00001790void Debug::ActivateStepOut(StackFrame* frame) {
1791 ASSERT(!StepInActive());
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001792 thread_local_.step_out_fp_ = frame->UnpaddedFP();
ager@chromium.orga1645e22009-09-09 19:27:10 +00001793}
1794
1795
1796void Debug::ClearStepOut() {
1797 thread_local_.step_out_fp_ = 0;
1798}
1799
1800
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001801void Debug::ClearStepNext() {
1802 thread_local_.last_step_action_ = StepNone;
ager@chromium.org236ad962008-09-25 09:45:57 +00001803 thread_local_.last_statement_position_ = RelocInfo::kNoPosition;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001804 thread_local_.last_fp_ = 0;
1805}
1806
1807
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001808// Helper function to compile full code for debugging. This code will
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001809// have debug break slots and deoptimization information. Deoptimization
1810// information is required in case that an optimized version of this
1811// function is still activated on the stack. It will also make sure that
1812// the full code is compiled with the same flags as the previous version,
1813// that is flags which can change the code generated. The current method
1814// of mapping from already compiled full code without debug break slots
1815// to full code with debug break slots depends on the generated code is
1816// otherwise exactly the same.
1817static bool CompileFullCodeForDebugging(Handle<JSFunction> function,
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001818 Handle<Code> current_code) {
1819 ASSERT(!current_code->has_debug_break_slots());
1820
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001821 CompilationInfoWithZone info(function);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001822 info.MarkCompilingForDebugging(current_code);
1823 ASSERT(!info.shared_info()->is_compiled());
1824 ASSERT(!info.isolate()->has_pending_exception());
1825
1826 // Use compile lazy which will end up compiling the full code in the
1827 // configuration configured above.
1828 bool result = Compiler::CompileLazy(&info);
1829 ASSERT(result != Isolate::Current()->has_pending_exception());
1830 info.isolate()->clear_pending_exception();
1831#if DEBUG
1832 if (result) {
mmassi@chromium.org7028c052012-06-13 11:51:58 +00001833 Handle<Code> new_code(function->shared()->code());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001834 ASSERT(new_code->has_debug_break_slots());
1835 ASSERT(current_code->is_compiled_optimizable() ==
1836 new_code->is_compiled_optimizable());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001837 }
1838#endif
1839 return result;
1840}
1841
1842
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001843static void CollectActiveFunctionsFromThread(
1844 Isolate* isolate,
1845 ThreadLocalTop* top,
1846 List<Handle<JSFunction> >* active_functions,
1847 Object* active_code_marker) {
1848 // Find all non-optimized code functions with activation frames
1849 // on the stack. This includes functions which have optimized
1850 // activations (including inlined functions) on the stack as the
1851 // non-optimized code is needed for the lazy deoptimization.
1852 for (JavaScriptFrameIterator it(isolate, top); !it.done(); it.Advance()) {
1853 JavaScriptFrame* frame = it.frame();
1854 if (frame->is_optimized()) {
1855 List<JSFunction*> functions(Compiler::kMaxInliningLevels + 1);
1856 frame->GetFunctions(&functions);
1857 for (int i = 0; i < functions.length(); i++) {
1858 JSFunction* function = functions[i];
1859 active_functions->Add(Handle<JSFunction>(function));
1860 function->shared()->code()->set_gc_metadata(active_code_marker);
1861 }
1862 } else if (frame->function()->IsJSFunction()) {
1863 JSFunction* function = JSFunction::cast(frame->function());
1864 ASSERT(frame->LookupCode()->kind() == Code::FUNCTION);
1865 active_functions->Add(Handle<JSFunction>(function));
1866 function->shared()->code()->set_gc_metadata(active_code_marker);
1867 }
1868 }
1869}
1870
1871
1872static void RedirectActivationsToRecompiledCodeOnThread(
1873 Isolate* isolate,
1874 ThreadLocalTop* top) {
1875 for (JavaScriptFrameIterator it(isolate, top); !it.done(); it.Advance()) {
1876 JavaScriptFrame* frame = it.frame();
1877
1878 if (frame->is_optimized() || !frame->function()->IsJSFunction()) continue;
1879
1880 JSFunction* function = JSFunction::cast(frame->function());
1881
1882 ASSERT(frame->LookupCode()->kind() == Code::FUNCTION);
1883
1884 Handle<Code> frame_code(frame->LookupCode());
1885 if (frame_code->has_debug_break_slots()) continue;
1886
1887 Handle<Code> new_code(function->shared()->code());
1888 if (new_code->kind() != Code::FUNCTION ||
1889 !new_code->has_debug_break_slots()) {
1890 continue;
1891 }
1892
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001893 // Iterate over the RelocInfo in the original code to compute the sum of the
1894 // constant pools sizes. (See Assembler::CheckConstPool())
1895 // Note that this is only useful for architectures using constant pools.
1896 int constpool_mask = RelocInfo::ModeMask(RelocInfo::CONST_POOL);
1897 int frame_const_pool_size = 0;
1898 for (RelocIterator it(*frame_code, constpool_mask); !it.done(); it.next()) {
1899 RelocInfo* info = it.rinfo();
1900 if (info->pc() >= frame->pc()) break;
1901 frame_const_pool_size += static_cast<int>(info->data());
1902 }
1903 intptr_t frame_offset =
1904 frame->pc() - frame_code->instruction_start() - frame_const_pool_size;
1905
1906 // Iterate over the RelocInfo for new code to find the number of bytes
1907 // generated for debug slots and constant pools.
1908 int debug_break_slot_bytes = 0;
1909 int new_code_const_pool_size = 0;
1910 int mask = RelocInfo::ModeMask(RelocInfo::DEBUG_BREAK_SLOT) |
1911 RelocInfo::ModeMask(RelocInfo::CONST_POOL);
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001912 for (RelocIterator it(*new_code, mask); !it.done(); it.next()) {
1913 // Check if the pc in the new code with debug break
1914 // slots is before this slot.
1915 RelocInfo* info = it.rinfo();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001916 intptr_t new_offset = info->pc() - new_code->instruction_start() -
1917 new_code_const_pool_size - debug_break_slot_bytes;
1918 if (new_offset >= frame_offset) {
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001919 break;
1920 }
1921
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001922 if (RelocInfo::IsDebugBreakSlot(info->rmode())) {
1923 debug_break_slot_bytes += Assembler::kDebugBreakSlotLength;
1924 } else {
1925 ASSERT(RelocInfo::IsConstPool(info->rmode()));
1926 // The size of the constant pool is encoded in the data.
1927 new_code_const_pool_size += static_cast<int>(info->data());
1928 }
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001929 }
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001930
1931 // Compute the equivalent pc in the new code.
1932 byte* new_pc = new_code->instruction_start() + frame_offset +
1933 debug_break_slot_bytes + new_code_const_pool_size;
1934
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001935 if (FLAG_trace_deopt) {
1936 PrintF("Replacing code %08" V8PRIxPTR " - %08" V8PRIxPTR " (%d) "
1937 "with %08" V8PRIxPTR " - %08" V8PRIxPTR " (%d) "
1938 "for debugging, "
1939 "changing pc from %08" V8PRIxPTR " to %08" V8PRIxPTR "\n",
1940 reinterpret_cast<intptr_t>(
1941 frame_code->instruction_start()),
1942 reinterpret_cast<intptr_t>(
1943 frame_code->instruction_start()) +
1944 frame_code->instruction_size(),
1945 frame_code->instruction_size(),
1946 reinterpret_cast<intptr_t>(new_code->instruction_start()),
1947 reinterpret_cast<intptr_t>(new_code->instruction_start()) +
1948 new_code->instruction_size(),
1949 new_code->instruction_size(),
1950 reinterpret_cast<intptr_t>(frame->pc()),
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001951 reinterpret_cast<intptr_t>(new_pc));
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001952 }
1953
1954 // Patch the return address to return into the code with
1955 // debug break slots.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001956 frame->set_pc(new_pc);
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00001957 }
1958}
1959
1960
1961class ActiveFunctionsCollector : public ThreadVisitor {
1962 public:
1963 explicit ActiveFunctionsCollector(List<Handle<JSFunction> >* active_functions,
1964 Object* active_code_marker)
1965 : active_functions_(active_functions),
1966 active_code_marker_(active_code_marker) { }
1967
1968 void VisitThread(Isolate* isolate, ThreadLocalTop* top) {
1969 CollectActiveFunctionsFromThread(isolate,
1970 top,
1971 active_functions_,
1972 active_code_marker_);
1973 }
1974
1975 private:
1976 List<Handle<JSFunction> >* active_functions_;
1977 Object* active_code_marker_;
1978};
1979
1980
1981class ActiveFunctionsRedirector : public ThreadVisitor {
1982 public:
1983 void VisitThread(Isolate* isolate, ThreadLocalTop* top) {
1984 RedirectActivationsToRecompiledCodeOnThread(isolate, top);
1985 }
1986};
1987
1988
lrn@chromium.org34e60782011-09-15 07:25:40 +00001989void Debug::PrepareForBreakPoints() {
kasperl@chromium.orga5551262010-12-07 12:49:48 +00001990 // If preparing for the first break point make sure to deoptimize all
1991 // functions as debugging does not work with optimized code.
1992 if (!has_break_points_) {
1993 Deoptimizer::DeoptimizeAll();
lrn@chromium.org34e60782011-09-15 07:25:40 +00001994
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001995 Handle<Code> lazy_compile =
1996 Handle<Code>(isolate_->builtins()->builtin(Builtins::kLazyCompile));
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00001997
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00001998 // There will be at least one break point when we are done.
1999 has_break_points_ = true;
2000
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002001 // Keep the list of activated functions in a handlified list as it
2002 // is used both in GC and non-GC code.
2003 List<Handle<JSFunction> > active_functions(100);
lrn@chromium.org34e60782011-09-15 07:25:40 +00002004
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002005 {
2006 // We are going to iterate heap to find all functions without
2007 // debug break slots.
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002008 Heap* heap = isolate_->heap();
2009 heap->CollectAllGarbage(Heap::kMakeHeapIterableMask,
2010 "preparing for breakpoints");
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002011
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002012 // Ensure no GC in this scope as we are going to use gc_metadata
2013 // field in the Code object to mark active functions.
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002014 AssertNoAllocation no_allocation;
2015
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002016 Object* active_code_marker = heap->the_hole_value();
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +00002017
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002018 CollectActiveFunctionsFromThread(isolate_,
2019 isolate_->thread_local_top(),
2020 &active_functions,
2021 active_code_marker);
2022 ActiveFunctionsCollector active_functions_collector(&active_functions,
2023 active_code_marker);
2024 isolate_->thread_manager()->IterateArchivedThreads(
2025 &active_functions_collector);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002026
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002027 // Scan the heap for all non-optimized functions which have no
2028 // debug break slots and are not active or inlined into an active
2029 // function and mark them for lazy compilation.
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002030 HeapIterator iterator(heap);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002031 HeapObject* obj = NULL;
2032 while (((obj = iterator.next()) != NULL)) {
2033 if (obj->IsJSFunction()) {
2034 JSFunction* function = JSFunction::cast(obj);
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002035 SharedFunctionInfo* shared = function->shared();
2036 if (shared->allows_lazy_compilation() &&
2037 shared->script()->IsScript() &&
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002038 function->code()->kind() == Code::FUNCTION &&
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002039 !function->code()->has_debug_break_slots() &&
2040 shared->code()->gc_metadata() != active_code_marker) {
2041 function->set_code(*lazy_compile);
2042 function->shared()->set_code(*lazy_compile);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002043 }
2044 }
lrn@chromium.org34e60782011-09-15 07:25:40 +00002045 }
lrn@chromium.org34e60782011-09-15 07:25:40 +00002046
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002047 // Clear gc_metadata field.
2048 for (int i = 0; i < active_functions.length(); i++) {
2049 Handle<JSFunction> function = active_functions[i];
2050 function->shared()->code()->set_gc_metadata(Smi::FromInt(0));
2051 }
2052 }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002053
2054 // Now recompile all functions with activation frames and and
2055 // patch the return address to run in the new compiled code.
2056 for (int i = 0; i < active_functions.length(); i++) {
2057 Handle<JSFunction> function = active_functions[i];
mmassi@chromium.org7028c052012-06-13 11:51:58 +00002058 Handle<SharedFunctionInfo> shared(function->shared());
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002059
2060 if (function->code()->kind() == Code::FUNCTION &&
2061 function->code()->has_debug_break_slots()) {
2062 // Nothing to do. Function code already had debug break slots.
2063 continue;
2064 }
2065
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002066 // If recompilation is not possible just skip it.
2067 if (shared->is_toplevel() ||
2068 !shared->allows_lazy_compilation() ||
2069 shared->code()->kind() == Code::BUILTIN) {
2070 continue;
2071 }
2072
2073 // Make sure that the shared full code is compiled with debug
2074 // break slots.
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00002075 if (!shared->code()->has_debug_break_slots()) {
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002076 // Try to compile the full code with debug break slots. If it
2077 // fails just keep the current code.
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00002078 Handle<Code> current_code(function->shared()->code());
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002079 shared->set_code(*lazy_compile);
2080 bool prev_force_debugger_active =
2081 isolate_->debugger()->force_debugger_active();
2082 isolate_->debugger()->set_force_debugger_active(true);
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +00002083 ASSERT(current_code->kind() == Code::FUNCTION);
mmassi@chromium.org7028c052012-06-13 11:51:58 +00002084 CompileFullCodeForDebugging(function, current_code);
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002085 isolate_->debugger()->set_force_debugger_active(
2086 prev_force_debugger_active);
2087 if (!shared->is_compiled()) {
2088 shared->set_code(*current_code);
2089 continue;
2090 }
2091 }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002092
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002093 // Keep function code in sync with shared function info.
2094 function->set_code(shared->code());
lrn@chromium.org34e60782011-09-15 07:25:40 +00002095 }
yangguo@chromium.org659ceec2012-01-26 07:37:54 +00002096
2097 RedirectActivationsToRecompiledCodeOnThread(isolate_,
2098 isolate_->thread_local_top());
2099
2100 ActiveFunctionsRedirector active_functions_redirector;
2101 isolate_->thread_manager()->IterateArchivedThreads(
2102 &active_functions_redirector);
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002103 }
lrn@chromium.org34e60782011-09-15 07:25:40 +00002104}
2105
2106
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00002107Object* Debug::FindSharedFunctionInfoInScript(Handle<Script> script,
2108 int position) {
2109 // Iterate the heap looking for SharedFunctionInfo generated from the
2110 // script. The inner most SharedFunctionInfo containing the source position
2111 // for the requested break point is found.
2112 // NOTE: This might require several heap iterations. If the SharedFunctionInfo
2113 // which is found is not compiled it is compiled and the heap is iterated
2114 // again as the compilation might create inner functions from the newly
2115 // compiled function and the actual requested break point might be in one of
2116 // these functions.
2117 // NOTE: The below fix-point iteration depends on all functions that cannot be
2118 // compiled lazily without a context to not be compiled at all. Compilation
2119 // will be triggered at points where we do not need a context.
2120 bool done = false;
2121 // The current candidate for the source position:
2122 int target_start_position = RelocInfo::kNoPosition;
2123 Handle<JSFunction> target_function;
2124 Handle<SharedFunctionInfo> target;
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002125 Heap* heap = isolate_->heap();
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00002126 while (!done) {
2127 { // Extra scope for iterator and no-allocation.
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002128 heap->EnsureHeapIsIterable();
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00002129 AssertNoAllocation no_alloc_during_heap_iteration;
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002130 HeapIterator iterator(heap);
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00002131 for (HeapObject* obj = iterator.next();
2132 obj != NULL; obj = iterator.next()) {
2133 bool found_next_candidate = false;
2134 Handle<JSFunction> function;
2135 Handle<SharedFunctionInfo> shared;
2136 if (obj->IsJSFunction()) {
2137 function = Handle<JSFunction>(JSFunction::cast(obj));
2138 shared = Handle<SharedFunctionInfo>(function->shared());
2139 ASSERT(shared->allows_lazy_compilation() || shared->is_compiled());
2140 found_next_candidate = true;
2141 } else if (obj->IsSharedFunctionInfo()) {
2142 shared = Handle<SharedFunctionInfo>(SharedFunctionInfo::cast(obj));
2143 // Skip functions that we cannot compile lazily without a context,
2144 // which is not available here, because there is no closure.
2145 found_next_candidate = shared->is_compiled() ||
2146 shared->allows_lazy_compilation_without_context();
2147 }
2148 if (!found_next_candidate) continue;
2149 if (shared->script() == *script) {
2150 // If the SharedFunctionInfo found has the requested script data and
2151 // contains the source position it is a candidate.
2152 int start_position = shared->function_token_position();
2153 if (start_position == RelocInfo::kNoPosition) {
2154 start_position = shared->start_position();
2155 }
2156 if (start_position <= position &&
2157 position <= shared->end_position()) {
2158 // If there is no candidate or this function is within the current
2159 // candidate this is the new candidate.
2160 if (target.is_null()) {
2161 target_start_position = start_position;
2162 target_function = function;
2163 target = shared;
2164 } else {
2165 if (target_start_position == start_position &&
2166 shared->end_position() == target->end_position()) {
2167 // If a top-level function contains only one function
2168 // declaration the source for the top-level and the function
2169 // is the same. In that case prefer the non top-level function.
2170 if (!shared->is_toplevel()) {
2171 target_start_position = start_position;
2172 target_function = function;
2173 target = shared;
2174 }
2175 } else if (target_start_position <= start_position &&
2176 shared->end_position() <= target->end_position()) {
2177 // This containment check includes equality as a function
2178 // inside a top-level function can share either start or end
2179 // position with the top-level function.
2180 target_start_position = start_position;
2181 target_function = function;
2182 target = shared;
2183 }
2184 }
2185 }
2186 }
2187 } // End for loop.
2188 } // End no-allocation scope.
2189
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002190 if (target.is_null()) return heap->undefined_value();
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00002191
2192 // There will be at least one break point when we are done.
2193 has_break_points_ = true;
2194
2195 // If the candidate found is compiled we are done.
2196 done = target->is_compiled();
2197 if (!done) {
2198 // If the candidate is not compiled, compile it to reveal any inner
2199 // functions which might contain the requested source position. This
2200 // will compile all inner functions that cannot be compiled without a
2201 // context, because Compiler::BuildFunctionInfo checks whether the
2202 // debugger is active.
2203 if (target_function.is_null()) {
2204 SharedFunctionInfo::CompileLazy(target, KEEP_EXCEPTION);
2205 } else {
2206 JSFunction::CompileLazy(target_function, KEEP_EXCEPTION);
2207 }
2208 }
2209 } // End while loop.
2210
2211 return *target;
2212}
2213
2214
lrn@chromium.org34e60782011-09-15 07:25:40 +00002215// Ensures the debug information is present for shared.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00002216bool Debug::EnsureDebugInfo(Handle<SharedFunctionInfo> shared,
2217 Handle<JSFunction> function) {
lrn@chromium.org34e60782011-09-15 07:25:40 +00002218 // Return if we already have the debug info for shared.
2219 if (HasDebugInfo(shared)) {
2220 ASSERT(shared->is_compiled());
2221 return true;
2222 }
2223
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00002224 // There will be at least one break point when we are done.
2225 has_break_points_ = true;
2226
2227 // Ensure function is compiled. Return false if this failed.
2228 if (!function.is_null() &&
2229 !JSFunction::EnsureCompiled(function, CLEAR_EXCEPTION)) {
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002230 return false;
2231 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002232
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002233 // Create the debug info object.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002234 Handle<DebugInfo> debug_info = FACTORY->NewDebugInfo(shared);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002235
2236 // Add debug info to the list.
2237 DebugInfoListNode* node = new DebugInfoListNode(*debug_info);
2238 node->set_next(debug_info_list_);
2239 debug_info_list_ = node;
2240
kasper.lundbd3ec4e2008-07-09 11:06:54 +00002241 return true;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002242}
2243
2244
2245void Debug::RemoveDebugInfo(Handle<DebugInfo> debug_info) {
2246 ASSERT(debug_info_list_ != NULL);
2247 // Run through the debug info objects to find this one and remove it.
2248 DebugInfoListNode* prev = NULL;
2249 DebugInfoListNode* current = debug_info_list_;
2250 while (current != NULL) {
2251 if (*current->debug_info() == *debug_info) {
2252 // Unlink from list. If prev is NULL we are looking at the first element.
2253 if (prev == NULL) {
2254 debug_info_list_ = current->next();
2255 } else {
2256 prev->set_next(current->next());
2257 }
lrn@chromium.org7516f052011-03-30 08:52:27 +00002258 current->debug_info()->shared()->set_debug_info(
2259 isolate_->heap()->undefined_value());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002260 delete current;
2261
2262 // If there are no more debug info objects there are not more break
2263 // points.
2264 has_break_points_ = debug_info_list_ != NULL;
2265
2266 return;
2267 }
2268 // Move to next in list.
2269 prev = current;
2270 current = current->next();
2271 }
2272 UNREACHABLE();
2273}
2274
2275
2276void Debug::SetAfterBreakTarget(JavaScriptFrame* frame) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002277 HandleScope scope(isolate_);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002278
lrn@chromium.org34e60782011-09-15 07:25:40 +00002279 PrepareForBreakPoints();
2280
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002281 // Get the executing function in which the debug break occurred.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00002282 Handle<JSFunction> function(JSFunction::cast(frame->function()));
2283 Handle<SharedFunctionInfo> shared(function->shared());
2284 if (!EnsureDebugInfo(shared, function)) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +00002285 // Return if we failed to retrieve the debug info.
2286 return;
2287 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002288 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
2289 Handle<Code> code(debug_info->code());
2290 Handle<Code> original_code(debug_info->original_code());
2291#ifdef DEBUG
2292 // Get the code which is actually executing.
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00002293 Handle<Code> frame_code(frame->LookupCode());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002294 ASSERT(frame_code.is_identical_to(code));
2295#endif
2296
2297 // Find the call address in the running code. This address holds the call to
2298 // either a DebugBreakXXX or to the debug break return entry code if the
2299 // break point is still active after processing the break point.
rossberg@chromium.org89e18f52012-10-22 13:09:53 +00002300 Address addr = frame->pc() - Assembler::kPatchDebugBreakSlotReturnOffset;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002301
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002302 // Check if the location is at JS exit or debug break slot.
ager@chromium.orga1645e22009-09-09 19:27:10 +00002303 bool at_js_return = false;
2304 bool break_at_js_return_active = false;
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002305 bool at_debug_break_slot = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002306 RelocIterator it(debug_info->code());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002307 while (!it.done() && !at_js_return && !at_debug_break_slot) {
ager@chromium.org236ad962008-09-25 09:45:57 +00002308 if (RelocInfo::IsJSReturn(it.rinfo()->rmode())) {
ager@chromium.orga1645e22009-09-09 19:27:10 +00002309 at_js_return = (it.rinfo()->pc() ==
2310 addr - Assembler::kPatchReturnSequenceAddressOffset);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002311 break_at_js_return_active = it.rinfo()->IsPatchedReturnSequence();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002312 }
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002313 if (RelocInfo::IsDebugBreakSlot(it.rinfo()->rmode())) {
2314 at_debug_break_slot = (it.rinfo()->pc() ==
2315 addr - Assembler::kPatchDebugBreakSlotAddressOffset);
2316 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002317 it.next();
2318 }
2319
2320 // Handle the jump to continue execution after break point depending on the
2321 // break location.
ager@chromium.orga1645e22009-09-09 19:27:10 +00002322 if (at_js_return) {
2323 // If the break point as return is still active jump to the corresponding
2324 // place in the original code. If not the break point was removed during
2325 // break point processing.
2326 if (break_at_js_return_active) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002327 addr += original_code->instruction_start() - code->instruction_start();
2328 }
2329
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00002330 // Move back to where the call instruction sequence started.
2331 thread_local_.after_break_target_ =
2332 addr - Assembler::kPatchReturnSequenceAddressOffset;
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002333 } else if (at_debug_break_slot) {
2334 // Address of where the debug break slot starts.
2335 addr = addr - Assembler::kPatchDebugBreakSlotAddressOffset;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002336
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002337 // Continue just after the slot.
2338 thread_local_.after_break_target_ = addr + Assembler::kDebugBreakSlotLength;
2339 } else if (IsDebugBreak(Assembler::target_address_at(addr))) {
2340 // We now know that there is still a debug break call at the target address,
2341 // so the break point is still there and the original code will hold the
2342 // address to jump to in order to complete the call which is replaced by a
2343 // call to DebugBreakXXX.
2344
2345 // Find the corresponding address in the original code.
2346 addr += original_code->instruction_start() - code->instruction_start();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002347
2348 // Install jump to the call address in the original code. This will be the
2349 // call which was overwritten by the call to DebugBreakXXX.
2350 thread_local_.after_break_target_ = Assembler::target_address_at(addr);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002351 } else {
2352 // There is no longer a break point present. Don't try to look in the
2353 // original code as the running code will have the right address. This takes
2354 // care of the case where the last break point is removed from the function
2355 // and therefore no "original code" is available.
2356 thread_local_.after_break_target_ = Assembler::target_address_at(addr);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002357 }
2358}
2359
2360
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002361bool Debug::IsBreakAtReturn(JavaScriptFrame* frame) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002362 HandleScope scope(isolate_);
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002363
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00002364 // If there are no break points this cannot be break at return, as
2365 // the debugger statement and stack guard bebug break cannot be at
2366 // return.
2367 if (!has_break_points_) {
2368 return false;
2369 }
2370
lrn@chromium.org34e60782011-09-15 07:25:40 +00002371 PrepareForBreakPoints();
2372
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002373 // Get the executing function in which the debug break occurred.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00002374 Handle<JSFunction> function(JSFunction::cast(frame->function()));
2375 Handle<SharedFunctionInfo> shared(function->shared());
2376 if (!EnsureDebugInfo(shared, function)) {
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002377 // Return if we failed to retrieve the debug info.
2378 return false;
2379 }
2380 Handle<DebugInfo> debug_info = GetDebugInfo(shared);
2381 Handle<Code> code(debug_info->code());
2382#ifdef DEBUG
2383 // Get the code which is actually executing.
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00002384 Handle<Code> frame_code(frame->LookupCode());
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002385 ASSERT(frame_code.is_identical_to(code));
2386#endif
2387
2388 // Find the call address in the running code.
rossberg@chromium.org89e18f52012-10-22 13:09:53 +00002389 Address addr = frame->pc() - Assembler::kPatchDebugBreakSlotReturnOffset;
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002390
2391 // Check if the location is at JS return.
2392 RelocIterator it(debug_info->code());
2393 while (!it.done()) {
2394 if (RelocInfo::IsJSReturn(it.rinfo()->rmode())) {
2395 return (it.rinfo()->pc() ==
2396 addr - Assembler::kPatchReturnSequenceAddressOffset);
2397 }
2398 it.next();
2399 }
2400 return false;
2401}
2402
2403
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002404void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
whesse@chromium.orge90029b2010-08-02 11:52:17 +00002405 FrameDropMode mode,
2406 Object** restarter_frame_function_pointer) {
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +00002407 if (mode != CURRENTLY_SET_MODE) {
2408 thread_local_.frame_drop_mode_ = mode;
2409 }
ager@chromium.org357bf652010-04-12 11:30:10 +00002410 thread_local_.break_frame_id_ = new_break_frame_id;
whesse@chromium.orge90029b2010-08-02 11:52:17 +00002411 thread_local_.restarter_frame_function_pointer_ =
2412 restarter_frame_function_pointer;
ager@chromium.org357bf652010-04-12 11:30:10 +00002413}
2414
2415
jkummerow@chromium.org212d9642012-05-11 15:02:09 +00002416const int Debug::FramePaddingLayout::kInitialSize = 1;
2417
2418
2419// Any even value bigger than kInitialSize as needed for stack scanning.
2420const int Debug::FramePaddingLayout::kPaddingValue = kInitialSize + 1;
2421
2422
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002423bool Debug::IsDebugGlobal(GlobalObject* global) {
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002424 return IsLoaded() && global == debug_context()->global_object();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002425}
2426
2427
ager@chromium.org32912102009-01-16 10:38:43 +00002428void Debug::ClearMirrorCache() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002429 PostponeInterruptsScope postpone(isolate_);
lrn@chromium.org7516f052011-03-30 08:52:27 +00002430 HandleScope scope(isolate_);
2431 ASSERT(isolate_->context() == *Debug::debug_context());
ager@chromium.org32912102009-01-16 10:38:43 +00002432
2433 // Clear the mirror cache.
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00002434 Handle<String> function_name = isolate_->factory()->LookupOneByteSymbol(
2435 STATIC_ASCII_VECTOR("ClearMirrorCache"));
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002436 Handle<Object> fun(
2437 Isolate::Current()->global_object()->GetPropertyNoExceptionThrown(
lrn@chromium.org303ada72010-10-27 09:33:13 +00002438 *function_name));
ager@chromium.org32912102009-01-16 10:38:43 +00002439 ASSERT(fun->IsJSFunction());
2440 bool caught_exception;
rossberg@chromium.org717967f2011-07-20 13:44:42 +00002441 Execution::TryCall(Handle<JSFunction>::cast(fun),
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002442 Handle<JSObject>(Debug::debug_context()->global_object()),
ager@chromium.org32912102009-01-16 10:38:43 +00002443 0, NULL, &caught_exception);
2444}
2445
2446
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002447void Debug::CreateScriptCache() {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002448 Heap* heap = isolate_->heap();
2449 HandleScope scope(isolate_);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002450
2451 // Perform two GCs to get rid of all unreferenced scripts. The first GC gets
2452 // rid of all the cached script wrappers and the second gets rid of the
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00002453 // scripts which are no longer referenced. The second also sweeps precisely,
2454 // which saves us doing yet another GC to make the heap iterable.
rossberg@chromium.org994edf62012-02-06 10:12:55 +00002455 heap->CollectAllGarbage(Heap::kNoGCFlags, "Debug::CreateScriptCache");
2456 heap->CollectAllGarbage(Heap::kMakeHeapIterableMask,
2457 "Debug::CreateScriptCache");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002458
2459 ASSERT(script_cache_ == NULL);
2460 script_cache_ = new ScriptCache();
2461
2462 // Scan heap for Script objects.
2463 int count = 0;
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002464 HeapIterator iterator(heap);
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00002465 AssertNoAllocation no_allocation;
2466
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002467 for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00002468 if (obj->IsScript() && Script::cast(obj)->HasValidSource()) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002469 script_cache_->Add(Handle<Script>(Script::cast(obj)));
2470 count++;
2471 }
2472 }
2473}
2474
2475
2476void Debug::DestroyScriptCache() {
2477 // Get rid of the script cache if it was created.
2478 if (script_cache_ != NULL) {
2479 delete script_cache_;
2480 script_cache_ = NULL;
2481 }
2482}
2483
2484
2485void Debug::AddScriptToScriptCache(Handle<Script> script) {
2486 if (script_cache_ != NULL) {
2487 script_cache_->Add(script);
2488 }
2489}
2490
2491
2492Handle<FixedArray> Debug::GetLoadedScripts() {
2493 // Create and fill the script cache when the loaded scripts is requested for
2494 // the first time.
2495 if (script_cache_ == NULL) {
2496 CreateScriptCache();
2497 }
2498
2499 // If the script cache is not active just return an empty array.
2500 ASSERT(script_cache_ != NULL);
2501 if (script_cache_ == NULL) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002502 isolate_->factory()->NewFixedArray(0);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002503 }
2504
2505 // Perform GC to get unreferenced scripts evicted from the cache before
2506 // returning the content.
rossberg@chromium.org994edf62012-02-06 10:12:55 +00002507 isolate_->heap()->CollectAllGarbage(Heap::kNoGCFlags,
2508 "Debug::GetLoadedScripts");
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002509
2510 // Get the scripts from the cache.
2511 return script_cache_->GetScripts();
2512}
2513
2514
2515void Debug::AfterGarbageCollection() {
2516 // Generate events for collected scripts.
2517 if (script_cache_ != NULL) {
2518 script_cache_->ProcessCollectedScripts();
2519 }
2520}
2521
2522
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002523Debugger::Debugger(Isolate* isolate)
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +00002524 : debugger_access_(isolate->debugger_access()),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002525 event_listener_(Handle<Object>()),
2526 event_listener_data_(Handle<Object>()),
2527 compiling_natives_(false),
2528 is_loading_debugger_(false),
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +00002529 live_edit_enabled_(true),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002530 never_unload_debugger_(false),
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00002531 force_debugger_active_(false),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002532 message_handler_(NULL),
2533 debugger_unload_pending_(false),
2534 host_dispatch_handler_(NULL),
2535 dispatch_handler_access_(OS::CreateMutex()),
2536 debug_message_dispatch_handler_(NULL),
2537 message_dispatch_helper_thread_(NULL),
2538 host_dispatch_micros_(100 * 1000),
2539 agent_(NULL),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002540 command_queue_(isolate->logger(), kQueueInitialSize),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002541 command_received_(OS::CreateSemaphore(0)),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002542 event_command_queue_(isolate->logger(), kQueueInitialSize),
2543 isolate_(isolate) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002544}
2545
2546
2547Debugger::~Debugger() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002548 delete dispatch_handler_access_;
2549 dispatch_handler_access_ = 0;
2550 delete command_received_;
2551 command_received_ = 0;
2552}
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002553
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002554
2555Handle<Object> Debugger::MakeJSObject(Vector<const char> constructor_name,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002556 int argc,
2557 Handle<Object> argv[],
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002558 bool* caught_exception) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002559 ASSERT(isolate_->context() == *isolate_->debug()->debug_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002560
2561 // Create the execution state object.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002562 Handle<String> constructor_str =
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00002563 isolate_->factory()->LookupUtf8Symbol(constructor_name);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002564 Handle<Object> constructor(
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002565 isolate_->global_object()->GetPropertyNoExceptionThrown(
2566 *constructor_str));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002567 ASSERT(constructor->IsJSFunction());
2568 if (!constructor->IsJSFunction()) {
2569 *caught_exception = true;
lrn@chromium.org7516f052011-03-30 08:52:27 +00002570 return isolate_->factory()->undefined_value();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002571 }
2572 Handle<Object> js_object = Execution::TryCall(
2573 Handle<JSFunction>::cast(constructor),
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002574 Handle<JSObject>(isolate_->debug()->debug_context()->global_object()),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002575 argc,
2576 argv,
2577 caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002578 return js_object;
2579}
2580
2581
2582Handle<Object> Debugger::MakeExecutionState(bool* caught_exception) {
2583 // Create the execution state object.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002584 Handle<Object> break_id = isolate_->factory()->NewNumberFromInt(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002585 isolate_->debug()->break_id());
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002586 Handle<Object> argv[] = { break_id };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002587 return MakeJSObject(CStrVector("MakeExecutionState"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002588 ARRAY_SIZE(argv),
2589 argv,
2590 caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002591}
2592
2593
2594Handle<Object> Debugger::MakeBreakEvent(Handle<Object> exec_state,
2595 Handle<Object> break_points_hit,
2596 bool* caught_exception) {
2597 // Create the new break event object.
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002598 Handle<Object> argv[] = { exec_state, break_points_hit };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002599 return MakeJSObject(CStrVector("MakeBreakEvent"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002600 ARRAY_SIZE(argv),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002601 argv,
2602 caught_exception);
2603}
2604
2605
2606Handle<Object> Debugger::MakeExceptionEvent(Handle<Object> exec_state,
2607 Handle<Object> exception,
2608 bool uncaught,
2609 bool* caught_exception) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002610 Factory* factory = isolate_->factory();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002611 // Create the new exception event object.
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002612 Handle<Object> argv[] = { exec_state,
2613 exception,
2614 factory->ToBoolean(uncaught) };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002615 return MakeJSObject(CStrVector("MakeExceptionEvent"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002616 ARRAY_SIZE(argv),
2617 argv,
2618 caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002619}
2620
2621
2622Handle<Object> Debugger::MakeNewFunctionEvent(Handle<Object> function,
2623 bool* caught_exception) {
2624 // Create the new function event object.
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002625 Handle<Object> argv[] = { function };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002626 return MakeJSObject(CStrVector("MakeNewFunctionEvent"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002627 ARRAY_SIZE(argv),
2628 argv,
2629 caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002630}
2631
2632
2633Handle<Object> Debugger::MakeCompileEvent(Handle<Script> script,
iposva@chromium.org245aa852009-02-10 00:49:54 +00002634 bool before,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002635 bool* caught_exception) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002636 Factory* factory = isolate_->factory();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002637 // Create the compile event object.
2638 Handle<Object> exec_state = MakeExecutionState(caught_exception);
iposva@chromium.org245aa852009-02-10 00:49:54 +00002639 Handle<Object> script_wrapper = GetScriptWrapper(script);
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002640 Handle<Object> argv[] = { exec_state,
2641 script_wrapper,
2642 factory->ToBoolean(before) };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002643 return MakeJSObject(CStrVector("MakeCompileEvent"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002644 ARRAY_SIZE(argv),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002645 argv,
2646 caught_exception);
2647}
2648
2649
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002650Handle<Object> Debugger::MakeScriptCollectedEvent(int id,
2651 bool* caught_exception) {
2652 // Create the script collected event object.
2653 Handle<Object> exec_state = MakeExecutionState(caught_exception);
2654 Handle<Object> id_object = Handle<Smi>(Smi::FromInt(id));
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002655 Handle<Object> argv[] = { exec_state, id_object };
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002656
2657 return MakeJSObject(CStrVector("MakeScriptCollectedEvent"),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002658 ARRAY_SIZE(argv),
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002659 argv,
2660 caught_exception);
2661}
2662
2663
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002664void Debugger::OnException(Handle<Object> exception, bool uncaught) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002665 HandleScope scope(isolate_);
2666 Debug* debug = isolate_->debug();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002667
2668 // Bail out based on state or if there is no listener for this event
lrn@chromium.org7516f052011-03-30 08:52:27 +00002669 if (debug->InDebugger()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002670 if (!Debugger::EventActive(v8::Exception)) return;
2671
2672 // Bail out if exception breaks are not active
2673 if (uncaught) {
2674 // Uncaught exceptions are reported by either flags.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002675 if (!(debug->break_on_uncaught_exception() ||
2676 debug->break_on_exception())) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002677 } else {
2678 // Caught exceptions are reported is activated.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002679 if (!debug->break_on_exception()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002680 }
2681
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002682 // Enter the debugger.
2683 EnterDebugger debugger;
2684 if (debugger.FailedToEnter()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002685
2686 // Clear all current stepping setup.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002687 debug->ClearStepping();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002688 // Create the event data object.
2689 bool caught_exception = false;
2690 Handle<Object> exec_state = MakeExecutionState(&caught_exception);
2691 Handle<Object> event_data;
2692 if (!caught_exception) {
2693 event_data = MakeExceptionEvent(exec_state, exception, uncaught,
2694 &caught_exception);
2695 }
2696 // Bail out and don't call debugger if exception.
2697 if (caught_exception) {
2698 return;
2699 }
2700
ager@chromium.org5ec48922009-05-05 07:25:34 +00002701 // Process debug event.
2702 ProcessDebugEvent(v8::Exception, Handle<JSObject>::cast(event_data), false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002703 // Return to continue execution from where the exception was thrown.
2704}
2705
2706
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002707void Debugger::OnDebugBreak(Handle<Object> break_points_hit,
2708 bool auto_continue) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002709 HandleScope scope(isolate_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002710
kasper.lund212ac232008-07-16 07:07:30 +00002711 // Debugger has already been entered by caller.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002712 ASSERT(isolate_->context() == *isolate_->debug()->debug_context());
kasper.lund212ac232008-07-16 07:07:30 +00002713
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002714 // Bail out if there is no listener for this event
2715 if (!Debugger::EventActive(v8::Break)) return;
2716
2717 // Debugger must be entered in advance.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002718 ASSERT(isolate_->context() == *isolate_->debug()->debug_context());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002719
2720 // Create the event data object.
2721 bool caught_exception = false;
2722 Handle<Object> exec_state = MakeExecutionState(&caught_exception);
2723 Handle<Object> event_data;
2724 if (!caught_exception) {
2725 event_data = MakeBreakEvent(exec_state, break_points_hit,
2726 &caught_exception);
2727 }
2728 // Bail out and don't call debugger if exception.
2729 if (caught_exception) {
2730 return;
2731 }
2732
ager@chromium.org5ec48922009-05-05 07:25:34 +00002733 // Process debug event.
2734 ProcessDebugEvent(v8::Break,
2735 Handle<JSObject>::cast(event_data),
2736 auto_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002737}
2738
2739
2740void Debugger::OnBeforeCompile(Handle<Script> script) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002741 HandleScope scope(isolate_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002742
2743 // Bail out based on state or if there is no listener for this event
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002744 if (isolate_->debug()->InDebugger()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002745 if (compiling_natives()) return;
2746 if (!EventActive(v8::BeforeCompile)) return;
2747
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002748 // Enter the debugger.
2749 EnterDebugger debugger;
2750 if (debugger.FailedToEnter()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002751
2752 // Create the event data object.
2753 bool caught_exception = false;
iposva@chromium.org245aa852009-02-10 00:49:54 +00002754 Handle<Object> event_data = MakeCompileEvent(script, true, &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002755 // Bail out and don't call debugger if exception.
2756 if (caught_exception) {
2757 return;
2758 }
2759
ager@chromium.org5ec48922009-05-05 07:25:34 +00002760 // Process debug event.
2761 ProcessDebugEvent(v8::BeforeCompile,
2762 Handle<JSObject>::cast(event_data),
2763 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002764}
2765
2766
2767// Handle debugger actions when a new script is compiled.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00002768void Debugger::OnAfterCompile(Handle<Script> script,
2769 AfterCompileFlags after_compile_flags) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002770 HandleScope scope(isolate_);
2771 Debug* debug = isolate_->debug();
kasper.lund212ac232008-07-16 07:07:30 +00002772
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002773 // Add the newly compiled script to the script cache.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002774 debug->AddScriptToScriptCache(script);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002775
2776 // No more to do if not debugging.
ager@chromium.org71daaf62009-04-01 07:22:49 +00002777 if (!IsDebuggerActive()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002778
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002779 // No compile events while compiling natives.
2780 if (compiling_natives()) return;
2781
iposva@chromium.org245aa852009-02-10 00:49:54 +00002782 // Store whether in debugger before entering debugger.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002783 bool in_debugger = debug->InDebugger();
iposva@chromium.org245aa852009-02-10 00:49:54 +00002784
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00002785 // Enter the debugger.
2786 EnterDebugger debugger;
2787 if (debugger.FailedToEnter()) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002788
2789 // If debugging there might be script break points registered for this
2790 // script. Make sure that these break points are set.
2791
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +00002792 // Get the function UpdateScriptBreakPoints (defined in debug-debugger.js).
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00002793 Handle<String> update_script_break_points_symbol =
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +00002794 isolate_->factory()->LookupOneByteSymbol(
2795 STATIC_ASCII_VECTOR("UpdateScriptBreakPoints"));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002796 Handle<Object> update_script_break_points =
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002797 Handle<Object>(debug->debug_context()->global_object()->
lrn@chromium.org303ada72010-10-27 09:33:13 +00002798 GetPropertyNoExceptionThrown(*update_script_break_points_symbol));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002799 if (!update_script_break_points->IsJSFunction()) {
2800 return;
2801 }
2802 ASSERT(update_script_break_points->IsJSFunction());
2803
2804 // Wrap the script object in a proper JS object before passing it
2805 // to JavaScript.
2806 Handle<JSValue> wrapper = GetScriptWrapper(script);
2807
2808 // Call UpdateScriptBreakPoints expect no exceptions.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00002809 bool caught_exception;
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002810 Handle<Object> argv[] = { wrapper };
rossberg@chromium.org717967f2011-07-20 13:44:42 +00002811 Execution::TryCall(Handle<JSFunction>::cast(update_script_break_points),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002812 Isolate::Current()->js_builtins_object(),
2813 ARRAY_SIZE(argv),
2814 argv,
2815 &caught_exception);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002816 if (caught_exception) {
2817 return;
2818 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002819 // Bail out based on state or if there is no listener for this event
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00002820 if (in_debugger && (after_compile_flags & SEND_WHEN_DEBUGGING) == 0) return;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002821 if (!Debugger::EventActive(v8::AfterCompile)) return;
2822
2823 // Create the compile state object.
2824 Handle<Object> event_data = MakeCompileEvent(script,
iposva@chromium.org245aa852009-02-10 00:49:54 +00002825 false,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002826 &caught_exception);
2827 // Bail out and don't call debugger if exception.
2828 if (caught_exception) {
2829 return;
2830 }
ager@chromium.org5ec48922009-05-05 07:25:34 +00002831 // Process debug event.
2832 ProcessDebugEvent(v8::AfterCompile,
2833 Handle<JSObject>::cast(event_data),
2834 true);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002835}
2836
2837
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002838void Debugger::OnScriptCollected(int id) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002839 HandleScope scope(isolate_);
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002840
2841 // No more to do if not debugging.
ulan@chromium.org56c14af2012-09-20 12:51:09 +00002842 if (isolate_->debug()->InDebugger()) return;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002843 if (!IsDebuggerActive()) return;
2844 if (!Debugger::EventActive(v8::ScriptCollected)) return;
2845
2846 // Enter the debugger.
2847 EnterDebugger debugger;
2848 if (debugger.FailedToEnter()) return;
2849
2850 // Create the script collected state object.
2851 bool caught_exception = false;
2852 Handle<Object> event_data = MakeScriptCollectedEvent(id,
2853 &caught_exception);
2854 // Bail out and don't call debugger if exception.
2855 if (caught_exception) {
2856 return;
2857 }
2858
2859 // Process debug event.
2860 ProcessDebugEvent(v8::ScriptCollected,
2861 Handle<JSObject>::cast(event_data),
2862 true);
2863}
2864
2865
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002866void Debugger::ProcessDebugEvent(v8::DebugEvent event,
ager@chromium.org5ec48922009-05-05 07:25:34 +00002867 Handle<JSObject> event_data,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00002868 bool auto_continue) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002869 HandleScope scope(isolate_);
ager@chromium.org381abbb2009-02-25 13:23:22 +00002870
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002871 // Clear any pending debug break if this is a real break.
2872 if (!auto_continue) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002873 isolate_->debug()->clear_interrupt_pending(DEBUGBREAK);
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002874 }
2875
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002876 // Create the execution state.
2877 bool caught_exception = false;
2878 Handle<Object> exec_state = MakeExecutionState(&caught_exception);
2879 if (caught_exception) {
2880 return;
2881 }
ager@chromium.org41826e72009-03-30 13:30:57 +00002882 // First notify the message handler if any.
2883 if (message_handler_ != NULL) {
ager@chromium.org5ec48922009-05-05 07:25:34 +00002884 NotifyMessageHandler(event,
2885 Handle<JSObject>::cast(exec_state),
2886 event_data,
2887 auto_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002888 }
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002889 // Notify registered debug event listener. This can be either a C or
2890 // a JavaScript function. Don't call event listener for v8::Break
2891 // here, if it's only a debug command -- they will be processed later.
2892 if ((event != v8::Break || !auto_continue) && !event_listener_.is_null()) {
2893 CallEventCallback(event, exec_state, event_data, NULL);
2894 }
2895 // Process pending debug commands.
2896 if (event == v8::Break) {
2897 while (!event_command_queue_.IsEmpty()) {
2898 CommandMessage command = event_command_queue_.Get();
2899 if (!event_listener_.is_null()) {
2900 CallEventCallback(v8::BreakForCommand,
2901 exec_state,
2902 event_data,
2903 command.client_data());
2904 }
2905 command.Dispose();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002906 }
2907 }
2908}
2909
2910
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002911void Debugger::CallEventCallback(v8::DebugEvent event,
2912 Handle<Object> exec_state,
2913 Handle<Object> event_data,
2914 v8::Debug::ClientData* client_data) {
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002915 if (event_listener_->IsForeign()) {
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002916 CallCEventCallback(event, exec_state, event_data, client_data);
2917 } else {
2918 CallJSEventCallback(event, exec_state, event_data);
2919 }
2920}
2921
2922
2923void Debugger::CallCEventCallback(v8::DebugEvent event,
2924 Handle<Object> exec_state,
2925 Handle<Object> event_data,
2926 v8::Debug::ClientData* client_data) {
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002927 Handle<Foreign> callback_obj(Handle<Foreign>::cast(event_listener_));
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002928 v8::Debug::EventCallback2 callback =
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00002929 FUNCTION_CAST<v8::Debug::EventCallback2>(
2930 callback_obj->foreign_address());
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002931 EventDetailsImpl event_details(
2932 event,
2933 Handle<JSObject>::cast(exec_state),
2934 Handle<JSObject>::cast(event_data),
2935 event_listener_data_,
2936 client_data);
2937 callback(event_details);
2938}
2939
2940
2941void Debugger::CallJSEventCallback(v8::DebugEvent event,
2942 Handle<Object> exec_state,
2943 Handle<Object> event_data) {
2944 ASSERT(event_listener_->IsJSFunction());
2945 Handle<JSFunction> fun(Handle<JSFunction>::cast(event_listener_));
2946
2947 // Invoke the JavaScript debug event listener.
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002948 Handle<Object> argv[] = { Handle<Object>(Smi::FromInt(event)),
2949 exec_state,
2950 event_data,
2951 event_listener_data_ };
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00002952 bool caught_exception;
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002953 Execution::TryCall(fun,
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00002954 isolate_->global_object(),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002955 ARRAY_SIZE(argv),
2956 argv,
2957 &caught_exception);
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002958 // Silently ignore exceptions from debug event listeners.
2959}
2960
2961
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00002962Handle<Context> Debugger::GetDebugContext() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002963 never_unload_debugger_ = true;
2964 EnterDebugger debugger;
2965 return isolate_->debug()->debug_context();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00002966}
2967
2968
ager@chromium.org71daaf62009-04-01 07:22:49 +00002969void Debugger::UnloadDebugger() {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002970 Debug* debug = isolate_->debug();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002971
ager@chromium.org71daaf62009-04-01 07:22:49 +00002972 // Make sure that there are no breakpoints left.
lrn@chromium.org7516f052011-03-30 08:52:27 +00002973 debug->ClearAllBreakPoints();
ager@chromium.org71daaf62009-04-01 07:22:49 +00002974
2975 // Unload the debugger if feasible.
2976 if (!never_unload_debugger_) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002977 debug->Unload();
ager@chromium.org71daaf62009-04-01 07:22:49 +00002978 }
2979
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002980 // Clear the flag indicating that the debugger should be unloaded.
2981 debugger_unload_pending_ = false;
ager@chromium.org71daaf62009-04-01 07:22:49 +00002982}
2983
2984
ager@chromium.org41826e72009-03-30 13:30:57 +00002985void Debugger::NotifyMessageHandler(v8::DebugEvent event,
ager@chromium.org5ec48922009-05-05 07:25:34 +00002986 Handle<JSObject> exec_state,
2987 Handle<JSObject> event_data,
ager@chromium.org41826e72009-03-30 13:30:57 +00002988 bool auto_continue) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00002989 HandleScope scope(isolate_);
ager@chromium.org41826e72009-03-30 13:30:57 +00002990
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00002991 if (!isolate_->debug()->Load()) return;
ager@chromium.org41826e72009-03-30 13:30:57 +00002992
2993 // Process the individual events.
ager@chromium.org5ec48922009-05-05 07:25:34 +00002994 bool sendEventMessage = false;
ager@chromium.org41826e72009-03-30 13:30:57 +00002995 switch (event) {
2996 case v8::Break:
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00002997 case v8::BreakForCommand:
ager@chromium.org5ec48922009-05-05 07:25:34 +00002998 sendEventMessage = !auto_continue;
ager@chromium.org41826e72009-03-30 13:30:57 +00002999 break;
3000 case v8::Exception:
ager@chromium.org5ec48922009-05-05 07:25:34 +00003001 sendEventMessage = true;
ager@chromium.org41826e72009-03-30 13:30:57 +00003002 break;
3003 case v8::BeforeCompile:
3004 break;
3005 case v8::AfterCompile:
ager@chromium.org5ec48922009-05-05 07:25:34 +00003006 sendEventMessage = true;
ager@chromium.org41826e72009-03-30 13:30:57 +00003007 break;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003008 case v8::ScriptCollected:
3009 sendEventMessage = true;
3010 break;
ager@chromium.org41826e72009-03-30 13:30:57 +00003011 case v8::NewFunction:
3012 break;
3013 default:
3014 UNREACHABLE();
3015 }
3016
ager@chromium.org5ec48922009-05-05 07:25:34 +00003017 // The debug command interrupt flag might have been set when the command was
3018 // added. It should be enough to clear the flag only once while we are in the
3019 // debugger.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003020 ASSERT(isolate_->debug()->InDebugger());
3021 isolate_->stack_guard()->Continue(DEBUGCOMMAND);
ager@chromium.org5ec48922009-05-05 07:25:34 +00003022
3023 // Notify the debugger that a debug event has occurred unless auto continue is
3024 // active in which case no event is send.
3025 if (sendEventMessage) {
3026 MessageImpl message = MessageImpl::NewEvent(
3027 event,
3028 auto_continue,
3029 Handle<JSObject>::cast(exec_state),
3030 Handle<JSObject>::cast(event_data));
3031 InvokeMessageHandler(message);
3032 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00003033
3034 // If auto continue don't make the event cause a break, but process messages
3035 // in the queue if any. For script collected events don't even process
3036 // messages in the queue as the execution state might not be what is expected
3037 // by the client.
ager@chromium.org6ffc2172009-05-29 19:20:16 +00003038 if ((auto_continue && !HasCommands()) || event == v8::ScriptCollected) {
ager@chromium.org5ec48922009-05-05 07:25:34 +00003039 return;
3040 }
ager@chromium.org41826e72009-03-30 13:30:57 +00003041
ager@chromium.org41826e72009-03-30 13:30:57 +00003042 v8::TryCatch try_catch;
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003043
3044 // DebugCommandProcessor goes here.
3045 v8::Local<v8::Object> cmd_processor;
3046 {
3047 v8::Local<v8::Object> api_exec_state =
3048 v8::Utils::ToLocal(Handle<JSObject>::cast(exec_state));
3049 v8::Local<v8::String> fun_name =
3050 v8::String::New("debugCommandProcessor");
3051 v8::Local<v8::Function> fun =
3052 v8::Function::Cast(*api_exec_state->Get(fun_name));
3053
3054 v8::Handle<v8::Boolean> running =
3055 auto_continue ? v8::True() : v8::False();
3056 static const int kArgc = 1;
3057 v8::Handle<Value> argv[kArgc] = { running };
3058 cmd_processor = v8::Object::Cast(*fun->Call(api_exec_state, kArgc, argv));
3059 if (try_catch.HasCaught()) {
3060 PrintLn(try_catch.Exception());
3061 return;
3062 }
ager@chromium.org41826e72009-03-30 13:30:57 +00003063 }
3064
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003065 bool running = auto_continue;
3066
ager@chromium.org41826e72009-03-30 13:30:57 +00003067 // Process requests from the debugger.
3068 while (true) {
3069 // Wait for new command in the queue.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003070 if (Debugger::host_dispatch_handler_) {
3071 // In case there is a host dispatch - do periodic dispatches.
3072 if (!command_received_->Wait(host_dispatch_micros_)) {
3073 // Timout expired, do the dispatch.
3074 Debugger::host_dispatch_handler_();
3075 continue;
3076 }
3077 } else {
3078 // In case there is no host dispatch - just wait.
3079 command_received_->Wait();
3080 }
ager@chromium.org41826e72009-03-30 13:30:57 +00003081
ager@chromium.org41826e72009-03-30 13:30:57 +00003082 // Get the command from the queue.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003083 CommandMessage command = command_queue_.Get();
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003084 isolate_->logger()->DebugTag(
3085 "Got request from command queue, in interactive loop.");
ager@chromium.org71daaf62009-04-01 07:22:49 +00003086 if (!Debugger::IsDebuggerActive()) {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003087 // Delete command text and user data.
3088 command.Dispose();
ager@chromium.org41826e72009-03-30 13:30:57 +00003089 return;
3090 }
3091
ager@chromium.org41826e72009-03-30 13:30:57 +00003092 // Invoke JavaScript to process the debug request.
3093 v8::Local<v8::String> fun_name;
3094 v8::Local<v8::Function> fun;
3095 v8::Local<v8::Value> request;
3096 v8::TryCatch try_catch;
3097 fun_name = v8::String::New("processDebugRequest");
3098 fun = v8::Function::Cast(*cmd_processor->Get(fun_name));
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003099
3100 request = v8::String::New(command.text().start(),
3101 command.text().length());
ager@chromium.org41826e72009-03-30 13:30:57 +00003102 static const int kArgc = 1;
3103 v8::Handle<Value> argv[kArgc] = { request };
3104 v8::Local<v8::Value> response_val = fun->Call(cmd_processor, kArgc, argv);
3105
3106 // Get the response.
3107 v8::Local<v8::String> response;
ager@chromium.org41826e72009-03-30 13:30:57 +00003108 if (!try_catch.HasCaught()) {
3109 // Get response string.
3110 if (!response_val->IsUndefined()) {
3111 response = v8::String::Cast(*response_val);
3112 } else {
3113 response = v8::String::New("");
3114 }
3115
3116 // Log the JSON request/response.
3117 if (FLAG_trace_debug_json) {
3118 PrintLn(request);
3119 PrintLn(response);
3120 }
3121
3122 // Get the running state.
3123 fun_name = v8::String::New("isRunning");
3124 fun = v8::Function::Cast(*cmd_processor->Get(fun_name));
3125 static const int kArgc = 1;
3126 v8::Handle<Value> argv[kArgc] = { response };
3127 v8::Local<v8::Value> running_val = fun->Call(cmd_processor, kArgc, argv);
3128 if (!try_catch.HasCaught()) {
3129 running = running_val->ToBoolean()->Value();
3130 }
3131 } else {
3132 // In case of failure the result text is the exception text.
3133 response = try_catch.Exception()->ToString();
3134 }
3135
ager@chromium.org41826e72009-03-30 13:30:57 +00003136 // Return the result.
ager@chromium.org5ec48922009-05-05 07:25:34 +00003137 MessageImpl message = MessageImpl::NewResponse(
3138 event,
3139 running,
3140 Handle<JSObject>::cast(exec_state),
3141 Handle<JSObject>::cast(event_data),
3142 Handle<String>(Utils::OpenHandle(*response)),
3143 command.client_data());
3144 InvokeMessageHandler(message);
3145 command.Dispose();
ager@chromium.org41826e72009-03-30 13:30:57 +00003146
3147 // Return from debug event processing if either the VM is put into the
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00003148 // running state (through a continue command) or auto continue is active
ager@chromium.org41826e72009-03-30 13:30:57 +00003149 // and there are no more commands queued.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003150 if (running && !HasCommands()) {
ager@chromium.org41826e72009-03-30 13:30:57 +00003151 return;
3152 }
3153 }
3154}
3155
3156
iposva@chromium.org245aa852009-02-10 00:49:54 +00003157void Debugger::SetEventListener(Handle<Object> callback,
3158 Handle<Object> data) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003159 HandleScope scope(isolate_);
3160 GlobalHandles* global_handles = isolate_->global_handles();
iposva@chromium.org245aa852009-02-10 00:49:54 +00003161
3162 // Clear the global handles for the event listener and the event listener data
3163 // object.
3164 if (!event_listener_.is_null()) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003165 global_handles->Destroy(
iposva@chromium.org245aa852009-02-10 00:49:54 +00003166 reinterpret_cast<Object**>(event_listener_.location()));
3167 event_listener_ = Handle<Object>();
3168 }
3169 if (!event_listener_data_.is_null()) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003170 global_handles->Destroy(
iposva@chromium.org245aa852009-02-10 00:49:54 +00003171 reinterpret_cast<Object**>(event_listener_data_.location()));
3172 event_listener_data_ = Handle<Object>();
3173 }
3174
3175 // If there is a new debug event listener register it together with its data
3176 // object.
3177 if (!callback->IsUndefined() && !callback->IsNull()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003178 event_listener_ = Handle<Object>::cast(
lrn@chromium.org7516f052011-03-30 08:52:27 +00003179 global_handles->Create(*callback));
iposva@chromium.org245aa852009-02-10 00:49:54 +00003180 if (data.is_null()) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003181 data = isolate_->factory()->undefined_value();
iposva@chromium.org245aa852009-02-10 00:49:54 +00003182 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003183 event_listener_data_ = Handle<Object>::cast(
lrn@chromium.org7516f052011-03-30 08:52:27 +00003184 global_handles->Create(*data));
iposva@chromium.org245aa852009-02-10 00:49:54 +00003185 }
3186
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003187 ListenersChanged();
iposva@chromium.org245aa852009-02-10 00:49:54 +00003188}
3189
3190
ager@chromium.org5ec48922009-05-05 07:25:34 +00003191void Debugger::SetMessageHandler(v8::Debug::MessageHandler2 handler) {
ager@chromium.org71daaf62009-04-01 07:22:49 +00003192 ScopedLock with(debugger_access_);
3193
ager@chromium.org381abbb2009-02-25 13:23:22 +00003194 message_handler_ = handler;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003195 ListenersChanged();
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003196 if (handler == NULL) {
ager@chromium.org71daaf62009-04-01 07:22:49 +00003197 // Send an empty command to the debugger if in a break to make JavaScript
3198 // run again if the debugger is closed.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003199 if (isolate_->debug()->InDebugger()) {
ager@chromium.org71daaf62009-04-01 07:22:49 +00003200 ProcessCommand(Vector<const uint16_t>::empty());
3201 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003202 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003203}
3204
3205
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003206void Debugger::ListenersChanged() {
3207 if (IsDebuggerActive()) {
3208 // Disable the compilation cache when the debugger is active.
lrn@chromium.org7516f052011-03-30 08:52:27 +00003209 isolate_->compilation_cache()->Disable();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003210 debugger_unload_pending_ = false;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003211 } else {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003212 isolate_->compilation_cache()->Enable();
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003213 // Unload the debugger if event listener and message handler cleared.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003214 // Schedule this for later, because we may be in non-V8 thread.
3215 debugger_unload_pending_ = true;
kasperl@chromium.org71affb52009-05-26 05:44:31 +00003216 }
3217}
3218
3219
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003220void Debugger::SetHostDispatchHandler(v8::Debug::HostDispatchHandler handler,
3221 int period) {
ager@chromium.org381abbb2009-02-25 13:23:22 +00003222 host_dispatch_handler_ = handler;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003223 host_dispatch_micros_ = period * 1000;
ager@chromium.org381abbb2009-02-25 13:23:22 +00003224}
3225
3226
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003227void Debugger::SetDebugMessageDispatchHandler(
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003228 v8::Debug::DebugMessageDispatchHandler handler, bool provide_locker) {
3229 ScopedLock with(dispatch_handler_access_);
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003230 debug_message_dispatch_handler_ = handler;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003231
3232 if (provide_locker && message_dispatch_helper_thread_ == NULL) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003233 message_dispatch_helper_thread_ = new MessageDispatchHelperThread(isolate_);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003234 message_dispatch_helper_thread_->Start();
3235 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003236}
3237
3238
ager@chromium.org41826e72009-03-30 13:30:57 +00003239// Calls the registered debug message handler. This callback is part of the
ager@chromium.org5ec48922009-05-05 07:25:34 +00003240// public API.
3241void Debugger::InvokeMessageHandler(MessageImpl message) {
ager@chromium.org71daaf62009-04-01 07:22:49 +00003242 ScopedLock with(debugger_access_);
3243
ager@chromium.org381abbb2009-02-25 13:23:22 +00003244 if (message_handler_ != NULL) {
ager@chromium.org5ec48922009-05-05 07:25:34 +00003245 message_handler_(message);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003246 }
ager@chromium.org41826e72009-03-30 13:30:57 +00003247}
3248
3249
3250// Puts a command coming from the public API on the queue. Creates
3251// a copy of the command string managed by the debugger. Up to this
3252// point, the command data was managed by the API client. Called
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003253// by the API client thread.
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003254void Debugger::ProcessCommand(Vector<const uint16_t> command,
3255 v8::Debug::ClientData* client_data) {
3256 // Need to cast away const.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003257 CommandMessage message = CommandMessage::New(
ager@chromium.org41826e72009-03-30 13:30:57 +00003258 Vector<uint16_t>(const_cast<uint16_t*>(command.start()),
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003259 command.length()),
3260 client_data);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003261 isolate_->logger()->DebugTag("Put command on command_queue.");
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003262 command_queue_.Put(message);
ager@chromium.org41826e72009-03-30 13:30:57 +00003263 command_received_->Signal();
sgjesse@chromium.org3afc1582009-04-16 22:31:44 +00003264
3265 // Set the debug command break flag to have the command processed.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003266 if (!isolate_->debug()->InDebugger()) {
3267 isolate_->stack_guard()->DebugCommand();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003268 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003269
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003270 MessageDispatchHelperThread* dispatch_thread;
3271 {
3272 ScopedLock with(dispatch_handler_access_);
3273 dispatch_thread = message_dispatch_helper_thread_;
3274 }
3275
3276 if (dispatch_thread == NULL) {
3277 CallMessageDispatchHandler();
3278 } else {
3279 dispatch_thread->Schedule();
ager@chromium.orgc4c92722009-11-18 14:12:51 +00003280 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003281}
3282
3283
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003284bool Debugger::HasCommands() {
ager@chromium.org41826e72009-03-30 13:30:57 +00003285 return !command_queue_.IsEmpty();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003286}
3287
3288
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00003289void Debugger::EnqueueDebugCommand(v8::Debug::ClientData* client_data) {
3290 CommandMessage message = CommandMessage::New(Vector<uint16_t>(), client_data);
3291 event_command_queue_.Put(message);
3292
3293 // Set the debug command break flag to have the command processed.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003294 if (!isolate_->debug()->InDebugger()) {
3295 isolate_->stack_guard()->DebugCommand();
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00003296 }
3297}
3298
3299
ager@chromium.org71daaf62009-04-01 07:22:49 +00003300bool Debugger::IsDebuggerActive() {
3301 ScopedLock with(debugger_access_);
3302
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00003303 return message_handler_ != NULL ||
3304 !event_listener_.is_null() ||
3305 force_debugger_active_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003306}
3307
3308
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003309Handle<Object> Debugger::Call(Handle<JSFunction> fun,
3310 Handle<Object> data,
3311 bool* pending_exception) {
ager@chromium.org71daaf62009-04-01 07:22:49 +00003312 // When calling functions in the debugger prevent it from beeing unloaded.
3313 Debugger::never_unload_debugger_ = true;
3314
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003315 // Enter the debugger.
3316 EnterDebugger debugger;
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00003317 if (debugger.FailedToEnter()) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003318 return isolate_->factory()->undefined_value();
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003319 }
3320
3321 // Create the execution state.
3322 bool caught_exception = false;
3323 Handle<Object> exec_state = MakeExecutionState(&caught_exception);
3324 if (caught_exception) {
lrn@chromium.org7516f052011-03-30 08:52:27 +00003325 return isolate_->factory()->undefined_value();
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003326 }
3327
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00003328 Handle<Object> argv[] = { exec_state, data };
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00003329 Handle<Object> result = Execution::Call(
3330 fun,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003331 Handle<Object>(isolate_->debug()->debug_context_->global_proxy()),
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00003332 ARRAY_SIZE(argv),
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +00003333 argv,
3334 pending_exception);
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003335 return result;
3336}
3337
3338
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003339static void StubMessageHandler2(const v8::Debug::Message& message) {
3340 // Simply ignore message.
3341}
3342
3343
3344bool Debugger::StartAgent(const char* name, int port,
3345 bool wait_for_connection) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003346 ASSERT(Isolate::Current() == isolate_);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +00003347 if (wait_for_connection) {
3348 // Suspend V8 if it is already running or set V8 to suspend whenever
3349 // it starts.
3350 // Provide stub message handler; V8 auto-continues each suspend
3351 // when there is no message handler; we doesn't need it.
3352 // Once become suspended, V8 will stay so indefinitely long, until remote
3353 // debugger connects and issues "continue" command.
3354 Debugger::message_handler_ = StubMessageHandler2;
3355 v8::Debug::DebugBreak();
3356 }
3357
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +00003358 if (Socket::SetUp()) {
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003359 if (agent_ == NULL) {
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003360 agent_ = new DebuggerAgent(name, port);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003361 agent_->Start();
3362 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003363 return true;
3364 }
3365
3366 return false;
3367}
3368
3369
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003370void Debugger::StopAgent() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003371 ASSERT(Isolate::Current() == isolate_);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003372 if (agent_ != NULL) {
3373 agent_->Shutdown();
3374 agent_->Join();
3375 delete agent_;
3376 agent_ = NULL;
3377 }
3378}
3379
3380
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003381void Debugger::WaitForAgent() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003382 ASSERT(Isolate::Current() == isolate_);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003383 if (agent_ != NULL)
3384 agent_->WaitUntilListening();
3385}
3386
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003387
3388void Debugger::CallMessageDispatchHandler() {
3389 v8::Debug::DebugMessageDispatchHandler handler;
3390 {
3391 ScopedLock with(dispatch_handler_access_);
3392 handler = Debugger::debug_message_dispatch_handler_;
3393 }
3394 if (handler != NULL) {
3395 handler();
3396 }
3397}
3398
3399
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00003400EnterDebugger::EnterDebugger()
3401 : isolate_(Isolate::Current()),
3402 prev_(isolate_->debug()->debugger_entry()),
3403 it_(isolate_),
3404 has_js_frames_(!it_.done()),
3405 save_(isolate_) {
3406 Debug* debug = isolate_->debug();
3407 ASSERT(prev_ != NULL || !debug->is_interrupt_pending(PREEMPT));
3408 ASSERT(prev_ != NULL || !debug->is_interrupt_pending(DEBUGBREAK));
3409
3410 // Link recursive debugger entry.
3411 debug->set_debugger_entry(this);
3412
3413 // Store the previous break id and frame id.
3414 break_id_ = debug->break_id();
3415 break_frame_id_ = debug->break_frame_id();
3416
3417 // Create the new break info. If there is no JavaScript frames there is no
3418 // break frame id.
3419 if (has_js_frames_) {
3420 debug->NewBreak(it_.frame()->id());
3421 } else {
3422 debug->NewBreak(StackFrame::NO_ID);
3423 }
3424
3425 // Make sure that debugger is loaded and enter the debugger context.
3426 load_failed_ = !debug->Load();
3427 if (!load_failed_) {
3428 // NOTE the member variable save which saves the previous context before
3429 // this change.
3430 isolate_->set_context(*debug->debug_context());
3431 }
3432}
3433
3434
3435EnterDebugger::~EnterDebugger() {
3436 ASSERT(Isolate::Current() == isolate_);
3437 Debug* debug = isolate_->debug();
3438
3439 // Restore to the previous break state.
3440 debug->SetBreak(break_frame_id_, break_id_);
3441
3442 // Check for leaving the debugger.
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00003443 if (!load_failed_ && prev_ == NULL) {
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00003444 // Clear mirror cache when leaving the debugger. Skip this if there is a
3445 // pending exception as clearing the mirror cache calls back into
3446 // JavaScript. This can happen if the v8::Debug::Call is used in which
3447 // case the exception should end up in the calling code.
3448 if (!isolate_->has_pending_exception()) {
3449 // Try to avoid any pending debug break breaking in the clear mirror
3450 // cache JavaScript code.
3451 if (isolate_->stack_guard()->IsDebugBreak()) {
3452 debug->set_interrupts_pending(DEBUGBREAK);
3453 isolate_->stack_guard()->Continue(DEBUGBREAK);
3454 }
3455 debug->ClearMirrorCache();
3456 }
3457
3458 // Request preemption and debug break when leaving the last debugger entry
3459 // if any of these where recorded while debugging.
3460 if (debug->is_interrupt_pending(PREEMPT)) {
3461 // This re-scheduling of preemption is to avoid starvation in some
3462 // debugging scenarios.
3463 debug->clear_interrupt_pending(PREEMPT);
3464 isolate_->stack_guard()->Preempt();
3465 }
3466 if (debug->is_interrupt_pending(DEBUGBREAK)) {
3467 debug->clear_interrupt_pending(DEBUGBREAK);
3468 isolate_->stack_guard()->DebugBreak();
3469 }
3470
3471 // If there are commands in the queue when leaving the debugger request
3472 // that these commands are processed.
3473 if (isolate_->debugger()->HasCommands()) {
3474 isolate_->stack_guard()->DebugCommand();
3475 }
3476
3477 // If leaving the debugger with the debugger no longer active unload it.
3478 if (!isolate_->debugger()->IsDebuggerActive()) {
3479 isolate_->debugger()->UnloadDebugger();
3480 }
3481 }
3482
3483 // Leaving this debugger entry.
3484 debug->set_debugger_entry(prev_);
3485}
3486
3487
ager@chromium.org5ec48922009-05-05 07:25:34 +00003488MessageImpl MessageImpl::NewEvent(DebugEvent event,
3489 bool running,
3490 Handle<JSObject> exec_state,
3491 Handle<JSObject> event_data) {
3492 MessageImpl message(true, event, running,
3493 exec_state, event_data, Handle<String>(), NULL);
3494 return message;
3495}
3496
3497
3498MessageImpl MessageImpl::NewResponse(DebugEvent event,
3499 bool running,
3500 Handle<JSObject> exec_state,
3501 Handle<JSObject> event_data,
3502 Handle<String> response_json,
3503 v8::Debug::ClientData* client_data) {
3504 MessageImpl message(false, event, running,
3505 exec_state, event_data, response_json, client_data);
3506 return message;
3507}
3508
3509
3510MessageImpl::MessageImpl(bool is_event,
3511 DebugEvent event,
3512 bool running,
3513 Handle<JSObject> exec_state,
3514 Handle<JSObject> event_data,
3515 Handle<String> response_json,
3516 v8::Debug::ClientData* client_data)
3517 : is_event_(is_event),
3518 event_(event),
3519 running_(running),
3520 exec_state_(exec_state),
3521 event_data_(event_data),
3522 response_json_(response_json),
3523 client_data_(client_data) {}
3524
3525
3526bool MessageImpl::IsEvent() const {
3527 return is_event_;
3528}
3529
3530
3531bool MessageImpl::IsResponse() const {
3532 return !is_event_;
3533}
3534
3535
3536DebugEvent MessageImpl::GetEvent() const {
3537 return event_;
3538}
3539
3540
3541bool MessageImpl::WillStartRunning() const {
3542 return running_;
3543}
3544
3545
3546v8::Handle<v8::Object> MessageImpl::GetExecutionState() const {
3547 return v8::Utils::ToLocal(exec_state_);
3548}
3549
3550
3551v8::Handle<v8::Object> MessageImpl::GetEventData() const {
3552 return v8::Utils::ToLocal(event_data_);
3553}
3554
3555
3556v8::Handle<v8::String> MessageImpl::GetJSON() const {
3557 v8::HandleScope scope;
3558
3559 if (IsEvent()) {
3560 // Call toJSONProtocol on the debug event object.
3561 Handle<Object> fun = GetProperty(event_data_, "toJSONProtocol");
3562 if (!fun->IsJSFunction()) {
3563 return v8::Handle<v8::String>();
3564 }
3565 bool caught_exception;
3566 Handle<Object> json = Execution::TryCall(Handle<JSFunction>::cast(fun),
3567 event_data_,
3568 0, NULL, &caught_exception);
3569 if (caught_exception || !json->IsString()) {
3570 return v8::Handle<v8::String>();
3571 }
3572 return scope.Close(v8::Utils::ToLocal(Handle<String>::cast(json)));
3573 } else {
3574 return v8::Utils::ToLocal(response_json_);
3575 }
3576}
3577
3578
3579v8::Handle<v8::Context> MessageImpl::GetEventContext() const {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003580 Isolate* isolate = Isolate::Current();
3581 v8::Handle<v8::Context> context = GetDebugEventContext(isolate);
3582 // Isolate::context() may be NULL when "script collected" event occures.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003583 ASSERT(!context.IsEmpty() || event_ == v8::ScriptCollected);
rossberg@chromium.org717967f2011-07-20 13:44:42 +00003584 return context;
ager@chromium.org5ec48922009-05-05 07:25:34 +00003585}
3586
3587
3588v8::Debug::ClientData* MessageImpl::GetClientData() const {
3589 return client_data_;
3590}
3591
3592
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003593EventDetailsImpl::EventDetailsImpl(DebugEvent event,
3594 Handle<JSObject> exec_state,
3595 Handle<JSObject> event_data,
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00003596 Handle<Object> callback_data,
3597 v8::Debug::ClientData* client_data)
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003598 : event_(event),
3599 exec_state_(exec_state),
3600 event_data_(event_data),
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00003601 callback_data_(callback_data),
3602 client_data_(client_data) {}
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003603
3604
3605DebugEvent EventDetailsImpl::GetEvent() const {
3606 return event_;
3607}
3608
3609
3610v8::Handle<v8::Object> EventDetailsImpl::GetExecutionState() const {
3611 return v8::Utils::ToLocal(exec_state_);
3612}
3613
3614
3615v8::Handle<v8::Object> EventDetailsImpl::GetEventData() const {
3616 return v8::Utils::ToLocal(event_data_);
3617}
3618
3619
3620v8::Handle<v8::Context> EventDetailsImpl::GetEventContext() const {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003621 return GetDebugEventContext(Isolate::Current());
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003622}
3623
3624
3625v8::Handle<v8::Value> EventDetailsImpl::GetCallbackData() const {
3626 return v8::Utils::ToLocal(callback_data_);
3627}
3628
3629
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +00003630v8::Debug::ClientData* EventDetailsImpl::GetClientData() const {
3631 return client_data_;
3632}
3633
3634
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003635CommandMessage::CommandMessage() : text_(Vector<uint16_t>::empty()),
3636 client_data_(NULL) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003637}
3638
3639
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003640CommandMessage::CommandMessage(const Vector<uint16_t>& text,
3641 v8::Debug::ClientData* data)
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003642 : text_(text),
3643 client_data_(data) {
3644}
3645
3646
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003647CommandMessage::~CommandMessage() {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003648}
3649
3650
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003651void CommandMessage::Dispose() {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003652 text_.Dispose();
3653 delete client_data_;
3654 client_data_ = NULL;
3655}
3656
3657
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003658CommandMessage CommandMessage::New(const Vector<uint16_t>& command,
3659 v8::Debug::ClientData* data) {
3660 return CommandMessage(command.Clone(), data);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003661}
3662
3663
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003664CommandMessageQueue::CommandMessageQueue(int size) : start_(0), end_(0),
3665 size_(size) {
3666 messages_ = NewArray<CommandMessage>(size);
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003667}
3668
3669
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003670CommandMessageQueue::~CommandMessageQueue() {
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003671 while (!IsEmpty()) {
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003672 CommandMessage m = Get();
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003673 m.Dispose();
3674 }
kasper.lund7276f142008-07-30 08:49:36 +00003675 DeleteArray(messages_);
3676}
3677
3678
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003679CommandMessage CommandMessageQueue::Get() {
kasper.lund7276f142008-07-30 08:49:36 +00003680 ASSERT(!IsEmpty());
3681 int result = start_;
3682 start_ = (start_ + 1) % size_;
3683 return messages_[result];
3684}
3685
3686
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003687void CommandMessageQueue::Put(const CommandMessage& message) {
kasper.lund7276f142008-07-30 08:49:36 +00003688 if ((end_ + 1) % size_ == start_) {
3689 Expand();
3690 }
3691 messages_[end_] = message;
3692 end_ = (end_ + 1) % size_;
3693}
3694
3695
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003696void CommandMessageQueue::Expand() {
3697 CommandMessageQueue new_queue(size_ * 2);
kasper.lund7276f142008-07-30 08:49:36 +00003698 while (!IsEmpty()) {
3699 new_queue.Put(Get());
3700 }
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003701 CommandMessage* array_to_free = messages_;
kasper.lund7276f142008-07-30 08:49:36 +00003702 *this = new_queue;
3703 new_queue.messages_ = array_to_free;
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003704 // Make the new_queue empty so that it doesn't call Dispose on any messages.
3705 new_queue.start_ = new_queue.end_;
kasper.lund7276f142008-07-30 08:49:36 +00003706 // Automatic destructor called on new_queue, freeing array_to_free.
3707}
3708
3709
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003710LockingCommandMessageQueue::LockingCommandMessageQueue(Logger* logger, int size)
3711 : logger_(logger), queue_(size) {
kasper.lund7276f142008-07-30 08:49:36 +00003712 lock_ = OS::CreateMutex();
3713}
3714
3715
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003716LockingCommandMessageQueue::~LockingCommandMessageQueue() {
kasper.lund7276f142008-07-30 08:49:36 +00003717 delete lock_;
3718}
3719
3720
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003721bool LockingCommandMessageQueue::IsEmpty() const {
kasper.lund7276f142008-07-30 08:49:36 +00003722 ScopedLock sl(lock_);
3723 return queue_.IsEmpty();
3724}
3725
3726
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003727CommandMessage LockingCommandMessageQueue::Get() {
kasper.lund7276f142008-07-30 08:49:36 +00003728 ScopedLock sl(lock_);
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003729 CommandMessage result = queue_.Get();
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003730 logger_->DebugEvent("Get", result.text());
kasper.lund7276f142008-07-30 08:49:36 +00003731 return result;
3732}
3733
3734
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003735void LockingCommandMessageQueue::Put(const CommandMessage& message) {
kasper.lund7276f142008-07-30 08:49:36 +00003736 ScopedLock sl(lock_);
3737 queue_.Put(message);
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003738 logger_->DebugEvent("Put", message.text());
kasper.lund7276f142008-07-30 08:49:36 +00003739}
3740
3741
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003742void LockingCommandMessageQueue::Clear() {
kasper.lund7276f142008-07-30 08:49:36 +00003743 ScopedLock sl(lock_);
3744 queue_.Clear();
3745}
3746
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003747
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00003748MessageDispatchHelperThread::MessageDispatchHelperThread(Isolate* isolate)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003749 : Thread("v8:MsgDispHelpr"),
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003750 sem_(OS::CreateSemaphore(0)), mutex_(OS::CreateMutex()),
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003751 already_signalled_(false) {
3752}
3753
3754
3755MessageDispatchHelperThread::~MessageDispatchHelperThread() {
3756 delete mutex_;
3757 delete sem_;
3758}
3759
3760
3761void MessageDispatchHelperThread::Schedule() {
3762 {
3763 ScopedLock lock(mutex_);
3764 if (already_signalled_) {
3765 return;
3766 }
3767 already_signalled_ = true;
3768 }
3769 sem_->Signal();
3770}
3771
3772
3773void MessageDispatchHelperThread::Run() {
yangguo@chromium.org46a2a512013-01-18 16:29:40 +00003774 Isolate* isolate = Isolate::Current();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003775 while (true) {
3776 sem_->Wait();
3777 {
3778 ScopedLock lock(mutex_);
3779 already_signalled_ = false;
3780 }
3781 {
yangguo@chromium.org46a2a512013-01-18 16:29:40 +00003782 Locker locker(reinterpret_cast<v8::Isolate*>(isolate));
3783 isolate->debugger()->CallMessageDispatchHandler();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003784 }
3785 }
3786}
3787
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003788#endif // ENABLE_DEBUGGER_SUPPORT
kasper.lund7276f142008-07-30 08:49:36 +00003789
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003790} } // namespace v8::internal