[clang-tidy] support query based custom check (#131804) ## summary ### Design for Compatibility For new field design 1. we must make sure the required fields do not change in quiet long time. 2. we should tolerant the unknown optional field (do not exist now) in the future. For large project integration (3rd party) 1. For config itself, since we can tolerant the unknown optional fields and required fields should not change, the user can decide whether to use custom check from third-party. 2.For clang-query, if there are some break change, since the query will be parsed at check time, the user can disable the check and it will not damage the whole clang-tidy ---- Inherit from #123734 RFC: https://discourse.llvm.org/t/support-query-based-clang-tidy-external-check/85331 this patch introduce query based custom check by `CustomChecks` options. The major improvement compared with #123734: 1. don't need to define config yaml file in command line 4. all behavior including `InheritFromParantConfig` is same as other config. 6. change configuration schema from KV structured to List structured to make extend new function easier. 7. Split bind string and diag message to two field to give more freedom to design query. example: ```yaml Checks: -*,custom-call-main-function CustomChecks: - Name: call-main-function Query: | match callExpr( callee( functionDecl(isMain()).bind("fn") ) ).bind("callee") Diagnostic: - BindName: fn Message: main function. Level: Note - BindName: callee Message: call to main function. Level: Warning ``` ```c++ int main(); // note: main function. void bar() { main(); // warning: call to main function. [custom-call-main-function] } ``` --- To make this PR don't do too much things that hard to review, here are some possible features not included in this PR - support language - support traverse - easier used template string in diagnostics message --------- Co-authored-by: DeNiCoN <denicon1234@gmail.com> Co-authored-by: Baranov Victor <bar.victor.2002@gmail.com>
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.