1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/*
* Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2008-2023 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#pragma once
#include "Breakpoint.h"
#include "CallData.h"
#include "DebuggerCallFrame.h"
#include "DebuggerParseData.h"
#include "DebuggerPrimitives.h"
#include "JSCJSValue.h"
#include <wtf/DoublyLinkedList.h>
#include <wtf/Forward.h>
#include <wtf/ListHashSet.h>
#include <wtf/TZoneMalloc.h>
namespace JSC {
class CallFrame;
class CodeBlock;
class Exception;
class JSGlobalObject;
class Microtask;
class SourceProvider;
class VM;
class Debugger : public DoublyLinkedListNode<Debugger> {
WTF_MAKE_TZONE_ALLOCATED_EXPORT(Debugger, JS_EXPORT_PRIVATE);
public:
JS_EXPORT_PRIVATE Debugger(VM&);
JS_EXPORT_PRIVATE virtual ~Debugger();
VM& vm() { return m_vm; }
bool needsExceptionCallbacks() const { return m_breakpointsActivated && (m_pauseOnAllExceptionsBreakpoint || m_pauseOnUncaughtExceptionsBreakpoint); }
bool isInteractivelyDebugging() const { return m_breakpointsActivated; }
enum ReasonForDetach {
TerminatingDebuggingSession,
GlobalObjectIsDestructing
};
JS_EXPORT_PRIVATE void attach(JSGlobalObject*);
JS_EXPORT_PRIVATE void detach(JSGlobalObject*, ReasonForDetach);
JS_EXPORT_PRIVATE bool isAttached(JSGlobalObject*);
void forEachBreakpointLocation(SourceID, SourceProvider*, int startLine, int startColumn, int endLine, int endColumn, Function<void(int, int)>&&);
bool resolveBreakpoint(Breakpoint&, SourceProvider*);
bool setBreakpoint(Breakpoint&);
bool removeBreakpoint(Breakpoint&);
void clearBreakpoints();
void activateBreakpoints() { setBreakpointsActivated(true); }
void deactivateBreakpoints() { setBreakpointsActivated(false); }
bool breakpointsActive() const { return m_breakpointsActivated; }
// Breakpoint "delegate" functionality.
bool evaluateBreakpointCondition(Breakpoint&, JSGlobalObject*);
void evaluateBreakpointActions(Breakpoint&, JSGlobalObject*);
void setPauseOnDebuggerStatementsBreakpoint(RefPtr<Breakpoint>&& breakpoint) { m_pauseOnDebuggerStatementsBreakpoint = WTFMove(breakpoint); }
class TemporarilyDisableExceptionBreakpoints {
public:
TemporarilyDisableExceptionBreakpoints(Debugger&);
~TemporarilyDisableExceptionBreakpoints();
void replace();
void restore();
private:
Debugger& m_debugger;
RefPtr<Breakpoint> m_pauseOnAllExceptionsBreakpoint;
RefPtr<Breakpoint> m_pauseOnUncaughtExceptionsBreakpoint;
};
void setPauseOnAllExceptionsBreakpoint(RefPtr<Breakpoint>&& breakpoint) { m_pauseOnAllExceptionsBreakpoint = WTFMove(breakpoint); }
void setPauseOnUncaughtExceptionsBreakpoint(RefPtr<Breakpoint>&& breakpoint) { m_pauseOnUncaughtExceptionsBreakpoint = WTFMove(breakpoint); }
enum ReasonForPause {
NotPaused,
PausedForException,
PausedAtStatement,
PausedAtExpression,
PausedBeforeReturn,
PausedAtEndOfProgram,
PausedForBreakpoint,
PausedForDebuggerStatement,
PausedAfterBlackboxedScript,
};
ReasonForPause reasonForPause() const { return m_reasonForPause; }
BreakpointID pausingBreakpointID() const { return m_pausingBreakpointID; }
void schedulePauseAtNextOpportunity();
void cancelPauseAtNextOpportunity();
bool schedulePauseForSpecialBreakpoint(Breakpoint&);
bool cancelPauseForSpecialBreakpoint(Breakpoint&);
void breakProgram(RefPtr<Breakpoint>&& specialBreakpoint = nullptr);
void continueProgram();
void stepNextExpression();
void stepIntoStatement();
void stepOverStatement();
void stepOutOfFunction();
using BlackboxRange = std::pair<TextPosition, TextPosition>;
enum class BlackboxFlag : uint8_t {
Ignore = 1 << 0,
Defer = 1 << 1,
};
using BlackboxFlags = OptionSet<BlackboxFlag>;
using BlackboxConfiguration = UncheckedKeyHashMap<BlackboxRange, BlackboxFlags>;
void setBlackboxConfiguration(SourceID, BlackboxConfiguration&&);
void setBlackboxBreakpointEvaluations(bool);
void clearBlackbox();
bool isPaused() const { return m_isPaused; }
bool isStepping() const { return m_steppingMode == SteppingModeEnabled; }
bool suppressAllPauses() const { return m_suppressAllPauses; }
void setSuppressAllPauses(bool suppress) { m_suppressAllPauses = suppress; }
JS_EXPORT_PRIVATE virtual void sourceParsed(JSGlobalObject*, SourceProvider*, int errorLineNumber, const WTF::String& errorMessage);
void exception(JSGlobalObject*, CallFrame*, JSValue exceptionValue, bool hasCatchHandler);
void atStatement(CallFrame*);
void atExpression(CallFrame*);
void callEvent(CallFrame*);
void returnEvent(CallFrame*);
void unwindEvent(CallFrame*);
void willExecuteProgram(CallFrame*);
void didExecuteProgram(CallFrame*);
void didReachDebuggerStatement(CallFrame*);
JS_EXPORT_PRIVATE void didQueueMicrotask(JSGlobalObject*, MicrotaskIdentifier);
JS_EXPORT_PRIVATE void willRunMicrotask(JSGlobalObject*, MicrotaskIdentifier);
JS_EXPORT_PRIVATE void didRunMicrotask(JSGlobalObject*, MicrotaskIdentifier);
void registerCodeBlock(CodeBlock*);
void forEachRegisteredCodeBlock(NOESCAPE const Function<void(CodeBlock*)>&);
void didCreateNativeExecutable(NativeExecutable&);
void willCallNativeExecutable(CallFrame*);
class Client {
public:
virtual ~Client() = default;
virtual bool isInspectorDebuggerAgent() const { return false; }
virtual JSObject* debuggerScopeExtensionObject(Debugger&, JSGlobalObject*, DebuggerCallFrame&) { return nullptr; }
virtual void debuggerWillEvaluate(Debugger&, JSGlobalObject*, const Breakpoint::Action&) { }
virtual void debuggerDidEvaluate(Debugger&, JSGlobalObject*, const Breakpoint::Action&) { }
};
Client* client() const { return m_client; }
void setClient(Client*);
// FIXME: <https://webkit.org/b/162773> Web Inspector: Simplify Debugger::Script to use SourceProvider
struct Script {
String url;
String source;
String sourceURL;
String sourceMappingURL;
RefPtr<SourceProvider> sourceProvider;
int startLine { 0 };
int startColumn { 0 };
int endLine { 0 };
int endColumn { 0 };
bool isContentScript { false };
};
class Observer {
public:
virtual ~Observer() { }
virtual void didParseSource(SourceID, const Debugger::Script&) { }
virtual void failedToParseSource(const String& /* url */, const String& /* data */, int /* firstLine */, int /* errorLine */, const String& /* errorMessage */) { }
virtual void didCreateNativeExecutable(NativeExecutable&) { }
virtual void willCallNativeExecutable(CallFrame*) { }
virtual void willEnter(CallFrame*) { }
virtual void didQueueMicrotask(JSGlobalObject*, MicrotaskIdentifier) { }
virtual void willRunMicrotask(JSGlobalObject*, MicrotaskIdentifier) { }
virtual void didRunMicrotask(JSGlobalObject*, MicrotaskIdentifier) { }
virtual void didPause(JSGlobalObject*, DebuggerCallFrame&, JSValue /* exceptionOrCaughtValue */) { }
virtual void didContinue() { }
virtual void applyBreakpoints(CodeBlock*) { }
virtual void breakpointActionLog(JSGlobalObject*, const String& /* data */) { }
virtual void breakpointActionSound(BreakpointActionID) { }
virtual void breakpointActionProbe(JSGlobalObject*, BreakpointActionID, unsigned /* batchId */, unsigned /* sampleId */, JSValue /* result */) { }
virtual void didDeferBreakpointPause(BreakpointID) { }
};
JS_EXPORT_PRIVATE void addObserver(Observer&);
JS_EXPORT_PRIVATE void removeObserver(Observer&, bool isBeingDestroyed);
class ProfilingClient {
public:
virtual ~ProfilingClient();
virtual bool isAlreadyProfiling() const = 0;
virtual Seconds willEvaluateScript() = 0;
virtual void didEvaluateScript(Seconds startTime, ProfilingReason) = 0;
};
void setProfilingClient(ProfilingClient*);
bool hasProfilingClient() const { return m_profilingClient != nullptr; }
bool isAlreadyProfiling() const { return m_profilingClient && m_profilingClient->isAlreadyProfiling(); }
Seconds willEvaluateScript();
void didEvaluateScript(Seconds startTime, ProfilingReason);
protected:
JS_EXPORT_PRIVATE JSC::DebuggerCallFrame& currentDebuggerCallFrame();
bool hasHandlerForExceptionCallback() const
{
ASSERT(m_reasonForPause == PausedForException);
return m_hasHandlerForExceptionCallback;
}
JSValue currentException()
{
ASSERT(m_reasonForPause == PausedForException);
return m_currentException;
}
virtual void attachDebugger() { }
virtual void detachDebugger(bool /* isBeingDestroyed */) { }
JS_EXPORT_PRIVATE virtual void recompileAllJSFunctions();
virtual void didPause(JSGlobalObject*) { }
JS_EXPORT_PRIVATE virtual void handlePause(JSGlobalObject*, ReasonForPause);
virtual void didContinue(JSGlobalObject*) { }
virtual void runEventLoopWhilePaused() { }
virtual bool isContentScript(JSGlobalObject*) const { return false; }
// NOTE: Currently all exceptions are reported at the API boundary through reportAPIException.
// Until a time comes where an exception can be caused outside of the API (e.g. setTimeout
// or some other async operation in a pure JSContext) we can ignore exceptions reported here.
virtual void reportException(JSGlobalObject*, Exception*) const { }
bool m_doneProcessingDebuggerEvents { true };
private:
JSValue exceptionOrCaughtValue(JSGlobalObject*);
class ClearCodeBlockDebuggerRequestsFunctor;
class ClearDebuggerRequestsFunctor;
class SetSteppingModeFunctor;
class ToggleBreakpointFunctor;
class PauseReasonDeclaration {
public:
PauseReasonDeclaration(Debugger& debugger, ReasonForPause reason)
: m_debugger(debugger)
{
m_debugger.m_reasonForPause = reason;
}
~PauseReasonDeclaration()
{
m_debugger.m_reasonForPause = NotPaused;
}
private:
Debugger& m_debugger;
};
RefPtr<Breakpoint> didHitBreakpoint(SourceID, const TextPosition&);
DebuggerParseData& debuggerParseData(SourceID, SourceProvider*);
void updateNeedForOpDebugCallbacks();
// These update functions are only needed because our current breakpoints are
// key'ed off the source position instead of the bytecode PC. This ensures
// that we don't break on the same line more than once. Once we switch to a
// bytecode PC key'ed breakpoint, we will not need these anymore and should
// be able to remove them.
enum CallFrameUpdateAction { AttemptPause, NoPause };
void updateCallFrame(JSC::JSGlobalObject*, JSC::CallFrame*, CallFrameUpdateAction);
void updateCallFrameInternal(JSC::CallFrame*);
void pauseIfNeeded(JSC::JSGlobalObject*);
void resetImmediatePauseState();
void resetEventualPauseState();
enum SteppingMode {
SteppingModeDisabled,
SteppingModeEnabled
};
void setSteppingMode(SteppingMode);
enum BreakpointState {
BreakpointDisabled,
BreakpointEnabled
};
JS_EXPORT_PRIVATE void setBreakpointsActivated(bool);
void toggleBreakpoint(CodeBlock*, Breakpoint&, BreakpointState);
void applyBreakpoints(CodeBlock*);
void toggleBreakpoint(Breakpoint&, BreakpointState);
void clearDebuggerRequests(JSGlobalObject*);
void clearParsedData();
bool canDispatchFunctionToObservers() const;
void dispatchFunctionToObservers(Function<void(Observer&)>);
VM& m_vm;
UncheckedKeyHashSet<JSGlobalObject*> m_globalObjects;
UncheckedKeyHashMap<SourceID, DebuggerParseData, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> m_parseDataMap;
UncheckedKeyHashMap<SourceID, BlackboxConfiguration, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> m_blackboxConfigurations;
bool m_blackboxBreakpointEvaluations : 1;
bool m_pauseAtNextOpportunity : 1;
bool m_pauseOnStepNext : 1;
bool m_pauseOnStepOut : 1;
bool m_pastFirstExpressionInStatement : 1;
bool m_isPaused : 1;
bool m_breakpointsActivated : 1;
bool m_hasHandlerForExceptionCallback : 1;
bool m_suppressAllPauses : 1;
unsigned m_steppingMode : 1; // SteppingMode
ReasonForPause m_reasonForPause;
JSValue m_currentException;
CallFrame* m_pauseOnCallFrame { nullptr };
CallFrame* m_currentCallFrame { nullptr };
unsigned m_lastExecutedLine;
SourceID m_lastExecutedSourceID;
bool m_afterBlackboxedScript { false };
using LineToBreakpointsMap = UncheckedKeyHashMap<unsigned, BreakpointsVector, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int>>;
UncheckedKeyHashMap<SourceID, LineToBreakpointsMap, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> m_breakpointsForSourceID;
UncheckedKeyHashSet<Ref<Breakpoint>> m_breakpoints;
RefPtr<Breakpoint> m_specialBreakpoint;
ListHashSet<Ref<Breakpoint>> m_deferredBreakpoints;
BreakpointID m_pausingBreakpointID;
RefPtr<Breakpoint> m_pauseOnAllExceptionsBreakpoint;
RefPtr<Breakpoint> m_pauseOnUncaughtExceptionsBreakpoint;
RefPtr<Breakpoint> m_pauseOnDebuggerStatementsBreakpoint;
unsigned m_nextProbeSampleId { 1 };
unsigned m_currentProbeBatchId { 0 };
RefPtr<JSC::DebuggerCallFrame> m_currentDebuggerCallFrame;
UncheckedKeyHashSet<Observer*> m_observers;
Client* m_client { nullptr };
ProfilingClient* m_profilingClient { nullptr };
Debugger* m_prev; // Required by DoublyLinkedListNode.
Debugger* m_next; // Required by DoublyLinkedListNode.
friend class DebuggerPausedScope;
friend class TemporaryPausedState;
friend class LLIntOffsetsExtractor;
friend class WTF::DoublyLinkedListNode<Debugger>;
};
} // namespace JSC
|