From 8858e47de71cf48df36bee550c15a2d2944356f4 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann <joerg.bornemann@nokia.com> Date: Wed, 21 Jul 2010 11:02:04 +0200 Subject: [PATCH] speed up of cdb debugging helper initialization The symbols in gdbhelpers.dll are never namespaced. Thus we don't have to resolve the symbols - we already know their names. The resolution took 5 seconds per symbol on my machine. --- src/plugins/debugger/cdb/cdbdumperhelper.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdbdumperhelper.cpp b/src/plugins/debugger/cdb/cdbdumperhelper.cpp index 624a776becb..0a0a2f4b942 100644 --- a/src/plugins/debugger/cdb/cdbdumperhelper.cpp +++ b/src/plugins/debugger/cdb/cdbdumperhelper.cpp @@ -435,10 +435,19 @@ static inline bool getSymbolAddress(CIDebugSymbols *sg, bool CdbDumperHelper::initResolveSymbols(QString *errorMessage) { - // Resolve the symbols we need (potentially namespaced). + // Resolve the symbols we need. // There is a 'qDumpInBuffer' in QtCore as well. if (loadDebug) qDebug() << Q_FUNC_INFO; +#if 1 + // Symbols in the debugging helpers are never namespaced. + // Keeping the old code for now. ### maybe use as fallback? + const QString dumperModuleName = QLatin1String(dumperModuleNameC); + m_dumpObjectSymbol = dumperModuleName + QLatin1String("!qDumpObjectData440"); + QString inBufferSymbol = dumperModuleName + QLatin1String("!qDumpInBuffer"); + QString outBufferSymbol = dumperModuleName + QLatin1String("!qDumpOutBuffer"); + bool rc; +#else m_dumpObjectSymbol = QLatin1String("*qDumpObjectData440"); QString inBufferSymbol = QLatin1String("*qDumpInBuffer"); QString outBufferSymbol = QLatin1String("*qDumpOutBuffer"); @@ -448,6 +457,7 @@ bool CdbDumperHelper::initResolveSymbols(QString *errorMessage) && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &outBufferSymbol, errorMessage) == ResolveSymbolOk; if (!rc) return false; +#endif // Determine buffer addresses, sizes and alloc buffer rc = getSymbolAddress(m_coreEngine->interfaces().debugSymbols, inBufferSymbol, &m_inBufferAddress, &m_inBufferSize, errorMessage) && getSymbolAddress(m_coreEngine->interfaces().debugSymbols, outBufferSymbol, &m_outBufferAddress, &m_outBufferSize, errorMessage); -- GitLab