1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* -*- 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/.
*/
#ifndef LO_CLANG_SHARED_PLUGINS
#include <memory>
#include <cassert>
#include <string>
#include <iostream>
#include <fstream>
#include <set>
#include "check.hxx"
#include "plugin.hxx"
/**
Look for places we are using map[idx] in a bool context, which allocates an entry in the map, which is sometimes a side-effect we don't want.
*/
namespace
{
class MapIndex : public loplugin::FilteringPlugin<MapIndex>
{
public:
explicit MapIndex(loplugin::InstantiationData const& data)
: FilteringPlugin(data)
{
}
virtual void run() override
{
if (preRun())
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}
bool VisitImplicitCastExpr(const ImplicitCastExpr*);
bool VisitMemberExpr(const MemberExpr*);
};
bool MapIndex::VisitMemberExpr(const MemberExpr* memberExpr)
{
if (ignoreLocation(memberExpr))
return true;
// operator bool conversion
auto conversionDecl = dyn_cast<CXXConversionDecl>(memberExpr->getMemberDecl());
if (!conversionDecl || !conversionDecl->getConversionType()->isBooleanType())
return true;
auto operatorCall = dyn_cast<CXXOperatorCallExpr>(memberExpr->getBase()->IgnoreCasts());
if (!operatorCall)
return true;
if (operatorCall->getOperator() != OverloadedOperatorKind::OO_Subscript)
return true;
auto tc = loplugin::TypeCheck(operatorCall->getArg(0)->getType());
if (!tc.Class("map") && !tc.Class("unordered_map"))
return true;
report(DiagnosticsEngine::Warning,
"will create an empty entry in the map, you sure about that, rather use count()1",
operatorCall->getExprLoc());
return true;
}
bool MapIndex::VisitImplicitCastExpr(const ImplicitCastExpr* implicitCastExpr)
{
if (ignoreLocation(implicitCastExpr))
{
return true;
}
// first cast is some kind of "ToBoolean" cast
auto ck = implicitCastExpr->getCastKind();
if (ck != CK_MemberPointerToBoolean && ck != CK_PointerToBoolean && ck != CK_IntegralToBoolean
&& ck != CK_FloatingToBoolean && ck != CK_FloatingComplexToBoolean
&& ck != CK_IntegralComplexToBoolean)
return true;
// second cast is LValueToRValue
implicitCastExpr = dyn_cast<ImplicitCastExpr>(implicitCastExpr->getSubExpr());
if (!implicitCastExpr)
return true;
if (implicitCastExpr->getCastKind() != CK_LValueToRValue)
return true;
auto operatorCall = dyn_cast<CXXOperatorCallExpr>(implicitCastExpr->getSubExpr());
if (!operatorCall)
return true;
if (operatorCall->getOperator() != OverloadedOperatorKind::OO_Subscript)
return true;
auto tc = loplugin::TypeCheck(operatorCall->getArg(0)->getType());
if (!tc.Class("map") && !tc.Class("unordered_map"))
return true;
report(DiagnosticsEngine::Warning,
"will create an empty entry in the map, you sure about that, rather use count()2",
implicitCastExpr->getExprLoc());
return true;
}
loplugin::Plugin::Registration<MapIndex> mapindex("mapindex");
} // namespace
#endif // LO_CLANG_SHARED_PLUGINS
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|