office-gobmx/compilerplugins/clang/simplifydynamiccast.cxx
Stephan Bergmann d1a2b80b9d Bump compiler plugins Clang baseline to 12.0.1
...as discussed in the mail thread starting at
<https://lists.freedesktop.org/archives/libreoffice/2020-November/086234.html>
"Bump --enable-compiler-plugins Clang baseline?" (and now picked up again at
<https://lists.freedesktop.org/archives/libreoffice/2022-February/088459.html>
"Re: Bump --enable-compiler-plugins Clang baseline?"), and clean up
compilerplugins/clang/ accordingly

Change-Id: I5e81c6fdcc363aeefd6227606225b526fdf7ac16
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129989
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-02-17 21:45:06 +01:00

114 lines
3.5 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <cassert>
#include <string>
#include <iostream>
#include <fstream>
#include <set>
#include <clang/AST/CXXInheritance.h>
#include "plugin.hxx"
namespace
{
class SimplifyDynamicCast : public loplugin::FilteringPlugin<SimplifyDynamicCast>
{
public:
explicit SimplifyDynamicCast(loplugin::InstantiationData const& data)
: FilteringPlugin(data)
{
}
virtual void run() override
{
// StringRef fn(handler.getMainFileName());
// if (loplugin::isSamePathname(fn, WORKDIR "/YaccTarget/unoidl/source/sourceprovider-parser.cxx"))
// return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}
bool TraverseIfStmt(IfStmt*);
bool VisitCXXStaticCastExpr(CXXStaticCastExpr const*);
private:
std::vector<QualType> dynamicCastVec;
std::vector<Decl const*> dynamicCastSubExprVec;
std::vector<IfStmt const*> ifVec;
};
bool SimplifyDynamicCast::TraverseIfStmt(IfStmt* ifStmt)
{
auto condExpr = ifStmt->getCond()->IgnoreParenImpCasts();
auto dynamicCastExpr = dyn_cast<CXXDynamicCastExpr>(condExpr);
if (!dynamicCastExpr)
{
if (auto binaryOp = dyn_cast<BinaryOperator>(condExpr))
{
if (binaryOp->getOpcode() == BO_NE)
dynamicCastExpr
= dyn_cast<CXXDynamicCastExpr>(binaryOp->getLHS()->IgnoreParenImpCasts());
}
}
Decl const* subExprDecl = nullptr;
if (dynamicCastExpr)
{
auto subExprDeclRefExpr
= dyn_cast<DeclRefExpr>(dynamicCastExpr->getSubExpr()->IgnoreParenImpCasts());
if (!subExprDeclRefExpr)
dynamicCastExpr = nullptr;
else
subExprDecl = subExprDeclRefExpr->getDecl();
}
if (dynamicCastExpr)
{
auto qt = dynamicCastExpr->getTypeAsWritten();
dynamicCastVec.push_back(qt);
dynamicCastSubExprVec.push_back(subExprDecl);
ifVec.push_back(ifStmt);
}
bool ret = RecursiveASTVisitor::TraverseIfStmt(ifStmt);
if (dynamicCastExpr)
{
dynamicCastVec.pop_back();
dynamicCastSubExprVec.pop_back();
ifVec.pop_back();
}
return ret;
}
bool SimplifyDynamicCast::VisitCXXStaticCastExpr(CXXStaticCastExpr const* staticCastExpr)
{
if (ignoreLocation(staticCastExpr))
return true;
if (dynamicCastVec.empty())
return true;
auto qt = staticCastExpr->getTypeAsWritten();
auto it = std::find(dynamicCastVec.begin(), dynamicCastVec.end(), qt);
if (it == dynamicCastVec.end())
return true;
int idx = it - dynamicCastVec.begin();
auto subExprDecl = dyn_cast<DeclRefExpr>(staticCastExpr->getSubExpr()->IgnoreParenImpCasts());
if (!subExprDecl)
return true;
if (dynamicCastSubExprVec[idx] != subExprDecl->getDecl())
return true;
report(DiagnosticsEngine::Warning, "simplify, use var in if", staticCastExpr->getBeginLoc())
<< staticCastExpr->getSourceRange();
auto ifStmt = ifVec[idx];
report(DiagnosticsEngine::Note, "if here", ifStmt->getBeginLoc()) << ifStmt->getSourceRange();
return true;
}
loplugin::Plugin::Registration<SimplifyDynamicCast> X("simplifydynamiccast", true);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */