| //===--- Options.td - Options for clang -----------------------------------===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // This file defines the options accepted by clang. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| // Include the common option parsing interfaces. |
| include "llvm/Option/OptParser.td" |
| |
| ///////// |
| // Flags |
| |
| // DriverOption - The option is a "driver" option, and should not be forwarded |
| // to other tools. |
| def DriverOption : OptionFlag; |
| |
| // LinkerInput - The option is a linker input. |
| def LinkerInput : OptionFlag; |
| |
| // NoArgumentUnused - Don't report argument unused warnings for this option; this |
| // is useful for options like -static or -dynamic which a user may always end up |
| // passing, even if the platform defaults to (or only supports) that option. |
| def NoArgumentUnused : OptionFlag; |
| |
| // Unsupported - The option is unsupported, and the driver will reject command |
| // lines that use it. |
| def Unsupported : OptionFlag; |
| |
| // Ignored - The option is unsupported, and the driver will silently ignore it. |
| def Ignored : OptionFlag; |
| |
| // CoreOption - This is considered a "core" Clang option, available in both |
| // clang and clang-cl modes. |
| def CoreOption : OptionFlag; |
| |
| // CLOption - This is a cl.exe compatibility option. Options with this flag |
| // are made available when the driver is running in CL compatibility mode. |
| def CLOption : OptionFlag; |
| |
| // CC1Option - This option should be accepted by clang -cc1. |
| def CC1Option : OptionFlag; |
| |
| // CC1AsOption - This option should be accepted by clang -cc1as. |
| def CC1AsOption : OptionFlag; |
| |
| // NoDriverOption - This option should not be accepted by the driver. |
| def NoDriverOption : OptionFlag; |
| |
| // A short name to show in documentation. The name will be interpreted as rST. |
| class DocName<string name> { string DocName = name; } |
| |
| // A brief description to show in documentation, interpreted as rST. |
| class DocBrief<code descr> { code DocBrief = descr; } |
| |
| // Indicates that this group should be flattened into its parent when generating |
| // documentation. |
| class DocFlatten { bit DocFlatten = 1; } |
| |
| // Indicates that this warning is ignored, but accepted with a warning for |
| // GCC compatibility. |
| class IgnoredGCCCompat : Flags<[HelpHidden]> {} |
| |
| ///////// |
| // Groups |
| |
| def Action_Group : OptionGroup<"<action group>">, DocName<"Actions">, |
| DocBrief<[{The action to perform on the input.}]>; |
| |
| // Meta-group for options which are only used for compilation, |
| // and not linking etc. |
| def CompileOnly_Group : OptionGroup<"<CompileOnly group>">, |
| DocName<"Compilation flags">, DocBrief<[{ |
| Flags controlling the behavior of Clang during compilation. These flags have |
| no effect during actions that do not perform compilation.}]>; |
| |
| def Preprocessor_Group : OptionGroup<"<Preprocessor group>">, |
| Group<CompileOnly_Group>, |
| DocName<"Preprocessor flags">, DocBrief<[{ |
| Flags controlling the behavior of the Clang preprocessor.}]>; |
| |
| def IncludePath_Group : OptionGroup<"<I/i group>">, Group<Preprocessor_Group>, |
| DocName<"Include path management">, |
| DocBrief<[{ |
| Flags controlling how ``#include``\s are resolved to files.}]>; |
| |
| def I_Group : OptionGroup<"<I group>">, Group<IncludePath_Group>, DocFlatten; |
| def i_Group : OptionGroup<"<i group>">, Group<IncludePath_Group>, DocFlatten; |
| def clang_i_Group : OptionGroup<"<clang i group>">, Group<i_Group>, DocFlatten; |
| |
| def M_Group : OptionGroup<"<M group>">, Group<Preprocessor_Group>, |
| DocName<"Dependency file generation">, DocBrief<[{ |
| Flags controlling generation of a dependency file for ``make``-like build |
| systems.}]>; |
| |
| def d_Group : OptionGroup<"<d group>">, Group<Preprocessor_Group>, |
| DocName<"Dumping preprocessor state">, DocBrief<[{ |
| Flags allowing the state of the preprocessor to be dumped in various ways.}]>; |
| |
| def Diag_Group : OptionGroup<"<W/R group>">, Group<CompileOnly_Group>, |
| DocName<"Diagnostic flags">, DocBrief<[{ |
| Flags controlling which warnings, errors, and remarks Clang will generate. |
| See the :doc:`full list of warning and remark flags <DiagnosticsReference>`.}]>; |
| |
| def R_Group : OptionGroup<"<R group>">, Group<Diag_Group>, DocFlatten; |
| def R_value_Group : OptionGroup<"<R (with value) group>">, Group<R_Group>, |
| DocFlatten; |
| def W_Group : OptionGroup<"<W group>">, Group<Diag_Group>, DocFlatten; |
| def W_value_Group : OptionGroup<"<W (with value) group>">, Group<W_Group>, |
| DocFlatten; |
| |
| def f_Group : OptionGroup<"<f group>">, Group<CompileOnly_Group>, |
| DocName<"Target-independent compilation options">; |
| |
| def f_clang_Group : OptionGroup<"<f (clang-only) group>">, |
| Group<CompileOnly_Group>, DocFlatten; |
| def pedantic_Group : OptionGroup<"<pedantic group>">, Group<f_Group>, |
| DocFlatten; |
| def opencl_Group : OptionGroup<"<opencl group>">, Group<f_Group>, |
| DocName<"OpenCL flags">; |
| |
| def m_Group : OptionGroup<"<m group>">, Group<CompileOnly_Group>, |
| DocName<"Target-dependent compilation options">; |
| |
| // Feature groups - these take command line options that correspond directly to |
| // target specific features and can be translated directly from command line |
| // options. |
| def m_aarch64_Features_Group : OptionGroup<"<aarch64 features group>">, |
| Group<m_Group>, DocName<"AARCH64">; |
| def m_amdgpu_Features_Group : OptionGroup<"<amdgpu features group>">, |
| Group<m_Group>, DocName<"AMDGPU">; |
| def m_arm_Features_Group : OptionGroup<"<arm features group>">, |
| Group<m_Group>, DocName<"ARM">; |
| def m_hexagon_Features_Group : OptionGroup<"<hexagon features group>">, |
| Group<m_Group>, DocName<"Hexagon">; |
| // The features added by this group will not be added to target features. |
| // These are explicitly handled. |
| def m_hexagon_Features_HVX_Group : OptionGroup<"<hexagon features group>">, |
| Group<m_Group>, DocName<"Hexagon">; |
| def m_mips_Features_Group : OptionGroup<"<mips features group>">, |
| Group<m_Group>, DocName<"MIPS">; |
| def m_ppc_Features_Group : OptionGroup<"<ppc features group>">, |
| Group<m_Group>, DocName<"PowerPC">; |
| def m_wasm_Features_Group : OptionGroup<"<wasm features group>">, |
| Group<m_Group>, DocName<"WebAssembly">; |
| def m_x86_Features_Group : OptionGroup<"<x86 features group>">, |
| Group<m_Group>, Flags<[CoreOption]>, DocName<"X86">; |
| def m_riscv_Features_Group : OptionGroup<"<riscv features group>">, |
| Group<m_Group>, DocName<"RISCV">; |
| |
| def m_libc_Group : OptionGroup<"<m libc group>">, Group<m_mips_Features_Group>, |
| Flags<[HelpHidden]>; |
| |
| def O_Group : OptionGroup<"<O group>">, Group<CompileOnly_Group>, |
| DocName<"Optimization level">, DocBrief<[{ |
| Flags controlling how much optimization should be performed.}]>; |
| |
| def DebugInfo_Group : OptionGroup<"<g group>">, Group<CompileOnly_Group>, |
| DocName<"Debug information generation">, DocBrief<[{ |
| Flags controlling how much and what kind of debug information should be |
| generated.}]>; |
| |
| def g_Group : OptionGroup<"<g group>">, Group<DebugInfo_Group>, |
| DocName<"Kind and level of debug information">; |
| def gN_Group : OptionGroup<"<gN group>">, Group<g_Group>, |
| DocName<"Debug level">; |
| def ggdbN_Group : OptionGroup<"<ggdbN group>">, Group<gN_Group>, DocFlatten; |
| def gTune_Group : OptionGroup<"<gTune group>">, Group<g_Group>, |
| DocName<"Debugger to tune debug information for">; |
| def g_flags_Group : OptionGroup<"<g flags group>">, Group<DebugInfo_Group>, |
| DocName<"Debug information flags">; |
| |
| def StaticAnalyzer_Group : OptionGroup<"<Static analyzer group>">, |
| DocName<"Static analyzer flags">, DocBrief<[{ |
| Flags controlling the behavior of the Clang Static Analyzer.}]>; |
| |
| // gfortran options that we recognize in the driver and pass along when |
| // invoking GCC to compile Fortran code. |
| def gfortran_Group : OptionGroup<"<gfortran group>">, |
| DocName<"Fortran compilation flags">, DocBrief<[{ |
| Flags that will be passed onto the ``gfortran`` compiler when Clang is given |
| a Fortran input.}]>; |
| |
| def Link_Group : OptionGroup<"<T/e/s/t/u group>">, DocName<"Linker flags">, |
| DocBrief<[{Flags that are passed on to the linker}]>; |
| def T_Group : OptionGroup<"<T group>">, Group<Link_Group>, DocFlatten; |
| def u_Group : OptionGroup<"<u group>">, Group<Link_Group>, DocFlatten; |
| |
| def reserved_lib_Group : OptionGroup<"<reserved libs group>">, |
| Flags<[Unsupported]>; |
| |
| // Temporary groups for clang options which we know we don't support, |
| // but don't want to verbosely warn the user about. |
| def clang_ignored_f_Group : OptionGroup<"<clang ignored f group>">, |
| Group<f_Group>, Flags<[Ignored]>; |
| def clang_ignored_m_Group : OptionGroup<"<clang ignored m group>">, |
| Group<m_Group>, Flags<[Ignored]>; |
| |
| // Group for clang options in the process of deprecation. |
| // Please include the version that deprecated the flag as comment to allow |
| // easier garbage collection. |
| def clang_ignored_legacy_options_Group : OptionGroup<"<clang legacy flags>">, |
| Group<f_Group>, Flags<[Ignored]>; |
| |
| // Retired with clang-5.0 |
| def : Flag<["-"], "fslp-vectorize-aggressive">, Group<clang_ignored_legacy_options_Group>; |
| def : Flag<["-"], "fno-slp-vectorize-aggressive">, Group<clang_ignored_legacy_options_Group>; |
| |
| // Group that ignores all gcc optimizations that won't be implemented |
| def clang_ignored_gcc_optimization_f_Group : OptionGroup< |
| "<clang_ignored_gcc_optimization_f_Group>">, Group<f_Group>, Flags<[Ignored]>; |
| |
| ///////// |
| // Options |
| |
| // The internal option ID must be a valid C++ identifier and results in a |
| // clang::driver::options::OPT_XX enum constant for XX. |
| // |
| // We want to unambiguously be able to refer to options from the driver source |
| // code, for this reason the option name is mangled into an ID. This mangling |
| // isn't guaranteed to have an inverse, but for practical purposes it does. |
| // |
| // The mangling scheme is to ignore the leading '-', and perform the following |
| // substitutions: |
| // _ => __ |
| // - => _ |
| // / => _SLASH |
| // # => _HASH |
| // ? => _QUESTION |
| // , => _COMMA |
| // = => _EQ |
| // C++ => CXX |
| // . => _ |
| |
| // Developer Driver Options |
| |
| def internal_Group : OptionGroup<"<clang internal options>">, Flags<[HelpHidden]>; |
| def internal_driver_Group : OptionGroup<"<clang driver internal options>">, |
| Group<internal_Group>, HelpText<"DRIVER OPTIONS">; |
| def internal_debug_Group : |
| OptionGroup<"<clang debug/development internal options>">, |
| Group<internal_Group>, HelpText<"DEBUG/DEVELOPMENT OPTIONS">; |
| |
| class InternalDriverOpt : Group<internal_driver_Group>, |
| Flags<[DriverOption, HelpHidden]>; |
| def driver_mode : Joined<["--"], "driver-mode=">, Group<internal_driver_Group>, |
| Flags<[CoreOption, DriverOption, HelpHidden]>, |
| HelpText<"Set the driver mode to either 'gcc', 'g++', 'cpp', or 'cl'">; |
| def rsp_quoting : Joined<["--"], "rsp-quoting=">, Group<internal_driver_Group>, |
| Flags<[CoreOption, DriverOption, HelpHidden]>, |
| HelpText<"Set the rsp quoting to either 'posix', or 'windows'">; |
| def ccc_gcc_name : Separate<["-"], "ccc-gcc-name">, InternalDriverOpt, |
| HelpText<"Name for native GCC compiler">, |
| MetaVarName<"<gcc-path>">; |
| def ccc_pch_is_pch : Flag<["-"], "ccc-pch-is-pch">, InternalDriverOpt, |
| HelpText<"Use lazy PCH for precompiled headers">; |
| def ccc_pch_is_pth : Flag<["-"], "ccc-pch-is-pth">, InternalDriverOpt, |
| HelpText<"Use pretokenized headers for precompiled headers">; |
| |
| class InternalDebugOpt : Group<internal_debug_Group>, |
| Flags<[DriverOption, HelpHidden, CoreOption]>; |
| def ccc_install_dir : Separate<["-"], "ccc-install-dir">, InternalDebugOpt, |
| HelpText<"Simulate installation in the given directory">; |
| def ccc_print_phases : Flag<["-"], "ccc-print-phases">, InternalDebugOpt, |
| HelpText<"Dump list of actions to perform">; |
| def ccc_print_bindings : Flag<["-"], "ccc-print-bindings">, InternalDebugOpt, |
| HelpText<"Show bindings of tools to actions">; |
| |
| def ccc_arcmt_check : Flag<["-"], "ccc-arcmt-check">, InternalDriverOpt, |
| HelpText<"Check for ARC migration issues that need manual handling">; |
| def ccc_arcmt_modify : Flag<["-"], "ccc-arcmt-modify">, InternalDriverOpt, |
| HelpText<"Apply modifications to files to conform to ARC">; |
| def ccc_arcmt_migrate : Separate<["-"], "ccc-arcmt-migrate">, InternalDriverOpt, |
| HelpText<"Apply modifications and produces temporary files that conform to ARC">; |
| def arcmt_migrate_report_output : Separate<["-"], "arcmt-migrate-report-output">, |
| HelpText<"Output path for the plist report">, Flags<[CC1Option]>; |
| def arcmt_migrate_emit_arc_errors : Flag<["-"], "arcmt-migrate-emit-errors">, |
| HelpText<"Emit ARC errors even if the migrator can fix them">, |
| Flags<[CC1Option]>; |
| def gen_reproducer: Flag<["-"], "gen-reproducer">, InternalDebugOpt, |
| HelpText<"Auto-generates preprocessed source files and a reproduction script">; |
| |
| def _migrate : Flag<["--"], "migrate">, Flags<[DriverOption]>, |
| HelpText<"Run the migrator">; |
| def ccc_objcmt_migrate : Separate<["-"], "ccc-objcmt-migrate">, |
| InternalDriverOpt, |
| HelpText<"Apply modifications and produces temporary files to migrate to " |
| "modern ObjC syntax">; |
| def objcmt_migrate_literals : Flag<["-"], "objcmt-migrate-literals">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC literals">; |
| def objcmt_migrate_subscripting : Flag<["-"], "objcmt-migrate-subscripting">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC subscripting">; |
| def objcmt_migrate_property : Flag<["-"], "objcmt-migrate-property">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC property">; |
| def objcmt_migrate_all : Flag<["-"], "objcmt-migrate-all">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC">; |
| def objcmt_migrate_readonly_property : Flag<["-"], "objcmt-migrate-readonly-property">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC readonly property">; |
| def objcmt_migrate_readwrite_property : Flag<["-"], "objcmt-migrate-readwrite-property">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to modern ObjC readwrite property">; |
| def objcmt_migrate_property_dot_syntax : Flag<["-"], "objcmt-migrate-property-dot-syntax">, Flags<[CC1Option]>, |
| HelpText<"Enable migration of setter/getter messages to property-dot syntax">; |
| def objcmt_migrate_annotation : Flag<["-"], "objcmt-migrate-annotation">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to property and method annotations">; |
| def objcmt_migrate_instancetype : Flag<["-"], "objcmt-migrate-instancetype">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to infer instancetype for method result type">; |
| def objcmt_migrate_nsmacros : Flag<["-"], "objcmt-migrate-ns-macros">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to NS_ENUM/NS_OPTIONS macros">; |
| def objcmt_migrate_protocol_conformance : Flag<["-"], "objcmt-migrate-protocol-conformance">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to add protocol conformance on classes">; |
| def objcmt_atomic_property : Flag<["-"], "objcmt-atomic-property">, Flags<[CC1Option]>, |
| HelpText<"Make migration to 'atomic' properties">; |
| def objcmt_returns_innerpointer_property : Flag<["-"], "objcmt-returns-innerpointer-property">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to annotate property with NS_RETURNS_INNER_POINTER">; |
| def objcmt_ns_nonatomic_iosonly: Flag<["-"], "objcmt-ns-nonatomic-iosonly">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to use NS_NONATOMIC_IOSONLY macro for setting property's 'atomic' attribute">; |
| def objcmt_migrate_designated_init : Flag<["-"], "objcmt-migrate-designated-init">, Flags<[CC1Option]>, |
| HelpText<"Enable migration to infer NS_DESIGNATED_INITIALIZER for initializer methods">; |
| def objcmt_whitelist_dir_path: Joined<["-"], "objcmt-whitelist-dir-path=">, Flags<[CC1Option]>, |
| HelpText<"Only modify files with a filename contained in the provided directory path">; |
| // The misspelt "white-list" [sic] alias is due for removal. |
| def : Joined<["-"], "objcmt-white-list-dir-path=">, Flags<[CC1Option]>, |
| Alias<objcmt_whitelist_dir_path>; |
| |
| // Make sure all other -ccc- options are rejected. |
| def ccc_ : Joined<["-"], "ccc-">, Group<internal_Group>, Flags<[Unsupported]>; |
| |
| // Standard Options |
| |
| def _HASH_HASH_HASH : Flag<["-"], "###">, Flags<[DriverOption, CoreOption]>, |
| HelpText<"Print (but do not run) the commands to run for this compilation">; |
| def _DASH_DASH : Option<["--"], "", KIND_REMAINING_ARGS>, |
| Flags<[DriverOption, CoreOption]>; |
| def A : JoinedOrSeparate<["-"], "A">, Flags<[RenderJoined]>, Group<gfortran_Group>; |
| def B : JoinedOrSeparate<["-"], "B">, MetaVarName<"<dir>">, |
| HelpText<"Add <dir> to search path for binaries and object files used implicitly">; |
| def CC : Flag<["-"], "CC">, Flags<[CC1Option]>, Group<Preprocessor_Group>, |
| HelpText<"Include comments from within macros in preprocessed output">; |
| def C : Flag<["-"], "C">, Flags<[CC1Option]>, Group<Preprocessor_Group>, |
| HelpText<"Include comments in preprocessed output">; |
| def D : JoinedOrSeparate<["-"], "D">, Group<Preprocessor_Group>, |
| Flags<[CC1Option]>, MetaVarName<"<macro>=<value>">, |
| HelpText<"Define <macro> to <value> (or 1 if <value> omitted)">; |
| def E : Flag<["-"], "E">, Flags<[DriverOption,CC1Option]>, Group<Action_Group>, |
| HelpText<"Only run the preprocessor">; |
| def F : JoinedOrSeparate<["-"], "F">, Flags<[RenderJoined,CC1Option]>, |
| HelpText<"Add directory to framework include search path">; |
| def G : JoinedOrSeparate<["-"], "G">, Flags<[DriverOption]>, Group<m_Group>, |
| MetaVarName<"<size>">, HelpText<"Put objects of at most <size> bytes " |
| "into small data section (MIPS / Hexagon)">; |
| def G_EQ : Joined<["-"], "G=">, Flags<[DriverOption]>, Group<m_Group>, Alias<G>; |
| def H : Flag<["-"], "H">, Flags<[CC1Option]>, Group<Preprocessor_Group>, |
| HelpText<"Show header includes and nesting depth">; |
| def I_ : Flag<["-"], "I-">, Group<I_Group>, |
| HelpText<"Restrict all prior -I flags to double-quoted inclusion and " |
| "remove current directory from include path">; |
| def I : JoinedOrSeparate<["-"], "I">, Group<I_Group>, |
| Flags<[CC1Option,CC1AsOption]>, MetaVarName<"<dir>">, |
| HelpText<"Add directory to include search path">; |
| def L : JoinedOrSeparate<["-"], "L">, Flags<[RenderJoined]>, Group<Link_Group>, |
| MetaVarName<"<dir>">, HelpText<"Add directory to library search path">; |
| def MD : Flag<["-"], "MD">, Group<M_Group>, |
| HelpText<"Write a depfile containing user and system headers">; |
| def MMD : Flag<["-"], "MMD">, Group<M_Group>, |
| HelpText<"Write a depfile containing user headers">; |
| def M : Flag<["-"], "M">, Group<M_Group>, |
| HelpText<"Like -MD, but also implies -E and writes to stdout by default">; |
| def MM : Flag<["-"], "MM">, Group<M_Group>, |
| HelpText<"Like -MMD, but also implies -E and writes to stdout by default">; |
| def MF : JoinedOrSeparate<["-"], "MF">, Group<M_Group>, |
| HelpText<"Write depfile output from -MMD, -MD, -MM, or -M to <file>">, |
| MetaVarName<"<file>">; |
| def MG : Flag<["-"], "MG">, Group<M_Group>, Flags<[CC1Option]>, |
| HelpText<"Add missing headers to depfile">; |
| def MJ : JoinedOrSeparate<["-"], "MJ">, Group<M_Group>, |
| HelpText<"Write a compilation database entry per input">; |
| def MP : Flag<["-"], "MP">, Group<M_Group>, Flags<[CC1Option]>, |
| HelpText<"Create phony target for each dependency (other than main file)">; |
| def MQ : JoinedOrSeparate<["-"], "MQ">, Group<M_Group>, Flags<[CC1Option]>, |
| HelpText<"Specify name of main file output to quote in depfile">; |
| def MT : JoinedOrSeparate<["-"], "MT">, Group<M_Group>, Flags<[CC1Option]>, |
| HelpText<"Specify name of main file output in depfile">; |
| def MV : Flag<["-"], "MV">, Group<M_Group>, Flags<[CC1Option]>, |
| HelpText<"Use NMake/Jom format for the depfile">; |
| def Mach : Flag<["-"], "Mach">, Group<Link_Group>; |
| def O0 : Flag<["-"], "O0">, Group<O_Group>, Flags<[CC1Option, HelpHidden]>; |
| def O4 : Flag<["-"], "O4">, Group<O_Group>, Flags<[CC1Option, HelpHidden]>; |
| def ObjCXX : Flag<["-"], "ObjC++">, Flags<[DriverOption]>, |
| HelpText<"Treat source input files as Objective-C++ inputs">; |
| def ObjC : Flag<["-"], "ObjC">, Flags<[DriverOption]>, |
| HelpText<"Treat source input files as Objective-C inputs">; |
| def O : Joined<["-"], "O">, Group<O_Group>, Flags<[CC1Option]>; |
| def O_flag : Flag<["-"], "O">, Flags<[CC1Option]>, Alias<O>, AliasArgs<["2"]>; |
| def Ofast : Joined<["-"], "Ofast">, Group<O_Group>, Flags<[CC1Option]>; |
| def P : Flag<["-"], "P">, Flags<[CC1Option]>, Group<Preprocessor_Group>, |
| HelpText<"Disable linemarker output in -E mode">; |
| def Qy : Flag<["-"], "Qy">, Flags<[CC1Option]>, |
| HelpText<"Emit metadata containing compiler name and version">; |
| def Qn : Flag<["-"], "Qn">, Flags<[CC1Option]>, |
| HelpText<"Do not emit metadata containing compiler name and version">; |
| def : Flag<["-"], "fident">, Group<f_Group>, Alias<Qy>, Flags<[CC1Option]>; |
| def : Flag<["-"], "fno-ident">, Group<f_Group>, Alias<Qn>, Flags<[CC1Option]>; |
| def Qunused_arguments : Flag<["-"], "Qunused-arguments">, Flags<[DriverOption, CoreOption]>, |
| HelpText<"Don't emit warning for unused driver arguments">; |
| def Q : Flag<["-"], "Q">, IgnoredGCCCompat; |
| def Rpass_EQ : Joined<["-"], "Rpass=">, Group<R_value_Group>, Flags<[CC1Option]>, |
| HelpText<"Report transformations performed by optimization passes whose " |
| "name matches the given POSIX regular expression">; |
| def Rpass_missed_EQ : Joined<["-"], "Rpass-missed=">, Group<R_value_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Report missed transformations by optimization passes whose " |
| "name matches the given POSIX regular expression">; |
| def Rpass_analysis_EQ : Joined<["-"], "Rpass-analysis=">, Group<R_value_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Report transformation analysis from optimization passes whose " |
| "name matches the given POSIX regular expression">; |
| def R_Joined : Joined<["-"], "R">, Group<R_Group>, Flags<[CC1Option, CoreOption]>, |
| MetaVarName<"<remark>">, HelpText<"Enable the specified remark">; |
| def S : Flag<["-"], "S">, Flags<[DriverOption,CC1Option]>, Group<Action_Group>, |
| HelpText<"Only run preprocess and compilation steps">; |
| def Tbss : JoinedOrSeparate<["-"], "Tbss">, Group<T_Group>, |
| MetaVarName<"<addr>">, HelpText<"Set starting address of BSS to <addr>">; |
| def Tdata : JoinedOrSeparate<["-"], "Tdata">, Group<T_Group>, |
| MetaVarName<"<addr>">, HelpText<"Set starting address of DATA to <addr>">; |
| def Ttext : JoinedOrSeparate<["-"], "Ttext">, Group<T_Group>, |
| MetaVarName<"<addr>">, HelpText<"Set starting address of TEXT to <addr>">; |
| def T : JoinedOrSeparate<["-"], "T">, Group<T_Group>, |
| MetaVarName<"<script>">, HelpText<"Specify <script> as linker script">; |
| def U : JoinedOrSeparate<["-"], "U">, Group<Preprocessor_Group>, |
| Flags<[CC1Option]>, MetaVarName<"<macro>">, HelpText<"Undefine macro <macro>">; |
| def V : JoinedOrSeparate<["-"], "V">, Flags<[DriverOption, Unsupported]>; |
| def Wa_COMMA : CommaJoined<["-"], "Wa,">, |
| HelpText<"Pass the comma separated arguments in <arg> to the assembler">, |
| MetaVarName<"<arg>">; |
| def Wall : Flag<["-"], "Wall">, Group<W_Group>, Flags<[CC1Option, HelpHidden]>; |
| def WCL4 : Flag<["-"], "WCL4">, Group<W_Group>, Flags<[CC1Option, HelpHidden]>; |
| def Wdeprecated : Flag<["-"], "Wdeprecated">, Group<W_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable warnings for deprecated constructs and define __DEPRECATED">; |
| def Wno_deprecated : Flag<["-"], "Wno-deprecated">, Group<W_Group>, Flags<[CC1Option]>; |
| def Wl_COMMA : CommaJoined<["-"], "Wl,">, Flags<[LinkerInput, RenderAsInput]>, |
| HelpText<"Pass the comma separated arguments in <arg> to the linker">, |
| MetaVarName<"<arg>">, Group<Link_Group>; |
| // FIXME: This is broken; these should not be Joined arguments. |
| def Wno_nonportable_cfstrings : Joined<["-"], "Wno-nonportable-cfstrings">, Group<W_Group>, |
| Flags<[CC1Option]>; |
| def Wnonportable_cfstrings : Joined<["-"], "Wnonportable-cfstrings">, Group<W_Group>, |
| Flags<[CC1Option]>; |
| def Wp_COMMA : CommaJoined<["-"], "Wp,">, |
| HelpText<"Pass the comma separated arguments in <arg> to the preprocessor">, |
| MetaVarName<"<arg>">, Group<Preprocessor_Group>; |
| def Wwrite_strings : Flag<["-"], "Wwrite-strings">, Group<W_Group>, Flags<[CC1Option, HelpHidden]>; |
| def Wno_write_strings : Flag<["-"], "Wno-write-strings">, Group<W_Group>, Flags<[CC1Option, HelpHidden]>; |
| def W_Joined : Joined<["-"], "W">, Group<W_Group>, Flags<[CC1Option, CoreOption]>, |
| MetaVarName<"<warning>">, HelpText<"Enable the specified warning">; |
| def Xanalyzer : Separate<["-"], "Xanalyzer">, |
| HelpText<"Pass <arg> to the static analyzer">, MetaVarName<"<arg>">, |
| Group<StaticAnalyzer_Group>; |
| def Xarch__ : JoinedAndSeparate<["-"], "Xarch_">, Flags<[DriverOption]>; |
| def Xassembler : Separate<["-"], "Xassembler">, |
| HelpText<"Pass <arg> to the assembler">, MetaVarName<"<arg>">, |
| Group<CompileOnly_Group>; |
| def Xclang : Separate<["-"], "Xclang">, |
| HelpText<"Pass <arg> to the clang compiler">, MetaVarName<"<arg>">, |
| Flags<[DriverOption, CoreOption]>, Group<CompileOnly_Group>; |
| def Xcuda_fatbinary : Separate<["-"], "Xcuda-fatbinary">, |
| HelpText<"Pass <arg> to fatbinary invocation">, MetaVarName<"<arg>">; |
| def Xcuda_ptxas : Separate<["-"], "Xcuda-ptxas">, |
| HelpText<"Pass <arg> to the ptxas assembler">, MetaVarName<"<arg>">; |
| def Xopenmp_target : Separate<["-"], "Xopenmp-target">, |
| HelpText<"Pass <arg> to the target offloading toolchain.">, MetaVarName<"<arg>">; |
| def Xopenmp_target_EQ : JoinedAndSeparate<["-"], "Xopenmp-target=">, |
| HelpText<"Pass <arg> to the target offloading toolchain identified by <triple>.">, |
| MetaVarName<"<triple> <arg>">; |
| def z : Separate<["-"], "z">, Flags<[LinkerInput, RenderAsInput]>, |
| HelpText<"Pass -z <arg> to the linker">, MetaVarName<"<arg>">, |
| Group<Link_Group>; |
| def Xlinker : Separate<["-"], "Xlinker">, Flags<[LinkerInput, RenderAsInput]>, |
| HelpText<"Pass <arg> to the linker">, MetaVarName<"<arg>">, |
| Group<Link_Group>; |
| def Xpreprocessor : Separate<["-"], "Xpreprocessor">, Group<Preprocessor_Group>, |
| HelpText<"Pass <arg> to the preprocessor">, MetaVarName<"<arg>">; |
| def X_Flag : Flag<["-"], "X">, Group<Link_Group>; |
| def X_Joined : Joined<["-"], "X">, IgnoredGCCCompat; |
| def Z_Flag : Flag<["-"], "Z">, Group<Link_Group>; |
| // FIXME: All we do with this is reject it. Remove. |
| def Z_Joined : Joined<["-"], "Z">; |
| def all__load : Flag<["-"], "all_load">; |
| def allowable__client : Separate<["-"], "allowable_client">; |
| def ansi : Flag<["-", "--"], "ansi">; |
| def arch__errors__fatal : Flag<["-"], "arch_errors_fatal">; |
| def arch : Separate<["-"], "arch">, Flags<[DriverOption]>; |
| def arch__only : Separate<["-"], "arch_only">; |
| def a : Joined<["-"], "a">; |
| def autocomplete : Joined<["--"], "autocomplete=">; |
| def bind__at__load : Flag<["-"], "bind_at_load">; |
| def bundle__loader : Separate<["-"], "bundle_loader">; |
| def bundle : Flag<["-"], "bundle">; |
| def b : JoinedOrSeparate<["-"], "b">, Flags<[Unsupported]>; |
| def cfguard : Flag<["-"], "cfguard">, Flags<[CC1Option]>, |
| HelpText<"Emit tables required for Windows Control Flow Guard.">; |
| def cl_opt_disable : Flag<["-"], "cl-opt-disable">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. This option disables all optimizations. By default optimizations are enabled.">; |
| def cl_strict_aliasing : Flag<["-"], "cl-strict-aliasing">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. This option is added for compatibility with OpenCL 1.0.">; |
| def cl_single_precision_constant : Flag<["-"], "cl-single-precision-constant">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Treat double precision floating-point constant as single precision constant.">; |
| def cl_finite_math_only : Flag<["-"], "cl-finite-math-only">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Allow floating-point optimizations that assume arguments and results are not NaNs or +-Inf.">; |
| def cl_kernel_arg_info : Flag<["-"], "cl-kernel-arg-info">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Generate kernel argument metadata.">; |
| def cl_unsafe_math_optimizations : Flag<["-"], "cl-unsafe-math-optimizations">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Allow unsafe floating-point optimizations. Also implies -cl-no-signed-zeros and -cl-mad-enable.">; |
| def cl_fast_relaxed_math : Flag<["-"], "cl-fast-relaxed-math">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Sets -cl-finite-math-only and -cl-unsafe-math-optimizations, and defines __FAST_RELAXED_MATH__.">; |
| def cl_mad_enable : Flag<["-"], "cl-mad-enable">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Allow use of less precise MAD computations in the generated binary.">; |
| def cl_no_signed_zeros : Flag<["-"], "cl-no-signed-zeros">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Allow use of less precise no signed zeros computations in the generated binary.">; |
| def cl_std_EQ : Joined<["-"], "cl-std=">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL language standard to compile for.">, Values<"cl,CL,cl1.1,CL1.1,cl1.2,CL1.2,cl2.0,CL2.0,c++">; |
| def cl_denorms_are_zero : Flag<["-"], "cl-denorms-are-zero">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Allow denormals to be flushed to zero.">; |
| def cl_fp32_correctly_rounded_divide_sqrt : Flag<["-"], "cl-fp32-correctly-rounded-divide-sqrt">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Specify that single precision floating-point divide and sqrt used in the program source are correctly rounded.">; |
| def cl_uniform_work_group_size : Flag<["-"], "cl-uniform-work-group-size">, Group<opencl_Group>, Flags<[CC1Option]>, |
| HelpText<"OpenCL only. Defines that the global work-size be a multiple of the work-group size specified to clEnqueueNDRangeKernel">; |
| def client__name : JoinedOrSeparate<["-"], "client_name">; |
| def combine : Flag<["-", "--"], "combine">, Flags<[DriverOption, Unsupported]>; |
| def compatibility__version : JoinedOrSeparate<["-"], "compatibility_version">; |
| def config : Separate<["--"], "config">, Flags<[DriverOption]>, |
| HelpText<"Specifies configuration file">; |
| def config_system_dir_EQ : Joined<["--"], "config-system-dir=">, Flags<[DriverOption, HelpHidden]>, |
| HelpText<"System directory for configuration files">; |
| def config_user_dir_EQ : Joined<["--"], "config-user-dir=">, Flags<[DriverOption, HelpHidden]>, |
| HelpText<"User directory for configuration files">; |
| def coverage : Flag<["-", "--"], "coverage">, Flags<[CoreOption]>; |
| def cpp_precomp : Flag<["-"], "cpp-precomp">, Group<clang_ignored_f_Group>; |
| def current__version : JoinedOrSeparate<["-"], "current_version">; |
| def cxx_isystem : JoinedOrSeparate<["-"], "cxx-isystem">, Group<clang_i_Group>, |
| HelpText<"Add directory to the C++ SYSTEM include search path">, Flags<[CC1Option]>, |
| MetaVarName<"<directory>">; |
| def c : Flag<["-"], "c">, Flags<[DriverOption]>, Group<Action_Group>, |
| HelpText<"Only run preprocess, compile, and assemble steps">; |
| def cuda_device_only : Flag<["--"], "cuda-device-only">, |
| HelpText<"Compile CUDA code for device only">; |
| def cuda_host_only : Flag<["--"], "cuda-host-only">, |
| HelpText<"Compile CUDA code for host only. Has no effect on non-CUDA " |
| "compilations.">; |
| def cuda_compile_host_device : Flag<["--"], "cuda-compile-host-device">, |
| HelpText<"Compile CUDA code for both host and device (default). Has no " |
| "effect on non-CUDA compilations.">; |
| def cuda_include_ptx_EQ : Joined<["--"], "cuda-include-ptx=">, Flags<[DriverOption]>, |
| HelpText<"Include PTX for the follwing GPU architecture (e.g. sm_35) or 'all'. May be specified more than once.">; |
| def no_cuda_include_ptx_EQ : Joined<["--"], "no-cuda-include-ptx=">, Flags<[DriverOption]>, |
| HelpText<"Do not include PTX for the follwing GPU architecture (e.g. sm_35) or 'all'. May be specified more than once.">; |
| def cuda_gpu_arch_EQ : Joined<["--"], "cuda-gpu-arch=">, Flags<[DriverOption]>, |
| HelpText<"CUDA GPU architecture (e.g. sm_35). May be specified more than once.">; |
| def hip_link : Flag<["--"], "hip-link">, |
| HelpText<"Link clang-offload-bundler bundles for HIP">; |
| def no_cuda_gpu_arch_EQ : Joined<["--"], "no-cuda-gpu-arch=">, Flags<[DriverOption]>, |
| HelpText<"Remove GPU architecture (e.g. sm_35) from the list of GPUs to compile for. " |
| "'all' resets the list to its default value.">; |
| def cuda_noopt_device_debug : Flag<["--"], "cuda-noopt-device-debug">, |
| HelpText<"Enable device-side debug info generation. Disables ptxas optimizations.">; |
| def no_cuda_version_check : Flag<["--"], "no-cuda-version-check">, |
| HelpText<"Don't error out if the detected version of the CUDA install is " |
| "too low for the requested CUDA gpu architecture.">; |
| def no_cuda_noopt_device_debug : Flag<["--"], "no-cuda-noopt-device-debug">; |
| def cuda_path_EQ : Joined<["--"], "cuda-path=">, Group<i_Group>, |
| HelpText<"CUDA installation path">; |
| def cuda_path_ignore_env : Flag<["--"], "cuda-path-ignore-env">, Group<i_Group>, |
| HelpText<"Ignore environment variables to detect CUDA installation">; |
| def ptxas_path_EQ : Joined<["--"], "ptxas-path=">, Group<i_Group>, |
| HelpText<"Path to ptxas (used for compiling CUDA code)">; |
| def fcuda_flush_denormals_to_zero : Flag<["-"], "fcuda-flush-denormals-to-zero">, |
| Flags<[CC1Option]>, HelpText<"Flush denormal floating point values to zero in CUDA device mode.">; |
| def fno_cuda_flush_denormals_to_zero : Flag<["-"], "fno-cuda-flush-denormals-to-zero">; |
| def fcuda_approx_transcendentals : Flag<["-"], "fcuda-approx-transcendentals">, |
| Flags<[CC1Option]>, HelpText<"Use approximate transcendental functions">; |
| def fno_cuda_approx_transcendentals : Flag<["-"], "fno-cuda-approx-transcendentals">; |
| def fcuda_rdc : Flag<["-"], "fcuda-rdc">, Flags<[CC1Option]>, |
| HelpText<"Generate relocatable device code, also known as separate compilation mode.">; |
| def fno_cuda_rdc : Flag<["-"], "fno-cuda-rdc">; |
| def fcuda_short_ptr : Flag<["-"], "fcuda-short-ptr">, Flags<[CC1Option]>, |
| HelpText<"Use 32-bit pointers for accessing const/local/shared address spaces.">; |
| def fno_cuda_short_ptr : Flag<["-"], "fno-cuda-short-ptr">; |
| def hip_device_lib_path_EQ : Joined<["--"], "hip-device-lib-path=">, Group<Link_Group>, |
| HelpText<"HIP device library path">; |
| def hip_device_lib_EQ : Joined<["--"], "hip-device-lib=">, Group<Link_Group>, |
| HelpText<"HIP device library">; |
| def fhip_dump_offload_linker_script : Flag<["-"], "fhip-dump-offload-linker-script">, |
| Group<f_Group>, Flags<[NoArgumentUnused, HelpHidden]>; |
| def dA : Flag<["-"], "dA">, Group<d_Group>; |
| def dD : Flag<["-"], "dD">, Group<d_Group>, Flags<[CC1Option]>, |
| HelpText<"Print macro definitions in -E mode in addition to normal output">; |
| def dI : Flag<["-"], "dI">, Group<d_Group>, Flags<[CC1Option]>, |
| HelpText<"Print include directives in -E mode in addition to normal output">; |
| def dM : Flag<["-"], "dM">, Group<d_Group>, Flags<[CC1Option]>, |
| HelpText<"Print macro definitions in -E mode instead of normal output">; |
| def dead__strip : Flag<["-"], "dead_strip">; |
| def dependency_file : Separate<["-"], "dependency-file">, Flags<[CC1Option]>, |
| HelpText<"Filename (or -) to write dependency output to">; |
| def dependency_dot : Separate<["-"], "dependency-dot">, Flags<[CC1Option]>, |
| HelpText<"Filename to write DOT-formatted header dependencies to">; |
| def module_dependency_dir : Separate<["-"], "module-dependency-dir">, |
| Flags<[CC1Option]>, HelpText<"Directory to dump module dependencies to">; |
| def dumpmachine : Flag<["-"], "dumpmachine">; |
| def dumpspecs : Flag<["-"], "dumpspecs">, Flags<[Unsupported]>; |
| def dumpversion : Flag<["-"], "dumpversion">; |
| def dylib__file : Separate<["-"], "dylib_file">; |
| def dylinker__install__name : JoinedOrSeparate<["-"], "dylinker_install_name">; |
| def dylinker : Flag<["-"], "dylinker">; |
| def dynamiclib : Flag<["-"], "dynamiclib">; |
| def dynamic : Flag<["-"], "dynamic">, Flags<[NoArgumentUnused]>; |
| def d_Flag : Flag<["-"], "d">, Group<d_Group>; |
| def d_Joined : Joined<["-"], "d">, Group<d_Group>; |
| def emit_ast : Flag<["-"], "emit-ast">, |
| HelpText<"Emit Clang AST files for source inputs">; |
| def emit_llvm : Flag<["-"], "emit-llvm">, Flags<[CC1Option]>, Group<Action_Group>, |
| HelpText<"Use the LLVM representation for assembler and object files">; |
| def exported__symbols__list : Separate<["-"], "exported_symbols_list">; |
| def e : JoinedOrSeparate<["-"], "e">, Group<Link_Group>; |
| def fPIC : Flag<["-"], "fPIC">, Group<f_Group>; |
| def fno_PIC : Flag<["-"], "fno-PIC">, Group<f_Group>; |
| def fPIE : Flag<["-"], "fPIE">, Group<f_Group>; |
| def fno_PIE : Flag<["-"], "fno-PIE">, Group<f_Group>; |
| def faccess_control : Flag<["-"], "faccess-control">, Group<f_Group>; |
| def falign_functions : Flag<["-"], "falign-functions">, Group<f_Group>; |
| def falign_functions_EQ : Joined<["-"], "falign-functions=">, Group<f_Group>; |
| def fno_align_functions: Flag<["-"], "fno-align-functions">, Group<f_Group>; |
| def fallow_unsupported : Flag<["-"], "fallow-unsupported">, Group<f_Group>; |
| def fapple_kext : Flag<["-"], "fapple-kext">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use Apple's kernel extensions ABI">; |
| def fapple_pragma_pack : Flag<["-"], "fapple-pragma-pack">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable Apple gcc-compatible #pragma pack handling">; |
| def shared_libsan : Flag<["-"], "shared-libsan">; |
| def static_libsan : Flag<["-"], "static-libsan">; |
| def : Flag<["-"], "shared-libasan">, Alias<shared_libsan>; |
| def fasm : Flag<["-"], "fasm">, Group<f_Group>; |
| |
| def fasm_blocks : Flag<["-"], "fasm-blocks">, Group<f_Group>, Flags<[CC1Option]>; |
| def fno_asm_blocks : Flag<["-"], "fno-asm-blocks">, Group<f_Group>; |
| |
| def fassume_sane_operator_new : Flag<["-"], "fassume-sane-operator-new">, Group<f_Group>; |
| def fastcp : Flag<["-"], "fastcp">, Group<f_Group>; |
| def fastf : Flag<["-"], "fastf">, Group<f_Group>; |
| def fast : Flag<["-"], "fast">, Group<f_Group>; |
| def fasynchronous_unwind_tables : Flag<["-"], "fasynchronous-unwind-tables">, Group<f_Group>; |
| |
| def fdouble_square_bracket_attributes : Flag<[ "-" ], "fdouble-square-bracket-attributes">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>, |
| HelpText<"Enable '[[]]' attributes in all C and C++ language modes">; |
| def fno_double_square_bracket_attributes : Flag<[ "-" ], "fno-double-square-bracket-attributes">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>, |
| HelpText<"Disable '[[]]' attributes in all C and C++ language modes">; |
| |
| def fautolink : Flag <["-"], "fautolink">, Group<f_Group>; |
| def fno_autolink : Flag <["-"], "fno-autolink">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Disable generation of linker directives for automatic library linking">; |
| |
| // C++ Coroutines TS |
| def fcoroutines_ts : Flag <["-"], "fcoroutines-ts">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Enable support for the C++ Coroutines TS">; |
| def fno_coroutines_ts : Flag <["-"], "fno-coroutines-ts">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| |
| def fembed_bitcode_EQ : Joined<["-"], "fembed-bitcode=">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>, MetaVarName<"<option>">, |
| HelpText<"Embed LLVM bitcode (option: off, all, bitcode, marker)">; |
| def fembed_bitcode : Flag<["-"], "fembed-bitcode">, Group<f_Group>, |
| Alias<fembed_bitcode_EQ>, AliasArgs<["all"]>, |
| HelpText<"Embed LLVM IR bitcode as data">; |
| def fembed_bitcode_marker : Flag<["-"], "fembed-bitcode-marker">, |
| Alias<fembed_bitcode_EQ>, AliasArgs<["marker"]>, |
| HelpText<"Embed placeholder LLVM IR data as a marker">; |
| def fgnu_inline_asm : Flag<["-"], "fgnu-inline-asm">, Group<f_Group>, Flags<[DriverOption]>; |
| def fno_gnu_inline_asm : Flag<["-"], "fno-gnu-inline-asm">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Disable GNU style inline asm">; |
| |
| def fprofile_sample_use : Flag<["-"], "fprofile-sample-use">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fno_profile_sample_use : Flag<["-"], "fno-profile-sample-use">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fprofile_sample_use_EQ : Joined<["-"], "fprofile-sample-use=">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>, |
| HelpText<"Enable sample-based profile guided optimizations">; |
| def fprofile_sample_accurate : Flag<["-"], "fprofile-sample-accurate">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>, |
| HelpText<"Specifies that the sample profile is accurate">, |
| DocBrief<[{Specifies that the sample profile is accurate. If the sample |
| profile is accurate, callsites without profile samples are marked |
| as cold. Otherwise, treat callsites without profile samples as if |
| we have no profile}]>; |
| def fno_profile_sample_accurate : Flag<["-"], "fno-profile-sample-accurate">, |
| Group<f_Group>, Flags<[DriverOption]>; |
| def fauto_profile : Flag<["-"], "fauto-profile">, Group<f_Group>, |
| Alias<fprofile_sample_use>; |
| def fno_auto_profile : Flag<["-"], "fno-auto-profile">, Group<f_Group>, |
| Alias<fno_profile_sample_use>; |
| def fauto_profile_EQ : Joined<["-"], "fauto-profile=">, |
| Alias<fprofile_sample_use_EQ>; |
| def fauto_profile_accurate : Flag<["-"], "fauto-profile-accurate">, |
| Group<f_Group>, Alias<fprofile_sample_accurate>; |
| def fno_auto_profile_accurate : Flag<["-"], "fno-auto-profile-accurate">, |
| Group<f_Group>, Alias<fno_profile_sample_accurate>; |
| def fdebug_info_for_profiling : Flag<["-"], "fdebug-info-for-profiling">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Emit extra debug info to make sample profile more accurate.">; |
| def fno_debug_info_for_profiling : Flag<["-"], "fno-debug-info-for-profiling">, Group<f_Group>, |
| Flags<[DriverOption]>, |
| HelpText<"Do not emit extra debug info for sample profiler.">; |
| def fprofile_instr_generate : Flag<["-"], "fprofile-instr-generate">, |
| Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Generate instrumented code to collect execution counts into default.profraw file (overridden by '=' form of option or LLVM_PROFILE_FILE env var)">; |
| def fprofile_instr_generate_EQ : Joined<["-"], "fprofile-instr-generate=">, |
| Group<f_Group>, Flags<[CoreOption]>, MetaVarName<"<file>">, |
| HelpText<"Generate instrumented code to collect execution counts into <file> (overridden by LLVM_PROFILE_FILE env var)">; |
| def fprofile_instr_use : Flag<["-"], "fprofile-instr-use">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fprofile_instr_use_EQ : Joined<["-"], "fprofile-instr-use=">, |
| Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Use instrumentation data for profile-guided optimization">; |
| def fcoverage_mapping : Flag<["-"], "fcoverage-mapping">, |
| Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Generate coverage mapping to enable code coverage analysis">; |
| def fno_coverage_mapping : Flag<["-"], "fno-coverage-mapping">, |
| Group<f_Group>, Flags<[DriverOption, CoreOption]>, |
| HelpText<"Disable code coverage analysis">; |
| def fprofile_generate : Flag<["-"], "fprofile-generate">, |
| Group<f_Group>, Flags<[DriverOption]>, |
| HelpText<"Generate instrumented code to collect execution counts into default.profraw (overridden by LLVM_PROFILE_FILE env var)">; |
| def fprofile_generate_EQ : Joined<["-"], "fprofile-generate=">, |
| Group<f_Group>, Flags<[DriverOption]>, MetaVarName<"<directory>">, |
| HelpText<"Generate instrumented code to collect execution counts into <directory>/default.profraw (overridden by LLVM_PROFILE_FILE env var)">; |
| def fprofile_use : Flag<["-"], "fprofile-use">, Group<f_Group>, |
| Alias<fprofile_instr_use>; |
| def fprofile_use_EQ : Joined<["-"], "fprofile-use=">, |
| Group<f_Group>, Flags<[DriverOption]>, MetaVarName<"<pathname>">, |
| HelpText<"Use instrumentation data for profile-guided optimization. If pathname is a directory, it reads from <pathname>/default.profdata. Otherwise, it reads from file <pathname>.">; |
| def fno_profile_instr_generate : Flag<["-"], "fno-profile-instr-generate">, |
| Group<f_Group>, Flags<[DriverOption]>, |
| HelpText<"Disable generation of profile instrumentation.">; |
| def fno_profile_generate : Flag<["-"], "fno-profile-generate">, |
| Group<f_Group>, Flags<[DriverOption]>, |
| HelpText<"Disable generation of profile instrumentation.">; |
| def fno_profile_instr_use : Flag<["-"], "fno-profile-instr-use">, |
| Group<f_Group>, Flags<[DriverOption]>, |
| HelpText<"Disable using instrumentation data for profile-guided optimization">; |
| def fno_profile_use : Flag<["-"], "fno-profile-use">, |
| Alias<fno_profile_instr_use>; |
| |
| def faddrsig : Flag<["-"], "faddrsig">, Group<f_Group>, Flags<[CoreOption, CC1Option]>, |
| HelpText<"Emit an address-significance table">; |
| def fno_addrsig : Flag<["-"], "fno-addrsig">, Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Don't emit an address-significance table">; |
| def fblocks : Flag<["-"], "fblocks">, Group<f_Group>, Flags<[CoreOption, CC1Option]>, |
| HelpText<"Enable the 'blocks' language feature">; |
| def fbootclasspath_EQ : Joined<["-"], "fbootclasspath=">, Group<f_Group>; |
| def fborland_extensions : Flag<["-"], "fborland-extensions">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Accept non-standard constructs supported by the Borland compiler">; |
| def fbuiltin : Flag<["-"], "fbuiltin">, Group<f_Group>, Flags<[CoreOption]>; |
| def fbuiltin_module_map : Flag <["-"], "fbuiltin-module-map">, Group<f_Group>, |
| Flags<[DriverOption]>, HelpText<"Load the clang builtins module map file.">; |
| def fcaret_diagnostics : Flag<["-"], "fcaret-diagnostics">, Group<f_Group>; |
| def fclang_abi_compat_EQ : Joined<["-"], "fclang-abi-compat=">, Group<f_clang_Group>, |
| Flags<[CC1Option]>, MetaVarName<"<version>">, Values<"<major>.<minor>,latest">, |
| HelpText<"Attempt to match the ABI of Clang <version>">; |
| def fclasspath_EQ : Joined<["-"], "fclasspath=">, Group<f_Group>; |
| def fcolor_diagnostics : Flag<["-"], "fcolor-diagnostics">, Group<f_Group>, |
| Flags<[CoreOption, CC1Option]>, HelpText<"Use colors in diagnostics">; |
| def fdiagnostics_color : Flag<["-"], "fdiagnostics-color">, Group<f_Group>, |
| Flags<[CoreOption, DriverOption]>; |
| def fdiagnostics_color_EQ : Joined<["-"], "fdiagnostics-color=">, Group<f_Group>; |
| def fansi_escape_codes : Flag<["-"], "fansi-escape-codes">, Group<f_Group>, |
| Flags<[CoreOption, CC1Option]>, HelpText<"Use ANSI escape codes for diagnostics">; |
| def fcomment_block_commands : CommaJoined<["-"], "fcomment-block-commands=">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Treat each comma separated argument in <arg> as a documentation comment block command">, |
| MetaVarName<"<arg>">; |
| def fparse_all_comments : Flag<["-"], "fparse-all-comments">, Group<f_clang_Group>, Flags<[CC1Option]>; |
| def fcommon : Flag<["-"], "fcommon">, Group<f_Group>; |
| def fcompile_resource_EQ : Joined<["-"], "fcompile-resource=">, Group<f_Group>; |
| def fcomplete_member_pointers : Flag<["-"], "fcomplete-member-pointers">, Group<f_clang_Group>, |
| Flags<[CoreOption, CC1Option]>, |
| HelpText<"Require member pointer base types to be complete if they would be significant under the Microsoft ABI">; |
| def fno_complete_member_pointers : Flag<["-"], "fno-complete-member-pointers">, Group<f_clang_Group>, |
| Flags<[CoreOption]>, |
| HelpText<"Do not require member pointer base types to be complete if they would be significant under the Microsoft ABI">; |
| def fconstant_cfstrings : Flag<["-"], "fconstant-cfstrings">, Group<f_Group>; |
| def fconstant_string_class_EQ : Joined<["-"], "fconstant-string-class=">, Group<f_Group>; |
| def fconstexpr_depth_EQ : Joined<["-"], "fconstexpr-depth=">, Group<f_Group>; |
| def fconstexpr_steps_EQ : Joined<["-"], "fconstexpr-steps=">, Group<f_Group>; |
| def fconstexpr_backtrace_limit_EQ : Joined<["-"], "fconstexpr-backtrace-limit=">, |
| Group<f_Group>; |
| def fno_crash_diagnostics : Flag<["-"], "fno-crash-diagnostics">, Group<f_clang_Group>, Flags<[NoArgumentUnused]>, |
| HelpText<"Disable auto-generation of preprocessed source files and a script for reproduction during a clang crash">; |
| def fcrash_diagnostics_dir : Joined<["-"], "fcrash-diagnostics-dir=">, Group<f_clang_Group>, Flags<[NoArgumentUnused, CoreOption]>; |
| def fcreate_profile : Flag<["-"], "fcreate-profile">, Group<f_Group>; |
| def fcxx_exceptions: Flag<["-"], "fcxx-exceptions">, Group<f_Group>, |
| HelpText<"Enable C++ exceptions">, Flags<[CC1Option]>; |
| def fcxx_modules : Flag <["-"], "fcxx-modules">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fdebug_pass_arguments : Flag<["-"], "fdebug-pass-arguments">, Group<f_Group>; |
| def fdebug_pass_structure : Flag<["-"], "fdebug-pass-structure">, Group<f_Group>; |
| def fdepfile_entry : Joined<["-"], "fdepfile-entry=">, |
| Group<f_clang_Group>, Flags<[CC1Option]>; |
| def fdiagnostics_fixit_info : Flag<["-"], "fdiagnostics-fixit-info">, Group<f_clang_Group>; |
| def fdiagnostics_parseable_fixits : Flag<["-"], "fdiagnostics-parseable-fixits">, Group<f_clang_Group>, |
| Flags<[CoreOption, CC1Option]>, HelpText<"Print fix-its in machine parseable form">; |
| def fdiagnostics_print_source_range_info : Flag<["-"], "fdiagnostics-print-source-range-info">, |
| Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Print source range spans in numeric form">; |
| def fdiagnostics_show_hotness : Flag<["-"], "fdiagnostics-show-hotness">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Enable profile hotness information in diagnostic line">; |
| def fdiagnostics_hotness_threshold_EQ : Joined<["-"], "fdiagnostics-hotness-threshold=">, |
| Group<f_Group>, Flags<[CC1Option]>, MetaVarName<"<number>">, |
| HelpText<"Prevent optimization remarks from being output if they do not have at least this profile count">; |
| def fdiagnostics_show_option : Flag<["-"], "fdiagnostics-show-option">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Print option name with mappable diagnostics">; |
| def fdiagnostics_show_note_include_stack : Flag<["-"], "fdiagnostics-show-note-include-stack">, |
| Group<f_Group>, Flags<[CC1Option]>, HelpText<"Display include stacks for diagnostic notes">; |
| def fdiagnostics_format_EQ : Joined<["-"], "fdiagnostics-format=">, Group<f_clang_Group>; |
| def fdiagnostics_show_category_EQ : Joined<["-"], "fdiagnostics-show-category=">, Group<f_clang_Group>; |
| def fdiagnostics_show_template_tree : Flag<["-"], "fdiagnostics-show-template-tree">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Print a template comparison tree for differing templates">; |
| def fdeclspec : Flag<["-"], "fdeclspec">, Group<f_clang_Group>, |
| HelpText<"Allow __declspec as a keyword">, Flags<[CC1Option]>; |
| def fdiscard_value_names : Flag<["-"], "fdiscard-value-names">, Group<f_clang_Group>, |
| HelpText<"Discard value names in LLVM IR">, Flags<[DriverOption]>; |
| def fno_discard_value_names : Flag<["-"], "fno-discard-value-names">, Group<f_clang_Group>, |
| HelpText<"Do not discard value names in LLVM IR">, Flags<[DriverOption]>; |
| def fdollars_in_identifiers : Flag<["-"], "fdollars-in-identifiers">, Group<f_Group>, |
| HelpText<"Allow '$' in identifiers">, Flags<[CC1Option]>; |
| def fdwarf2_cfi_asm : Flag<["-"], "fdwarf2-cfi-asm">, Group<clang_ignored_f_Group>; |
| def fno_dwarf2_cfi_asm : Flag<["-"], "fno-dwarf2-cfi-asm">, Group<clang_ignored_f_Group>; |
| def fdwarf_directory_asm : Flag<["-"], "fdwarf-directory-asm">, Group<f_Group>; |
| def fno_dwarf_directory_asm : Flag<["-"], "fno-dwarf-directory-asm">, Group<f_Group>, Flags<[CC1Option]>; |
| def felide_constructors : Flag<["-"], "felide-constructors">, Group<f_Group>; |
| def fno_elide_type : Flag<["-"], "fno-elide-type">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Do not elide types when printing diagnostics">; |
| def feliminate_unused_debug_symbols : Flag<["-"], "feliminate-unused-debug-symbols">, Group<f_Group>; |
| def femit_all_decls : Flag<["-"], "femit-all-decls">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Emit all declarations, even if unused">; |
| def femulated_tls : Flag<["-"], "femulated-tls">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use emutls functions to access thread_local variables">; |
| def fno_emulated_tls : Flag<["-"], "fno-emulated-tls">, Group<f_Group>, Flags<[CC1Option]>; |
| def fencoding_EQ : Joined<["-"], "fencoding=">, Group<f_Group>; |
| def ferror_limit_EQ : Joined<["-"], "ferror-limit=">, Group<f_Group>, Flags<[CoreOption]>; |
| def fexceptions : Flag<["-"], "fexceptions">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable support for exception handling">; |
| def fdwarf_exceptions : Flag<["-"], "fdwarf-exceptions">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Use DWARF style exceptions">; |
| def fsjlj_exceptions : Flag<["-"], "fsjlj-exceptions">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Use SjLj style exceptions">; |
| def fseh_exceptions : Flag<["-"], "fseh-exceptions">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Use SEH style exceptions">; |
| def fexcess_precision_EQ : Joined<["-"], "fexcess-precision=">, |
| Group<clang_ignored_gcc_optimization_f_Group>; |
| def : Flag<["-"], "fexpensive-optimizations">, Group<clang_ignored_gcc_optimization_f_Group>; |
| def : Flag<["-"], "fno-expensive-optimizations">, Group<clang_ignored_gcc_optimization_f_Group>; |
| def fextdirs_EQ : Joined<["-"], "fextdirs=">, Group<f_Group>; |
| def : Flag<["-"], "fdefer-pop">, Group<clang_ignored_gcc_optimization_f_Group>; |
| def : Flag<["-"], "fno-defer-pop">, Group<clang_ignored_gcc_optimization_f_Group>; |
| def : Flag<["-"], "fextended-identifiers">, Group<clang_ignored_f_Group>; |
| def : Flag<["-"], "fno-extended-identifiers">, Group<f_Group>, Flags<[Unsupported]>; |
| def fhosted : Flag<["-"], "fhosted">, Group<f_Group>; |
| def fdenormal_fp_math_EQ : Joined<["-"], "fdenormal-fp-math=">, Group<f_Group>, Flags<[CC1Option]>; |
| def ffast_math : Flag<["-"], "ffast-math">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Allow aggressive, lossy floating-point optimizations">; |
| def fno_fast_math : Flag<["-"], "fno-fast-math">, Group<f_Group>; |
| def fmath_errno : Flag<["-"], "fmath-errno">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Require math functions to indicate errors by setting errno">; |
| def fno_math_errno : Flag<["-"], "fno-math-errno">, Group<f_Group>; |
| def fbracket_depth_EQ : Joined<["-"], "fbracket-depth=">, Group<f_Group>; |
| def fsignaling_math : Flag<["-"], "fsignaling-math">, Group<f_Group>; |
| def fno_signaling_math : Flag<["-"], "fno-signaling-math">, Group<f_Group>; |
| def fjump_tables : Flag<["-"], "fjump-tables">, Group<f_Group>; |
| def fno_jump_tables : Flag<["-"], "fno-jump-tables">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Do not use jump tables for lowering switches">; |
| def fforce_enable_int128 : Flag<["-"], "fforce-enable-int128">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable support for int128_t type">; |
| def fno_force_enable_int128 : Flag<["-"], "fno-force-enable-int128">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable support for int128_t type">; |
| |
| def ffixed_point : Flag<["-"], "ffixed-point">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Enable fixed point types">; |
| def fno_fixed_point : Flag<["-"], "fno-fixed-point">, Group<f_Group>, |
| HelpText<"Disable fixed point types">; |
| |
| // Begin sanitizer flags. These should all be core options exposed in all driver |
| // modes. |
| let Flags = [CC1Option, CoreOption] in { |
| |
| def fsanitize_EQ : CommaJoined<["-"], "fsanitize=">, Group<f_clang_Group>, |
| MetaVarName<"<check>">, |
| HelpText<"Turn on runtime checks for various forms of undefined " |
| "or suspicious behavior. See user manual for available checks">; |
| def fno_sanitize_EQ : CommaJoined<["-"], "fno-sanitize=">, Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>; |
| def fsanitize_blacklist : Joined<["-"], "fsanitize-blacklist=">, |
| Group<f_clang_Group>, |
| HelpText<"Path to blacklist file for sanitizers">; |
| def fno_sanitize_blacklist : Flag<["-"], "fno-sanitize-blacklist">, |
| Group<f_clang_Group>, |
| HelpText<"Don't use blacklist file for sanitizers">; |
| def fsanitize_coverage |
| : CommaJoined<["-"], "fsanitize-coverage=">, |
| Group<f_clang_Group>, |
| HelpText<"Specify the type of coverage instrumentation for Sanitizers">; |
| def fno_sanitize_coverage |
| : CommaJoined<["-"], "fno-sanitize-coverage=">, |
| Group<f_clang_Group>, Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable specified features of coverage instrumentation for " |
| "Sanitizers">, Values<"func,bb,edge,indirect-calls,trace-bb,trace-cmp,trace-div,trace-gep,8bit-counters,trace-pc,trace-pc-guard,no-prune,inline-8bit-counters">; |
| def fsanitize_memory_track_origins_EQ : Joined<["-"], "fsanitize-memory-track-origins=">, |
| Group<f_clang_Group>, |
| HelpText<"Enable origins tracking in MemorySanitizer">; |
| def fsanitize_memory_track_origins : Flag<["-"], "fsanitize-memory-track-origins">, |
| Group<f_clang_Group>, |
| HelpText<"Enable origins tracking in MemorySanitizer">; |
| def fno_sanitize_memory_track_origins : Flag<["-"], "fno-sanitize-memory-track-origins">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable origins tracking in MemorySanitizer">; |
| def fsanitize_memory_use_after_dtor : Flag<["-"], "fsanitize-memory-use-after-dtor">, |
| Group<f_clang_Group>, |
| HelpText<"Enable use-after-destroy detection in MemorySanitizer">; |
| def fno_sanitize_memory_use_after_dtor : Flag<["-"], "fno-sanitize-memory-use-after-dtor">, |
| Group<f_clang_Group>, |
| HelpText<"Disable use-after-destroy detection in MemorySanitizer">; |
| def fsanitize_address_field_padding : Joined<["-"], "fsanitize-address-field-padding=">, |
| Group<f_clang_Group>, |
| HelpText<"Level of field padding for AddressSanitizer">; |
| def fsanitize_address_use_after_scope : Flag<["-"], "fsanitize-address-use-after-scope">, |
| Group<f_clang_Group>, |
| HelpText<"Enable use-after-scope detection in AddressSanitizer">; |
| def fno_sanitize_address_use_after_scope : Flag<["-"], "fno-sanitize-address-use-after-scope">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable use-after-scope detection in AddressSanitizer">; |
| def fsanitize_address_poison_class_member_array_new_cookie |
| : Flag<[ "-" ], "fsanitize-address-poison-class-member-array-new-cookie">, |
| Group<f_clang_Group>, |
| HelpText<"Enable poisoning array cookies when using class member operator new[] in AddressSanitizer">; |
| def fno_sanitize_address_poison_class_member_array_new_cookie |
| : Flag<[ "-" ], "fno-sanitize-address-poison-class-member-array-new-cookie">, |
| Group<f_clang_Group>, |
| HelpText<"Disable poisoning array cookies when using class member operator new[] in AddressSanitizer">; |
| def fsanitize_address_globals_dead_stripping : Flag<["-"], "fsanitize-address-globals-dead-stripping">, |
| Group<f_clang_Group>, |
| HelpText<"Enable linker dead stripping of globals in AddressSanitizer">; |
| def fsanitize_recover : Flag<["-"], "fsanitize-recover">, Group<f_clang_Group>; |
| def fno_sanitize_recover : Flag<["-"], "fno-sanitize-recover">, |
| Flags<[CoreOption, DriverOption]>, |
| Group<f_clang_Group>; |
| def fsanitize_recover_EQ : CommaJoined<["-"], "fsanitize-recover=">, |
| Group<f_clang_Group>, |
| HelpText<"Enable recovery for specified sanitizers">; |
| def fno_sanitize_recover_EQ |
| : CommaJoined<["-"], "fno-sanitize-recover=">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable recovery for specified sanitizers">; |
| def fsanitize_trap_EQ : CommaJoined<["-"], "fsanitize-trap=">, Group<f_clang_Group>, |
| HelpText<"Enable trapping for specified sanitizers">; |
| def fno_sanitize_trap_EQ : CommaJoined<["-"], "fno-sanitize-trap=">, Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable trapping for specified sanitizers">; |
| def fsanitize_undefined_trap_on_error : Flag<["-"], "fsanitize-undefined-trap-on-error">, |
| Group<f_clang_Group>; |
| def fno_sanitize_undefined_trap_on_error : Flag<["-"], "fno-sanitize-undefined-trap-on-error">, |
| Group<f_clang_Group>; |
| def fsanitize_minimal_runtime : Flag<["-"], "fsanitize-minimal-runtime">, |
| Group<f_clang_Group>; |
| def fno_sanitize_minimal_runtime : Flag<["-"], "fno-sanitize-minimal-runtime">, |
| Group<f_clang_Group>; |
| def fsanitize_link_cxx_runtime : Flag<["-"], "fsanitize-link-c++-runtime">, |
| Group<f_clang_Group>; |
| def fsanitize_cfi_cross_dso : Flag<["-"], "fsanitize-cfi-cross-dso">, |
| Group<f_clang_Group>, |
| HelpText<"Enable control flow integrity (CFI) checks for cross-DSO calls.">; |
| def fno_sanitize_cfi_cross_dso : Flag<["-"], "fno-sanitize-cfi-cross-dso">, |
| Flags<[CoreOption, DriverOption]>, |
| Group<f_clang_Group>, |
| HelpText<"Disable control flow integrity (CFI) checks for cross-DSO calls.">; |
| def fsanitize_cfi_icall_generalize_pointers : Flag<["-"], "fsanitize-cfi-icall-generalize-pointers">, |
| Group<f_clang_Group>, |
| HelpText<"Generalize pointers in CFI indirect call type signature checks">; |
| def fsanitize_stats : Flag<["-"], "fsanitize-stats">, |
| Group<f_clang_Group>, |
| HelpText<"Enable sanitizer statistics gathering.">; |
| def fno_sanitize_stats : Flag<["-"], "fno-sanitize-stats">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable sanitizer statistics gathering.">; |
| def fsanitize_thread_memory_access : Flag<["-"], "fsanitize-thread-memory-access">, |
| Group<f_clang_Group>, |
| HelpText<"Enable memory access instrumentation in ThreadSanitizer (default)">; |
| def fno_sanitize_thread_memory_access : Flag<["-"], "fno-sanitize-thread-memory-access">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable memory access instrumentation in ThreadSanitizer">; |
| def fsanitize_thread_func_entry_exit : Flag<["-"], "fsanitize-thread-func-entry-exit">, |
| Group<f_clang_Group>, |
| HelpText<"Enable function entry/exit instrumentation in ThreadSanitizer (default)">; |
| def fno_sanitize_thread_func_entry_exit : Flag<["-"], "fno-sanitize-thread-func-entry-exit">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable function entry/exit instrumentation in ThreadSanitizer">; |
| def fsanitize_thread_atomics : Flag<["-"], "fsanitize-thread-atomics">, |
| Group<f_clang_Group>, |
| HelpText<"Enable atomic operations instrumentation in ThreadSanitizer (default)">; |
| def fno_sanitize_thread_atomics : Flag<["-"], "fno-sanitize-thread-atomics">, |
| Group<f_clang_Group>, |
| Flags<[CoreOption, DriverOption]>, |
| HelpText<"Disable atomic operations instrumentation in ThreadSanitizer">; |
| def fsanitize_undefined_strip_path_components_EQ : Joined<["-"], "fsanitize-undefined-strip-path-components=">, |
| Group<f_clang_Group>, MetaVarName<"<number>">, |
| HelpText<"Strip (or keep only, if negative) a given number of path components " |
| "when emitting check metadata.">; |
| |
| } // end -f[no-]sanitize* flags |
| |
| def funsafe_math_optimizations : Flag<["-"], "funsafe-math-optimizations">, |
| Group<f_Group>; |
| def fno_unsafe_math_optimizations : Flag<["-"], "fno-unsafe-math-optimizations">, |
| Group<f_Group>; |
| def fassociative_math : Flag<["-"], "fassociative-math">, Group<f_Group>; |
| def fno_associative_math : Flag<["-"], "fno-associative-math">, Group<f_Group>; |
| def freciprocal_math : |
| Flag<["-"], "freciprocal-math">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Allow division operations to be reassociated">; |
| def fno_reciprocal_math : Flag<["-"], "fno-reciprocal-math">, Group<f_Group>; |
| def ffinite_math_only : Flag<["-"], "ffinite-math-only">, Group<f_Group>, Flags<[CC1Option]>; |
| def fno_finite_math_only : Flag<["-"], "fno-finite-math-only">, Group<f_Group>; |
| def fsigned_zeros : Flag<["-"], "fsigned-zeros">, Group<f_Group>; |
| def fno_signed_zeros : |
| Flag<["-"], "fno-signed-zeros">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Allow optimizations that ignore the sign of floating point zeros">; |
| def fhonor_nans : Flag<["-"], "fhonor-nans">, Group<f_Group>; |
| def fno_honor_nans : Flag<["-"], "fno-honor-nans">, Group<f_Group>; |
| def fhonor_infinities : Flag<["-"], "fhonor-infinities">, Group<f_Group>; |
| def fno_honor_infinities : Flag<["-"], "fno-honor-infinities">, Group<f_Group>; |
| // This option was originally misspelt "infinites" [sic]. |
| def : Flag<["-"], "fhonor-infinites">, Alias<fhonor_infinities>; |
| def : Flag<["-"], "fno-honor-infinites">, Alias<fno_honor_infinities>; |
| def ftrapping_math : Flag<["-"], "ftrapping-math">, Group<f_Group>, Flags<[CC1Option]>; |
| def fno_trapping_math : Flag<["-"], "fno-trapping-math">, Group<f_Group>, Flags<[CC1Option]>; |
| def ffp_contract : Joined<["-"], "ffp-contract=">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Form fused FP ops (e.g. FMAs): fast (everywhere)" |
| " | on (according to FP_CONTRACT pragma, default) | off (never fuse)">, Values<"fast,on,off">; |
| |
| def fstrict_float_cast_overflow : Flag<["-"], |
| "fstrict-float-cast-overflow">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Assume that overflowing float-to-int casts are undefined (default)">; |
| def fno_strict_float_cast_overflow : Flag<["-"], |
| "fno-strict-float-cast-overflow">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Relax language rules and try to match the behavior of the target's native float-to-int conversion instructions">; |
| |
| def ffor_scope : Flag<["-"], "ffor-scope">, Group<f_Group>; |
| def fno_for_scope : Flag<["-"], "fno-for-scope">, Group<f_Group>; |
| |
| def frewrite_includes : Flag<["-"], "frewrite-includes">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fno_rewrite_includes : Flag<["-"], "fno-rewrite-includes">, Group<f_Group>; |
| |
| def frewrite_imports : Flag<["-"], "frewrite-imports">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fno_rewrite_imports : Flag<["-"], "fno-rewrite-imports">, Group<f_Group>; |
| |
| def fdelete_null_pointer_checks : Flag<["-"], |
| "fdelete-null-pointer-checks">, Group<f_Group>, |
| HelpText<"Treat usage of null pointers as undefined behavior.">; |
| def fno_delete_null_pointer_checks : Flag<["-"], |
| "fno-delete-null-pointer-checks">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Do not treat usage of null pointers as undefined behavior.">; |
| |
| def frewrite_map_file : Separate<["-"], "frewrite-map-file">, |
| Group<f_Group>, |
| Flags<[ DriverOption, CC1Option ]>; |
| def frewrite_map_file_EQ : Joined<["-"], "frewrite-map-file=">, |
| Group<f_Group>, |
| Flags<[DriverOption]>; |
| |
| def fuse_line_directives : Flag<["-"], "fuse-line-directives">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fno_use_line_directives : Flag<["-"], "fno-use-line-directives">, Group<f_Group>; |
| |
| def ffreestanding : Flag<["-"], "ffreestanding">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Assert that the compilation takes place in a freestanding environment">; |
| def fgnu_keywords : Flag<["-"], "fgnu-keywords">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Allow GNU-extension keywords regardless of language standard">; |
| def fgnu89_inline : Flag<["-"], "fgnu89-inline">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use the gnu89 inline semantics">; |
| def fno_gnu89_inline : Flag<["-"], "fno-gnu89-inline">, Group<f_Group>; |
| def fgnu_runtime : Flag<["-"], "fgnu-runtime">, Group<f_Group>, |
| HelpText<"Generate output compatible with the standard GNU Objective-C runtime">; |
| def fheinous_gnu_extensions : Flag<["-"], "fheinous-gnu-extensions">, Flags<[CC1Option]>; |
| def filelist : Separate<["-"], "filelist">, Flags<[LinkerInput]>, |
| Group<Link_Group>; |
| def : Flag<["-"], "findirect-virtual-calls">, Alias<fapple_kext>; |
| def finline_functions : Flag<["-"], "finline-functions">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Inline suitable functions">; |
| def finline_hint_functions: Flag<["-"], "finline-hint-functions">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Inline functions which are (explicitly or implicitly) marked inline">; |
| def finline : Flag<["-"], "finline">, Group<clang_ignored_f_Group>; |
| def fexperimental_isel : Flag<["-"], "fexperimental-isel">, Group<f_clang_Group>, |
| HelpText<"Enables the experimental global instruction selector">; |
| def fexperimental_new_pass_manager : Flag<["-"], "fexperimental-new-pass-manager">, |
| Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Enables an experimental new pass manager in LLVM.">; |
| def finput_charset_EQ : Joined<["-"], "finput-charset=">, Group<f_Group>; |
| def fexec_charset_EQ : Joined<["-"], "fexec-charset=">, Group<f_Group>; |
| def finstrument_functions : Flag<["-"], "finstrument-functions">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Generate calls to instrument function entry and exit">; |
| def finstrument_functions_after_inlining : Flag<["-"], "finstrument-functions-after-inlining">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Like -finstrument-functions, but insert the calls after inlining">; |
| def finstrument_function_entry_bare : Flag<["-"], "finstrument-function-entry-bare">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Instrument function entry only, after inlining, without arguments to the instrumentation call">; |
| def fcf_protection_EQ : Joined<["-"], "fcf-protection=">, Flags<[CoreOption, CC1Option]>, Group<f_Group>, |
| HelpText<"Instrument control-flow architecture protection. Options: return, branch, full, none.">, Values<"return,branch,full,none">; |
| def fcf_protection : Flag<["-"], "fcf-protection">, Group<f_Group>, Flags<[CoreOption, CC1Option]>, |
| Alias<fcf_protection_EQ>, AliasArgs<["full"]>, |
| HelpText<"Enable cf-protection in 'full' mode">; |
| |
| def fxray_instrument : Flag<["-"], "fxray-instrument">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Generate XRay instrumentation sleds on function entry and exit">; |
| def fnoxray_instrument : Flag<["-"], "fno-xray-instrument">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| |
| def fxray_instruction_threshold_EQ : |
| JoinedOrSeparate<["-"], "fxray-instruction-threshold=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Sets the minimum function size to instrument with XRay">; |
| def fxray_instruction_threshold_ : |
| JoinedOrSeparate<["-"], "fxray-instruction-threshold">, |
| Group<f_Group>, Flags<[CC1Option]>; |
| |
| def fxray_always_instrument : |
| JoinedOrSeparate<["-"], "fxray-always-instrument=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"DEPRECATED: Filename defining the whitelist for imbuing the 'always instrument' XRay attribute.">; |
| def fxray_never_instrument : |
| JoinedOrSeparate<["-"], "fxray-never-instrument=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"DEPRECATED: Filename defining the whitelist for imbuing the 'never instrument' XRay attribute.">; |
| def fxray_attr_list : |
| JoinedOrSeparate<["-"], "fxray-attr-list=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Filename defining the list of functions/types for imbuing XRay attributes.">; |
| def fxray_modes : |
| JoinedOrSeparate<["-"], "fxray-modes=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"List of modes to link in by default into XRay instrumented binaries.">; |
| |
| def fxray_always_emit_customevents : Flag<["-"], "fxray-always-emit-customevents">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Determine whether to always emit __xray_customevent(...) calls even if the function it appears in is not always instrumented.">; |
| def fnoxray_always_emit_customevents : Flag<["-"], "fno-xray-always-emit-customevents">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| |
| def fxray_always_emit_typedevents : Flag<["-"], "fxray-always-emit-typedevents">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Determine whether to always emit __xray_typedevent(...) calls even if the function it appears in is not always instrumented.">; |
| def fnoxray_always_emit_typedevents : Flag<["-"], "fno-xray-always-emit-typedevents">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| |
| def fxray_link_deps : Flag<["-"], "fxray-link-deps">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Tells clang to add the link dependencies for XRay.">; |
| def fnoxray_link_deps : Flag<["-"], "fnoxray-link-deps">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| |
| def fxray_instrumentation_bundle : |
| JoinedOrSeparate<["-"], "fxray-instrumentation-bundle=">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Select which XRay instrumentation points to emit. Options: all, none, function, custom. Default is 'all'.">; |
| |
| def ffine_grained_bitfield_accesses : Flag<["-"], |
| "ffine-grained-bitfield-accesses">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Use separate accesses for consecutive bitfield runs with legal widths and alignments.">; |
| def fno_fine_grained_bitfield_accesses : Flag<["-"], |
| "fno-fine-grained-bitfield-accesses">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Use large-integer access for consecutive bitfield runs.">; |
| |
| def flat__namespace : Flag<["-"], "flat_namespace">; |
| def flax_vector_conversions : Flag<["-"], "flax-vector-conversions">, Group<f_Group>; |
| def flimited_precision_EQ : Joined<["-"], "flimited-precision=">, Group<f_Group>; |
| def flto_EQ : Joined<["-"], "flto=">, Flags<[CoreOption, CC1Option]>, Group<f_Group>, |
| HelpText<"Set LTO mode to either 'full' or 'thin'">, Values<"thin,full">; |
| def flto : Flag<["-"], "flto">, Flags<[CoreOption, CC1Option]>, Group<f_Group>, |
| HelpText<"Enable LTO in 'full' mode">; |
| def fno_lto : Flag<["-"], "fno-lto">, Group<f_Group>, |
| HelpText<"Disable LTO mode (default)">; |
| def flto_jobs_EQ : Joined<["-"], "flto-jobs=">, |
| Flags<[CC1Option]>, Group<f_Group>, |
| HelpText<"Controls the backend parallelism of -flto=thin (default " |
| "of 0 means the number of threads will be derived from " |
| "the number of CPUs detected)">; |
| def fthinlto_index_EQ : Joined<["-"], "fthinlto-index=">, |
| Flags<[CC1Option]>, Group<f_Group>, |
| HelpText<"Perform ThinLTO importing using provided function summary index">; |
| def fmacro_backtrace_limit_EQ : Joined<["-"], "fmacro-backtrace-limit=">, |
| Group<f_Group>, Flags<[DriverOption, CoreOption]>; |
| def fmerge_all_constants : Flag<["-"], "fmerge-all-constants">, Group<f_Group>, |
| Flags<[CC1Option, CoreOption]>, HelpText<"Allow merging of constants">; |
| def fmessage_length_EQ : Joined<["-"], "fmessage-length=">, Group<f_Group>; |
| def fms_extensions : Flag<["-"], "fms-extensions">, Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Accept some non-standard constructs supported by the Microsoft compiler">; |
| def fms_compatibility : Flag<["-"], "fms-compatibility">, Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Enable full Microsoft Visual C++ compatibility">; |
| def fms_volatile : Joined<["-"], "fms-volatile">, Group<f_Group>, Flags<[CC1Option]>; |
| def fmsc_version : Joined<["-"], "fmsc-version=">, Group<f_Group>, Flags<[DriverOption, CoreOption]>, |
| HelpText<"Microsoft compiler version number to report in _MSC_VER (0 = don't define it (default))">; |
| def fms_compatibility_version |
| : Joined<["-"], "fms-compatibility-version=">, |
| Group<f_Group>, |
| Flags<[ CC1Option, CoreOption ]>, |
| HelpText<"Dot-separated value representing the Microsoft compiler " |
| "version number to report in _MSC_VER (0 = don't define it " |
| "(default))">; |
| def fdelayed_template_parsing : Flag<["-"], "fdelayed-template-parsing">, Group<f_Group>, |
| HelpText<"Parse templated function definitions at the end of the " |
| "translation unit">, Flags<[CC1Option, CoreOption]>; |
| def fms_memptr_rep_EQ : Joined<["-"], "fms-memptr-rep=">, Group<f_Group>, Flags<[CC1Option]>; |
| def fmodules_cache_path : Joined<["-"], "fmodules-cache-path=">, Group<i_Group>, |
| Flags<[DriverOption, CC1Option]>, MetaVarName<"<directory>">, |
| HelpText<"Specify the module cache path">; |
| def fmodules_user_build_path : Separate<["-"], "fmodules-user-build-path">, Group<i_Group>, |
| Flags<[DriverOption, CC1Option]>, MetaVarName<"<directory>">, |
| HelpText<"Specify the module user build path">; |
| def fprebuilt_module_path : Joined<["-"], "fprebuilt-module-path=">, Group<i_Group>, |
| Flags<[DriverOption, CC1Option]>, MetaVarName<"<directory>">, |
| HelpText<"Specify the prebuilt module path">; |
| def fmodules_prune_interval : Joined<["-"], "fmodules-prune-interval=">, Group<i_Group>, |
| Flags<[CC1Option]>, MetaVarName<"<seconds>">, |
| HelpText<"Specify the interval (in seconds) between attempts to prune the module cache">; |
| def fmodules_prune_after : Joined<["-"], "fmodules-prune-after=">, Group<i_Group>, |
| Flags<[CC1Option]>, MetaVarName<"<seconds>">, |
| HelpText<"Specify the interval (in seconds) after which a module file will be considered unused">; |
| def fmodules_search_all : Flag <["-"], "fmodules-search-all">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Search even non-imported modules to resolve references">; |
| def fbuild_session_timestamp : Joined<["-"], "fbuild-session-timestamp=">, |
| Group<i_Group>, Flags<[CC1Option]>, MetaVarName<"<time since Epoch in seconds>">, |
| HelpText<"Time when the current build session started">; |
| def fbuild_session_file : Joined<["-"], "fbuild-session-file=">, |
| Group<i_Group>, MetaVarName<"<file>">, |
| HelpText<"Use the last modification time of <file> as the build session timestamp">; |
| def fmodules_validate_once_per_build_session : Flag<["-"], "fmodules-validate-once-per-build-session">, |
| Group<i_Group>, Flags<[CC1Option]>, |
| HelpText<"Don't verify input files for the modules if the module has been " |
| "successfully validated or loaded during this build session">; |
| def fmodules_disable_diagnostic_validation : Flag<["-"], "fmodules-disable-diagnostic-validation">, |
| Group<i_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable validation of the diagnostic options when loading the module">; |
| def fmodules_validate_system_headers : Flag<["-"], "fmodules-validate-system-headers">, |
| Group<i_Group>, Flags<[CC1Option]>, |
| HelpText<"Validate the system headers that a module depends on when loading the module">; |
| def fno_modules_validate_system_headers : Flag<["-"], "fno-modules-validate-system-headers">, |
| Group<i_Group>, Flags<[DriverOption]>; |
| def fmodules : Flag <["-"], "fmodules">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Enable the 'modules' language feature">; |
| def fimplicit_module_maps : Flag <["-"], "fimplicit-module-maps">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>, |
| HelpText<"Implicitly search the file system for module map files.">; |
| def fmodules_ts : Flag <["-"], "fmodules-ts">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Enable support for the C++ Modules TS">; |
| def fmodule_maps : Flag <["-"], "fmodule-maps">, Alias<fimplicit_module_maps>; |
| def fmodule_name_EQ : Joined<["-"], "fmodule-name=">, Group<f_Group>, |
| Flags<[DriverOption,CC1Option]>, MetaVarName<"<name>">, |
| HelpText<"Specify the name of the module to build">; |
| def fmodule_name : Separate<["-"], "fmodule-name">, Alias<fmodule_name_EQ>; |
| def fmodule_implementation_of : Separate<["-"], "fmodule-implementation-of">, |
| Flags<[CC1Option]>, Alias<fmodule_name_EQ>; |
| def fmodule_map_file : Joined<["-"], "fmodule-map-file=">, |
| Group<f_Group>, Flags<[DriverOption,CC1Option]>, MetaVarName<"<file>">, |
| HelpText<"Load this module map file">; |
| def fmodule_file : Joined<["-"], "fmodule-file=">, |
| Group<i_Group>, Flags<[DriverOption,CC1Option]>, MetaVarName<"[<name>=]<file>">, |
| HelpText<"Specify the mapping of module name to precompiled module file, or load a module file if name is omitted.">; |
| def fmodules_ignore_macro : Joined<["-"], "fmodules-ignore-macro=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Ignore the definition of the given macro when building and loading modules">; |
| def fmodules_decluse : Flag <["-"], "fmodules-decluse">, Group<f_Group>, |
| Flags<[DriverOption,CC1Option]>, |
| HelpText<"Require declaration of modules used within a module">; |
| def fmodules_strict_decluse : Flag <["-"], "fmodules-strict-decluse">, Group<f_Group>, |
| Flags<[DriverOption,CC1Option]>, |
| HelpText<"Like -fmodules-decluse but requires all headers to be in modules">; |
| def fno_modules_search_all : Flag <["-"], "fno-modules-search-all">, Group<f_Group>, |
| Flags<[DriverOption, CC1Option]>; |
| def fno_implicit_modules : |
| Flag <["-"], "fno-implicit-modules">, |
| Group<f_Group>, Flags<[DriverOption, CC1Option]>; |
| def fretain_comments_from_system_headers : Flag<["-"], "fretain-comments-from-system-headers">, Group<f_Group>, Flags<[CC1Option]>; |
| |
| def fmudflapth : Flag<["-"], "fmudflapth">, Group<f_Group>; |
| def fmudflap : Flag<["-"], "fmudflap">, Group<f_Group>; |
| def fnested_functions : Flag<["-"], "fnested-functions">, Group<f_Group>; |
| def fnext_runtime : Flag<["-"], "fnext-runtime">, Group<f_Group>; |
| def fno_access_control : Flag<["-"], "fno-access-control">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable C++ access control">; |
| def fno_apple_pragma_pack : Flag<["-"], "fno-apple-pragma-pack">, Group<f_Group>; |
| def fno_asm : Flag<["-"], "fno-asm">, Group<f_Group>; |
| def fno_asynchronous_unwind_tables : Flag<["-"], "fno-asynchronous-unwind-tables">, Group<f_Group>; |
| def fno_assume_sane_operator_new : Flag<["-"], "fno-assume-sane-operator-new">, Group<f_Group>, |
| HelpText<"Don't assume that C++'s global operator new can't alias any pointer">, |
| Flags<[CC1Option]>; |
| def fno_blocks : Flag<["-"], "fno-blocks">, Group<f_Group>, Flags<[CoreOption]>; |
| def fno_borland_extensions : Flag<["-"], "fno-borland-extensions">, Group<f_Group>; |
| def fno_builtin : Flag<["-"], "fno-builtin">, Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Disable implicit builtin knowledge of functions">; |
| def fno_builtin_ : Joined<["-"], "fno-builtin-">, Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Disable implicit builtin knowledge of a specific function">; |
| def fno_caret_diagnostics : Flag<["-"], "fno-caret-diagnostics">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fno_color_diagnostics : Flag<["-"], "fno-color-diagnostics">, Group<f_Group>, |
| Flags<[CoreOption, CC1Option]>; |
| def fno_diagnostics_color : Flag<["-"], "fno-diagnostics-color">, Group<f_Group>, |
| Flags<[CoreOption, DriverOption]>; |
| def fno_common : Flag<["-"], "fno-common">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Compile common globals like normal definitions">; |
| def fno_constant_cfstrings : Flag<["-"], "fno-constant-cfstrings">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Disable creation of CodeFoundation-type constant strings">; |
| def fno_cxx_exceptions: Flag<["-"], "fno-cxx-exceptions">, Group<f_Group>; |
| def fno_cxx_modules : Flag <["-"], "fno-cxx-modules">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_diagnostics_fixit_info : Flag<["-"], "fno-diagnostics-fixit-info">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Do not include fixit information in diagnostics">; |
| def fno_diagnostics_show_hotness : Flag<["-"], "fno-diagnostics-show-hotness">, Group<f_Group>; |
| def fno_diagnostics_show_option : Flag<["-"], "fno-diagnostics-show-option">, Group<f_Group>; |
| def fno_diagnostics_show_note_include_stack : Flag<["-"], "fno-diagnostics-show-note-include-stack">, |
| Flags<[CC1Option]>, Group<f_Group>; |
| def fdigraphs : Flag<["-"], "fdigraphs">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable alternative token representations '<:', ':>', '<%', '%>', '%:', '%:%:' (default)">; |
| def fno_digraphs : Flag<["-"], "fno-digraphs">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Disallow alternative token representations '<:', ':>', '<%', '%>', '%:', '%:%:'">; |
| def fno_declspec : Flag<["-"], "fno-declspec">, Group<f_clang_Group>, |
| HelpText<"Disallow __declspec as a keyword">, Flags<[CC1Option]>; |
| def fno_dollars_in_identifiers : Flag<["-"], "fno-dollars-in-identifiers">, Group<f_Group>, |
| HelpText<"Disallow '$' in identifiers">, Flags<[CC1Option]>; |
| def fno_elide_constructors : Flag<["-"], "fno-elide-constructors">, Group<f_Group>, |
| HelpText<"Disable C++ copy constructor elision">, Flags<[CC1Option]>; |
| def fno_eliminate_unused_debug_symbols : Flag<["-"], "fno-eliminate-unused-debug-symbols">, Group<f_Group>; |
| def fno_exceptions : Flag<["-"], "fno-exceptions">, Group<f_Group>; |
| def fno_gnu_keywords : Flag<["-"], "fno-gnu-keywords">, Group<f_Group>, Flags<[CC1Option]>; |
| def fno_inline_functions : Flag<["-"], "fno-inline-functions">, Group<f_clang_Group>, Flags<[CC1Option]>; |
| def fno_inline : Flag<["-"], "fno-inline">, Group<f_clang_Group>, Flags<[CC1Option]>; |
| def fno_experimental_isel : Flag<["-"], "fno-experimental-isel">, Group<f_clang_Group>, |
| HelpText<"Disables the experimental global instruction selector">; |
| def fno_experimental_new_pass_manager : Flag<["-"], "fno-experimental-new-pass-manager">, |
| Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Disables an experimental new pass manager in LLVM.">; |
| def fveclib : Joined<["-"], "fveclib=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use the given vector functions library">, Values<"Accelerate,SVML,none">; |
| def fno_lax_vector_conversions : Flag<["-"], "fno-lax-vector-conversions">, Group<f_Group>, |
| HelpText<"Disallow implicit conversions between vectors with a different number of elements or different element types">, Flags<[CC1Option]>; |
| def fno_merge_all_constants : Flag<["-"], "fno-merge-all-constants">, Group<f_Group>, |
| HelpText<"Disallow merging of constants">; |
| def fno_modules : Flag <["-"], "fno-modules">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_implicit_module_maps : Flag <["-"], "fno-implicit-module-maps">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_module_maps : Flag <["-"], "fno-module-maps">, Alias<fno_implicit_module_maps>; |
| def fno_modules_decluse : Flag <["-"], "fno-modules-decluse">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_modules_strict_decluse : Flag <["-"], "fno-strict-modules-decluse">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fimplicit_modules : Flag <["-"], "fimplicit-modules">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fmodule_file_deps : Flag <["-"], "fmodule-file-deps">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_module_file_deps : Flag <["-"], "fno-module-file-deps">, Group<f_Group>, |
| Flags<[DriverOption]>; |
| def fno_ms_extensions : Flag<["-"], "fno-ms-extensions">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fno_ms_compatibility : Flag<["-"], "fno-ms-compatibility">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fno_delayed_template_parsing : Flag<["-"], "fno-delayed-template-parsing">, Group<f_Group>, |
| HelpText<"Disable delayed template parsing">, |
| Flags<[DriverOption, CoreOption]>; |
| def fno_objc_exceptions: Flag<["-"], "fno-objc-exceptions">, Group<f_Group>; |
| def fno_objc_legacy_dispatch : Flag<["-"], "fno-objc-legacy-dispatch">, Group<f_Group>; |
| def fno_objc_weak : Flag<["-"], "fno-objc-weak">, Group<f_Group>, Flags<[CC1Option]>; |
| def fno_omit_frame_pointer : Flag<["-"], "fno-omit-frame-pointer">, Group<f_Group>; |
| def fno_operator_names : Flag<["-"], "fno-operator-names">, Group<f_Group>, |
| HelpText<"Do not treat C++ operator name keywords as synonyms for operators">, |
| Flags<[CC1Option]>; |
| def fno_pascal_strings : Flag<["-"], "fno-pascal-strings">, Group<f_Group>; |
| def fno_rtti : Flag<["-"], "fno-rtti">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable generation of rtti information">; |
| def fno_rtti_data : Flag<["-"], "fno-rtti-data">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Control emission of RTTI data">; |
| def fno_short_enums : Flag<["-"], "fno-short-enums">, Group<f_Group>; |
| def fno_show_column : Flag<["-"], "fno-show-column">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Do not include column number on diagnostics">; |
| def fno_show_source_location : Flag<["-"], "fno-show-source-location">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Do not include source location information with diagnostics">; |
| def fdiagnostics_absolute_paths : Flag<["-"], "fdiagnostics-absolute-paths">, Group<f_Group>, |
| Flags<[CC1Option, CoreOption]>, HelpText<"Print absolute paths in diagnostics">; |
| def fno_spell_checking : Flag<["-"], "fno-spell-checking">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Disable spell-checking">; |
| def fno_stack_protector : Flag<["-"], "fno-stack-protector">, Group<f_Group>, |
| HelpText<"Disable the use of stack protectors">; |
| def fno_strict_aliasing : Flag<["-"], "fno-strict-aliasing">, Group<f_Group>, |
| Flags<[DriverOption, CoreOption]>; |
| def fstruct_path_tbaa : Flag<["-"], "fstruct-path-tbaa">, Group<f_Group>; |
| def fno_struct_path_tbaa : Flag<["-"], "fno-struct-path-tbaa">, Group<f_Group>; |
| def fno_strict_enums : Flag<["-"], "fno-strict-enums">, Group<f_Group>; |
| def fno_strict_vtable_pointers: Flag<["-"], "fno-strict-vtable-pointers">, |
| Group<f_Group>; |
| def fno_strict_overflow : Flag<["-"], "fno-strict-overflow">, Group<f_Group>; |
| def fno_threadsafe_statics : Flag<["-"], "fno-threadsafe-statics">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Do not emit code to make initialization of local statics thread safe">; |
| def fno_use_cxa_atexit : Flag<["-"], "fno-use-cxa-atexit">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Don't use __cxa_atexit for calling destructors">; |
| def fno_register_global_dtors_with_atexit : Flag<["-"], "fno-register-global-dtors-with-atexit">, Group<f_Group>, |
| HelpText<"Don't use atexit or __cxa_atexit to register global destructors">; |
| def fno_use_init_array : Flag<["-"], "fno-use-init-array">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Don't use .init_array instead of .ctors">; |
| def fno_unit_at_a_time : Flag<["-"], "fno-unit-at-a-time">, Group<f_Group>; |
| def fno_unwind_tables : Flag<["-"], "fno-unwind-tables">, Group<f_Group>; |
| def fno_verbose_asm : Flag<["-"], "fno-verbose-asm">, Group<f_Group>; |
| def fno_working_directory : Flag<["-"], "fno-working-directory">, Group<f_Group>; |
| def fno_wrapv : Flag<["-"], "fno-wrapv">, Group<f_Group>; |
| def fno_zero_initialized_in_bss : Flag<["-"], "fno-zero-initialized-in-bss">, Group<f_Group>; |
| def fobjc_arc : Flag<["-"], "fobjc-arc">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Synthesize retain and release calls for Objective-C pointers">; |
| def fno_objc_arc : Flag<["-"], "fno-objc-arc">, Group<f_Group>; |
| def fobjc_arc_exceptions : Flag<["-"], "fobjc-arc-exceptions">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use EH-safe code when synthesizing retains and releases in -fobjc-arc">; |
| def fno_objc_arc_exceptions : Flag<["-"], "fno-objc-arc-exceptions">, Group<f_Group>; |
| def fobjc_atdefs : Flag<["-"], "fobjc-atdefs">, Group<clang_ignored_f_Group>; |
| def fobjc_call_cxx_cdtors : Flag<["-"], "fobjc-call-cxx-cdtors">, Group<clang_ignored_f_Group>; |
| def fobjc_exceptions: Flag<["-"], "fobjc-exceptions">, Group<f_Group>, |
| HelpText<"Enable Objective-C exceptions">, Flags<[CC1Option]>; |
| def fapplication_extension : Flag<["-"], "fapplication-extension">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Restrict code to those available for App Extensions">; |
| def fno_application_extension : Flag<["-"], "fno-application-extension">, |
| Group<f_Group>; |
| def frelaxed_template_template_args : Flag<["-"], "frelaxed-template-template-args">, |
| Flags<[CC1Option]>, HelpText<"Enable C++17 relaxed template template argument matching">, |
| Group<f_Group>; |
| def fno_relaxed_template_template_args : Flag<["-"], "fno-relaxed-template-template-args">, |
| Group<f_Group>; |
| def fsized_deallocation : Flag<["-"], "fsized-deallocation">, Flags<[CC1Option]>, |
| HelpText<"Enable C++14 sized global deallocation functions">, Group<f_Group>; |
| def fno_sized_deallocation: Flag<["-"], "fno-sized-deallocation">, Group<f_Group>; |
| def faligned_allocation : Flag<["-"], "faligned-allocation">, Flags<[CC1Option]>, |
| HelpText<"Enable C++17 aligned allocation functions">, Group<f_Group>; |
| def fno_aligned_allocation: Flag<["-"], "fno-aligned-allocation">, |
| Group<f_Group>, Flags<[CC1Option]>; |
| def fnew_alignment_EQ : Joined<["-"], "fnew-alignment=">, |
| HelpText<"Specifies the largest alignment guaranteed by '::operator new(size_t)'">, |
| MetaVarName<"<align>">, Group<f_Group>, Flags<[CC1Option]>; |
| def : Separate<["-"], "fnew-alignment">, Alias<fnew_alignment_EQ>; |
| def : Flag<["-"], "faligned-new">, Alias<faligned_allocation>; |
| def : Flag<["-"], "fno-aligned-new">, Alias<fno_aligned_allocation>; |
| def faligned_new_EQ : Joined<["-"], "faligned-new=">; |
| |
| def fobjc_legacy_dispatch : Flag<["-"], "fobjc-legacy-dispatch">, Group<f_Group>; |
| def fobjc_new_property : Flag<["-"], "fobjc-new-property">, Group<clang_ignored_f_Group>; |
| def fobjc_infer_related_result_type : Flag<["-"], "fobjc-infer-related-result-type">, |
| Group<f_Group>; |
| def fno_objc_infer_related_result_type : Flag<["-"], |
| "fno-objc-infer-related-result-type">, Group<f_Group>, |
| HelpText< |
| "do not infer Objective-C related result type based on method family">, |
| Flags<[CC1Option]>; |
| def fobjc_link_runtime: Flag<["-"], "fobjc-link-runtime">, Group<f_Group>; |
| def fobjc_weak : Flag<["-"], "fobjc-weak">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable ARC-style weak references in Objective-C">; |
| |
| // Objective-C ABI options. |
| def fobjc_runtime_EQ : Joined<["-"], "fobjc-runtime=">, Group<f_Group>, Flags<[CC1Option, CoreOption]>, |
| HelpText<"Specify the target Objective-C runtime kind and version">; |
| def fobjc_abi_version_EQ : Joined<["-"], "fobjc-abi-version=">, Group<f_Group>; |
| def fobjc_nonfragile_abi_version_EQ : Joined<["-"], "fobjc-nonfragile-abi-version=">, Group<f_Group>; |
| def fobjc_nonfragile_abi : Flag<["-"], "fobjc-nonfragile-abi">, Group<f_Group>; |
| def fno_objc_nonfragile_abi : Flag<["-"], "fno-objc-nonfragile-abi">, Group<f_Group>; |
| |
| def fobjc_sender_dependent_dispatch : Flag<["-"], "fobjc-sender-dependent-dispatch">, Group<f_Group>; |
| def fomit_frame_pointer : Flag<["-"], "fomit-frame-pointer">, Group<f_Group>; |
| def fopenmp : Flag<["-"], "fopenmp">, Group<f_Group>, Flags<[CC1Option, NoArgumentUnused]>, |
| HelpText<"Parse OpenMP pragmas and generate parallel code.">; |
| def fno_openmp : Flag<["-"], "fno-openmp">, Group<f_Group>, Flags<[NoArgumentUnused]>; |
| def fopenmp_version_EQ : Joined<["-"], "fopenmp-version=">, Group<f_Group>, Flags<[CC1Option, NoArgumentUnused]>; |
| def fopenmp_EQ : Joined<["-"], "fopenmp=">, Group<f_Group>; |
| def fopenmp_use_tls : Flag<["-"], "fopenmp-use-tls">, Group<f_Group>, |
| Flags<[NoArgumentUnused, HelpHidden]>; |
| def fnoopenmp_use_tls : Flag<["-"], "fnoopenmp-use-tls">, Group<f_Group>, |
| Flags<[CC1Option, NoArgumentUnused, HelpHidden]>; |
| def fopenmp_targets_EQ : CommaJoined<["-"], "fopenmp-targets=">, Flags<[DriverOption, CC1Option]>, |
| HelpText<"Specify comma-separated list of triples OpenMP offloading targets to be supported">; |
| def fopenmp_dump_offload_linker_script : Flag<["-"], "fopenmp-dump-offload-linker-script">, |
| Group<f_Group>, Flags<[NoArgumentUnused, HelpHidden]>; |
| def fopenmp_relocatable_target : Flag<["-"], "fopenmp-relocatable-target">, |
| Group<f_Group>, Flags<[CC1Option, NoArgumentUnused, HelpHidden]>; |
| def fnoopenmp_relocatable_target : Flag<["-"], "fnoopenmp-relocatable-target">, |
| Group<f_Group>, Flags<[CC1Option, NoArgumentUnused, HelpHidden]>; |
| def fopenmp_simd : Flag<["-"], "fopenmp-simd">, Group<f_Group>, Flags<[CC1Option, NoArgumentUnused]>, |
| HelpText<"Emit OpenMP code only for SIMD-based constructs.">; |
| def fno_openmp_simd : Flag<["-"], "fno-openmp-simd">, Group<f_Group>, Flags<[CC1Option, NoArgumentUnused]>; |
| def fopenmp_cuda_mode : Flag<["-"], "fopenmp-cuda-mode">, Group<f_Group>, |
| Flags<[CC1Option, NoArgumentUnused, HelpHidden]>; |
| def fno_openmp_cuda_mode : Flag<["-"], "fno-openmp-cuda-mode">, Group<f_Group>, |
| Flags<[NoArgumentUnused, HelpHidden]>; |
| def fno_optimize_sibling_calls : Flag<["-"], "fno-optimize-sibling-calls">, Group<f_Group>; |
| def foptimize_sibling_calls : Flag<["-"], "foptimize-sibling-calls">, Group<f_Group>; |
| def fno_escaping_block_tail_calls : Flag<["-"], "fno-escaping-block-tail-calls">, Group<f_Group>, Flags<[CC1Option]>; |
| def fescaping_block_tail_calls : Flag<["-"], "fescaping-block-tail-calls">, Group<f_Group>; |
| def force__cpusubtype__ALL : Flag<["-"], "force_cpusubtype_ALL">; |
| def force__flat__namespace : Flag<["-"], "force_flat_namespace">; |
| def force__load : Separate<["-"], "force_load">; |
| def force_addr : Joined<["-"], "fforce-addr">, Group<clang_ignored_f_Group>; |
| def foutput_class_dir_EQ : Joined<["-"], "foutput-class-dir=">, Group<f_Group>; |
| def fpack_struct : Flag<["-"], "fpack-struct">, Group<f_Group>; |
| def fno_pack_struct : Flag<["-"], "fno-pack-struct">, Group<f_Group>; |
| def fpack_struct_EQ : Joined<["-"], "fpack-struct=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Specify the default maximum struct packing alignment">; |
| def fmax_type_align_EQ : Joined<["-"], "fmax-type-align=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Specify the maximum alignment to enforce on pointers lacking an explicit alignment">; |
| def fno_max_type_align : Flag<["-"], "fno-max-type-align">, Group<f_Group>; |
| def fpascal_strings : Flag<["-"], "fpascal-strings">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Recognize and construct Pascal-style string literals">; |
| def fpcc_struct_return : Flag<["-"], "fpcc-struct-return">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Override the default ABI to return all structs on the stack">; |
| def fpch_preprocess : Flag<["-"], "fpch-preprocess">, Group<f_Group>; |
| def fpic : Flag<["-"], "fpic">, Group<f_Group>; |
| def fno_pic : Flag<["-"], "fno-pic">, Group<f_Group>; |
| def fpie : Flag<["-"], "fpie">, Group<f_Group>; |
| def fno_pie : Flag<["-"], "fno-pie">, Group<f_Group>; |
| def fplt : Flag<["-"], "fplt">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use the PLT to make function calls">; |
| def fno_plt : Flag<["-"], "fno-plt">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Do not use the PLT to make function calls">; |
| def fropi : Flag<["-"], "fropi">, Group<f_Group>; |
| def fno_ropi : Flag<["-"], "fno-ropi">, Group<f_Group>; |
| def frwpi : Flag<["-"], "frwpi">, Group<f_Group>; |
| def fno_rwpi : Flag<["-"], "fno-rwpi">, Group<f_Group>; |
| def fplugin_EQ : Joined<["-"], "fplugin=">, Group<f_Group>, Flags<[DriverOption]>, MetaVarName<"<dsopath>">, |
| HelpText<"Load the named plugin (dynamic shared object)">; |
| def fpreserve_as_comments : Flag<["-"], "fpreserve-as-comments">, Group<f_Group>; |
| def fno_preserve_as_comments : Flag<["-"], "fno-preserve-as-comments">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Do not preserve comments in inline assembly">; |
| def fprofile_arcs : Flag<["-"], "fprofile-arcs">, Group<f_Group>; |
| def fno_profile_arcs : Flag<["-"], "fno-profile-arcs">, Group<f_Group>; |
| def framework : Separate<["-"], "framework">, Flags<[LinkerInput]>; |
| def frandom_seed_EQ : Joined<["-"], "frandom-seed=">, Group<clang_ignored_f_Group>; |
| def freg_struct_return : Flag<["-"], "freg-struct-return">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Override the default ABI to return small structs in registers">; |
| def frtti : Flag<["-"], "frtti">, Group<f_Group>; |
| def : Flag<["-"], "fsched-interblock">, Group<clang_ignored_f_Group>; |
| def fshort_enums : Flag<["-"], "fshort-enums">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Allocate to an enum type only as many bytes as it needs for the declared range of possible values">; |
| def fchar8__t : Flag<["-"], "fchar8_t">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable C++ builtin type char8_t">; |
| def fno_char8__t : Flag<["-"], "fno-char8_t">, Group<f_Group>, |
| HelpText<"Disable C++ builtin type char8_t">; |
| def fshort_wchar : Flag<["-"], "fshort-wchar">, Group<f_Group>, |
| HelpText<"Force wchar_t to be a short unsigned int">; |
| def fno_short_wchar : Flag<["-"], "fno-short-wchar">, Group<f_Group>, |
| HelpText<"Force wchar_t to be an unsigned int">; |
| def fshow_overloads_EQ : Joined<["-"], "fshow-overloads=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Which overload candidates to show when overload resolution fails: " |
| "best|all; defaults to all">, Values<"best,all">; |
| def fshow_column : Flag<["-"], "fshow-column">, Group<f_Group>, Flags<[CC1Option]>; |
| def fshow_source_location : Flag<["-"], "fshow-source-location">, Group<f_Group>; |
| def fspell_checking : Flag<["-"], "fspell-checking">, Group<f_Group>; |
| def fspell_checking_limit_EQ : Joined<["-"], "fspell-checking-limit=">, Group<f_Group>; |
| def fsigned_bitfields : Flag<["-"], "fsigned-bitfields">, Group<f_Group>; |
| def fsigned_char : Flag<["-"], "fsigned-char">, Group<f_Group>; |
| def fno_signed_char : Flag<["-"], "fno-signed-char">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Char is unsigned">; |
| def fsplit_stack : Flag<["-"], "fsplit-stack">, Group<f_Group>; |
| def fstack_protector_all : Flag<["-"], "fstack-protector-all">, Group<f_Group>, |
| HelpText<"Force the usage of stack protectors for all functions">; |
| def fstack_protector_strong : Flag<["-"], "fstack-protector-strong">, Group<f_Group>, |
| HelpText<"Use a strong heuristic to apply stack protectors to functions">; |
| def fstack_protector : Flag<["-"], "fstack-protector">, Group<f_Group>, |
| HelpText<"Enable stack protectors for functions potentially vulnerable to stack smashing">; |
| def fstandalone_debug : Flag<["-"], "fstandalone-debug">, Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Emit full debug info for all types used by the program">; |
| def fno_standalone_debug : Flag<["-"], "fno-standalone-debug">, Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Limit debug information produced to reduce size of debug binary">; |
| def flimit_debug_info : Flag<["-"], "flimit-debug-info">, Flags<[CoreOption]>, Alias<fno_standalone_debug>; |
| def fno_limit_debug_info : Flag<["-"], "fno-limit-debug-info">, Flags<[CoreOption]>, Alias<fstandalone_debug>; |
| def fdebug_macro : Flag<["-"], "fdebug-macro">, Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Emit macro debug information">; |
| def fno_debug_macro : Flag<["-"], "fno-debug-macro">, Group<f_Group>, Flags<[CoreOption]>, |
| HelpText<"Do not emit macro debug information">; |
| def fstrict_aliasing : Flag<["-"], "fstrict-aliasing">, Group<f_Group>, |
| Flags<[DriverOption, CoreOption]>; |
| def fstrict_enums : Flag<["-"], "fstrict-enums">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable optimizations based on the strict definition of an enum's " |
| "value range">; |
| def fstrict_vtable_pointers: Flag<["-"], "fstrict-vtable-pointers">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable optimizations based on the strict rules for overwriting " |
| "polymorphic C++ objects">; |
| def fstrict_overflow : Flag<["-"], "fstrict-overflow">, Group<f_Group>; |
| def fsyntax_only : Flag<["-"], "fsyntax-only">, |
| Flags<[DriverOption,CoreOption,CC1Option]>, Group<Action_Group>; |
| def ftabstop_EQ : Joined<["-"], "ftabstop=">, Group<f_Group>; |
| def ftemplate_depth_EQ : Joined<["-"], "ftemplate-depth=">, Group<f_Group>; |
| def ftemplate_depth_ : Joined<["-"], "ftemplate-depth-">, Group<f_Group>; |
| def ftemplate_backtrace_limit_EQ : Joined<["-"], "ftemplate-backtrace-limit=">, |
| Group<f_Group>; |
| def foperator_arrow_depth_EQ : Joined<["-"], "foperator-arrow-depth=">, |
| Group<f_Group>; |
| |
| def fsave_optimization_record : Flag<["-"], "fsave-optimization-record">, |
| Group<f_Group>, HelpText<"Generate a YAML optimization record file">; |
| def fno_save_optimization_record : Flag<["-"], "fno-save-optimization-record">, |
| Group<f_Group>, Flags<[NoArgumentUnused]>; |
| def foptimization_record_file_EQ : Joined<["-"], "foptimization-record-file=">, |
| Group<f_Group>, |
| HelpText<"Specify the file name of any generated YAML optimization record">; |
| |
| def ftest_coverage : Flag<["-"], "ftest-coverage">, Group<f_Group>; |
| def fvectorize : Flag<["-"], "fvectorize">, Group<f_Group>, |
| HelpText<"Enable the loop vectorization passes">; |
| def fno_vectorize : Flag<["-"], "fno-vectorize">, Group<f_Group>; |
| def : Flag<["-"], "ftree-vectorize">, Alias<fvectorize>; |
| def : Flag<["-"], "fno-tree-vectorize">, Alias<fno_vectorize>; |
| def fslp_vectorize : Flag<["-"], "fslp-vectorize">, Group<f_Group>, |
| HelpText<"Enable the superword-level parallelism vectorization passes">; |
| def fno_slp_vectorize : Flag<["-"], "fno-slp-vectorize">, Group<f_Group>; |
| def : Flag<["-"], "ftree-slp-vectorize">, Alias<fslp_vectorize>; |
| def : Flag<["-"], "fno-tree-slp-vectorize">, Alias<fno_slp_vectorize>; |
| def Wlarge_by_value_copy_def : Flag<["-"], "Wlarge-by-value-copy">, |
| HelpText<"Warn if a function definition returns or accepts an object larger " |
| "in bytes than a given value">, Flags<[HelpHidden]>; |
| def Wlarge_by_value_copy_EQ : Joined<["-"], "Wlarge-by-value-copy=">, Flags<[CC1Option]>; |
| |
| // These "special" warning flags are effectively processed as f_Group flags by the driver: |
| // Just silence warnings about -Wlarger-than for now. |
| def Wlarger_than_EQ : Joined<["-"], "Wlarger-than=">, Group<clang_ignored_f_Group>; |
| def Wlarger_than_ : Joined<["-"], "Wlarger-than-">, Alias<Wlarger_than_EQ>; |
| def Wframe_larger_than_EQ : Joined<["-"], "Wframe-larger-than=">, Group<f_Group>, Flags<[DriverOption]>; |
| |
| def : Flag<["-"], "fterminated-vtables">, Alias<fapple_kext>; |
| def fthreadsafe_statics : Flag<["-"], "fthreadsafe-statics">, Group<f_Group>; |
| def ftime_report : Flag<["-"], "ftime-report">, Group<f_Group>, Flags<[CC1Option]>; |
| def ftlsmodel_EQ : Joined<["-"], "ftls-model=">, Group<f_Group>, Flags<[CC1Option]>; |
| def ftrapv : Flag<["-"], "ftrapv">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Trap on integer overflow">; |
| def ftrapv_handler_EQ : Joined<["-"], "ftrapv-handler=">, Group<f_Group>, |
| MetaVarName<"<function name>">, |
| HelpText<"Specify the function to be called on overflow">; |
| def ftrapv_handler : Separate<["-"], "ftrapv-handler">, Group<f_Group>, Flags<[CC1Option]>; |
| def ftrap_function_EQ : Joined<["-"], "ftrap-function=">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Issue call to specified function rather than a trap instruction">; |
| def funit_at_a_time : Flag<["-"], "funit-at-a-time">, Group<f_Group>; |
| def funroll_loops : Flag<["-"], "funroll-loops">, Group<f_Group>, |
| HelpText<"Turn on loop unroller">, Flags<[CC1Option]>; |
| def fno_unroll_loops : Flag<["-"], "fno-unroll-loops">, Group<f_Group>, |
| HelpText<"Turn off loop unroller">, Flags<[CC1Option]>; |
| def freroll_loops : Flag<["-"], "freroll-loops">, Group<f_Group>, |
| HelpText<"Turn on loop reroller">, Flags<[CC1Option]>; |
| def fno_reroll_loops : Flag<["-"], "fno-reroll-loops">, Group<f_Group>, |
| HelpText<"Turn off loop reroller">; |
| def ftrigraphs : Flag<["-"], "ftrigraphs">, Group<f_Group>, |
| HelpText<"Process trigraph sequences">, Flags<[CC1Option]>; |
| def fno_trigraphs : Flag<["-"], "fno-trigraphs">, Group<f_Group>, |
| HelpText<"Do not process trigraph sequences">, Flags<[CC1Option]>; |
| def funsigned_bitfields : Flag<["-"], "funsigned-bitfields">, Group<f_Group>; |
| def funsigned_char : Flag<["-"], "funsigned-char">, Group<f_Group>; |
| def fno_unsigned_char : Flag<["-"], "fno-unsigned-char">; |
| def funwind_tables : Flag<["-"], "funwind-tables">, Group<f_Group>; |
| def fuse_cxa_atexit : Flag<["-"], "fuse-cxa-atexit">, Group<f_Group>; |
| def fregister_global_dtors_with_atexit : Flag<["-"], "fregister-global-dtors-with-atexit">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use atexit or __cxa_atexit to register global destructors">; |
| def fuse_init_array : Flag<["-"], "fuse-init-array">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use .init_array instead of .ctors">; |
| def fno_var_tracking : Flag<["-"], "fno-var-tracking">, Group<clang_ignored_f_Group>; |
| def fverbose_asm : Flag<["-"], "fverbose-asm">, Group<f_Group>; |
| def fvisibility_EQ : Joined<["-"], "fvisibility=">, Group<f_Group>, |
| HelpText<"Set the default symbol visibility for all global declarations">, Values<"hidden,default">; |
| def fvisibility_inlines_hidden : Flag<["-"], "fvisibility-inlines-hidden">, Group<f_Group>, |
| HelpText<"Give inline C++ member functions hidden visibility by default">, |
| Flags<[CC1Option]>; |
| def fvisibility_ms_compat : Flag<["-"], "fvisibility-ms-compat">, Group<f_Group>, |
| HelpText<"Give global types 'default' visibility and global functions and " |
| "variables 'hidden' visibility by default">; |
| def fwhole_program_vtables : Flag<["-"], "fwhole-program-vtables">, Group<f_Group>, |
| Flags<[CoreOption, CC1Option]>, |
| HelpText<"Enables whole-program vtable optimization. Requires -flto">; |
| def fno_whole_program_vtables : Flag<["-"], "fno-whole-program-vtables">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fforce_emit_vtables : Flag<["-"], "fforce-emit-vtables">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Emits more virtual tables to improve devirtualization">; |
| def fno_force_emit_vtables : Flag<["-"], "fno-force-emit-vtables">, Group<f_Group>, |
| Flags<[CoreOption]>; |
| def fwrapv : Flag<["-"], "fwrapv">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Treat signed integer overflow as two's complement">; |
| def fwritable_strings : Flag<["-"], "fwritable-strings">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Store string literals as writable data">; |
| def fzero_initialized_in_bss : Flag<["-"], "fzero-initialized-in-bss">, Group<f_Group>; |
| def ffunction_sections : Flag<["-"], "ffunction-sections">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Place each function in its own section (ELF Only)">; |
| def fno_function_sections : Flag<["-"], "fno-function-sections">, |
| Group<f_Group>, Flags<[CC1Option]>; |
| def fdata_sections : Flag <["-"], "fdata-sections">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Place each data in its own section (ELF Only)">; |
| def fno_data_sections : Flag <["-"], "fno-data-sections">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fstack_size_section : Flag<["-"], "fstack-size-section">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Emit section containing metadata on function stack sizes">; |
| def fno_stack_size_section : Flag<["-"], "fno-stack-size-section">, Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Don't emit section containing metadata on function stack sizes">; |
| |
| def funique_section_names : Flag <["-"], "funique-section-names">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Use unique names for text and data sections (ELF Only)">; |
| def fno_unique_section_names : Flag <["-"], "fno-unique-section-names">, |
| Group<f_Group>, Flags<[CC1Option]>; |
| |
| def fstrict_return : Flag<["-"], "fstrict-return">, Group<f_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Always treat control flow paths that fall off the end of a " |
| "non-void function as unreachable">; |
| def fno_strict_return : Flag<["-"], "fno-strict-return">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| |
| def fallow_editor_placeholders : Flag<["-"], "fallow-editor-placeholders">, |
| Group<f_Group>, Flags<[CC1Option]>, |
| HelpText<"Treat editor placeholders as valid source code">; |
| def fno_allow_editor_placeholders : Flag<["-"], |
| "fno-allow-editor-placeholders">, Group<f_Group>; |
| |
| def fdebug_types_section: Flag <["-"], "fdebug-types-section">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Place debug types in their own section (ELF Only)">; |
| def fno_debug_types_section: Flag<["-"], "fno-debug-types-section">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fsplit_dwarf_inlining: Flag <["-"], "fsplit-dwarf-inlining">, Group<f_Group>, |
| Flags<[CC1Option]>, HelpText<"Provide minimal debug info in the object/executable to facilitate online symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF">; |
| def fno_split_dwarf_inlining: Flag<["-"], "fno-split-dwarf-inlining">, Group<f_Group>, |
| Flags<[CC1Option]>; |
| def fdebug_prefix_map_EQ |
| : Joined<["-"], "fdebug-prefix-map=">, Group<f_Group>, |
| Flags<[CC1Option,CC1AsOption]>, |
| HelpText<"remap file source paths in debug info">; |
| def g_Flag : Flag<["-"], "g">, Group<g_Group>, |
| HelpText<"Generate source-level debug information">; |
| def gline_tables_only : Flag<["-"], "gline-tables-only">, Group<gN_Group>, |
| Flags<[CoreOption]>, HelpText<"Emit debug line number tables only">; |
| def gmlt : Flag<["-"], "gmlt">, Alias<gline_tables_only>; |
| def g0 : Flag<["-"], "g0">, Group<gN_Group>; |
| def g1 : Flag<["-"], "g1">, Group<gN_Group>, Alias<gline_tables_only>; |
| def g2 : Flag<["-"], "g2">, Group<gN_Group>; |
| def g3 : Flag<["-"], "g3">, Group<gN_Group>; |
| def ggdb : Flag<["-"], "ggdb">, Group<gTune_Group>; |
| def ggdb0 : Flag<["-"], "ggdb0">, Group<ggdbN_Group>; |
| def ggdb1 : Flag<["-"], "ggdb1">, Group<ggdbN_Group>; |
| def ggdb2 : Flag<["-"], "ggdb2">, Group<ggdbN_Group>; |
| def ggdb3 : Flag<["-"], "ggdb3">, Group<ggdbN_Group>; |
| def glldb : Flag<["-"], "glldb">, Group<gTune_Group>; |
| def gsce : Flag<["-"], "gsce">, Group<gTune_Group>; |
| def gdwarf_2 : Flag<["-"], "gdwarf-2">, Group<g_Group>, |
| HelpText<"Generate source-level debug information with dwarf version 2">; |
| def gdwarf_3 : Flag<["-"], "gdwarf-3">, Group<g_Group>, |
| HelpText<"Generate source-level debug information with dwarf version 3">; |
| def gdwarf_4 : Flag<["-"], "gdwarf-4">, Group<g_Group>, |
| HelpText<"Generate source-level debug information with dwarf version 4">; |
| def gdwarf_5 : Flag<["-"], "gdwarf-5">, Group<g_Group>, |
| HelpText<"Generate source-level debug information with dwarf version 5">; |
| def gcodeview : Flag<["-"], "gcodeview">, |
| HelpText<"Generate CodeView debug information">, |
| Flags<[CC1Option, CC1AsOption, CoreOption]>; |
| // Equivalent to our default dwarf version. Forces usual dwarf emission when |
| // CodeView is enabled. |
| def gdwarf : Flag<["-"], "gdwarf">, Alias<gdwarf_4>, Flags<[CoreOption]>; |
| |
| def gfull : Flag<["-"], "gfull">, Group<g_Group>; |
| def gused : Flag<["-"], "gused">, Group<g_Group>; |
| def gstabs : Joined<["-"], "gstabs">, Group<g_Group>, Flags<[Unsupported]>; |
| def gcoff : Joined<["-"], "gcoff">, Group<g_Group>, Flags<[Unsupported]>; |
| def gxcoff : Joined<["-"], "gxcoff">, Group<g_Group>, Flags<[Unsupported]>; |
| def gvms : Joined<["-"], "gvms">, Group<g_Group>, Flags<[Unsupported]>; |
| def gtoggle : Flag<["-"], "gtoggle">, Group<g_flags_Group>, Flags<[Unsupported]>; |
| def grecord_gcc_switches : Flag<["-"], "grecord-gcc-switches">, Group<g_flags_Group>; |
| def gno_record_gcc_switches : Flag<["-"], "gno-record-gcc-switches">, |
| Group<g_flags_Group>; |
| def gstrict_dwarf : Flag<["-"], "gstrict-dwarf">, Group<g_flags_Group>; |
| def gno_strict_dwarf : Flag<["-"], "gno-strict-dwarf">, Group<g_flags_Group>; |
| def gcolumn_info : Flag<["-"], "gcolumn-info">, Group<g_flags_Group>, Flags<[CoreOption]>; |
| def gno_column_info : Flag<["-"], "gno-column-info">, Group<g_flags_Group>, Flags<[CoreOption]>; |
| def gsplit_dwarf : Flag<["-"], "gsplit-dwarf">, Group<g_flags_Group>; |
| def ggnu_pubnames : Flag<["-"], "ggnu-pubnames">, Group<g_flags_Group>, Flags<[CC1Option]>; |
| def gno_gnu_pubnames : Flag<["-"], "gno-gnu-pubnames">, Group<g_flags_Group>, Flags<[CC1Option]>; |
| def gdwarf_aranges : Flag<["-"], "gdwarf-aranges">, Group<g_flags_Group>; |
| def gmodules : Flag <["-"], "gmodules">, Group<gN_Group>, |
| HelpText<"Generate debug info with external references to clang modules" |
| " or precompiled headers">; |
| def gz : Flag<["-"], "gz">, Group<g_flags_Group>, |
| HelpText<"DWARF debug sections compression type">; |
| def gz_EQ : Joined<["-"], "gz=">, Group<g_flags_Group>, |
| HelpText<"DWARF debug sections compression type">; |
| def gembed_source : Flag<["-"], "gembed-source">, Group<g_flags_Group>, Flags<[CC1Option]>, |
| HelpText<"Embed source text in DWARF debug sections">; |
| def gno_embed_source : Flag<["-"], "gno-embed-source">, Group<g_flags_Group>, |
| Flags<[DriverOption]>, |
| HelpText<"Restore the default behavior of not embedding source text in DWARF debug sections">; |
| def headerpad__max__install__names : Joined<["-"], "headerpad_max_install_names">; |
| def help : Flag<["-", "--"], "help">, Flags<[CC1Option,CC1AsOption]>, |
| HelpText<"Display available options">; |
| def index_header_map : Flag<["-"], "index-header-map">, Flags<[CC1Option]>, |
| HelpText<"Make the next included directory (-I or -F) an indexer header map">; |
| def idirafter : JoinedOrSeparate<["-"], "idirafter">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Add directory to AFTER include search path">; |
| def iframework : JoinedOrSeparate<["-"], "iframework">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Add directory to SYSTEM framework search path">; |
| def iframeworkwithsysroot : JoinedOrSeparate<["-"], "iframeworkwithsysroot">, |
| Group<clang_i_Group>, |
| HelpText<"Add directory to SYSTEM framework search path, " |
| "absolute paths are relative to -isysroot">, |
| MetaVarName<"<directory>">, Flags<[CC1Option]>; |
| def imacros : JoinedOrSeparate<["-", "--"], "imacros">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Include macros from file before parsing">, MetaVarName<"<file>">; |
| def image__base : Separate<["-"], "image_base">; |
| def include_ : JoinedOrSeparate<["-", "--"], "include">, Group<clang_i_Group>, EnumName<"include">, |
| MetaVarName<"<file>">, HelpText<"Include file before parsing">, Flags<[CC1Option]>; |
| def include_pch : Separate<["-"], "include-pch">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Include precompiled header file">, MetaVarName<"<file>">; |
| def relocatable_pch : Flag<["-", "--"], "relocatable-pch">, Flags<[CC1Option]>, |
| HelpText<"Whether to build a relocatable precompiled header">; |
| def verify_pch : Flag<["-"], "verify-pch">, Group<Action_Group>, Flags<[CC1Option]>, |
| HelpText<"Load and verify that a pre-compiled header file is not stale">; |
| def init : Separate<["-"], "init">; |
| def install__name : Separate<["-"], "install_name">; |
| def iprefix : JoinedOrSeparate<["-"], "iprefix">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Set the -iwithprefix/-iwithprefixbefore prefix">, MetaVarName<"<dir>">; |
| def iquote : JoinedOrSeparate<["-"], "iquote">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Add directory to QUOTE include search path">, MetaVarName<"<directory>">; |
| def isysroot : JoinedOrSeparate<["-"], "isysroot">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Set the system root directory (usually /)">, MetaVarName<"<dir>">; |
| def isystem : JoinedOrSeparate<["-"], "isystem">, Group<clang_i_Group>, |
| Flags<[CC1Option]>, |
| HelpText<"Add directory to SYSTEM include search path">, MetaVarName<"<directory>">; |
| def isystem_after : JoinedOrSeparate<["-"], "isystem-after">, |
| Group<clang_i_Group>, Flags<[DriverOption]>, MetaVarName<"<directory>">, |
| HelpText<"Add directory to end of the SYSTEM include search path">; |
| def iwithprefixbefore : JoinedOrSeparate<["-"], "iwithprefixbefore">, Group<clang_i_Group>, |
| HelpText<"Set directory to include search path with prefix">, MetaVarName<"<dir>">, |
| Flags<[CC1Option]>; |
| def iwithprefix : JoinedOrSeparate<["-"], "iwithprefix">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Set directory to SYSTEM include search path with prefix">, MetaVarName<"<dir>">; |
| def iwithsysroot : JoinedOrSeparate<["-"], "iwithsysroot">, Group<clang_i_Group>, |
| HelpText<"Add directory to SYSTEM include search path, " |
| "absolute paths are relative to -isysroot">, MetaVarName<"<directory>">, |
| Flags<[CC1Option]>; |
| def ivfsoverlay : JoinedOrSeparate<["-"], "ivfsoverlay">, Group<clang_i_Group>, Flags<[CC1Option]>, |
| HelpText<"Overlay the virtual filesystem described by file over the real file system">; |
| def imultilib : Separate<["-"], "imultilib">, Group<gfortran_Group>; |
| def keep__private__externs : Flag<["-"], "keep_private_externs">; |
| def l : JoinedOrSeparate<["-"], "l">, Flags<[LinkerInput, RenderJoined]>, |
| Group<Link_Group>; |
| def lazy__framework : Separate<["-"], "lazy_framework">, Flags<[LinkerInput]>; |
| def lazy__library : Separate<["-"], "lazy_library">, Flags<[LinkerInput]>; |
| def mlittle_endian : Flag<["-"], "mlittle-endian">, Flags<[DriverOption]>; |
| def EL : Flag<["-"], "EL">, Alias<mlittle_endian>; |
| def mbig_endian : Flag<["-"], "mbig-endian">, Flags<[DriverOption]>; |
| def EB : Flag<["-"], "EB">, Alias<mbig_endian>; |
| def m16 : Flag<["-"], "m16">, Group<m_Group>, Flags<[DriverOption, CoreOption]>; |
| def m32 : Flag<["-"], "m32">, Group<m_Group>, Flags<[DriverOption, CoreOption]>; |
| def mqdsp6_compat : Flag<["-"], "mqdsp6-compat">, Group<m_Group>, Flags<[DriverOption,CC1Option]>, |
| HelpText<"Enable hexagon-qdsp6 backward compatibility">; |
| def m64 : Flag<["-"], "m64">, Group<m_Group>, Flags<[DriverOption, CoreOption]>; |
| def mx32 : Flag<["-"], "mx32">, Group<m_Group>, Flags<[DriverOption, CoreOption]>; |
| def mabi_EQ : Joined<["-"], "mabi=">, Group<m_Group>; |
| def miamcu : Flag<["-"], "miamcu">, Group<m_Group>, Flags<[DriverOption, CoreOption]>, |
| HelpText<"Use Intel MCU ABI">; |
| def mno_iamcu : Flag<["-"], "mno-iamcu">, Group<m_Group>, Flags<[DriverOption, CoreOption]>; |
| def malign_functions_EQ : Joined<["-"], "malign-functions=">, Group<clang_ignored_m_Group>; |
| def malign_loops_EQ : Joined<["-"], "malign-loops=">, Group<clang_ignored_m_Group>; |
| def malign_jumps_EQ : Joined<["-"], "malign-jumps=">, Group<clang_ignored_m_Group>; |
| def mfancy_math_387 : Flag<["-"], "mfancy-math-387">, Group<clang_ignored_m_Group>; |
| def mlong_calls : Flag<["-"], "mlong-calls">, Group<m_Group>, |
| HelpText<"Generate branches with extended addressability, usually via indirect jumps.">; |
| def mno_long_calls : Flag<["-"], "mno-long-calls">, Group<m_Group>, |
| HelpText<"Restore the default behaviour of not generating long calls">; |
| def mexecute_only : Flag<["-"], "mexecute-only">, Group<m_arm_Features_Group>, |
| HelpText<"Disallow generation of data access to code sections (ARM only)">; |
| def mno_execute_only : Flag<["-"], "mno-execute-only">, Group<m_arm_Features_Group>, |
| HelpText<"Allow generation of data access to code sections (ARM only)">; |
| def mtp_mode_EQ : Joined<["-"], "mtp=">, Group<m_arm_Features_Group>, Values<"soft, cp15">, |
| HelpText<"Read thread pointer from coprocessor register (ARM only)">; |
| def mpure_code : Flag<["-"], "mpure-code">, Alias<mexecute_only>; // Alias for GCC compatibility |
| def mno_pure_code : Flag<["-"], "mno-pure-code">, Alias<mno_execute_only>; |
| def mtvos_version_min_EQ : Joined<["-"], "mtvos-version-min=">, Group<m_Group>; |
| def mappletvos_version_min_EQ : Joined<["-"], "mappletvos-version-min=">, Alias<mtvos_version_min_EQ>; |
| def mtvos_simulator_version_min_EQ : Joined<["-"], "mtvos-simulator-version-min=">; |
| def mappletvsimulator_version_min_EQ : Joined<["-"], "mappletvsimulator-version-min=">, Alias<mtvos_simulator_version_min_EQ>; |
| def mwatchos_version_min_EQ : Joined<["-"], "mwatchos-version-min=">, Group<m_Group>; |
| def mwatchos_simulator_version_min_EQ : Joined<["-"], "mwatchos-simulator-version-min=">; |
| def mwatchsimulator_version_min_EQ : Joined<["-"], "mwatchsimulator-version-min=">, Alias<mwatchos_simulator_version_min_EQ>; |
| def march_EQ : Joined<["-"], "march=">, Group<m_Group>; |
| def masm_EQ : Joined<["-"], "masm=">, Group<m_Group>, Flags<[DriverOption]>; |
| def mcmodel_EQ : Joined<["-"], "mcmodel=">, Group<m_Group>; |
| def mimplicit_it_EQ : Joined<["-"], "mimplicit-it=">, Group<m_Group>; |
| def mdefault_build_attributes : Joined<["-"], "mdefault-build-attributes">, Group<m_Group>; |
| def mno_default_build_attributes : Joined<["-"], "mno-default-build-attributes">, Group<m_Group>; |
| def mconstant_cfstrings : Flag<["-"], "mconstant-cfstrings">, Group<clang_ignored_m_Group>; |
| def mconsole : Joined<["-"], "mconsole">, Group<m_Group>, Flags<[DriverOption]>; |
| def mwindows : Joined<["-"], "mwindows">, Group<m_Group>, Flags<[DriverOption]>; |
| def mdll : Joined<["-"], "mdll">, Group<m_Group>, Flags<[DriverOption]>; |
| def municode : Joined<["-"], "municode">, Group<m_Group>, Flags<[DriverOption]>; |
| def mthreads : Joined<["-"], "mthreads">, Group<m_Group>, Flags<[DriverOption]>; |
| def mcpu_EQ : Joined<["-"], "mcpu=">, Group<m_Group>; |
| def mmcu_EQ : Joined<["-"], "mmcu=">, Group<m_Group>; |
| def mdynamic_no_pic : Joined<["-"], "mdynamic-no-pic">, Group<m_Group>; |
| def mfix_and_continue : Flag<["-"], "mfix-and-continue">, Group<clang_ignored_m_Group>; |
| def mieee_fp : Flag<["-"], "mieee-fp">, Group<clang_ignored_m_Group>; |
| def minline_all_stringops : Flag<["-"], "minline-all-stringops">, Group<clang_ignored_m_Group>; |
| def mno_inline_all_stringops : Flag<["-"], "mno-inline-all-stringops">, Group<clang_ignored_m_Group>; |
| def malign_double : Flag<["-"], "malign-double">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Align doubles to two words in structs (x86 only)">; |
| def mfloat_abi_EQ : Joined<["-"], "mfloat-abi=">, Group<m_Group>, Values<"soft,softfp,hard">; |
| def mfpmath_EQ : Joined<["-"], "mfpmath=">, Group<m_Group>; |
| def mfpu_EQ : Joined<["-"], "mfpu=">, Group<m_Group>; |
| def mhwdiv_EQ : Joined<["-"], "mhwdiv=">, Group<m_Group>; |
| def mglobal_merge : Flag<["-"], "mglobal-merge">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable merging of globals">; |
| def mhard_float : Flag<["-"], "mhard-float">, Group<m_Group>; |
| def miphoneos_version_min_EQ : Joined<["-"], "miphoneos-version-min=">, Group<m_Group>; |
| def mios_version_min_EQ : Joined<["-"], "mios-version-min=">, |
| Alias<miphoneos_version_min_EQ>, HelpText<"Set iOS deployment target">; |
| def mios_simulator_version_min_EQ : Joined<["-"], "mios-simulator-version-min=">; |
| def miphonesimulator_version_min_EQ : Joined<["-"], "miphonesimulator-version-min=">, Alias<mios_simulator_version_min_EQ>; |
| def mkernel : Flag<["-"], "mkernel">, Group<m_Group>; |
| def mlinker_version_EQ : Joined<["-"], "mlinker-version=">, |
| Flags<[DriverOption]>; |
| def mllvm : Separate<["-"], "mllvm">, Flags<[CC1Option,CC1AsOption,CoreOption]>, |
| HelpText<"Additional arguments to forward to LLVM's option processing">; |
| def mmacosx_version_min_EQ : Joined<["-"], "mmacosx-version-min=">, |
| Group<m_Group>, HelpText<"Set Mac OS X deployment target">; |
| def mmacos_version_min_EQ : Joined<["-"], "mmacos-version-min=">, |
| Group<m_Group>, Alias<mmacosx_version_min_EQ>; |
| def mms_bitfields : Flag<["-"], "mms-bitfields">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Set the default structure layout to be compatible with the Microsoft compiler standard">; |
| def moutline : Flag<["-"], "moutline">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Enable function outlining (AArch64 only)">; |
| def mno_outline : Flag<["-"], "mno-outline">, Group<f_clang_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable function outlining (AArch64 only)">; |
| def mno_ms_bitfields : Flag<["-"], "mno-ms-bitfields">, Group<m_Group>, |
| HelpText<"Do not set the default structure layout to be compatible with the Microsoft compiler standard">; |
| def mstackrealign : Flag<["-"], "mstackrealign">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Force realign the stack at entry to every function">; |
| def mstack_alignment : Joined<["-"], "mstack-alignment=">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Set the stack alignment">; |
| def mstack_probe_size : Joined<["-"], "mstack-probe-size=">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Set the stack probe size">; |
| def mstack_arg_probe : Flag<["-"], "mstack-arg-probe">, Group<m_Group>, |
| HelpText<"Enable stack probes">; |
| def mno_stack_arg_probe : Flag<["-"], "mno-stack-arg-probe">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"Disable stack probes which are enabled by default">; |
| def mthread_model : Separate<["-"], "mthread-model">, Group<m_Group>, Flags<[CC1Option]>, |
| HelpText<"The thread model to use, e.g. posix, single (posix by default)">, Values<"posix,single">; |
| def meabi : Separate<["-"], "meabi">, Group<m_Group>,
|