forked from qt-creator/qt-creator
Debugger: Re-organize communication with LLDB
Change-Id: I2916a2e4a180506f01dda237fd356e9a35119117 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -66,7 +66,6 @@ private:
|
||||
void setupEngine();
|
||||
void setupInferior();
|
||||
void runEngine();
|
||||
void runEngine2();
|
||||
void shutdownInferior();
|
||||
void shutdownEngine();
|
||||
|
||||
@@ -95,7 +94,7 @@ private:
|
||||
void loadAllSymbols();
|
||||
void requestModuleSymbols(const QString &moduleName);
|
||||
void reloadModules();
|
||||
void reloadRegisters() {}
|
||||
void reloadRegisters();
|
||||
void reloadSourceFiles() {}
|
||||
void reloadFullStack() {}
|
||||
|
||||
@@ -103,8 +102,6 @@ private:
|
||||
bool isSynchronous() const { return true; }
|
||||
void updateWatchData(const WatchData &data, const WatchUpdateFlags &flags);
|
||||
|
||||
void performContinuation();
|
||||
|
||||
signals:
|
||||
void outputReady(const QByteArray &data);
|
||||
|
||||
@@ -120,6 +117,7 @@ private:
|
||||
void refreshAll(const GdbMi &all);
|
||||
void refreshThreads(const GdbMi &threads);
|
||||
void refreshStack(const GdbMi &stack);
|
||||
void refreshRegisters(const GdbMi &stack);
|
||||
void refreshLocals(const GdbMi &vars);
|
||||
void refreshTypeInfo(const GdbMi &typeInfo);
|
||||
void refreshState(const GdbMi &state);
|
||||
@@ -153,10 +151,6 @@ private:
|
||||
void runSimpleCommand(const QByteArray &command);
|
||||
void runCommand(const QByteArray &function,
|
||||
const QByteArray &extraArgs = QByteArray());
|
||||
GdbMi parseResultFromString(QByteArray out);
|
||||
|
||||
QQueue<LldbCommand> m_commands;
|
||||
QStack<LldbCommandContinuation> m_continuations;
|
||||
|
||||
QByteArray m_inbuffer;
|
||||
QString m_scriptFileName;
|
||||
|
||||
Reference in New Issue
Block a user