clang-tools
22.0.0git
llvm-project
clang-tools-extra
clang-tidy
google
IntegerTypesCheck.h
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
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H
11
12
#include "
../ClangTidyCheck.h
"
13
14
#include <memory>
15
16
namespace
clang
{
17
18
class
IdentifierTable;
19
20
namespace
tidy::google::runtime
{
21
22
/// Finds uses of `short`, `long` and `long long` and suggest replacing them
23
/// with `u?intXX(_t)?`.
24
///
25
/// Corresponding cpplint.py check: 'runtime/int'.
26
///
27
/// For the user-facing documentation see:
28
/// https://clang.llvm.org/extra/clang-tidy/checks/google/runtime-int.html
29
class
IntegerTypesCheck
:
public
ClangTidyCheck
{
30
public
:
31
IntegerTypesCheck
(StringRef Name,
ClangTidyContext
*Context);
32
bool
isLanguageVersionSupported
(
const
LangOptions &LangOpts)
const override
{
33
return
LangOpts.CPlusPlus && !LangOpts.ObjC;
34
}
35
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
36
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
37
void
storeOptions
(
ClangTidyOptions::OptionMap
&Opts)
override
;
38
std::optional<TraversalKind>
getCheckTraversalKind
()
const override
{
39
return
TK_IgnoreUnlessSpelledInSource;
40
}
41
42
private
:
43
const
StringRef UnsignedTypePrefix;
44
const
StringRef SignedTypePrefix;
45
const
StringRef TypeSuffix;
46
47
std::unique_ptr<IdentifierTable> IdentTable;
48
};
49
50
}
// namespace tidy::google::runtime
51
}
// namespace clang
52
53
#endif
// LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H
ClangTidyCheck.h
ClangTidyCheck
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition
ClangTidyDiagnosticConsumer.h:70
clang::tidy::google::runtime::IntegerTypesCheck::isLanguageVersionSupported
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
Definition
IntegerTypesCheck.h:32
clang::tidy::google::runtime::IntegerTypesCheck::getCheckTraversalKind
std::optional< TraversalKind > getCheckTraversalKind() const override
Definition
IntegerTypesCheck.h:38
clang::tidy::google::runtime::IntegerTypesCheck::IntegerTypesCheck
IntegerTypesCheck(StringRef Name, ClangTidyContext *Context)
Definition
IntegerTypesCheck.cpp:75
clang::tidy::google::runtime::IntegerTypesCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
Definition
IntegerTypesCheck.cpp:104
clang::tidy::google::runtime::IntegerTypesCheck::storeOptions
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Definition
IntegerTypesCheck.cpp:81
clang::tidy::google::runtime::IntegerTypesCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Definition
IntegerTypesCheck.cpp:87
clang::tidy::google::runtime
Definition
FloatTypesCheck.cpp:49
clang
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Definition
ApplyReplacements.h:27
clang::tidy::ClangTidyOptions::OptionMap
llvm::StringMap< ClangTidyValue > OptionMap
Definition
ClangTidyOptions.h:128
Generated on
for clang-tools by
1.14.0