clang-tools 19.0.0git
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
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.
24public:
26
27 bool isLanguageVersionSupported(const LangOptions &LO) const override {
28 return LO.CPlusPlus11;
29 }
30
31 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
32 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
33
34 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
35
36 std::optional<TraversalKind> getCheckTraversalKind() const override {
37 return TK_IgnoreUnlessSpelledInSource;
38 }
39
40private:
41 const std::vector<StringRef> IgnoredContainers;
42};
43} // namespace clang::tidy::readability
44
45#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_CONTAINERDATAPOINTERCHECK_H
llvm::SmallString< 256U > Name
Base class for all clang-tidy checks.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Checks whether a call to operator[] and & can be replaced with a call to data().
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
std::optional< TraversalKind > getCheckTraversalKind() const override
bool isLanguageVersionSupported(const LangOptions &LO) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
llvm::StringMap< ClangTidyValue > OptionMap