2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2023-01-04 08:52:22 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-07-06 15:48:52 +00:00
|
|
|
|
2011-05-09 13:25:32 +02:00
|
|
|
#include "findcdbbreakpoint.h"
|
|
|
|
|
|
2013-03-27 18:54:03 +01:00
|
|
|
#include <cplusplus/AST.h>
|
|
|
|
|
#include <cplusplus/TranslationUnit.h>
|
2011-05-09 13:25:32 +02:00
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
2013-03-27 18:54:03 +01:00
|
|
|
#include <typeinfo>
|
|
|
|
|
|
2011-05-09 13:25:32 +02:00
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
|
|
|
|
|
FindCdbBreakpoint::FindCdbBreakpoint(TranslationUnit *unit)
|
|
|
|
|
: ASTVisitor(unit)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 18:40:10 +02:00
|
|
|
int FindCdbBreakpoint::searchFrom(int line)
|
2011-05-09 13:25:32 +02:00
|
|
|
{
|
|
|
|
|
m_initialLine = line;
|
2011-05-09 15:27:22 +02:00
|
|
|
m_breakpointLine = NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
|
|
|
|
|
accept(translationUnit()->ast());
|
|
|
|
|
|
|
|
|
|
return m_breakpointLine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FindCdbBreakpoint::foundLine(unsigned tokenIndex)
|
|
|
|
|
{
|
2019-07-24 18:40:10 +02:00
|
|
|
int dummy = 0;
|
2011-05-09 13:25:32 +02:00
|
|
|
getTokenStartPosition(tokenIndex, &m_breakpointLine, &dummy);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 18:40:10 +02:00
|
|
|
int FindCdbBreakpoint::endLine(unsigned tokenIndex) const
|
2011-05-09 13:25:32 +02:00
|
|
|
{
|
2019-07-24 18:40:10 +02:00
|
|
|
int line = 0, column = 0;
|
2011-05-09 13:25:32 +02:00
|
|
|
getTokenEndPosition(tokenIndex, &line, &column);
|
|
|
|
|
return line;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 18:40:10 +02:00
|
|
|
int FindCdbBreakpoint::endLine(AST *ast) const
|
2011-05-09 13:25:32 +02:00
|
|
|
{
|
|
|
|
|
if (ast)
|
|
|
|
|
return endLine(ast->lastToken() - 1);
|
|
|
|
|
else
|
2011-05-09 15:27:22 +02:00
|
|
|
return NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::preVisit(AST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_breakpointLine)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (endLine(ast) < m_initialLine)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(FunctionDefinitionAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (ast->function_body) {
|
|
|
|
|
if (CompoundStatementAST *stmt = ast->function_body->asCompoundStatement()) {
|
|
|
|
|
accept(stmt);
|
|
|
|
|
if (!m_breakpointLine)
|
2011-07-25 15:01:19 +02:00
|
|
|
foundLine(ast->function_body->firstToken());
|
2011-05-09 13:25:32 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(QtMemberDeclarationAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(CompoundStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement_list);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(DeclarationStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
2011-05-09 15:27:22 +02:00
|
|
|
return m_breakpointLine == NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(DoStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
2011-05-09 15:27:22 +02:00
|
|
|
if (m_breakpointLine == NO_LINE_FOUND)
|
2011-05-09 13:25:32 +02:00
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ExpressionStatementAST *ast)
|
|
|
|
|
{
|
2014-05-14 10:40:08 +02:00
|
|
|
if (ast->expression) {
|
|
|
|
|
accept(ast->expression);
|
|
|
|
|
if (m_breakpointLine == NO_LINE_FOUND)
|
|
|
|
|
foundLine(ast->semicolon_token);
|
|
|
|
|
}
|
2011-05-09 13:25:32 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ForeachStatementAST *ast)
|
2012-02-19 16:33:25 +04:00
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(RangeBasedForStatementAST *ast)
|
2011-05-09 13:25:32 +02:00
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ForStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(IfStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
accept(ast->else_statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(LabeledStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(BreakStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ContinueStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(GotoStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ReturnStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(SwitchStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(TryBlockStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
2013-06-27 12:17:10 +02:00
|
|
|
accept(ast->catch_clause_list);
|
2011-05-09 13:25:32 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(CatchClauseAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(WhileStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ObjCFastEnumerationAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ObjCSynchronizedStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|