Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / tools / clang-scan-deps / Opts.td
blob27917b4f4808a47269be7ba3e874d52c6e14c709
1 include "llvm/Option/OptParser.td"
3 class F<string name, string help> : Flag<["-"], name>, HelpText<help>;
4 class Arg<string name, string help> : Separate<["-"], name>, HelpText<help>;
6 multiclass Eq<string name, string help> {
7     def NAME #_EQ : Joined<["-", "--"], name #"=">, HelpText<help>;
8     def : Separate<["-", "--"], name>, Alias<!cast<Joined>(NAME #_EQ)>;
11 def help : Flag<["--"], "help">, HelpText<"Display this help">;
12 def version : Flag<["--"], "version">, HelpText<"Display the version">;
14 defm mode : Eq<"mode", "The preprocessing mode used to compute the dependencies">;
16 defm format : Eq<"format", "The output format for the dependencies">;
18 defm module_files_dir : Eq<"module-files-dir",
19     "The build directory for modules. Defaults to the value of '-fmodules-cache-path=' from command lines for implicit modules">;
21 def optimize_args : F<"optimize-args", "Whether to optimize command-line arguments of modules">;
22 def eager_load_pcm : F<"eager-load-pcm", "Load PCM files eagerly (instead of lazily on import)">;
24 def j : Arg<"j", "Number of worker threads to use (default: use all concurrent threads)">;
26 defm compilation_database : Eq<"compilation-database", "Compilation database">;
27 defm module_name : Eq<"module-name", "the module of which the dependencies are to be computed">;
28 defm dependency_target : Eq<"dependency-target", "The names of dependency targets for the dependency file">;
30 def deprecated_driver_command : F<"deprecated-driver-command", "use a single driver command to build the tu (deprecated)">;
32 defm resource_dir_recipe : Eq<"resource-dir-recipe", "How to produce missing '-resource-dir' argument">;
34 def print_timing : F<"print-timing", "Print timing information">;
36 def verbose : F<"v", "Use verbose output">;
38 def round_trip_args : F<"round-trip-args", "verify that command-line arguments are canonical by parsing and re-serializing">;
40 def DASH_DASH : Option<["--"], "", KIND_REMAINING_ARGS>;