This is a continuation of the work in D66324 that creates a standalone tool that can simply be run over an entire codebase through the use of a compile commands database. This simplifies the need to support custom build targets to check a project's use of __builtin_expect().
The design is fairly straightforward: use a libTooling executor to walk the compilation database, and run the compiler over each target after curating some compiler flags. Mainly, we remove any incompatible flags, and then configure the codegen options to support using the selected type of profile data. We also process the LLVMArgs, as libTooling executors seem to bypass the normal mechanisms for passing flags to the LLVM backend. Other than these few changes we rely on the existing compiler infrastructure to generate our diagnostics.
Currently the use of the CodeGenAction with the libTooling Executor seems to be surfacing some race conditions within the compiler infrastructure. For now I plan to limit the concurrency of the executor to run single threaded, but eventually, I would like to have this run with full parallelism. If a CodeGenAction can never be safely run in parallel, then it may become necessary to use an external driver script, similar to run_clang_tidy.py to take advantage of parallelism.
Nit: llvm_unreackable is unneeded since you cover all ProfileKinds here.