2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-11-18 13:51:15 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2010-11-18 13:51:15 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-11-18 13:51:15 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2010-11-18 13:51:15 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
#ifndef DEBUGGER_CDBENGINE_H
|
|
|
|
|
#define DEBUGGER_CDBENGINE_H
|
|
|
|
|
|
2013-08-29 16:36:42 +02:00
|
|
|
#include <debugger/debuggerengine.h>
|
2015-01-10 01:07:01 +01:00
|
|
|
#include <debugger/breakhandler.h>
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2013-11-04 09:47:34 +01:00
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QSharedPointer>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
#include <QMap>
|
2013-03-21 17:10:19 +01:00
|
|
|
#include <QVariant>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTime>
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2015-02-17 11:21:19 +01:00
|
|
|
#include <functional>
|
|
|
|
|
|
2014-02-11 21:55:42 +02:00
|
|
|
namespace Utils { class ConsoleProcess; }
|
2010-11-18 13:51:15 +01:00
|
|
|
namespace Debugger {
|
2011-01-11 11:06:15 +01:00
|
|
|
namespace Internal {
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
class DisassemblerAgent;
|
2015-03-06 16:00:57 +01:00
|
|
|
class CdbCommand;
|
|
|
|
|
class CdbResponse;
|
2011-04-19 13:57:25 +02:00
|
|
|
struct MemoryViewCookie;
|
2010-12-09 17:04:43 +01:00
|
|
|
class ByteArrayInputStream;
|
2011-01-25 18:35:31 +01:00
|
|
|
class GdbMi;
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2014-12-12 15:33:16 +01:00
|
|
|
class CdbEngine : public DebuggerEngine
|
2010-11-18 13:51:15 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
enum CommandFlags { QuietCommand = 0x1 };
|
|
|
|
|
// Flag bits for a sequence of commands
|
|
|
|
|
enum CommandSequenceFlags {
|
|
|
|
|
CommandListStack = 0x1,
|
|
|
|
|
CommandListThreads = 0x2,
|
|
|
|
|
CommandListRegisters = 0x4,
|
2011-02-03 16:26:23 +01:00
|
|
|
CommandListModules = 0x8,
|
|
|
|
|
CommandListBreakPoints = 0x10
|
2010-11-18 13:51:15 +01:00
|
|
|
};
|
|
|
|
|
|
2015-02-16 11:57:46 +01:00
|
|
|
typedef QSharedPointer<CdbCommand> CdbCommandPtr;
|
2015-03-06 16:00:57 +01:00
|
|
|
typedef std::function<void(const CdbResponse &)> CommandHandler;
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2013-05-22 00:49:51 -07:00
|
|
|
CdbEngine(const DebuggerStartParameters &sp);
|
2012-08-15 14:33:39 +02:00
|
|
|
~CdbEngine();
|
2011-01-12 12:10:12 +01:00
|
|
|
|
2010-11-18 13:51:15 +01:00
|
|
|
// Factory function that returns 0 if the debug engine library cannot be found.
|
|
|
|
|
|
2015-03-06 13:36:42 +01:00
|
|
|
virtual bool setToolTipExpression(const DebuggerToolTipContext &context);
|
2015-03-04 17:43:59 +01:00
|
|
|
|
|
|
|
|
virtual DebuggerEngine *cppEngine() { return this; }
|
|
|
|
|
|
2010-11-18 13:51:15 +01:00
|
|
|
virtual void setupEngine();
|
|
|
|
|
virtual void setupInferior();
|
|
|
|
|
virtual void runEngine();
|
|
|
|
|
virtual void shutdownInferior();
|
|
|
|
|
virtual void shutdownEngine();
|
2014-10-15 08:15:56 +02:00
|
|
|
virtual void abortDebugger();
|
2010-11-18 13:51:15 +01:00
|
|
|
virtual void detachDebugger();
|
2015-03-06 13:05:43 +01:00
|
|
|
virtual void updateWatchData(const WatchData &data);
|
2012-01-16 17:33:30 +01:00
|
|
|
virtual bool hasCapability(unsigned cap) const;
|
2011-01-18 11:40:45 +01:00
|
|
|
virtual void watchPoint(const QPoint &);
|
2014-12-17 13:14:29 +01:00
|
|
|
virtual void setRegisterValue(const QByteArray &name, const QString &value);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
virtual void executeStep();
|
|
|
|
|
virtual void executeStepOut();
|
|
|
|
|
virtual void executeNext();
|
|
|
|
|
virtual void executeStepI();
|
|
|
|
|
virtual void executeNextI();
|
|
|
|
|
|
|
|
|
|
virtual void continueInferior();
|
|
|
|
|
virtual void interruptInferior();
|
|
|
|
|
|
2011-02-23 10:16:11 +01:00
|
|
|
virtual void executeRunToLine(const ContextData &data);
|
2010-11-18 13:51:15 +01:00
|
|
|
virtual void executeRunToFunction(const QString &functionName);
|
2011-02-23 10:16:11 +01:00
|
|
|
virtual void executeJumpToLine(const ContextData &data);
|
2011-01-11 11:06:15 +01:00
|
|
|
virtual void assignValueInDebugger(const WatchData *w, const QString &expr, const QVariant &value);
|
2012-04-10 09:36:15 +02:00
|
|
|
virtual void executeDebuggerCommand(const QString &command, DebuggerLanguages languages);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
virtual void activateFrame(int index);
|
2012-10-19 16:37:57 +02:00
|
|
|
virtual void selectThread(ThreadId threadId);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2010-11-26 13:06:03 +01:00
|
|
|
virtual bool stateAcceptsBreakpointChanges() const;
|
2015-01-10 01:07:01 +01:00
|
|
|
virtual bool acceptsBreakpoint(Breakpoint bp) const;
|
2010-11-18 13:51:15 +01:00
|
|
|
virtual void attemptBreakpointSynchronization();
|
|
|
|
|
|
2011-01-11 11:06:15 +01:00
|
|
|
virtual void fetchDisassembler(DisassemblerAgent *agent);
|
|
|
|
|
virtual void fetchMemory(MemoryAgent *, QObject *, quint64 addr, quint64 length);
|
2011-02-28 14:33:35 +01:00
|
|
|
virtual void changeMemory(Internal::MemoryAgent *, QObject *, quint64 addr, const QByteArray &data);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
virtual void reloadModules();
|
|
|
|
|
virtual void loadSymbols(const QString &moduleName);
|
|
|
|
|
virtual void loadAllSymbols();
|
|
|
|
|
virtual void requestModuleSymbols(const QString &moduleName);
|
|
|
|
|
|
|
|
|
|
virtual void reloadRegisters();
|
|
|
|
|
virtual void reloadSourceFiles();
|
|
|
|
|
virtual void reloadFullStack();
|
2014-02-07 18:10:02 +01:00
|
|
|
void loadAdditionalQmlStack();
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2010-11-19 16:13:22 +01:00
|
|
|
static QString extensionLibraryName(bool is64Bit);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void readyReadStandardOut();
|
|
|
|
|
void readyReadStandardError();
|
|
|
|
|
void processError();
|
|
|
|
|
void processFinished();
|
|
|
|
|
void postCommand(const QByteArray &cmd, unsigned flags);
|
|
|
|
|
void postBuiltinCommand(const QByteArray &cmd,
|
|
|
|
|
unsigned flags,
|
2015-02-16 11:57:46 +01:00
|
|
|
CommandHandler handler,
|
2015-02-17 11:21:19 +01:00
|
|
|
unsigned nextCommandFlag = 0);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
void postExtensionCommand(const QByteArray &cmd,
|
|
|
|
|
const QByteArray &arguments,
|
|
|
|
|
unsigned flags,
|
2015-02-16 11:57:46 +01:00
|
|
|
CommandHandler handler,
|
2015-02-17 11:21:19 +01:00
|
|
|
unsigned nextCommandFlag = 0);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
void postCommandSequence(unsigned mask);
|
|
|
|
|
void operateByInstructionTriggered(bool);
|
2013-06-06 10:08:36 +02:00
|
|
|
void verboseLogTriggered(bool);
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2011-05-11 16:27:33 +02:00
|
|
|
void consoleStubError(const QString &);
|
2011-01-19 10:25:32 +01:00
|
|
|
void consoleStubProcessStarted();
|
|
|
|
|
void consoleStubExited();
|
|
|
|
|
|
2013-11-27 08:06:15 +01:00
|
|
|
void createFullBacktrace();
|
|
|
|
|
|
2013-11-04 09:47:34 +01:00
|
|
|
void handleDoInterruptInferior(const QString &errorMessage);
|
|
|
|
|
|
2010-11-18 13:51:15 +01:00
|
|
|
private:
|
2011-06-24 16:25:30 +02:00
|
|
|
typedef QHash<BreakpointModelId, BreakpointResponse> PendingBreakPointMap;
|
2011-03-04 17:28:15 +01:00
|
|
|
typedef QPair<QString, QString> SourcePathMapping;
|
|
|
|
|
struct NormalizedSourceFileName // Struct for caching mapped/normalized source files.
|
|
|
|
|
{
|
|
|
|
|
NormalizedSourceFileName(const QString &fn = QString(), bool e = false) : fileName(fn), exists(e) {}
|
|
|
|
|
|
|
|
|
|
QString fileName;
|
|
|
|
|
bool exists;
|
|
|
|
|
};
|
2011-02-03 16:26:23 +01:00
|
|
|
|
2011-01-18 11:40:45 +01:00
|
|
|
enum SpecialStopMode
|
|
|
|
|
{
|
|
|
|
|
NoSpecialStop,
|
|
|
|
|
SpecialStopSynchronizeBreakpoints,
|
2011-02-28 14:33:35 +01:00
|
|
|
SpecialStopGetWidgetAt,
|
|
|
|
|
CustomSpecialStop // Associated with m_specialStopData, handleCustomSpecialStop()
|
2011-01-18 11:40:45 +01:00
|
|
|
};
|
2011-01-25 18:35:31 +01:00
|
|
|
enum ParseStackResultFlags // Flags returned by parseStackTrace
|
|
|
|
|
{
|
2013-02-27 23:59:23 -08:00
|
|
|
ParseStackStepInto = 1, // Need to execute a step, hit on a call frame in "Step into"
|
2013-05-07 23:37:51 -07:00
|
|
|
ParseStackStepOut = 2, // Need to step out, hit on a frame without debug information
|
|
|
|
|
ParseStackWow64 = 3 // Hit on a frame with 32bit emulation, switch debugger to 32 bit mode
|
2011-01-25 18:35:31 +01:00
|
|
|
};
|
|
|
|
|
|
2010-11-18 13:51:15 +01:00
|
|
|
|
2011-01-19 10:25:32 +01:00
|
|
|
bool startConsole(const DebuggerStartParameters &sp, QString *errorMessage);
|
2011-02-08 12:08:59 +01:00
|
|
|
void init();
|
2011-01-25 18:35:31 +01:00
|
|
|
unsigned examineStopReason(const GdbMi &stopReason, QString *message,
|
2011-03-23 15:08:57 +01:00
|
|
|
QString *exceptionBoxMessage,
|
|
|
|
|
bool conditionalBreakPointTriggered = false);
|
|
|
|
|
void processStop(const GdbMi &stopReason, bool conditionalBreakPointTriggered = false);
|
2010-12-16 12:17:54 +01:00
|
|
|
bool commandsPending() const;
|
2010-11-18 13:51:15 +01:00
|
|
|
void handleExtensionMessage(char t, int token, const QByteArray &what, const QByteArray &message);
|
|
|
|
|
bool doSetupEngine(QString *errorMessage);
|
2011-01-19 10:25:32 +01:00
|
|
|
bool launchCDB(const DebuggerStartParameters &sp, QString *errorMessage);
|
2010-11-18 13:51:15 +01:00
|
|
|
void handleSessionAccessible(unsigned long cdbExState);
|
|
|
|
|
void handleSessionInaccessible(unsigned long cdbExState);
|
|
|
|
|
void handleSessionIdle(const QByteArray &message);
|
2013-11-04 09:47:34 +01:00
|
|
|
void doInterruptInferior(SpecialStopMode sm);
|
2011-02-28 14:33:35 +01:00
|
|
|
void doInterruptInferiorCustomSpecialStop(const QVariant &v);
|
2010-11-18 13:51:15 +01:00
|
|
|
void doContinueInferior();
|
|
|
|
|
inline void parseOutputLine(QByteArray line);
|
|
|
|
|
inline bool isCdbProcessRunning() const { return m_process.state() != QProcess::NotRunning; }
|
2010-11-19 16:13:22 +01:00
|
|
|
bool canInterruptInferior() const;
|
2010-11-22 13:50:40 +01:00
|
|
|
void syncOperateByInstruction(bool operateByInstruction);
|
2013-06-06 10:08:36 +02:00
|
|
|
void syncVerboseLog(bool verboseLog);
|
2011-01-18 11:40:45 +01:00
|
|
|
void postWidgetAtCommand();
|
2011-02-28 14:33:35 +01:00
|
|
|
void handleCustomSpecialStop(const QVariant &v);
|
2011-04-19 13:57:25 +02:00
|
|
|
void postFetchMemory(const MemoryViewCookie &c);
|
2015-02-17 11:21:19 +01:00
|
|
|
inline void postDisassemblerCommand(quint64 address, DisassemblerAgent *agent);
|
2011-07-04 09:29:28 +02:00
|
|
|
void postDisassemblerCommand(quint64 address, quint64 endAddress,
|
2015-02-17 11:21:19 +01:00
|
|
|
DisassemblerAgent *agent);
|
2011-07-04 09:29:28 +02:00
|
|
|
void postResolveSymbol(const QString &module, const QString &function,
|
2015-02-17 11:21:19 +01:00
|
|
|
DisassemblerAgent *agent);
|
2010-11-18 13:51:15 +01:00
|
|
|
// Builtin commands
|
2015-03-06 16:00:57 +01:00
|
|
|
void dummyHandler(const CdbResponse &);
|
|
|
|
|
void handleStackTrace(const CdbResponse &);
|
|
|
|
|
void handleRegisters(const CdbResponse &);
|
|
|
|
|
void handleDisassembler(const CdbResponse &, DisassemblerAgent *agent);
|
|
|
|
|
void handleJumpToLineAddressResolution(const CdbResponse &response, const ContextData &context);
|
|
|
|
|
void handleExpression(const CdbResponse &command, BreakpointModelId id, const GdbMi &stopReason);
|
|
|
|
|
void handleResolveSymbol(const CdbResponse &command, const QString &symbol, DisassemblerAgent *agent);
|
2015-02-17 11:21:19 +01:00
|
|
|
void handleResolveSymbolHelper(const QList<quint64> &addresses, DisassemblerAgent *agent);
|
2015-03-06 16:00:57 +01:00
|
|
|
void handleBreakInsert(const CdbResponse &response);
|
|
|
|
|
void handleCheckWow64(const CdbResponse &response, const GdbMi &stack);
|
|
|
|
|
void ensureUsing32BitStackInWow64(const CdbResponse &response, const GdbMi &stack);
|
|
|
|
|
void handleSwitchWow64Stack(const CdbResponse &response);
|
2011-03-01 16:25:11 +01:00
|
|
|
void jumpToAddress(quint64 address);
|
2015-03-06 16:00:57 +01:00
|
|
|
void handleCreateFullBackTrace(const CdbResponse &response);
|
2011-07-04 09:29:28 +02:00
|
|
|
|
2010-11-18 13:51:15 +01:00
|
|
|
// Extension commands
|
2015-03-06 16:00:57 +01:00
|
|
|
void handleThreads(const CdbResponse &response);
|
|
|
|
|
void handlePid(const CdbResponse &response);
|
|
|
|
|
void handleLocals(const CdbResponse &response, bool newFrame);
|
|
|
|
|
void handleAddWatch(const CdbResponse &response, WatchData item);
|
|
|
|
|
void handleExpandLocals(const CdbResponse &response);
|
|
|
|
|
void handleRegistersExt(const CdbResponse &response);
|
|
|
|
|
void handleModules(const CdbResponse &response);
|
|
|
|
|
void handleMemory(const CdbResponse &response, const MemoryViewCookie &memViewCookie);
|
|
|
|
|
void handleWidgetAt(const CdbResponse &response);
|
|
|
|
|
void handleBreakPoints(const CdbResponse &response);
|
2011-02-03 16:26:23 +01:00
|
|
|
void handleBreakPoints(const GdbMi &value);
|
2015-03-06 16:00:57 +01:00
|
|
|
void handleAdditionalQmlStack(const CdbResponse &response);
|
2011-03-04 17:28:15 +01:00
|
|
|
NormalizedSourceFileName sourceMapNormalizeFileNameFromDebugger(const QString &f);
|
2010-11-18 13:51:15 +01:00
|
|
|
void updateLocalVariable(const QByteArray &iname);
|
2015-03-06 17:00:36 +01:00
|
|
|
void updateLocals(bool forNewStackFrame);
|
2010-11-18 13:51:15 +01:00
|
|
|
int elapsedLogTime() const;
|
2010-12-09 17:04:43 +01:00
|
|
|
void addLocalsOptions(ByteArrayInputStream &s) const;
|
2011-01-25 18:35:31 +01:00
|
|
|
unsigned parseStackTrace(const GdbMi &data, bool sourceStepInto);
|
2013-02-06 16:17:30 +01:00
|
|
|
void mergeStartParametersSourcePathMap();
|
2010-11-18 13:51:15 +01:00
|
|
|
|
|
|
|
|
const QByteArray m_tokenPrefix;
|
|
|
|
|
|
|
|
|
|
QProcess m_process;
|
2011-01-19 10:25:32 +01:00
|
|
|
QScopedPointer<Utils::ConsoleProcess> m_consoleStub;
|
|
|
|
|
DebuggerStartMode m_effectiveStartMode;
|
2010-11-18 13:51:15 +01:00
|
|
|
QByteArray m_outputBuffer;
|
2011-02-04 15:08:31 +01:00
|
|
|
//! Debugger accessible (expecting commands)
|
2010-11-18 13:51:15 +01:00
|
|
|
bool m_accessible;
|
|
|
|
|
SpecialStopMode m_specialStopMode;
|
2013-11-04 09:47:34 +01:00
|
|
|
ProjectExplorer::DeviceProcessSignalOperation::Ptr m_signalOperation;
|
2010-11-18 13:51:15 +01:00
|
|
|
int m_nextCommandToken;
|
2015-02-16 11:57:46 +01:00
|
|
|
QList<CdbCommandPtr> m_builtinCommandQueue;
|
2011-02-04 15:08:31 +01:00
|
|
|
int m_currentBuiltinCommandIndex; //!< Current command whose output is recorded.
|
2015-02-16 11:57:46 +01:00
|
|
|
QList<CdbCommandPtr> m_extensionCommandQueue;
|
2011-03-04 17:28:15 +01:00
|
|
|
QMap<QString, NormalizedSourceFileName> m_normalizedFileCache;
|
2011-02-04 15:08:31 +01:00
|
|
|
const QByteArray m_extensionCommandPrefixBA; //!< Library name used as prefix
|
|
|
|
|
bool m_operateByInstructionPending; //!< Creator operate by instruction action changed.
|
2010-11-18 13:51:15 +01:00
|
|
|
bool m_operateByInstruction;
|
2013-06-06 10:08:36 +02:00
|
|
|
bool m_verboseLogPending; //!< Creator verbose log action changed.
|
|
|
|
|
bool m_verboseLog;
|
2010-11-18 13:51:15 +01:00
|
|
|
bool m_notifyEngineShutdownOnTermination;
|
|
|
|
|
bool m_hasDebuggee;
|
2013-05-07 23:37:51 -07:00
|
|
|
enum Wow64State {
|
|
|
|
|
wow64Uninitialized,
|
|
|
|
|
noWow64Stack,
|
|
|
|
|
wow64Stack32Bit,
|
|
|
|
|
wow64Stack64Bit
|
|
|
|
|
} m_wow64State;
|
2010-11-18 13:51:15 +01:00
|
|
|
QTime m_logTime;
|
|
|
|
|
mutable int m_elapsedLogTime;
|
2011-01-04 12:40:52 +01:00
|
|
|
QByteArray m_extensionMessageBuffer;
|
2011-01-05 11:34:35 +01:00
|
|
|
bool m_sourceStepInto;
|
2011-01-18 11:40:45 +01:00
|
|
|
int m_watchPointX;
|
|
|
|
|
int m_watchPointY;
|
2011-02-03 16:26:23 +01:00
|
|
|
PendingBreakPointMap m_pendingBreakpointMap;
|
2014-05-14 10:38:16 +02:00
|
|
|
PendingBreakPointMap m_insertSubBreakpointMap;
|
|
|
|
|
PendingBreakPointMap m_pendingSubBreakpointMap;
|
2014-05-14 10:20:03 +02:00
|
|
|
bool m_autoBreakPointCorrection;
|
2011-02-03 16:26:23 +01:00
|
|
|
QHash<QString, QString> m_fileNameModuleHash;
|
2011-07-04 09:29:28 +02:00
|
|
|
QMultiHash<QString, quint64> m_symbolAddressCache;
|
2011-02-08 12:08:59 +01:00
|
|
|
bool m_ignoreCdbOutput;
|
2011-02-28 14:33:35 +01:00
|
|
|
QVariantList m_customSpecialStopData;
|
2011-03-04 17:28:15 +01:00
|
|
|
QList<SourcePathMapping> m_sourcePathMappings;
|
2011-08-05 17:42:32 +02:00
|
|
|
QScopedPointer<GdbMi> m_coreStopReason;
|
2010-11-18 13:51:15 +01:00
|
|
|
};
|
|
|
|
|
|
2011-01-11 11:06:15 +01:00
|
|
|
} // namespace Internal
|
2010-11-18 13:51:15 +01:00
|
|
|
} // namespace Debugger
|
|
|
|
|
|
|
|
|
|
#endif // DEBUGGER_CDBENGINE_H
|