clang-tools 19.0.0git
ArgumentCommentCheck.h
Go to the documentation of this file.
1//===--- ArgumentCommentCheck.h - clang-tidy --------------------*- 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#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_ARGUMENTCOMMENTCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_ARGUMENTCOMMENTCHECK_H
11
12#include "../ClangTidyCheck.h"
13#include "llvm/Support/Regex.h"
14
15namespace clang::tidy::bugprone {
16
17/// Checks that argument comments match parameter names.
18///
19/// The check understands argument comments in the form `/*parameter_name=*/`
20/// that are placed right before the argument.
21///
22/// \code
23/// void f(bool foo);
24///
25/// ...
26/// f(/*bar=*/true);
27/// // warning: argument name 'bar' in comment does not match parameter name
28/// 'foo'
29/// \endcode
30///
31/// The check tries to detect typos and suggest automated fixes for them.
33public:
34 ArgumentCommentCheck(StringRef Name, ClangTidyContext *Context);
35
36 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
37 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
38 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
39
40private:
41 const unsigned StrictMode : 1;
42 const unsigned IgnoreSingleArgument : 1;
43 const unsigned CommentBoolLiterals : 1;
44 const unsigned CommentIntegerLiterals : 1;
45 const unsigned CommentFloatLiterals : 1;
46 const unsigned CommentStringLiterals : 1;
47 const unsigned CommentUserDefinedLiterals : 1;
48 const unsigned CommentCharacterLiterals : 1;
49 const unsigned CommentNullPtrs : 1;
50 llvm::Regex IdentRE;
51
52 void checkCallArgs(ASTContext *Ctx, const FunctionDecl *Callee,
53 SourceLocation ArgBeginLoc,
54 llvm::ArrayRef<const Expr *> Args);
55
56 bool shouldAddComment(const Expr *Arg) const;
57};
58
59} // namespace clang::tidy::bugprone
60
61#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_ARGUMENTCOMMENTCHECK_H
llvm::SmallString< 256U > Name
llvm::json::Object Args
Definition: Trace.cpp:138
Base class for all clang-tidy checks.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Checks that argument comments match parameter names.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
llvm::StringMap< ClangTidyValue > OptionMap