clang-tools  9.0.0
bugprone/ExceptionEscapeCheck.h
Go to the documentation of this file.
1 //===--- ExceptionEscapeCheck.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_BUGPRONE_EXCEPTION_ESCAPE_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_EXCEPTION_ESCAPE_H
11 
12 #include "../ClangTidyCheck.h"
13 #include "../utils/ExceptionAnalyzer.h"
14 #include "llvm/ADT/StringSet.h"
15 
16 namespace clang {
17 namespace tidy {
18 namespace bugprone {
19 
20 /// Finds functions which should not throw exceptions: Destructors, move
21 /// constructors, move assignment operators, the main() function,
22 /// swap() functions, functions marked with throw() or noexcept and functions
23 /// given as option to the checker.
24 ///
25 /// For the user-facing documentation see:
26 /// http://clang.llvm.org/extra/clang-tidy/checks/bugprone-exception-escape.html
28 public:
29  ExceptionEscapeCheck(StringRef Name, ClangTidyContext *Context);
30  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
31  void registerMatchers(ast_matchers::MatchFinder *Finder) override;
32  void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
33 
34 private:
35  std::string RawFunctionsThatShouldNotThrow;
36  std::string RawIgnoredExceptions;
37 
38  llvm::StringSet<> FunctionsThatShouldNotThrow;
40 };
41 
42 } // namespace bugprone
43 } // namespace tidy
44 } // namespace clang
45 
46 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_EXCEPTION_ESCAPE_H
Base class for all clang-tidy checks.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
This class analysis if a FunctionDecl can in principle throw an exception, either directly or indirec...
static constexpr llvm::StringLiteral Name
std::map< std::string, std::string > OptionMap
Finds functions which should not throw exceptions: Destructors, move constructors, move assignment operators, the main() function, swap() functions, functions marked with throw() or noexcept and functions given as option to the checker.
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
llvm::Optional< llvm::Expected< tooling::AtomicChanges > > Result
Definition: Rename.cpp:36
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
ExceptionEscapeCheck(StringRef Name, ClangTidyContext *Context)