[InstCombine] Drop range attributes in `foldBitCeil` (#116641)
[llvm-project.git] / clang-tools-extra / clang-tidy / abseil / DurationFactoryFloatCheck.cpp
blob6cb687de4dc86e53466f104b713ecb70bd2124c0
1 //===--- DurationFactoryFloatCheck.cpp - clang-tidy -----------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "DurationFactoryFloatCheck.h"
10 #include "DurationRewriter.h"
11 #include "clang/AST/ASTContext.h"
12 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 #include "clang/Lex/Lexer.h"
14 #include "clang/Tooling/FixIt.h"
15 #include <optional>
17 using namespace clang::ast_matchers;
19 namespace clang::tidy::abseil {
21 // Returns `true` if `Range` is inside a macro definition.
22 static bool insideMacroDefinition(const MatchFinder::MatchResult &Result,
23 SourceRange Range) {
24 return !clang::Lexer::makeFileCharRange(
25 clang::CharSourceRange::getCharRange(Range),
26 *Result.SourceManager, Result.Context->getLangOpts())
27 .isValid();
30 void DurationFactoryFloatCheck::registerMatchers(MatchFinder *Finder) {
31 Finder->addMatcher(
32 callExpr(callee(functionDecl(DurationFactoryFunction())),
33 hasArgument(0, anyOf(cxxStaticCastExpr(hasDestinationType(
34 realFloatingPointType())),
35 cStyleCastExpr(hasDestinationType(
36 realFloatingPointType())),
37 cxxFunctionalCastExpr(hasDestinationType(
38 realFloatingPointType())),
39 floatLiteral())))
40 .bind("call"),
41 this);
44 void DurationFactoryFloatCheck::check(const MatchFinder::MatchResult &Result) {
45 const auto *MatchedCall = Result.Nodes.getNodeAs<CallExpr>("call");
47 // Don't try and replace things inside of macro definitions.
48 if (insideMacroDefinition(Result, MatchedCall->getSourceRange()))
49 return;
51 const Expr *Arg = MatchedCall->getArg(0)->IgnoreImpCasts();
52 // Arguments which are macros are ignored.
53 if (Arg->getBeginLoc().isMacroID())
54 return;
56 std::optional<std::string> SimpleArg = stripFloatCast(Result, *Arg);
57 if (!SimpleArg)
58 SimpleArg = stripFloatLiteralFraction(Result, *Arg);
60 if (SimpleArg) {
61 diag(MatchedCall->getBeginLoc(), "use the integer version of absl::%0")
62 << MatchedCall->getDirectCallee()->getName()
63 << FixItHint::CreateReplacement(Arg->getSourceRange(), *SimpleArg);
67 } // namespace clang::tidy::abseil