2018-06-22 04:56:37 -05:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2019-03-07 07:31:17 -06:00
|
|
|
#ifndef LO_CLANG_SHARED_PLUGINS
|
|
|
|
|
2018-06-22 04:56:37 -05:00
|
|
|
#include <memory>
|
|
|
|
#include <cassert>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <set>
|
|
|
|
#include "plugin.hxx"
|
|
|
|
#include "check.hxx"
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2019-03-05 09:15:22 -06:00
|
|
|
class SimplifyConstruct : public loplugin::FilteringPlugin<SimplifyConstruct>
|
2018-06-22 04:56:37 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit SimplifyConstruct(loplugin::InstantiationData const& data)
|
2019-03-05 09:15:22 -06:00
|
|
|
: FilteringPlugin(data)
|
2018-06-22 04:56:37 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); }
|
|
|
|
|
|
|
|
bool VisitCXXConstructExpr(CXXConstructExpr const*);
|
2019-04-12 11:39:22 -05:00
|
|
|
bool VisitVarDecl(VarDecl const*);
|
2018-06-22 04:56:37 -05:00
|
|
|
|
|
|
|
// ignore some contexts within which nullptr is fine
|
|
|
|
bool TraverseReturnStmt(ReturnStmt*) { return true; }
|
|
|
|
bool TraverseInitListExpr(InitListExpr*) { return true; }
|
|
|
|
bool TraverseCXXBindTemporaryExpr(CXXBindTemporaryExpr*) { return true; }
|
2019-03-07 07:31:17 -06:00
|
|
|
// ignore them for the shared visitor too
|
|
|
|
bool PreTraverseReturnStmt(ReturnStmt*) { return false; }
|
|
|
|
bool PreTraverseInitListExpr(InitListExpr*) { return false; }
|
|
|
|
bool PreTraverseCXXBindTemporaryExpr(CXXBindTemporaryExpr*) { return false; }
|
2018-06-22 04:56:37 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
bool SimplifyConstruct::VisitCXXConstructExpr(CXXConstructExpr const* constructExpr)
|
|
|
|
{
|
|
|
|
if (ignoreLocation(constructExpr))
|
|
|
|
return true;
|
|
|
|
auto tc = loplugin::TypeCheck(constructExpr->getType());
|
|
|
|
if (!tc.Class("unique_ptr").StdNamespace() && !tc.Class("shared_ptr").StdNamespace()
|
|
|
|
&& !tc.Class("SvRef").Namespace("tools").GlobalNamespace()
|
|
|
|
&& !tc.Class("Reference").Namespace("rtl").GlobalNamespace()
|
|
|
|
&& !tc.Class("Reference")
|
|
|
|
.Namespace("uno")
|
|
|
|
.Namespace("star")
|
|
|
|
.Namespace("sun")
|
|
|
|
.Namespace("com")
|
|
|
|
.GlobalNamespace())
|
|
|
|
return true;
|
2018-09-13 06:31:41 -05:00
|
|
|
if (constructExpr->getNumArgs() == 1
|
2018-06-22 04:56:37 -05:00
|
|
|
&& isa<CXXNullPtrLiteralExpr>(constructExpr->getArg(0)->IgnoreParenImpCasts()))
|
|
|
|
{
|
|
|
|
report(DiagnosticsEngine::Warning,
|
2018-09-13 14:21:20 -05:00
|
|
|
"no need to explicitly init an instance of %0 with nullptr, just use default "
|
|
|
|
"constructor",
|
2018-06-22 04:56:37 -05:00
|
|
|
constructExpr->getSourceRange().getBegin())
|
2018-09-13 14:21:20 -05:00
|
|
|
<< constructExpr->getType() << constructExpr->getSourceRange();
|
2018-06-22 04:56:37 -05:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-12 11:39:22 -05:00
|
|
|
bool SimplifyConstruct::VisitVarDecl(VarDecl const* varDecl)
|
|
|
|
{
|
|
|
|
if (ignoreLocation(varDecl))
|
|
|
|
return true;
|
|
|
|
// cannot use OUString s("xxx") style syntax in a parameter
|
|
|
|
if (isa<ParmVarDecl>(varDecl))
|
|
|
|
return true;
|
|
|
|
varDecl = varDecl->getCanonicalDecl();
|
|
|
|
if (!varDecl->getInit())
|
|
|
|
return true;
|
|
|
|
if (varDecl->getInitStyle() != VarDecl::InitializationStyle::CInit)
|
|
|
|
return true;
|
|
|
|
if (!varDecl->getType()->isRecordType())
|
|
|
|
return true;
|
|
|
|
if (isa<AutoType>(varDecl->getType()))
|
|
|
|
return true;
|
|
|
|
|
2019-06-21 05:14:08 -05:00
|
|
|
auto init = varDecl->getInit();
|
2019-09-05 05:01:16 -05:00
|
|
|
auto const e1 = compat::IgnoreImplicit(init);
|
|
|
|
if (!isa<CXXFunctionalCastExpr>(e1) && !isa<CXXTemporaryObjectExpr>(e1))
|
2019-04-12 11:39:22 -05:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// e.g. the LANGUAGE_DONTKNOW defines
|
|
|
|
if (compiler.getSourceManager().isMacroBodyExpansion(compat::getBeginLoc(init)))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
report(DiagnosticsEngine::Warning, "simplify", varDecl->getLocation())
|
|
|
|
<< varDecl->getSourceRange();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-07 07:31:17 -06:00
|
|
|
loplugin::Plugin::Registration<SimplifyConstruct> simplifyconstruct("simplifyconstruct", true);
|
2018-06-22 04:56:37 -05:00
|
|
|
}
|
|
|
|
|
2019-03-07 07:31:17 -06:00
|
|
|
#endif // LO_CLANG_SHARED_PLUGINS
|
|
|
|
|
2018-06-22 04:56:37 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|