Files
libreoffice/compilerplugins/clang/dbgunhandledexception.cxx
Noel Grandin 1fd27a7931 filter out AST in more plugins
I seem to have missed quite a few in

    commit 9f4d23c151
    filter out some of the AST in the plugins

This nets me another 14% improvement

Change-Id: I39b980b49ced560f768045dbedd3ddfef29306c1
Reviewed-on: https://gerrit.libreoffice.org/59501
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-08-23 16:34:48 +02:00

108 lines
2.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* Based on LLVM/Clang.
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*
*/
#include "check.hxx"
#include "plugin.hxx"
#include <clang/Lex/Lexer.h>
#include <fstream>
#include <set>
namespace loplugin
{
/*
This is a compile check.
Check that DBG_UNHANDLED_EXCEPTION is always the first statement in a catch block, otherwise
it does not work properly.
*/
class DbgUnhandledException : public loplugin::FilteringPlugin<DbgUnhandledException>
{
public:
explicit DbgUnhandledException(InstantiationData const& data);
virtual void run() override;
bool VisitCallExpr(CallExpr const* call);
bool TraverseCXXCatchStmt(CXXCatchStmt*);
private:
CXXCatchStmt const* currCatchStmt = nullptr;
};
DbgUnhandledException::DbgUnhandledException(const InstantiationData& data)
: FilteringPlugin(data)
{
}
void DbgUnhandledException::run()
{
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}
bool DbgUnhandledException::TraverseCXXCatchStmt(CXXCatchStmt* catchStmt)
{
auto prevCatchStmt = currCatchStmt;
currCatchStmt = catchStmt;
auto rv = RecursiveASTVisitor::TraverseCXXCatchStmt(catchStmt);
currCatchStmt = prevCatchStmt;
return rv;
}
bool DbgUnhandledException::VisitCallExpr(const CallExpr* call)
{
if (ignoreLocation(call))
return true;
const FunctionDecl* func = call->getDirectCallee();
if (!func)
return true;
if (!func->getIdentifier() || func->getName() != "DbgUnhandledException")
return true;
if (!currCatchStmt)
{
report(DiagnosticsEngine::Warning, "DBG_UNHANDLED_EXCEPTION outside catch block",
compat::getBeginLoc(call));
return true;
}
auto catchBlock = dyn_cast<CompoundStmt>(currCatchStmt->getHandlerBlock());
if (!catchBlock)
{
report(DiagnosticsEngine::Warning,
"something wrong with DBG_UNHANDLED_EXCEPTION, no CompoundStmt?",
compat::getBeginLoc(call));
return true;
}
if (catchBlock->size() < 1)
{
report(DiagnosticsEngine::Warning,
"something wrong with DBG_UNHANDLED_EXCEPTION, CompoundStmt size == 0?",
compat::getBeginLoc(call));
return true;
}
Stmt const* firstStmt = *catchBlock->body_begin();
if (auto exprWithCleanups = dyn_cast<ExprWithCleanups>(firstStmt))
firstStmt = exprWithCleanups->getSubExpr();
if (firstStmt != call)
{
report(DiagnosticsEngine::Warning,
"DBG_UNHANDLED_EXCEPTION must be first statement in catch block",
compat::getBeginLoc(call));
}
return true;
}
static Plugin::Registration<DbgUnhandledException> X("dbgunhandledexception");
} // namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */