blob: 1c674711d94b068b6987c2f78dbfdb77b3d59f27 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 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
ager@chromium.org5ec48922009-05-05 07:25:34 +000028#ifndef V8_DEBUG_H_
29#define V8_DEBUG_H_
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000030
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000031#include "assembler.h"
32#include "code-stubs.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000033#include "debug-agent.h"
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000034#include "execution.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035#include "factory.h"
kasperl@chromium.org71affb52009-05-26 05:44:31 +000036#include "hashmap.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000037#include "platform.h"
38#include "string-stream.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000039#include "v8threads.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040
ager@chromium.org65dad4b2009-04-23 08:48:43 +000041#ifdef ENABLE_DEBUGGER_SUPPORT
42#include "../include/v8-debug.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000043
kasperl@chromium.org71affb52009-05-26 05:44:31 +000044namespace v8 {
45namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000046
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000047
48// Forward declarations.
49class EnterDebugger;
50
51
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000052// Step actions. NOTE: These values are in macros.py as well.
53enum StepAction {
54 StepNone = -1, // Stepping not prepared.
55 StepOut = 0, // Step out of the current function.
56 StepNext = 1, // Step to the next statement in the current function.
57 StepIn = 2, // Step into new functions invoked or the next statement
58 // in the current function.
59 StepMin = 3, // Perform a minimum step in the current function.
60 StepInMin = 4 // Step into new functions invoked or perform a minimum step
61 // in the current function.
62};
63
64
65// Type of exception break. NOTE: These values are in macros.py as well.
66enum ExceptionBreakType {
67 BreakException = 0,
68 BreakUncaughtException = 1
69};
70
71
72// Type of exception break. NOTE: These values are in macros.py as well.
73enum BreakLocatorType {
74 ALL_BREAK_LOCATIONS = 0,
75 SOURCE_BREAK_LOCATIONS = 1
76};
77
78
79// Class for iterating through the break points in a function and changing
80// them.
81class BreakLocationIterator {
82 public:
83 explicit BreakLocationIterator(Handle<DebugInfo> debug_info,
84 BreakLocatorType type);
85 virtual ~BreakLocationIterator();
86
87 void Next();
88 void Next(int count);
89 void FindBreakLocationFromAddress(Address pc);
90 void FindBreakLocationFromPosition(int position);
91 void Reset();
92 bool Done() const;
93 void SetBreakPoint(Handle<Object> break_point_object);
94 void ClearBreakPoint(Handle<Object> break_point_object);
95 void SetOneShot();
96 void ClearOneShot();
97 void PrepareStepIn();
98 bool IsExit() const;
99 bool HasBreakPoint();
100 bool IsDebugBreak();
101 Object* BreakPointObjects();
ager@chromium.org381abbb2009-02-25 13:23:22 +0000102 void ClearAllDebugBreak();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103
104
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000105 inline int code_position() {
106 return static_cast<int>(pc() - debug_info_->code()->entry());
107 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000108 inline int break_point() { return break_point_; }
109 inline int position() { return position_; }
110 inline int statement_position() { return statement_position_; }
111 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
112 inline Code* code() { return debug_info_->code(); }
113 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); }
ager@chromium.org236ad962008-09-25 09:45:57 +0000114 inline RelocInfo::Mode rmode() const {
115 return reloc_iterator_->rinfo()->rmode();
116 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000117 inline RelocInfo* original_rinfo() {
118 return reloc_iterator_original_->rinfo();
119 }
ager@chromium.org236ad962008-09-25 09:45:57 +0000120 inline RelocInfo::Mode original_rmode() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000121 return reloc_iterator_original_->rinfo()->rmode();
122 }
123
ager@chromium.orga1645e22009-09-09 19:27:10 +0000124 bool IsDebuggerStatement();
125
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000126 protected:
127 bool RinfoDone() const;
128 void RinfoNext();
129
130 BreakLocatorType type_;
131 int break_point_;
132 int position_;
133 int statement_position_;
134 Handle<DebugInfo> debug_info_;
135 RelocIterator* reloc_iterator_;
136 RelocIterator* reloc_iterator_original_;
137
138 private:
139 void SetDebugBreak();
140 void ClearDebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000141
142 void SetDebugBreakAtIC();
143 void ClearDebugBreakAtIC();
144
iposva@chromium.org245aa852009-02-10 00:49:54 +0000145 bool IsDebugBreakAtReturn();
146 void SetDebugBreakAtReturn();
147 void ClearDebugBreakAtReturn();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000148
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000149 bool IsDebugBreakSlot();
150 bool IsDebugBreakAtSlot();
151 void SetDebugBreakAtSlot();
152 void ClearDebugBreakAtSlot();
153
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000154 DISALLOW_COPY_AND_ASSIGN(BreakLocationIterator);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000155};
156
157
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000158// Cache of all script objects in the heap. When a script is added a weak handle
159// to it is created and that weak handle is stored in the cache. The weak handle
160// callback takes care of removing the script from the cache. The key used in
161// the cache is the script id.
162class ScriptCache : private HashMap {
163 public:
164 ScriptCache() : HashMap(ScriptMatch), collected_scripts_(10) {}
165 virtual ~ScriptCache() { Clear(); }
166
167 // Add script to the cache.
168 void Add(Handle<Script> script);
169
170 // Return the scripts in the cache.
171 Handle<FixedArray> GetScripts();
172
173 // Generate debugger events for collected scripts.
174 void ProcessCollectedScripts();
175
176 private:
177 // Calculate the hash value from the key (script id).
178 static uint32_t Hash(int key) { return ComputeIntegerHash(key); }
179
180 // Scripts match if their keys (script id) match.
181 static bool ScriptMatch(void* key1, void* key2) { return key1 == key2; }
182
183 // Clear the cache releasing all the weak handles.
184 void Clear();
185
186 // Weak handle callback for scripts in the cache.
187 static void HandleWeakScript(v8::Persistent<v8::Value> obj, void* data);
188
189 // List used during GC to temporarily store id's of collected scripts.
190 List<int> collected_scripts_;
191};
192
193
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000194// Linked list holding debug info objects. The debug info objects are kept as
195// weak handles to avoid a debug info object to keep a function alive.
196class DebugInfoListNode {
197 public:
198 explicit DebugInfoListNode(DebugInfo* debug_info);
199 virtual ~DebugInfoListNode();
200
201 DebugInfoListNode* next() { return next_; }
202 void set_next(DebugInfoListNode* next) { next_ = next; }
203 Handle<DebugInfo> debug_info() { return debug_info_; }
204
205 private:
206 // Global (weak) handle to the debug info object.
207 Handle<DebugInfo> debug_info_;
208
209 // Next pointer for linked list.
210 DebugInfoListNode* next_;
211};
212
213
214// This class contains the debugger support. The main purpose is to handle
215// setting break points in the code.
216//
217// This class controls the debug info for all functions which currently have
218// active breakpoints in them. This debug info is held in the heap root object
219// debug_info which is a FixedArray. Each entry in this list is of class
220// DebugInfo.
221class Debug {
222 public:
223 static void Setup(bool create_heap_objects);
224 static bool Load();
225 static void Unload();
226 static bool IsLoaded() { return !debug_context_.is_null(); }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000227 static bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
228 static void PreemptionWhileInDebugger();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000229 static void Iterate(ObjectVisitor* v);
230
231 static Object* Break(Arguments args);
232 static void SetBreakPoint(Handle<SharedFunctionInfo> shared,
233 int source_position,
234 Handle<Object> break_point_object);
235 static void ClearBreakPoint(Handle<Object> break_point_object);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000236 static void ClearAllBreakPoints();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000237 static void FloodWithOneShot(Handle<SharedFunctionInfo> shared);
238 static void FloodHandlerWithOneShot();
239 static void ChangeBreakOnException(ExceptionBreakType type, bool enable);
240 static void PrepareStep(StepAction step_action, int step_count);
241 static void ClearStepping();
242 static bool StepNextContinue(BreakLocationIterator* break_location_iterator,
243 JavaScriptFrame* frame);
244 static Handle<DebugInfo> GetDebugInfo(Handle<SharedFunctionInfo> shared);
245 static bool HasDebugInfo(Handle<SharedFunctionInfo> shared);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000246
ager@chromium.org32912102009-01-16 10:38:43 +0000247 // Returns whether the operation succeeded.
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000248 static bool EnsureDebugInfo(Handle<SharedFunctionInfo> shared);
249
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000250 // Returns true if the current stub call is patched to call the debugger.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000251 static bool IsDebugBreak(Address addr);
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000252 // Returns true if the current return statement has been patched to be
253 // a debugger breakpoint.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000254 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000255
256 // Check whether a code stub with the specified major key is a possible break
257 // point location.
258 static bool IsSourceBreakStub(Code* code);
259 static bool IsBreakStub(Code* code);
260
261 // Find the builtin to use for invoking the debug break
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000262 static Handle<Code> FindDebugBreak(Handle<Code> code, RelocInfo::Mode mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000263
264 static Handle<Object> GetSourceBreakLocations(
265 Handle<SharedFunctionInfo> shared);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000266
267 // Getter for the debug_context.
268 inline static Handle<Context> debug_context() { return debug_context_; }
269
270 // Check whether a global object is the debug global object.
271 static bool IsDebugGlobal(GlobalObject* global);
272
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000273 // Check whether this frame is just about to return.
274 static bool IsBreakAtReturn(JavaScriptFrame* frame);
275
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000276 // Fast check to see if any break points are active.
277 inline static bool has_break_points() { return has_break_points_; }
278
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000279 static void NewBreak(StackFrame::Id break_frame_id);
280 static void SetBreak(StackFrame::Id break_frame_id, int break_id);
281 static StackFrame::Id break_frame_id() {
282 return thread_local_.break_frame_id_;
283 }
284 static int break_id() { return thread_local_.break_id_; }
285
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000286 static bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000287 static void HandleStepIn(Handle<JSFunction> function,
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +0000288 Handle<Object> holder,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000289 Address fp,
290 bool is_constructor);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000291 static Address step_in_fp() { return thread_local_.step_into_fp_; }
292 static Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
293
ager@chromium.orga1645e22009-09-09 19:27:10 +0000294 static bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
295 static Address step_out_fp() { return thread_local_.step_out_fp_; }
296
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000297 static EnterDebugger* debugger_entry() {
298 return thread_local_.debugger_entry_;
299 }
300 static void set_debugger_entry(EnterDebugger* entry) {
301 thread_local_.debugger_entry_ = entry;
302 }
303
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000304 // Check whether any of the specified interrupts are pending.
305 static bool is_interrupt_pending(InterruptFlag what) {
306 return (thread_local_.pending_interrupts_ & what) != 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000307 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000308
309 // Set specified interrupts as pending.
310 static void set_interrupts_pending(InterruptFlag what) {
311 thread_local_.pending_interrupts_ |= what;
312 }
313
314 // Clear specified interrupts from pending.
315 static void clear_interrupt_pending(InterruptFlag what) {
316 thread_local_.pending_interrupts_ &= ~static_cast<int>(what);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000317 }
318
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000319 // Getter and setter for the disable break state.
320 static bool disable_break() { return disable_break_; }
321 static void set_disable_break(bool disable_break) {
322 disable_break_ = disable_break;
323 }
324
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000325 // Getters for the current exception break state.
326 static bool break_on_exception() { return break_on_exception_; }
327 static bool break_on_uncaught_exception() {
328 return break_on_uncaught_exception_;
329 }
330
331 enum AddressId {
332 k_after_break_target_address,
333 k_debug_break_return_address,
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000334 k_debug_break_slot_address,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000335 k_register_address
336 };
337
338 // Support for setting the address to jump to when returning from break point.
339 static Address* after_break_target_address() {
340 return reinterpret_cast<Address*>(&thread_local_.after_break_target_);
341 }
342
343 // Support for saving/restoring registers when handling debug break calls.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000344 static Object** register_address(int r) {
345 return &registers_[r];
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346 }
347
ager@chromium.orga1645e22009-09-09 19:27:10 +0000348 // Access to the debug break on return code.
349 static Code* debug_break_return() { return debug_break_return_; }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000350 static Code** debug_break_return_address() {
351 return &debug_break_return_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000352 }
353
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000354 // Access to the debug break in debug break slot code.
355 static Code* debug_break_slot() { return debug_break_slot_; }
356 static Code** debug_break_slot_address() {
357 return &debug_break_slot_;
358 }
359
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000360 static const int kEstimatedNofDebugInfoEntries = 16;
361 static const int kEstimatedNofBreakPointsInFunction = 16;
362
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000363 static void HandleWeakDebugInfo(v8::Persistent<v8::Value> obj, void* data);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000364
365 friend class Debugger;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000366 friend Handle<FixedArray> GetDebuggedFunctions(); // In test-debug.cc
367 friend void CheckDebuggerUnloaded(bool check_functions); // In test-debug.cc
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000368
369 // Threading support.
370 static char* ArchiveDebug(char* to);
371 static char* RestoreDebug(char* from);
372 static int ArchiveSpacePerThread();
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000373 static void FreeThreadResources() { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000374
ager@chromium.org32912102009-01-16 10:38:43 +0000375 // Mirror cache handling.
376 static void ClearMirrorCache();
377
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000378 // Script cache handling.
379 static void CreateScriptCache();
380 static void DestroyScriptCache();
381 static void AddScriptToScriptCache(Handle<Script> script);
382 static Handle<FixedArray> GetLoadedScripts();
383
384 // Garbage collection notifications.
385 static void AfterGarbageCollection();
386
ager@chromium.org8bb60582008-12-11 12:02:20 +0000387 // Code generator routines.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000388 static void GenerateSlot(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000389 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
390 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
391 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
392 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
393 static void GenerateConstructCallDebugBreak(MacroAssembler* masm);
394 static void GenerateReturnDebugBreak(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000395 static void GenerateStubNoRegistersDebugBreak(MacroAssembler* masm);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000396 static void GenerateSlotDebugBreak(MacroAssembler* masm);
ager@chromium.org357bf652010-04-12 11:30:10 +0000397 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
398 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000399
400 // Called from stub-cache.cc.
401 static void GenerateCallICDebugBreak(MacroAssembler* masm);
402
ager@chromium.org357bf652010-04-12 11:30:10 +0000403 static void FramesHaveBeenDropped(StackFrame::Id new_break_frame_id);
404
405 static void SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
406 Handle<Code> code);
407 static const int kFrameDropperFrameSize;
408
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000409 private:
410 static bool CompileDebuggerScript(int index);
411 static void ClearOneShot();
412 static void ActivateStepIn(StackFrame* frame);
413 static void ClearStepIn();
ager@chromium.orga1645e22009-09-09 19:27:10 +0000414 static void ActivateStepOut(StackFrame* frame);
415 static void ClearStepOut();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000416 static void ClearStepNext();
ager@chromium.org32912102009-01-16 10:38:43 +0000417 // Returns whether the compile succeeded.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000418 static void RemoveDebugInfo(Handle<DebugInfo> debug_info);
419 static void SetAfterBreakTarget(JavaScriptFrame* frame);
420 static Handle<Object> CheckBreakPoints(Handle<Object> break_point);
421 static bool CheckBreakPoint(Handle<Object> break_point_object);
422
423 // Global handle to debug context where all the debugger JavaScript code is
424 // loaded.
425 static Handle<Context> debug_context_;
426
427 // Boolean state indicating whether any break points are set.
428 static bool has_break_points_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000429
430 // Cache of all scripts in the heap.
431 static ScriptCache* script_cache_;
432
433 // List of active debug info objects.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000434 static DebugInfoListNode* debug_info_list_;
435
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000436 static bool disable_break_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000437 static bool break_on_exception_;
438 static bool break_on_uncaught_exception_;
439
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000440 // Per-thread data.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000441 class ThreadLocal {
442 public:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000443 // Counter for generating next break id.
444 int break_count_;
445
446 // Current break id.
447 int break_id_;
448
449 // Frame id for the frame of the current break.
450 StackFrame::Id break_frame_id_;
451
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000452 // Step action for last step performed.
453 StepAction last_step_action_;
454
455 // Source statement position from last step next action.
456 int last_statement_position_;
457
458 // Number of steps left to perform before debug event.
459 int step_count_;
460
461 // Frame pointer from last step next action.
462 Address last_fp_;
463
464 // Frame pointer for frame from which step in was performed.
465 Address step_into_fp_;
466
ager@chromium.orga1645e22009-09-09 19:27:10 +0000467 // Frame pointer for the frame where debugger should be called when current
468 // step out action is completed.
469 Address step_out_fp_;
470
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000471 // Storage location for jump when exiting debug break calls.
472 Address after_break_target_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000473
ager@chromium.org357bf652010-04-12 11:30:10 +0000474 // Indicates that LiveEdit has patched the stack.
475 bool frames_are_dropped_;
476
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000477 // Top debugger entry.
478 EnterDebugger* debugger_entry_;
479
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000480 // Pending interrupts scheduled while debugging.
481 int pending_interrupts_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000482 };
483
484 // Storage location for registers when handling debug break calls
485 static JSCallerSavedBuffer registers_;
486 static ThreadLocal thread_local_;
487 static void ThreadInit();
488
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000489 // Code to call for handling debug break on return.
490 static Code* debug_break_return_;
491
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000492 // Code to call for handling debug break in debug break slots.
493 static Code* debug_break_slot_;
494
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000495 DISALLOW_COPY_AND_ASSIGN(Debug);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000496};
497
498
ager@chromium.org5ec48922009-05-05 07:25:34 +0000499// Message delivered to the message handler callback. This is either a debugger
500// event or the response to a command.
501class MessageImpl: public v8::Debug::Message {
502 public:
503 // Create a message object for a debug event.
504 static MessageImpl NewEvent(DebugEvent event,
505 bool running,
506 Handle<JSObject> exec_state,
507 Handle<JSObject> event_data);
508
509 // Create a message object for the response to a debug command.
510 static MessageImpl NewResponse(DebugEvent event,
511 bool running,
512 Handle<JSObject> exec_state,
513 Handle<JSObject> event_data,
514 Handle<String> response_json,
515 v8::Debug::ClientData* client_data);
516
517 // Implementation of interface v8::Debug::Message.
518 virtual bool IsEvent() const;
519 virtual bool IsResponse() const;
520 virtual DebugEvent GetEvent() const;
521 virtual bool WillStartRunning() const;
522 virtual v8::Handle<v8::Object> GetExecutionState() const;
523 virtual v8::Handle<v8::Object> GetEventData() const;
524 virtual v8::Handle<v8::String> GetJSON() const;
525 virtual v8::Handle<v8::Context> GetEventContext() const;
526 virtual v8::Debug::ClientData* GetClientData() const;
527
528 private:
529 MessageImpl(bool is_event,
530 DebugEvent event,
531 bool running,
532 Handle<JSObject> exec_state,
533 Handle<JSObject> event_data,
534 Handle<String> response_json,
535 v8::Debug::ClientData* client_data);
536
537 bool is_event_; // Does this message represent a debug event?
538 DebugEvent event_; // Debug event causing the break.
539 bool running_; // Will the VM start running after this event?
540 Handle<JSObject> exec_state_; // Current execution state.
541 Handle<JSObject> event_data_; // Data associated with the event.
542 Handle<String> response_json_; // Response JSON if message holds a response.
543 v8::Debug::ClientData* client_data_; // Client data passed with the request.
544};
545
546
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000547// Details of the debug event delivered to the debug event listener.
548class EventDetailsImpl : public v8::Debug::EventDetails {
549 public:
550 EventDetailsImpl(DebugEvent event,
551 Handle<JSObject> exec_state,
552 Handle<JSObject> event_data,
553 Handle<Object> callback_data);
554 virtual DebugEvent GetEvent() const;
555 virtual v8::Handle<v8::Object> GetExecutionState() const;
556 virtual v8::Handle<v8::Object> GetEventData() const;
557 virtual v8::Handle<v8::Context> GetEventContext() const;
558 virtual v8::Handle<v8::Value> GetCallbackData() const;
559 private:
560 DebugEvent event_; // Debug event causing the break.
561 Handle<JSObject> exec_state_; // Current execution state.
562 Handle<JSObject> event_data_; // Data associated with the event.
563 Handle<Object> callback_data_; // User data passed with the callback when
564 // it was registered.
565};
566
567
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000568// Message send by user to v8 debugger or debugger output message.
569// In addition to command text it may contain a pointer to some user data
570// which are expected to be passed along with the command reponse to message
571// handler.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000572class CommandMessage {
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000573 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000574 static CommandMessage New(const Vector<uint16_t>& command,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000575 v8::Debug::ClientData* data);
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000576 CommandMessage();
577 ~CommandMessage();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000578
579 // Deletes user data and disposes of the text.
580 void Dispose();
581 Vector<uint16_t> text() const { return text_; }
582 v8::Debug::ClientData* client_data() const { return client_data_; }
583 private:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000584 CommandMessage(const Vector<uint16_t>& text,
585 v8::Debug::ClientData* data);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000586
587 Vector<uint16_t> text_;
588 v8::Debug::ClientData* client_data_;
589};
590
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000591// A Queue of CommandMessage objects. A thread-safe version is
592// LockingCommandMessageQueue, based on this class.
593class CommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000594 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000595 explicit CommandMessageQueue(int size);
596 ~CommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000597 bool IsEmpty() const { return start_ == end_; }
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000598 CommandMessage Get();
599 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000600 void Clear() { start_ = end_ = 0; } // Queue is empty after Clear().
601 private:
602 // Doubles the size of the message queue, and copies the messages.
603 void Expand();
604
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000605 CommandMessage* messages_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000606 int start_;
607 int end_;
608 int size_; // The size of the queue buffer. Queue can hold size-1 messages.
609};
610
611
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000612class MessageDispatchHelperThread;
613
614
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000615// LockingCommandMessageQueue is a thread-safe circular buffer of CommandMessage
616// messages. The message data is not managed by LockingCommandMessageQueue.
ager@chromium.org41826e72009-03-30 13:30:57 +0000617// Pointers to the data are passed in and out. Implemented by adding a
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000618// Mutex to CommandMessageQueue. Includes logging of all puts and gets.
619class LockingCommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000620 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000621 explicit LockingCommandMessageQueue(int size);
622 ~LockingCommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000623 bool IsEmpty() const;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000624 CommandMessage Get();
625 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000626 void Clear();
627 private:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000628 CommandMessageQueue queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000629 Mutex* lock_;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000630 DISALLOW_COPY_AND_ASSIGN(LockingCommandMessageQueue);
ager@chromium.org41826e72009-03-30 13:30:57 +0000631};
632
633
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000634class Debugger {
635 public:
636 static void DebugRequest(const uint16_t* json_request, int length);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000637
638 static Handle<Object> MakeJSObject(Vector<const char> constructor_name,
639 int argc, Object*** argv,
640 bool* caught_exception);
641 static Handle<Object> MakeExecutionState(bool* caught_exception);
642 static Handle<Object> MakeBreakEvent(Handle<Object> exec_state,
643 Handle<Object> break_points_hit,
644 bool* caught_exception);
645 static Handle<Object> MakeExceptionEvent(Handle<Object> exec_state,
646 Handle<Object> exception,
647 bool uncaught,
648 bool* caught_exception);
649 static Handle<Object> MakeNewFunctionEvent(Handle<Object> func,
650 bool* caught_exception);
651 static Handle<Object> MakeCompileEvent(Handle<Script> script,
iposva@chromium.org245aa852009-02-10 00:49:54 +0000652 bool before,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000653 bool* caught_exception);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000654 static Handle<Object> MakeScriptCollectedEvent(int id,
655 bool* caught_exception);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000656 static void OnDebugBreak(Handle<Object> break_points_hit, bool auto_continue);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000657 static void OnException(Handle<Object> exception, bool uncaught);
658 static void OnBeforeCompile(Handle<Script> script);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000659
660 enum AfterCompileFlags {
661 NO_AFTER_COMPILE_FLAGS,
662 SEND_WHEN_DEBUGGING
663 };
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000664 static void OnAfterCompile(Handle<Script> script,
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000665 AfterCompileFlags after_compile_flags);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000666 static void OnNewFunction(Handle<JSFunction> fun);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000667 static void OnScriptCollected(int id);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000668 static void ProcessDebugEvent(v8::DebugEvent event,
ager@chromium.org5ec48922009-05-05 07:25:34 +0000669 Handle<JSObject> event_data,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000670 bool auto_continue);
ager@chromium.org41826e72009-03-30 13:30:57 +0000671 static void NotifyMessageHandler(v8::DebugEvent event,
ager@chromium.org5ec48922009-05-05 07:25:34 +0000672 Handle<JSObject> exec_state,
673 Handle<JSObject> event_data,
ager@chromium.org41826e72009-03-30 13:30:57 +0000674 bool auto_continue);
iposva@chromium.org245aa852009-02-10 00:49:54 +0000675 static void SetEventListener(Handle<Object> callback, Handle<Object> data);
ager@chromium.org5ec48922009-05-05 07:25:34 +0000676 static void SetMessageHandler(v8::Debug::MessageHandler2 handler);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000677 static void SetHostDispatchHandler(v8::Debug::HostDispatchHandler handler,
678 int period);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000679 static void SetDebugMessageDispatchHandler(
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000680 v8::Debug::DebugMessageDispatchHandler handler,
681 bool provide_locker);
ager@chromium.org41826e72009-03-30 13:30:57 +0000682
683 // Invoke the message handler function.
ager@chromium.org5ec48922009-05-05 07:25:34 +0000684 static void InvokeMessageHandler(MessageImpl message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000685
686 // Add a debugger command to the command queue.
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000687 static void ProcessCommand(Vector<const uint16_t> command,
688 v8::Debug::ClientData* client_data = NULL);
ager@chromium.org41826e72009-03-30 13:30:57 +0000689
690 // Check whether there are commands in the command queue.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000691 static bool HasCommands();
ager@chromium.org41826e72009-03-30 13:30:57 +0000692
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000693 static Handle<Object> Call(Handle<JSFunction> fun,
694 Handle<Object> data,
695 bool* pending_exception);
696
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000697 // Start the debugger agent listening on the provided port.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000698 static bool StartAgent(const char* name, int port,
699 bool wait_for_connection = false);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000700
701 // Stop the debugger agent.
702 static void StopAgent();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000703
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000704 // Blocks until the agent has started listening for connections
705 static void WaitForAgent();
706
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000707 static void CallMessageDispatchHandler();
708
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000709 static Handle<Context> GetDebugContext();
710
ager@chromium.org71daaf62009-04-01 07:22:49 +0000711 // Unload the debugger if possible. Only called when no debugger is currently
712 // active.
713 static void UnloadDebugger();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000714 friend void ForceUnloadDebugger(); // In test-debug.cc
ager@chromium.org71daaf62009-04-01 07:22:49 +0000715
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000716 inline static bool EventActive(v8::DebugEvent event) {
ager@chromium.org71daaf62009-04-01 07:22:49 +0000717 ScopedLock with(debugger_access_);
718
719 // Check whether the message handler was been cleared.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000720 if (debugger_unload_pending_) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000721 if (Debug::debugger_entry() == NULL) {
722 UnloadDebugger();
723 }
ager@chromium.org71daaf62009-04-01 07:22:49 +0000724 }
725
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000726 // Currently argument event is not used.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000727 return !compiling_natives_ && Debugger::IsDebuggerActive();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000728 }
729
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000730 static void set_compiling_natives(bool compiling_natives) {
731 Debugger::compiling_natives_ = compiling_natives;
732 }
733 static bool compiling_natives() { return Debugger::compiling_natives_; }
mads.s.agercbaa0602008-08-14 13:41:48 +0000734 static void set_loading_debugger(bool v) { is_loading_debugger_ = v; }
735 static bool is_loading_debugger() { return Debugger::is_loading_debugger_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000736
ager@chromium.org71daaf62009-04-01 07:22:49 +0000737 static bool IsDebuggerActive();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000738
739 private:
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000740 static void ListenersChanged();
ager@chromium.org71daaf62009-04-01 07:22:49 +0000741
742 static Mutex* debugger_access_; // Mutex guarding debugger variables.
743 static Handle<Object> event_listener_; // Global handle to listener.
iposva@chromium.org245aa852009-02-10 00:49:54 +0000744 static Handle<Object> event_listener_data_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000745 static bool compiling_natives_; // Are we compiling natives?
mads.s.agercbaa0602008-08-14 13:41:48 +0000746 static bool is_loading_debugger_; // Are we loading the debugger?
ager@chromium.org71daaf62009-04-01 07:22:49 +0000747 static bool never_unload_debugger_; // Can we unload the debugger?
ager@chromium.org5ec48922009-05-05 07:25:34 +0000748 static v8::Debug::MessageHandler2 message_handler_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000749 static bool debugger_unload_pending_; // Was message handler cleared?
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000750 static v8::Debug::HostDispatchHandler host_dispatch_handler_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000751 static Mutex* dispatch_handler_access_; // Mutex guarding dispatch handler.
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000752 static v8::Debug::DebugMessageDispatchHandler debug_message_dispatch_handler_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000753 static MessageDispatchHelperThread* message_dispatch_helper_thread_;
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000754 static int host_dispatch_micros_;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000755
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000756 static DebuggerAgent* agent_;
757
ager@chromium.org41826e72009-03-30 13:30:57 +0000758 static const int kQueueInitialSize = 4;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000759 static LockingCommandMessageQueue command_queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000760 static Semaphore* command_received_; // Signaled for each command received.
ager@chromium.org41826e72009-03-30 13:30:57 +0000761
ager@chromium.org71daaf62009-04-01 07:22:49 +0000762 friend class EnterDebugger;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000763};
764
765
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000766// This class is used for entering the debugger. Create an instance in the stack
767// to enter the debugger. This will set the current break state, make sure the
768// debugger is loaded and switch to the debugger context. If the debugger for
769// some reason could not be entered FailedToEnter will return true.
770class EnterDebugger BASE_EMBEDDED {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000771 public:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000772 EnterDebugger()
773 : prev_(Debug::debugger_entry()),
774 has_js_frames_(!it_.done()) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000775 ASSERT(prev_ != NULL || !Debug::is_interrupt_pending(PREEMPT));
776 ASSERT(prev_ != NULL || !Debug::is_interrupt_pending(DEBUGBREAK));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000777
778 // Link recursive debugger entry.
779 Debug::set_debugger_entry(this);
780
ager@chromium.org8bb60582008-12-11 12:02:20 +0000781 // Store the previous break id and frame id.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000782 break_id_ = Debug::break_id();
783 break_frame_id_ = Debug::break_frame_id();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000784
ager@chromium.org8bb60582008-12-11 12:02:20 +0000785 // Create the new break info. If there is no JavaScript frames there is no
786 // break frame id.
787 if (has_js_frames_) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000788 Debug::NewBreak(it_.frame()->id());
ager@chromium.org8bb60582008-12-11 12:02:20 +0000789 } else {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000790 Debug::NewBreak(StackFrame::NO_ID);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000791 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000792
793 // Make sure that debugger is loaded and enter the debugger context.
794 load_failed_ = !Debug::Load();
795 if (!load_failed_) {
796 // NOTE the member variable save which saves the previous context before
797 // this change.
798 Top::set_context(*Debug::debug_context());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000799 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000800 }
801
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000802 ~EnterDebugger() {
ager@chromium.org8bb60582008-12-11 12:02:20 +0000803 // Restore to the previous break state.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000804 Debug::SetBreak(break_frame_id_, break_id_);
805
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000806 // Check for leaving the debugger.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000807 if (prev_ == NULL) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000808 // Clear mirror cache when leaving the debugger. Skip this if there is a
809 // pending exception as clearing the mirror cache calls back into
810 // JavaScript. This can happen if the v8::Debug::Call is used in which
811 // case the exception should end up in the calling code.
812 if (!Top::has_pending_exception()) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000813 // Try to avoid any pending debug break breaking in the clear mirror
814 // cache JavaScript code.
815 if (StackGuard::IsDebugBreak()) {
816 Debug::set_interrupts_pending(DEBUGBREAK);
817 StackGuard::Continue(DEBUGBREAK);
818 }
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000819 Debug::ClearMirrorCache();
820 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000821
822 // Request preemption and debug break when leaving the last debugger entry
823 // if any of these where recorded while debugging.
824 if (Debug::is_interrupt_pending(PREEMPT)) {
825 // This re-scheduling of preemption is to avoid starvation in some
826 // debugging scenarios.
827 Debug::clear_interrupt_pending(PREEMPT);
828 StackGuard::Preempt();
829 }
830 if (Debug::is_interrupt_pending(DEBUGBREAK)) {
831 Debug::clear_interrupt_pending(DEBUGBREAK);
832 StackGuard::DebugBreak();
833 }
834
835 // If there are commands in the queue when leaving the debugger request
836 // that these commands are processed.
837 if (Debugger::HasCommands()) {
838 StackGuard::DebugCommand();
839 }
840
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000841 // If leaving the debugger with the debugger no longer active unload it.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000842 if (!Debugger::IsDebuggerActive()) {
843 Debugger::UnloadDebugger();
844 }
845 }
846
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000847 // Leaving this debugger entry.
848 Debug::set_debugger_entry(prev_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000849 }
850
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000851 // Check whether the debugger could be entered.
852 inline bool FailedToEnter() { return load_failed_; }
853
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000854 // Check whether there are any JavaScript frames on the stack.
ager@chromium.org8bb60582008-12-11 12:02:20 +0000855 inline bool HasJavaScriptFrames() { return has_js_frames_; }
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000856
ager@chromium.org9085a012009-05-11 19:22:57 +0000857 // Get the active context from before entering the debugger.
858 inline Handle<Context> GetContext() { return save_.context(); }
859
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000860 private:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000861 EnterDebugger* prev_; // Previous debugger entry if entered recursively.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000862 JavaScriptFrameIterator it_;
ager@chromium.org8bb60582008-12-11 12:02:20 +0000863 const bool has_js_frames_; // Were there any JavaScript frames?
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000864 StackFrame::Id break_frame_id_; // Previous break frame id.
865 int break_id_; // Previous break id.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000866 bool load_failed_; // Did the debugger fail to load?
867 SaveContext save_; // Saves previous context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000868};
869
870
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000871// Stack allocated class for disabling break.
872class DisableBreak BASE_EMBEDDED {
873 public:
874 // Enter the debugger by storing the previous top context and setting the
875 // current top context to the debugger context.
876 explicit DisableBreak(bool disable_break) {
877 prev_disable_break_ = Debug::disable_break();
878 Debug::set_disable_break(disable_break);
879 }
880 ~DisableBreak() {
881 Debug::set_disable_break(prev_disable_break_);
882 }
883
884 private:
885 // The previous state of the disable break used to restore the value when this
886 // object is destructed.
887 bool prev_disable_break_;
888};
889
890
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000891// Debug_Address encapsulates the Address pointers used in generating debug
892// code.
893class Debug_Address {
894 public:
895 Debug_Address(Debug::AddressId id, int reg = 0)
896 : id_(id), reg_(reg) {
897 ASSERT(reg == 0 || id == Debug::k_register_address);
898 }
899
900 static Debug_Address AfterBreakTarget() {
901 return Debug_Address(Debug::k_after_break_target_address);
902 }
903
904 static Debug_Address DebugBreakReturn() {
905 return Debug_Address(Debug::k_debug_break_return_address);
906 }
907
908 static Debug_Address Register(int reg) {
909 return Debug_Address(Debug::k_register_address, reg);
910 }
911
912 Address address() const {
913 switch (id_) {
914 case Debug::k_after_break_target_address:
915 return reinterpret_cast<Address>(Debug::after_break_target_address());
916 case Debug::k_debug_break_return_address:
917 return reinterpret_cast<Address>(Debug::debug_break_return_address());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000918 case Debug::k_debug_break_slot_address:
919 return reinterpret_cast<Address>(Debug::debug_break_slot_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000920 case Debug::k_register_address:
921 return reinterpret_cast<Address>(Debug::register_address(reg_));
922 default:
923 UNREACHABLE();
924 return NULL;
925 }
926 }
927 private:
928 Debug::AddressId id_;
929 int reg_;
930};
931
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000932// The optional thread that Debug Agent may use to temporary call V8 to process
933// pending debug requests if debuggee is not running V8 at the moment.
934// Techincally it does not call V8 itself, rather it asks embedding program
935// to do this via v8::Debug::HostDispatchHandler
936class MessageDispatchHelperThread: public Thread {
937 public:
938 MessageDispatchHelperThread();
939 ~MessageDispatchHelperThread();
940
941 void Schedule();
942
943 private:
944 void Run();
945
946 Semaphore* const sem_;
947 Mutex* const mutex_;
948 bool already_signalled_;
949
950 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
951};
952
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000953
954} } // namespace v8::internal
955
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000956#endif // ENABLE_DEBUGGER_SUPPORT
957
ager@chromium.org5ec48922009-05-05 07:25:34 +0000958#endif // V8_DEBUG_H_