clang 19.0.0git
PointerIterationChecker.cpp
Go to the documentation of this file.
1//== PointerIterationChecker.cpp ------------------------------- -*- C++ -*--=//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines PointerIterationChecker which checks for non-determinism
10// caused due to iteration of unordered containers of pointer elements.
11//
12//===----------------------------------------------------------------------===//
13
18
19using namespace clang;
20using namespace ento;
21using namespace ast_matchers;
22
23namespace {
24
25// ID of a node at which the diagnostic would be emitted.
26constexpr llvm::StringLiteral WarnAtNode = "iter";
27
28class PointerIterationChecker : public Checker<check::ASTCodeBody> {
29public:
30 void checkASTCodeBody(const Decl *D,
32 BugReporter &BR) const;
33};
34
35static void emitDiagnostics(const BoundNodes &Match, const Decl *D,
37 const PointerIterationChecker *Checker) {
38 auto *ADC = AM.getAnalysisDeclContext(D);
39
40 const auto *MarkedStmt = Match.getNodeAs<Stmt>(WarnAtNode);
41 assert(MarkedStmt);
42
43 auto Range = MarkedStmt->getSourceRange();
44 auto Location = PathDiagnosticLocation::createBegin(MarkedStmt,
46 ADC);
47 std::string Diagnostics;
48 llvm::raw_string_ostream OS(Diagnostics);
49 OS << "Iteration of pointer-like elements "
50 << "can result in non-deterministic ordering";
51
52 BR.EmitBasicReport(ADC->getDecl(), Checker,
53 "Iteration of pointer-like elements", "Non-determinism",
54 OS.str(), Location, Range);
55}
56
57// Assumption: Iteration of ordered containers of pointers is deterministic.
58
59// TODO: Currently, we only check for std::unordered_set. Other unordered
60// containers like std::unordered_map also need to be handled.
61
62// TODO: Currently, we do not check what the for loop does with the iterated
63// pointer values. Not all iterations may cause non-determinism. For example,
64// counting or summing up the elements should not be non-deterministic.
65
66auto matchUnorderedIterWithPointers() -> decltype(decl()) {
67
68 auto UnorderedContainerM = declRefExpr(to(varDecl(hasType(
69 recordDecl(hasName("std::unordered_set")
70 )))));
71
72 auto PointerTypeM = varDecl(hasType(hasCanonicalType(pointerType())));
73
74 auto PointerIterM = stmt(cxxForRangeStmt(
75 hasLoopVariable(PointerTypeM),
76 hasRangeInit(UnorderedContainerM)
77 )).bind(WarnAtNode);
78
79 return decl(forEachDescendant(PointerIterM));
80}
81
82void PointerIterationChecker::checkASTCodeBody(const Decl *D,
84 BugReporter &BR) const {
85 auto MatcherM = matchUnorderedIterWithPointers();
86
87 auto Matches = match(MatcherM, *D, AM.getASTContext());
88 for (const auto &Match : Matches)
89 emitDiagnostics(Match, D, BR, AM, this);
90}
91
92} // end of anonymous namespace
93
94void ento::registerPointerIterationChecker(CheckerManager &Mgr) {
95 Mgr.registerChecker<PointerIterationChecker>();
96}
97
98bool ento::shouldRegisterPointerIterationChecker(const CheckerManager &mgr) {
99 const LangOptions &LO = mgr.getLangOpts();
100 return LO.CPlusPlus;
101}
static void emitDiagnostics(BoundNodes &Match, const Decl *D, BugReporter &BR, AnalysisManager &AM, const ObjCAutoreleaseWriteChecker *Checker)
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:85
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:449
Stmt - This represents one statement.
Definition: Stmt.h:84
Maps string IDs to AST nodes matched by parts of a matcher.
Definition: ASTMatchers.h:109
const T * getNodeAs(StringRef ID) const
Returns the AST node bound to ID.
Definition: ASTMatchers.h:116
ASTContext & getASTContext() override
AnalysisDeclContext * getAnalysisDeclContext(const Decl *D)
BugReporter is a utility class for generating PathDiagnostics for analysis.
Definition: BugReporter.h:585
const SourceManager & getSourceManager()
Definition: BugReporter.h:623
void EmitBasicReport(const Decl *DeclWithIssue, const CheckerBase *Checker, StringRef BugName, StringRef BugCategory, StringRef BugStr, PathDiagnosticLocation Loc, ArrayRef< SourceRange > Ranges=std::nullopt, ArrayRef< FixItHint > Fixits=std::nullopt)
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
const LangOptions & getLangOpts() const
static PathDiagnosticLocation createBegin(const Decl *D, const SourceManager &SM)
Create a location for the beginning of the declaration.
A Range represents the closed range [from, to].
const internal::VariadicDynCastAllOfMatcher< Decl, VarDecl > varDecl
Matches variable declarations.
const internal::VariadicDynCastAllOfMatcher< Stmt, DeclRefExpr > declRefExpr
Matches expressions that refer to declarations.
const AstTypeMatcher< PointerType > pointerType
Matches pointer types, but does not match Objective-C object pointer types.
internal::Matcher< NamedDecl > hasName(StringRef Name)
Matches NamedDecl nodes that have the specified name.
Definition: ASTMatchers.h:3078
const internal::ArgumentAdaptingMatcherFunc< internal::ForEachDescendantMatcher > forEachDescendant
Matches AST nodes that have descendant AST nodes that match the provided matcher.
SmallVector< BoundNodes, 1 > match(MatcherT Matcher, const NodeT &Node, ASTContext &Context)
Returns the results of matching Matcher on Node.
const internal::VariadicDynCastAllOfMatcher< Stmt, CXXForRangeStmt > cxxForRangeStmt
Matches range-based for statements.
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
const internal::VariadicDynCastAllOfMatcher< Decl, RecordDecl > recordDecl
Matches class, struct, and union declarations.
const internal::VariadicAllOfMatcher< Stmt > stmt
Matches statements.
The JSON file list parser is used to communicate input to InstallAPI.