blob: 95dca729247e4baac1a606a173e9fdc8e120fc27 [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
lrn@chromium.org1c092762011-05-09 09:42:16 +000031#include "allocation.h"
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000032#include "arguments.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033#include "assembler.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000034#include "debug-agent.h"
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000035#include "execution.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036#include "factory.h"
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +000037#include "flags.h"
kasperl@chromium.org71affb52009-05-26 05:44:31 +000038#include "hashmap.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039#include "platform.h"
40#include "string-stream.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000041#include "v8threads.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042
ager@chromium.org65dad4b2009-04-23 08:48:43 +000043#ifdef ENABLE_DEBUGGER_SUPPORT
44#include "../include/v8-debug.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000045
kasperl@chromium.org71affb52009-05-26 05:44:31 +000046namespace v8 {
47namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000048
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000049
50// Forward declarations.
51class EnterDebugger;
52
53
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000054// Step actions. NOTE: These values are in macros.py as well.
55enum StepAction {
56 StepNone = -1, // Stepping not prepared.
57 StepOut = 0, // Step out of the current function.
58 StepNext = 1, // Step to the next statement in the current function.
59 StepIn = 2, // Step into new functions invoked or the next statement
60 // in the current function.
61 StepMin = 3, // Perform a minimum step in the current function.
62 StepInMin = 4 // Step into new functions invoked or perform a minimum step
63 // in the current function.
64};
65
66
67// Type of exception break. NOTE: These values are in macros.py as well.
68enum ExceptionBreakType {
69 BreakException = 0,
70 BreakUncaughtException = 1
71};
72
73
74// Type of exception break. NOTE: These values are in macros.py as well.
75enum BreakLocatorType {
76 ALL_BREAK_LOCATIONS = 0,
77 SOURCE_BREAK_LOCATIONS = 1
78};
79
80
81// Class for iterating through the break points in a function and changing
82// them.
83class BreakLocationIterator {
84 public:
85 explicit BreakLocationIterator(Handle<DebugInfo> debug_info,
86 BreakLocatorType type);
87 virtual ~BreakLocationIterator();
88
89 void Next();
90 void Next(int count);
91 void FindBreakLocationFromAddress(Address pc);
92 void FindBreakLocationFromPosition(int position);
93 void Reset();
94 bool Done() const;
95 void SetBreakPoint(Handle<Object> break_point_object);
96 void ClearBreakPoint(Handle<Object> break_point_object);
97 void SetOneShot();
98 void ClearOneShot();
99 void PrepareStepIn();
100 bool IsExit() const;
101 bool HasBreakPoint();
102 bool IsDebugBreak();
103 Object* BreakPointObjects();
ager@chromium.org381abbb2009-02-25 13:23:22 +0000104 void ClearAllDebugBreak();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000105
106
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000107 inline int code_position() {
108 return static_cast<int>(pc() - debug_info_->code()->entry());
109 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110 inline int break_point() { return break_point_; }
111 inline int position() { return position_; }
112 inline int statement_position() { return statement_position_; }
113 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
114 inline Code* code() { return debug_info_->code(); }
115 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); }
ager@chromium.org236ad962008-09-25 09:45:57 +0000116 inline RelocInfo::Mode rmode() const {
117 return reloc_iterator_->rinfo()->rmode();
118 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000119 inline RelocInfo* original_rinfo() {
120 return reloc_iterator_original_->rinfo();
121 }
ager@chromium.org236ad962008-09-25 09:45:57 +0000122 inline RelocInfo::Mode original_rmode() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000123 return reloc_iterator_original_->rinfo()->rmode();
124 }
125
ager@chromium.orga1645e22009-09-09 19:27:10 +0000126 bool IsDebuggerStatement();
127
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000128 protected:
129 bool RinfoDone() const;
130 void RinfoNext();
131
132 BreakLocatorType type_;
133 int break_point_;
134 int position_;
135 int statement_position_;
136 Handle<DebugInfo> debug_info_;
137 RelocIterator* reloc_iterator_;
138 RelocIterator* reloc_iterator_original_;
139
140 private:
141 void SetDebugBreak();
142 void ClearDebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000143
144 void SetDebugBreakAtIC();
145 void ClearDebugBreakAtIC();
146
iposva@chromium.org245aa852009-02-10 00:49:54 +0000147 bool IsDebugBreakAtReturn();
148 void SetDebugBreakAtReturn();
149 void ClearDebugBreakAtReturn();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000150
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000151 bool IsDebugBreakSlot();
152 bool IsDebugBreakAtSlot();
153 void SetDebugBreakAtSlot();
154 void ClearDebugBreakAtSlot();
155
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000156 DISALLOW_COPY_AND_ASSIGN(BreakLocationIterator);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000157};
158
159
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000160// Cache of all script objects in the heap. When a script is added a weak handle
161// to it is created and that weak handle is stored in the cache. The weak handle
162// callback takes care of removing the script from the cache. The key used in
163// the cache is the script id.
164class ScriptCache : private HashMap {
165 public:
166 ScriptCache() : HashMap(ScriptMatch), collected_scripts_(10) {}
167 virtual ~ScriptCache() { Clear(); }
168
169 // Add script to the cache.
170 void Add(Handle<Script> script);
171
172 // Return the scripts in the cache.
173 Handle<FixedArray> GetScripts();
174
175 // Generate debugger events for collected scripts.
176 void ProcessCollectedScripts();
177
178 private:
179 // Calculate the hash value from the key (script id).
180 static uint32_t Hash(int key) { return ComputeIntegerHash(key); }
181
182 // Scripts match if their keys (script id) match.
183 static bool ScriptMatch(void* key1, void* key2) { return key1 == key2; }
184
185 // Clear the cache releasing all the weak handles.
186 void Clear();
187
188 // Weak handle callback for scripts in the cache.
189 static void HandleWeakScript(v8::Persistent<v8::Value> obj, void* data);
190
191 // List used during GC to temporarily store id's of collected scripts.
192 List<int> collected_scripts_;
193};
194
195
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000196// Linked list holding debug info objects. The debug info objects are kept as
197// weak handles to avoid a debug info object to keep a function alive.
198class DebugInfoListNode {
199 public:
200 explicit DebugInfoListNode(DebugInfo* debug_info);
201 virtual ~DebugInfoListNode();
202
203 DebugInfoListNode* next() { return next_; }
204 void set_next(DebugInfoListNode* next) { next_ = next; }
205 Handle<DebugInfo> debug_info() { return debug_info_; }
206
207 private:
208 // Global (weak) handle to the debug info object.
209 Handle<DebugInfo> debug_info_;
210
211 // Next pointer for linked list.
212 DebugInfoListNode* next_;
213};
214
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000215// This class contains the debugger support. The main purpose is to handle
216// setting break points in the code.
217//
218// This class controls the debug info for all functions which currently have
219// active breakpoints in them. This debug info is held in the heap root object
220// debug_info which is a FixedArray. Each entry in this list is of class
221// DebugInfo.
222class Debug {
223 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000224 void Setup(bool create_heap_objects);
225 bool Load();
226 void Unload();
227 bool IsLoaded() { return !debug_context_.is_null(); }
228 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
229 void PreemptionWhileInDebugger();
230 void Iterate(ObjectVisitor* v);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000231
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000232 Object* Break(Arguments args);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000233 void SetBreakPoint(Handle<SharedFunctionInfo> shared,
234 Handle<Object> break_point_object,
235 int* source_position);
236 void ClearBreakPoint(Handle<Object> break_point_object);
237 void ClearAllBreakPoints();
238 void FloodWithOneShot(Handle<SharedFunctionInfo> shared);
239 void FloodHandlerWithOneShot();
240 void ChangeBreakOnException(ExceptionBreakType type, bool enable);
241 bool IsBreakOnException(ExceptionBreakType type);
242 void PrepareStep(StepAction step_action, int step_count);
243 void ClearStepping();
244 bool StepNextContinue(BreakLocationIterator* break_location_iterator,
245 JavaScriptFrame* frame);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000246 static Handle<DebugInfo> GetDebugInfo(Handle<SharedFunctionInfo> shared);
247 static bool HasDebugInfo(Handle<SharedFunctionInfo> shared);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000248
ager@chromium.org32912102009-01-16 10:38:43 +0000249 // Returns whether the operation succeeded.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000250 bool EnsureDebugInfo(Handle<SharedFunctionInfo> shared);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000251
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000252 // Returns true if the current stub call is patched to call the debugger.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000253 static bool IsDebugBreak(Address addr);
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000254 // Returns true if the current return statement has been patched to be
255 // a debugger breakpoint.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000256 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000257
258 // Check whether a code stub with the specified major key is a possible break
259 // point location.
260 static bool IsSourceBreakStub(Code* code);
261 static bool IsBreakStub(Code* code);
262
263 // Find the builtin to use for invoking the debug break
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000264 static Handle<Code> FindDebugBreak(Handle<Code> code, RelocInfo::Mode mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000265
266 static Handle<Object> GetSourceBreakLocations(
267 Handle<SharedFunctionInfo> shared);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268
269 // Getter for the debug_context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000270 inline Handle<Context> debug_context() { return debug_context_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000271
272 // Check whether a global object is the debug global object.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000273 bool IsDebugGlobal(GlobalObject* global);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000274
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000275 // Check whether this frame is just about to return.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000276 bool IsBreakAtReturn(JavaScriptFrame* frame);
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000277
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000278 // Fast check to see if any break points are active.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000279 inline bool has_break_points() { return has_break_points_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000280
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000281 void NewBreak(StackFrame::Id break_frame_id);
282 void SetBreak(StackFrame::Id break_frame_id, int break_id);
283 StackFrame::Id break_frame_id() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000284 return thread_local_.break_frame_id_;
285 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000286 int break_id() { return thread_local_.break_id_; }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000287
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000288 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
289 void HandleStepIn(Handle<JSFunction> function,
290 Handle<Object> holder,
291 Address fp,
292 bool is_constructor);
293 Address step_in_fp() { return thread_local_.step_into_fp_; }
294 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000295
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000296 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
297 Address step_out_fp() { return thread_local_.step_out_fp_; }
ager@chromium.orga1645e22009-09-09 19:27:10 +0000298
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000299 EnterDebugger* debugger_entry() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000300 return thread_local_.debugger_entry_;
301 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000302 void set_debugger_entry(EnterDebugger* entry) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000303 thread_local_.debugger_entry_ = entry;
304 }
305
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000306 // Check whether any of the specified interrupts are pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000307 bool is_interrupt_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000308 return (thread_local_.pending_interrupts_ & what) != 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000309 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000310
311 // Set specified interrupts as pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000312 void set_interrupts_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000313 thread_local_.pending_interrupts_ |= what;
314 }
315
316 // Clear specified interrupts from pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000317 void clear_interrupt_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000318 thread_local_.pending_interrupts_ &= ~static_cast<int>(what);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000319 }
320
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000321 // Getter and setter for the disable break state.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000322 bool disable_break() { return disable_break_; }
323 void set_disable_break(bool disable_break) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000324 disable_break_ = disable_break;
325 }
326
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000327 // Getters for the current exception break state.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000328 bool break_on_exception() { return break_on_exception_; }
329 bool break_on_uncaught_exception() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000330 return break_on_uncaught_exception_;
331 }
332
333 enum AddressId {
334 k_after_break_target_address,
335 k_debug_break_return_address,
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000336 k_debug_break_slot_address,
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000337 k_restarter_frame_function_pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000338 };
339
340 // Support for setting the address to jump to when returning from break point.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000341 Address* after_break_target_address() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000342 return reinterpret_cast<Address*>(&thread_local_.after_break_target_);
343 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000344 Address* restarter_frame_function_pointer_address() {
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000345 Object*** address = &thread_local_.restarter_frame_function_pointer_;
346 return reinterpret_cast<Address*>(address);
347 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000348
349 // Support for saving/restoring registers when handling debug break calls.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000350 Object** register_address(int r) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000351 return &registers_[r];
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000352 }
353
ager@chromium.orga1645e22009-09-09 19:27:10 +0000354 // Access to the debug break on return code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000355 Code* debug_break_return() { return debug_break_return_; }
356 Code** debug_break_return_address() {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000357 return &debug_break_return_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000358 }
359
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000360 // Access to the debug break in debug break slot code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000361 Code* debug_break_slot() { return debug_break_slot_; }
362 Code** debug_break_slot_address() {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000363 return &debug_break_slot_;
364 }
365
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000366 static const int kEstimatedNofDebugInfoEntries = 16;
367 static const int kEstimatedNofBreakPointsInFunction = 16;
368
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000369 // Passed to MakeWeak.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000370 static void HandleWeakDebugInfo(v8::Persistent<v8::Value> obj, void* data);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371
372 friend class Debugger;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000373 friend Handle<FixedArray> GetDebuggedFunctions(); // In test-debug.cc
374 friend void CheckDebuggerUnloaded(bool check_functions); // In test-debug.cc
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000375
376 // Threading support.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000377 char* ArchiveDebug(char* to);
378 char* RestoreDebug(char* from);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000379 static int ArchiveSpacePerThread();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000380 void FreeThreadResources() { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000381
ager@chromium.org32912102009-01-16 10:38:43 +0000382 // Mirror cache handling.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000383 void ClearMirrorCache();
ager@chromium.org32912102009-01-16 10:38:43 +0000384
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000385 // Script cache handling.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000386 void CreateScriptCache();
387 void DestroyScriptCache();
388 void AddScriptToScriptCache(Handle<Script> script);
389 Handle<FixedArray> GetLoadedScripts();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000390
391 // Garbage collection notifications.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000392 void AfterGarbageCollection();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000393
ager@chromium.org8bb60582008-12-11 12:02:20 +0000394 // Code generator routines.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000395 static void GenerateSlot(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000396 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
397 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
398 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
399 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
400 static void GenerateConstructCallDebugBreak(MacroAssembler* masm);
401 static void GenerateReturnDebugBreak(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000402 static void GenerateStubNoRegistersDebugBreak(MacroAssembler* masm);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000403 static void GenerateSlotDebugBreak(MacroAssembler* masm);
ager@chromium.org357bf652010-04-12 11:30:10 +0000404 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000405
406 // FrameDropper is a code replacement for a JavaScript frame with possibly
407 // several frames above.
408 // There is no calling conventions here, because it never actually gets
409 // called, it only gets returned to.
ager@chromium.org357bf652010-04-12 11:30:10 +0000410 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000411
412 // Called from stub-cache.cc.
413 static void GenerateCallICDebugBreak(MacroAssembler* masm);
414
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000415 // Describes how exactly a frame has been dropped from stack.
416 enum FrameDropMode {
417 // No frame has been dropped.
418 FRAMES_UNTOUCHED,
419 // The top JS frame had been calling IC stub. IC stub mustn't be called now.
420 FRAME_DROPPED_IN_IC_CALL,
421 // The top JS frame had been calling debug break slot stub. Patch the
422 // address this stub jumps to in the end.
423 FRAME_DROPPED_IN_DEBUG_SLOT_CALL,
424 // The top JS frame had been calling some C++ function. The return address
425 // gets patched automatically.
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000426 FRAME_DROPPED_IN_DIRECT_CALL,
427 FRAME_DROPPED_IN_RETURN_CALL
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000428 };
429
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000430 void FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000431 FrameDropMode mode,
432 Object** restarter_frame_function_pointer);
ager@chromium.org357bf652010-04-12 11:30:10 +0000433
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000434 // Initializes an artificial stack frame. The data it contains is used for:
435 // a. successful work of frame dropper code which eventually gets control,
436 // b. being compatible with regular stack structure for various stack
437 // iterators.
438 // Returns address of stack allocated pointer to restarted function,
439 // the value that is called 'restarter_frame_function_pointer'. The value
440 // at this address (possibly updated by GC) may be used later when preparing
441 // 'step in' operation.
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000442 static Object** SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
443 Handle<Code> code);
444
ager@chromium.org357bf652010-04-12 11:30:10 +0000445 static const int kFrameDropperFrameSize;
446
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000447 // Architecture-specific constant.
448 static const bool kFrameDropperSupported;
449
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000450 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000451 explicit Debug(Isolate* isolate);
452 ~Debug();
453
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000454 static bool CompileDebuggerScript(int index);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000455 void ClearOneShot();
456 void ActivateStepIn(StackFrame* frame);
457 void ClearStepIn();
458 void ActivateStepOut(StackFrame* frame);
459 void ClearStepOut();
460 void ClearStepNext();
ager@chromium.org32912102009-01-16 10:38:43 +0000461 // Returns whether the compile succeeded.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000462 void RemoveDebugInfo(Handle<DebugInfo> debug_info);
463 void SetAfterBreakTarget(JavaScriptFrame* frame);
464 Handle<Object> CheckBreakPoints(Handle<Object> break_point);
465 bool CheckBreakPoint(Handle<Object> break_point_object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000466
467 // Global handle to debug context where all the debugger JavaScript code is
468 // loaded.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000469 Handle<Context> debug_context_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000470
471 // Boolean state indicating whether any break points are set.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000472 bool has_break_points_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000473
474 // Cache of all scripts in the heap.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000475 ScriptCache* script_cache_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000476
477 // List of active debug info objects.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000478 DebugInfoListNode* debug_info_list_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000479
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000480 bool disable_break_;
481 bool break_on_exception_;
482 bool break_on_uncaught_exception_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000483
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000484 // Per-thread data.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000485 class ThreadLocal {
486 public:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000487 // Counter for generating next break id.
488 int break_count_;
489
490 // Current break id.
491 int break_id_;
492
493 // Frame id for the frame of the current break.
494 StackFrame::Id break_frame_id_;
495
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000496 // Step action for last step performed.
497 StepAction last_step_action_;
498
499 // Source statement position from last step next action.
500 int last_statement_position_;
501
502 // Number of steps left to perform before debug event.
503 int step_count_;
504
505 // Frame pointer from last step next action.
506 Address last_fp_;
507
508 // Frame pointer for frame from which step in was performed.
509 Address step_into_fp_;
510
ager@chromium.orga1645e22009-09-09 19:27:10 +0000511 // Frame pointer for the frame where debugger should be called when current
512 // step out action is completed.
513 Address step_out_fp_;
514
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000515 // Storage location for jump when exiting debug break calls.
516 Address after_break_target_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000517
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000518 // Stores the way how LiveEdit has patched the stack. It is used when
519 // debugger returns control back to user script.
520 FrameDropMode frame_drop_mode_;
ager@chromium.org357bf652010-04-12 11:30:10 +0000521
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000522 // Top debugger entry.
523 EnterDebugger* debugger_entry_;
524
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000525 // Pending interrupts scheduled while debugging.
526 int pending_interrupts_;
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000527
528 // When restarter frame is on stack, stores the address
529 // of the pointer to function being restarted. Otherwise (most of the time)
530 // stores NULL. This pointer is used with 'step in' implementation.
531 Object** restarter_frame_function_pointer_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000532 };
533
534 // Storage location for registers when handling debug break calls
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000535 JSCallerSavedBuffer registers_;
536 ThreadLocal thread_local_;
537 void ThreadInit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000538
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000539 // Code to call for handling debug break on return.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000540 Code* debug_break_return_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000541
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000542 // Code to call for handling debug break in debug break slots.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000543 Code* debug_break_slot_;
544
545 Isolate* isolate_;
546
547 friend class Isolate;
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000548
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000549 DISALLOW_COPY_AND_ASSIGN(Debug);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000550};
551
552
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000553DECLARE_RUNTIME_FUNCTION(Object*, Debug_Break);
554
555
ager@chromium.org5ec48922009-05-05 07:25:34 +0000556// Message delivered to the message handler callback. This is either a debugger
557// event or the response to a command.
558class MessageImpl: public v8::Debug::Message {
559 public:
560 // Create a message object for a debug event.
561 static MessageImpl NewEvent(DebugEvent event,
562 bool running,
563 Handle<JSObject> exec_state,
564 Handle<JSObject> event_data);
565
566 // Create a message object for the response to a debug command.
567 static MessageImpl NewResponse(DebugEvent event,
568 bool running,
569 Handle<JSObject> exec_state,
570 Handle<JSObject> event_data,
571 Handle<String> response_json,
572 v8::Debug::ClientData* client_data);
573
574 // Implementation of interface v8::Debug::Message.
575 virtual bool IsEvent() const;
576 virtual bool IsResponse() const;
577 virtual DebugEvent GetEvent() const;
578 virtual bool WillStartRunning() const;
579 virtual v8::Handle<v8::Object> GetExecutionState() const;
580 virtual v8::Handle<v8::Object> GetEventData() const;
581 virtual v8::Handle<v8::String> GetJSON() const;
582 virtual v8::Handle<v8::Context> GetEventContext() const;
583 virtual v8::Debug::ClientData* GetClientData() const;
584
585 private:
586 MessageImpl(bool is_event,
587 DebugEvent event,
588 bool running,
589 Handle<JSObject> exec_state,
590 Handle<JSObject> event_data,
591 Handle<String> response_json,
592 v8::Debug::ClientData* client_data);
593
594 bool is_event_; // Does this message represent a debug event?
595 DebugEvent event_; // Debug event causing the break.
596 bool running_; // Will the VM start running after this event?
597 Handle<JSObject> exec_state_; // Current execution state.
598 Handle<JSObject> event_data_; // Data associated with the event.
599 Handle<String> response_json_; // Response JSON if message holds a response.
600 v8::Debug::ClientData* client_data_; // Client data passed with the request.
601};
602
603
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000604// Details of the debug event delivered to the debug event listener.
605class EventDetailsImpl : public v8::Debug::EventDetails {
606 public:
607 EventDetailsImpl(DebugEvent event,
608 Handle<JSObject> exec_state,
609 Handle<JSObject> event_data,
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000610 Handle<Object> callback_data,
611 v8::Debug::ClientData* client_data);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000612 virtual DebugEvent GetEvent() const;
613 virtual v8::Handle<v8::Object> GetExecutionState() const;
614 virtual v8::Handle<v8::Object> GetEventData() const;
615 virtual v8::Handle<v8::Context> GetEventContext() const;
616 virtual v8::Handle<v8::Value> GetCallbackData() const;
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000617 virtual v8::Debug::ClientData* GetClientData() const;
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000618 private:
619 DebugEvent event_; // Debug event causing the break.
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000620 Handle<JSObject> exec_state_; // Current execution state.
621 Handle<JSObject> event_data_; // Data associated with the event.
622 Handle<Object> callback_data_; // User data passed with the callback
623 // when it was registered.
624 v8::Debug::ClientData* client_data_; // Data passed to DebugBreakForCommand.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000625};
626
627
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000628// Message send by user to v8 debugger or debugger output message.
629// In addition to command text it may contain a pointer to some user data
630// which are expected to be passed along with the command reponse to message
631// handler.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000632class CommandMessage {
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000633 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000634 static CommandMessage New(const Vector<uint16_t>& command,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000635 v8::Debug::ClientData* data);
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000636 CommandMessage();
637 ~CommandMessage();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000638
639 // Deletes user data and disposes of the text.
640 void Dispose();
641 Vector<uint16_t> text() const { return text_; }
642 v8::Debug::ClientData* client_data() const { return client_data_; }
643 private:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000644 CommandMessage(const Vector<uint16_t>& text,
645 v8::Debug::ClientData* data);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000646
647 Vector<uint16_t> text_;
648 v8::Debug::ClientData* client_data_;
649};
650
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000651// A Queue of CommandMessage objects. A thread-safe version is
652// LockingCommandMessageQueue, based on this class.
653class CommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000654 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000655 explicit CommandMessageQueue(int size);
656 ~CommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000657 bool IsEmpty() const { return start_ == end_; }
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000658 CommandMessage Get();
659 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000660 void Clear() { start_ = end_ = 0; } // Queue is empty after Clear().
661 private:
662 // Doubles the size of the message queue, and copies the messages.
663 void Expand();
664
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000665 CommandMessage* messages_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000666 int start_;
667 int end_;
668 int size_; // The size of the queue buffer. Queue can hold size-1 messages.
669};
670
671
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000672class MessageDispatchHelperThread;
673
674
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000675// LockingCommandMessageQueue is a thread-safe circular buffer of CommandMessage
676// messages. The message data is not managed by LockingCommandMessageQueue.
ager@chromium.org41826e72009-03-30 13:30:57 +0000677// Pointers to the data are passed in and out. Implemented by adding a
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000678// Mutex to CommandMessageQueue. Includes logging of all puts and gets.
679class LockingCommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000680 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000681 explicit LockingCommandMessageQueue(int size);
682 ~LockingCommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000683 bool IsEmpty() const;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000684 CommandMessage Get();
685 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000686 void Clear();
687 private:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000688 CommandMessageQueue queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000689 Mutex* lock_;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000690 DISALLOW_COPY_AND_ASSIGN(LockingCommandMessageQueue);
ager@chromium.org41826e72009-03-30 13:30:57 +0000691};
692
693
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000694class Debugger {
695 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000696 ~Debugger();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000697
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000698 void DebugRequest(const uint16_t* json_request, int length);
699
700 Handle<Object> MakeJSObject(Vector<const char> constructor_name,
701 int argc, Object*** argv,
702 bool* caught_exception);
703 Handle<Object> MakeExecutionState(bool* caught_exception);
704 Handle<Object> MakeBreakEvent(Handle<Object> exec_state,
705 Handle<Object> break_points_hit,
706 bool* caught_exception);
707 Handle<Object> MakeExceptionEvent(Handle<Object> exec_state,
708 Handle<Object> exception,
709 bool uncaught,
710 bool* caught_exception);
711 Handle<Object> MakeNewFunctionEvent(Handle<Object> func,
712 bool* caught_exception);
713 Handle<Object> MakeCompileEvent(Handle<Script> script,
714 bool before,
715 bool* caught_exception);
716 Handle<Object> MakeScriptCollectedEvent(int id,
717 bool* caught_exception);
718 void OnDebugBreak(Handle<Object> break_points_hit, bool auto_continue);
719 void OnException(Handle<Object> exception, bool uncaught);
720 void OnBeforeCompile(Handle<Script> script);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000721
722 enum AfterCompileFlags {
723 NO_AFTER_COMPILE_FLAGS,
724 SEND_WHEN_DEBUGGING
725 };
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000726 void OnAfterCompile(Handle<Script> script,
727 AfterCompileFlags after_compile_flags);
728 void OnNewFunction(Handle<JSFunction> fun);
729 void OnScriptCollected(int id);
730 void ProcessDebugEvent(v8::DebugEvent event,
731 Handle<JSObject> event_data,
732 bool auto_continue);
733 void NotifyMessageHandler(v8::DebugEvent event,
734 Handle<JSObject> exec_state,
735 Handle<JSObject> event_data,
736 bool auto_continue);
737 void SetEventListener(Handle<Object> callback, Handle<Object> data);
738 void SetMessageHandler(v8::Debug::MessageHandler2 handler);
739 void SetHostDispatchHandler(v8::Debug::HostDispatchHandler handler,
740 int period);
741 void SetDebugMessageDispatchHandler(
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000742 v8::Debug::DebugMessageDispatchHandler handler,
743 bool provide_locker);
ager@chromium.org41826e72009-03-30 13:30:57 +0000744
745 // Invoke the message handler function.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000746 void InvokeMessageHandler(MessageImpl message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000747
748 // Add a debugger command to the command queue.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000749 void ProcessCommand(Vector<const uint16_t> command,
750 v8::Debug::ClientData* client_data = NULL);
ager@chromium.org41826e72009-03-30 13:30:57 +0000751
752 // Check whether there are commands in the command queue.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000753 bool HasCommands();
ager@chromium.org41826e72009-03-30 13:30:57 +0000754
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000755 // Enqueue a debugger command to the command queue for event listeners.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000756 void EnqueueDebugCommand(v8::Debug::ClientData* client_data = NULL);
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000757
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000758 Handle<Object> Call(Handle<JSFunction> fun,
759 Handle<Object> data,
760 bool* pending_exception);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000761
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000762 // Start the debugger agent listening on the provided port.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000763 bool StartAgent(const char* name, int port,
764 bool wait_for_connection = false);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000765
766 // Stop the debugger agent.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000767 void StopAgent();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000768
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000769 // Blocks until the agent has started listening for connections
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000770 void WaitForAgent();
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000771
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000772 void CallMessageDispatchHandler();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000773
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000774 Handle<Context> GetDebugContext();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000775
ager@chromium.org71daaf62009-04-01 07:22:49 +0000776 // Unload the debugger if possible. Only called when no debugger is currently
777 // active.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000778 void UnloadDebugger();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000779 friend void ForceUnloadDebugger(); // In test-debug.cc
ager@chromium.org71daaf62009-04-01 07:22:49 +0000780
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000781 inline bool EventActive(v8::DebugEvent event) {
ager@chromium.org71daaf62009-04-01 07:22:49 +0000782 ScopedLock with(debugger_access_);
783
784 // Check whether the message handler was been cleared.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000785 if (debugger_unload_pending_) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000786 if (isolate_->debug()->debugger_entry() == NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000787 UnloadDebugger();
788 }
ager@chromium.org71daaf62009-04-01 07:22:49 +0000789 }
790
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000791 if (((event == v8::BeforeCompile) || (event == v8::AfterCompile)) &&
792 !FLAG_debug_compile_events) {
793 return false;
794
795 } else if ((event == v8::ScriptCollected) &&
796 !FLAG_debug_script_collected_events) {
797 return false;
798 }
799
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000800 // Currently argument event is not used.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000801 return !compiling_natives_ && Debugger::IsDebuggerActive();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000802 }
803
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000804 void set_compiling_natives(bool compiling_natives) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000805 Debugger::compiling_natives_ = compiling_natives;
806 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000807 bool compiling_natives() const { return compiling_natives_; }
808 void set_loading_debugger(bool v) { is_loading_debugger_ = v; }
809 bool is_loading_debugger() const { return is_loading_debugger_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000810
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000811 bool IsDebuggerActive();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000812
813 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000814 Debugger();
ager@chromium.org71daaf62009-04-01 07:22:49 +0000815
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000816 void CallEventCallback(v8::DebugEvent event,
817 Handle<Object> exec_state,
818 Handle<Object> event_data,
819 v8::Debug::ClientData* client_data);
820 void CallCEventCallback(v8::DebugEvent event,
821 Handle<Object> exec_state,
822 Handle<Object> event_data,
823 v8::Debug::ClientData* client_data);
824 void CallJSEventCallback(v8::DebugEvent event,
825 Handle<Object> exec_state,
826 Handle<Object> event_data);
827 void ListenersChanged();
ager@chromium.org381abbb2009-02-25 13:23:22 +0000828
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000829 Mutex* debugger_access_; // Mutex guarding debugger variables.
830 Handle<Object> event_listener_; // Global handle to listener.
831 Handle<Object> event_listener_data_;
832 bool compiling_natives_; // Are we compiling natives?
833 bool is_loading_debugger_; // Are we loading the debugger?
834 bool never_unload_debugger_; // Can we unload the debugger?
835 v8::Debug::MessageHandler2 message_handler_;
836 bool debugger_unload_pending_; // Was message handler cleared?
837 v8::Debug::HostDispatchHandler host_dispatch_handler_;
838 Mutex* dispatch_handler_access_; // Mutex guarding dispatch handler.
839 v8::Debug::DebugMessageDispatchHandler debug_message_dispatch_handler_;
840 MessageDispatchHelperThread* message_dispatch_helper_thread_;
841 int host_dispatch_micros_;
842
843 DebuggerAgent* agent_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000844
ager@chromium.org41826e72009-03-30 13:30:57 +0000845 static const int kQueueInitialSize = 4;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000846 LockingCommandMessageQueue command_queue_;
847 Semaphore* command_received_; // Signaled for each command received.
848 LockingCommandMessageQueue event_command_queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000849
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000850 Isolate* isolate_;
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000851
ager@chromium.org71daaf62009-04-01 07:22:49 +0000852 friend class EnterDebugger;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000853 friend class Isolate;
854
855 DISALLOW_COPY_AND_ASSIGN(Debugger);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000856};
857
858
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000859// This class is used for entering the debugger. Create an instance in the stack
860// to enter the debugger. This will set the current break state, make sure the
861// debugger is loaded and switch to the debugger context. If the debugger for
862// some reason could not be entered FailedToEnter will return true.
863class EnterDebugger BASE_EMBEDDED {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000864 public:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000865 EnterDebugger()
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000866 : isolate_(Isolate::Current()),
867 prev_(isolate_->debug()->debugger_entry()),
vegorov@chromium.org74f333b2011-04-06 11:17:46 +0000868 it_(isolate_),
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000869 has_js_frames_(!it_.done()),
870 save_(isolate_) {
871 Debug* debug = isolate_->debug();
872 ASSERT(prev_ != NULL || !debug->is_interrupt_pending(PREEMPT));
873 ASSERT(prev_ != NULL || !debug->is_interrupt_pending(DEBUGBREAK));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000874
875 // Link recursive debugger entry.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000876 debug->set_debugger_entry(this);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000877
ager@chromium.org8bb60582008-12-11 12:02:20 +0000878 // Store the previous break id and frame id.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000879 break_id_ = debug->break_id();
880 break_frame_id_ = debug->break_frame_id();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000881
ager@chromium.org8bb60582008-12-11 12:02:20 +0000882 // Create the new break info. If there is no JavaScript frames there is no
883 // break frame id.
884 if (has_js_frames_) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000885 debug->NewBreak(it_.frame()->id());
ager@chromium.org8bb60582008-12-11 12:02:20 +0000886 } else {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000887 debug->NewBreak(StackFrame::NO_ID);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000888 }
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000889
890 // Make sure that debugger is loaded and enter the debugger context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000891 load_failed_ = !debug->Load();
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000892 if (!load_failed_) {
893 // NOTE the member variable save which saves the previous context before
894 // this change.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000895 isolate_->set_context(*debug->debug_context());
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000896 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000897 }
898
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000899 ~EnterDebugger() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000900 ASSERT(Isolate::Current() == isolate_);
901 Debug* debug = isolate_->debug();
902
ager@chromium.org8bb60582008-12-11 12:02:20 +0000903 // Restore to the previous break state.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000904 debug->SetBreak(break_frame_id_, break_id_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000905
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000906 // Check for leaving the debugger.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000907 if (prev_ == NULL) {
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000908 // Clear mirror cache when leaving the debugger. Skip this if there is a
909 // pending exception as clearing the mirror cache calls back into
910 // JavaScript. This can happen if the v8::Debug::Call is used in which
911 // case the exception should end up in the calling code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000912 if (!isolate_->has_pending_exception()) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000913 // Try to avoid any pending debug break breaking in the clear mirror
914 // cache JavaScript code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000915 if (isolate_->stack_guard()->IsDebugBreak()) {
916 debug->set_interrupts_pending(DEBUGBREAK);
917 isolate_->stack_guard()->Continue(DEBUGBREAK);
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000918 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000919 debug->ClearMirrorCache();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000920 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000921
922 // Request preemption and debug break when leaving the last debugger entry
923 // if any of these where recorded while debugging.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000924 if (debug->is_interrupt_pending(PREEMPT)) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000925 // This re-scheduling of preemption is to avoid starvation in some
926 // debugging scenarios.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000927 debug->clear_interrupt_pending(PREEMPT);
928 isolate_->stack_guard()->Preempt();
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000929 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000930 if (debug->is_interrupt_pending(DEBUGBREAK)) {
931 debug->clear_interrupt_pending(DEBUGBREAK);
932 isolate_->stack_guard()->DebugBreak();
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000933 }
934
935 // If there are commands in the queue when leaving the debugger request
936 // that these commands are processed.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000937 if (isolate_->debugger()->HasCommands()) {
938 isolate_->stack_guard()->DebugCommand();
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000939 }
940
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000941 // If leaving the debugger with the debugger no longer active unload it.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000942 if (!isolate_->debugger()->IsDebuggerActive()) {
943 isolate_->debugger()->UnloadDebugger();
ager@chromium.org71daaf62009-04-01 07:22:49 +0000944 }
945 }
946
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000947 // Leaving this debugger entry.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000948 debug->set_debugger_entry(prev_);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000949 }
950
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000951 // Check whether the debugger could be entered.
952 inline bool FailedToEnter() { return load_failed_; }
953
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000954 // Check whether there are any JavaScript frames on the stack.
ager@chromium.org8bb60582008-12-11 12:02:20 +0000955 inline bool HasJavaScriptFrames() { return has_js_frames_; }
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000956
ager@chromium.org9085a012009-05-11 19:22:57 +0000957 // Get the active context from before entering the debugger.
958 inline Handle<Context> GetContext() { return save_.context(); }
959
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000960 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000961 Isolate* isolate_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000962 EnterDebugger* prev_; // Previous debugger entry if entered recursively.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000963 JavaScriptFrameIterator it_;
ager@chromium.org8bb60582008-12-11 12:02:20 +0000964 const bool has_js_frames_; // Were there any JavaScript frames?
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000965 StackFrame::Id break_frame_id_; // Previous break frame id.
966 int break_id_; // Previous break id.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000967 bool load_failed_; // Did the debugger fail to load?
968 SaveContext save_; // Saves previous context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000969};
970
971
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000972// Stack allocated class for disabling break.
973class DisableBreak BASE_EMBEDDED {
974 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000975 explicit DisableBreak(bool disable_break) : isolate_(Isolate::Current()) {
976 prev_disable_break_ = isolate_->debug()->disable_break();
977 isolate_->debug()->set_disable_break(disable_break);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000978 }
979 ~DisableBreak() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000980 ASSERT(Isolate::Current() == isolate_);
981 isolate_->debug()->set_disable_break(prev_disable_break_);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000982 }
983
984 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000985 Isolate* isolate_;
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000986 // The previous state of the disable break used to restore the value when this
987 // object is destructed.
988 bool prev_disable_break_;
989};
990
991
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000992// Debug_Address encapsulates the Address pointers used in generating debug
993// code.
994class Debug_Address {
995 public:
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000996 explicit Debug_Address(Debug::AddressId id) : id_(id) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000997
998 static Debug_Address AfterBreakTarget() {
999 return Debug_Address(Debug::k_after_break_target_address);
1000 }
1001
1002 static Debug_Address DebugBreakReturn() {
1003 return Debug_Address(Debug::k_debug_break_return_address);
1004 }
1005
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001006 static Debug_Address RestarterFrameFunctionPointer() {
1007 return Debug_Address(Debug::k_restarter_frame_function_pointer);
1008 }
1009
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001010 Address address(Isolate* isolate) const {
1011 Debug* debug = isolate->debug();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001012 switch (id_) {
1013 case Debug::k_after_break_target_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001014 return reinterpret_cast<Address>(debug->after_break_target_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001015 case Debug::k_debug_break_return_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001016 return reinterpret_cast<Address>(debug->debug_break_return_address());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001017 case Debug::k_debug_break_slot_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001018 return reinterpret_cast<Address>(debug->debug_break_slot_address());
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001019 case Debug::k_restarter_frame_function_pointer:
1020 return reinterpret_cast<Address>(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001021 debug->restarter_frame_function_pointer_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001022 default:
1023 UNREACHABLE();
1024 return NULL;
1025 }
1026 }
1027 private:
1028 Debug::AddressId id_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001029};
1030
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001031// The optional thread that Debug Agent may use to temporary call V8 to process
1032// pending debug requests if debuggee is not running V8 at the moment.
1033// Techincally it does not call V8 itself, rather it asks embedding program
1034// to do this via v8::Debug::HostDispatchHandler
1035class MessageDispatchHelperThread: public Thread {
1036 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001037 explicit MessageDispatchHelperThread(Isolate* isolate);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001038 ~MessageDispatchHelperThread();
1039
1040 void Schedule();
1041
1042 private:
1043 void Run();
1044
1045 Semaphore* const sem_;
1046 Mutex* const mutex_;
1047 bool already_signalled_;
1048
1049 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
1050};
1051
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001052
1053} } // namespace v8::internal
1054
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001055#endif // ENABLE_DEBUGGER_SUPPORT
1056
ager@chromium.org5ec48922009-05-05 07:25:34 +00001057#endif // V8_DEBUG_H_