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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "debugger_global.h"
#include "debuggerconstants.h"
#include "debuggerprotocol.h"
#include "breakhandler.h"
#include "threadshandler.h"
#include <coreplugin/icontext.h>
#include <projectexplorer/abi.h>
#include <projectexplorer/devicesupport/idevicefwd.h>
#include <texteditor/textmark.h>
#include <utils/filepath.h>
#include <utils/outputformat.h>
#include <utils/processhandle.h>
#include <utils/processinterface.h>
QT_BEGIN_NAMESPACE
class QDebug;
class QPoint;
QT_END_NAMESPACE
namespace Core { class IOptionsPage; }
namespace ProjectExplorer { class RunControl; }
namespace Utils {
class MacroExpander;
class Perspective;
class ProcessResultData;
class Result;
} // Utils
namespace Debugger {
enum DebuggerState
{
DebuggerNotReady, // Debugger not started
EngineSetupRequested, // Engine starts
EngineSetupFailed,
EngineRunRequested,
EngineRunFailed,
InferiorUnrunnable, // Used in the core dump adapter
InferiorRunRequested, // Debuggee requested to run
InferiorRunOk, // Debuggee running
InferiorRunFailed, // Debuggee not running
InferiorStopRequested, // Debuggee running, stop requested
InferiorStopOk, // Debuggee stopped
InferiorStopFailed, // Debuggee not stopped, will kill debugger
InferiorShutdownRequested,
InferiorShutdownFinished,
EngineShutdownRequested,
EngineShutdownFinished,
DebuggerFinished
};
DEBUGGER_EXPORT QDebug operator<<(QDebug str, DebuggerState state);
class DEBUGGER_EXPORT DebuggerRunParameters
{
public:
static DebuggerRunParameters fromRunControl(ProjectExplorer::RunControl *runControl);
static void setBreakOnMainNextTime();
Utils::Result fixupParameters(ProjectExplorer::RunControl *runControl);
void setStartMode(DebuggerStartMode startMode);
DebuggerStartMode startMode() const { return m_startMode; }
bool isLocalAttachEngine() const { return m_startMode == AttachToLocalProcess; }
void setCloseMode(DebuggerCloseMode closeMode) { m_closeMode = closeMode; }
DebuggerCloseMode closeMode() const { return m_closeMode; }
void setInferior(const Utils::ProcessRunData &runnable) { m_inferior = runnable; }
void setInferiorExecutable(const Utils::FilePath &executable) {
m_inferior.command.setExecutable(executable);
}
void setInferiorEnvironment(const Utils::Environment &env) { m_inferior.environment = env; }
Utils::ProcessRunData inferior() const { return m_inferior; }
void setDisplayName(const QString &name) { m_displayName = name; }
QString displayName() const { return m_displayName; }
void setAttachPid(Utils::ProcessHandle pid) { m_attachPid = pid; }
Utils::ProcessHandle attachPid() const { return m_attachPid; }
void setSolibSearchPath(const Utils::FilePaths &list) { m_solibSearchPath = list; }
void addSolibSearchDir(const QString &str);
Utils::FilePaths solibSearchPath() const { return m_solibSearchPath; }
void setQmlServer(const QUrl &qmlServer) { m_qmlServer = qmlServer; }
QUrl qmlServer() const { return m_qmlServer; }
bool isQmlDebugging() const { return m_isQmlDebugging; }
void setQmlDebugging(bool on) { m_isQmlDebugging = on; }
void setRemoteChannel(const QUrl &channel) { m_remoteChannel = channel; }
QUrl remoteChannel() const { return m_remoteChannel; }
void setRemoteChannelPipe(const QString &pipe) { m_remoteChannelPipe = pipe; }
QString remoteChannelPipe() const { return m_remoteChannelPipe; }
void setUseExtendedRemote(bool on) { m_useExtendedRemote = on; }
bool useExtendedRemote() const { return m_useExtendedRemote; }
void setSymbolFile(const Utils::FilePath &symbolFile) { m_symbolFile = symbolFile; }
Utils::FilePath symbolFile() const { return m_symbolFile; }
void insertSourcePath(const QString &key, const QString &value) {
m_sourcePathMap.insert(key, value);
}
QMap<QString, QString> sourcePathMap() const { return m_sourcePathMap; }
void setCommandsAfterConnect(const QString &commands) { m_commandsAfterConnect = commands; }
QStringList commandsAfterConnect() const;
void setCommandsForReset(const QString &commands) { m_commandsForReset = commands; }
QStringList commandsForReset() const;
void setUseContinueInsteadOfRun(bool on) { m_useContinueInsteadOfRun = on; }
bool useContinueInsteadOfRun() const { return m_useContinueInsteadOfRun; }
void addExpectedSignal(const QString &signal) { m_expectedSignals.append(signal); }
QStringList expectedSignals() const { return m_expectedSignals; }
void setUseCtrlCStub(bool on) { m_useCtrlCStub = on; }
bool useCtrlCStub() const { return m_useCtrlCStub; }
void setUseTargetAsync(bool on) { m_useTargetAsync = on; }
bool useTargetAsync() const { return m_useTargetAsync; }
void addSearchDirectory(const Utils::FilePath &dir) { m_additionalSearchDirectories.append(dir); }
Utils::FilePaths additionalSearchDirectories() const { return m_additionalSearchDirectories; }
void setLldbPlatform(const QString &platform) { m_lldbPlatform = platform; }
QString lldbPlatform() const { return m_lldbPlatform; }
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot) {
m_deviceSymbolsRoot = deviceSymbolsRoot;
}
QString deviceSymbolsRoot() const { return m_deviceSymbolsRoot; }
void setContinueAfterAttach(bool on) { m_continueAfterAttach = on; }
bool continueAfterAttach() const { return m_continueAfterAttach; }
void setSysRoot(const Utils::FilePath &sysRoot) { m_sysRoot = sysRoot; }
Utils::FilePath sysRoot() const { return m_sysRoot; }
void setDeviceUuid(const QString &uuid) { m_deviceUuid = uuid; }
QString deviceUuid() const { return m_deviceUuid; }
void setCoreFilePath(const Utils::FilePath &coreFile) { m_coreFile = coreFile; }
Utils::FilePath coreFile() const { return m_coreFile; }
void setSnapshot(bool isSnapshot) { m_isSnapshot = isSnapshot; }
bool isSnapshot() const { return m_isSnapshot; }
QString additionalStartupCommands() const { return m_additionalStartupCommands; }
DebuggerEngineType cppEngineType() const { return m_cppEngineType; }
QString version() const { return m_version; }
bool isPythonDebugging() const { return m_isPythonDebugging; }
void setBreakOnMain(bool on) { m_breakOnMain = on; }
bool breakOnMain() const { return m_breakOnMain; }
bool multiProcess() const { return m_multiProcess; }
void setUseTerminal(bool on) { m_useTerminal = on; }
bool useTerminal() const { return m_useTerminal; }
bool runAsRoot() const { return m_runAsRoot; }
void modifyDebuggerEnvironment(const Utils::EnvironmentItems &items) {
m_debugger.environment.modify(items);
}
Utils::ProcessRunData debugger() const { return m_debugger; }
void setOverrideStartScript(const Utils::FilePath &script) { m_overrideStartScript = script; }
Utils::FilePath overrideStartScript() const { return m_overrideStartScript; }
void setStartMessage(const QString &msg) { m_startMessage = msg; }
// FIXME: Add a startMessage() getter and use it.
void setDebugInfoLocation(const Utils::FilePath &location) { m_debugInfoLocation = location; }
Utils::FilePath debugInfoLocation() const { return m_debugInfoLocation; }
QStringList debugSourceLocation() const { return m_debugSourceLocation; }
Utils::FilePath qtSourceLocation() const { return m_qtSourceLocation; }
void setToolChainAbi(const ProjectExplorer::Abi &abi) { m_toolChainAbi = abi; }
ProjectExplorer::Abi toolChainAbi() const { return m_toolChainAbi; }
Utils::FilePath projectSourceDirectory() const { return m_projectSourceDirectory; }
Utils::FilePaths projectSourceFiles() const { return m_projectSourceFiles; }
void setApplicationPid(qint64 pid) { m_applicationPid = pid; }
qint64 applicationPid() const { return m_applicationPid; }
void setApplicationMainThreadId(qint64 threadId) { m_applicationMainThreadId = threadId; }
qint64 applicationMainThreadId() const { return m_applicationMainThreadId; }
void setInterpreter(const Utils::FilePath &path) { m_interpreter = path; }
Utils::FilePath interpreter() const { return m_interpreter; }
void setMainScript(const Utils::FilePath &path) { m_mainScript = path; }
Utils::FilePath mainScript() const { return m_mainScript; }
void setCrashParameter(const QString &event) { m_crashParameter = event; }
QString crashParameter() const { return m_crashParameter; }
bool isCppDebugging() const;
bool isNativeMixedDebugging() const;
const Utils::MacroExpander *macroExpander() const { return m_macroExpander; }
void setExitCode(int code) { m_exitCode = code; }
std::optional<int> exitCode() const { return m_exitCode; }
void setTestCase(int testCase) { m_testCase = testCase; }
int testCase() const { return m_testCase; }
int qtVersion() const { return m_qtVersion; }
QString qtNamespace() const { return m_qtNamespace; };
void setPeripheralDescriptionFile(const Utils::FilePath &path) { m_peripheralDescriptionFile = path; }
Utils::FilePath peripheralDescriptionFile() const { return m_peripheralDescriptionFile; }
void setUVisionProjectFilePath(const Utils::FilePath &path) { m_uVisionProjectFilePath = path; }
Utils::FilePath uVisionProjectFilePath() const { return m_uVisionProjectFilePath; }
void setUVisionOptionsFilePath(const Utils::FilePath &path) { m_uVisionOptionsFilePath = path; }
Utils::FilePath uVisionOptionsFilePath() const { return m_uVisionOptionsFilePath; }
void setUVisionSimulator(bool on) { m_uVisionSimulator = on; }
bool uVisionSimulator() const { return m_uVisionSimulator; }
void setServerAttachPid(const Utils::ProcessHandle &handle) { m_serverAttachPid = handle; }
Utils::ProcessHandle serverAttachPid() const { return m_serverAttachPid; }
void setServerUseMulti(bool on) { m_serverUseMulti = on; }
bool serverUseMulti() const { return m_serverUseMulti; }
void setServerEssential(bool on) { m_serverEssential = on; }
bool serverEssential() const { return m_serverEssential; }
void setSkipDebugServer(bool on) { m_skipDebugServer = on; }
bool skipDebugServer() const { return m_skipDebugServer; }
void setAddQmlServerInferiorCmdArgIfNeeded(bool on) { m_addQmlServerInferiorCmdArgIfNeeded = on; }
bool isAddQmlServerInferiorCmdArgIfNeeded() const { return m_addQmlServerInferiorCmdArgIfNeeded; }
private:
DebuggerStartMode m_startMode = NoStartMode;
DebuggerCloseMode m_closeMode = KillAtClose;
Utils::ProcessRunData m_inferior;
QString m_displayName; // Used in the Snapshots view.
Utils::ProcessHandle m_attachPid;
Utils::FilePaths m_solibSearchPath;
QUrl m_qmlServer; // Used by Qml debugging.
bool m_isQmlDebugging = false;
QUrl m_remoteChannel; // Used by general remote debugging.
QString m_remoteChannelPipe;
bool m_useExtendedRemote = false; // Whether to use GDB's target extended-remote or not.
Utils::FilePath m_symbolFile;
QMap<QString, QString> m_sourcePathMap; // Used by Mer plugin (3rd party)
QString m_commandsForReset; // Used by baremetal plugin. Commands used for resetting the inferior
bool m_useContinueInsteadOfRun = false; // If connected to a hw debugger run is not possible but continue is used
QString m_commandsAfterConnect; // Additional commands to post after connection to debug target
QStringList m_expectedSignals; // Used by Valgrind
bool m_useCtrlCStub = false; // For QNX debugging.
bool m_useTargetAsync = false;
Utils::FilePaths m_additionalSearchDirectories;
QString m_lldbPlatform;
QString m_deviceSymbolsRoot;
bool m_continueAfterAttach = false;
Utils::FilePath m_sysRoot;
QString m_deviceUuid; // iOS 17+
// Used by general core file debugging. Public access requested in QTCREATORBUG-17158.
Utils::FilePath m_coreFile;
bool m_isSnapshot = false; // Set if created internally.
// Macro-expanded and passed to debugger startup.
QString m_additionalStartupCommands;
DebuggerEngineType m_cppEngineType = NoEngineType;
QString m_version;
bool m_isPythonDebugging = false;
bool m_breakOnMain = false;
bool m_multiProcess = false; // Whether to set detach-on-fork off.
bool m_useTerminal = false;
bool m_runAsRoot = false;
Utils::ProcessRunData m_debugger;
Utils::FilePath m_overrideStartScript; // Used in attach to core and remote debugging
QString m_startMessage; // First status message shown.
Utils::FilePath m_debugInfoLocation; // Gdb "set-debug-file-directory".
QStringList m_debugSourceLocation; // Gdb "directory"
Utils::FilePath m_qtSourceLocation;
ProjectExplorer::Abi m_toolChainAbi;
Utils::FilePath m_projectSourceDirectory;
Utils::FilePaths m_projectSourceFiles;
qint64 m_applicationPid = 0; // Terminal
qint64 m_applicationMainThreadId = 0; // Terminal
Utils::FilePath m_interpreter; // Used by Script debugging
Utils::FilePath m_mainScript; // Used by Script debugging
QString m_crashParameter; // Used by AttachCrashedExternal.
bool m_nativeMixedEnabled = false;
const Utils::MacroExpander *m_macroExpander = nullptr;
std::optional<int> m_exitCode = {};
int m_testCase = 0; // For Debugger testing.
QStringList m_validationErrors;
int m_qtVersion = 0;
QString m_qtNamespace;
Utils::FilePath m_peripheralDescriptionFile; // Common debugger constant.
Utils::FilePath m_uVisionProjectFilePath; // UVSC-specific debugger constant.
Utils::FilePath m_uVisionOptionsFilePath; // UVSC-specific debugger constant.
bool m_uVisionSimulator = false;
Utils::ProcessHandle m_serverAttachPid;
bool m_serverUseMulti = true;
bool m_serverEssential = true;
bool m_skipDebugServer = false;
bool m_addQmlServerInferiorCmdArgIfNeeded = false;
};
namespace Internal {
class DebuggerEnginePrivate;
class DebuggerPluginPrivate;
class DisassemblerAgent;
class MemoryAgent;
class WatchItem;
class BreakHandler;
class BreakpointParameters;
class LocationMark;
class LogWindow;
class ModulesHandler;
class RegisterHandler;
class PeripheralRegisterHandler;
class Section;
class SourceFilesHandler;
class StackFrame;
class StackHandler;
class Symbol;
class WatchHandler;
class WatchTreeView;
class DebuggerToolTipContext;
class DebuggerToolTipManager;
class MemoryViewSetupData;
class UpdateParameters
{
public:
UpdateParameters(const QString &partialVariable = QString()) :
partialVariable(partialVariable) {}
QStringList partialVariables() const
{
QStringList result;
if (!partialVariable.isEmpty())
result.append(partialVariable);
return result;
}
QString partialVariable;
bool qmlFocusOnFrame = true; // QTCREATORBUG-29874
};
class Location
{
public:
Location() = default;
Location(quint64 address) { m_address = address; }
Location(const Utils::FilePath &file) { m_fileName = file; }
Location(const Utils::FilePath &file, int line, bool marker = true)
{ m_textPosition = {line, -1}; m_fileName = file; m_needsMarker = marker; }
Location(const Utils::FilePath &file, const Utils::Text::Position &pos, bool marker = true)
{ m_textPosition = pos; m_fileName = file; m_needsMarker = marker; }
Location(const StackFrame &frame, bool marker = true);
Utils::FilePath fileName() const { return m_fileName; }
QString functionName() const { return m_functionName; }
QString from() const { return m_from; }
Utils::Text::Position textPosition() const { return m_textPosition; }
void setNeedsRaise(bool on) { m_needsRaise = on; }
void setNeedsMarker(bool on) { m_needsMarker = on; }
void setFileName(const Utils::FilePath &fileName) { m_fileName = fileName; }
void setUseAssembler(bool on) { m_hasDebugInfo = !on; }
bool needsRaise() const { return m_needsRaise; }
bool needsMarker() const { return m_needsMarker; }
bool hasDebugInfo() const { return m_hasDebugInfo; }
bool canBeDisassembled() const
{ return m_address != quint64(-1) || !m_functionName.isEmpty(); }
quint64 address() const { return m_address; }
private:
bool m_needsMarker = false;
bool m_needsRaise = true;
bool m_hasDebugInfo = true;
Utils::Text::Position m_textPosition;
Utils::FilePath m_fileName;
QString m_functionName;
QString m_from;
quint64 m_address = 0;
};
class DebuggerEngine : public QObject
{
Q_OBJECT
public:
DebuggerEngine();
~DebuggerEngine() override;
void setDevice(const ProjectExplorer::IDeviceConstPtr &device);
void setRunParameters(const DebuggerRunParameters &runParameters);
void setRunId(const QString &id);
QString runId() const;
const DebuggerRunParameters &runParameters() const;
void addCompanionEngine(DebuggerEngine *engine);
void setSecondaryEngine();
void start();
enum {
// Remove need to qualify each use.
NeedsTemporaryStop = DebuggerCommand::NeedsTemporaryStop,
NeedsFullStop = DebuggerCommand::NeedsFullStop,
Discardable = DebuggerCommand::Discardable,
ConsoleCommand = DebuggerCommand::ConsoleCommand,
NeedsFlush = DebuggerCommand::NeedsFlush,
ExitRequest = DebuggerCommand::ExitRequest,
RunRequest = DebuggerCommand::RunRequest,
LosesChild = DebuggerCommand::LosesChild,
InUpdateLocals = DebuggerCommand::InUpdateLocals,
NativeCommand = DebuggerCommand::NativeCommand,
Silent = DebuggerCommand::Silent
};
virtual bool canHandleToolTip(const DebuggerToolTipContext &) const;
virtual void expandItem(const QString &iname); // Called when item in tree gets expanded.
virtual void reexpandItems(
const QSet<QString> &inames); // Called when items in tree need to be reexpanded.
virtual void updateItem(const QString &iname); // Called for fresh watch items.
void updateWatchData(const QString &iname); // FIXME: Merge with above.
virtual void selectWatchData(const QString &iname);
virtual void validateRunParameters(DebuggerRunParameters &) {}
virtual void prepareForRestart() {}
virtual void abortDebuggerProcess() {} // second attempt
virtual void watchPoint(const QPoint &pnt);
virtual void runCommand(const DebuggerCommand &cmd);
virtual void openMemoryView(const MemoryViewSetupData &data);
virtual void fetchMemory(MemoryAgent *, quint64 addr, quint64 length);
virtual void changeMemory(MemoryAgent *, quint64 addr, const QByteArray &data);
virtual void updateMemoryViews();
virtual void openDisassemblerView(const Internal::Location &location);
virtual void fetchDisassembler(Internal::DisassemblerAgent *);
virtual void activateFrame(int index);
virtual void reloadModules();
virtual void examineModules();
virtual void loadSymbols(const Utils::FilePath &moduleName);
virtual void loadSymbolsForStack();
virtual void loadAllSymbols();
virtual void requestModuleSymbols(const Utils::FilePath &moduleName);
virtual void requestModuleSections(const Utils::FilePath &moduleName);
virtual void reloadRegisters();
virtual void reloadPeripheralRegisters();
virtual void reloadSourceFiles();
virtual void reloadFullStack();
virtual void loadAdditionalQmlStack();
virtual void reloadDebuggingHelpers();
virtual void setRegisterValue(const QString &name, const QString &value);
virtual void setPeripheralRegisterValue(quint64 address, quint64 value);
virtual void addOptionPages(QList<Core::IOptionsPage*> *) const;
virtual bool hasCapability(unsigned cap) const = 0;
virtual void debugLastCommand() {}
virtual QString qtNamespace() const;
void setQtNamespace(const QString &ns);
virtual void createSnapshot();
virtual void updateAll();
virtual void updateLocals();
Core::Context debuggerContext() const;
virtual Core::Context languageContext() const { return {}; }
QString displayName() const;
virtual bool acceptsBreakpoint(const BreakpointParameters &bp) const = 0;
virtual void insertBreakpoint(const Breakpoint &bp) = 0;
virtual void removeBreakpoint(const Breakpoint &bp) = 0;
virtual void updateBreakpoint(const Breakpoint &bp) = 0;
virtual void enableSubBreakpoint(const SubBreakpoint &sbp, bool enabled);
virtual bool acceptsDebuggerCommands() const { return true; }
virtual void executeDebuggerCommand(const QString &command);
virtual void assignValueInDebugger(WatchItem *item,
const QString &expr, const QVariant &value);
virtual void selectThread(const Internal::Thread &thread) = 0;
virtual void executeRecordReverse(bool) {}
virtual void executeReverse(bool) {}
ModulesHandler *modulesHandler() const;
RegisterHandler *registerHandler() const;
PeripheralRegisterHandler *peripheralRegisterHandler() const;
StackHandler *stackHandler() const;
ThreadsHandler *threadsHandler() const;
WatchHandler *watchHandler() const;
SourceFilesHandler *sourceFilesHandler() const;
BreakHandler *breakHandler() const;
LogWindow *logWindow() const;
DisassemblerAgent *disassemblerAgent() const;
void progressPing();
bool debuggerActionsEnabled() const;
virtual bool companionPreventsActions() const;
bool operatesByInstruction() const;
virtual void operateByInstructionTriggered(bool on); // FIXME: Remove.
DebuggerState state() const;
bool isDying() const;
static QString stateName(int s);
void notifyExitCode(int code);
void notifyInferiorPid(const Utils::ProcessHandle &pid);
qint64 inferiorPid() const;
bool isReverseDebugging() const;
void handleBeginOfRecordingReached();
void handleRecordingFailed();
void handleRecordReverse(bool);
void handleReverseDirection(bool);
// Convenience
void showMessage(const QString &msg, int channel = LogDebug, int timeout = -1) const;
void showStatusMessage(const QString &msg, int timeout = -1) const;
virtual void resetLocation();
virtual void gotoLocation(const Internal::Location &location);
void gotoCurrentLocation();
virtual void quitDebugger(); // called when pressing the stop button
void abortDebugger();
void updateUi(bool isCurrentEngine);
bool isPrimaryEngine() const;
virtual bool canDisplayTooltip() const;
QString expand(const QString &string) const;
QString nativeStartupCommands() const;
Utils::Perspective *perspective() const;
void updateMarkers();
void updateToolTips();
DebuggerToolTipManager *toolTipManager();
signals:
void engineStarted();
void engineFinished();
void requestRunControlStop();
void attachToCoreRequested(const QString &coreFile);
void postMessageRequested(const QString &msg, Utils::OutputFormat format, bool appendNewLine) const;
void interruptTerminalRequested();
void kickoffTerminalProcessRequested();
protected:
void notifyEngineSetupOk();
void notifyEngineSetupFailed();
void notifyEngineRunFailed();
void notifyEngineRunAndInferiorRunOk();
void notifyEngineRunAndInferiorStopOk();
void notifyEngineRunOkAndInferiorUnrunnable(); // Called by CoreAdapter.
// Use notifyInferiorRunRequested() plus notifyInferiorRunOk() instead.
// void notifyInferiorSpontaneousRun();
void notifyInferiorRunRequested();
void notifyInferiorRunOk();
void notifyInferiorRunFailed();
void notifyInferiorIll();
void notifyInferiorExited();
void notifyInferiorStopOk();
void notifyInferiorSpontaneousStop();
void notifyInferiorStopFailed();
public:
void updateState();
QString formatStartParameters() const;
WatchTreeView *inspectorView();
void updateLocalsWindow(bool showReturn);
void raiseWatchersWindow();
QString debuggerName() const;
QString debuggerType() const;
bool isRegistersWindowVisible() const;
bool isPeripheralRegistersWindowVisible() const;
bool isModulesWindowVisible() const;
void openMemoryEditor();
static void showModuleSymbols(const Utils::FilePath &moduleName, const QList<Symbol> &symbols);
static void showModuleSections(const Utils::FilePath &moduleName, const QList<Section> §ions);
void handleExecDetach();
void handleExecContinue();
void handleExecInterrupt();
void handleUserStop();
void handleAbort();
void handleReset();
void handleExecStepIn();
void handleExecStepOver();
void handleExecStepOut();
void handleExecReturn();
void handleExecJumpToLine();
void handleExecRunToLine();
void handleExecRunToSelectedFunction();
void handleAddToWatchWindow();
void handleFrameDown();
void handleFrameUp();
// Breakpoint state transitions
void notifyBreakpointInsertProceeding(const Breakpoint &bp);
void notifyBreakpointInsertOk(const Breakpoint &bp);
void notifyBreakpointInsertFailed(const Breakpoint &bp);
void notifyBreakpointChangeOk(const Breakpoint &bp);
void notifyBreakpointChangeProceeding(const Breakpoint &bp);
void notifyBreakpointChangeFailed(const Breakpoint &bp);
void notifyBreakpointPending(const Breakpoint &bp);
void notifyBreakpointRemoveProceeding(const Breakpoint &bp);
void notifyBreakpointRemoveOk(const Breakpoint &bp);
void notifyBreakpointRemoveFailed(const Breakpoint &bp);
void notifyBreakpointNeedsReinsertion(const Breakpoint &bp);
protected:
void setDebuggerName(const QString &name);
void setDebuggerType(const QString &type);
void notifyDebuggerProcessFinished(const Utils::ProcessResultData &resultData,
const QString &backendName);
virtual void setState(DebuggerState state, bool forced = false);
void notifyInferiorShutdownFinished();
void notifyEngineSpontaneousShutdown();
void notifyEngineShutdownFinished();
void notifyEngineIll();
virtual void setupEngine() = 0;
virtual void shutdownInferior() = 0;
virtual void shutdownEngine() = 0;
virtual void resetInferior() {}
virtual void detachDebugger() {}
virtual void executeStepOver(bool /*byInstruction*/ = false) {}
virtual void executeStepIn(bool /*byInstruction*/ = false) {}
virtual void executeStepOut() {}
virtual void executeReturn() {}
virtual void continueInferior() {}
virtual void interruptInferior() {}
void requestInterruptInferior();
virtual void executeRunToLine(const Internal::ContextData &) {}
virtual void executeRunToFunction(const QString &) {}
virtual void executeJumpToLine(const Internal::ContextData &) {}
virtual void frameUp();
virtual void frameDown();
virtual void doUpdateLocals(const UpdateParameters ¶ms);
bool usesTerminal() const;
qint64 applicationPid() const;
qint64 applicationMainThreadId() const;
static QString msgStopped(const QString &reason = QString());
static QString msgStoppedBySignal(const QString &meaning, const QString &name);
static QString msgStoppedByException(const QString &description,
const QString &threadId);
static QString msgInterrupted();
bool showStoppedBySignalMessageBox(const QString meaning, QString name);
void showStoppedByExceptionMessageBox(const QString &description);
void updateLocalsView(const GdbMi &all);
void checkState(DebuggerState state, const char *file, int line);
bool isNativeMixedEnabled() const;
bool isNativeMixedActive() const;
bool isNativeMixedActiveFrame() const;
void startDying() const;
ProjectExplorer::IDeviceConstPtr device() const;
QList<DebuggerEngine *> companionEngines() const;
private:
friend class DebuggerPluginPrivate;
friend class DebuggerEnginePrivate;
friend class LocationMark;
friend class PeripheralRegisterHandler;
DebuggerEnginePrivate *d;
};
class CppDebuggerEngine : public DebuggerEngine
{
public:
CppDebuggerEngine() {}
~CppDebuggerEngine() override {}
void validateRunParameters(DebuggerRunParameters &rp) override;
Core::Context languageContext() const override;
};
class LocationMark : public TextEditor::TextMark
{
public:
LocationMark(DebuggerEngine *engine, const Utils::FilePath &file, int line);
void removedFromEditor() override { updateLineNumber(0); }
void updateIcon();
private:
bool isDraggable() const override;
void dragToLine(int line) override;
QPointer<DebuggerEngine> m_engine;
};
} // namespace Internal
} // namespace Debugger
Q_DECLARE_METATYPE(Debugger::Internal::UpdateParameters)
Q_DECLARE_METATYPE(Debugger::Internal::ContextData)
|