blob: 065e4572e0e1303982cbbe7946c09ab92ef2e9cd (
plain)
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
|
/* -*- 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 "plugin.hxx"
/**
Check for places where we declare a block directly inside a block
*/
namespace {
class BlockBlock:
public RecursiveASTVisitor<BlockBlock>, public loplugin::RewritePlugin
{
public:
explicit BlockBlock(loplugin::InstantiationData const & data):
RewritePlugin(data) {}
virtual void run() override
{
StringRef fn( compiler.getSourceManager().getFileEntryForID(
compiler.getSourceManager().getMainFileID())->getName() );
if (loplugin::isSamePathname(fn, SRCDIR "/sal/osl/unx/file_misc.cxx"))
return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}
bool VisitCompoundStmt(CompoundStmt const * );
};
bool BlockBlock::VisitCompoundStmt(CompoundStmt const * compound)
{
if (ignoreLocation(compound))
return true;
if (compound->size() != 1)
return true;
auto inner = *compound->body_begin();
if (!isa<CompoundStmt>(inner))
return true;
if (compiler.getSourceManager().isMacroBodyExpansion(compound->getLocStart()))
return true;
if (compiler.getSourceManager().isMacroBodyExpansion(inner->getLocStart()))
return true;
if (containsPreprocessingConditionalInclusion(compound->getSourceRange())) {
return true;
}
report(
DiagnosticsEngine::Warning,
"block directly inside block",
compound->getLocStart())
<< compound->getSourceRange();
report(
DiagnosticsEngine::Note,
"inner block here",
inner->getLocStart())
<< inner->getSourceRange();
return true;
}
loplugin::Plugin::Registration< BlockBlock > X("blockblock", true);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|