[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / clang-tools-extra / clang-tidy / readability / SimplifyBooleanExprCheck.h
blob2ea69687984086d1ccbe6185ab7780bcf100a414
1 //===--- SimplifyBooleanExpr.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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_SIMPLIFY_BOOLEAN_EXPR_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_SIMPLIFY_BOOLEAN_EXPR_H
12 #include "../ClangTidyCheck.h"
14 namespace clang::tidy::readability {
16 /// Looks for boolean expressions involving boolean constants and simplifies
17 /// them to use the appropriate boolean expression directly.
18 ///
19 /// For the user-facing documentation see:
20 /// http://clang.llvm.org/extra/clang-tidy/checks/readability/simplify-boolean-expr.html
21 class SimplifyBooleanExprCheck : public ClangTidyCheck {
22 public:
23 SimplifyBooleanExprCheck(StringRef Name, ClangTidyContext *Context);
25 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
26 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
27 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
28 std::optional<TraversalKind> getCheckTraversalKind() const override {
29 return TK_IgnoreUnlessSpelledInSource;
32 private:
33 class Visitor;
35 void reportBinOp(const ASTContext &Context, const BinaryOperator *Op);
37 void replaceWithThenStatement(const ASTContext &Context,
38 const IfStmt *IfStatement,
39 const Expr *BoolLiteral);
41 void replaceWithElseStatement(const ASTContext &Context,
42 const IfStmt *IfStatement,
43 const Expr *BoolLiteral);
45 void replaceWithCondition(const ASTContext &Context,
46 const ConditionalOperator *Ternary, bool Negated);
48 void replaceWithReturnCondition(const ASTContext &Context, const IfStmt *If,
49 const Expr *BoolLiteral, bool Negated);
51 void replaceWithAssignment(const ASTContext &Context, const IfStmt *If,
52 const Expr *Var, SourceLocation Loc, bool Negated);
54 void replaceCompoundReturnWithCondition(const ASTContext &Context,
55 const ReturnStmt *Ret, bool Negated,
56 const IfStmt *If,
57 const Expr *ThenReturn);
59 bool reportDeMorgan(const ASTContext &Context, const UnaryOperator *Outer,
60 const BinaryOperator *Inner, bool TryOfferFix,
61 const Stmt *Parent, const ParenExpr *Parens);
63 bool issueDiag(const ASTContext &Context, SourceLocation Loc,
64 StringRef Description, SourceRange ReplacementRange,
65 StringRef Replacement);
67 bool canBeBypassed(const Stmt *S) const;
69 const bool IgnoreMacros;
70 const bool ChainedConditionalReturn;
71 const bool ChainedConditionalAssignment;
72 const bool SimplifyDeMorgan;
73 const bool SimplifyDeMorganRelaxed;
76 } // namespace clang::tidy::readability
78 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_SIMPLIFY_BOOLEAN_EXPR_H