]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Driver / CLCompatOptions.td
1 //===--- CLCompatOptions.td - Options for clang-cl ------------------------===//
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-cl.
11 //
12 //===----------------------------------------------------------------------===//
13
14 def cl_Group : OptionGroup<"<clang-cl options>">, Flags<[CLOption]>,
15   HelpText<"CL.EXE COMPATIBILITY OPTIONS">;
16
17 def cl_compile_Group : OptionGroup<"<clang-cl compile-only options>">,
18   Group<cl_Group>;
19
20 def cl_ignored_Group : OptionGroup<"<clang-cl ignored options>">,
21   Group<cl_Group>;
22
23 class CLFlag<string name> : Option<["/", "-"], name, KIND_FLAG>,
24   Group<cl_Group>, Flags<[CLOption, DriverOption]>;
25
26 class CLCompileFlag<string name> : Option<["/", "-"], name, KIND_FLAG>,
27   Group<cl_compile_Group>, Flags<[CLOption, DriverOption]>;
28
29 class CLIgnoredFlag<string name> : Option<["/", "-"], name, KIND_FLAG>,
30   Group<cl_ignored_Group>, Flags<[CLOption, DriverOption]>;
31
32 class CLJoined<string name> : Option<["/", "-"], name, KIND_JOINED>,
33   Group<cl_Group>, Flags<[CLOption, DriverOption]>;
34
35 class CLCompileJoined<string name> : Option<["/", "-"], name, KIND_JOINED>,
36   Group<cl_compile_Group>, Flags<[CLOption, DriverOption]>;
37
38 class CLIgnoredJoined<string name> : Option<["/", "-"], name, KIND_JOINED>,
39   Group<cl_ignored_Group>, Flags<[CLOption, DriverOption, HelpHidden]>;
40
41 class CLJoinedOrSeparate<string name> : Option<["/", "-"], name,
42   KIND_JOINED_OR_SEPARATE>, Group<cl_Group>, Flags<[CLOption, DriverOption]>;
43
44 class CLCompileJoinedOrSeparate<string name> : Option<["/", "-"], name,
45   KIND_JOINED_OR_SEPARATE>, Group<cl_compile_Group>,
46   Flags<[CLOption, DriverOption]>;
47
48 class CLRemainingArgsJoined<string name> : Option<["/", "-"], name,
49   KIND_REMAINING_ARGS_JOINED>, Group<cl_Group>, Flags<[CLOption, DriverOption]>;
50
51 // Aliases:
52 // (We don't put any of these in cl_compile_Group as the options they alias are
53 // already in the right group.)
54
55 def _SLASH_Brepro : CLFlag<"Brepro">,
56   HelpText<"Emit an object file which can be reproduced over time">,
57   Alias<mno_incremental_linker_compatible>;
58 def _SLASH_Brepro_ : CLFlag<"Brepro-">,
59   HelpText<"Emit an object file which cannot be reproduced over time">,
60   Alias<mincremental_linker_compatible>;
61 def _SLASH_C : CLFlag<"C">,
62   HelpText<"Don't discard comments when preprocessing">, Alias<C>;
63 def _SLASH_c : CLFlag<"c">, HelpText<"Compile only">, Alias<c>;
64 def _SLASH_d1reportAllClassLayout : CLFlag<"d1reportAllClassLayout">,
65   HelpText<"Dump record layout information">, Alias<fdump_record_layouts>;
66 def _SLASH_diagnostics_caret : CLFlag<"diagnostics:caret">,
67   HelpText<"Enable caret and column diagnostics (on by default)">;
68 def _SLASH_diagnostics_column : CLFlag<"diagnostics:column">,
69   HelpText<"Disable caret diagnostics but keep column info">;
70 def _SLASH_diagnostics_classic : CLFlag<"diagnostics:classic">,
71   HelpText<"Disable column and caret diagnostics">;
72 def _SLASH_D : CLJoinedOrSeparate<"D">, HelpText<"Define macro">,
73   MetaVarName<"<macro[=value]>">, Alias<D>;
74 def _SLASH_E : CLFlag<"E">, HelpText<"Preprocess to stdout">, Alias<E>;
75 def _SLASH_fp_except : CLFlag<"fp:except">, HelpText<"">, Alias<ftrapping_math>;
76 def _SLASH_fp_except_ : CLFlag<"fp:except-">,
77   HelpText<"">, Alias<fno_trapping_math>;
78 def _SLASH_fp_fast : CLFlag<"fp:fast">, HelpText<"">, Alias<ffast_math>;
79 def _SLASH_fp_precise : CLFlag<"fp:precise">,
80   HelpText<"">, Alias<fno_fast_math>;
81 def _SLASH_fp_strict : CLFlag<"fp:strict">, HelpText<"">, Alias<fno_fast_math>;
82 def _SLASH_GA : CLFlag<"GA">, Alias<ftlsmodel_EQ>, AliasArgs<["local-exec"]>,
83   HelpText<"Assume thread-local variables are defined in the executable">;
84 def _SLASH_GR : CLFlag<"GR">, HelpText<"Enable emission of RTTI data">;
85 def _SLASH_GR_ : CLFlag<"GR-">, HelpText<"Disable emission of RTTI data">;
86 def _SLASH_GF_ : CLFlag<"GF-">, HelpText<"Disable string pooling">,
87   Alias<fwritable_strings>;
88 def _SLASH_GS : CLFlag<"GS">, HelpText<"Enable buffer security check">;
89 def _SLASH_GS_ : CLFlag<"GS-">, HelpText<"Disable buffer security check">;
90 def _SLASH_Gs : CLJoined<"Gs">, HelpText<"Set stack probe size">,
91   Alias<mstack_probe_size>;
92 def _SLASH_Gy : CLFlag<"Gy">, HelpText<"Put each function in its own section">,
93   Alias<ffunction_sections>;
94 def _SLASH_Gy_ : CLFlag<"Gy-">,
95   HelpText<"Don't put each function in its own section">,
96   Alias<fno_function_sections>;
97 def _SLASH_Gw : CLFlag<"Gw">, HelpText<"Put each data item in its own section">,
98   Alias<fdata_sections>;
99 def _SLASH_Gw_ : CLFlag<"Gw-">,
100   HelpText<"Don't put each data item in its own section">,
101   Alias<fno_data_sections>;
102 def _SLASH_help : CLFlag<"help">, Alias<help>,
103   HelpText<"Display available options">;
104 def _SLASH_HELP : CLFlag<"HELP">, Alias<help>;
105 def _SLASH_I : CLJoinedOrSeparate<"I">,
106   HelpText<"Add directory to include search path">, MetaVarName<"<dir>">,
107   Alias<I>;
108 def _SLASH_J : CLFlag<"J">, HelpText<"Make char type unsigned">,
109   Alias<funsigned_char>;
110 def _SLASH_O0 : CLFlag<"O0">, Alias<O0>;
111 // /Oy- is handled by the /O option because /Oy- only has an effect on 32-bit.
112 def _SLASH_O : CLJoined<"O">, HelpText<"Optimization level">;
113 def _SLASH_Od : CLFlag<"Od">, HelpText<"Disable optimization">, Alias<O0>;
114 def _SLASH_Oi : CLFlag<"Oi">, HelpText<"Enable use of builtin functions">,
115   Alias<fbuiltin>;
116 def _SLASH_Oi_ : CLFlag<"Oi-">, HelpText<"Disable use of builtin functions">,
117   Alias<fno_builtin>;
118 def _SLASH_Os : CLFlag<"Os">, HelpText<"Optimize for size">, Alias<O>,
119   AliasArgs<["s"]>;
120 def _SLASH_Ot : CLFlag<"Ot">, HelpText<"Optimize for speed">, Alias<O>,
121   AliasArgs<["2"]>;
122 def _SLASH_QUESTION : CLFlag<"?">, Alias<help>,
123   HelpText<"Display available options">;
124 def _SLASH_Qvec : CLFlag<"Qvec">,
125   HelpText<"Enable the loop vectorization passes">, Alias<fvectorize>;
126 def _SLASH_Qvec_ : CLFlag<"Qvec-">,
127   HelpText<"Disable the loop vectorization passes">, Alias<fno_vectorize>;
128 def _SLASH_showIncludes : CLFlag<"showIncludes">,
129   HelpText<"Print info about included files to stderr">,
130   Alias<show_includes>;
131 def _SLASH_source_charset : CLCompileJoined<"source-charset:">,
132   HelpText<"Source encoding, supports only UTF-8">, Alias<finput_charset_EQ>;
133 def _SLASH_execution_charset : CLCompileJoined<"execution-charset:">,
134   HelpText<"Runtime encoding, supports only UTF-8">, Alias<fexec_charset_EQ>;
135 def _SLASH_std : CLCompileJoined<"std:">,
136   HelpText<"Language standard to compile for">;
137 def _SLASH_U : CLJoinedOrSeparate<"U">, HelpText<"Undefine macro">,
138   MetaVarName<"<macro>">, Alias<U>;
139 def _SLASH_validate_charset : CLFlag<"validate-charset">,
140   Alias<W_Joined>, AliasArgs<["invalid-source-encoding"]>;
141 def _SLASH_validate_charset_ : CLFlag<"validate-charset-">,
142   Alias<W_Joined>, AliasArgs<["no-invalid-source-encoding"]>;
143 def _SLASH_W0 : CLFlag<"W0">, HelpText<"Disable all warnings">, Alias<w>;
144 def _SLASH_W1 : CLFlag<"W1">, HelpText<"Enable -Wall">, Alias<Wall>;
145 def _SLASH_W2 : CLFlag<"W2">, HelpText<"Enable -Wall">, Alias<Wall>;
146 def _SLASH_W3 : CLFlag<"W3">, HelpText<"Enable -Wall">, Alias<Wall>;
147 def _SLASH_W4 : CLFlag<"W4">, HelpText<"Enable -Wall and -Wextra">, Alias<WCL4>;
148 def _SLASH_Wall : CLFlag<"Wall">, HelpText<"Enable -Weverything">,
149   Alias<W_Joined>, AliasArgs<["everything"]>;
150 def _SLASH_WX : CLFlag<"WX">, HelpText<"Treat warnings as errors">,
151   Alias<W_Joined>, AliasArgs<["error"]>;
152 def _SLASH_WX_ : CLFlag<"WX-">, HelpText<"Do not treat warnings as errors">,
153   Alias<W_Joined>, AliasArgs<["no-error"]>;
154 def _SLASH_w_flag : CLFlag<"w">, HelpText<"Disable all warnings">, Alias<w>;
155 def _SLASH_wd4005 : CLFlag<"wd4005">, Alias<W_Joined>,
156   AliasArgs<["no-macro-redefined"]>;
157 def _SLASH_wd4018 : CLFlag<"wd4018">, Alias<W_Joined>,
158   AliasArgs<["no-sign-compare"]>;
159 def _SLASH_wd4100 : CLFlag<"wd4100">, Alias<W_Joined>,
160   AliasArgs<["no-unused-parameter"]>;
161 def _SLASH_wd4910 : CLFlag<"wd4910">, Alias<W_Joined>,
162   AliasArgs<["no-dllexport-explicit-instantiation-decl"]>;
163 def _SLASH_wd4996 : CLFlag<"wd4996">, Alias<W_Joined>,
164   AliasArgs<["no-deprecated-declarations"]>;
165 def _SLASH_vd : CLJoined<"vd">, HelpText<"Control vtordisp placement">,
166   Alias<vtordisp_mode_EQ>;
167 def _SLASH_Zc_sizedDealloc : CLFlag<"Zc:sizedDealloc">,
168   HelpText<"Enable C++14 sized global deallocation functions">,
169   Alias<fsized_deallocation>;
170 def _SLASH_Zc_sizedDealloc_ : CLFlag<"Zc:sizedDealloc-">,
171   HelpText<"Disable C++14 sized global deallocation functions">,
172   Alias<fno_sized_deallocation>;
173 def _SLASH_Zc_strictStrings : CLFlag<"Zc:strictStrings">,
174   HelpText<"Treat string literals as const">, Alias<W_Joined>,
175   AliasArgs<["error=c++11-compat-deprecated-writable-strings"]>;
176 def _SLASH_Zc_threadSafeInit : CLFlag<"Zc:threadSafeInit">,
177   HelpText<"Enable thread-safe initialization of static variables">,
178   Alias<fthreadsafe_statics>;
179 def _SLASH_Zc_threadSafeInit_ : CLFlag<"Zc:threadSafeInit-">,
180   HelpText<"Disable thread-safe initialization of static variables">,
181   Alias<fno_threadsafe_statics>;
182 def _SLASH_Zc_trigraphs : CLFlag<"Zc:trigraphs">,
183   HelpText<"Enable trigraphs">, Alias<ftrigraphs>;
184 def _SLASH_Zc_trigraphs_off : CLFlag<"Zc:trigraphs-">,
185   HelpText<"Disable trigraphs (default)">, Alias<fno_trigraphs>;
186 def _SLASH_Zc_twoPhase : CLFlag<"Zc:twoPhase">,
187   HelpText<"Enable two-phase name lookup in templates">,
188   Alias<fno_delayed_template_parsing>;
189 def _SLASH_Zc_twoPhase_ : CLFlag<"Zc:twoPhase-">,
190   HelpText<"Disable two-phase name lookup in templates">,
191   Alias<fdelayed_template_parsing>;
192 def _SLASH_Z7 : CLFlag<"Z7">,
193   HelpText<"Enable CodeView debug information in object files">;
194 def _SLASH_Zd : CLFlag<"Zd">,
195   HelpText<"Emit debug line number tables only">;
196 def _SLASH_Zi : CLFlag<"Zi">, Alias<_SLASH_Z7>,
197   HelpText<"Alias for /Z7. Does not produce PDBs.">;
198 def _SLASH_Zp : CLJoined<"Zp">,
199   HelpText<"Specify the default maximum struct packing alignment">,
200   Alias<fpack_struct_EQ>;
201 def _SLASH_Zp_flag : CLFlag<"Zp">,
202   HelpText<"Set the default maximum struct packing alignment to 1">,
203   Alias<fpack_struct_EQ>, AliasArgs<["1"]>;
204 def _SLASH_Zs : CLFlag<"Zs">, HelpText<"Syntax-check only">,
205   Alias<fsyntax_only>;
206
207
208 // Non-aliases:
209
210 def _SLASH_arch : CLCompileJoined<"arch:">,
211   HelpText<"Set architecture for code generation">;
212
213 def _SLASH_M_Group : OptionGroup<"</M group>">, Group<cl_compile_Group>;
214 def _SLASH_volatile_Group : OptionGroup<"</volatile group>">,
215   Group<cl_compile_Group>;
216
217 def _SLASH_EH : CLJoined<"EH">, HelpText<"Exception handling model">;
218 def _SLASH_EP : CLFlag<"EP">,
219   HelpText<"Disable linemarker output and preprocess to stdout">;
220 def _SLASH_FA : CLFlag<"FA">,
221   HelpText<"Output assembly code file during compilation">;
222 def _SLASH_Fa : CLJoined<"Fa">,
223   HelpText<"Output assembly code to this file during compilation (with /FA)">,
224   MetaVarName<"<file or directory>">;
225 def _SLASH_fallback : CLCompileFlag<"fallback">,
226   HelpText<"Fall back to cl.exe if clang-cl fails to compile">;
227 def _SLASH_FI : CLJoinedOrSeparate<"FI">,
228   HelpText<"Include file before parsing">, Alias<include_>;
229 def _SLASH_Fe : CLJoined<"Fe">,
230   HelpText<"Set output executable file or directory (ends in / or \\)">,
231   MetaVarName<"<file or directory>">;
232 def _SLASH_Fi : CLCompileJoined<"Fi">,
233   HelpText<"Set preprocess output file name (with /P)">,
234   MetaVarName<"<file>">;
235 def _SLASH_Fo : CLCompileJoined<"Fo">,
236   HelpText<"Set output object file, or directory (ends in / or \\) (with /c)">,
237   MetaVarName<"<file or directory>">;
238 def _SLASH_GX : CLFlag<"GX">,
239   HelpText<"Enable exception handling">;
240 def _SLASH_GX_ : CLFlag<"GX-">,
241   HelpText<"Disable exception handling">;
242 def _SLASH_imsvc : CLJoinedOrSeparate<"imsvc">,
243   HelpText<"Add directory to system include search path, as if part of %INCLUDE%">,
244   MetaVarName<"<dir>">;
245 def _SLASH_LD : CLFlag<"LD">, HelpText<"Create DLL">;
246 def _SLASH_LDd : CLFlag<"LDd">, HelpText<"Create debug DLL">;
247 def _SLASH_link : CLRemainingArgsJoined<"link">,
248   HelpText<"Forward options to the linker">, MetaVarName<"<options>">;
249 def _SLASH_MD : Option<["/", "-"], "MD", KIND_FLAG>, Group<_SLASH_M_Group>,
250   Flags<[CLOption, DriverOption]>, HelpText<"Use DLL run-time">;
251 def _SLASH_MDd : Option<["/", "-"], "MDd", KIND_FLAG>, Group<_SLASH_M_Group>,
252   Flags<[CLOption, DriverOption]>, HelpText<"Use DLL debug run-time">;
253 def _SLASH_MT : Option<["/", "-"], "MT", KIND_FLAG>, Group<_SLASH_M_Group>,
254   Flags<[CLOption, DriverOption]>, HelpText<"Use static run-time">;
255 def _SLASH_MTd : Option<["/", "-"], "MTd", KIND_FLAG>, Group<_SLASH_M_Group>,
256   Flags<[CLOption, DriverOption]>, HelpText<"Use static debug run-time">;
257 def _SLASH_o : CLJoinedOrSeparate<"o">,
258   HelpText<"Set output file or directory (ends in / or \\)">,
259   MetaVarName<"<file or directory>">;
260 def _SLASH_P : CLFlag<"P">, HelpText<"Preprocess to file">;
261 def _SLASH_Tc : CLCompileJoinedOrSeparate<"Tc">,
262   HelpText<"Specify a C source file">, MetaVarName<"<filename>">;
263 def _SLASH_TC : CLCompileFlag<"TC">, HelpText<"Treat all source files as C">;
264 def _SLASH_Tp : CLCompileJoinedOrSeparate<"Tp">,
265   HelpText<"Specify a C++ source file">, MetaVarName<"<filename>">;
266 def _SLASH_TP : CLCompileFlag<"TP">, HelpText<"Treat all source files as C++">;
267 def _SLASH_volatile_iso : Option<["/", "-"], "volatile:iso", KIND_FLAG>,
268   Group<_SLASH_volatile_Group>, Flags<[CLOption, DriverOption]>,
269   HelpText<"Volatile loads and stores have standard semantics">;
270 def _SLASH_vmb : CLFlag<"vmb">,
271   HelpText<"Use a best-case representation method for member pointers">;
272 def _SLASH_vmg : CLFlag<"vmg">,
273   HelpText<"Use a most-general representation for member pointers">;
274 def _SLASH_vms : CLFlag<"vms">,
275   HelpText<"Set the default most-general representation to single inheritance">;
276 def _SLASH_vmm : CLFlag<"vmm">,
277   HelpText<"Set the default most-general representation to "
278            "multiple inheritance">;
279 def _SLASH_vmv : CLFlag<"vmv">,
280   HelpText<"Set the default most-general representation to "
281            "virtual inheritance">;
282 def _SLASH_volatile_ms  : Option<["/", "-"], "volatile:ms", KIND_FLAG>,
283   Group<_SLASH_volatile_Group>, Flags<[CLOption, DriverOption]>,
284   HelpText<"Volatile loads and stores have acquire and release semantics">;
285 def _SLASH_Zl : CLFlag<"Zl">,
286   HelpText<"Don't mention any default libraries in the object file">;
287
288 def _SLASH_Yc : CLJoined<"Yc">,
289   HelpText<"Generate a pch file for all code up to and including <filename>">,
290   MetaVarName<"<filename>">;
291 def _SLASH_Yu : CLJoined<"Yu">,
292   HelpText<"Load a pch file and use it instead of all code up to "
293            "and including <filename>">,
294   MetaVarName<"<filename>">;
295 def _SLASH_Y_ : CLFlag<"Y-">,
296   HelpText<"Disable precompiled headers, overrides /Yc and /Yu">;
297 def _SLASH_Fp : CLJoined<"Fp">,
298   HelpText<"Set pch filename (with /Yc and /Yu)">, MetaVarName<"<filename>">;
299
300 def _SLASH_Gd : CLFlag<"Gd">,
301   HelpText<"Set __cdecl as a default calling convention">;
302 def _SLASH_Gr : CLFlag<"Gr">,
303   HelpText<"Set __fastcall as a default calling convention">;
304 def _SLASH_Gz : CLFlag<"Gz">,
305   HelpText<"Set __stdcall as a default calling convention">;
306 def _SLASH_Gv : CLFlag<"Gv">,
307   HelpText<"Set __vectorcall as a default calling convention">;
308 def _SLASH_Gregcall : CLFlag<"Gregcall">,
309   HelpText<"Set __regcall as a default calling convention">;
310
311 // Ignored:
312
313 def _SLASH_analyze_ : CLIgnoredFlag<"analyze-">;
314 def _SLASH_bigobj : CLIgnoredFlag<"bigobj">;
315 def _SLASH_cgthreads : CLIgnoredJoined<"cgthreads">;
316 def _SLASH_d2FastFail : CLIgnoredFlag<"d2FastFail">;
317 def _SLASH_d2Zi_PLUS : CLIgnoredFlag<"d2Zi+">;
318 def _SLASH_errorReport : CLIgnoredJoined<"errorReport">;
319 def _SLASH_FC : CLIgnoredFlag<"FC">;
320 def _SLASH_Fd : CLIgnoredJoined<"Fd">;
321 def _SLASH_FS : CLIgnoredFlag<"FS">;
322 def _SLASH_GF : CLIgnoredFlag<"GF">;
323 def _SLASH_kernel_ : CLIgnoredFlag<"kernel-">;
324 def _SLASH_nologo : CLIgnoredFlag<"nologo">;
325 def _SLASH_Og : CLIgnoredFlag<"Og">;
326 def _SLASH_openmp_ : CLIgnoredFlag<"openmp-">;
327 def _SLASH_RTC : CLIgnoredJoined<"RTC">;
328 def _SLASH_sdl : CLIgnoredFlag<"sdl">;
329 def _SLASH_sdl_ : CLIgnoredFlag<"sdl-">;
330 def _SLASH_utf8 : CLIgnoredFlag<"utf-8">,
331   HelpText<"Set source and runtime encoding to UTF-8 (default)">;
332 def _SLASH_w : CLIgnoredJoined<"w">;
333 def _SLASH_Zc_auto : CLIgnoredFlag<"Zc:auto">;
334 def _SLASH_Zc_forScope : CLIgnoredFlag<"Zc:forScope">;
335 def _SLASH_Zc_inline : CLIgnoredFlag<"Zc:inline">;
336 def _SLASH_Zc_rvalueCast : CLIgnoredFlag<"Zc:rvalueCast">;
337 def _SLASH_Zc_wchar_t : CLIgnoredFlag<"Zc:wchar_t">;
338 def _SLASH_Zc_ternary : CLIgnoredFlag<"Zc:ternary">;
339 def _SLASH_Zm : CLIgnoredJoined<"Zm">;
340 def _SLASH_Zo : CLIgnoredFlag<"Zo">;
341 def _SLASH_Zo_ : CLIgnoredFlag<"Zo-">;
342
343
344 // Unsupported:
345
346 def _SLASH_AI : CLJoined<"AI">;
347 def _SLASH_clr : CLJoined<"clr">;
348 def _SLASH_doc : CLJoined<"doc">;
349 def _SLASH_FA_joined : CLJoined<"FA">;
350 def _SLASH_favor : CLJoined<"favor">;
351 def _SLASH_F : CLFlag<"F">;
352 def _SLASH_Fm : CLJoined<"Fm">;
353 def _SLASH_Fr : CLJoined<"Fr">;
354 def _SLASH_FR : CLJoined<"FR">;
355 def _SLASH_FU : CLJoinedOrSeparate<"FU">;
356 def _SLASH_Fx : CLFlag<"Fx">;
357 def _SLASH_G1 : CLFlag<"G1">;
358 def _SLASH_G2 : CLFlag<"G2">;
359 def _SLASH_Ge : CLFlag<"Ge">;
360 def _SLASH_Gh : CLFlag<"Gh">;
361 def _SLASH_GH : CLFlag<"GH">;
362 def _SLASH_GL : CLFlag<"GL">;
363 def _SLASH_GL_ : CLFlag<"GL-">;
364 def _SLASH_Gm : CLFlag<"Gm">;
365 def _SLASH_Gm_ : CLFlag<"Gm-">;
366 def _SLASH_GT : CLFlag<"GT">;
367 def _SLASH_Guard : CLJoined<"guard:">;
368 def _SLASH_GZ : CLFlag<"GZ">;
369 def _SLASH_H : CLFlag<"H">;
370 def _SLASH_homeparams : CLFlag<"homeparams">;
371 def _SLASH_hotpatch : CLFlag<"hotpatch">;
372 def _SLASH_kernel : CLFlag<"kernel">;
373 def _SLASH_LN : CLFlag<"LN">;
374 def _SLASH_MP : CLJoined<"MP">;
375 def _SLASH_openmp : CLFlag<"openmp">;
376 def _SLASH_Qfast_transcendentals : CLFlag<"Qfast_transcendentals">;
377 def _SLASH_QIfist : CLFlag<"QIfist">;
378 def _SLASH_Qimprecise_fwaits : CLFlag<"Qimprecise_fwaits">;
379 def _SLASH_Qpar : CLFlag<"Qpar">;
380 def _SLASH_Qvec_report : CLJoined<"Qvec-report">;
381 def _SLASH_u : CLFlag<"u">;
382 def _SLASH_V : CLFlag<"V">;
383 def _SLASH_WL : CLFlag<"WL">;
384 def _SLASH_Wp64 : CLFlag<"Wp64">;
385 def _SLASH_X : CLFlag<"X">;
386 def _SLASH_Yd : CLFlag<"Yd">;
387 def _SLASH_Yl : CLJoined<"Yl">;
388 def _SLASH_Za : CLFlag<"Za">;
389 def _SLASH_Zc : CLJoined<"Zc:">;
390 def _SLASH_Ze : CLFlag<"Ze">;
391 def _SLASH_Zg : CLFlag<"Zg">;
392 def _SLASH_ZI : CLFlag<"ZI">;
393 def _SLASH_ZW : CLJoined<"ZW">;