[clang][cli] Port DiagnosticOpts to new option parsing system
authorJan Svoboda <jan_svoboda@apple.com>
Tue, 22 Dec 2020 14:05:16 +0000 (15:05 +0100)
committerJan Svoboda <jan_svoboda@apple.com>
Fri, 8 Jan 2021 09:44:22 +0000 (10:44 +0100)
commit8e3230ffa3ad2994c3bbddffc3e53b3bccb2ee41
tree4ff803e97676be721c18fe704aed5d581fc34b2c
parent8af859d514fa0ef4a75b3c3dfb1ee8f42ac9bd04
[clang][cli] Port DiagnosticOpts to new option parsing system

This patch introduces additional infrastructure necessary to accommodate DiagnosticOptions.

DiagnosticOptions are unique in that they are parsed by the same function in cc1 AND in the Clang driver. The call to the parsing function from the driver occurs early on in the compilation process, where no proper DiagnosticEngine exists, because the diagnostic options (passed through command line) are not known yet.

To preserve the current behavior, we need to be able to selectively parse:
* all options (for -cc1),
* only diagnostic options (for driver).

This patch achieves that in the following way:
* new MacroPrefix field is added to the Option TableGen class,
* new IsDiag TableGen mixin sets MacroPrefix to "DIAG_",
* TableGen backend serializes option records into a macro with the prefix,
* CompilerInvocation parse/generate methods define the [DIAG_]OPTION_WITH_MARSHALLING macros to handle diagnostic options separately.

Depends on D93700, D93701 & D93702.

Reviewed By: dexonsmith

Differential Revision: https://reviews.llvm.org/D84673
clang/include/clang/Basic/DiagnosticOptions.h
clang/include/clang/Driver/Options.td
clang/lib/Frontend/CompilerInvocation.cpp
clang/unittests/Frontend/CompilerInvocationTest.cpp
llvm/include/llvm/Option/OptParser.td
llvm/utils/TableGen/OptParserEmitter.cpp