blob: c7f06815b9d4aacd9bae87376f0de2fd5a39122e [file] [log] [blame]
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
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"
whesse@chromium.org030d38e2011-07-13 13:23:34 +000038#include "frames-inl.h"
kasperl@chromium.org71affb52009-05-26 05:44:31 +000039#include "hashmap.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040#include "platform.h"
41#include "string-stream.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000042#include "v8threads.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000043
ager@chromium.org65dad4b2009-04-23 08:48:43 +000044#ifdef ENABLE_DEBUGGER_SUPPORT
45#include "../include/v8-debug.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000046
kasperl@chromium.org71affb52009-05-26 05:44:31 +000047namespace v8 {
48namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000049
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000050
51// Forward declarations.
52class EnterDebugger;
53
54
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000055// Step actions. NOTE: These values are in macros.py as well.
56enum StepAction {
57 StepNone = -1, // Stepping not prepared.
58 StepOut = 0, // Step out of the current function.
59 StepNext = 1, // Step to the next statement in the current function.
60 StepIn = 2, // Step into new functions invoked or the next statement
61 // in the current function.
62 StepMin = 3, // Perform a minimum step in the current function.
63 StepInMin = 4 // Step into new functions invoked or perform a minimum step
64 // in the current function.
65};
66
67
68// Type of exception break. NOTE: These values are in macros.py as well.
69enum ExceptionBreakType {
70 BreakException = 0,
71 BreakUncaughtException = 1
72};
73
74
75// Type of exception break. NOTE: These values are in macros.py as well.
76enum BreakLocatorType {
77 ALL_BREAK_LOCATIONS = 0,
78 SOURCE_BREAK_LOCATIONS = 1
79};
80
81
82// Class for iterating through the break points in a function and changing
83// them.
84class BreakLocationIterator {
85 public:
86 explicit BreakLocationIterator(Handle<DebugInfo> debug_info,
87 BreakLocatorType type);
88 virtual ~BreakLocationIterator();
89
90 void Next();
91 void Next(int count);
92 void FindBreakLocationFromAddress(Address pc);
93 void FindBreakLocationFromPosition(int position);
94 void Reset();
95 bool Done() const;
96 void SetBreakPoint(Handle<Object> break_point_object);
97 void ClearBreakPoint(Handle<Object> break_point_object);
98 void SetOneShot();
99 void ClearOneShot();
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +0000100 void PrepareStepIn(Isolate* isolate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101 bool IsExit() const;
102 bool HasBreakPoint();
103 bool IsDebugBreak();
104 Object* BreakPointObjects();
ager@chromium.org381abbb2009-02-25 13:23:22 +0000105 void ClearAllDebugBreak();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000106
107
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000108 inline int code_position() {
109 return static_cast<int>(pc() - debug_info_->code()->entry());
110 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000111 inline int break_point() { return break_point_; }
112 inline int position() { return position_; }
113 inline int statement_position() { return statement_position_; }
114 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
115 inline Code* code() { return debug_info_->code(); }
116 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); }
ager@chromium.org236ad962008-09-25 09:45:57 +0000117 inline RelocInfo::Mode rmode() const {
118 return reloc_iterator_->rinfo()->rmode();
119 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000120 inline RelocInfo* original_rinfo() {
121 return reloc_iterator_original_->rinfo();
122 }
ager@chromium.org236ad962008-09-25 09:45:57 +0000123 inline RelocInfo::Mode original_rmode() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000124 return reloc_iterator_original_->rinfo()->rmode();
125 }
126
ager@chromium.orga1645e22009-09-09 19:27:10 +0000127 bool IsDebuggerStatement();
128
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000129 protected:
130 bool RinfoDone() const;
131 void RinfoNext();
132
133 BreakLocatorType type_;
134 int break_point_;
135 int position_;
136 int statement_position_;
137 Handle<DebugInfo> debug_info_;
138 RelocIterator* reloc_iterator_;
139 RelocIterator* reloc_iterator_original_;
140
141 private:
142 void SetDebugBreak();
143 void ClearDebugBreak();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000144
145 void SetDebugBreakAtIC();
146 void ClearDebugBreakAtIC();
147
iposva@chromium.org245aa852009-02-10 00:49:54 +0000148 bool IsDebugBreakAtReturn();
149 void SetDebugBreakAtReturn();
150 void ClearDebugBreakAtReturn();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000151
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000152 bool IsDebugBreakSlot();
153 bool IsDebugBreakAtSlot();
154 void SetDebugBreakAtSlot();
155 void ClearDebugBreakAtSlot();
156
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000157 DISALLOW_COPY_AND_ASSIGN(BreakLocationIterator);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000158};
159
160
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000161// Cache of all script objects in the heap. When a script is added a weak handle
162// to it is created and that weak handle is stored in the cache. The weak handle
163// callback takes care of removing the script from the cache. The key used in
164// the cache is the script id.
165class ScriptCache : private HashMap {
166 public:
167 ScriptCache() : HashMap(ScriptMatch), collected_scripts_(10) {}
168 virtual ~ScriptCache() { Clear(); }
169
170 // Add script to the cache.
171 void Add(Handle<Script> script);
172
173 // Return the scripts in the cache.
174 Handle<FixedArray> GetScripts();
175
176 // Generate debugger events for collected scripts.
177 void ProcessCollectedScripts();
178
179 private:
180 // Calculate the hash value from the key (script id).
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000181 static uint32_t Hash(int key) {
182 return ComputeIntegerHash(key, v8::internal::kZeroHashSeed);
183 }
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000184
185 // Scripts match if their keys (script id) match.
186 static bool ScriptMatch(void* key1, void* key2) { return key1 == key2; }
187
188 // Clear the cache releasing all the weak handles.
189 void Clear();
190
191 // Weak handle callback for scripts in the cache.
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000192 static void HandleWeakScript(v8::Isolate* isolate,
193 v8::Persistent<v8::Value> obj,
194 void* data);
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000195
196 // List used during GC to temporarily store id's of collected scripts.
197 List<int> collected_scripts_;
198};
199
200
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000201// Linked list holding debug info objects. The debug info objects are kept as
202// weak handles to avoid a debug info object to keep a function alive.
203class DebugInfoListNode {
204 public:
205 explicit DebugInfoListNode(DebugInfo* debug_info);
206 virtual ~DebugInfoListNode();
207
208 DebugInfoListNode* next() { return next_; }
209 void set_next(DebugInfoListNode* next) { next_ = next; }
210 Handle<DebugInfo> debug_info() { return debug_info_; }
211
212 private:
213 // Global (weak) handle to the debug info object.
214 Handle<DebugInfo> debug_info_;
215
216 // Next pointer for linked list.
217 DebugInfoListNode* next_;
218};
219
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000220// This class contains the debugger support. The main purpose is to handle
221// setting break points in the code.
222//
223// This class controls the debug info for all functions which currently have
224// active breakpoints in them. This debug info is held in the heap root object
225// debug_info which is a FixedArray. Each entry in this list is of class
226// DebugInfo.
227class Debug {
228 public:
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000229 void SetUp(bool create_heap_objects);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000230 bool Load();
231 void Unload();
232 bool IsLoaded() { return !debug_context_.is_null(); }
233 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
234 void PreemptionWhileInDebugger();
235 void Iterate(ObjectVisitor* v);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000236
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000237 Object* Break(Arguments args);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000238 void SetBreakPoint(Handle<JSFunction> function,
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000239 Handle<Object> break_point_object,
240 int* source_position);
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000241 bool SetBreakPointForScript(Handle<Script> script,
242 Handle<Object> break_point_object,
243 int* source_position);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000244 void ClearBreakPoint(Handle<Object> break_point_object);
245 void ClearAllBreakPoints();
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000246 void FloodWithOneShot(Handle<JSFunction> function);
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000247 void FloodBoundFunctionWithOneShot(Handle<JSFunction> function);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000248 void FloodHandlerWithOneShot();
249 void ChangeBreakOnException(ExceptionBreakType type, bool enable);
250 bool IsBreakOnException(ExceptionBreakType type);
251 void PrepareStep(StepAction step_action, int step_count);
252 void ClearStepping();
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +0000253 void ClearStepOut();
254 bool IsStepping() { return thread_local_.step_count_ > 0; }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000255 bool StepNextContinue(BreakLocationIterator* break_location_iterator,
256 JavaScriptFrame* frame);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000257 static Handle<DebugInfo> GetDebugInfo(Handle<SharedFunctionInfo> shared);
258 static bool HasDebugInfo(Handle<SharedFunctionInfo> shared);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000259
lrn@chromium.org34e60782011-09-15 07:25:40 +0000260 void PrepareForBreakPoints();
261
jkummerow@chromium.org78502a92012-09-06 13:50:42 +0000262 // This function is used in FunctionNameUsing* tests.
263 Object* FindSharedFunctionInfoInScript(Handle<Script> script, int position);
264
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000265 // Returns whether the operation succeeded. Compilation can only be triggered
266 // if a valid closure is passed as the second argument, otherwise the shared
267 // function needs to be compiled already.
268 bool EnsureDebugInfo(Handle<SharedFunctionInfo> shared,
269 Handle<JSFunction> function);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000270
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000271 // Returns true if the current stub call is patched to call the debugger.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000272 static bool IsDebugBreak(Address addr);
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000273 // Returns true if the current return statement has been patched to be
274 // a debugger breakpoint.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000275 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000276
277 // Check whether a code stub with the specified major key is a possible break
278 // point location.
279 static bool IsSourceBreakStub(Code* code);
280 static bool IsBreakStub(Code* code);
281
282 // Find the builtin to use for invoking the debug break
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000283 static Handle<Code> FindDebugBreak(Handle<Code> code, RelocInfo::Mode mode);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000284
285 static Handle<Object> GetSourceBreakLocations(
286 Handle<SharedFunctionInfo> shared);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000287
288 // Getter for the debug_context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000289 inline Handle<Context> debug_context() { return debug_context_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000290
291 // Check whether a global object is the debug global object.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000292 bool IsDebugGlobal(GlobalObject* global);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000293
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000294 // Check whether this frame is just about to return.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000295 bool IsBreakAtReturn(JavaScriptFrame* frame);
ager@chromium.org2cc82ae2010-06-14 07:35:38 +0000296
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000297 // Fast check to see if any break points are active.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000298 inline bool has_break_points() { return has_break_points_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000299
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000300 void NewBreak(StackFrame::Id break_frame_id);
301 void SetBreak(StackFrame::Id break_frame_id, int break_id);
302 StackFrame::Id break_frame_id() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000303 return thread_local_.break_frame_id_;
304 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000305 int break_id() { return thread_local_.break_id_; }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000306
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000307 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
308 void HandleStepIn(Handle<JSFunction> function,
309 Handle<Object> holder,
310 Address fp,
311 bool is_constructor);
312 Address step_in_fp() { return thread_local_.step_into_fp_; }
313 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000314
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000315 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
316 Address step_out_fp() { return thread_local_.step_out_fp_; }
ager@chromium.orga1645e22009-09-09 19:27:10 +0000317
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000318 EnterDebugger* debugger_entry() {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000319 return thread_local_.debugger_entry_;
320 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000321 void set_debugger_entry(EnterDebugger* entry) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000322 thread_local_.debugger_entry_ = entry;
323 }
324
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000325 // Check whether any of the specified interrupts are pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000326 bool is_interrupt_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000327 return (thread_local_.pending_interrupts_ & what) != 0;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000328 }
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000329
330 // Set specified interrupts as pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000331 void set_interrupts_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000332 thread_local_.pending_interrupts_ |= what;
333 }
334
335 // Clear specified interrupts from pending.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000336 void clear_interrupt_pending(InterruptFlag what) {
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000337 thread_local_.pending_interrupts_ &= ~static_cast<int>(what);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000338 }
339
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000340 // Getter and setter for the disable break state.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000341 bool disable_break() { return disable_break_; }
342 void set_disable_break(bool disable_break) {
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000343 disable_break_ = disable_break;
344 }
345
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346 // Getters for the current exception break state.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000347 bool break_on_exception() { return break_on_exception_; }
348 bool break_on_uncaught_exception() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000349 return break_on_uncaught_exception_;
350 }
351
352 enum AddressId {
353 k_after_break_target_address,
354 k_debug_break_return_address,
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000355 k_debug_break_slot_address,
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000356 k_restarter_frame_function_pointer
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000357 };
358
359 // Support for setting the address to jump to when returning from break point.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000360 Address* after_break_target_address() {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000361 return reinterpret_cast<Address*>(&thread_local_.after_break_target_);
362 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000363 Address* restarter_frame_function_pointer_address() {
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000364 Object*** address = &thread_local_.restarter_frame_function_pointer_;
365 return reinterpret_cast<Address*>(address);
366 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000367
368 // Support for saving/restoring registers when handling debug break calls.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000369 Object** register_address(int r) {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000370 return &registers_[r];
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000371 }
372
ager@chromium.orga1645e22009-09-09 19:27:10 +0000373 // Access to the debug break on return code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000374 Code* debug_break_return() { return debug_break_return_; }
375 Code** debug_break_return_address() {
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000376 return &debug_break_return_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000377 }
378
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000379 // Access to the debug break in debug break slot code.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000380 Code* debug_break_slot() { return debug_break_slot_; }
381 Code** debug_break_slot_address() {
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000382 return &debug_break_slot_;
383 }
384
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000385 static const int kEstimatedNofDebugInfoEntries = 16;
386 static const int kEstimatedNofBreakPointsInFunction = 16;
387
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000388 // Passed to MakeWeak.
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +0000389 static void HandleWeakDebugInfo(v8::Isolate* isolate,
390 v8::Persistent<v8::Value> obj,
391 void* data);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000392
393 friend class Debugger;
ager@chromium.org381abbb2009-02-25 13:23:22 +0000394 friend Handle<FixedArray> GetDebuggedFunctions(); // In test-debug.cc
395 friend void CheckDebuggerUnloaded(bool check_functions); // In test-debug.cc
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000396
397 // Threading support.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000398 char* ArchiveDebug(char* to);
399 char* RestoreDebug(char* from);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000400 static int ArchiveSpacePerThread();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000401 void FreeThreadResources() { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000402
ager@chromium.org32912102009-01-16 10:38:43 +0000403 // Mirror cache handling.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000404 void ClearMirrorCache();
ager@chromium.org32912102009-01-16 10:38:43 +0000405
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000406 // Script cache handling.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000407 void CreateScriptCache();
408 void DestroyScriptCache();
409 void AddScriptToScriptCache(Handle<Script> script);
410 Handle<FixedArray> GetLoadedScripts();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000411
412 // Garbage collection notifications.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000413 void AfterGarbageCollection();
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000414
ager@chromium.org8bb60582008-12-11 12:02:20 +0000415 // Code generator routines.
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000416 static void GenerateSlot(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000417 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
418 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
419 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
420 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000421 static void GenerateReturnDebugBreak(MacroAssembler* masm);
danno@chromium.orgc612e022011-11-10 11:38:15 +0000422 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm);
danno@chromium.orgfa458e42012-02-01 10:48:36 +0000423 static void GenerateCallFunctionStubRecordDebugBreak(MacroAssembler* masm);
424 static void GenerateCallConstructStubDebugBreak(MacroAssembler* masm);
425 static void GenerateCallConstructStubRecordDebugBreak(MacroAssembler* masm);
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000426 static void GenerateSlotDebugBreak(MacroAssembler* masm);
ager@chromium.org357bf652010-04-12 11:30:10 +0000427 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000428
429 // FrameDropper is a code replacement for a JavaScript frame with possibly
430 // several frames above.
431 // There is no calling conventions here, because it never actually gets
432 // called, it only gets returned to.
ager@chromium.org357bf652010-04-12 11:30:10 +0000433 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
ager@chromium.org8bb60582008-12-11 12:02:20 +0000434
435 // Called from stub-cache.cc.
436 static void GenerateCallICDebugBreak(MacroAssembler* masm);
437
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000438 // Describes how exactly a frame has been dropped from stack.
439 enum FrameDropMode {
440 // No frame has been dropped.
441 FRAMES_UNTOUCHED,
442 // The top JS frame had been calling IC stub. IC stub mustn't be called now.
443 FRAME_DROPPED_IN_IC_CALL,
444 // The top JS frame had been calling debug break slot stub. Patch the
445 // address this stub jumps to in the end.
446 FRAME_DROPPED_IN_DEBUG_SLOT_CALL,
447 // The top JS frame had been calling some C++ function. The return address
448 // gets patched automatically.
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000449 FRAME_DROPPED_IN_DIRECT_CALL,
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000450 FRAME_DROPPED_IN_RETURN_CALL,
451 CURRENTLY_SET_MODE
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000452 };
453
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000454 void FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000455 FrameDropMode mode,
456 Object** restarter_frame_function_pointer);
ager@chromium.org357bf652010-04-12 11:30:10 +0000457
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000458 // Initializes an artificial stack frame. The data it contains is used for:
459 // a. successful work of frame dropper code which eventually gets control,
460 // b. being compatible with regular stack structure for various stack
461 // iterators.
462 // Returns address of stack allocated pointer to restarted function,
463 // the value that is called 'restarter_frame_function_pointer'. The value
464 // at this address (possibly updated by GC) may be used later when preparing
465 // 'step in' operation.
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000466 static Object** SetUpFrameDropperFrame(StackFrame* bottom_js_frame,
467 Handle<Code> code);
468
ager@chromium.org357bf652010-04-12 11:30:10 +0000469 static const int kFrameDropperFrameSize;
470
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000471 // Architecture-specific constant.
472 static const bool kFrameDropperSupported;
473
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000474 /**
475 * Defines layout of a stack frame that supports padding. This is a regular
476 * internal frame that has a flexible stack structure. LiveEdit can shift
477 * its lower part up the stack, taking up the 'padding' space when additional
478 * stack memory is required.
479 * Such frame is expected immediately above the topmost JavaScript frame.
480 *
481 * Stack Layout:
482 * --- Top
483 * LiveEdit routine frames
484 * ---
485 * C frames of debug handler
486 * ---
487 * ...
488 * ---
489 * An internal frame that has n padding words:
490 * - any number of words as needed by code -- upper part of frame
491 * - padding size: a Smi storing n -- current size of padding
492 * - padding: n words filled with kPaddingValue in form of Smi
493 * - 3 context/type words of a regular InternalFrame
494 * - fp
495 * ---
496 * Topmost JavaScript frame
497 * ---
498 * ...
499 * --- Bottom
500 */
501 class FramePaddingLayout : public AllStatic {
502 public:
503 // Architecture-specific constant.
504 static const bool kIsSupported;
505
506 // A size of frame base including fp. Padding words starts right above
507 // the base.
508 static const int kFrameBaseSize = 4;
509
510 // A number of words that should be reserved on stack for the LiveEdit use.
511 // Normally equals 1. Stored on stack in form of Smi.
512 static const int kInitialSize;
513 // A value that padding words are filled with (in form of Smi). Going
514 // bottom-top, the first word not having this value is a counter word.
515 static const int kPaddingValue;
516 };
517
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000518 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000519 explicit Debug(Isolate* isolate);
520 ~Debug();
521
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000522 static bool CompileDebuggerScript(int index);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000523 void ClearOneShot();
524 void ActivateStepIn(StackFrame* frame);
525 void ClearStepIn();
526 void ActivateStepOut(StackFrame* frame);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000527 void ClearStepNext();
ager@chromium.org32912102009-01-16 10:38:43 +0000528 // Returns whether the compile succeeded.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000529 void RemoveDebugInfo(Handle<DebugInfo> debug_info);
530 void SetAfterBreakTarget(JavaScriptFrame* frame);
531 Handle<Object> CheckBreakPoints(Handle<Object> break_point);
532 bool CheckBreakPoint(Handle<Object> break_point_object);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000533
534 // Global handle to debug context where all the debugger JavaScript code is
535 // loaded.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000536 Handle<Context> debug_context_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000537
538 // Boolean state indicating whether any break points are set.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000539 bool has_break_points_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000540
541 // Cache of all scripts in the heap.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000542 ScriptCache* script_cache_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000543
544 // List of active debug info objects.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000545 DebugInfoListNode* debug_info_list_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000546
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000547 bool disable_break_;
548 bool break_on_exception_;
549 bool break_on_uncaught_exception_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000550
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000551 // Per-thread data.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000552 class ThreadLocal {
553 public:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000554 // Counter for generating next break id.
555 int break_count_;
556
557 // Current break id.
558 int break_id_;
559
560 // Frame id for the frame of the current break.
561 StackFrame::Id break_frame_id_;
562
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000563 // Step action for last step performed.
564 StepAction last_step_action_;
565
566 // Source statement position from last step next action.
567 int last_statement_position_;
568
569 // Number of steps left to perform before debug event.
570 int step_count_;
571
572 // Frame pointer from last step next action.
573 Address last_fp_;
574
lrn@chromium.org34e60782011-09-15 07:25:40 +0000575 // Number of queued steps left to perform before debug event.
576 int queued_step_count_;
577
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000578 // Frame pointer for frame from which step in was performed.
579 Address step_into_fp_;
580
ager@chromium.orga1645e22009-09-09 19:27:10 +0000581 // Frame pointer for the frame where debugger should be called when current
582 // step out action is completed.
583 Address step_out_fp_;
584
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000585 // Storage location for jump when exiting debug break calls.
586 Address after_break_target_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000587
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000588 // Stores the way how LiveEdit has patched the stack. It is used when
589 // debugger returns control back to user script.
590 FrameDropMode frame_drop_mode_;
ager@chromium.org357bf652010-04-12 11:30:10 +0000591
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000592 // Top debugger entry.
593 EnterDebugger* debugger_entry_;
594
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000595 // Pending interrupts scheduled while debugging.
596 int pending_interrupts_;
whesse@chromium.orge90029b2010-08-02 11:52:17 +0000597
598 // When restarter frame is on stack, stores the address
599 // of the pointer to function being restarted. Otherwise (most of the time)
600 // stores NULL. This pointer is used with 'step in' implementation.
601 Object** restarter_frame_function_pointer_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000602 };
603
604 // Storage location for registers when handling debug break calls
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000605 JSCallerSavedBuffer registers_;
606 ThreadLocal thread_local_;
607 void ThreadInit();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000608
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000609 // Code to call for handling debug break on return.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000610 Code* debug_break_return_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000611
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000612 // Code to call for handling debug break in debug break slots.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000613 Code* debug_break_slot_;
614
615 Isolate* isolate_;
616
617 friend class Isolate;
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000618
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000619 DISALLOW_COPY_AND_ASSIGN(Debug);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000620};
621
622
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +0000623DECLARE_RUNTIME_FUNCTION(Object*, Debug_Break);
624
625
ager@chromium.org5ec48922009-05-05 07:25:34 +0000626// Message delivered to the message handler callback. This is either a debugger
627// event or the response to a command.
628class MessageImpl: public v8::Debug::Message {
629 public:
630 // Create a message object for a debug event.
631 static MessageImpl NewEvent(DebugEvent event,
632 bool running,
633 Handle<JSObject> exec_state,
634 Handle<JSObject> event_data);
635
636 // Create a message object for the response to a debug command.
637 static MessageImpl NewResponse(DebugEvent event,
638 bool running,
639 Handle<JSObject> exec_state,
640 Handle<JSObject> event_data,
641 Handle<String> response_json,
642 v8::Debug::ClientData* client_data);
643
644 // Implementation of interface v8::Debug::Message.
645 virtual bool IsEvent() const;
646 virtual bool IsResponse() const;
647 virtual DebugEvent GetEvent() const;
648 virtual bool WillStartRunning() const;
649 virtual v8::Handle<v8::Object> GetExecutionState() const;
650 virtual v8::Handle<v8::Object> GetEventData() const;
651 virtual v8::Handle<v8::String> GetJSON() const;
652 virtual v8::Handle<v8::Context> GetEventContext() const;
653 virtual v8::Debug::ClientData* GetClientData() const;
654
655 private:
656 MessageImpl(bool is_event,
657 DebugEvent event,
658 bool running,
659 Handle<JSObject> exec_state,
660 Handle<JSObject> event_data,
661 Handle<String> response_json,
662 v8::Debug::ClientData* client_data);
663
664 bool is_event_; // Does this message represent a debug event?
665 DebugEvent event_; // Debug event causing the break.
666 bool running_; // Will the VM start running after this event?
667 Handle<JSObject> exec_state_; // Current execution state.
668 Handle<JSObject> event_data_; // Data associated with the event.
669 Handle<String> response_json_; // Response JSON if message holds a response.
670 v8::Debug::ClientData* client_data_; // Client data passed with the request.
671};
672
673
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000674// Details of the debug event delivered to the debug event listener.
675class EventDetailsImpl : public v8::Debug::EventDetails {
676 public:
677 EventDetailsImpl(DebugEvent event,
678 Handle<JSObject> exec_state,
679 Handle<JSObject> event_data,
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000680 Handle<Object> callback_data,
681 v8::Debug::ClientData* client_data);
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000682 virtual DebugEvent GetEvent() const;
683 virtual v8::Handle<v8::Object> GetExecutionState() const;
684 virtual v8::Handle<v8::Object> GetEventData() const;
685 virtual v8::Handle<v8::Context> GetEventContext() const;
686 virtual v8::Handle<v8::Value> GetCallbackData() const;
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000687 virtual v8::Debug::ClientData* GetClientData() const;
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000688 private:
689 DebugEvent event_; // Debug event causing the break.
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000690 Handle<JSObject> exec_state_; // Current execution state.
691 Handle<JSObject> event_data_; // Data associated with the event.
692 Handle<Object> callback_data_; // User data passed with the callback
693 // when it was registered.
694 v8::Debug::ClientData* client_data_; // Data passed to DebugBreakForCommand.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000695};
696
697
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000698// Message send by user to v8 debugger or debugger output message.
699// In addition to command text it may contain a pointer to some user data
700// which are expected to be passed along with the command reponse to message
701// handler.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000702class CommandMessage {
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000703 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000704 static CommandMessage New(const Vector<uint16_t>& command,
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000705 v8::Debug::ClientData* data);
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000706 CommandMessage();
707 ~CommandMessage();
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000708
709 // Deletes user data and disposes of the text.
710 void Dispose();
711 Vector<uint16_t> text() const { return text_; }
712 v8::Debug::ClientData* client_data() const { return client_data_; }
713 private:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000714 CommandMessage(const Vector<uint16_t>& text,
715 v8::Debug::ClientData* data);
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000716
717 Vector<uint16_t> text_;
718 v8::Debug::ClientData* client_data_;
719};
720
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000721// A Queue of CommandMessage objects. A thread-safe version is
722// LockingCommandMessageQueue, based on this class.
723class CommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000724 public:
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000725 explicit CommandMessageQueue(int size);
726 ~CommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000727 bool IsEmpty() const { return start_ == end_; }
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000728 CommandMessage Get();
729 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000730 void Clear() { start_ = end_ = 0; } // Queue is empty after Clear().
731 private:
732 // Doubles the size of the message queue, and copies the messages.
733 void Expand();
734
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000735 CommandMessage* messages_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000736 int start_;
737 int end_;
738 int size_; // The size of the queue buffer. Queue can hold size-1 messages.
739};
740
741
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000742class MessageDispatchHelperThread;
743
744
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000745// LockingCommandMessageQueue is a thread-safe circular buffer of CommandMessage
746// messages. The message data is not managed by LockingCommandMessageQueue.
ager@chromium.org41826e72009-03-30 13:30:57 +0000747// Pointers to the data are passed in and out. Implemented by adding a
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000748// Mutex to CommandMessageQueue. Includes logging of all puts and gets.
749class LockingCommandMessageQueue BASE_EMBEDDED {
ager@chromium.org41826e72009-03-30 13:30:57 +0000750 public:
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000751 LockingCommandMessageQueue(Logger* logger, int size);
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000752 ~LockingCommandMessageQueue();
ager@chromium.org41826e72009-03-30 13:30:57 +0000753 bool IsEmpty() const;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000754 CommandMessage Get();
755 void Put(const CommandMessage& message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000756 void Clear();
757 private:
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000758 Logger* logger_;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000759 CommandMessageQueue queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000760 Mutex* lock_;
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000761 DISALLOW_COPY_AND_ASSIGN(LockingCommandMessageQueue);
ager@chromium.org41826e72009-03-30 13:30:57 +0000762};
763
764
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000765class Debugger {
766 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000767 ~Debugger();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000768
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000769 void DebugRequest(const uint16_t* json_request, int length);
770
771 Handle<Object> MakeJSObject(Vector<const char> constructor_name,
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +0000772 int argc,
773 Handle<Object> argv[],
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000774 bool* caught_exception);
775 Handle<Object> MakeExecutionState(bool* caught_exception);
776 Handle<Object> MakeBreakEvent(Handle<Object> exec_state,
777 Handle<Object> break_points_hit,
778 bool* caught_exception);
779 Handle<Object> MakeExceptionEvent(Handle<Object> exec_state,
780 Handle<Object> exception,
781 bool uncaught,
782 bool* caught_exception);
783 Handle<Object> MakeNewFunctionEvent(Handle<Object> func,
784 bool* caught_exception);
785 Handle<Object> MakeCompileEvent(Handle<Script> script,
786 bool before,
787 bool* caught_exception);
788 Handle<Object> MakeScriptCollectedEvent(int id,
789 bool* caught_exception);
790 void OnDebugBreak(Handle<Object> break_points_hit, bool auto_continue);
791 void OnException(Handle<Object> exception, bool uncaught);
792 void OnBeforeCompile(Handle<Script> script);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000793
794 enum AfterCompileFlags {
795 NO_AFTER_COMPILE_FLAGS,
796 SEND_WHEN_DEBUGGING
797 };
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000798 void OnAfterCompile(Handle<Script> script,
799 AfterCompileFlags after_compile_flags);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000800 void OnScriptCollected(int id);
801 void ProcessDebugEvent(v8::DebugEvent event,
802 Handle<JSObject> event_data,
803 bool auto_continue);
804 void NotifyMessageHandler(v8::DebugEvent event,
805 Handle<JSObject> exec_state,
806 Handle<JSObject> event_data,
807 bool auto_continue);
808 void SetEventListener(Handle<Object> callback, Handle<Object> data);
809 void SetMessageHandler(v8::Debug::MessageHandler2 handler);
810 void SetHostDispatchHandler(v8::Debug::HostDispatchHandler handler,
811 int period);
812 void SetDebugMessageDispatchHandler(
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000813 v8::Debug::DebugMessageDispatchHandler handler,
814 bool provide_locker);
ager@chromium.org41826e72009-03-30 13:30:57 +0000815
816 // Invoke the message handler function.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000817 void InvokeMessageHandler(MessageImpl message);
ager@chromium.org41826e72009-03-30 13:30:57 +0000818
819 // Add a debugger command to the command queue.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000820 void ProcessCommand(Vector<const uint16_t> command,
821 v8::Debug::ClientData* client_data = NULL);
ager@chromium.org41826e72009-03-30 13:30:57 +0000822
823 // Check whether there are commands in the command queue.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000824 bool HasCommands();
ager@chromium.org41826e72009-03-30 13:30:57 +0000825
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000826 // Enqueue a debugger command to the command queue for event listeners.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000827 void EnqueueDebugCommand(v8::Debug::ClientData* client_data = NULL);
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000828
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000829 Handle<Object> Call(Handle<JSFunction> fun,
830 Handle<Object> data,
831 bool* pending_exception);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000832
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000833 // Start the debugger agent listening on the provided port.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000834 bool StartAgent(const char* name, int port,
835 bool wait_for_connection = false);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000836
837 // Stop the debugger agent.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000838 void StopAgent();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000839
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000840 // Blocks until the agent has started listening for connections
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000841 void WaitForAgent();
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000842
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000843 void CallMessageDispatchHandler();
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000844
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000845 Handle<Context> GetDebugContext();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000846
ager@chromium.org71daaf62009-04-01 07:22:49 +0000847 // Unload the debugger if possible. Only called when no debugger is currently
848 // active.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000849 void UnloadDebugger();
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000850 friend void ForceUnloadDebugger(); // In test-debug.cc
ager@chromium.org71daaf62009-04-01 07:22:49 +0000851
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000852 inline bool EventActive(v8::DebugEvent event) {
ager@chromium.org71daaf62009-04-01 07:22:49 +0000853 ScopedLock with(debugger_access_);
854
855 // Check whether the message handler was been cleared.
kasperl@chromium.org71affb52009-05-26 05:44:31 +0000856 if (debugger_unload_pending_) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000857 if (isolate_->debug()->debugger_entry() == NULL) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000858 UnloadDebugger();
859 }
ager@chromium.org71daaf62009-04-01 07:22:49 +0000860 }
861
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000862 if (((event == v8::BeforeCompile) || (event == v8::AfterCompile)) &&
863 !FLAG_debug_compile_events) {
864 return false;
865
866 } else if ((event == v8::ScriptCollected) &&
867 !FLAG_debug_script_collected_events) {
868 return false;
869 }
870
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000871 // Currently argument event is not used.
ager@chromium.org71daaf62009-04-01 07:22:49 +0000872 return !compiling_natives_ && Debugger::IsDebuggerActive();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000873 }
874
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000875 void set_compiling_natives(bool compiling_natives) {
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000876 compiling_natives_ = compiling_natives;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000877 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000878 bool compiling_natives() const { return compiling_natives_; }
879 void set_loading_debugger(bool v) { is_loading_debugger_ = v; }
880 bool is_loading_debugger() const { return is_loading_debugger_; }
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +0000881 void set_live_edit_enabled(bool v) { live_edit_enabled_ = v; }
mvstanton@chromium.org6bec0092013-01-23 13:46:53 +0000882 bool live_edit_enabled() const {
883 return FLAG_enable_liveedit && live_edit_enabled_ ;
884 }
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000885 void set_force_debugger_active(bool force_debugger_active) {
886 force_debugger_active_ = force_debugger_active;
887 }
888 bool force_debugger_active() const { return force_debugger_active_; }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000889
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000890 bool IsDebuggerActive();
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000891
892 private:
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000893 explicit Debugger(Isolate* isolate);
ager@chromium.org71daaf62009-04-01 07:22:49 +0000894
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000895 void CallEventCallback(v8::DebugEvent event,
896 Handle<Object> exec_state,
897 Handle<Object> event_data,
898 v8::Debug::ClientData* client_data);
899 void CallCEventCallback(v8::DebugEvent event,
900 Handle<Object> exec_state,
901 Handle<Object> event_data,
902 v8::Debug::ClientData* client_data);
903 void CallJSEventCallback(v8::DebugEvent event,
904 Handle<Object> exec_state,
905 Handle<Object> event_data);
906 void ListenersChanged();
ager@chromium.org381abbb2009-02-25 13:23:22 +0000907
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000908 Mutex* debugger_access_; // Mutex guarding debugger variables.
909 Handle<Object> event_listener_; // Global handle to listener.
910 Handle<Object> event_listener_data_;
911 bool compiling_natives_; // Are we compiling natives?
912 bool is_loading_debugger_; // Are we loading the debugger?
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +0000913 bool live_edit_enabled_; // Enable LiveEdit.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000914 bool never_unload_debugger_; // Can we unload the debugger?
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000915 bool force_debugger_active_; // Activate debugger without event listeners.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000916 v8::Debug::MessageHandler2 message_handler_;
917 bool debugger_unload_pending_; // Was message handler cleared?
918 v8::Debug::HostDispatchHandler host_dispatch_handler_;
919 Mutex* dispatch_handler_access_; // Mutex guarding dispatch handler.
920 v8::Debug::DebugMessageDispatchHandler debug_message_dispatch_handler_;
921 MessageDispatchHelperThread* message_dispatch_helper_thread_;
922 int host_dispatch_micros_;
923
924 DebuggerAgent* agent_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000925
ager@chromium.org41826e72009-03-30 13:30:57 +0000926 static const int kQueueInitialSize = 4;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000927 LockingCommandMessageQueue command_queue_;
928 Semaphore* command_received_; // Signaled for each command received.
929 LockingCommandMessageQueue event_command_queue_;
ager@chromium.org41826e72009-03-30 13:30:57 +0000930
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000931 Isolate* isolate_;
mikhail.naganov@gmail.com22762872010-07-14 09:29:05 +0000932
ager@chromium.org71daaf62009-04-01 07:22:49 +0000933 friend class EnterDebugger;
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000934 friend class Isolate;
935
936 DISALLOW_COPY_AND_ASSIGN(Debugger);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000937};
938
939
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000940// This class is used for entering the debugger. Create an instance in the stack
941// to enter the debugger. This will set the current break state, make sure the
942// debugger is loaded and switch to the debugger context. If the debugger for
943// some reason could not be entered FailedToEnter will return true.
944class EnterDebugger BASE_EMBEDDED {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000945 public:
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000946 EnterDebugger();
947 ~EnterDebugger();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000948
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000949 // Check whether the debugger could be entered.
950 inline bool FailedToEnter() { return load_failed_; }
951
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000952 // Check whether there are any JavaScript frames on the stack.
ager@chromium.org8bb60582008-12-11 12:02:20 +0000953 inline bool HasJavaScriptFrames() { return has_js_frames_; }
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000954
ager@chromium.org9085a012009-05-11 19:22:57 +0000955 // Get the active context from before entering the debugger.
956 inline Handle<Context> GetContext() { return save_.context(); }
957
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000958 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000959 Isolate* isolate_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000960 EnterDebugger* prev_; // Previous debugger entry if entered recursively.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000961 JavaScriptFrameIterator it_;
ager@chromium.org8bb60582008-12-11 12:02:20 +0000962 const bool has_js_frames_; // Were there any JavaScript frames?
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000963 StackFrame::Id break_frame_id_; // Previous break frame id.
964 int break_id_; // Previous break id.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000965 bool load_failed_; // Did the debugger fail to load?
966 SaveContext save_; // Saves previous context.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000967};
968
969
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000970// Stack allocated class for disabling break.
971class DisableBreak BASE_EMBEDDED {
972 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000973 explicit DisableBreak(bool disable_break) : isolate_(Isolate::Current()) {
974 prev_disable_break_ = isolate_->debug()->disable_break();
975 isolate_->debug()->set_disable_break(disable_break);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000976 }
977 ~DisableBreak() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000978 ASSERT(Isolate::Current() == isolate_);
979 isolate_->debug()->set_disable_break(prev_disable_break_);
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000980 }
981
982 private:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000983 Isolate* isolate_;
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000984 // The previous state of the disable break used to restore the value when this
985 // object is destructed.
986 bool prev_disable_break_;
987};
988
989
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000990// Debug_Address encapsulates the Address pointers used in generating debug
991// code.
992class Debug_Address {
993 public:
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000994 explicit Debug_Address(Debug::AddressId id) : id_(id) { }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000995
996 static Debug_Address AfterBreakTarget() {
997 return Debug_Address(Debug::k_after_break_target_address);
998 }
999
1000 static Debug_Address DebugBreakReturn() {
1001 return Debug_Address(Debug::k_debug_break_return_address);
1002 }
1003
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001004 static Debug_Address RestarterFrameFunctionPointer() {
1005 return Debug_Address(Debug::k_restarter_frame_function_pointer);
1006 }
1007
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001008 Address address(Isolate* isolate) const {
1009 Debug* debug = isolate->debug();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001010 switch (id_) {
1011 case Debug::k_after_break_target_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001012 return reinterpret_cast<Address>(debug->after_break_target_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001013 case Debug::k_debug_break_return_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001014 return reinterpret_cast<Address>(debug->debug_break_return_address());
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001015 case Debug::k_debug_break_slot_address:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001016 return reinterpret_cast<Address>(debug->debug_break_slot_address());
whesse@chromium.orge90029b2010-08-02 11:52:17 +00001017 case Debug::k_restarter_frame_function_pointer:
1018 return reinterpret_cast<Address>(
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001019 debug->restarter_frame_function_pointer_address());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001020 default:
1021 UNREACHABLE();
1022 return NULL;
1023 }
1024 }
kmillikin@chromium.org83e16822011-09-13 08:21:47 +00001025
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001026 private:
1027 Debug::AddressId id_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001028};
1029
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001030// The optional thread that Debug Agent may use to temporary call V8 to process
1031// pending debug requests if debuggee is not running V8 at the moment.
1032// Techincally it does not call V8 itself, rather it asks embedding program
1033// to do this via v8::Debug::HostDispatchHandler
1034class MessageDispatchHelperThread: public Thread {
1035 public:
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00001036 explicit MessageDispatchHelperThread(Isolate* isolate);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001037 ~MessageDispatchHelperThread();
1038
1039 void Schedule();
1040
1041 private:
1042 void Run();
1043
1044 Semaphore* const sem_;
1045 Mutex* const mutex_;
1046 bool already_signalled_;
1047
1048 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
1049};
1050
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001051
1052} } // namespace v8::internal
1053
ager@chromium.org65dad4b2009-04-23 08:48:43 +00001054#endif // ENABLE_DEBUGGER_SUPPORT
1055
ager@chromium.org5ec48922009-05-05 07:25:34 +00001056#endif // V8_DEBUG_H_