2010-07-13 17:16:31 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-13 17:16:31 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-07-13 17:16:31 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2010-07-13 17:16:31 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2010-07-13 17:16:31 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-10-25 14:00:19 +02:00
|
|
|
#include "breakpoint.h"
|
2010-07-13 17:16:31 +02:00
|
|
|
|
2011-06-15 14:02:26 +02:00
|
|
|
#include "utils/qtcassert.h"
|
|
|
|
|
|
2010-07-13 17:16:31 +02:00
|
|
|
#include <QtCore/QByteArray>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2011-06-15 14:02:26 +02:00
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// BreakpointId
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug d, const BreakpointId &id)
|
|
|
|
|
{
|
|
|
|
|
d << qPrintable(id.toString());
|
|
|
|
|
return d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BreakpointId::toString() const
|
|
|
|
|
{
|
|
|
|
|
if (!isValid())
|
|
|
|
|
return "<invalid bkpt>";
|
|
|
|
|
if (isMinor())
|
|
|
|
|
return QString("%1.%2").arg(m_majorPart).arg(m_minorPart);
|
|
|
|
|
return QString::number(m_majorPart);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointId BreakpointId::parent() const
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(isMinor(), return BreakpointId());
|
|
|
|
|
return BreakpointId(m_majorPart, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointId BreakpointId::child(int row) const
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(isMajor(), return BreakpointId());
|
|
|
|
|
return BreakpointId(m_majorPart, row + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 17:16:31 +02:00
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2010-11-16 11:48:17 +01:00
|
|
|
// BreakpointParameters
|
2010-07-13 17:16:31 +02:00
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2011-02-04 15:08:31 +01:00
|
|
|
/*!
|
|
|
|
|
\class Debugger::Internal::BreakpointParameters
|
|
|
|
|
|
|
|
|
|
Data type holding the parameters of a breakpoint.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-11-16 11:48:17 +01:00
|
|
|
BreakpointParameters::BreakpointParameters(BreakpointType t)
|
2011-02-17 13:00:11 +01:00
|
|
|
: type(t), enabled(true), pathUsage(BreakpointPathUsageEngineDefault),
|
2011-03-01 19:16:24 +01:00
|
|
|
ignoreCount(0), lineNumber(0), address(0), size(0),
|
|
|
|
|
bitpos(0), bitsize(0), threadSpec(-1),
|
2010-12-16 13:02:59 +01:00
|
|
|
tracepoint(false)
|
2010-11-16 11:55:48 +01:00
|
|
|
{}
|
2010-07-13 17:16:31 +02:00
|
|
|
|
2011-03-29 12:55:36 +02:00
|
|
|
BreakpointParts BreakpointParameters::differencesTo
|
|
|
|
|
(const BreakpointParameters &rhs) const
|
|
|
|
|
{
|
|
|
|
|
BreakpointParts parts = BreakpointParts();
|
|
|
|
|
if (type != rhs.type)
|
|
|
|
|
parts |= TypePart;
|
|
|
|
|
if (enabled != rhs.enabled)
|
|
|
|
|
parts |= EnabledPart;
|
|
|
|
|
if (pathUsage != rhs.pathUsage)
|
|
|
|
|
parts |= PathUsagePart;
|
|
|
|
|
if (fileName != rhs.fileName)
|
|
|
|
|
parts |= FileAndLinePart;
|
2011-05-02 11:43:41 +02:00
|
|
|
if (!conditionsMatch(rhs.condition))
|
2011-03-29 12:55:36 +02:00
|
|
|
parts |= ConditionPart;
|
|
|
|
|
if (ignoreCount != rhs.ignoreCount)
|
|
|
|
|
parts |= IgnoreCountPart;
|
|
|
|
|
if (lineNumber != rhs.lineNumber)
|
|
|
|
|
parts |= FileAndLinePart;
|
|
|
|
|
if (address != rhs.address)
|
|
|
|
|
parts |= AddressPart;
|
|
|
|
|
if (threadSpec != rhs.threadSpec)
|
|
|
|
|
parts |= ThreadSpecPart;
|
|
|
|
|
if (functionName != rhs.functionName)
|
|
|
|
|
parts |= FunctionPart;
|
|
|
|
|
if (tracepoint != rhs.tracepoint)
|
|
|
|
|
parts |= TracePointPart;
|
|
|
|
|
if (module != rhs.module)
|
|
|
|
|
parts |= ModulePart;
|
|
|
|
|
if (command != rhs.command)
|
|
|
|
|
parts |= CommandPart;
|
|
|
|
|
return parts;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 17:04:29 +01:00
|
|
|
bool BreakpointParameters::equals(const BreakpointParameters &rhs) const
|
|
|
|
|
{
|
2011-03-29 12:55:36 +02:00
|
|
|
return !differencesTo(rhs);
|
2010-11-15 17:04:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:06:09 +01:00
|
|
|
bool BreakpointParameters::conditionsMatch(const QByteArray &other) const
|
2010-07-13 17:16:31 +02:00
|
|
|
{
|
|
|
|
|
// Some versions of gdb "beautify" the passed condition.
|
2010-11-16 11:06:09 +01:00
|
|
|
QByteArray s1 = condition;
|
2010-11-15 16:22:51 +01:00
|
|
|
s1.replace(' ', "");
|
|
|
|
|
QByteArray s2 = other;
|
|
|
|
|
s2.replace(' ', "");
|
2010-07-13 17:16:31 +02:00
|
|
|
return s1 == s2;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:48:17 +01:00
|
|
|
QString BreakpointParameters::toString() const
|
2010-11-10 16:33:11 +01:00
|
|
|
{
|
|
|
|
|
QString result;
|
|
|
|
|
QTextStream ts(&result);
|
2011-03-16 13:39:29 +01:00
|
|
|
ts << "Type: " << type;
|
|
|
|
|
switch (type) {
|
2011-03-22 10:24:33 +01:00
|
|
|
case BreakpointByFileAndLine:
|
2011-03-16 13:39:29 +01:00
|
|
|
ts << " FileName: " << fileName << ':' << lineNumber
|
|
|
|
|
<< " PathUsage: " << pathUsage;
|
|
|
|
|
break;
|
2011-03-22 10:24:33 +01:00
|
|
|
case BreakpointByFunction:
|
2011-03-16 13:39:29 +01:00
|
|
|
ts << " FunctionName: " << functionName;
|
|
|
|
|
break;
|
2011-03-22 10:24:33 +01:00
|
|
|
case BreakpointByAddress:
|
2011-05-09 08:35:58 +02:00
|
|
|
case WatchpointAtAddress:
|
2011-03-16 13:39:29 +01:00
|
|
|
ts << " Address: " << address;
|
|
|
|
|
break;
|
2011-05-09 08:35:58 +02:00
|
|
|
case WatchpointAtExpression:
|
|
|
|
|
ts << " Expression: " << expression;
|
|
|
|
|
break;
|
2011-03-22 10:24:33 +01:00
|
|
|
case BreakpointAtThrow:
|
|
|
|
|
case BreakpointAtCatch:
|
|
|
|
|
case BreakpointAtMain:
|
|
|
|
|
case BreakpointAtFork:
|
|
|
|
|
case BreakpointAtExec:
|
2011-03-29 09:58:21 +02:00
|
|
|
//case BreakpointAtVFork:
|
2011-03-22 10:24:33 +01:00
|
|
|
case BreakpointAtSysCall:
|
|
|
|
|
case UnknownType:
|
2011-03-16 13:39:29 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
ts << (enabled ? " [enabled]" : " [disabled]");
|
|
|
|
|
if (!condition.isEmpty())
|
|
|
|
|
ts << " Condition: " << condition;
|
|
|
|
|
if (ignoreCount)
|
|
|
|
|
ts << " IgnoreCount: " << ignoreCount;
|
|
|
|
|
if (tracepoint)
|
|
|
|
|
ts << " [tracepoint]";
|
|
|
|
|
if (!module.isEmpty())
|
|
|
|
|
ts << " Module: " << module;
|
|
|
|
|
if (!command.isEmpty())
|
|
|
|
|
ts << " Command: " << command;
|
2010-11-10 16:33:11 +01:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:55:48 +01:00
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2011-02-04 15:08:31 +01:00
|
|
|
// BreakpointResponse
|
2010-11-16 11:55:48 +01:00
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2011-02-04 15:08:31 +01:00
|
|
|
/*!
|
|
|
|
|
\class Debugger::Internal::BreakpointResponse
|
|
|
|
|
|
|
|
|
|
This is what debuggers produce in response to the attempt to
|
|
|
|
|
insert a breakpoint. The data might differ from the requested bits.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-11-16 11:55:48 +01:00
|
|
|
BreakpointResponse::BreakpointResponse()
|
2011-06-15 14:02:26 +02:00
|
|
|
{
|
|
|
|
|
number = 0;
|
|
|
|
|
subNumber = 0;
|
|
|
|
|
pending = true;
|
|
|
|
|
multiple = false;
|
|
|
|
|
correctedLineNumber = 0;
|
|
|
|
|
}
|
2010-11-16 11:55:48 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
QString BreakpointResponse::toString() const
|
|
|
|
|
{
|
2011-03-16 13:39:29 +01:00
|
|
|
QString result = BreakpointParameters::toString();
|
2010-11-10 16:33:11 +01:00
|
|
|
QTextStream ts(&result);
|
2010-11-24 11:44:43 +01:00
|
|
|
ts << " Number: " << number;
|
2011-06-15 14:02:26 +02:00
|
|
|
if (subNumber)
|
|
|
|
|
ts << "." << subNumber;
|
2011-03-16 13:39:29 +01:00
|
|
|
if (pending)
|
|
|
|
|
ts << " [pending]";
|
|
|
|
|
if (!fullName.isEmpty())
|
|
|
|
|
ts << " FullName: " << fullName;
|
2011-06-15 14:02:26 +02:00
|
|
|
if (!functionName.isEmpty())
|
|
|
|
|
ts << " Function: " << functionName;
|
2011-03-16 13:39:29 +01:00
|
|
|
if (multiple)
|
|
|
|
|
ts << " Multiple: " << multiple;
|
|
|
|
|
if (!extra.isEmpty())
|
|
|
|
|
ts << " Extra: " << extra;
|
|
|
|
|
if (correctedLineNumber)
|
|
|
|
|
ts << " CorrectedLineNumber: " << correctedLineNumber;
|
2011-06-15 14:02:26 +02:00
|
|
|
ts << ' ';
|
2010-11-16 17:53:08 +01:00
|
|
|
return result + BreakpointParameters::toString();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 10:23:20 +01:00
|
|
|
void BreakpointResponse::fromParameters(const BreakpointParameters &p)
|
|
|
|
|
{
|
|
|
|
|
BreakpointParameters::operator=(p);
|
|
|
|
|
number = 0;
|
2011-06-15 14:02:26 +02:00
|
|
|
subNumber = 0;
|
2010-11-16 10:23:20 +01:00
|
|
|
fullName.clear();
|
|
|
|
|
multiple = false;
|
2010-11-16 11:55:48 +01:00
|
|
|
extra.clear();
|
2010-11-18 12:30:56 +01:00
|
|
|
correctedLineNumber = 0;
|
2010-11-16 10:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 17:16:31 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|