2011-04-04 14:39:27 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-04-04 14:39:27 +02:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2011-04-04 14:39:27 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-05-06 15:05:37 +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.
|
2011-04-04 14:39:27 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-05-06 15:05:37 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-04-04 14:39:27 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-05-06 15:05:37 +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.
|
|
|
|
|
**
|
2011-04-04 14:39:27 +02:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-04-04 14:39:27 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "callgrindcycledetection.h"
|
|
|
|
|
|
|
|
|
|
#include "callgrindfunction.h"
|
|
|
|
|
#include "callgrindfunctioncall.h"
|
|
|
|
|
#include "callgrindparsedata.h"
|
|
|
|
|
#include "callgrindfunctioncycle.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
|
2011-04-04 14:39:27 +02:00
|
|
|
namespace Valgrind {
|
|
|
|
|
namespace Callgrind {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
CycleDetection::CycleDetection(ParseData *data)
|
2011-05-18 17:05:49 +02:00
|
|
|
: m_data(data)
|
|
|
|
|
, m_depth(0)
|
|
|
|
|
, m_cycle(0)
|
2011-04-04 14:39:27 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVector<const Function *> CycleDetection::run(const QVector<const Function *> &input)
|
|
|
|
|
{
|
2011-05-11 16:26:34 +02:00
|
|
|
foreach (const Function *function, input) {
|
2011-04-04 14:39:27 +02:00
|
|
|
Node *node = new Node;
|
|
|
|
|
node->function = function;
|
|
|
|
|
node->dfs = -1;
|
|
|
|
|
node->lowlink = -1;
|
|
|
|
|
m_nodes.insert(function, node);
|
|
|
|
|
}
|
2011-05-11 16:26:34 +02:00
|
|
|
foreach (Node *node, m_nodes) {
|
2011-04-04 14:39:27 +02:00
|
|
|
if (node->dfs == -1)
|
|
|
|
|
tarjan(node);
|
|
|
|
|
}
|
|
|
|
|
qDeleteAll(m_nodes);
|
|
|
|
|
return m_ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CycleDetection::tarjan(Node *node)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(node->dfs == -1, return);
|
|
|
|
|
node->dfs = m_depth;
|
|
|
|
|
node->lowlink = m_depth;
|
|
|
|
|
|
|
|
|
|
m_depth++;
|
|
|
|
|
m_stack.push(node);
|
|
|
|
|
|
2011-05-11 16:26:34 +02:00
|
|
|
foreach (const FunctionCall *call, node->function->outgoingCalls())
|
2011-04-04 14:39:27 +02:00
|
|
|
tarjanForChildNode(node, m_nodes.value(call->callee()));
|
|
|
|
|
|
|
|
|
|
if (node->dfs == node->lowlink) {
|
|
|
|
|
QVector<const Function *> functions;
|
|
|
|
|
Node *n;
|
|
|
|
|
do {
|
|
|
|
|
n = m_stack.pop();
|
|
|
|
|
functions << n->function;
|
2011-05-11 16:26:34 +02:00
|
|
|
} while (n != node);
|
2011-04-04 14:39:27 +02:00
|
|
|
|
|
|
|
|
if (functions.size() == 1) {
|
|
|
|
|
// not a real cycle
|
|
|
|
|
m_ret.append(node->function);
|
|
|
|
|
} else {
|
|
|
|
|
// actual cycle
|
|
|
|
|
FunctionCycle *cycle = new FunctionCycle(m_data);
|
|
|
|
|
cycle->setFile(node->function->fileId());
|
|
|
|
|
m_cycle++;
|
|
|
|
|
qint64 id = -1;
|
|
|
|
|
m_data->addCompressedFunction(QString("cycle %1").arg(m_cycle), id);
|
|
|
|
|
cycle->setName(id);
|
|
|
|
|
cycle->setObject(node->function->objectId());
|
|
|
|
|
cycle->setFunctions(functions);
|
|
|
|
|
m_ret.append(cycle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CycleDetection::tarjanForChildNode(Node *node, Node *childNode)
|
|
|
|
|
{
|
|
|
|
|
if (childNode->dfs == -1) {
|
|
|
|
|
tarjan(childNode);
|
|
|
|
|
if (childNode->lowlink < node->lowlink)
|
|
|
|
|
node->lowlink = childNode->lowlink;
|
|
|
|
|
} else if (childNode->dfs < node->lowlink && m_stack.contains(childNode)) {
|
|
|
|
|
node->lowlink = childNode->dfs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Callgrind
|
|
|
|
|
} // namespace Valgrind
|