CC1Options.td revision be570121a6da523020c3b11eb15aba97becb5d2f
18adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//===--- CC1Options.td - Options for clang -cc1 ---------------------------===//
28adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//
38adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//                     The LLVM Compiler Infrastructure
48adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//
58adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar// This file is distributed under the University of Illinois Open Source
68adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar// License. See LICENSE.TXT for details.
78adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//
88adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//===----------------------------------------------------------------------===//
98adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//
108adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//  This file defines the options accepted by clang -cc1.
118adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//
128adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar//===----------------------------------------------------------------------===//
138adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar
148adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar// Include the common option parsing interfaces.
158adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbarinclude "OptParser.td"
168adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar
1733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
188adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar// Target Options
1933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
208adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar
2198b7c5c496dfccb39287b8f7d8f1444594936d10Charles Davisdef cxx_abi : Separate<"-cxx-abi">,
2298b7c5c496dfccb39287b8f7d8f1444594936d10Charles Davis  HelpText<"Target a particular C++ ABI type">;
238adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbardef target_abi : Separate<"-target-abi">,
248adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar  HelpText<"Target a particular ABI type">;
2538b48afd338d494099697d2611e1f45e558e469eDaniel Dunbardef target_cpu : Separate<"-target-cpu">,
2638b48afd338d494099697d2611e1f45e558e469eDaniel Dunbar  HelpText<"Target a specific cpu type">;
2731db76cb2dde031ab3262808ac233889daf7d720Daniel Dunbardef target_feature : Separate<"-target-feature">,
288adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar  HelpText<"Target specific attributes">;
2939065a5494613952b4810d1d6b28348cef155e12Daniel Dunbardef target_linker_version : Separate<"-target-linker-version">,
3039065a5494613952b4810d1d6b28348cef155e12Daniel Dunbar  HelpText<"Target linker version">;
3131db76cb2dde031ab3262808ac233889daf7d720Daniel Dunbardef triple : Separate<"-triple">,
328adfcff02334455b6f95bc4e1f347204f7c0dd3eDaniel Dunbar  HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
33ce6bf1ecdaca15450d8c0424724cc1558b847364Daniel Dunbardef triple_EQ : Joined<"-triple=">, Alias<triple>;
3450a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar
3533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
36e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar// Analyzer Options
3733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
38e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
39e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analysis_CFGDump : Flag<"-cfg-dump">,
40e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Display Control-Flow Graphs">;
41e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analysis_CFGView : Flag<"-cfg-view">,
42e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"View Control-Flow Graphs using GraphViz">;
439b823e8e1ccb8a2cb49923bad22a80ca96f41f92Ted Kremenekdef analysis_UnoptimizedCFG : Flag<"-unoptimized-cfg">,
44c9c6b904f3fb4f515f7f041b7c49f5e3b7c53bd3Ted Kremenek  HelpText<"Generate unoptimized CFGs for all analyses">;
459121ba232903ebe61e7bbe14ca294cf0f07dfa96Marcin Swiderskidef analysis_CFGAddImplicitDtors : Flag<"-cfg-add-implicit-dtors">,
469121ba232903ebe61e7bbe14ca294cf0f07dfa96Marcin Swiderski  HelpText<"Add C++ implicit destructors to CFGs for all analyses">;
479121ba232903ebe61e7bbe14ca294cf0f07dfa96Marcin Swiderskidef analysis_CFGAddInitializers : Flag<"-cfg-add-initializers">,
489121ba232903ebe61e7bbe14ca294cf0f07dfa96Marcin Swiderski  HelpText<"Add C++ initializers to CFGs for all analyses">;
49e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analysis_DisplayLiveVariables : Flag<"-dump-live-variables">,
50e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Print results of live variable analysis">;
516dd66ed959b7f60749dd0040507b3f304183a1b6Ted Kremenekdef analysis_LLVMConventionChecker : Flag<"-analyzer-check-llvm-conventions">,
526dd66ed959b7f60749dd0040507b3f304183a1b6Ted Kremenek  HelpText<"Check code for LLVM codebase conventions (domain-specific)">;
53fb3f893bc58071e548c97a3d667c8ab9b0c38cfbTed Kremenekdef analysis_SecuritySyntacticChecks : Flag<"-analyzer-check-security-syntactic">,
54e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Perform quick security checks that require no data flow">;
55cd9902bfb79c5c67559360514951714bdafac36eTed Kremenekdef analysis_WarnDeadStores : Flag<"-analyzer-check-dead-stores">,
56e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about stores to dead variables">;
57e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analysis_WarnUninitVals : Flag<"-warn-uninit-values">,
58e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about uses of uninitialized variables">;
59fa15be4cf95b7ed2d1df583497b16a6f897cf789Ted Kremenekdef analysis_WarnObjCMethSigs : Flag<"-analyzer-check-objc-methodsigs">,
60e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about Objective-C method signatures with type incompatibilities">;
617909fc8833e734aac521d7d6945bd823d75150acTed Kremenekdef analysis_WarnObjCDealloc : Flag<"-analyzer-check-objc-missing-dealloc">,
62e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about Objective-C classes that lack a correct implementation of -dealloc">;
632ade536f6815bf6ff128333520232c3b0e701146Ted Kremenekdef analysis_WarnObjCUnusedIvars : Flag<"-analyzer-check-objc-unused-ivars">,
64e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about private ivars that are never used">;
65565e465c6d0093f1bf8414b2cabdc842022385a9Ted Kremenekdef analysis_ObjCMemChecker : Flag<"-analyzer-check-objc-mem">,
66e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Run the [Core] Foundation reference count checker">;
67e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analysis_WarnSizeofPointer : Flag<"-warn-sizeof-pointer">,
68e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Warn about unintended use of sizeof() on pointer expressions">;
691fafd1d96419f587763d1b81332d8f476aeace2eTom Caredef analysis_WarnIdempotentOps : Flag<"-analyzer-check-idempotent-operations">,
701fafd1d96419f587763d1b81332d8f476aeace2eTom Care  HelpText<"Warn about idempotent operations">;
7152d861ce41ce84d8389495ea78d97bcc962ac5baTom Caredef analysis_AnalyzerStats : Flag<"-analyzer-stats">,
7252d861ce41ce84d8389495ea78d97bcc962ac5baTom Care  HelpText<"Emit warnings with analyzer statistics">;
73e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
74e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_store : Separate<"-analyzer-store">,
75e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Source Code Analysis - Abstract Memory Store Models">;
76e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_store_EQ : Joined<"-analyzer-store=">, Alias<analyzer_store>;
77e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
78e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_constraints : Separate<"-analyzer-constraints">,
79e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Source Code Analysis - Symbolic Constraint Engines">;
80e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_constraints_EQ : Joined<"-analyzer-constraints=">,
81e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  Alias<analyzer_constraints>;
82e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
83e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_output : Separate<"-analyzer-output">,
84e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Source Code Analysis - Output Options">;
85e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_output_EQ : Joined<"-analyzer-output=">,
86e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  Alias<analyzer_output>;
87e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
88e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_opt_analyze_headers : Flag<"-analyzer-opt-analyze-headers">,
89e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Force the static analyzer to analyze functions defined in header files">;
90fc576514d06c46a7cac49500169411d82f38d04bTed Kremenekdef analyzer_opt_analyze_nested_blocks : Flag<"-analyzer-opt-analyze-nested-blocks">,
91fc576514d06c46a7cac49500169411d82f38d04bTed Kremenek  HelpText<"Analyze the definitions of blocks in addition to functions">;  
92e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_display_progress : Flag<"-analyzer-display-progress">,
93e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Emit verbose output about the analyzer's progress">;
94e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_experimental_checks : Flag<"-analyzer-experimental-checks">,
95e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Use experimental path-sensitive checks">;
96e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_experimental_internal_checks :
97e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  Flag<"-analyzer-experimental-internal-checks">,
98e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Use new default path-sensitive checks currently in testing">;
99e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyze_function : Separate<"-analyze-function">,
100e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Run analysis on specific function">;
101e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyze_function_EQ : Joined<"-analyze-function=">, Alias<analyze_function>;
102e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_eagerly_assume : Flag<"-analyzer-eagerly-assume">,
103e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Eagerly assume the truth/falseness of some symbolic constraints">;
104e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_no_purge_dead : Flag<"-analyzer-no-purge-dead">,
105e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Don't remove dead symbols, bindings, and constraints before processing a statement">;
106e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef trim_egraph : Flag<"-trim-egraph">,
107e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Only show error-related paths in the analysis graph">;
108e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_viz_egraph_graphviz : Flag<"-analyzer-viz-egraph-graphviz">,
109e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Display exploded graph using GraphViz">;
110e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbardef analyzer_viz_egraph_ubigraph : Flag<"-analyzer-viz-egraph-ubigraph">,
111e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar  HelpText<"Display exploded graph using Ubigraph">;
1127b99d12b4ca67fccdf5090761ba257732e954e75Zhongxing Xudef analyzer_inline_call : Flag<"-analyzer-inline-call">,
1137b99d12b4ca67fccdf5090761ba257732e954e75Zhongxing Xu  HelpText<"Experimental transfer function inlining callees when its definition is available.">;
114c09289d104b8e01ecd998e3f08b2b0561049e1dcZhongxing Xudef analyzer_max_nodes : Separate<"-analyzer-max-nodes">,
115cf9ce13774dad86f780d84cd41e6bd64c039324aTom Care  HelpText<"The maximum number of nodes the analyzer can generate (150000 default, 0 = no limit)">;
1166362b893731ccf4480a96527db9e55e04b801503Zhongxing Xudef analyzer_max_loop : Separate<"-analyzer-max-loop">,
1176362b893731ccf4480a96527db9e55e04b801503Zhongxing Xu  HelpText<"The maximum number of times the analyzer will go through a loop">;
118e2814d89025b847ad7363b21e3e053bbae180b54Daniel Dunbar
11933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
12050a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar// CodeGen Options
12133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
12250a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar
12350a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef disable_llvm_optzns : Flag<"-disable-llvm-optzns">,
12450a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar  HelpText<"Don't run LLVM optimization passes">;
125824e19ed926d7aa1296a007d0607ac4437e3c4a9John McCalldef disable_llvm_verifier : Flag<"-disable-llvm-verifier">,
126824e19ed926d7aa1296a007d0607ac4437e3c4a9John McCall  HelpText<"Don't run the LLVM IR verifier pass">;
12750a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef disable_red_zone : Flag<"-disable-red-zone">,
12850a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar  HelpText<"Do not emit code that uses the red zone.">;
129f2d8b9f967a1ab53ee9fdbcc3ac0a4ee0a83a26eDaniel Dunbardef dwarf_debug_flags : Separate<"-dwarf-debug-flags">,
130f2d8b9f967a1ab53ee9fdbcc3ac0a4ee0a83a26eDaniel Dunbar  HelpText<"The string to embed in the Dwarf debug flags record.">;
13150a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef g : Flag<"-g">, HelpText<"Generate source level debug information">;
1329c276ae0f24d4cee8f7954069d4b8eae45d0447dMike Stumpdef fcatch_undefined_behavior : Flag<"-fcatch-undefined-behavior">,
1339c276ae0f24d4cee8f7954069d4b8eae45d0447dMike Stump    HelpText<"Generate runtime checks for undefined behavior.">;
134c69e1cf04323f2e786d40e8a5ba84e77ee1c6827Devang Pateldef flimit_debug_info : Flag<"-flimit-debug-info">,
135c69e1cf04323f2e786d40e8a5ba84e77ee1c6827Devang Patel  HelpText<"Limit debug information produced to reduce size of debug binary">;
13650a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef fno_common : Flag<"-fno-common">,
13750a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar  HelpText<"Compile common globals like normal definitions">;
13850a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef no_implicit_float : Flag<"-no-implicit-float">,
13950a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar  HelpText<"Don't generate implicit floating point instructions (x86-only)">;
1407255a2d997b15beae82e627052fdb1b2474495c2Chris Lattnerdef finstrument_functions : Flag<"-finstrument-functions">,
1417255a2d997b15beae82e627052fdb1b2474495c2Chris Lattner  HelpText<"Generate calls to instrument function entry and exit">;
14250a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef fno_merge_all_constants : Flag<"-fno-merge-all-constants">,
14350a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbar  HelpText<"Disallow merging of constants.">;
144a508b7de6c5246ab04ed69d0ab4e9977ec1fb4d4Anders Carlssondef fno_threadsafe_statics : Flag<"-fno-threadsafe-statics">,
145a508b7de6c5246ab04ed69d0ab4e9977ec1fb4d4Anders Carlsson  HelpText<"Do not emit code to make initialization of local statics thread safe">;
146824d7ea07a4e9208925daa6ae9289fb2b39bce9fAnders Carlssondef fdump_vtable_layouts : Flag<"-fdump-vtable-layouts">,
147824d7ea07a4e9208925daa6ae9289fb2b39bce9fAnders Carlsson  HelpText<"Dump the layouts of all vtables that will be emitted in a translation unit">;
148bbea7168326d810eff18dfb8bc43c7790fd55010Chris Lattnerdef ffunction_sections : Flag<"-ffunction-sections">,
149bbea7168326d810eff18dfb8bc43c7790fd55010Chris Lattner  HelpText<"Place each function in its own section (ELF Only)">;
150bbea7168326d810eff18dfb8bc43c7790fd55010Chris Lattnerdef fdata_sections : Flag<"-fdata-sections">,
151bbea7168326d810eff18dfb8bc43c7790fd55010Chris Lattner  HelpText<"Place each data in its own section (ELF Only)">;
152f84d409903dd4107c8cef5a08fcfce6e5c21d4deEric Christopherdef funroll_loops : Flag<"-funroll-loops">,
153f84d409903dd4107c8cef5a08fcfce6e5c21d4deEric Christopher  HelpText<"Turn on loop unroller">;
1544d5625e15bb215c2241c022df8dc7b04438970c6Dan Gohmandef relaxed_aliasing : Flag<"-relaxed-aliasing">,
155be570121a6da523020c3b11eb15aba97becb5d2fDevang Patel  HelpText<"Turn off Type Based Alias Analysis">;
156f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef masm_verbose : Flag<"-masm-verbose">,
157f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Generate verbose assembly output">;
158f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mcode_model : Separate<"-mcode-model">,
159f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"The code model to use">;
160f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mdebug_pass : Separate<"-mdebug-pass">,
161f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Enable additional debug output">;
162f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mdisable_fp_elim : Flag<"-mdisable-fp-elim">,
163f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Disable frame pointer elimination optimization">;
16487667aafe68c366be57f5afb60428237593da0edDaniel Dunbardef mfloat_abi : Separate<"-mfloat-abi">,
1653b315264d1a6fa303e20fe0caec306ccafc090deDaniel Dunbar  HelpText<"The float ABI to use">;
166f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mlimit_float_precision : Separate<"-mlimit-float-precision">,
167f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Limit float precision to the given value">;
168f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mno_zero_initialized_in_bss : Flag<"-mno-zero-initialized-in-bss">,
169f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Do not put zero initialized data in the BSS">;
1701ad6648cce57bd187f1853f58fef26cd9bf4934fDaniel Dunbardef momit_leaf_frame_pointer : Flag<"-momit-leaf-frame-pointer">,
1711ad6648cce57bd187f1853f58fef26cd9bf4934fDaniel Dunbar  HelpText<"Omit frame pointer setup for leaf functions.">;
17287667aafe68c366be57f5afb60428237593da0edDaniel Dunbardef msoft_float : Flag<"-msoft-float">,
1733b315264d1a6fa303e20fe0caec306ccafc090deDaniel Dunbar  HelpText<"Use software floating point">;
1744ecc9b73b3716775ed4e09091e300796a9a72378Daniel Dunbardef mrelax_all : Flag<"-mrelax-all">,
1754ecc9b73b3716775ed4e09091e300796a9a72378Daniel Dunbar  HelpText<"Relax all machine instructions">;
176f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef mrelocation_model : Separate<"-mrelocation-model">,
177f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"The relocation model to use">;
178f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbardef munwind_tables : Flag<"-munwind-tables">,
179f219e7c1529fac29e34483667f740b452e5ef9ccDaniel Dunbar  HelpText<"Generate unwinding tables for all functions">;
180d46f98573ba104eda102dd3224b2dca69f1c6336John McCalldef mconstructor_aliases : Flag<"-mconstructor-aliases">,
181d46f98573ba104eda102dd3224b2dca69f1c6336John McCall  HelpText<"Emit complete constructors and destructors as aliases when possible">;
18250a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef O : Joined<"-O">, HelpText<"Optimization level">;
18350a4487683a7e09fb93e8b506181e034241a0ffeDaniel Dunbardef Os : Flag<"-Os">, HelpText<"Optimize for size">;
1841bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbar
18533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
1861bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbar// Dependency Output Options
18733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
18833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
1891bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbardef dependency_file : Separate<"-dependency-file">,
1901bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbar  HelpText<"Filename (or -) to write dependency output to">;
1911bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbardef sys_header_deps : Flag<"-sys-header-deps">,
1921bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbar  HelpText<"Include system headers in dependency output">;
1933edbeb78fe5ea7fffea7a94575478cde19e830e0Chris Lattnerdef MQ : Separate<"-MQ">, HelpText<"Specify target to quote for dependency">;
1941bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbardef MT : Separate<"-MT">, HelpText<"Specify target for dependency">;
1951bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbardef MP : Flag<"-MP">,
1961bed0c3a555d9e32de9dead55658b4a28a4d6e03Daniel Dunbar  HelpText<"Create phony target for each dependency (other than main file)">;
19721affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar
19833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
19921affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar// Diagnostic Options
20033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
20121affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar
20221affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef dump_build_information : Separate<"-dump-build-information">,
203b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbar  MetaVarName<"<filename>">,
20421affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"output a dump of some build information to a file">;
20521affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fno_show_column : Flag<"-fno-show-column">,
20621affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Do not include column number on diagnostics">;
20721affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fno_show_source_location : Flag<"-fno-show-source-location">,
20821affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Do not include source location information with diagnostics">;
2095edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskindef fshow_overloads_EQ : Joined<"-fshow-overloads=">,
2105edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin  HelpText<"Which overload candidates to show when overload resolution fails: "
2115edbdcc62098e305cd55654814dcf783a3f3c477Jeffrey Yasskin           "best|all; defaults to all">;
21221affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fno_caret_diagnostics : Flag<"-fno-caret-diagnostics">,
21321affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Do not include source line and caret with diagnostics">;
21421affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fno_diagnostics_fixit_info : Flag<"-fno-diagnostics-fixit-info">,
21521affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Do not include fixit information in diagnostics">;
21633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef w : Flag<"-w">, HelpText<"Suppress all warnings">;
21721affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef pedantic : Flag<"-pedantic">;
21821affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef pedantic_errors : Flag<"-pedantic-errors">;
21921affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar
22021affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar// This gets all -W options, including -Werror, -W[no-]system-headers, etc.  The
22121affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar// driver has stripped off -Wa,foo etc.  The driver has also translated -W to
22221affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar// -Wextra, so we don't need to worry about it.
22321affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef W : Joined<"-W">;
22421affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar
22521affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fdiagnostics_print_source_range_info : Flag<"-fdiagnostics-print-source-range-info">,
22621affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Print source range spans in numeric form">;
2274786c15f4977c7cee98fde3ebdee213dba23848bDouglas Gregordef fdiagnostics_parseable_fixits : Flag<"-fdiagnostics-parseable-fixits">,
2284786c15f4977c7cee98fde3ebdee213dba23848bDouglas Gregor  HelpText<"Print fix-its in machine parseable form">;
22921affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fdiagnostics_show_option : Flag<"-fdiagnostics-show-option">,
23021affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Print diagnostic name with mappable diagnostics">;
2316fbe8398ba1680ffc5daa7395850ff8765b7905bChris Lattnerdef fdiagnostics_show_category : Separate<"-fdiagnostics-show-category">,
2326fbe8398ba1680ffc5daa7395850ff8765b7905bChris Lattner  HelpText<"Print diagnostic category">;
2336fbe8398ba1680ffc5daa7395850ff8765b7905bChris Lattner  
234124fca533d9fef2e3f6359283909bd342b5f5f26Chris Lattnerdef ftabstop : Separate<"-ftabstop">, MetaVarName<"<N>">,
235124fca533d9fef2e3f6359283909bd342b5f5f26Chris Lattner  HelpText<"Set the tab stop distance.">;
236c100214fdc41a7ea215f75d433eb1cb829fd4330Chris Lattnerdef ferror_limit : Separate<"-ferror-limit">, MetaVarName<"<N>">,
237c100214fdc41a7ea215f75d433eb1cb829fd4330Chris Lattner  HelpText<"Set the maximum number of errors to emit before stopping (0 = no limit).">;
2386c1cb9916e9988dcdd65b9266dbe24afd173427aDouglas Gregordef fmacro_backtrace_limit : Separate<"-fmacro-backtrace-limit">, MetaVarName<"<N>">,
2396c1cb9916e9988dcdd65b9266dbe24afd173427aDouglas Gregor  HelpText<"Set the maximum number of entries to print in a macro instantiation backtrace (0 = no limit).">;
240575cf3791216c33770ba950430493cdd43099f8fDouglas Gregordef ftemplate_backtrace_limit : Separate<"-ftemplate-backtrace-limit">, MetaVarName<"<N>">,
241575cf3791216c33770ba950430493cdd43099f8fDouglas Gregor  HelpText<"Set the maximum number of entries to print in a template instantiation backtrace (0 = no limit).">;
242b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef fmessage_length : Separate<"-fmessage-length">, MetaVarName<"<N>">,
24321affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Format message diagnostics so that they fit within N columns or fewer, when possible.">;
24421affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef fcolor_diagnostics : Flag<"-fcolor-diagnostics">,
24521affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Use colors in diagnostics">;
24621affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef Wno_rewrite_macros : Flag<"-Wno-rewrite-macros">,
24721affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Silence ObjC rewriting warnings">;
2484b7a834e0fecddd9eaf1f4567867c718e4eebf50John McCalldef Wwrite_strings : Flag<"-Wwrite-strings">,
249a61e5a2679d8e40de8d98fb96d051df8094f6e99John McCall  HelpText<"Remove const qualifier from string literals">;
25021affc089773edc30be43ecb0022a48acdac7093Daniel Dunbardef verify : Flag<"-verify">,
25121affc089773edc30be43ecb0022a48acdac7093Daniel Dunbar  HelpText<"Verify emitted diagnostics and warnings">;
25233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
25333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
25433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar// Frontend Options
25533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
25633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
2578ff5b28d6efcffe2251e77634c7edf83a4763344Daniel Dunbar// This isn't normally used, it is just here so we can parse a
2588ff5b28d6efcffe2251e77634c7edf83a4763344Daniel Dunbar// CompilerInvocation out of a driver-derived argument vector.
2598ff5b28d6efcffe2251e77634c7edf83a4763344Daniel Dunbardef cc1 : Flag<"-cc1">;
2608ff5b28d6efcffe2251e77634c7edf83a4763344Daniel Dunbar
2619bed8798964d9f07599c2c9199701f86fbc70e20Douglas Gregordef ast_merge : Separate<"-ast-merge">,
2629bed8798964d9f07599c2c9199701f86fbc70e20Douglas Gregor  MetaVarName<"<ast file>">,
2639bed8798964d9f07599c2c9199701f86fbc70e20Douglas Gregor  HelpText<"Merge the given AST file into the translation unit being compiled.">;
26433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef code_completion_at : Separate<"-code-completion-at">,
265b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbar  MetaVarName<"<file>:<line>:<column>">,
26633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Dump code-completion information at a location">;
267e14b5f5237d0740c2b21c50b2eb41a06e778d820Daniel Dunbardef remap_file : Separate<"-remap-file">,
268e14b5f5237d0740c2b21c50b2eb41a06e778d820Daniel Dunbar  MetaVarName<"<from>;<to>">,
269e14b5f5237d0740c2b21c50b2eb41a06e778d820Daniel Dunbar  HelpText<"Replace the contents of the <from> file with the contents of the <to> file">;
270ce6bf1ecdaca15450d8c0424724cc1558b847364Daniel Dunbardef code_completion_at_EQ : Joined<"-code-completion-at=">,
271ce6bf1ecdaca15450d8c0424724cc1558b847364Daniel Dunbar  Alias<code_completion_at>;
27233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef code_completion_macros : Flag<"-code-completion-macros">,
27333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Include macros in code-completion results">;
274d8e8a58ee35ab334ab9d0c2154dca029c1822e8aDouglas Gregordef code_completion_patterns : Flag<"-code-completion-patterns">,
275d8e8a58ee35ab334ab9d0c2154dca029c1822e8aDouglas Gregor  HelpText<"Include code patterns in code-completion results">;
2768071e4212ae08f8014e0c3ae6d18b7388003a5ccDouglas Gregordef no_code_completion_globals : Flag<"-no-code-completion-globals">,
2778071e4212ae08f8014e0c3ae6d18b7388003a5ccDouglas Gregor  HelpText<"Do not include global declarations in code-completion results.">;
27833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef disable_free : Flag<"-disable-free">,
27933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable freeing of memory on exit">;
2809b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbardef help : Flag<"-help">,
2819b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbar  HelpText<"Print this help text">;
2829b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbardef _help : Flag<"--help">, Alias<help>;
28333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef x : Separate<"-x">, HelpText<"Input language type">;
28433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef cxx_inheritance_view : Separate<"-cxx-inheritance-view">,
285b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbar  MetaVarName<"<class name>">,
28633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"View C++ inheritance for a specified class">;
287b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef o : Separate<"-o">, MetaVarName<"<path>">, HelpText<"Specify output file">;
288b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef load : Separate<"-load">, MetaVarName<"<dsopath>">,
289efba227cc5459554eca466aafe786b5132dcb68cDaniel Dunbar  HelpText<"Load the named plugin (dynamic shared object)">;
2903177aae51a21f61ab483c52f97124bdb707da7f1Daniel Dunbardef plugin : Separate<"-plugin">, MetaVarName<"<name>">,
29133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Use the named plugin action (use \"help\" to list available options)">;
2923177aae51a21f61ab483c52f97124bdb707da7f1Daniel Dunbardef plugin_arg : JoinedAndSeparate<"-plugin-arg-">, 
2933177aae51a21f61ab483c52f97124bdb707da7f1Daniel Dunbar    MetaVarName<"<name> <arg>">,
2943177aae51a21f61ab483c52f97124bdb707da7f1Daniel Dunbar    HelpText<"Pass <arg> to plugin <name>">;
2958b9adfea5e834eaee0f45d8cc7fb052d68df4a46Daniel Dunbardef resource_dir : Separate<"-resource-dir">,
2968b9adfea5e834eaee0f45d8cc7fb052d68df4a46Daniel Dunbar  HelpText<"The directory which holds the compiler resource files">;
2979b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbardef version : Flag<"-version">,
2989b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbar  HelpText<"Print the compiler version">;
2999b5e9ae08defd14441acca1d7d4502b933bf6c5aDaniel Dunbardef _version : Flag<"--version">, Alias<version>;
30033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
30133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef Action_Group : OptionGroup<"<action group>">;
30233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbarlet Group = Action_Group in {
30333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
30433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef Eonly : Flag<"-Eonly">,
30533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Just run preprocessor, no output (for timings)">;
30633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef E : Flag<"-E">,
30733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Run preprocessor, emit preprocessed file">;
30833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef dump_raw_tokens : Flag<"-dump-raw-tokens">,
30933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Lex file in raw mode and dump raw tokens">;
31033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef analyze : Flag<"-analyze">,
31133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Run static analysis engine">;
31233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef dump_tokens : Flag<"-dump-tokens">,
31333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Run preprocessor, dump internal rep of tokens">;
3142758595023c5c7c0495f19260089f975022c50dcDaniel Dunbardef init_only : Flag<"-init-only">,
3152758595023c5c7c0495f19260089f975022c50dcDaniel Dunbar  HelpText<"Only execute frontend initialization">;
31633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fsyntax_only : Flag<"-fsyntax-only">,
31733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Run parser and perform semantic analysis">;
31833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fixit : Flag<"-fixit">,
31933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Apply fix-it advice to the input source">;
320ba5f6eced29937e4e4851a2c0980744768413d66Nick Lewyckydef fixit_EQ : Joined<"-fixit=">,
321ba5f6eced29937e4e4851a2c0980744768413d66Nick Lewycky  HelpText<"Apply fix-it advice creating a file with the given suffix">;
322f033f1da4a34f8df6e95e9929dc04ff54bb8fb01Douglas Gregordef print_preamble : Flag<"-print-preamble">,
323f033f1da4a34f8df6e95e9929dc04ff54bb8fb01Douglas Gregor  HelpText<"Print the \"preamble\" of a file, which is a candidate for implicit"
324f033f1da4a34f8df6e95e9929dc04ff54bb8fb01Douglas Gregor           " precompiled headers.">;
32533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_html : Flag<"-emit-html">,
32633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Output input source as HTML">;
32733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ast_print : Flag<"-ast-print">,
32833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs and then pretty-print them">;
32933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ast_print_xml : Flag<"-ast-print-xml">,
33033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs and then print them in XML format">;
33133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ast_dump : Flag<"-ast-dump">,
33233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs and then debug dump them">;
33333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ast_view : Flag<"-ast-view">,
33433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs and view them with GraphViz">;
335f78cc4360eb4284091d0d38f3055084360f8c753Douglas Gregordef boostcon : Flag<"-boostcon">,
336f78cc4360eb4284091d0d38f3055084360f8c753Douglas Gregor  HelpText<"BoostCon workshop mode">;
33733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef print_decl_contexts : Flag<"-print-decl-contexts">,
33833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Print DeclContexts and their Decls">;
33933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_pth : Flag<"-emit-pth">,
34033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Generate pre-tokenized header file">;
34133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_pch : Flag<"-emit-pch">,
34233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Generate pre-compiled header file">;
34333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef S : Flag<"-S">,
34433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Emit native assembly code">;
34533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_llvm : Flag<"-emit-llvm">,
34633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs then convert to LLVM, emit .ll file">;
34733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_llvm_bc : Flag<"-emit-llvm-bc">,
34833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
34933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef emit_llvm_only : Flag<"-emit-llvm-only">,
35033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Build ASTs and convert to LLVM, discarding output">;
35132148cef25570a4fbe3ad0ec497ce3ae2cf1b774Daniel Dunbardef emit_codegen_only : Flag<"-emit-codegen-only">,
35232148cef25570a4fbe3ad0ec497ce3ae2cf1b774Daniel Dunbar  HelpText<"Generate machine code, but discard output">;
353da1573f95902a42aa4d11e8f45ab98ec7e27bc28Daniel Dunbardef emit_obj : Flag<"-emit-obj">,
354da1573f95902a42aa4d11e8f45ab98ec7e27bc28Daniel Dunbar  HelpText<"Emit native object files">;
35533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef rewrite_test : Flag<"-rewrite-test">,
35633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Rewriter playground">;
35733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef rewrite_objc : Flag<"-rewrite-objc">,
35833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Rewrite ObjC into C (code rewriter example)">;
35933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef rewrite_macros : Flag<"-rewrite-macros">,
36033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Expand macros without full preprocessing">;
36133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
362e55fd871b0cf3e4ebc708cf46831908d74eab40aSebastian Redldef create_module : Flag<"-create-module">,
363e55fd871b0cf3e4ebc708cf46831908d74eab40aSebastian Redl  HelpText<"Create a module definition file">;
36433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar}
36533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
366e55fd871b0cf3e4ebc708cf46831908d74eab40aSebastian Redldef import_module : Separate<"-import-module">,
367e55fd871b0cf3e4ebc708cf46831908d74eab40aSebastian Redl  HelpText<"Import a module definition file">;
368e55fd871b0cf3e4ebc708cf46831908d74eab40aSebastian Redl
36933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef relocatable_pch : Flag<"-relocatable-pch">,
37033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Whether to build a relocatable precompiled header">;
371d6ac4524cd441808f152f7e10900a8315ea31c08Sebastian Redldef chained_pch : Flag<"-chained-pch">,
372d6ac4524cd441808f152f7e10900a8315ea31c08Sebastian Redl  HelpText<"Whether to chain the new precompiled header to the old one.">;
37333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef print_stats : Flag<"-print-stats">,
37433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Print performance metrics and statistics">;
37533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ftime_report : Flag<"-ftime-report">,
37633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Print the amount of time each phase of compilation takes">;
37746116ce06ae28e3fc3a34c513f2f63ac02d9a194Anders Carlssondef fdump_record_layouts : Flag<"-fdump-record-layouts">,
378b69eca5d2196c06870d3eeb62d689feebaaa8a4dDaniel Dunbar  HelpText<"Dump record layout information">;
3791450f265fcc84a7ca64dd9f3b8d4492c5bd55e23Nick Lewyckydef fix_what_you_can : Flag<"-fix-what-you-can">,
3801450f265fcc84a7ca64dd9f3b8d4492c5bd55e23Nick Lewycky  HelpText<"Apply fix-it advice even in the presence of unfixable errors">;
381b69eca5d2196c06870d3eeb62d689feebaaa8a4dDaniel Dunbar
3823f87fb08dd502309960646db01099fb4c1be9a7cDaniel Dunbar// Generic forwarding to LLVM options. This should only be used for debugging
3833f87fb08dd502309960646db01099fb4c1be9a7cDaniel Dunbar// and experimental features.
3843f87fb08dd502309960646db01099fb4c1be9a7cDaniel Dunbardef mllvm : Separate<"-mllvm">,
3853f87fb08dd502309960646db01099fb4c1be9a7cDaniel Dunbar  HelpText<"Additional arguments to forward to LLVM's option processing">;
3863f87fb08dd502309960646db01099fb4c1be9a7cDaniel Dunbar
38733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
38833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar// Language Options
38933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
39033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
39133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fno_builtin : Flag<"-fno-builtin">,
39233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable implicit builtin knowledge of functions">;
39333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef faltivec : Flag<"-faltivec">,
39433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable AltiVec vector initializer syntax">;
395c53e3658e667fed25d428d58204f295209b81d45Benjamin Kramerdef fno_access_control : Flag<"-fno-access-control">,
396380509aa107c550d0e77ee2db4069e127709427cJohn McCall  HelpText<"Disable C++ access control">;
397fc2844846e91398205fddc71196fe9dda04e105fNuno Lopesdef fno_assume_sane_operator_new : Flag<"-fno-assume-sane-operator-new">,
39899860173af0b070f93558c26b78bb7ac07820370Nuno Lopes  HelpText<"Don't assume that C++'s global operator new can't alias any pointer">;
399eb5d7b752651283de5abfcc2f91df7227582a08dChandler Carruthdef fgnu_keywords : Flag<"-fgnu-keywords">,
400eb5d7b752651283de5abfcc2f91df7227582a08dChandler Carruth  HelpText<"Allow GNU-extension keywords regardless of language standard">;
401eb5d7b752651283de5abfcc2f91df7227582a08dChandler Carruthdef fno_gnu_keywords : Flag<"-fno-gnu-keywords">,
402eb5d7b752651283de5abfcc2f91df7227582a08dChandler Carruth  HelpText<"Disallow GNU-extension keywords regardless of language standard">;
40333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fdollars_in_identifiers : Flag<"-fdollars-in-identifiers">,
40433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Allow '$' in identifiers">;
4058663b180085e9bc7a0a87c80cc3f722efef99e79Daniel Dunbardef fno_dollars_in_identifiers : Flag<"-fno-dollars-in-identifiers">,
4068663b180085e9bc7a0a87c80cc3f722efef99e79Daniel Dunbar  HelpText<"Disallow '$' in identifiers">;
40733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef femit_all_decls : Flag<"-femit-all-decls">,
40833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Emit all declarations, even if unused">;
40933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fblocks : Flag<"-fblocks">,
41033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"enable the 'blocks' language feature">;
41133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fheinous_gnu_extensions : Flag<"-fheinous-gnu-extensions">;  
41233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fexceptions : Flag<"-fexceptions">,
41333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable support for exception handling">;
41473482884560be041d86eccbd7dd5a6918677393bDaniel Dunbardef fsjlj_exceptions : Flag<"-fsjlj-exceptions">,
41573482884560be041d86eccbd7dd5a6918677393bDaniel Dunbar  HelpText<"Use SjLj style exceptions">;
41633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ffreestanding : Flag<"-ffreestanding">,
41733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Assert that the compilation takes place in a freestanding environment">;
41833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fgnu_runtime : Flag<"-fgnu-runtime">,
41933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Generate output compatible with the standard GNU Objective-C runtime">;
420279b5eb6910d64a293e9c0e2887a05c65d8737d7John McCalldef fhidden_weak_vtables : Flag<"-fhidden-weak-vtables">,
421279b5eb6910d64a293e9c0e2887a05c65d8737d7John McCall  HelpText<"Generate weak vtables and RTTI with hidden visibility">;
422ce6bf1ecdaca15450d8c0424724cc1558b847364Daniel Dunbardef std_EQ : Joined<"-std=">,
42333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Language standard to compile for">;
424c31176d5ebbcd407aa512bbd5f717e35da629e7dDan Gohmandef fmath_errno : Flag<"-fmath-errno">,
425c31176d5ebbcd407aa512bbd5f717e35da629e7dDan Gohman  HelpText<"Require math functions to indicate errors by setting errno">;
42633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fms_extensions : Flag<"-fms-extensions">,
42733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Accept some non-standard constructs used in Microsoft header files ">;
428400b607546a8dbfcee3b690f3d0a2fee0ea6480bDawn Perchikdef fborland_extensions : Flag<"-fborland-extensions">,
429400b607546a8dbfcee3b690f3d0a2fee0ea6480bDawn Perchik  HelpText<"Accept non-standard constructs supported by the Borland compiler">;
43033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef main_file_name : Separate<"-main-file-name">,
43133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Main file name to use for debug info">;
43233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fno_elide_constructors : Flag<"-fno-elide-constructors">,
43333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable C++ copy constructor elision">;
43433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fno_lax_vector_conversions : Flag<"-fno-lax-vector-conversions">,
43533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disallow implicit conversions between vectors with a different number of elements or different element types">;
43633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fno_operator_names : Flag<"-fno-operator-names">,
43733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Do not treat C++ operator name keywords as synonyms for operators">;
438efb0fa9e11f75af51744a6159530ef7cc8efa24aDaniel Dunbardef fno_signed_char : Flag<"-fno-signed-char">,
439efb0fa9e11f75af51744a6159530ef7cc8efa24aDaniel Dunbar  HelpText<"Char is unsigned">;
440a0068fc64351db9c47916566e3b85ab733cd8d6dDouglas Gregordef fno_spell_checking : Flag<"-fno-spell-checking">,
441a0068fc64351db9c47916566e3b85ab733cd8d6dDouglas Gregor  HelpText<"Disable spell-checking">;  
442efb0fa9e11f75af51744a6159530ef7cc8efa24aDaniel Dunbardef fno_use_cxa_atexit : Flag<"-fno-use-cxa-atexit">,
443efb0fa9e11f75af51744a6159530ef7cc8efa24aDaniel Dunbar  HelpText<"Don't use __cxa_atexit for calling destructors">;
44433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fconstant_string_class : Separate<"-fconstant-string-class">,
445b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbar  MetaVarName<"<class name>">,
44633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Specify the class to use for constant Objective-C string objects.">;
44733e982bf782d851bfe5767acb1336fcf3419ac6bFariborz Jahaniandef fno_constant_cfstrings : Flag<"-fno-constant-cfstrings">,
44833e982bf782d851bfe5767acb1336fcf3419ac6bFariborz Jahanian  HelpText<"Enable creation of CodeFoundation-type constant strings">;
44933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fobjc_gc : Flag<"-fobjc-gc">,
45033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable Objective-C garbage collection">;
45133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fobjc_gc_only : Flag<"-fobjc-gc-only">,
45233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Use GC exclusively for Objective-C related memory management">;
453f643b9b338b797a824447207d7eab5f1187f4f34Daniel Dunbardef fobjc_dispatch_method_EQ : Joined<"-fobjc-dispatch-method=">,
454f643b9b338b797a824447207d7eab5f1187f4f34Daniel Dunbar  HelpText<"Objective-C dispatch method to use">;
45533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef print_ivar_layout : Flag<"-print-ivar-layout">,
45633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable Objective-C Ivar layout bitmap print trace">;
45733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fobjc_nonfragile_abi : Flag<"-fobjc-nonfragile-abi">,
45833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"enable objective-c's nonfragile abi">;
459412e798941ca64e2e6b084323915fa9aa5f6bdf3Fariborz Jahaniandef fobjc_nonfragile_abi2 : Flag<"-fobjc-nonfragile-abi2">,
460412e798941ca64e2e6b084323915fa9aa5f6bdf3Fariborz Jahanian  HelpText<"enable objective-c's enhanced nonfragile abi">;
46133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ftrapv : Flag<"-ftrapv">,
46233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Trap on integer overflow">;
4637f18e67e1b577a50402e8b43508ab2311a5c45b5David Chisnalldef ftrapv_handler : Separate<"-ftrapv-handler">,
4647f18e67e1b577a50402e8b43508ab2311a5c45b5David Chisnall  MetaVarName<"<function name>">,
4657f18e67e1b577a50402e8b43508ab2311a5c45b5David Chisnall  HelpText<"Specify the function to be called on overflow.">;
466a4d71455f0d418e16cc0c5c5aa55a3bad3494aeeChris Lattnerdef fwrapv : Flag<"-fwrapv">,
467a4d71455f0d418e16cc0c5c5aa55a3bad3494aeeChris Lattner  HelpText<"Treat signed integer overflow as two's complement">;
4687674352cf3e8f699914a2f739f1ae8c8c3480813Daniel Dunbardef pic_level : Separate<"-pic-level">,
469b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbar  HelpText<"Value for __PIC__">;
47033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef pthread : Flag<"-pthread">,
47133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Support POSIX threads in generated code">;
47233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fpascal_strings : Flag<"-fpascal-strings">,
47333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Recognize and construct Pascal-style string literals">;
47433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fno_rtti : Flag<"-fno-rtti">,
47533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable generation of rtti information">;
476fae3b2f4743dad616623c4df2fdb0f5128bd36d9Douglas Gregordef fno_validate_pch : Flag<"-fno-validate-pch">,
477fae3b2f4743dad616623c4df2fdb0f5128bd36d9Douglas Gregor  HelpText<"Disable validation of precompiled headers">;
478b972858068d2ea77f72a1e7b1812b196afd6be2eArgyrios Kyrtzidisdef dump_deserialized_pch_decls : Flag<"-dump-deserialized-decls">,
479b972858068d2ea77f72a1e7b1812b196afd6be2eArgyrios Kyrtzidis  HelpText<"Dump declarations that are deserialized from PCH, for testing">;
4803e78593b1ced32b7e0a97da044213014ee0f6f7cArgyrios Kyrtzidisdef error_on_deserialized_pch_decl : Separate<"-error-on-deserialized-decl">,
4813e78593b1ced32b7e0a97da044213014ee0f6f7cArgyrios Kyrtzidis  HelpText<"Emit error if a specific declaration is deserialized from PCH, for testing">;
48233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fshort_wchar : Flag<"-fshort-wchar">,
48333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Force wchar_t to be a short unsigned int">;
4849a2b9d794bdf349b517ff799170f4409f45d147cArgyrios Kyrtzidisdef fshort_enums : Flag<"-fshort-enums">,
4859a2b9d794bdf349b517ff799170f4409f45d147cArgyrios Kyrtzidis  HelpText<"Allocate to an enum type only as many bytes as it needs for the declared range of possible values">;
48633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef static_define : Flag<"-static-define">,
48733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Should __STATIC__ be defined">;
48833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef stack_protector : Separate<"-stack-protector">,
48933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable stack protectors">;
49033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fvisibility : Separate<"-fvisibility">,
49133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Default symbol visibility">;
4927cf84d66965a7706004d8590b5af5fe54b85f525Douglas Gregordef fvisibility_inlines_hidden : Flag<"-fvisibility-inlines-hidden">,
4937cf84d66965a7706004d8590b5af5fe54b85f525Douglas Gregor  HelpText<"Give inline C++ member functions default visibility by default">;
49433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef ftemplate_depth : Separate<"-ftemplate-depth">,
49533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Maximum depth of recursive template instantiation">;
49633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef trigraphs : Flag<"-trigraphs">,
49733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Process trigraph sequences">;
49833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef fwritable_strings : Flag<"-fwritable-strings">,
49933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Store string literals as writable data">;
500fb937b8c5f1c5dc9cfd4223b5cae230cc42b0287Daniel Dunbardef fno_bitfield_type_align : Flag<"-fno-bitfield-type-align">,
501fb937b8c5f1c5dc9cfd4223b5cae230cc42b0287Daniel Dunbar  HelpText<"Ignore bit-field types when aligning structures">;
50233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
50333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
50433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar// Header Search Options
50533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
50633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
50733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef nostdinc : Flag<"-nostdinc">,
50833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable standard #include directories">;
5094c2bcad7b843c10fd4a2ffd43da40bfefb4dc8baDouglas Gregordef nostdincxx : Flag<"-nostdinc++">,
5104c2bcad7b843c10fd4a2ffd43da40bfefb4dc8baDouglas Gregor  HelpText<"Disable standard #include directories for the C++ standard library">;
51133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef nobuiltininc : Flag<"-nobuiltininc">,
51233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable builtin #include directories">;
513b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef F : JoinedOrSeparate<"-F">, MetaVarName<"<directory>">,
51433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Add directory to framework include search path">;
515b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef I : JoinedOrSeparate<"-I">, MetaVarName<"<directory>">,
51633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Add directory to include search path">;
517b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef idirafter : JoinedOrSeparate<"-idirafter">, MetaVarName<"<directory>">,
51833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Add directory to AFTER include search path">;
519b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef iquote : JoinedOrSeparate<"-iquote">, MetaVarName<"<directory>">,
52033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Add directory to QUOTE include search path">;
521b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef isystem : JoinedOrSeparate<"-isystem">, MetaVarName<"<directory>">,
52233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Add directory to SYSTEM include search path">;
5239db9ad3f084d3c70cff01a10d4fd90901982b37bChris Lattnerdef iwithsysroot : JoinedOrSeparate<"-iwithsysroot">,MetaVarName<"<directory>">,
5249db9ad3f084d3c70cff01a10d4fd90901982b37bChris Lattner  HelpText<"Add directory to SYSTEM include search path, "
5259db9ad3f084d3c70cff01a10d4fd90901982b37bChris Lattner           "absolute paths are relative to -isysroot">;
526b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef iprefix : JoinedOrSeparate<"-iprefix">, MetaVarName<"<prefix>">,
52733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Set the -iwithprefix/-iwithprefixbefore prefix">;
528b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef iwithprefix : JoinedOrSeparate<"-iwithprefix">, MetaVarName<"<dir>">,
52933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Set directory to SYSTEM include search path with prefix">;
530e4cb2a4b4ad6b9596f9109945a5b3a87949f375bMike Stumpdef iwithprefixbefore : JoinedOrSeparate<"-iwithprefixbefore">,
531e4cb2a4b4ad6b9596f9109945a5b3a87949f375bMike Stump  MetaVarName<"<dir>">,
53233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Set directory to include search path with prefix">;
533b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef isysroot : JoinedOrSeparate<"-isysroot">, MetaVarName<"<dir>">,
53433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Set the system root directory (usually /)">;
53580c26f44a6f8d859a2a3babb06bd3ca8d86f2623Daniel Dunbardef cxx_system_include : Separate<"-cxx-system-include">,
53680c26f44a6f8d859a2a3babb06bd3ca8d86f2623Daniel Dunbar  HelpText<"Add a system #include directory for the C++ standard library">;
53733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef v : Flag<"-v">, HelpText<"Enable verbose output">;
53833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
53933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
54033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar// Preprocessor Options
54133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
54233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
543b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef D : JoinedOrSeparate<"-D">, MetaVarName<"<macro>">,
54433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Predefine the specified macro">;
545b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef include_ : JoinedOrSeparate<"-include">, MetaVarName<"<file>">, EnumName<"include">,
54633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Include file before parsing">;
547b94ffa4a641b71c7c6155cddc7dc384f8a45c9f1Daniel Dunbardef imacros : JoinedOrSeparate<"-imacros">, MetaVarName<"<file>">,
54833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Include macros from file before parsing">;
549b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef include_pch : Separate<"-include-pch">, MetaVarName<"<file>">,
55033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Include precompiled header file">;
551b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef include_pth : Separate<"-include-pth">, MetaVarName<"<file>">,
55233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Include file before parsing">;
553f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregordef preamble_bytes_EQ : Joined<"-preamble-bytes=">,
5543d398aa5c2be8919bbc0144bce611c48119bc861Douglas Gregor  HelpText<"Assume that the precompiled header is a precompiled preamble "
5553d398aa5c2be8919bbc0144bce611c48119bc861Douglas Gregor           "covering the first N bytes of the main file">;
556b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef token_cache : Separate<"-token-cache">, MetaVarName<"<path>">,
55733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Use specified token cache file">;
558b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef U : JoinedOrSeparate<"-U">, MetaVarName<"<macro>">,
55933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Undefine the specified macro">;
560b737fb12cbf9617edc5720fba8b6aed118c84771Daniel Dunbardef undef : Flag<"-undef">, MetaVarName<"<macro>">,
56133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"undef all system defines">;
56294dc8f640ebea52241412512ed48601626edbc58Douglas Gregordef detailed_preprocessing_record : Flag<"-detailed-preprocessing-record">,
56394dc8f640ebea52241412512ed48601626edbc58Douglas Gregor  HelpText<"include a detailed record of preprocessing actions">;
56494dc8f640ebea52241412512ed48601626edbc58Douglas Gregor  
56533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
56633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar// Preprocessed Output Options
56733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar//===----------------------------------------------------------------------===//
56833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar
56933a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef P : Flag<"-P">,
57033a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Disable linemarker output in -E mode">;
57133a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef C : Flag<"-C">,
57233a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable comment output in -E mode">;
57333a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef CC : Flag<"-CC">,
57433a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Enable comment output in -E mode, even from macro expansions">;
57533a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef dM : Flag<"-dM">,
57633a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Print macro definitions in -E mode instead of normal output">;
57733a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbardef dD : Flag<"-dD">,
57833a33d8abd7a3d49eacc05e40c00b00634bf1ee9Daniel Dunbar  HelpText<"Print macro definitions in -E mode in addition to normal output">;
579f7c16d903f11814e2d6780e2a2e189b7a7afc4edDaniel Dunbardef H : Flag<"-H">,
580f7c16d903f11814e2d6780e2a2e189b7a7afc4edDaniel Dunbar  HelpText<"Show header includes and nesting depth">;
581