clang-tools
17.0.0git
llvm-project
clang-tools-extra
clang-tidy
readability
ContainerDataPointerCheck.h
Go to the documentation of this file.
1
//===--- ContainerDataPointerCheck.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_READABILITY_CONTAINERDATAPOINTERCHECK_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_CONTAINERDATAPOINTERCHECK_H
11
12
#include "../ClangTidyCheck.h"
13
14
namespace
clang::tidy::readability
{
15
/// Checks whether a call to `operator[]` and `&` can be replaced with a call to
16
/// `data()`.
17
///
18
/// This only replaces the case where the offset being accessed through the
19
/// subscript operation is a known constant 0. This avoids a potential invalid
20
/// memory access when the container is empty. Cases where the constant is not
21
/// explicitly zero can be addressed through the clang static analyzer, and
22
/// those which cannot be statically identified can be caught using UBSan.
23
class
ContainerDataPointerCheck
:
public
ClangTidyCheck
{
24
public
:
25
ContainerDataPointerCheck
(StringRef
Name
,
ClangTidyContext
*Context);
26
27
bool
isLanguageVersionSupported
(
const
LangOptions &LO)
const override
{
28
return
LO.CPlusPlus11;
29
}
30
31
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
32
33
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
34
35
std::optional<TraversalKind>
getCheckTraversalKind
()
const override
{
36
return
TK_IgnoreUnlessSpelledInSource;
37
}
38
};
39
}
// namespace clang::tidy::readability
40
41
#endif
// LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_CONTAINERDATAPOINTERCHECK_H
Name
Token Name
Definition:
MacroToEnumCheck.cpp:87
clang::tidy::ClangTidyCheck
Base class for all clang-tidy checks.
Definition:
ClangTidyCheck.h:53
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition:
ClangTidyDiagnosticConsumer.h:69
clang::tidy::readability::ContainerDataPointerCheck
Checks whether a call to operator[] and & can be replaced with a call to data().
Definition:
ContainerDataPointerCheck.h:23
clang::tidy::readability::ContainerDataPointerCheck::getCheckTraversalKind
std::optional< TraversalKind > getCheckTraversalKind() const override
Definition:
ContainerDataPointerCheck.h:35
clang::tidy::readability::ContainerDataPointerCheck::isLanguageVersionSupported
bool isLanguageVersionSupported(const LangOptions &LO) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
Definition:
ContainerDataPointerCheck.h:27
clang::tidy::readability::ContainerDataPointerCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
ContainerDataPointerCheck.cpp:79
clang::tidy::readability::ContainerDataPointerCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
ContainerDataPointerCheck.cpp:28
clang::tidy::readability
Definition:
AvoidConstParamsInDecls.cpp:17
Generated on Mon May 29 2023 20:22:31 for clang-tools by
1.9.6