clang-tools 22.0.0git
UseStdPrintCheck.cpp
Go to the documentation of this file.
1//===----------------------------------------------------------------------===//
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#include "UseStdPrintCheck.h"
11#include "../utils/Matchers.h"
13#include "clang/ASTMatchers/ASTMatchFinder.h"
14#include "clang/Lex/Lexer.h"
15
16using namespace clang::ast_matchers;
17
18namespace clang::tidy::modernize {
19
20namespace {
21AST_MATCHER(StringLiteral, isOrdinary) { return Node.isOrdinary(); }
22} // namespace
23
25 : ClangTidyCheck(Name, Context), PP(nullptr),
26 StrictMode(Options.get("StrictMode", false)),
27 PrintfLikeFunctions(utils::options::parseStringList(
28 Options.get("PrintfLikeFunctions", ""))),
29 FprintfLikeFunctions(utils::options::parseStringList(
30 Options.get("FprintfLikeFunctions", ""))),
31 ReplacementPrintFunction(
32 Options.get("ReplacementPrintFunction", "std::print")),
33 ReplacementPrintlnFunction(
34 Options.get("ReplacementPrintlnFunction", "std::println")),
35 IncludeInserter(Options.getLocalOrGlobal("IncludeStyle",
36 utils::IncludeSorter::IS_LLVM),
37 areDiagsSelfContained()),
38 MaybeHeaderToInclude(Options.get("PrintHeader")) {
39
40 if (PrintfLikeFunctions.empty() && FprintfLikeFunctions.empty()) {
41 PrintfLikeFunctions.emplace_back("::printf");
42 PrintfLikeFunctions.emplace_back("absl::PrintF");
43 FprintfLikeFunctions.emplace_back("::fprintf");
44 FprintfLikeFunctions.emplace_back("absl::FPrintF");
45 }
46
47 if (!MaybeHeaderToInclude && (ReplacementPrintFunction == "std::print" ||
48 ReplacementPrintlnFunction == "std::println"))
49 MaybeHeaderToInclude = "<print>";
50}
51
54 Options.store(Opts, "StrictMode", StrictMode);
55 Options.store(Opts, "PrintfLikeFunctions",
56 serializeStringList(PrintfLikeFunctions));
57 Options.store(Opts, "FprintfLikeFunctions",
58 serializeStringList(FprintfLikeFunctions));
59 Options.store(Opts, "ReplacementPrintFunction", ReplacementPrintFunction);
60 Options.store(Opts, "ReplacementPrintlnFunction", ReplacementPrintlnFunction);
61 Options.store(Opts, "IncludeStyle", IncludeInserter.getStyle());
62 if (MaybeHeaderToInclude)
63 Options.store(Opts, "PrintHeader", *MaybeHeaderToInclude);
64}
65
66void UseStdPrintCheck::registerPPCallbacks(const SourceManager &SM,
67 Preprocessor *PP,
68 Preprocessor *ModuleExpanderPP) {
69 IncludeInserter.registerPreprocessor(PP);
70 this->PP = PP;
71}
72
73static clang::ast_matchers::StatementMatcher
74unusedReturnValue(clang::ast_matchers::StatementMatcher MatchedCallExpr) {
75 auto UnusedInCompoundStmt =
76 compoundStmt(forEach(MatchedCallExpr),
77 // The checker can't currently differentiate between the
78 // return statement and other statements inside GNU statement
79 // expressions, so disable the checker inside them to avoid
80 // false positives.
81 unless(hasParent(stmtExpr())));
82 auto UnusedInIfStmt =
83 ifStmt(eachOf(hasThen(MatchedCallExpr), hasElse(MatchedCallExpr)));
84 auto UnusedInWhileStmt = whileStmt(hasBody(MatchedCallExpr));
85 auto UnusedInDoStmt = doStmt(hasBody(MatchedCallExpr));
86 auto UnusedInForStmt =
87 forStmt(eachOf(hasLoopInit(MatchedCallExpr),
88 hasIncrement(MatchedCallExpr), hasBody(MatchedCallExpr)));
89 auto UnusedInRangeForStmt = cxxForRangeStmt(hasBody(MatchedCallExpr));
90 auto UnusedInCaseStmt = switchCase(forEach(MatchedCallExpr));
91
92 return stmt(anyOf(UnusedInCompoundStmt, UnusedInIfStmt, UnusedInWhileStmt,
93 UnusedInDoStmt, UnusedInForStmt, UnusedInRangeForStmt,
94 UnusedInCaseStmt));
95}
96
97void UseStdPrintCheck::registerMatchers(MatchFinder *Finder) {
98 if (!PrintfLikeFunctions.empty())
99 Finder->addMatcher(
101 callExpr(argumentCountAtLeast(1),
102 hasArgument(0, stringLiteral(isOrdinary())),
103 callee(functionDecl(matchers::matchesAnyListedName(
104 PrintfLikeFunctions))
105 .bind("func_decl")))
106 .bind("printf")),
107 this);
108
109 if (!FprintfLikeFunctions.empty())
110 Finder->addMatcher(
112 callExpr(argumentCountAtLeast(2),
113 hasArgument(1, stringLiteral(isOrdinary())),
114 callee(functionDecl(matchers::matchesAnyListedName(
115 FprintfLikeFunctions))
116 .bind("func_decl")))
117 .bind("fprintf")),
118 this);
119}
120
121void UseStdPrintCheck::check(const MatchFinder::MatchResult &Result) {
122 unsigned FormatArgOffset = 0;
123 const auto *OldFunction = Result.Nodes.getNodeAs<FunctionDecl>("func_decl");
124 const auto *Printf = Result.Nodes.getNodeAs<CallExpr>("printf");
125 if (!Printf) {
126 Printf = Result.Nodes.getNodeAs<CallExpr>("fprintf");
127 FormatArgOffset = 1;
128 }
129
131 ConverterConfig.StrictMode = StrictMode;
132 ConverterConfig.AllowTrailingNewlineRemoval = true;
133 assert(PP && "Preprocessor should be set by registerPPCallbacks");
135 Result.Context, Printf, FormatArgOffset, ConverterConfig, getLangOpts(),
136 *Result.SourceManager, *PP);
137 const Expr *PrintfCall = Printf->getCallee();
138 const StringRef ReplacementFunction = Converter.usePrintNewlineFunction()
139 ? ReplacementPrintlnFunction
140 : ReplacementPrintFunction;
141 if (!Converter.canApply()) {
142 diag(PrintfCall->getBeginLoc(),
143 "unable to use '%0' instead of %1 because %2")
144 << PrintfCall->getSourceRange() << ReplacementFunction
145 << OldFunction->getIdentifier()
146 << Converter.conversionNotPossibleReason();
147 return;
148 }
149
150 DiagnosticBuilder Diag =
151 diag(PrintfCall->getBeginLoc(), "use '%0' instead of %1")
152 << ReplacementFunction << OldFunction->getIdentifier();
153
154 Diag << FixItHint::CreateReplacement(
155 CharSourceRange::getTokenRange(PrintfCall->getExprLoc(),
156 PrintfCall->getEndLoc()),
157 ReplacementFunction);
158 Converter.applyFixes(Diag, *Result.SourceManager);
159
160 if (MaybeHeaderToInclude)
161 Diag << IncludeInserter.createIncludeInsertion(
162 Result.Context->getSourceManager().getFileID(PrintfCall->getBeginLoc()),
163 *MaybeHeaderToInclude);
164}
165
166} // namespace clang::tidy::modernize
Declaration of the FormatStringConverter class which is used to convert printf format strings to C++ ...
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
UseStdPrintCheck(StringRef Name, ClangTidyContext *Context)
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) override
Convert a printf-style format string to a std::formatter-style one, and prepare any casts that are re...
void applyFixes(DiagnosticBuilder &Diag, SourceManager &SM)
Called by the check when it is ready to apply the fixes.
const std::string & conversionNotPossibleReason() const
AST_MATCHER(BinaryOperator, isRelationalOperator)
inline ::clang::ast_matchers::internal::Matcher< NamedDecl > matchesAnyListedName(llvm::ArrayRef< StringRef > NameList)
static clang::ast_matchers::StatementMatcher unusedReturnValue(clang::ast_matchers::StatementMatcher MatchedCallExpr)
std::string serializeStringList(ArrayRef< StringRef > Strings)
Serialize a sequence of names that can be parsed by parseStringList.
llvm::StringMap< ClangTidyValue > OptionMap