]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
Import Annapurna Labs Alpine HAL to sys/contrib/
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Driver / CC1Options.td
1 //===--- CC1Options.td - Options for clang -cc1 ---------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file defines the options accepted by clang -cc1 and clang -cc1as.
11 //
12 //===----------------------------------------------------------------------===//
13
14 let Flags = [CC1Option, NoDriverOption] in {
15
16 //===----------------------------------------------------------------------===//
17 // Target Options
18 //===----------------------------------------------------------------------===//
19
20 let Flags = [CC1Option, CC1AsOption, NoDriverOption] in {
21
22 def target_cpu : Separate<["-"], "target-cpu">,
23   HelpText<"Target a specific cpu type">;
24 def target_feature : Separate<["-"], "target-feature">,
25   HelpText<"Target specific attributes">;
26 def triple : Separate<["-"], "triple">,
27   HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
28
29 }
30
31 def target_abi : Separate<["-"], "target-abi">,
32   HelpText<"Target a particular ABI type">;
33 def target_linker_version : Separate<["-"], "target-linker-version">,
34   HelpText<"Target linker version">;
35 def triple_EQ : Joined<["-"], "triple=">, Alias<triple>;
36 def mfpmath : Separate<["-"], "mfpmath">,
37   HelpText<"Which unit to use for fp math">;
38
39 //===----------------------------------------------------------------------===//
40 // Analyzer Options
41 //===----------------------------------------------------------------------===//
42
43 def analysis_UnoptimizedCFG : Flag<["-"], "unoptimized-cfg">,
44   HelpText<"Generate unoptimized CFGs for all analyses">;
45 def analysis_CFGAddImplicitDtors : Flag<["-"], "cfg-add-implicit-dtors">,
46   HelpText<"Add C++ implicit destructors to CFGs for all analyses">;
47
48 def analyzer_store : Separate<["-"], "analyzer-store">,
49   HelpText<"Source Code Analysis - Abstract Memory Store Models">;
50 def analyzer_store_EQ : Joined<["-"], "analyzer-store=">, Alias<analyzer_store>;
51
52 def analyzer_constraints : Separate<["-"], "analyzer-constraints">,
53   HelpText<"Source Code Analysis - Symbolic Constraint Engines">;
54 def analyzer_constraints_EQ : Joined<["-"], "analyzer-constraints=">,
55   Alias<analyzer_constraints>;
56
57 def analyzer_output : Separate<["-"], "analyzer-output">,
58   HelpText<"Source Code Analysis - Output Options">;
59 def analyzer_output_EQ : Joined<["-"], "analyzer-output=">,
60   Alias<analyzer_output>;
61
62 def analyzer_purge : Separate<["-"], "analyzer-purge">,
63   HelpText<"Source Code Analysis - Dead Symbol Removal Frequency">;
64 def analyzer_purge_EQ : Joined<["-"], "analyzer-purge=">, Alias<analyzer_purge>;
65
66 def analyzer_opt_analyze_headers : Flag<["-"], "analyzer-opt-analyze-headers">,
67   HelpText<"Force the static analyzer to analyze functions defined in header files">;
68 def analyzer_opt_analyze_nested_blocks : Flag<["-"], "analyzer-opt-analyze-nested-blocks">,
69   HelpText<"Analyze the definitions of blocks in addition to functions">;
70 def analyzer_display_progress : Flag<["-"], "analyzer-display-progress">,
71   HelpText<"Emit verbose output about the analyzer's progress">;
72 def analyze_function : Separate<["-"], "analyze-function">,
73   HelpText<"Run analysis on specific function">;
74 def analyze_function_EQ : Joined<["-"], "analyze-function=">, Alias<analyze_function>;
75 def analyzer_eagerly_assume : Flag<["-"], "analyzer-eagerly-assume">,
76   HelpText<"Eagerly assume the truth/falseness of some symbolic constraints">;
77 def trim_egraph : Flag<["-"], "trim-egraph">,
78   HelpText<"Only show error-related paths in the analysis graph">;
79 def analyzer_viz_egraph_graphviz : Flag<["-"], "analyzer-viz-egraph-graphviz">,
80   HelpText<"Display exploded graph using GraphViz">;
81 def analyzer_viz_egraph_ubigraph : Flag<["-"], "analyzer-viz-egraph-ubigraph">,
82   HelpText<"Display exploded graph using Ubigraph">;
83
84 def analyzer_inline_max_stack_depth : Separate<["-"], "analyzer-inline-max-stack-depth">,
85   HelpText<"Bound on stack depth while inlining (4 by default)">;
86 def analyzer_inline_max_stack_depth_EQ : Joined<["-"], "analyzer-inline-max-stack-depth=">, 
87   Alias<analyzer_inline_max_stack_depth>;
88   
89 def analyzer_inlining_mode : Separate<["-"], "analyzer-inlining-mode">,
90   HelpText<"Specify the function selection heuristic used during inlining">;
91 def analyzer_inlining_mode_EQ : Joined<["-"], "analyzer-inlining-mode=">, Alias<analyzer_inlining_mode>;
92
93 def analyzer_disable_retry_exhausted : Flag<["-"], "analyzer-disable-retry-exhausted">,
94   HelpText<"Do not re-analyze paths leading to exhausted nodes with a different strategy (may decrease code coverage)">;
95   
96 def analyzer_max_loop : Separate<["-"], "analyzer-max-loop">,
97   HelpText<"The maximum number of times the analyzer will go through a loop">;
98 def analyzer_stats : Flag<["-"], "analyzer-stats">,
99   HelpText<"Print internal analyzer statistics.">;
100
101 def analyzer_checker : Separate<["-"], "analyzer-checker">,
102   HelpText<"Choose analyzer checkers to enable">;
103 def analyzer_checker_EQ : Joined<["-"], "analyzer-checker=">,
104   Alias<analyzer_checker>;
105
106 def analyzer_disable_checker : Separate<["-"], "analyzer-disable-checker">,
107   HelpText<"Choose analyzer checkers to disable">;
108 def analyzer_disable_checker_EQ : Joined<["-"], "analyzer-disable-checker=">,
109   Alias<analyzer_disable_checker>;
110
111 def analyzer_disable_all_checks : Flag<["-"], "analyzer-disable-all-checks">,
112   HelpText<"Disable all static analyzer checks">;
113
114 def analyzer_checker_help : Flag<["-"], "analyzer-checker-help">,
115   HelpText<"Display the list of analyzer checkers that are available">;
116
117 def analyzer_config : Separate<["-"], "analyzer-config">,
118   HelpText<"Choose analyzer options to enable">;
119
120 //===----------------------------------------------------------------------===//
121 // Migrator Options
122 //===----------------------------------------------------------------------===//
123 def migrator_no_nsalloc_error : Flag<["-"], "no-ns-alloc-error">,
124   HelpText<"Do not error on use of NSAllocateCollectable/NSReallocateCollectable">;
125
126 def migrator_no_finalize_removal : Flag<["-"], "no-finalize-removal">,
127   HelpText<"Do not remove finalize method in gc mode">;
128
129 //===----------------------------------------------------------------------===//
130 // CodeGen Options
131 //===----------------------------------------------------------------------===//
132
133 let Flags = [CC1Option, CC1AsOption, NoDriverOption] in {
134
135 def fdebug_compilation_dir : Separate<["-"], "fdebug-compilation-dir">,
136   HelpText<"The compilation directory to embed in the debug info.">;
137 def dwarf_debug_flags : Separate<["-"], "dwarf-debug-flags">,
138   HelpText<"The string to embed in the Dwarf debug flags record.">;
139 def mno_exec_stack : Flag<["-"], "mnoexecstack">,
140   HelpText<"Mark the file as not needing an executable stack">;
141 def massembler_fatal_warnings : Flag<["-"], "massembler-fatal-warnings">,
142   HelpText<"Make assembler warnings fatal">;
143 def compress_debug_sections : Flag<["-"], "compress-debug-sections">,
144     HelpText<"Compress DWARF debug sections using zlib">;
145 def msave_temp_labels : Flag<["-"], "msave-temp-labels">,
146   HelpText<"Save temporary labels in the symbol table. "
147            "Note this may change .s semantics and shouldn't generally be used "
148            "on compiler-generated code.">;
149
150 }
151
152 def disable_llvm_optzns : Flag<["-"], "disable-llvm-optzns">,
153   HelpText<"Don't run LLVM optimization passes">;
154 def disable_llvm_verifier : Flag<["-"], "disable-llvm-verifier">,
155   HelpText<"Don't run the LLVM IR verifier pass">;
156 def disable_red_zone : Flag<["-"], "disable-red-zone">,
157   HelpText<"Do not emit code that uses the red zone.">;
158 def dwarf_column_info : Flag<["-"], "dwarf-column-info">,
159   HelpText<"Turn on column location information.">;
160 def split_dwarf : Flag<["-"], "split-dwarf">,
161   HelpText<"Split out the dwarf .dwo sections">;
162 def gnu_pubnames : Flag<["-"], "gnu-pubnames">,
163   HelpText<"Emit newer GNU style pubnames">;
164 def arange_sections : Flag<["-"], "arange_sections">,
165   HelpText<"Emit DWARF .debug_arange sections">;
166 def fforbid_guard_variables : Flag<["-"], "fforbid-guard-variables">,
167   HelpText<"Emit an error if a C++ static local initializer would need a guard variable">;
168 def no_implicit_float : Flag<["-"], "no-implicit-float">,
169   HelpText<"Don't generate implicit floating point instructions">;
170 def fdump_vtable_layouts : Flag<["-"], "fdump-vtable-layouts">,
171   HelpText<"Dump the layouts of all vtables that will be emitted in a translation unit">;
172 def fmerge_functions : Flag<["-"], "fmerge-functions">,
173   HelpText<"Permit merging of identical functions when optimizing.">;
174 def femit_coverage_notes : Flag<["-"], "femit-coverage-notes">,
175   HelpText<"Emit a gcov coverage notes file when compiling.">;
176 def femit_coverage_data: Flag<["-"], "femit-coverage-data">,
177   HelpText<"Instrument the program to emit gcov coverage data when run.">;
178 def coverage_file : Separate<["-"], "coverage-file">,
179   HelpText<"Emit coverage data to this filename. The extension will be replaced.">;
180 def coverage_file_EQ : Joined<["-"], "coverage-file=">, Alias<coverage_file>;
181 def coverage_cfg_checksum : Flag<["-"], "coverage-cfg-checksum">,
182   HelpText<"Emit CFG checksum for functions in .gcno files.">;
183 def coverage_no_function_names_in_data : Flag<["-"], "coverage-no-function-names-in-data">,
184   HelpText<"Emit function names in .gcda files.">;
185 def coverage_version_EQ : Joined<["-"], "coverage-version=">,
186   HelpText<"Four-byte version string for gcov files.">;
187 def test_coverage : Flag<["-"], "test-coverage">,
188   HelpText<"Do not generate coverage files or remove coverage changes from IR">;
189 def dump_coverage_mapping : Flag<["-"], "dump-coverage-mapping">,
190   HelpText<"Dump the coverage mapping records, for testing">;
191 def fuse_register_sized_bitfield_access: Flag<["-"], "fuse-register-sized-bitfield-access">,
192   HelpText<"Use register sized accesses to bit-fields, when possible.">;
193 def relaxed_aliasing : Flag<["-"], "relaxed-aliasing">,
194   HelpText<"Turn off Type Based Alias Analysis">;
195 def no_struct_path_tbaa : Flag<["-"], "no-struct-path-tbaa">,
196   HelpText<"Turn off struct-path aware Type Based Alias Analysis">;
197 def masm_verbose : Flag<["-"], "masm-verbose">,
198   HelpText<"Generate verbose assembly output">;
199 def mcode_model : Separate<["-"], "mcode-model">,
200   HelpText<"The code model to use">;
201 def mdebug_pass : Separate<["-"], "mdebug-pass">,
202   HelpText<"Enable additional debug output">;
203 def mdisable_fp_elim : Flag<["-"], "mdisable-fp-elim">,
204   HelpText<"Disable frame pointer elimination optimization">;
205 def mdisable_tail_calls : Flag<["-"], "mdisable-tail-calls">,
206   HelpText<"Disable tail call optimization, keeping the call stack accurate">;
207 def menable_no_infinities : Flag<["-"], "menable-no-infs">,
208   HelpText<"Allow optimization to assume there are no infinities.">;
209 def menable_no_nans : Flag<["-"], "menable-no-nans">,
210   HelpText<"Allow optimization to assume there are no NaNs.">;
211 def menable_unsafe_fp_math : Flag<["-"], "menable-unsafe-fp-math">,
212   HelpText<"Allow unsafe floating-point math optimizations which may decrease "
213            "precision">;
214 def mfloat_abi : Separate<["-"], "mfloat-abi">,
215   HelpText<"The float ABI to use">;
216 def mlimit_float_precision : Separate<["-"], "mlimit-float-precision">,
217   HelpText<"Limit float precision to the given value">;
218 def split_stacks : Flag<["-"], "split-stacks">,
219   HelpText<"Try to use a split stack if possible.">;
220 def mno_zero_initialized_in_bss : Flag<["-"], "mno-zero-initialized-in-bss">,
221   HelpText<"Do not put zero initialized data in the BSS">;
222 def backend_option : Separate<["-"], "backend-option">,
223   HelpText<"Additional arguments to forward to LLVM backend (during code gen)">;
224 def mregparm : Separate<["-"], "mregparm">,
225   HelpText<"Limit the number of registers available for integer arguments">;
226 def mrelocation_model : Separate<["-"], "mrelocation-model">,
227   HelpText<"The relocation model to use">;
228 def munwind_tables : Flag<["-"], "munwind-tables">,
229   HelpText<"Generate unwinding tables for all functions">;
230 def mconstructor_aliases : Flag<["-"], "mconstructor-aliases">,
231   HelpText<"Emit complete constructors and destructors as aliases when possible">;
232 def mlink_bitcode_file : Separate<["-"], "mlink-bitcode-file">,
233   HelpText<"Link the given bitcode file before performing optimizations.">;
234 def vectorize_loops : Flag<["-"], "vectorize-loops">,
235   HelpText<"Run the Loop vectorization passes">;
236 def vectorize_slp : Flag<["-"], "vectorize-slp">,
237   HelpText<"Run the SLP vectorization passes">;
238 def vectorize_slp_aggressive : Flag<["-"], "vectorize-slp-aggressive">,
239   HelpText<"Run the BB vectorization passes">;
240 def dependent_lib : Joined<["--"], "dependent-lib=">,
241   HelpText<"Add dependent library">;
242
243 //===----------------------------------------------------------------------===//
244 // Dependency Output Options
245 //===----------------------------------------------------------------------===//
246
247 def sys_header_deps : Flag<["-"], "sys-header-deps">,
248   HelpText<"Include system headers in dependency output">;
249 def module_file_deps : Flag<["-"], "module-file-deps">,
250   HelpText<"Include module files in dependency output">;
251 def header_include_file : Separate<["-"], "header-include-file">,
252   HelpText<"Filename (or -) to write header include output to">;
253 def show_includes : Flag<["--"], "show-includes">,
254   HelpText<"Print cl.exe style /showIncludes to stdout">;
255
256 //===----------------------------------------------------------------------===//
257 // Diagnostic Options
258 //===----------------------------------------------------------------------===//
259
260 def diagnostic_log_file : Separate<["-"], "diagnostic-log-file">,
261   HelpText<"Filename (or -) to log diagnostics to">;
262 def diagnostic_serialized_file : Separate<["-"], "serialize-diagnostic-file">,
263   MetaVarName<"<filename>">,
264   HelpText<"File for serializing diagnostics in a binary format">;
265
266 def fdiagnostics_format : Separate<["-"], "fdiagnostics-format">,
267   HelpText<"Change diagnostic formatting to match IDE and command line tools">;
268 def fdiagnostics_show_category : Separate<["-"], "fdiagnostics-show-category">,
269   HelpText<"Print diagnostic category">;
270 def fno_diagnostics_use_presumed_location : Flag<["-"], "fno-diagnostics-use-presumed-location">,
271   HelpText<"Ignore #line directives when displaying diagnostic locations">;
272 def ftabstop : Separate<["-"], "ftabstop">, MetaVarName<"<N>">,
273   HelpText<"Set the tab stop distance.">;
274 def ferror_limit : Separate<["-"], "ferror-limit">, MetaVarName<"<N>">,
275   HelpText<"Set the maximum number of errors to emit before stopping (0 = no limit).">;
276 def fmacro_backtrace_limit : Separate<["-"], "fmacro-backtrace-limit">, MetaVarName<"<N>">,
277   HelpText<"Set the maximum number of entries to print in a macro expansion backtrace (0 = no limit).">;
278 def ftemplate_backtrace_limit : Separate<["-"], "ftemplate-backtrace-limit">, MetaVarName<"<N>">,
279   HelpText<"Set the maximum number of entries to print in a template instantiation backtrace (0 = no limit).">;
280 def fconstexpr_backtrace_limit : Separate<["-"], "fconstexpr-backtrace-limit">, MetaVarName<"<N>">,
281   HelpText<"Set the maximum number of entries to print in a constexpr evaluation backtrace (0 = no limit).">;
282 def fspell_checking_limit : Separate<["-"], "fspell-checking-limit">, MetaVarName<"<N>">,
283   HelpText<"Set the maximum number of times to perform spell checking on unrecognized identifiers (0 = no limit).">;
284 def fmessage_length : Separate<["-"], "fmessage-length">, MetaVarName<"<N>">,
285   HelpText<"Format message diagnostics so that they fit within N columns or fewer, when possible.">;
286 def verify : Flag<["-"], "verify">,
287   HelpText<"Verify diagnostic output using comment directives">;
288 def Wno_rewrite_macros : Flag<["-"], "Wno-rewrite-macros">,
289   HelpText<"Silence ObjC rewriting warnings">;
290
291 //===----------------------------------------------------------------------===//
292 // Frontend Options
293 //===----------------------------------------------------------------------===//
294
295 // This isn't normally used, it is just here so we can parse a
296 // CompilerInvocation out of a driver-derived argument vector.
297 def cc1 : Flag<["-"], "cc1">;
298 def cc1as : Flag<["-"], "cc1as">;
299
300 def ast_merge : Separate<["-"], "ast-merge">,
301   MetaVarName<"<ast file>">,
302   HelpText<"Merge the given AST file into the translation unit being compiled.">;
303 def code_completion_at : Separate<["-"], "code-completion-at">,
304   MetaVarName<"<file>:<line>:<column>">,
305   HelpText<"Dump code-completion information at a location">;
306 def remap_file : Separate<["-"], "remap-file">,
307   MetaVarName<"<from>;<to>">,
308   HelpText<"Replace the contents of the <from> file with the contents of the <to> file">;
309 def code_completion_at_EQ : Joined<["-"], "code-completion-at=">,
310   Alias<code_completion_at>;
311 def code_completion_macros : Flag<["-"], "code-completion-macros">,
312   HelpText<"Include macros in code-completion results">;
313 def code_completion_patterns : Flag<["-"], "code-completion-patterns">,
314   HelpText<"Include code patterns in code-completion results">;
315 def no_code_completion_globals : Flag<["-"], "no-code-completion-globals">,
316   HelpText<"Do not include global declarations in code-completion results.">;
317 def code_completion_brief_comments : Flag<["-"], "code-completion-brief-comments">,
318   HelpText<"Include brief documentation comments in code-completion results.">;
319 def disable_free : Flag<["-"], "disable-free">,
320   HelpText<"Disable freeing of memory on exit">;
321 def load : Separate<["-"], "load">, MetaVarName<"<dsopath>">,
322   HelpText<"Load the named plugin (dynamic shared object)">;
323 def plugin : Separate<["-"], "plugin">, MetaVarName<"<name>">,
324   HelpText<"Use the named plugin action instead of the default action (use \"help\" to list available options)">;
325 def plugin_arg : JoinedAndSeparate<["-"], "plugin-arg-">,
326     MetaVarName<"<name> <arg>">,
327     HelpText<"Pass <arg> to plugin <name>">;
328 def add_plugin : Separate<["-"], "add-plugin">, MetaVarName<"<name>">,
329   HelpText<"Use the named plugin action in addition to the default action">;
330 def ast_dump_filter : Separate<["-"], "ast-dump-filter">,
331   MetaVarName<"<dump_filter>">,
332   HelpText<"Use with -ast-dump or -ast-print to dump/print only AST declaration"
333            " nodes having a certain substring in a qualified name. Use"
334            " -ast-list to list all filterable declaration node names.">;
335 def fno_modules_global_index : Flag<["-"], "fno-modules-global-index">,
336   HelpText<"Do not automatically generate or update the global module index">;
337 def fno_modules_error_recovery : Flag<["-"], "fno-modules-error-recovery">,
338   HelpText<"Do not automatically import modules for error recovery">;
339 def fmodule_implementation_of : Separate<["-"], "fmodule-implementation-of">,
340   MetaVarName<"<name>">,
341   HelpText<"Specify the name of the module whose implementation file this is">;
342 def fmodule_map_file_home_is_cwd : Flag<["-"], "fmodule-map-file-home-is-cwd">,
343   HelpText<"Use the current working directory as the home directory of "
344            "module maps specified by -fmodule-map-file=<FILE>">;
345
346 let Group = Action_Group in {
347
348 def Eonly : Flag<["-"], "Eonly">,
349   HelpText<"Just run preprocessor, no output (for timings)">;
350 def dump_raw_tokens : Flag<["-"], "dump-raw-tokens">,
351   HelpText<"Lex file in raw mode and dump raw tokens">;
352 def analyze : Flag<["-"], "analyze">,
353   HelpText<"Run static analysis engine">;
354 def dump_tokens : Flag<["-"], "dump-tokens">,
355   HelpText<"Run preprocessor, dump internal rep of tokens">;
356 def init_only : Flag<["-"], "init-only">,
357   HelpText<"Only execute frontend initialization">;
358 def fixit : Flag<["-"], "fixit">,
359   HelpText<"Apply fix-it advice to the input source">;
360 def fixit_EQ : Joined<["-"], "fixit=">,
361   HelpText<"Apply fix-it advice creating a file with the given suffix">;
362 def print_preamble : Flag<["-"], "print-preamble">,
363   HelpText<"Print the \"preamble\" of a file, which is a candidate for implicit"
364            " precompiled headers.">;
365 def emit_html : Flag<["-"], "emit-html">,
366   HelpText<"Output input source as HTML">;
367 def ast_print : Flag<["-"], "ast-print">,
368   HelpText<"Build ASTs and then pretty-print them">;
369 def ast_list : Flag<["-"], "ast-list">,
370   HelpText<"Build ASTs and print the list of declaration node qualified names">;
371 def ast_dump : Flag<["-"], "ast-dump">,
372   HelpText<"Build ASTs and then debug dump them">;
373 def ast_dump_lookups : Flag<["-"], "ast-dump-lookups">,
374   HelpText<"Build ASTs and then debug dump their name lookup tables">;
375 def ast_view : Flag<["-"], "ast-view">,
376   HelpText<"Build ASTs and view them with GraphViz">;
377 def print_decl_contexts : Flag<["-"], "print-decl-contexts">,
378   HelpText<"Print DeclContexts and their Decls">;
379 def emit_module : Flag<["-"], "emit-module">,
380   HelpText<"Generate pre-compiled module file from a module map">;
381 def emit_pth : Flag<["-"], "emit-pth">,
382   HelpText<"Generate pre-tokenized header file">;
383 def emit_pch : Flag<["-"], "emit-pch">,
384   HelpText<"Generate pre-compiled header file">;
385 def emit_llvm_bc : Flag<["-"], "emit-llvm-bc">,
386   HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
387 def emit_llvm_only : Flag<["-"], "emit-llvm-only">,
388   HelpText<"Build ASTs and convert to LLVM, discarding output">;
389 def emit_codegen_only : Flag<["-"], "emit-codegen-only">,
390   HelpText<"Generate machine code, but discard output">;
391 def emit_obj : Flag<["-"], "emit-obj">,
392   HelpText<"Emit native object files">;
393 def rewrite_test : Flag<["-"], "rewrite-test">,
394   HelpText<"Rewriter playground">;
395 def rewrite_macros : Flag<["-"], "rewrite-macros">,
396   HelpText<"Expand macros without full preprocessing">;
397 def migrate : Flag<["-"], "migrate">,
398   HelpText<"Migrate source code">;
399 }
400
401 def mt_migrate_directory : Separate<["-"], "mt-migrate-directory">,
402   HelpText<"Directory for temporary files produced during ARC or ObjC migration">;
403 def arcmt_check : Flag<["-"], "arcmt-check">,
404   HelpText<"Check for ARC migration issues that need manual handling">;
405 def arcmt_modify : Flag<["-"], "arcmt-modify">,
406   HelpText<"Apply modifications to files to conform to ARC">;
407 def arcmt_migrate : Flag<["-"], "arcmt-migrate">,
408   HelpText<"Apply modifications and produces temporary files that conform to ARC">;
409
410 def print_stats : Flag<["-"], "print-stats">,
411   HelpText<"Print performance metrics and statistics">;
412 def fdump_record_layouts : Flag<["-"], "fdump-record-layouts">,
413   HelpText<"Dump record layout information">;
414 def fdump_record_layouts_simple : Flag<["-"], "fdump-record-layouts-simple">,
415   HelpText<"Dump record layout information in a simple form used for testing">;
416 def fix_what_you_can : Flag<["-"], "fix-what-you-can">,
417   HelpText<"Apply fix-it advice even in the presence of unfixable errors">;
418 def fix_only_warnings : Flag<["-"], "fix-only-warnings">,
419   HelpText<"Apply fix-it advice only for warnings, not errors">;
420 def fixit_recompile : Flag<["-"], "fixit-recompile">,
421   HelpText<"Apply fix-it changes and recompile">;
422 def fixit_to_temp : Flag<["-"], "fixit-to-temporary">,
423   HelpText<"Apply fix-it changes to temporary files">;
424
425 def foverride_record_layout_EQ : Joined<["-"], "foverride-record-layout=">,
426   HelpText<"Override record layouts with those in the given file">;
427   
428 //===----------------------------------------------------------------------===//
429 // Language Options
430 //===----------------------------------------------------------------------===//
431
432 let Flags = [CC1Option, CC1AsOption, NoDriverOption] in {
433
434 def version : Flag<["-"], "version">,
435   HelpText<"Print the compiler version">;
436 def main_file_name : Separate<["-"], "main-file-name">,
437   HelpText<"Main file name to use for debug info">;
438
439 }
440
441 def fblocks_runtime_optional : Flag<["-"], "fblocks-runtime-optional">,
442   HelpText<"Weakly link in the blocks runtime">;
443 def fsjlj_exceptions : Flag<["-"], "fsjlj-exceptions">,
444   HelpText<"Use SjLj style exceptions">;
445 def split_dwarf_file : Separate<["-"], "split-dwarf-file">,
446   HelpText<"File name to use for split dwarf debug info output">;
447 def fno_wchar : Flag<["-"], "fno-wchar">,
448   HelpText<"Disable C++ builtin type wchar_t">;
449 def fconstant_string_class : Separate<["-"], "fconstant-string-class">,
450   MetaVarName<"<class name>">,
451   HelpText<"Specify the class to use for constant Objective-C string objects.">;
452 def fobjc_arc_cxxlib_EQ : Joined<["-"], "fobjc-arc-cxxlib=">,
453   HelpText<"Objective-C++ Automatic Reference Counting standard library kind">;
454 def fobjc_runtime_has_weak : Flag<["-"], "fobjc-runtime-has-weak">,
455   HelpText<"The target Objective-C runtime supports ARC weak operations">;
456 def fobjc_dispatch_method_EQ : Joined<["-"], "fobjc-dispatch-method=">,
457   HelpText<"Objective-C dispatch method to use">;
458 def disable_objc_default_synthesize_properties : Flag<["-"], "disable-objc-default-synthesize-properties">,
459   HelpText<"disable the default synthesis of Objective-C properties">;
460 def fencode_extended_block_signature : Flag<["-"], "fencode-extended-block-signature">,
461   HelpText<"enable extended encoding of block type signature">;
462 def pic_level : Separate<["-"], "pic-level">,
463   HelpText<"Value for __PIC__">;
464 def pie_level : Separate<["-"], "pie-level">,
465   HelpText<"Value for __PIE__">;
466 def fno_validate_pch : Flag<["-"], "fno-validate-pch">,
467   HelpText<"Disable validation of precompiled headers">;
468 def dump_deserialized_pch_decls : Flag<["-"], "dump-deserialized-decls">,
469   HelpText<"Dump declarations that are deserialized from PCH, for testing">;
470 def error_on_deserialized_pch_decl : Separate<["-"], "error-on-deserialized-decl">,
471   HelpText<"Emit error if a specific declaration is deserialized from PCH, for testing">;
472 def error_on_deserialized_pch_decl_EQ : Joined<["-"], "error-on-deserialized-decl=">,
473   Alias<error_on_deserialized_pch_decl>;
474 def static_define : Flag<["-"], "static-define">,
475   HelpText<"Should __STATIC__ be defined">;
476 def stack_protector : Separate<["-"], "stack-protector">,
477   HelpText<"Enable stack protectors">;
478 def stack_protector_buffer_size : Separate<["-"], "stack-protector-buffer-size">,
479   HelpText<"Lower bound for a buffer to be considered for stack protection">;
480 def fvisibility : Separate<["-"], "fvisibility">,
481   HelpText<"Default type and symbol visibility">;
482 def ftype_visibility : Separate<["-"], "ftype-visibility">,
483   HelpText<"Default type visibility">;
484 def ftemplate_depth : Separate<["-"], "ftemplate-depth">,
485   HelpText<"Maximum depth of recursive template instantiation">;
486 def foperator_arrow_depth : Separate<["-"], "foperator-arrow-depth">,
487   HelpText<"Maximum number of 'operator->'s to call for a member access">;
488 def fconstexpr_depth : Separate<["-"], "fconstexpr-depth">,
489   HelpText<"Maximum depth of recursive constexpr function calls">;
490 def fconstexpr_steps : Separate<["-"], "fconstexpr-steps">,
491   HelpText<"Maximum number of steps in constexpr function evaluation">;
492 def fbracket_depth : Separate<["-"], "fbracket-depth">,
493   HelpText<"Maximum nesting level for parentheses, brackets, and braces">;
494 def fconst_strings : Flag<["-"], "fconst-strings">,
495   HelpText<"Use a const qualified type for string literals in C and ObjC">;
496 def fno_const_strings : Flag<["-"], "fno-const-strings">,
497   HelpText<"Don't use a const qualified type for string literals in C and ObjC">;
498 def fno_bitfield_type_align : Flag<["-"], "fno-bitfield-type-align">,
499   HelpText<"Ignore bit-field types when aligning structures">;
500 def ffake_address_space_map : Flag<["-"], "ffake-address-space-map">,
501   HelpText<"Use a fake address space map; OpenCL testing purposes only">;
502 def faddress_space_map_mangling_EQ : Joined<["-"], "faddress-space-map-mangling=">, MetaVarName<"<yes|no|target>">,
503   HelpText<"Set the mode for address space map based mangling; OpenCL testing purposes only">;
504 def funknown_anytype : Flag<["-"], "funknown-anytype">,
505   HelpText<"Enable parser support for the __unknown_anytype type; for testing purposes only">;
506 def fdebugger_support : Flag<["-"], "fdebugger-support">,
507   HelpText<"Enable special debugger support behavior">;
508 def fdebugger_cast_result_to_id : Flag<["-"], "fdebugger-cast-result-to-id">,
509   HelpText<"Enable casting unknown expression results to id">;
510 def fdebugger_objc_literal : Flag<["-"], "fdebugger-objc-literal">,
511   HelpText<"Enable special debugger support for Objective-C subscripting and literals">;
512 def fdeprecated_macro : Flag<["-"], "fdeprecated-macro">,
513   HelpText<"Defines the __DEPRECATED macro">;
514 def fno_deprecated_macro : Flag<["-"], "fno-deprecated-macro">,
515   HelpText<"Undefines the __DEPRECATED macro">;
516 def fsized_deallocation : Flag<["-"], "fsized-deallocation">,
517   HelpText<"Enable C++14 sized global deallocation functions">;
518 def fobjc_subscripting_legacy_runtime : Flag<["-"], "fobjc-subscripting-legacy-runtime">,
519   HelpText<"Allow Objective-C array and dictionary subscripting in legacy runtime">;
520 def vtordisp_mode_EQ : Joined<["-"], "vtordisp-mode=">,
521   HelpText<"Control vtordisp placement on win32 targets">;
522 def fno_rtti_data : Flag<["-"], "fno-rtti-data">,
523   HelpText<"Control emission of RTTI data">;
524 def fallow_half_arguments_and_returns : Flag<["-"], "fallow-half-arguments-and-returns">,
525   HelpText<"Allow function arguments and returns of type half">;
526
527 //===----------------------------------------------------------------------===//
528 // Header Search Options
529 //===----------------------------------------------------------------------===//
530
531 def nostdsysteminc : Flag<["-"], "nostdsysteminc">,
532   HelpText<"Disable standard system #include directories">;
533 def fdisable_module_hash : Flag<["-"], "fdisable-module-hash">,
534   HelpText<"Disable the module hash">;
535 def c_isystem : JoinedOrSeparate<["-"], "c-isystem">, MetaVarName<"<directory>">,
536   HelpText<"Add directory to the C SYSTEM include search path">;
537 def objc_isystem : JoinedOrSeparate<["-"], "objc-isystem">,
538   MetaVarName<"<directory>">,
539   HelpText<"Add directory to the ObjC SYSTEM include search path">;
540 def objcxx_isystem : JoinedOrSeparate<["-"], "objcxx-isystem">,
541   MetaVarName<"<directory>">,
542   HelpText<"Add directory to the ObjC++ SYSTEM include search path">;
543 def internal_isystem : JoinedOrSeparate<["-"], "internal-isystem">,
544   MetaVarName<"<directory>">,
545   HelpText<"Add directory to the internal system include search path; these "
546            "are assumed to not be user-provided and are used to model system "
547            "and standard headers' paths.">;
548 def internal_externc_isystem : JoinedOrSeparate<["-"], "internal-externc-isystem">,
549   MetaVarName<"<directory>">,
550   HelpText<"Add directory to the internal system include search path with "
551            "implicit extern \"C\" semantics; these are assumed to not be "
552            "user-provided and are used to model system and standard headers' "
553            "paths.">;
554
555 //===----------------------------------------------------------------------===//
556 // Preprocessor Options
557 //===----------------------------------------------------------------------===//
558
559 def include_pth : Separate<["-"], "include-pth">, MetaVarName<"<file>">,
560   HelpText<"Include file before parsing">;
561 def chain_include : Separate<["-"], "chain-include">, MetaVarName<"<file>">,
562   HelpText<"Include and chain a header file after turning it into PCH">;
563 def preamble_bytes_EQ : Joined<["-"], "preamble-bytes=">,
564   HelpText<"Assume that the precompiled header is a precompiled preamble "
565            "covering the first N bytes of the main file">;
566 def token_cache : Separate<["-"], "token-cache">, MetaVarName<"<path>">,
567   HelpText<"Use specified token cache file">;
568 def detailed_preprocessing_record : Flag<["-"], "detailed-preprocessing-record">,
569   HelpText<"include a detailed record of preprocessing actions">;
570
571 //===----------------------------------------------------------------------===//
572 // OpenCL Options
573 //===----------------------------------------------------------------------===//
574
575 def cl_opt_disable : Flag<["-"], "cl-opt-disable">,
576   HelpText<"OpenCL only. This option disables all optimizations. The default is optimizations are enabled.">;
577 def cl_single_precision_constant : Flag<["-"], "cl-single-precision-constant">,
578   HelpText<"OpenCL only. Treat double precision floating-point constant as single precision constant.">;
579 def cl_finite_math_only : Flag<["-"], "cl-finite-math-only">,
580   HelpText<"OpenCL only. Allow floating-point optimizations that assume arguments and results are not NaNs or +-Inf.">;
581 def cl_kernel_arg_info : Flag<["-"], "cl-kernel-arg-info">,
582   HelpText<"OpenCL only. Generate kernel argument metadata.">;
583 def cl_no_signed_zeros : Flag<["-"], "cl-no-signed-zeros">,
584   HelpText<"OpenCL only. Allow optimizations to ignore the signedness of the floating-point zero.">;
585 def cl_unsafe_math_optimizations : Flag<["-"], "cl-unsafe-math-optimizations">,
586   HelpText<"OpenCL only. Allow unsafe floating-point optimizations.  Also implies -cl-no-signed-zeros and -cl-mad-enable">;
587 def cl_fast_relaxed_math : Flag<["-"], "cl-fast-relaxed-math">,
588   HelpText<"OpenCL only. Sets -cl-finite-math-only and -cl-unsafe-math-optimizations, and defines __FAST_RELAXED_MATH__">;
589 def cl_mad_enable : Flag<["-"], "cl-mad-enable">,
590   HelpText<"OpenCL only. Enable less precise MAD instructions to be generated.">;
591 def cl_std_EQ : Joined<["-"], "cl-std=">,
592   HelpText<"OpenCL language standard to compile for">;
593 def cl_denorms_are_zero : Flag<["-"], "cl-denorms-are-zero">,
594   HelpText<"OpenCL only. Allow denormals to be flushed to zero">;
595
596 //===----------------------------------------------------------------------===//
597 // CUDA Options
598 //===----------------------------------------------------------------------===//
599
600 def fcuda_is_device : Flag<["-"], "fcuda-is-device">,
601   HelpText<"Generate code for CUDA device">;
602
603 } // let Flags = [CC1Option]
604
605
606 //===----------------------------------------------------------------------===//
607 // cc1as-only Options
608 //===----------------------------------------------------------------------===//
609
610 let Flags = [CC1AsOption, NoDriverOption] in {
611
612 // Language Options
613 def n : Flag<["-"], "n">,
614   HelpText<"Don't automatically start assembly file with a text section">;
615
616 // Frontend Options
617 def filetype : Separate<["-"], "filetype">,
618     HelpText<"Specify the output file type ('asm', 'null', or 'obj')">;
619
620 // Transliterate Options
621 def output_asm_variant : Separate<["-"], "output-asm-variant">,
622     HelpText<"Select the asm variant index to use for output">;
623 def show_encoding : Flag<["-"], "show-encoding">,
624     HelpText<"Show instruction encoding information in transliterate mode">;
625 def show_inst : Flag<["-"], "show-inst">,
626     HelpText<"Show internal instruction representation in transliterate mode">;
627
628 // Assemble Options
629 def dwarf_debug_producer : Separate<["-"], "dwarf-debug-producer">,
630   HelpText<"The string to embed in the Dwarf debug AT_producer record.">;
631
632 } // let Flags = [CC1AsOption]