blob: b7db4b6d9429abd924994005ce2954bc6b6cbfd8 [file] [log] [blame]
Daniel Dunbar8adfcff2009-11-19 07:19:04 +00001//===--- 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.
11//
12//===----------------------------------------------------------------------===//
13
14// Include the common option parsing interfaces.
15include "OptParser.td"
16
Daniel Dunbar33a33d82009-11-24 00:54:16 +000017//===----------------------------------------------------------------------===//
Daniel Dunbar8adfcff2009-11-19 07:19:04 +000018// Target Options
Daniel Dunbar33a33d82009-11-24 00:54:16 +000019//===----------------------------------------------------------------------===//
Daniel Dunbar8adfcff2009-11-19 07:19:04 +000020
21def target_abi : Separate<"-target-abi">,
22 HelpText<"Target a particular ABI type">;
Daniel Dunbar31db76c2009-11-20 01:46:44 +000023def mcpu : Separate<"-mcpu">,
Daniel Dunbara31100e2009-11-20 22:21:52 +000024 HelpText<"Target a specific cpu type ('-mcpu help' for details)">;
Daniel Dunbar31db76c2009-11-20 01:46:44 +000025def target_feature : Separate<"-target-feature">,
Daniel Dunbar8adfcff2009-11-19 07:19:04 +000026 HelpText<"Target specific attributes">;
Daniel Dunbar31db76c2009-11-20 01:46:44 +000027def triple : Separate<"-triple">,
Daniel Dunbar8adfcff2009-11-19 07:19:04 +000028 HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
Daniel Dunbarce6bf1e2009-11-29 09:32:20 +000029def triple_EQ : Joined<"-triple=">, Alias<triple>;
Daniel Dunbar50a44872009-11-20 17:23:30 +000030
Daniel Dunbar33a33d82009-11-24 00:54:16 +000031//===----------------------------------------------------------------------===//
Daniel Dunbare2814d82009-11-22 22:08:20 +000032// Analyzer Options
Daniel Dunbar33a33d82009-11-24 00:54:16 +000033//===----------------------------------------------------------------------===//
Daniel Dunbare2814d82009-11-22 22:08:20 +000034
35def analysis_CFGDump : Flag<"-cfg-dump">,
36 HelpText<"Display Control-Flow Graphs">;
37def analysis_CFGView : Flag<"-cfg-view">,
38 HelpText<"View Control-Flow Graphs using GraphViz">;
39def analysis_DisplayLiveVariables : Flag<"-dump-live-variables">,
40 HelpText<"Print results of live variable analysis">;
41def analysis_SecuritySyntacticChecks : Flag<"-warn-security-syntactic">,
42 HelpText<"Perform quick security checks that require no data flow">;
43def analysis_WarnDeadStores : Flag<"-warn-dead-stores">,
44 HelpText<"Warn about stores to dead variables">;
45def analysis_WarnUninitVals : Flag<"-warn-uninit-values">,
46 HelpText<"Warn about uses of uninitialized variables">;
47def analysis_WarnObjCMethSigs : Flag<"-warn-objc-methodsigs">,
48 HelpText<"Warn about Objective-C method signatures with type incompatibilities">;
49def analysis_WarnObjCDealloc : Flag<"-warn-objc-missing-dealloc">,
50 HelpText<"Warn about Objective-C classes that lack a correct implementation of -dealloc">;
51def analysis_WarnObjCUnusedIvars : Flag<"-warn-objc-unused-ivars">,
52 HelpText<"Warn about private ivars that are never used">;
53def analysis_CheckerCFRef : Flag<"-checker-cfref">,
54 HelpText<"Run the [Core] Foundation reference count checker">;
55def analysis_WarnSizeofPointer : Flag<"-warn-sizeof-pointer">,
56 HelpText<"Warn about unintended use of sizeof() on pointer expressions">;
57def analysis_InlineCall : Flag<"-inline-call">,
58 HelpText<"Experimental transfer function inling callees when its definition is available.">;
59
60def analyzer_store : Separate<"-analyzer-store">,
61 HelpText<"Source Code Analysis - Abstract Memory Store Models">;
62def analyzer_store_EQ : Joined<"-analyzer-store=">, Alias<analyzer_store>;
63
64def analyzer_constraints : Separate<"-analyzer-constraints">,
65 HelpText<"Source Code Analysis - Symbolic Constraint Engines">;
66def analyzer_constraints_EQ : Joined<"-analyzer-constraints=">,
67 Alias<analyzer_constraints>;
68
69def analyzer_output : Separate<"-analyzer-output">,
70 HelpText<"Source Code Analysis - Output Options">;
71def analyzer_output_EQ : Joined<"-analyzer-output=">,
72 Alias<analyzer_output>;
73
74def analyzer_opt_analyze_headers : Flag<"-analyzer-opt-analyze-headers">,
75 HelpText<"Force the static analyzer to analyze functions defined in header files">;
76def analyzer_display_progress : Flag<"-analyzer-display-progress">,
77 HelpText<"Emit verbose output about the analyzer's progress">;
78def analyzer_experimental_checks : Flag<"-analyzer-experimental-checks">,
79 HelpText<"Use experimental path-sensitive checks">;
80def analyzer_experimental_internal_checks :
81 Flag<"-analyzer-experimental-internal-checks">,
82 HelpText<"Use new default path-sensitive checks currently in testing">;
83def analyze_function : Separate<"-analyze-function">,
84 HelpText<"Run analysis on specific function">;
85def analyze_function_EQ : Joined<"-analyze-function=">, Alias<analyze_function>;
86def analyzer_eagerly_assume : Flag<"-analyzer-eagerly-assume">,
87 HelpText<"Eagerly assume the truth/falseness of some symbolic constraints">;
88def analyzer_no_purge_dead : Flag<"-analyzer-no-purge-dead">,
89 HelpText<"Don't remove dead symbols, bindings, and constraints before processing a statement">;
90def trim_egraph : Flag<"-trim-egraph">,
91 HelpText<"Only show error-related paths in the analysis graph">;
92def analyzer_viz_egraph_graphviz : Flag<"-analyzer-viz-egraph-graphviz">,
93 HelpText<"Display exploded graph using GraphViz">;
94def analyzer_viz_egraph_ubigraph : Flag<"-analyzer-viz-egraph-ubigraph">,
95 HelpText<"Display exploded graph using Ubigraph">;
96
Daniel Dunbar33a33d82009-11-24 00:54:16 +000097//===----------------------------------------------------------------------===//
Daniel Dunbar50a44872009-11-20 17:23:30 +000098// CodeGen Options
Daniel Dunbar33a33d82009-11-24 00:54:16 +000099//===----------------------------------------------------------------------===//
Daniel Dunbar50a44872009-11-20 17:23:30 +0000100
101def disable_llvm_optzns : Flag<"-disable-llvm-optzns">,
102 HelpText<"Don't run LLVM optimization passes">;
103def disable_red_zone : Flag<"-disable-red-zone">,
104 HelpText<"Do not emit code that uses the red zone.">;
105def g : Flag<"-g">, HelpText<"Generate source level debug information">;
106def fno_common : Flag<"-fno-common">,
107 HelpText<"Compile common globals like normal definitions">;
108def no_implicit_float : Flag<"-no-implicit-float">,
109 HelpText<"Don't generate implicit floating point instructions (x86-only)">;
110def fno_merge_all_constants : Flag<"-fno-merge-all-constants">,
111 HelpText<"Disallow merging of constants.">;
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000112def masm_verbose : Flag<"-masm-verbose">,
113 HelpText<"Generate verbose assembly output">;
114def mcode_model : Separate<"-mcode-model">,
115 HelpText<"The code model to use">;
116def mdebug_pass : Separate<"-mdebug-pass">,
117 HelpText<"Enable additional debug output">;
118def mdisable_fp_elim : Flag<"-mdisable-fp-elim">,
119 HelpText<"Disable frame pointer elimination optimization">;
Daniel Dunbar3b315262009-11-30 08:42:00 +0000120def mfloat_abi : Flag<"-mfloat-abi">,
121 HelpText<"The float ABI to use">;
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000122def mlimit_float_precision : Separate<"-mlimit-float-precision">,
123 HelpText<"Limit float precision to the given value">;
124def mno_zero_initialized_in_bss : Flag<"-mno-zero-initialized-in-bss">,
125 HelpText<"Do not put zero initialized data in the BSS">;
Daniel Dunbar3b315262009-11-30 08:42:00 +0000126def msoft_float : Separate<"-msoft-float">,
127 HelpText<"Use software floating point">;
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000128def mrelocation_model : Separate<"-mrelocation-model">,
129 HelpText<"The relocation model to use">;
130def munwind_tables : Flag<"-munwind-tables">,
131 HelpText<"Generate unwinding tables for all functions">;
Daniel Dunbar50a44872009-11-20 17:23:30 +0000132def O : Joined<"-O">, HelpText<"Optimization level">;
133def Os : Flag<"-Os">, HelpText<"Optimize for size">;
Daniel Dunbar1bed0c32009-11-20 23:28:07 +0000134
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000135//===----------------------------------------------------------------------===//
Daniel Dunbar1bed0c32009-11-20 23:28:07 +0000136// Dependency Output Options
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000137//===----------------------------------------------------------------------===//
138
Daniel Dunbar1bed0c32009-11-20 23:28:07 +0000139def dependency_file : Separate<"-dependency-file">,
140 HelpText<"Filename (or -) to write dependency output to">;
141def sys_header_deps : Flag<"-sys-header-deps">,
142 HelpText<"Include system headers in dependency output">;
143def MT : Separate<"-MT">, HelpText<"Specify target for dependency">;
144def MP : Flag<"-MP">,
145 HelpText<"Create phony target for each dependency (other than main file)">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000146
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000147//===----------------------------------------------------------------------===//
Daniel Dunbar21affc02009-11-23 23:41:17 +0000148// Diagnostic Options
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000149//===----------------------------------------------------------------------===//
Daniel Dunbar21affc02009-11-23 23:41:17 +0000150
151def dump_build_information : Separate<"-dump-build-information">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000152 MetaVarName<"<filename>">,
Daniel Dunbar21affc02009-11-23 23:41:17 +0000153 HelpText<"output a dump of some build information to a file">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000154def fno_show_column : Flag<"-fno-show-column">,
155 HelpText<"Do not include column number on diagnostics">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000156def fno_show_source_location : Flag<"-fno-show-source-location">,
157 HelpText<"Do not include source location information with diagnostics">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000158def fno_caret_diagnostics : Flag<"-fno-caret-diagnostics">,
159 HelpText<"Do not include source line and caret with diagnostics">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000160def fno_diagnostics_fixit_info : Flag<"-fno-diagnostics-fixit-info">,
161 HelpText<"Do not include fixit information in diagnostics">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000162def w : Flag<"-w">, HelpText<"Suppress all warnings">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000163def pedantic : Flag<"-pedantic">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000164def pedantic_errors : Flag<"-pedantic-errors">;
165
166// This gets all -W options, including -Werror, -W[no-]system-headers, etc. The
167// driver has stripped off -Wa,foo etc. The driver has also translated -W to
168// -Wextra, so we don't need to worry about it.
169def W : Joined<"-W">;
170
171def fdiagnostics_print_source_range_info : Flag<"-fdiagnostics-print-source-range-info">,
172 HelpText<"Print source range spans in numeric form">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000173def fdiagnostics_show_option : Flag<"-fdiagnostics-show-option">,
174 HelpText<"Print diagnostic name with mappable diagnostics">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000175def fmessage_length : Separate<"-fmessage-length">, MetaVarName<"<N>">,
Daniel Dunbar21affc02009-11-23 23:41:17 +0000176 HelpText<"Format message diagnostics so that they fit within N columns or fewer, when possible.">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000177def fcolor_diagnostics : Flag<"-fcolor-diagnostics">,
178 HelpText<"Use colors in diagnostics">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000179def Wno_rewrite_macros : Flag<"-Wno-rewrite-macros">,
180 HelpText<"Silence ObjC rewriting warnings">;
Daniel Dunbar21affc02009-11-23 23:41:17 +0000181def verify : Flag<"-verify">,
182 HelpText<"Verify emitted diagnostics and warnings">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000183
184//===----------------------------------------------------------------------===//
185// Frontend Options
186//===----------------------------------------------------------------------===//
187
188def code_completion_at : Separate<"-code-completion-at">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000189 MetaVarName<"<file>:<line>:<column>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000190 HelpText<"Dump code-completion information at a location">;
Daniel Dunbare14b5f52009-12-03 05:11:16 +0000191def remap_file : Separate<"-remap-file">,
192 MetaVarName<"<from>;<to>">,
193 HelpText<"Replace the contents of the <from> file with the contents of the <to> file">;
Daniel Dunbarce6bf1e2009-11-29 09:32:20 +0000194def code_completion_at_EQ : Joined<"-code-completion-at=">,
195 Alias<code_completion_at>;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000196def no_code_completion_debug_printer : Flag<"-no-code-completion-debug-printer">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000197 HelpText<"Don't use the \"debug\" code-completion print">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000198def code_completion_macros : Flag<"-code-completion-macros">,
199 HelpText<"Include macros in code-completion results">;
200def disable_free : Flag<"-disable-free">,
201 HelpText<"Disable freeing of memory on exit">;
202def empty_input_only : Flag<"-empty-input-only">,
203 HelpText<"Force running on an empty input file">;
204def x : Separate<"-x">, HelpText<"Input language type">;
205def cxx_inheritance_view : Separate<"-cxx-inheritance-view">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000206 MetaVarName<"<class name>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000207 HelpText<"View C++ inheritance for a specified class">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000208def fixit_at : Separate<"-fixit-at">, MetaVarName<"<source location>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000209 HelpText<"Perform Fix-It modifications at the given source location">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000210def o : Separate<"-o">, MetaVarName<"<path>">, HelpText<"Specify output file">;
211def load : Separate<"-load">, MetaVarName<"<dsopath>">,
Daniel Dunbarefba2272009-12-03 05:11:05 +0000212 HelpText<"Load the named plugin (dynamic shared object)">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000213def plugin : Separate<"-plugin">,
214 HelpText<"Use the named plugin action (use \"help\" to list available options)">;
215
216def Action_Group : OptionGroup<"<action group>">;
217let Group = Action_Group in {
218
219def Eonly : Flag<"-Eonly">,
220 HelpText<"Just run preprocessor, no output (for timings)">;
221def E : Flag<"-E">,
222 HelpText<"Run preprocessor, emit preprocessed file">;
223def dump_raw_tokens : Flag<"-dump-raw-tokens">,
224 HelpText<"Lex file in raw mode and dump raw tokens">;
225def analyze : Flag<"-analyze">,
226 HelpText<"Run static analysis engine">;
227def dump_tokens : Flag<"-dump-tokens">,
228 HelpText<"Run preprocessor, dump internal rep of tokens">;
229def parse_noop : Flag<"-parse-noop">,
230 HelpText<"Run parser with noop callbacks (for timings)">;
231def fsyntax_only : Flag<"-fsyntax-only">,
232 HelpText<"Run parser and perform semantic analysis">;
233def fixit : Flag<"-fixit">,
234 HelpText<"Apply fix-it advice to the input source">;
235def parse_print_callbacks : Flag<"-parse-print-callbacks">,
236 HelpText<"Run parser and print each callback invoked">;
237def emit_html : Flag<"-emit-html">,
238 HelpText<"Output input source as HTML">;
239def ast_print : Flag<"-ast-print">,
240 HelpText<"Build ASTs and then pretty-print them">;
241def ast_print_xml : Flag<"-ast-print-xml">,
242 HelpText<"Build ASTs and then print them in XML format">;
243def ast_dump : Flag<"-ast-dump">,
244 HelpText<"Build ASTs and then debug dump them">;
245def ast_view : Flag<"-ast-view">,
246 HelpText<"Build ASTs and view them with GraphViz">;
247def print_decl_contexts : Flag<"-print-decl-contexts">,
248 HelpText<"Print DeclContexts and their Decls">;
249def dump_record_layouts : Flag<"-dump-record-layouts">,
250 HelpText<"Dump record layout information">;
251def emit_pth : Flag<"-emit-pth">,
252 HelpText<"Generate pre-tokenized header file">;
253def emit_pch : Flag<"-emit-pch">,
254 HelpText<"Generate pre-compiled header file">;
255def S : Flag<"-S">,
256 HelpText<"Emit native assembly code">;
257def emit_llvm : Flag<"-emit-llvm">,
258 HelpText<"Build ASTs then convert to LLVM, emit .ll file">;
259def emit_llvm_bc : Flag<"-emit-llvm-bc">,
260 HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
261def emit_llvm_only : Flag<"-emit-llvm-only">,
262 HelpText<"Build ASTs and convert to LLVM, discarding output">;
263def rewrite_test : Flag<"-rewrite-test">,
264 HelpText<"Rewriter playground">;
265def rewrite_objc : Flag<"-rewrite-objc">,
266 HelpText<"Rewrite ObjC into C (code rewriter example)">;
267def rewrite_macros : Flag<"-rewrite-macros">,
268 HelpText<"Expand macros without full preprocessing">;
269def rewrite_blocks : Flag<"-rewrite-blocks">,
270 HelpText<"Rewrite Blocks to C">;
271
272}
273
274def relocatable_pch : Flag<"-relocatable-pch">,
275 HelpText<"Whether to build a relocatable precompiled header">;
276def print_stats : Flag<"-print-stats">,
277 HelpText<"Print performance metrics and statistics">;
278def ftime_report : Flag<"-ftime-report">,
279 HelpText<"Print the amount of time each phase of compilation takes">;
280
281//===----------------------------------------------------------------------===//
282// Language Options
283//===----------------------------------------------------------------------===//
284
285def fno_builtin : Flag<"-fno-builtin">,
286 HelpText<"Disable implicit builtin knowledge of functions">;
287def faltivec : Flag<"-faltivec">,
288 HelpText<"Enable AltiVec vector initializer syntax">;
289def faccess_control : Flag<"-faccess-control">,
290 HelpText<"Enable C++ access control">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000291def fdollars_in_identifiers : Flag<"-fdollars-in-identifiers">,
292 HelpText<"Allow '$' in identifiers">;
293def femit_all_decls : Flag<"-femit-all-decls">,
294 HelpText<"Emit all declarations, even if unused">;
295def fblocks : Flag<"-fblocks">,
296 HelpText<"enable the 'blocks' language feature">;
297def fheinous_gnu_extensions : Flag<"-fheinous-gnu-extensions">;
298def fexceptions : Flag<"-fexceptions">,
299 HelpText<"Enable support for exception handling">;
300def ffreestanding : Flag<"-ffreestanding">,
301 HelpText<"Assert that the compilation takes place in a freestanding environment">;
302def fgnu_runtime : Flag<"-fgnu-runtime">,
303 HelpText<"Generate output compatible with the standard GNU Objective-C runtime">;
Daniel Dunbarce6bf1e2009-11-29 09:32:20 +0000304def std_EQ : Joined<"-std=">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000305 HelpText<"Language standard to compile for">;
306def fms_extensions : Flag<"-fms-extensions">,
307 HelpText<"Accept some non-standard constructs used in Microsoft header files ">;
308def main_file_name : Separate<"-main-file-name">,
309 HelpText<"Main file name to use for debug info">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000310def fno_elide_constructors : Flag<"-fno-elide-constructors">,
311 HelpText<"Disable C++ copy constructor elision">;
312def fno_lax_vector_conversions : Flag<"-fno-lax-vector-conversions">,
313 HelpText<"Disallow implicit conversions between vectors with a different number of elements or different element types">;
Daniel Dunbar76743522009-11-29 02:39:08 +0000314def fno_math_errno : Flag<"-fno-math-errno">,
315 HelpText<"Don't require math functions to respect errno">;
316def fno_signed_char : Flag<"-fno-signed-char">,
317 HelpText<"Char is unsigned">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000318def fno_operator_names : Flag<"-fno-operator-names">,
319 HelpText<"Do not treat C++ operator name keywords as synonyms for operators">;
320def fconstant_string_class : Separate<"-fconstant-string-class">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000321 MetaVarName<"<class name>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000322 HelpText<"Specify the class to use for constant Objective-C string objects.">;
323def fobjc_gc : Flag<"-fobjc-gc">,
324 HelpText<"Enable Objective-C garbage collection">;
325def fobjc_gc_only : Flag<"-fobjc-gc-only">,
326 HelpText<"Use GC exclusively for Objective-C related memory management">;
327def print_ivar_layout : Flag<"-print-ivar-layout">,
328 HelpText<"Enable Objective-C Ivar layout bitmap print trace">;
329def fobjc_nonfragile_abi : Flag<"-fobjc-nonfragile-abi">,
330 HelpText<"enable objective-c's nonfragile abi">;
331def ftrapv : Flag<"-ftrapv">,
332 HelpText<"Trap on integer overflow">;
Daniel Dunbar76743522009-11-29 02:39:08 +0000333def pic_level : Separate<"-pic-level">,
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000334 HelpText<"Value for __PIC__">;
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000335def pthread : Flag<"-pthread">,
336 HelpText<"Support POSIX threads in generated code">;
337def fpascal_strings : Flag<"-fpascal-strings">,
338 HelpText<"Recognize and construct Pascal-style string literals">;
339def fno_rtti : Flag<"-fno-rtti">,
340 HelpText<"Disable generation of rtti information">;
341def fshort_wchar : Flag<"-fshort-wchar">,
342 HelpText<"Force wchar_t to be a short unsigned int">;
343def static_define : Flag<"-static-define">,
344 HelpText<"Should __STATIC__ be defined">;
345def stack_protector : Separate<"-stack-protector">,
346 HelpText<"Enable stack protectors">;
347def fvisibility : Separate<"-fvisibility">,
348 HelpText<"Default symbol visibility">;
349def ftemplate_depth : Separate<"-ftemplate-depth">,
350 HelpText<"Maximum depth of recursive template instantiation">;
351def trigraphs : Flag<"-trigraphs">,
352 HelpText<"Process trigraph sequences">;
353def fwritable_strings : Flag<"-fwritable-strings">,
354 HelpText<"Store string literals as writable data">;
355
356//===----------------------------------------------------------------------===//
357// Header Search Options
358//===----------------------------------------------------------------------===//
359
360def nostdinc : Flag<"-nostdinc">,
361 HelpText<"Disable standard #include directories">;
362def nobuiltininc : Flag<"-nobuiltininc">,
363 HelpText<"Disable builtin #include directories">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000364def F : JoinedOrSeparate<"-F">, MetaVarName<"<directory>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000365 HelpText<"Add directory to framework include search path">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000366def I : JoinedOrSeparate<"-I">, MetaVarName<"<directory>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000367 HelpText<"Add directory to include search path">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000368def idirafter : Separate<"-idirafter">, MetaVarName<"<directory>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000369 HelpText<"Add directory to AFTER include search path">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000370def iquote : Separate<"-iquote">, MetaVarName<"<directory>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000371 HelpText<"Add directory to QUOTE include search path">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000372def isystem : Separate<"-isystem">, MetaVarName<"<directory>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000373 HelpText<"Add directory to SYSTEM include search path">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000374def iprefix : Separate<"-iprefix">, MetaVarName<"<prefix>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000375 HelpText<"Set the -iwithprefix/-iwithprefixbefore prefix">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000376def iwithprefix : Separate<"-iwithprefix">, MetaVarName<"<dir>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000377 HelpText<"Set directory to SYSTEM include search path with prefix">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000378def iwithprefixbefore : Separate<"-iwithprefixbefore">, MetaVarName<"<dir>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000379 HelpText<"Set directory to include search path with prefix">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000380def isysroot : Separate<"-isysroot">, MetaVarName<"<dir>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000381 HelpText<"Set the system root directory (usually /)">;
382def v : Flag<"-v">, HelpText<"Enable verbose output">;
383
384//===----------------------------------------------------------------------===//
385// Preprocessor Options
386//===----------------------------------------------------------------------===//
387
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000388def D : JoinedOrSeparate<"-D">, MetaVarName<"<macro>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000389 HelpText<"Predefine the specified macro">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000390def include_ : Separate<"-include">, MetaVarName<"<file>">, EnumName<"include">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000391 HelpText<"Include file before parsing">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000392def imacros : Separate<"-imacros">, MetaVarName<"<file>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000393 HelpText<"Include macros from file before parsing">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000394def include_pch : Separate<"-include-pch">, MetaVarName<"<file>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000395 HelpText<"Include precompiled header file">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000396def include_pth : Separate<"-include-pth">, MetaVarName<"<file>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000397 HelpText<"Include file before parsing">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000398def token_cache : Separate<"-token-cache">, MetaVarName<"<path>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000399 HelpText<"Use specified token cache file">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000400def U : JoinedOrSeparate<"-U">, MetaVarName<"<macro>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000401 HelpText<"Undefine the specified macro">;
Daniel Dunbarb737fb12009-12-03 07:01:46 +0000402def undef : Flag<"-undef">, MetaVarName<"<macro>">,
Daniel Dunbar33a33d82009-11-24 00:54:16 +0000403 HelpText<"undef all system defines">;
404
405//===----------------------------------------------------------------------===//
406// Preprocessed Output Options
407//===----------------------------------------------------------------------===//
408
409def P : Flag<"-P">,
410 HelpText<"Disable linemarker output in -E mode">;
411def C : Flag<"-C">,
412 HelpText<"Enable comment output in -E mode">;
413def CC : Flag<"-CC">,
414 HelpText<"Enable comment output in -E mode, even from macro expansions">;
415def dM : Flag<"-dM">,
416 HelpText<"Print macro definitions in -E mode instead of normal output">;
417def dD : Flag<"-dD">,
418 HelpText<"Print macro definitions in -E mode in addition to normal output">;