Skip to main content

rustc_session/
options.rs

1use std::collections::BTreeMap;
2use std::num::{IntErrorKind, NonZero};
3use std::path::PathBuf;
4use std::str;
5
6use rustc_abi::Align;
7use rustc_ast::attr::version::RustcVersion;
8use rustc_data_structures::profiling::TimePassesFormat;
9use rustc_data_structures::stable_hash::StableHasher;
10use rustc_errors::{ColorConfig, TerminalUrl};
11use rustc_feature::UnstableFeatures;
12use rustc_hashes::Hash64;
13use rustc_macros::{BlobDecodable, Encodable};
14use rustc_span::edit_distance::edit_distance;
15use rustc_span::edition::Edition;
16use rustc_span::{RealFileName, RemapPathScopeComponents, SourceFileHashAlgorithm};
17use rustc_structures::{CollapseMacroDebuginfo, CrateType};
18use rustc_target::spec::{
19    CodeModel, FramePointer, LinkerFlavorCli, MergeFunctions, OnBrokenPipe, PanicStrategy,
20    RelocModel, RelroLevel, SanitizerSet, SplitDebuginfo, StackProtector, SymbolVisibility,
21    TargetTuple, TlsModel,
22};
23
24use crate::config::*;
25use crate::search_paths::SearchPath;
26use crate::utils::NativeLib;
27use crate::{EarlyDiagCtxt, Session, lint};
28
29macro_rules! insert {
30    ($opt_name:ident, $opt_expr:expr, $sub_hashes:expr) => {
31        if $sub_hashes
32            .insert(stringify!($opt_name), $opt_expr as &dyn dep_tracking::DepTrackingHash)
33            .is_some()
34        {
35            panic!("duplicate key in CLI DepTrackingHash: {}", stringify!($opt_name))
36        }
37    };
38}
39
40macro_rules! hash_opt {
41    ($opt_name:ident, $opt_expr:expr, $sub_hashes:expr, $_for_crate_hash: ident, [UNTRACKED]) => {{}};
42    ($opt_name:ident, $opt_expr:expr, $sub_hashes:expr, $_for_crate_hash: ident, [TRACKED]) => {{ insert!($opt_name, $opt_expr, $sub_hashes) }};
43    ($opt_name:ident, $opt_expr:expr, $sub_hashes:expr, $for_crate_hash: ident, [TRACKED_NO_CRATE_HASH]) => {{
44        if !$for_crate_hash {
45            insert!($opt_name, $opt_expr, $sub_hashes)
46        }
47    }};
48    ($opt_name:ident, $opt_expr:expr, $sub_hashes:expr, $_for_crate_hash: ident, [SUBSTRUCT]) => {{}};
49}
50
51macro_rules! hash_substruct {
52    ($opt_name:ident, $opt_expr:expr, $error_format:expr, $for_crate_hash:expr, $hasher:expr, [UNTRACKED]) => {{}};
53    ($opt_name:ident, $opt_expr:expr, $error_format:expr, $for_crate_hash:expr, $hasher:expr, [TRACKED]) => {{}};
54    ($opt_name:ident, $opt_expr:expr, $error_format:expr, $for_crate_hash:expr, $hasher:expr, [TRACKED_NO_CRATE_HASH]) => {{}};
55    ($opt_name:ident, $opt_expr:expr, $error_format:expr, $for_crate_hash:expr, $hasher:expr, [SUBSTRUCT]) => {{
56        use crate::config::dep_tracking::DepTrackingHash;
57        $opt_expr.dep_tracking_hash($for_crate_hash, $error_format).hash(
58            $hasher,
59            $error_format,
60            $for_crate_hash,
61        );
62    }};
63}
64
65/// Extended target modifier info.
66/// For example, when external target modifier is '-Zregparm=2':
67/// Target modifier enum value + user value ('2') from external crate
68/// is converted into description: prefix ('Z'), name ('regparm'), tech value ('Some(2)').
69pub struct ExtendedTargetModifierInfo {
70    /// Flag prefix (usually, 'C' for codegen flags or 'Z' for unstable flags)
71    pub prefix: String,
72    /// Flag name
73    pub name: String,
74    /// Flag parsed technical value
75    pub tech_value: String,
76}
77
78/// A recorded -Zopt_name=opt_value (or -Copt_name=opt_value)
79/// which alter the ABI or effectiveness of exploit mitigations.
80#[derive(#[automatically_derived]
impl ::core::fmt::Debug for TargetModifier {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "TargetModifier", "opt", &self.opt, "value_name",
            &&self.value_name)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for TargetModifier {
    #[inline]
    fn clone(&self) -> Self {
        Self {
            opt: ::core::clone::Clone::clone(&self.opt),
            value_name: ::core::clone::Clone::clone(&self.value_name),
        }
    }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TargetModifier { }
#[automatically_derived]
impl ::core::cmp::PartialEq for TargetModifier {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.opt == other.opt && self.value_name == other.value_name
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TargetModifier {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<OptionsTargetModifiers>;
        let _: ::core::cmp::AssertParamIsEq<String>;
    }
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for TargetModifier {
    #[inline]
    fn partial_cmp(&self, other: &Self)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for TargetModifier {
    #[inline]
    fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
        match ::core::cmp::Ord::cmp(&self.opt, &other.opt) {
            ::core::cmp::Ordering::Equal =>
                ::core::cmp::Ord::cmp(&self.value_name, &other.value_name),
            cmp => cmp,
        }
    }
}Ord, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for TargetModifier {
            fn encode(&self, __encoder: &mut __E) {
                let TargetModifier {
                        opt: ref __binding_0, value_name: ref __binding_1 } = *self;
                ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                    __encoder);
                ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                    __encoder);
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for TargetModifier {
            fn decode(__decoder: &mut __D) -> Self {
                TargetModifier {
                    opt: ::rustc_serialize::Decodable::decode(__decoder),
                    value_name: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };BlobDecodable)]
81pub struct TargetModifier {
82    /// Option enum value
83    pub opt: OptionsTargetModifiers,
84    /// User-provided option value (before parsing)
85    pub value_name: String,
86}
87
88pub mod mitigation_coverage;
89
90mod target_modifier_consistency_check {
91    use super::*;
92    pub(super) fn sanitizer(
93        sess: &Session,
94        l: &TargetModifier,
95        r: Option<&TargetModifier>,
96    ) -> bool {
97        let mut lparsed: SanitizerSet = SanitizerSet::empty();
98        let lval = if l.value_name.is_empty() { None } else { Some(l.value_name.as_str()) };
99        parse::parse_sanitizers(&mut lparsed, lval);
100        let lparsed = lparsed.combine_with_defaults(sess.target.options.default_sanitizers);
101
102        let mut rparsed: SanitizerSet = SanitizerSet::empty();
103        let rval = r.filter(|v| !v.value_name.is_empty()).map(|v| v.value_name.as_str());
104        parse::parse_sanitizers(&mut rparsed, rval);
105        let rparsed = rparsed.combine_with_defaults(sess.target.options.default_sanitizers);
106
107        // Some sanitizers need to be target modifiers, and some do not.
108        // For now, we should mark all sanitizers as target modifiers except for these:
109        // AddressSanitizer, LeakSanitizer
110        let tmod_sanitizers = SanitizerSet::MEMORY
111            | SanitizerSet::THREAD
112            | SanitizerSet::HWADDRESS
113            | SanitizerSet::CFI
114            | SanitizerSet::MEMTAG
115            | SanitizerSet::SHADOWCALLSTACK
116            | SanitizerSet::KCFI
117            | SanitizerSet::KERNELADDRESS
118            | SanitizerSet::KERNELHWADDRESS
119            | SanitizerSet::SAFESTACK
120            | SanitizerSet::DATAFLOW;
121
122        lparsed & tmod_sanitizers == rparsed & tmod_sanitizers
123    }
124    pub(super) fn sanitizer_cfi_normalize_integers(
125        sess: &Session,
126        l: &TargetModifier,
127        r: Option<&TargetModifier>,
128    ) -> bool {
129        // For kCFI, the helper flag -Zsanitizer-cfi-normalize-integers should also be a target modifier
130        if sess.sanitizers().contains(SanitizerSet::KCFI) {
131            if let Some(r) = r {
132                return l.extend().tech_value == r.extend().tech_value;
133            } else {
134                return false;
135            }
136        }
137        true
138    }
139    pub(super) fn target_cpu(
140        sess: &Session,
141        l: &TargetModifier,
142        r: Option<&TargetModifier>,
143    ) -> bool {
144        if !sess.target.requires_consistent_cpu {
145            return true;
146        }
147        let l_tech_value = l.extend().tech_value;
148        let r_tech_value = match r {
149            Some(r) => r.extend().tech_value,
150            // If only one of the two compared crates specifies the CPU
151            // explicitly we compare against the target's default CPU.
152            None => {
153                // We reuse the same parsing logic.
154                CodegenOptionsTargetModifiers::TargetCpu
155                    .reparse(sess.target.cpu.as_ref())
156                    .tech_value
157            }
158        };
159        l_tech_value == r_tech_value
160    }
161}
162
163impl TargetModifier {
164    pub fn extend(&self) -> ExtendedTargetModifierInfo {
165        self.opt.reparse(&self.value_name)
166    }
167    // Custom consistency check for target modifiers (or default `l.tech_value == r.tech_value`)
168    // When other is None, consistency with default value is checked
169    pub fn consistent(&self, sess: &Session, other: Option<&TargetModifier>) -> bool {
170        if !(other.is_none() || self.opt == other.unwrap().opt) {
    ::core::panicking::panic("assertion failed: other.is_none() || self.opt == other.unwrap().opt")
};assert!(other.is_none() || self.opt == other.unwrap().opt);
171        match self.opt {
172            OptionsTargetModifiers::UnstableOptions(unstable) => match unstable {
173                UnstableOptionsTargetModifiers::Sanitizer => {
174                    return target_modifier_consistency_check::sanitizer(sess, self, other);
175                }
176                UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers => {
177                    return target_modifier_consistency_check::sanitizer_cfi_normalize_integers(
178                        sess, self, other,
179                    );
180                }
181                _ => {}
182            },
183            OptionsTargetModifiers::CodegenOptions(codegen) => match codegen {
184                CodegenOptionsTargetModifiers::TargetCpu => {
185                    return target_modifier_consistency_check::target_cpu(sess, self, other);
186                }
187            },
188        };
189        match other {
190            Some(other) => self.extend().tech_value == other.extend().tech_value,
191            None => false,
192        }
193    }
194}
195
196fn tmod_push_impl(
197    opt: OptionsTargetModifiers,
198    tmod_vals: &BTreeMap<OptionsTargetModifiers, String>,
199    tmods: &mut Vec<TargetModifier>,
200) {
201    if let Some(v) = tmod_vals.get(&opt) {
202        tmods.push(TargetModifier { opt, value_name: v.clone() })
203    }
204}
205
206macro_rules! top_level_options {
207    (
208        $(#[$top_level_attr:meta])*
209        pub struct Options {
210            $(
211                $(#[$attr:meta])*
212                $opt:ident : $t:ty
213                [$dep_tracking_marker:ident]
214                $( { TARGET_MODIFIER: $tmod_variant:ident($tmod_enum:ident) } )?
215                ,
216            )*
217        }
218    ) => {
219        #[derive(PartialEq, Eq, PartialOrd, Ord, Debug, Copy, Clone, Encodable, BlobDecodable)]
220        pub enum OptionsTargetModifiers {
221            $(
222                $(
223                    $tmod_variant($tmod_enum),
224                )?
225            )*
226        }
227
228        impl OptionsTargetModifiers {
229            pub fn reparse(&self, user_value: &str) -> ExtendedTargetModifierInfo {
230                match self {
231                    $(
232                        $(
233                            Self::$tmod_variant(v) => v.reparse(user_value),
234                        )?
235                    )*
236                    #[allow(unreachable_patterns)]
237                    _ => panic!("unknown target modifier option: {self:?}"),
238                }
239            }
240
241            pub fn is_target_modifier(flag_name: &str) -> bool {
242                $(
243                    $(
244                        if $tmod_enum::is_target_modifier(flag_name) {
245                            return true
246                        }
247                    )?
248                )*
249                false
250            }
251        }
252
253        #[derive(Clone)]
254        $(#[$top_level_attr])*
255        pub struct Options {
256            $(
257                $(#[$attr])*
258                pub $opt: $t,
259            )*
260            pub target_modifiers: BTreeMap<OptionsTargetModifiers, String>,
261            pub mitigation_coverage_map: mitigation_coverage::MitigationCoverageMap,
262        }
263
264        impl Options {
265            pub fn dep_tracking_hash(&self, for_crate_hash: bool) -> Hash64 {
266                let mut sub_hashes = BTreeMap::new();
267                $(
268                    hash_opt!(
269                        $opt,
270                        &self.$opt,
271                        &mut sub_hashes,
272                        for_crate_hash,
273                        [$dep_tracking_marker]
274                    );
275                )*
276                let mut hasher = StableHasher::new();
277                dep_tracking::stable_hash(
278                    sub_hashes,
279                    &mut hasher,
280                    self.error_format,
281                    for_crate_hash,
282                );
283                $(
284                    hash_substruct!(
285                        $opt,
286                        &self.$opt,
287                        self.error_format,
288                        for_crate_hash,
289                        &mut hasher,
290                        [$dep_tracking_marker]
291                    );
292                )*
293                hasher.finish()
294            }
295
296            pub fn gather_target_modifiers(&self) -> Vec<TargetModifier> {
297                let mut mods = Vec::<TargetModifier>::new();
298                $(
299                    $(
300                        // Only expand for flags that have `TARGET_MODIFIER`.
301                        ${ignore($tmod_enum)}
302                        self.$opt.gather_target_modifiers(&mut mods, &self.target_modifiers);
303                    )?
304                )*
305                mods.sort_by(|a, b| a.opt.cmp(&b.opt));
306                mods
307            }
308        }
309    }
310}
311
312pub enum OptionsTargetModifiers {
    UnstableOptions(UnstableOptionsTargetModifiers),
    CodegenOptions(CodegenOptionsTargetModifiers),
}
#[automatically_derived]
impl ::core::marker::StructuralPartialEq for OptionsTargetModifiers { }
#[automatically_derived]
impl ::core::cmp::PartialEq for OptionsTargetModifiers {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
                ::core::intrinsics::discriminant_value(other) &&
            match (self, other) {
                (Self::UnstableOptions(__self_0),
                    Self::UnstableOptions(__arg1_0)) => __self_0 == __arg1_0,
                (Self::CodegenOptions(__self_0),
                    Self::CodegenOptions(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}
#[automatically_derived]
impl ::core::cmp::Eq for OptionsTargetModifiers {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<UnstableOptionsTargetModifiers>;
        let _: ::core::cmp::AssertParamIsEq<CodegenOptionsTargetModifiers>;
    }
}
#[automatically_derived]
impl ::core::cmp::PartialOrd for OptionsTargetModifiers {
    #[inline]
    fn partial_cmp(&self, other: &Self)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}
#[automatically_derived]
impl ::core::cmp::Ord for OptionsTargetModifiers {
    #[inline]
    fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
        match (self, other) {
            (Self::UnstableOptions(__self_0), Self::UnstableOptions(__arg1_0))
                => ::core::cmp::Ord::cmp(__self_0, __arg1_0),
            (Self::CodegenOptions(__self_0), Self::CodegenOptions(__arg1_0))
                => ::core::cmp::Ord::cmp(__self_0, __arg1_0),
            _ =>
                ::core::cmp::Ord::cmp(&::core::intrinsics::discriminant_value(self),
                    &::core::intrinsics::discriminant_value(other)),
        }
    }
}
#[automatically_derived]
impl ::core::fmt::Debug for OptionsTargetModifiers {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Self::UnstableOptions(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "UnstableOptions", &__self_0),
            Self::CodegenOptions(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "CodegenOptions", &__self_0),
        }
    }
}
#[automatically_derived]
impl ::core::marker::Copy for OptionsTargetModifiers { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for OptionsTargetModifiers { }
#[automatically_derived]
impl ::core::clone::Clone for OptionsTargetModifiers {
    #[inline]
    fn clone(&self) -> Self {
        let _:
                ::core::clone::AssertParamIsClone<UnstableOptionsTargetModifiers>;
        let _:
                ::core::clone::AssertParamIsClone<CodegenOptionsTargetModifiers>;
        *self
    }
}
const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for OptionsTargetModifiers {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        OptionsTargetModifiers::UnstableOptions(ref __binding_0) =>
                            {
                            0usize
                        }
                        OptionsTargetModifiers::CodegenOptions(ref __binding_0) => {
                            1usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    OptionsTargetModifiers::UnstableOptions(ref __binding_0) =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    OptionsTargetModifiers::CodegenOptions(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };
const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for OptionsTargetModifiers {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        OptionsTargetModifiers::UnstableOptions(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        OptionsTargetModifiers::CodegenOptions(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `OptionsTargetModifiers`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };
impl OptionsTargetModifiers {
    pub fn reparse(&self, user_value: &str) -> ExtendedTargetModifierInfo {
        match self {
            Self::UnstableOptions(v) => v.reparse(user_value),
            Self::CodegenOptions(v) =>
                v.reparse(user_value),
                #[allow(unreachable_patterns)]
                _ => {
                ::core::panicking::panic_fmt(format_args!("unknown target modifier option: {0:?}",
                        self));
            }
        }
    }
    pub fn is_target_modifier(flag_name: &str) -> bool {
        if UnstableOptionsTargetModifiers::is_target_modifier(flag_name) {
            return true
        }
        if CodegenOptionsTargetModifiers::is_target_modifier(flag_name) {
            return true
        }
        false
    }
}
#[doc = r" The top-level command-line options struct."]
#[doc = r""]
#[doc =
r" For each option, one has to specify how it behaves with regard to the"]
#[doc =
r" dependency tracking system of incremental compilation. This is done via the"]
#[doc = r" square-bracketed directive after the field type. The options are:"]
#[doc = r""]
#[doc = r" - `[TRACKED]`"]
#[doc =
r" A change in the given field will cause the compiler to completely clear the"]
#[doc = r" incremental compilation cache before proceeding."]
#[doc = r""]
#[doc = r" - `[TRACKED_NO_CRATE_HASH]`"]
#[doc =
r" Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that"]
#[doc = r" only affect the incremental cache."]
#[doc = r""]
#[doc = r" - `[UNTRACKED]`"]
#[doc = r" Incremental compilation is not influenced by this option."]
#[doc = r""]
#[doc = r" - `[SUBSTRUCT]`"]
#[doc = r" Second-level sub-structs containing more options."]
#[doc = r""]
#[doc =
r" If you add a new option to this struct or one of the sub-structs like"]
#[doc =
r" `CodegenOptions`, think about how it influences incremental compilation. If in"]
#[doc =
r#" doubt, specify `[TRACKED]`, which is always "correct" but might lead to"#]
#[doc = r" unnecessary re-compilation."]
#[rustc_lint_opt_ty]
pub struct Options {
    #[doc =
    r" The crate config requested for the session, which may be combined"]
    #[doc =
    r" with additional crate configurations during the compile process."]
    #[rustc_lint_opt_deny_field_access("use `TyCtxt::crate_types` instead of this field")]
    pub crate_types: Vec<CrateType>,
    pub optimize: OptLevel,
    #[doc =
    r" Include the `debug_assertions` flag in dependency tracking, since it"]
    #[doc = r" can influence whether overflow checks are done or not."]
    pub debug_assertions: bool,
    pub debuginfo: DebugInfo,
    pub lint_opts: Vec<(String, lint::Level)>,
    pub lint_cap: Option<lint::Level>,
    pub describe_lints: bool,
    pub output_types: OutputTypes,
    pub search_paths: Vec<SearchPath>,
    pub libs: Vec<NativeLib>,
    pub sysroot: Sysroot,
    pub target_triple: TargetTuple,
    pub test: bool,
    pub error_format: ErrorOutputType,
    pub diagnostic_width: Option<usize>,
    #[doc = r" If `Some`, enable incremental compilation, using the given"]
    #[doc = r" directory to store intermediate results."]
    pub incremental: Option<PathBuf>,
    pub unstable_opts: UnstableOptions,
    pub prints: Vec<PrintRequest>,
    pub cg: CodegenOptions,
    pub externs: Externs,
    pub crate_name: Option<String>,
    #[doc = r" Indicates how the compiler should treat unstable features."]
    pub unstable_features: UnstableFeatures,
    #[doc =
    r" Indicates whether this run of the compiler is actually rustdoc. This"]
    #[doc =
    r" is currently just a hack and will be removed eventually, so please"]
    #[doc = r" try to not rely on this too much."]
    pub actually_rustdoc: bool,
    #[doc = r" Whether name resolver should resolve documentation links."]
    pub resolve_doc_links: ResolveDocLinks,
    #[doc = r" Control path trimming."]
    pub trimmed_def_paths: bool,
    #[doc =
    r" Specifications of codegen units / ThinLTO which are forced as a"]
    #[doc =
    r" result of parsing command line options. These are not necessarily"]
    #[doc = r" what rustc was invoked with, but massaged a bit to agree with"]
    #[doc =
    r" commands like `--emit llvm-ir` which they're often incompatible with"]
    #[doc = r" if we otherwise use the defaults of rustc."]
    #[rustc_lint_opt_deny_field_access("use `Session::codegen_units` instead of this field")]
    pub cli_forced_codegen_units: Option<usize>,
    #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
    pub cli_forced_local_thinlto_off: bool,
    #[doc =
    r" Remap source path prefixes in all output (messages, object files, debug, etc.)."]
    pub remap_path_prefix: Vec<(PathBuf, PathBuf)>,
    #[doc =
    r" Defines which scopes of paths should be remapped by `--remap-path-prefix`."]
    pub remap_path_scope: RemapPathScopeComponents,
    #[doc =
    r" Base directory containing the `library/` directory for the Rust standard library."]
    #[doc = r" Right now it's always `$sysroot/lib/rustlib/src/rust`"]
    #[doc = r" (i.e. the `rustup` `rust-src` component)."]
    #[doc = r""]
    #[doc =
    r" This directory is what the virtual `/rustc/$hash` is translated back to,"]
    #[doc =
    r" if Rust was built with path remapping to `/rustc/$hash` enabled"]
    #[doc = r" (the `rust.remap-debuginfo` option in `bootstrap.toml`)."]
    pub real_rust_source_base_dir: Option<PathBuf>,
    #[doc =
    r" Base directory containing the `compiler/` directory for the rustc sources."]
    #[doc = r" Right now it's always `$sysroot/lib/rustlib/rustc-src/rust`"]
    #[doc = r" (i.e. the `rustup` `rustc-dev` component)."]
    #[doc = r""]
    #[doc =
    r" This directory is what the virtual `/rustc-dev/$hash` is translated back to,"]
    #[doc =
    r" if Rust was built with path remapping to `/rustc/$hash` enabled"]
    #[doc = r" (the `rust.remap-debuginfo` option in `bootstrap.toml`)."]
    pub real_rustc_dev_source_base_dir: Option<PathBuf>,
    pub edition: Edition,
    #[doc =
    r" `true` if we're emitting JSON blobs about each artifact produced"]
    #[doc = r" by the compiler."]
    pub json_artifact_notifications: bool,
    #[doc =
    r" `true` if we're emitting JSON timings with the start and end of"]
    #[doc = r" high-level compilation sections"]
    pub json_timings: bool,
    #[doc =
    r" `true` if we're emitting a JSON blob containing the unused externs"]
    pub json_unused_externs: JsonUnusedExterns,
    #[doc =
    r" `true` if we're emitting a JSON job containing a future-incompat report for lints"]
    pub json_future_incompat: bool,
    pub pretty: Option<PpMode>,
    #[doc = r" The (potentially remapped) working directory"]
    #[rustc_lint_opt_deny_field_access("use `SourceMap::working_dir` instead of this field")]
    pub working_dir: RealFileName,
    pub color: ColorConfig,
    pub verbose: bool,
    pub jobs: Jobs,
    pub target_modifiers: BTreeMap<OptionsTargetModifiers, String>,
    pub mitigation_coverage_map: mitigation_coverage::MitigationCoverageMap,
}
#[automatically_derived]
impl ::core::clone::Clone for Options {
    #[inline]
    fn clone(&self) -> Self {
        Self {
            crate_types: ::core::clone::Clone::clone(&self.crate_types),
            optimize: ::core::clone::Clone::clone(&self.optimize),
            debug_assertions: ::core::clone::Clone::clone(&self.debug_assertions),
            debuginfo: ::core::clone::Clone::clone(&self.debuginfo),
            lint_opts: ::core::clone::Clone::clone(&self.lint_opts),
            lint_cap: ::core::clone::Clone::clone(&self.lint_cap),
            describe_lints: ::core::clone::Clone::clone(&self.describe_lints),
            output_types: ::core::clone::Clone::clone(&self.output_types),
            search_paths: ::core::clone::Clone::clone(&self.search_paths),
            libs: ::core::clone::Clone::clone(&self.libs),
            sysroot: ::core::clone::Clone::clone(&self.sysroot),
            target_triple: ::core::clone::Clone::clone(&self.target_triple),
            test: ::core::clone::Clone::clone(&self.test),
            error_format: ::core::clone::Clone::clone(&self.error_format),
            diagnostic_width: ::core::clone::Clone::clone(&self.diagnostic_width),
            incremental: ::core::clone::Clone::clone(&self.incremental),
            unstable_opts: ::core::clone::Clone::clone(&self.unstable_opts),
            prints: ::core::clone::Clone::clone(&self.prints),
            cg: ::core::clone::Clone::clone(&self.cg),
            externs: ::core::clone::Clone::clone(&self.externs),
            crate_name: ::core::clone::Clone::clone(&self.crate_name),
            unstable_features: ::core::clone::Clone::clone(&self.unstable_features),
            actually_rustdoc: ::core::clone::Clone::clone(&self.actually_rustdoc),
            resolve_doc_links: ::core::clone::Clone::clone(&self.resolve_doc_links),
            trimmed_def_paths: ::core::clone::Clone::clone(&self.trimmed_def_paths),
            cli_forced_codegen_units: ::core::clone::Clone::clone(&self.cli_forced_codegen_units),
            cli_forced_local_thinlto_off: ::core::clone::Clone::clone(&self.cli_forced_local_thinlto_off),
            remap_path_prefix: ::core::clone::Clone::clone(&self.remap_path_prefix),
            remap_path_scope: ::core::clone::Clone::clone(&self.remap_path_scope),
            real_rust_source_base_dir: ::core::clone::Clone::clone(&self.real_rust_source_base_dir),
            real_rustc_dev_source_base_dir: ::core::clone::Clone::clone(&self.real_rustc_dev_source_base_dir),
            edition: ::core::clone::Clone::clone(&self.edition),
            json_artifact_notifications: ::core::clone::Clone::clone(&self.json_artifact_notifications),
            json_timings: ::core::clone::Clone::clone(&self.json_timings),
            json_unused_externs: ::core::clone::Clone::clone(&self.json_unused_externs),
            json_future_incompat: ::core::clone::Clone::clone(&self.json_future_incompat),
            pretty: ::core::clone::Clone::clone(&self.pretty),
            working_dir: ::core::clone::Clone::clone(&self.working_dir),
            color: ::core::clone::Clone::clone(&self.color),
            verbose: ::core::clone::Clone::clone(&self.verbose),
            jobs: ::core::clone::Clone::clone(&self.jobs),
            target_modifiers: ::core::clone::Clone::clone(&self.target_modifiers),
            mitigation_coverage_map: ::core::clone::Clone::clone(&self.mitigation_coverage_map),
        }
    }
}
impl Options {
    pub fn dep_tracking_hash(&self, for_crate_hash: bool) -> Hash64 {
        let mut sub_hashes = BTreeMap::new();
        {
            if (&mut sub_hashes).insert("crate_types",
                        &self.crate_types as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "crate_types"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("optimize",
                        &self.optimize as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "optimize"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debug_assertions",
                        &self.debug_assertions as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debug_assertions"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debuginfo",
                        &self.debuginfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debuginfo"));
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("lint_opts",
                            &self.lint_opts as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "lint_opts"));
                    }
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("lint_cap",
                            &self.lint_cap as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "lint_cap"));
                    }
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("output_types",
                        &self.output_types as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "output_types"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("libs",
                        &self.libs as &dyn dep_tracking::DepTrackingHash).is_some()
                {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "libs"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("target_triple",
                        &self.target_triple as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "target_triple"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("test",
                        &self.test as &dyn dep_tracking::DepTrackingHash).is_some()
                {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "test"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("crate_name",
                        &self.crate_name as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "crate_name"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("unstable_features",
                        &self.unstable_features as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "unstable_features"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("actually_rustdoc",
                        &self.actually_rustdoc as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "actually_rustdoc"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("resolve_doc_links",
                        &self.resolve_doc_links as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "resolve_doc_links"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("trimmed_def_paths",
                        &self.trimmed_def_paths as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "trimmed_def_paths"));
                }
            }
        };
        {};
        {};
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("remap_path_prefix",
                            &self.remap_path_prefix as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "remap_path_prefix"));
                    }
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("remap_path_scope",
                            &self.remap_path_scope as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "remap_path_scope"));
                    }
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("real_rust_source_base_dir",
                            &self.real_rust_source_base_dir as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "real_rust_source_base_dir"));
                    }
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("real_rustc_dev_source_base_dir",
                            &self.real_rustc_dev_source_base_dir as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "real_rustc_dev_source_base_dir"));
                    }
                }
            }
        };
        {
            if (&mut sub_hashes).insert("edition",
                        &self.edition as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "edition"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("json_artifact_notifications",
                        &self.json_artifact_notifications as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "json_artifact_notifications"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("json_future_incompat",
                        &self.json_future_incompat as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "json_future_incompat"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("working_dir",
                        &self.working_dir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "working_dir"));
                }
            }
        };
        {};
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("verbose",
                            &self.verbose as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "verbose"));
                    }
                }
            }
        };
        {};
        let mut hasher = StableHasher::new();
        dep_tracking::stable_hash(sub_hashes, &mut hasher, self.error_format,
            for_crate_hash);
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {
            use crate::config::dep_tracking::DepTrackingHash;
            (&self.unstable_opts).dep_tracking_hash(for_crate_hash,
                    self.error_format).hash(&mut hasher, self.error_format,
                for_crate_hash);
        };
        {};
        {
            use crate::config::dep_tracking::DepTrackingHash;
            (&self.cg).dep_tracking_hash(for_crate_hash,
                    self.error_format).hash(&mut hasher, self.error_format,
                for_crate_hash);
        };
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        hasher.finish()
    }
    pub fn gather_target_modifiers(&self) -> Vec<TargetModifier> {
        let mut mods = Vec::<TargetModifier>::new();
        self.unstable_opts.gather_target_modifiers(&mut mods,
            &self.target_modifiers);
        self.cg.gather_target_modifiers(&mut mods, &self.target_modifiers);
        mods.sort_by(|a, b| a.opt.cmp(&b.opt));
        mods
    }
}top_level_options!(
313    /// The top-level command-line options struct.
314    ///
315    /// For each option, one has to specify how it behaves with regard to the
316    /// dependency tracking system of incremental compilation. This is done via the
317    /// square-bracketed directive after the field type. The options are:
318    ///
319    /// - `[TRACKED]`
320    /// A change in the given field will cause the compiler to completely clear the
321    /// incremental compilation cache before proceeding.
322    ///
323    /// - `[TRACKED_NO_CRATE_HASH]`
324    /// Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that
325    /// only affect the incremental cache.
326    ///
327    /// - `[UNTRACKED]`
328    /// Incremental compilation is not influenced by this option.
329    ///
330    /// - `[SUBSTRUCT]`
331    /// Second-level sub-structs containing more options.
332    ///
333    /// If you add a new option to this struct or one of the sub-structs like
334    /// `CodegenOptions`, think about how it influences incremental compilation. If in
335    /// doubt, specify `[TRACKED]`, which is always "correct" but might lead to
336    /// unnecessary re-compilation.
337    #[rustc_lint_opt_ty]
338    pub struct Options {
339        /// The crate config requested for the session, which may be combined
340        /// with additional crate configurations during the compile process.
341        #[rustc_lint_opt_deny_field_access("use `TyCtxt::crate_types` instead of this field")]
342        crate_types: Vec<CrateType> [TRACKED],
343        optimize: OptLevel [TRACKED],
344        /// Include the `debug_assertions` flag in dependency tracking, since it
345        /// can influence whether overflow checks are done or not.
346        debug_assertions: bool [TRACKED],
347        debuginfo: DebugInfo [TRACKED],
348        lint_opts: Vec<(String, lint::Level)> [TRACKED_NO_CRATE_HASH],
349        lint_cap: Option<lint::Level> [TRACKED_NO_CRATE_HASH],
350        describe_lints: bool [UNTRACKED],
351        output_types: OutputTypes [TRACKED],
352        search_paths: Vec<SearchPath> [UNTRACKED],
353        libs: Vec<NativeLib> [TRACKED],
354        sysroot: Sysroot [UNTRACKED],
355
356        target_triple: TargetTuple [TRACKED],
357
358        test: bool [TRACKED],
359        error_format: ErrorOutputType [UNTRACKED],
360        diagnostic_width: Option<usize> [UNTRACKED],
361
362        /// If `Some`, enable incremental compilation, using the given
363        /// directory to store intermediate results.
364        incremental: Option<PathBuf> [UNTRACKED],
365
366        unstable_opts: UnstableOptions [SUBSTRUCT] { TARGET_MODIFIER: UnstableOptions(UnstableOptionsTargetModifiers) },
367        prints: Vec<PrintRequest> [UNTRACKED],
368        cg: CodegenOptions [SUBSTRUCT] { TARGET_MODIFIER: CodegenOptions(CodegenOptionsTargetModifiers) },
369        externs: Externs [UNTRACKED],
370        crate_name: Option<String> [TRACKED],
371        /// Indicates how the compiler should treat unstable features.
372        unstable_features: UnstableFeatures [TRACKED],
373
374        /// Indicates whether this run of the compiler is actually rustdoc. This
375        /// is currently just a hack and will be removed eventually, so please
376        /// try to not rely on this too much.
377        actually_rustdoc: bool [TRACKED],
378        /// Whether name resolver should resolve documentation links.
379        resolve_doc_links: ResolveDocLinks [TRACKED],
380
381        /// Control path trimming.
382        trimmed_def_paths: bool [TRACKED],
383
384        /// Specifications of codegen units / ThinLTO which are forced as a
385        /// result of parsing command line options. These are not necessarily
386        /// what rustc was invoked with, but massaged a bit to agree with
387        /// commands like `--emit llvm-ir` which they're often incompatible with
388        /// if we otherwise use the defaults of rustc.
389        #[rustc_lint_opt_deny_field_access("use `Session::codegen_units` instead of this field")]
390        cli_forced_codegen_units: Option<usize> [UNTRACKED],
391        #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
392        cli_forced_local_thinlto_off: bool [UNTRACKED],
393
394        /// Remap source path prefixes in all output (messages, object files, debug, etc.).
395        remap_path_prefix: Vec<(PathBuf, PathBuf)> [TRACKED_NO_CRATE_HASH],
396        /// Defines which scopes of paths should be remapped by `--remap-path-prefix`.
397        remap_path_scope: RemapPathScopeComponents [TRACKED_NO_CRATE_HASH],
398
399        /// Base directory containing the `library/` directory for the Rust standard library.
400        /// Right now it's always `$sysroot/lib/rustlib/src/rust`
401        /// (i.e. the `rustup` `rust-src` component).
402        ///
403        /// This directory is what the virtual `/rustc/$hash` is translated back to,
404        /// if Rust was built with path remapping to `/rustc/$hash` enabled
405        /// (the `rust.remap-debuginfo` option in `bootstrap.toml`).
406        real_rust_source_base_dir: Option<PathBuf> [TRACKED_NO_CRATE_HASH],
407
408        /// Base directory containing the `compiler/` directory for the rustc sources.
409        /// Right now it's always `$sysroot/lib/rustlib/rustc-src/rust`
410        /// (i.e. the `rustup` `rustc-dev` component).
411        ///
412        /// This directory is what the virtual `/rustc-dev/$hash` is translated back to,
413        /// if Rust was built with path remapping to `/rustc/$hash` enabled
414        /// (the `rust.remap-debuginfo` option in `bootstrap.toml`).
415        real_rustc_dev_source_base_dir: Option<PathBuf> [TRACKED_NO_CRATE_HASH],
416
417        edition: Edition [TRACKED],
418
419        /// `true` if we're emitting JSON blobs about each artifact produced
420        /// by the compiler.
421        json_artifact_notifications: bool [TRACKED],
422
423        /// `true` if we're emitting JSON timings with the start and end of
424        /// high-level compilation sections
425        json_timings: bool [UNTRACKED],
426
427        /// `true` if we're emitting a JSON blob containing the unused externs
428        json_unused_externs: JsonUnusedExterns [UNTRACKED],
429
430        /// `true` if we're emitting a JSON job containing a future-incompat report for lints
431        json_future_incompat: bool [TRACKED],
432
433        pretty: Option<PpMode> [UNTRACKED],
434
435        /// The (potentially remapped) working directory
436        #[rustc_lint_opt_deny_field_access("use `SourceMap::working_dir` instead of this field")]
437        working_dir: RealFileName [TRACKED],
438        color: ColorConfig [UNTRACKED],
439        verbose: bool [TRACKED_NO_CRATE_HASH],
440        jobs: Jobs [UNTRACKED],
441    }
442);
443
444#[derive(#[automatically_derived]
impl ::core::default::Default for CollectedOptions {
    #[inline]
    fn default() -> Self {
        Self {
            target_modifiers: ::core::default::Default::default(),
            mitigations: ::core::default::Default::default(),
        }
    }
}Default)]
445pub struct CollectedOptions {
446    pub target_modifiers: BTreeMap<OptionsTargetModifiers, String>,
447    pub mitigations: mitigation_coverage::MitigationCoverageMap,
448}
449
450macro_rules! setter_for {
451    // the allow/deny-mitigations options use collected/index instead of the cg, since they
452    // work across option groups
453    (allow_partial_mitigations, $struct_name:ident, $parse:ident) => {
454        pub(super) fn allow_partial_mitigations(
455            _cg: &mut super::$struct_name,
456            collected: &mut super::CollectedOptions,
457            v: Option<&str>,
458            index: usize,
459        ) -> bool {
460            collected.mitigations.handle_allowdeny_mitigation_option(v, index, true)
461        }
462    };
463    (deny_partial_mitigations, $struct_name:ident, $parse:ident) => {
464        pub(super) fn deny_partial_mitigations(
465            _cg: &mut super::$struct_name,
466            collected: &mut super::CollectedOptions,
467            v: Option<&str>,
468            index: usize,
469        ) -> bool {
470            collected.mitigations.handle_allowdeny_mitigation_option(v, index, false)
471        }
472    };
473    ($opt:ident, $struct_name:ident, $parse:ident) => {
474        pub(super) fn $opt(
475            cg: &mut super::$struct_name,
476            _collected: &mut super::CollectedOptions,
477            v: Option<&str>,
478            _index: usize,
479        ) -> bool {
480            super::parse::$parse(&mut redirect_field!(cg.$opt), v)
481        }
482    };
483}
484
485/// Defines all `CodegenOptions`/`DebuggingOptions` fields and parsers all at once. The goal of this
486/// macro is to define an interface that can be programmatically used by the option parser
487/// to initialize the struct without hardcoding field names all over the place.
488///
489/// The goal is to invoke this macro once with the correct fields, and then this macro generates all
490/// necessary code. The main gotcha of this macro is the `cgsetters` module which is a bunch of
491/// generated code to parse an option into its respective field in the struct. There are a few
492/// hand-written parsers for parsing specific types of values in this module.
493macro_rules! options {
494    (
495        $struct_name:ident,
496        $tmod_enum:ident,
497        $stat:ident,
498        $optmod:ident,
499        $prefix:expr,
500        $outputname:expr,
501
502        $(
503            $(#[$attr:meta])*
504            $opt:ident : $t:ty = (
505                $init:expr,
506                $parse:ident,
507                [$dep_tracking_marker:ident]
508                $( { TARGET_MODIFIER: $tmod_variant:ident } )?
509                $( { MITIGATION: $mitigation_variant:ident } )?
510                ,
511                $desc:expr
512                $(, removed: $removed:ident )?
513            ),
514        )*
515    ) => {
516        #[derive(Clone)]
517        #[rustc_lint_opt_ty]
518        pub struct $struct_name {
519            $(
520                $(#[$attr])*
521                pub $opt: $t,
522            )*
523        }
524
525        #[derive(PartialEq, Eq, PartialOrd, Ord, Debug, Copy, Clone, Encodable, BlobDecodable)]
526        pub enum $tmod_enum {
527            $(
528                $( $tmod_variant, )?
529            )*
530        }
531
532        impl $tmod_enum {
533            pub fn reparse(&self, _user_value: &str) -> ExtendedTargetModifierInfo {
534                match self {
535                    $(
536                        $(
537                            Self::$tmod_variant => {
538                                let mut parsed: $t = Default::default();
539                                let val = if _user_value.is_empty() { None } else { Some(_user_value) };
540                                parse::$parse(&mut parsed, val);
541                                ExtendedTargetModifierInfo {
542                                    prefix: $prefix.to_string(),
543                                    name: stringify!($opt).to_string().replace('_', "-"),
544                                    tech_value: format!("{:?}", parsed),
545                                }
546                            }
547                        )?
548                    )*
549
550                    #[allow(unreachable_patterns)]
551                    _ => panic!("unknown target modifier option: {:?}", *self)
552                }
553            }
554
555            pub fn is_target_modifier(flag_name: &str) -> bool {
556                match flag_name.replace('-', "_").as_str() {
557                    $(
558                        $(
559                            // Only expand for flags that have `TARGET_MODIFIER`.
560                            ${ignore($tmod_variant)}
561                            stringify!($opt) => true,
562                        )?
563                    )*
564                    _ => false,
565                }
566            }
567        }
568
569        impl Default for $struct_name {
570            fn default() -> $struct_name {
571                $struct_name {
572                    $(
573                        $opt: $init,
574                    )*
575                }
576            }
577        }
578
579        impl $struct_name {
580            pub fn build(
581                early_dcx: &EarlyDiagCtxt,
582                matches: &getopts::Matches,
583                target_modifiers: &mut CollectedOptions,
584            ) -> $struct_name {
585                build_options(early_dcx, matches, target_modifiers, $stat, $prefix, $outputname)
586            }
587
588            fn dep_tracking_hash(
589                &self,
590                for_crate_hash: bool,
591                error_format: ErrorOutputType,
592            ) -> Hash64 {
593                let mut sub_hashes = BTreeMap::new();
594                $(
595                    hash_opt!(
596                        $opt,
597                        &self.$opt,
598                        &mut sub_hashes,
599                        for_crate_hash,
600                        [$dep_tracking_marker]
601                    );
602                )*
603                let mut hasher = StableHasher::new();
604                dep_tracking::stable_hash(
605                    sub_hashes,
606                    &mut hasher,
607                    error_format,
608                    for_crate_hash,
609                );
610                hasher.finish()
611            }
612
613            pub fn gather_target_modifiers(
614                &self,
615                _mods: &mut Vec<TargetModifier>,
616                _tmod_vals: &BTreeMap<OptionsTargetModifiers, String>,
617            ) {
618                $(
619                    $(
620                        if self.$opt != $init {
621                            tmod_push_impl(
622                                OptionsTargetModifiers::$struct_name($tmod_enum::$tmod_variant),
623                                _tmod_vals,
624                                _mods,
625                            );
626                        }
627                    )?
628                )*
629            }
630        }
631
632        pub const $stat: OptionDescrs<$struct_name> = &[
633            $(
634                OptionDesc {
635                    name: stringify!($opt),
636                    setter: $optmod::$opt,
637                    type_desc: desc::$parse,
638                    desc: $desc,
639                    removed: None $( .or(Some(RemovedOption::$removed)) )?,
640                    tmod: None $( .or(Some(
641                        OptionsTargetModifiers::$struct_name($tmod_enum::$tmod_variant)
642                    )))?,
643                    mitigation: None $( .or(Some(
644                        mitigation_coverage::DeniedPartialMitigationKind::$mitigation_variant
645                    )))?,
646                },
647            )*
648        ];
649
650        mod $optmod {
651            $(
652                setter_for!($opt, $struct_name, $parse);
653            )*
654        }
655    }
656}
657
658impl CodegenOptions {
659    // JUSTIFICATION: defn of the suggested wrapper fn
660    #[allow(rustc::bad_opt_access)]
661    pub fn instrument_coverage(&self) -> InstrumentCoverage {
662        self.instrument_coverage
663    }
664}
665
666// Sometimes different options need to build a common structure.
667// That structure can be kept in one of the options' fields, the others become dummy.
668macro_rules! redirect_field {
669    ($cg:ident.link_arg) => {
670        $cg.link_args
671    };
672    ($cg:ident.pre_link_arg) => {
673        $cg.pre_link_args
674    };
675    ($cg:ident.$field:ident) => {
676        $cg.$field
677    };
678}
679
680type OptionSetter<O> = fn(&mut O, &mut CollectedOptions, v: Option<&str>, pos: usize) -> bool;
681type OptionDescrs<O> = &'static [OptionDesc<O>];
682
683/// Indicates whether a removed option should warn or error.
684enum RemovedOption {
685    #[allow(unused)] // we might want deprecated options that warn again in the future
686    Warn,
687    Err,
688}
689
690pub struct OptionDesc<O> {
691    name: &'static str,
692    setter: OptionSetter<O>,
693    // description for return value/type from mod desc
694    type_desc: &'static str,
695    // description for option from options table
696    desc: &'static str,
697    removed: Option<RemovedOption>,
698    tmod: Option<OptionsTargetModifiers>,
699    mitigation: Option<mitigation_coverage::DeniedPartialMitigationKind>,
700}
701
702impl<O> OptionDesc<O> {
703    pub fn name(&self) -> &'static str {
704        self.name
705    }
706
707    pub fn desc(&self) -> &'static str {
708        self.desc
709    }
710}
711
712fn build_options<O: Default>(
713    early_dcx: &EarlyDiagCtxt,
714    matches: &getopts::Matches,
715    collected_options: &mut CollectedOptions,
716    descrs: OptionDescrs<O>,
717    prefix: &str,
718    outputname: &str,
719) -> O {
720    let mut op = O::default();
721    for (index, option) in matches.opt_strs_pos(prefix) {
722        let (key, value) = match option.split_once('=') {
723            None => (option, None),
724            Some((k, v)) => (k.to_string(), Some(v)),
725        };
726
727        let option_to_lookup = key.replace('-', "_");
728        match descrs.iter().find(|opt_desc| opt_desc.name == option_to_lookup) {
729            Some(OptionDesc { name: _, setter, type_desc, desc, removed, tmod, mitigation }) => {
730                if let Some(removed) = removed {
731                    // deprecation works for prefixed options only
732                    if !!prefix.is_empty() {
    ::core::panicking::panic("assertion failed: !prefix.is_empty()")
};assert!(!prefix.is_empty());
733                    match removed {
734                        RemovedOption::Warn => {
735                            early_dcx.early_warn(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`-{0} {1}`: {2}", prefix, key,
                desc))
    })format!("`-{prefix} {key}`: {desc}"))
736                        }
737                        RemovedOption::Err => {
738                            early_dcx.early_fatal(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`-{0} {1}`: {2}", prefix, key,
                desc))
    })format!("`-{prefix} {key}`: {desc}"))
739                        }
740                    }
741                }
742                if !setter(&mut op, collected_options, value, index) {
743                    match value {
744                        None => early_dcx.early_fatal(
745                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} option `{1}` requires {2} (`-{3} {1}=<value>`)",
                outputname, key, type_desc, prefix))
    })format!(
746                                "{outputname} option `{key}` requires {type_desc} (`-{prefix} {key}=<value>`)"
747                            ),
748                        ),
749                        Some(value) => early_dcx.early_fatal(
750                            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("incorrect value `{0}` for {1} option `{2}` - {3} was expected",
                value, outputname, key, type_desc))
    })format!(
751                                "incorrect value `{value}` for {outputname} option `{key}` - {type_desc} was expected"
752                            ),
753                        ),
754                    }
755                }
756                if let Some(tmod) = *tmod {
757                    let v = value.map_or(String::new(), ToOwned::to_owned);
758
759                    // Accumulate all the -Zsanitizer flags into a single target modifier.
760                    match tmod {
761                        OptionsTargetModifiers::UnstableOptions(
762                            UnstableOptionsTargetModifiers::Sanitizer,
763                        ) => {
764                            collected_options
765                                .target_modifiers
766                                .entry(tmod)
767                                .and_modify(|existing| {
768                                    existing.push(',');
769                                    existing.push_str(&v);
770                                })
771                                .or_insert(v);
772                        }
773                        _ => {
774                            collected_options.target_modifiers.insert(tmod, v);
775                        }
776                    }
777                }
778                if let Some(mitigation) = mitigation {
779                    collected_options.mitigations.reset_mitigation(*mitigation, index);
780                }
781            }
782            None => {
783                let mut error =
784                    early_dcx.early_struct_fatal(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("unknown {0} option: `{1}`",
                outputname, key))
    })format!("unknown {outputname} option: `{key}`"));
785                let max_dist = option_to_lookup.chars().count().max(3) / 3;
786                if let Some(option) = descrs
787                    .iter()
788                    .filter(|option| option.removed.is_none())
789                    .filter_map(|option| {
790                        edit_distance(&option_to_lookup, option.name, max_dist)
791                            .map(|dist| (dist, option))
792                    })
793                    .min_by_key(|(dist, _)| *dist)
794                    .map(|(_, option)| option)
795                {
796                    let name = option.name.replace('_', "-");
797                    let value =
798                        if option.type_desc == desc::parse_no_value { "" } else { "=<value>" };
799                    error.help(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("you might have meant to use `-{0} {1}{2}`",
                prefix, name, value))
    })format!("you might have meant to use `-{prefix} {name}{value}`"));
800                }
801                error.emit()
802            }
803        }
804    }
805    op
806}
807
808#[allow(non_upper_case_globals)]
809mod desc {
810    pub(crate) const parse_ignore: &str = "<ignored>"; // should not be user-visible
811    pub(crate) const parse_no_value: &str = "no value";
812    pub(crate) const parse_bool: &str =
813        "one of: `y`, `yes`, `on`, `true`, `n`, `no`, `off` or `false`";
814    pub(crate) const parse_opt_bool: &str = parse_bool;
815    pub(crate) const parse_string: &str = "a string";
816    pub(crate) const parse_opt_string: &str = parse_string;
817    pub(crate) const parse_string_push: &str = parse_string;
818    pub(crate) const parse_opt_pathbuf: &str = "a path";
819    pub(crate) const parse_list: &str = "a space-separated list of strings";
820    pub(crate) const parse_list_with_polarity: &str =
821        "a comma-separated list of strings, with elements beginning with + or -";
822    pub(crate) const parse_pointer_authentication_list_with_polarity: &str = "a comma-separated list of options, each of the form `+<name>` or `-<name>`, where `<name>` is one of: `aarch64-jump-table-hardening`, `auth-traps`, `calls`, `elf-got`, `function-pointer-type-discrimination`, `indirect-gotos`, `init-fini`, `init-fini-address-discrimination`, `intrinsics`, `return-addresses`, `typeinfo-vt-ptr-discrimination`, `vt-ptr-addr-discrimination` or `vt-ptr-type-discrimination`";
823    pub(crate) const parse_autodiff: &str = "a comma separated list of settings: `Enable`, `PrintSteps`, `PrintTA`, `PrintTAFn`, `PrintAA`, `PrintPerf`, `PrintModBefore`, `PrintModAfter`, `PrintModFinal`, `PrintPasses`, `NoPostopt`, `LooseTypes`, `Inline`, `NoTT`";
824    pub(crate) const parse_offload: &str = "a comma separated list of settings: `Host=<Absolute-Path>`, `HostMetadata=<Absolute-Path>`, `Device` (empty manifest) or `Device=<Absolute-Path>`, `Test`";
825    pub(crate) const parse_comma_list: &str = "a comma-separated list of strings";
826    pub(crate) const parse_opt_comma_list: &str = parse_comma_list;
827    pub(crate) const parse_number: &str = "a number";
828    pub(crate) const parse_opt_number: &str = parse_number;
829    pub(crate) const parse_frame_pointer: &str = "one of `true`/`yes`/`on`, `false`/`no`/`off`, or (with -Zunstable-options) `non-leaf` or `always`";
830    pub(crate) const parse_time_passes_format: &str = "`text` (default) or `json`";
831    pub(crate) const parse_passes: &str = "a space-separated list of passes, or `all`";
832    pub(crate) const parse_panic_strategy: &str = "either `unwind`, `abort`, or `immediate-abort`";
833    pub(crate) const parse_on_broken_pipe: &str = "either `kill`, `error`, or `inherit`";
834    pub(crate) const parse_patchable_function_entry: &str = "a comma separated list of (prefix_nops,total_nops,section_name), (prefix_nops,total_nops), or (total_nops). Where prefix_nops <= total_nops where 0 < total_nops <= 255 and prefix_nops <= total_nops";
835    pub(crate) const parse_opt_panic_strategy: &str = parse_panic_strategy;
836    pub(crate) const parse_relro_level: &str = "one of: `full`, `partial`, or `off`";
837    pub(crate) const parse_sanitizers: &str = "comma separated list of sanitizers: `address`, `cfi`, `dataflow`, `hwaddress`, `kcfi`, `kernel-address`, `kernel-hwaddress`, `leak`, `memory`, `memtag`, `safestack`, `shadow-call-stack`, `thread`, or 'realtime'";
838    pub(crate) const parse_sanitizer_memory_track_origins: &str = "0, 1, or 2";
839    pub(crate) const parse_cfguard: &str =
840        "either a boolean (`yes`, `no`, `on`, `off`, etc), `checks`, or `nochecks`";
841    pub(crate) const parse_cfprotection: &str = "`none`|`no`|`n` (default), `branch`, `return`, or `full`|`yes`|`y` (equivalent to `branch` and `return`)";
842    pub(crate) const parse_debuginfo: &str = "either an integer (0, 1, 2), `none`, `line-directives-only`, `line-tables-only`, `limited`, or `full`";
843    pub(crate) const parse_debuginfo_compression: &str = "one of `none`, `zlib`, or `zstd`";
844    pub(crate) const parse_mir_strip_debuginfo: &str =
845        "one of `none`, `locals-in-tiny-functions`, or `all-locals`";
846    pub(crate) const parse_collapse_macro_debuginfo: &str = "one of `no`, `external`, or `yes`";
847    pub(crate) const parse_strip: &str = "either `none`, `debuginfo`, or `symbols`";
848    pub(crate) const parse_linker_flavor: &str = ::rustc_target::spec::LinkerFlavorCli::one_of();
849    pub(crate) const parse_dump_mono_stats: &str = "`markdown` (default) or `json`";
850    pub(crate) const parse_instrument_coverage: &str = parse_bool;
851    pub(crate) const parse_coverage_options: &str = "`block` | `branch` | `condition`";
852    pub(crate) const parse_codegen_retag_options: &str =
853        "either no value or a comma-separated list of settings: `no-precise-im`, `no-precise-pin`";
854    pub(crate) const parse_instrument_mcount: &str = "either a boolean (`yes`, `no`, `on`, `off`, etc), or `fentry`, `fentry-record`, `fentry-nop-record` on supported targets";
855    pub(crate) const parse_instrument_xray: &str = "either a boolean (`yes`, `no`, `on`, `off`, etc), or a comma separated list of settings: `always` or `never` (mutually exclusive), `ignore-loops`, `instruction-threshold=N`, `skip-entry`, `skip-exit`";
856    pub(crate) const parse_unpretty: &str = "`string` or `string=string`";
857    pub(crate) const parse_treat_err_as_bug: &str = "either no value or a non-negative number";
858    pub(crate) const parse_next_solver_config: &str =
859        "either `globally` (when used without an argument), `coherence` (default) or `no`";
860    pub(crate) const parse_lto: &str =
861        "either a boolean (`yes`, `no`, `on`, `off`, etc), `thin`, `fat`, or omitted";
862    pub(crate) const parse_linker_plugin_lto: &str =
863        "either a boolean (`yes`, `no`, `on`, `off`, etc), or the path to the linker plugin";
864    pub(crate) const parse_location_detail: &str = "either `none`, or a comma separated list of location details to track: `file`, `line`, or `column`";
865    pub(crate) const parse_fmt_debug: &str = "either `full`, `shallow`, or `none`";
866    pub(crate) const parse_switch_with_opt_path: &str =
867        "an optional path to the profiling data output directory";
868    pub(crate) const parse_merge_functions: &str =
869        "one of: `disabled`, `trampolines`, or `aliases`";
870    pub(crate) const parse_symbol_mangling_version: &str =
871        "one of: `legacy`, `v0` (RFC 2603), or `hashed`";
872    pub(crate) const parse_opt_symbol_visibility: &str =
873        "one of: `hidden`, `protected`, or `interposable`";
874    pub(crate) const parse_cargo_src_file_hash: &str =
875        "one of `blake3`, `md5`, `sha1`, or `sha256`";
876    pub(crate) const parse_src_file_hash: &str = "one of `md5`, `sha1`, or `sha256`";
877    pub(crate) const parse_relocation_model: &str =
878        "one of supported relocation models (`rustc --print relocation-models`)";
879    pub(crate) const parse_code_model: &str =
880        "one of supported code models (`rustc --print code-models`)";
881    pub(crate) const parse_tls_model: &str =
882        "one of supported TLS models (`rustc --print tls-models`)";
883    pub(crate) const parse_target_feature: &str = parse_string;
884    pub(crate) const parse_terminal_url: &str =
885        "either a boolean (`yes`, `no`, `on`, `off`, etc), or `auto`";
886    pub(crate) const parse_wasi_exec_model: &str = "either `command` or `reactor`";
887    pub(crate) const parse_split_debuginfo: &str =
888        "one of supported split-debuginfo modes (`off`, `packed`, or `unpacked`)";
889    pub(crate) const parse_split_dwarf_kind: &str =
890        "one of supported split dwarf modes (`split` or `single`)";
891    pub(crate) const parse_link_self_contained: &str = "one of: `y`, `yes`, `on`, `n`, `no`, `off`, or a list of enabled (`+` prefix) and disabled (`-` prefix) \
892        components: `crto`, `libc`, `unwind`, `linker`, `sanitizers`, `mingw`";
893    pub(crate) const parse_linker_features: &str =
894        "a list of enabled (`+` prefix) and disabled (`-` prefix) features: `lld`";
895    pub(crate) const parse_polonius: &str =
896        "either no value or one of `legacy` (the default), `off`, or `next`";
897    pub(crate) const parse_annotate_moves: &str =
898        "either a boolean (`yes`, `no`, `on`, `off`, etc.), or a size limit in bytes";
899    pub(crate) const parse_stack_protector: &str =
900        "one of (`none` (default), `basic`, `strong`, or `all`)";
901    pub(crate) const parse_branch_protection: &str = "a `,` separated combination of `bti`, `gcs`, `pac-ret`, (optionally with `pc`, `b-key`, `leaf` if `pac-ret` is set)";
902    pub(crate) const parse_proc_macro_execution_strategy: &str =
903        "one of supported execution strategies (`same-thread`, or `cross-thread`)";
904    pub(crate) const parse_inlining_threshold: &str =
905        "either a boolean (`yes`, `no`, `on`, `off`, etc), or a non-negative number";
906    pub(crate) const parse_llvm_module_flag: &str = "<key>:<type>:<value>:<behavior>. Type must currently be `u32`. Behavior should be one of (`error`, `warning`, `require`, `override`, `append`, `appendunique`, `max`, `min`)";
907    pub(crate) const parse_function_return: &str = "`keep` or `thunk-extern`";
908    pub(crate) const parse_wasm_c_abi: &str = "`spec`";
909    pub(crate) const parse_mir_include_spans: &str =
910        "either a boolean (`yes`, `no`, `on`, `off`, etc), or `nll` (default: `nll`)";
911    pub(crate) const parse_align: &str = "a number that is a power of 2 between 1 and 2^29";
912    pub(crate) const parse_assert_incr_state: &str = "one of: `loaded`, `not-loaded`";
913    pub(crate) const parse_allow_partial_mitigations: &str =
914        super::mitigation_coverage::DeniedPartialMitigationKind::KINDS;
915    pub(crate) const parse_deny_partial_mitigations: &str =
916        super::mitigation_coverage::DeniedPartialMitigationKind::KINDS;
917    pub(crate) const parse_rust_version: &str = "a rust version (`xx.yy.zz`)";
918}
919
920pub mod parse {
921    use std::str::FromStr;
922
923    pub(crate) use super::*;
924
925    /// Ignore the value. Used for removed options where we don't actually want to store
926    /// anything in the session.
927    pub(crate) fn parse_ignore(_slot: &mut (), _v: Option<&str>) -> bool {
928        true
929    }
930
931    /// This is for boolean options that don't take a value, and are true simply
932    /// by existing on the command-line.
933    ///
934    /// This style of option is deprecated, and is mainly used by old options
935    /// beginning with `no-`.
936    pub(crate) fn parse_no_value(slot: &mut bool, v: Option<&str>) -> bool {
937        match v {
938            None => {
939                *slot = true;
940                true
941            }
942            // Trying to specify a value is always forbidden.
943            Some(_) => false,
944        }
945    }
946
947    /// Use this for any boolean option that has a static default.
948    pub(crate) fn parse_bool(slot: &mut bool, v: Option<&str>) -> bool {
949        match v {
950            Some("y") | Some("yes") | Some("on") | Some("true") | None => {
951                *slot = true;
952                true
953            }
954            Some("n") | Some("no") | Some("off") | Some("false") => {
955                *slot = false;
956                true
957            }
958            _ => false,
959        }
960    }
961
962    /// Use this for any boolean option that lacks a static default. (The
963    /// actions taken when such an option is not specified will depend on
964    /// other factors, such as other options, or target options.)
965    pub(crate) fn parse_opt_bool(slot: &mut Option<bool>, v: Option<&str>) -> bool {
966        match v {
967            Some("y") | Some("yes") | Some("on") | Some("true") | None => {
968                *slot = Some(true);
969                true
970            }
971            Some("n") | Some("no") | Some("off") | Some("false") => {
972                *slot = Some(false);
973                true
974            }
975            _ => false,
976        }
977    }
978
979    /// Parses whether polonius is enabled, and if so, which version.
980    pub(crate) fn parse_polonius(slot: &mut Polonius, v: Option<&str>) -> bool {
981        match v {
982            Some("legacy") | None => {
983                *slot = Polonius::Legacy;
984                true
985            }
986            Some("next") => {
987                *slot = Polonius::Next;
988                true
989            }
990            Some("off") | Some("no") => {
991                *slot = Polonius::Off;
992                true
993            }
994            _ => false,
995        }
996    }
997
998    pub(crate) fn parse_annotate_moves(slot: &mut AnnotateMoves, v: Option<&str>) -> bool {
999        let mut bslot = false;
1000        let mut nslot = 0u64;
1001
1002        *slot = match v {
1003            // No value provided: -Z annotate-moves (enable with default limit)
1004            None => AnnotateMoves::Enabled(None),
1005            // Explicit boolean value provided: -Z annotate-moves=yes/no
1006            s @ Some(_) if parse_bool(&mut bslot, s) => {
1007                if bslot {
1008                    AnnotateMoves::Enabled(None)
1009                } else {
1010                    AnnotateMoves::Disabled
1011                }
1012            }
1013            // With numeric limit provided: -Z annotate-moves=1234
1014            s @ Some(_) if parse_number(&mut nslot, s) => AnnotateMoves::Enabled(Some(nslot)),
1015            _ => return false,
1016        };
1017
1018        true
1019    }
1020
1021    /// Use this for any string option that has a static default.
1022    pub(crate) fn parse_string(slot: &mut String, v: Option<&str>) -> bool {
1023        match v {
1024            Some(s) => {
1025                *slot = s.to_string();
1026                true
1027            }
1028            None => false,
1029        }
1030    }
1031
1032    /// Use this for any string option that lacks a static default.
1033    pub(crate) fn parse_opt_string(slot: &mut Option<String>, v: Option<&str>) -> bool {
1034        match v {
1035            Some(s) => {
1036                *slot = Some(s.to_string());
1037                true
1038            }
1039            None => false,
1040        }
1041    }
1042
1043    pub(crate) fn parse_opt_pathbuf(slot: &mut Option<PathBuf>, v: Option<&str>) -> bool {
1044        match v {
1045            Some(s) => {
1046                *slot = Some(PathBuf::from(s));
1047                true
1048            }
1049            None => false,
1050        }
1051    }
1052
1053    pub(crate) fn parse_string_push(slot: &mut Vec<String>, v: Option<&str>) -> bool {
1054        match v {
1055            Some(s) => {
1056                slot.push(s.to_string());
1057                true
1058            }
1059            None => false,
1060        }
1061    }
1062
1063    pub(crate) fn parse_list(slot: &mut Vec<String>, v: Option<&str>) -> bool {
1064        match v {
1065            Some(s) => {
1066                slot.extend(s.split_whitespace().map(|s| s.to_string()));
1067                true
1068            }
1069            None => false,
1070        }
1071    }
1072
1073    pub(crate) fn parse_list_with_polarity(
1074        slot: &mut Vec<(String, bool)>,
1075        v: Option<&str>,
1076    ) -> bool {
1077        match v {
1078            Some(s) => {
1079                for s in s.split(',') {
1080                    let Some(pass_name) = s.strip_prefix(&['+', '-'][..]) else { return false };
1081                    slot.push((pass_name.to_string(), &s[..1] == "+"));
1082                }
1083                true
1084            }
1085            None => false,
1086        }
1087    }
1088
1089    pub(crate) fn parse_pointer_authentication_list_with_polarity(
1090        slot: &mut Vec<(PointerAuthOption, bool)>,
1091        v: Option<&str>,
1092    ) -> bool {
1093        let Some(s) = v else {
1094            return false;
1095        };
1096
1097        let mut map = BTreeMap::<PointerAuthOption, bool>::new();
1098
1099        for item in s.split(',') {
1100            let Some(name) = item.strip_prefix(&['+', '-'][..]) else {
1101                return false;
1102            };
1103
1104            let Some(opt) = PointerAuthOption::parse(name) else {
1105                return false;
1106            };
1107
1108            let enabled = item.starts_with('+');
1109
1110            // Last occurrence wins.
1111            map.insert(opt, enabled);
1112        }
1113
1114        slot.clear();
1115        slot.extend(map);
1116
1117        true
1118    }
1119
1120    pub(crate) fn parse_fmt_debug(opt: &mut FmtDebug, v: Option<&str>) -> bool {
1121        *opt = match v {
1122            Some("full") => FmtDebug::Full,
1123            Some("shallow") => FmtDebug::Shallow,
1124            Some("none") => FmtDebug::None,
1125            _ => return false,
1126        };
1127        true
1128    }
1129
1130    pub(crate) fn parse_location_detail(ld: &mut LocationDetail, v: Option<&str>) -> bool {
1131        if let Some(v) = v {
1132            ld.line = false;
1133            ld.file = false;
1134            ld.column = false;
1135            if v == "none" {
1136                return true;
1137            }
1138            for s in v.split(',') {
1139                match s {
1140                    "file" => ld.file = true,
1141                    "line" => ld.line = true,
1142                    "column" => ld.column = true,
1143                    _ => return false,
1144                }
1145            }
1146            true
1147        } else {
1148            false
1149        }
1150    }
1151
1152    pub(crate) fn parse_comma_list(slot: &mut Vec<String>, v: Option<&str>) -> bool {
1153        match v {
1154            Some(s) => {
1155                let mut v: Vec<_> = s.split(',').map(|s| s.to_string()).collect();
1156                v.sort_unstable();
1157                *slot = v;
1158                true
1159            }
1160            None => false,
1161        }
1162    }
1163
1164    pub(crate) fn parse_opt_comma_list(slot: &mut Option<Vec<String>>, v: Option<&str>) -> bool {
1165        match v {
1166            Some(s) => {
1167                let mut v: Vec<_> = s.split(',').map(|s| s.to_string()).collect();
1168                v.sort_unstable();
1169                *slot = Some(v);
1170                true
1171            }
1172            None => false,
1173        }
1174    }
1175
1176    /// Use this for any numeric option that has a static default.
1177    pub(crate) fn parse_number<T: Copy + FromStr>(slot: &mut T, v: Option<&str>) -> bool {
1178        match v.and_then(|s| s.parse().ok()) {
1179            Some(i) => {
1180                *slot = i;
1181                true
1182            }
1183            None => false,
1184        }
1185    }
1186
1187    /// Use this for any numeric option that lacks a static default.
1188    pub(crate) fn parse_opt_number<T: Copy + FromStr>(
1189        slot: &mut Option<T>,
1190        v: Option<&str>,
1191    ) -> bool {
1192        match v {
1193            Some(s) => {
1194                *slot = s.parse().ok();
1195                slot.is_some()
1196            }
1197            None => false,
1198        }
1199    }
1200
1201    pub(crate) fn parse_frame_pointer(slot: &mut FramePointer, v: Option<&str>) -> bool {
1202        let mut yes = false;
1203        match v {
1204            _ if parse_bool(&mut yes, v) && yes => slot.ratchet(FramePointer::Always),
1205            _ if parse_bool(&mut yes, v) => slot.ratchet(FramePointer::MayOmit),
1206            Some("always") => slot.ratchet(FramePointer::Always),
1207            Some("non-leaf") => slot.ratchet(FramePointer::NonLeaf),
1208            _ => return false,
1209        };
1210        true
1211    }
1212
1213    pub(crate) fn parse_passes(slot: &mut Passes, v: Option<&str>) -> bool {
1214        match v {
1215            Some("all") => {
1216                *slot = Passes::All;
1217                true
1218            }
1219            v => {
1220                let mut passes = ::alloc::vec::Vec::new()vec![];
1221                if parse_list(&mut passes, v) {
1222                    slot.extend(passes);
1223                    true
1224                } else {
1225                    false
1226                }
1227            }
1228        }
1229    }
1230
1231    pub(crate) fn parse_opt_panic_strategy(
1232        slot: &mut Option<PanicStrategy>,
1233        v: Option<&str>,
1234    ) -> bool {
1235        match v {
1236            Some("unwind") => *slot = Some(PanicStrategy::Unwind),
1237            Some("abort") => *slot = Some(PanicStrategy::Abort),
1238            Some("immediate-abort") => *slot = Some(PanicStrategy::ImmediateAbort),
1239            _ => return false,
1240        }
1241        true
1242    }
1243
1244    pub(crate) fn parse_panic_strategy(slot: &mut PanicStrategy, v: Option<&str>) -> bool {
1245        match v {
1246            Some("unwind") => *slot = PanicStrategy::Unwind,
1247            Some("abort") => *slot = PanicStrategy::Abort,
1248            Some("immediate-abort") => *slot = PanicStrategy::ImmediateAbort,
1249            _ => return false,
1250        }
1251        true
1252    }
1253
1254    pub(crate) fn parse_on_broken_pipe(slot: &mut OnBrokenPipe, v: Option<&str>) -> bool {
1255        match v {
1256            // OnBrokenPipe::Default can't be explicitly specified
1257            Some("kill") => *slot = OnBrokenPipe::Kill,
1258            Some("error") => *slot = OnBrokenPipe::Error,
1259            Some("inherit") => *slot = OnBrokenPipe::Inherit,
1260            _ => return false,
1261        }
1262        true
1263    }
1264
1265    pub(crate) fn parse_patchable_function_entry(
1266        slot: &mut PatchableFunctionEntry,
1267        v: Option<&str>,
1268    ) -> bool {
1269        let mut total_nops = 0;
1270        let mut prefix_nops = 0;
1271        let mut section = None;
1272
1273        if !parse_number(&mut total_nops, v) {
1274            let parts: Vec<_> = v.unwrap_or("").split(',').collect();
1275            if parts.len() < 2 || parts.len() > 3 {
1276                return false;
1277            }
1278
1279            if !parse_number(&mut total_nops, Some(parts[0])) {
1280                return false;
1281            }
1282            if !parse_number(&mut prefix_nops, Some(parts[1])) {
1283                return false;
1284            }
1285            section = parts.get(2).map(|x| x.to_string());
1286        }
1287
1288        if let Some(pfe) = PatchableFunctionEntry::from_parts(total_nops, prefix_nops, section) {
1289            *slot = pfe;
1290            return true;
1291        }
1292        false
1293    }
1294
1295    pub(crate) fn parse_relro_level(slot: &mut Option<RelroLevel>, v: Option<&str>) -> bool {
1296        match v {
1297            Some(s) => match s.parse::<RelroLevel>() {
1298                Ok(level) => *slot = Some(level),
1299                _ => return false,
1300            },
1301            _ => return false,
1302        }
1303        true
1304    }
1305
1306    pub(crate) fn parse_sanitizers(slot: &mut SanitizerSet, v: Option<&str>) -> bool {
1307        if let Some(v) = v {
1308            for s in v.split(',') {
1309                *slot |= match s {
1310                    "address" => SanitizerSet::ADDRESS,
1311                    "cfi" => SanitizerSet::CFI,
1312                    "dataflow" => SanitizerSet::DATAFLOW,
1313                    "kcfi" => SanitizerSet::KCFI,
1314                    "kernel-address" => SanitizerSet::KERNELADDRESS,
1315                    "kernel-hwaddress" => SanitizerSet::KERNELHWADDRESS,
1316                    "leak" => SanitizerSet::LEAK,
1317                    "memory" => SanitizerSet::MEMORY,
1318                    "memtag" => SanitizerSet::MEMTAG,
1319                    "shadow-call-stack" => SanitizerSet::SHADOWCALLSTACK,
1320                    "thread" => SanitizerSet::THREAD,
1321                    "hwaddress" => SanitizerSet::HWADDRESS,
1322                    "safestack" => SanitizerSet::SAFESTACK,
1323                    "realtime" => SanitizerSet::REALTIME,
1324                    _ => return false,
1325                }
1326            }
1327            true
1328        } else {
1329            false
1330        }
1331    }
1332
1333    pub(crate) fn parse_sanitizer_memory_track_origins(slot: &mut usize, v: Option<&str>) -> bool {
1334        match v {
1335            Some("2") | None => {
1336                *slot = 2;
1337                true
1338            }
1339            Some("1") => {
1340                *slot = 1;
1341                true
1342            }
1343            Some("0") => {
1344                *slot = 0;
1345                true
1346            }
1347            Some(_) => false,
1348        }
1349    }
1350
1351    pub(crate) fn parse_strip(slot: &mut Strip, v: Option<&str>) -> bool {
1352        match v {
1353            Some("none") => *slot = Strip::None,
1354            Some("debuginfo") => *slot = Strip::Debuginfo,
1355            Some("symbols") => *slot = Strip::Symbols,
1356            _ => return false,
1357        }
1358        true
1359    }
1360
1361    pub(crate) fn parse_cfguard(slot: &mut CFGuard, v: Option<&str>) -> bool {
1362        if v.is_some() {
1363            let mut bool_arg = None;
1364            if parse_opt_bool(&mut bool_arg, v) {
1365                *slot = if bool_arg.unwrap() { CFGuard::Checks } else { CFGuard::Disabled };
1366                return true;
1367            }
1368        }
1369
1370        *slot = match v {
1371            None => CFGuard::Checks,
1372            Some("checks") => CFGuard::Checks,
1373            Some("nochecks") => CFGuard::NoChecks,
1374            Some(_) => return false,
1375        };
1376        true
1377    }
1378
1379    pub(crate) fn parse_cfprotection(slot: &mut CFProtection, v: Option<&str>) -> bool {
1380        if v.is_some() {
1381            let mut bool_arg = None;
1382            if parse_opt_bool(&mut bool_arg, v) {
1383                *slot = if bool_arg.unwrap() { CFProtection::Full } else { CFProtection::None };
1384                return true;
1385            }
1386        }
1387
1388        *slot = match v {
1389            None | Some("none") => CFProtection::None,
1390            Some("branch") => CFProtection::Branch,
1391            Some("return") => CFProtection::Return,
1392            Some("full") => CFProtection::Full,
1393            Some(_) => return false,
1394        };
1395        true
1396    }
1397
1398    pub(crate) fn parse_debuginfo(slot: &mut DebugInfo, v: Option<&str>) -> bool {
1399        match v {
1400            Some("0") | Some("none") => *slot = DebugInfo::None,
1401            Some("line-directives-only") => *slot = DebugInfo::LineDirectivesOnly,
1402            Some("line-tables-only") => *slot = DebugInfo::LineTablesOnly,
1403            Some("1") | Some("limited") => *slot = DebugInfo::Limited,
1404            Some("2") | Some("full") => *slot = DebugInfo::Full,
1405            _ => return false,
1406        }
1407        true
1408    }
1409
1410    pub(crate) fn parse_debuginfo_compression(
1411        slot: &mut DebugInfoCompression,
1412        v: Option<&str>,
1413    ) -> bool {
1414        match v {
1415            Some("none") => *slot = DebugInfoCompression::None,
1416            Some("zlib") => *slot = DebugInfoCompression::Zlib,
1417            Some("zstd") => *slot = DebugInfoCompression::Zstd,
1418            _ => return false,
1419        };
1420        true
1421    }
1422
1423    pub(crate) fn parse_mir_strip_debuginfo(slot: &mut MirStripDebugInfo, v: Option<&str>) -> bool {
1424        match v {
1425            Some("none") => *slot = MirStripDebugInfo::None,
1426            Some("locals-in-tiny-functions") => *slot = MirStripDebugInfo::LocalsInTinyFunctions,
1427            Some("all-locals") => *slot = MirStripDebugInfo::AllLocals,
1428            _ => return false,
1429        };
1430        true
1431    }
1432
1433    pub(crate) fn parse_linker_flavor(slot: &mut Option<LinkerFlavorCli>, v: Option<&str>) -> bool {
1434        match v.and_then(|v| LinkerFlavorCli::from_str(v).ok()) {
1435            Some(lf) => *slot = Some(lf),
1436            _ => return false,
1437        }
1438        true
1439    }
1440
1441    pub(crate) fn parse_opt_symbol_visibility(
1442        slot: &mut Option<SymbolVisibility>,
1443        v: Option<&str>,
1444    ) -> bool {
1445        if let Some(v) = v {
1446            if let Ok(vis) = SymbolVisibility::from_str(v) {
1447                *slot = Some(vis);
1448            } else {
1449                return false;
1450            }
1451        }
1452        true
1453    }
1454
1455    pub(crate) fn parse_unpretty(slot: &mut Option<String>, v: Option<&str>) -> bool {
1456        match v {
1457            None => false,
1458            Some(s) if s.split('=').count() <= 2 => {
1459                *slot = Some(s.to_string());
1460                true
1461            }
1462            _ => false,
1463        }
1464    }
1465
1466    pub(crate) fn parse_time_passes_format(slot: &mut TimePassesFormat, v: Option<&str>) -> bool {
1467        match v {
1468            None => true,
1469            Some("json") => {
1470                *slot = TimePassesFormat::Json;
1471                true
1472            }
1473            Some("text") => {
1474                *slot = TimePassesFormat::Text;
1475                true
1476            }
1477            Some(_) => false,
1478        }
1479    }
1480
1481    pub(crate) fn parse_dump_mono_stats(slot: &mut DumpMonoStatsFormat, v: Option<&str>) -> bool {
1482        match v {
1483            None => true,
1484            Some("json") => {
1485                *slot = DumpMonoStatsFormat::Json;
1486                true
1487            }
1488            Some("markdown") => {
1489                *slot = DumpMonoStatsFormat::Markdown;
1490                true
1491            }
1492            Some(_) => false,
1493        }
1494    }
1495
1496    pub(crate) fn parse_offload(slot: &mut Vec<Offload>, v: Option<&str>) -> bool {
1497        let Some(v) = v else {
1498            *slot = ::alloc::vec::Vec::new()vec![];
1499            return true;
1500        };
1501        let mut v: Vec<&str> = v.split(",").collect();
1502        v.sort_unstable();
1503        for &val in v.iter() {
1504            // Split each entry on '=' if it has an argument
1505            let (key, arg) = match val.split_once('=') {
1506                Some((k, a)) => (k, Some(a)),
1507                None => (val, None),
1508            };
1509
1510            let variant = match key {
1511                "Host" => {
1512                    if let Some(p) = arg {
1513                        Offload::Host(p.to_string())
1514                    } else {
1515                        return false;
1516                    }
1517                }
1518                "HostMetadata" => {
1519                    if let Some(p) = arg {
1520                        Offload::HostMetadata(p.to_string())
1521                    } else {
1522                        return false;
1523                    }
1524                }
1525                "Device" => {
1526                    // Without an argument, `Device` uses an empty manifest and all kernel
1527                    // instantiations are discovered via monomorphization.
1528                    Offload::Device(arg.unwrap_or_default().to_string())
1529                }
1530                "Test" => {
1531                    if let Some(_) = arg {
1532                        // Test does not accept a value
1533                        return false;
1534                    }
1535                    Offload::Test
1536                }
1537                _ => {
1538                    // FIXME(ZuseZ4): print an error saying which value is not recognized
1539                    return false;
1540                }
1541            };
1542            slot.push(variant);
1543        }
1544
1545        true
1546    }
1547
1548    pub(crate) fn parse_autodiff(slot: &mut Vec<AutoDiff>, v: Option<&str>) -> bool {
1549        let Some(v) = v else {
1550            *slot = ::alloc::vec::Vec::new()vec![];
1551            return true;
1552        };
1553        let mut v: Vec<&str> = v.split(",").collect();
1554        v.sort_unstable();
1555        for &val in v.iter() {
1556            // Split each entry on '=' if it has an argument
1557            let (key, arg) = match val.split_once('=') {
1558                Some((k, a)) => (k, Some(a)),
1559                None => (val, None),
1560            };
1561
1562            let variant = match key {
1563                "Enable" => AutoDiff::Enable,
1564                "PrintTA" => AutoDiff::PrintTA,
1565                "PrintTAFn" => {
1566                    if let Some(fun) = arg {
1567                        AutoDiff::PrintTAFn(fun.to_string())
1568                    } else {
1569                        return false;
1570                    }
1571                }
1572                "PrintAA" => AutoDiff::PrintAA,
1573                "PrintPerf" => AutoDiff::PrintPerf,
1574                "PrintSteps" => AutoDiff::PrintSteps,
1575                "PrintModBefore" => AutoDiff::PrintModBefore,
1576                "PrintModAfter" => AutoDiff::PrintModAfter,
1577                "PrintModFinal" => AutoDiff::PrintModFinal,
1578                "NoPostopt" => AutoDiff::NoPostopt,
1579                "PrintPasses" => AutoDiff::PrintPasses,
1580                "LooseTypes" => AutoDiff::LooseTypes,
1581                "Inline" => AutoDiff::Inline,
1582                "NoTT" => AutoDiff::NoTT,
1583                _ => {
1584                    // FIXME(ZuseZ4): print an error saying which value is not recognized
1585                    return false;
1586                }
1587            };
1588            slot.push(variant);
1589        }
1590
1591        true
1592    }
1593
1594    pub(crate) fn parse_instrument_coverage(
1595        slot: &mut InstrumentCoverage,
1596        v: Option<&str>,
1597    ) -> bool {
1598        if v.is_some() {
1599            let mut bool_arg = false;
1600            if parse_bool(&mut bool_arg, v) {
1601                *slot = if bool_arg { InstrumentCoverage::Yes } else { InstrumentCoverage::No };
1602                return true;
1603            }
1604        }
1605
1606        let Some(v) = v else {
1607            *slot = InstrumentCoverage::Yes;
1608            return true;
1609        };
1610
1611        // Parse values that have historically been accepted by stable compilers,
1612        // even though they're currently just aliases for boolean values.
1613        *slot = match v {
1614            "all" => InstrumentCoverage::Yes,
1615            "0" => InstrumentCoverage::No,
1616            _ => return false,
1617        };
1618        true
1619    }
1620
1621    pub(crate) fn parse_codegen_retag_options(
1622        slot: &mut Option<CodegenRetagOptions>,
1623        v: Option<&str>,
1624    ) -> bool {
1625        let mut no_precise_im = false;
1626        let mut no_precise_pin = false;
1627        if let Some(opt_list) = v.map(|s| s.split(',')) {
1628            for opt in opt_list {
1629                match opt {
1630                    "no-precise-im" => {
1631                        no_precise_im = true;
1632                    }
1633                    "no-precise-pin" => {
1634                        no_precise_pin = true;
1635                    }
1636                    _ => return false,
1637                }
1638            }
1639        }
1640        *slot = Some(CodegenRetagOptions { no_precise_im, no_precise_pin });
1641        true
1642    }
1643
1644    pub(crate) fn parse_coverage_options(slot: &mut CoverageOptions, v: Option<&str>) -> bool {
1645        let Some(v) = v else { return true };
1646
1647        for option in v.split(',') {
1648            match option {
1649                "block" => slot.level = CoverageLevel::Block,
1650                "branch" => slot.level = CoverageLevel::Branch,
1651                "condition" => slot.level = CoverageLevel::Condition,
1652                "discard-all-spans-in-codegen" => slot.discard_all_spans_in_codegen = true,
1653                _ => return false,
1654            }
1655        }
1656        true
1657    }
1658
1659    pub(crate) fn parse_instrument_mcount(slot: &mut InstrumentMcount, v: Option<&str>) -> bool {
1660        let mut use_mcount = false;
1661        let mut opts = InstrumentMcountOpts::default();
1662        if parse_bool(&mut use_mcount, v) {
1663            *slot = if use_mcount {
1664                InstrumentMcount::Mcount(opts)
1665            } else {
1666                InstrumentMcount::Disabled
1667            };
1668            return true;
1669        }
1670        match v {
1671            Some("fentry") => {
1672                *slot = InstrumentMcount::Fentry(opts);
1673            }
1674            Some("fentry-record") => {
1675                opts.record = true;
1676                *slot = InstrumentMcount::Fentry(opts);
1677            }
1678            Some("fentry-nop-record") => {
1679                opts.record = true;
1680                opts.no_call = true;
1681                *slot = InstrumentMcount::Fentry(opts);
1682            }
1683            _ => {
1684                return false;
1685            }
1686        }
1687        true
1688    }
1689
1690    pub(crate) fn parse_instrument_xray(
1691        slot: &mut Option<InstrumentXRay>,
1692        v: Option<&str>,
1693    ) -> bool {
1694        if v.is_some() {
1695            let mut bool_arg = None;
1696            if parse_opt_bool(&mut bool_arg, v) {
1697                *slot = if bool_arg.unwrap() { Some(InstrumentXRay::default()) } else { None };
1698                return true;
1699            }
1700        }
1701
1702        let options = slot.get_or_insert_default();
1703        let mut seen_always = false;
1704        let mut seen_never = false;
1705        let mut seen_ignore_loops = false;
1706        let mut seen_instruction_threshold = false;
1707        let mut seen_skip_entry = false;
1708        let mut seen_skip_exit = false;
1709        for option in v.map(|v| v.split(',')).into_flat_iter() {
1710            match option {
1711                "always" if !seen_always && !seen_never => {
1712                    options.always = true;
1713                    options.never = false;
1714                    seen_always = true;
1715                }
1716                "never" if !seen_never && !seen_always => {
1717                    options.never = true;
1718                    options.always = false;
1719                    seen_never = true;
1720                }
1721                "ignore-loops" if !seen_ignore_loops => {
1722                    options.ignore_loops = true;
1723                    seen_ignore_loops = true;
1724                }
1725                option
1726                    if option.starts_with("instruction-threshold")
1727                        && !seen_instruction_threshold =>
1728                {
1729                    let Some(("instruction-threshold", n)) = option.split_once('=') else {
1730                        return false;
1731                    };
1732                    match n.parse() {
1733                        Ok(n) => options.instruction_threshold = Some(n),
1734                        Err(_) => return false,
1735                    }
1736                    seen_instruction_threshold = true;
1737                }
1738                "skip-entry" if !seen_skip_entry => {
1739                    options.skip_entry = true;
1740                    seen_skip_entry = true;
1741                }
1742                "skip-exit" if !seen_skip_exit => {
1743                    options.skip_exit = true;
1744                    seen_skip_exit = true;
1745                }
1746                _ => return false,
1747            }
1748        }
1749        true
1750    }
1751
1752    pub(crate) fn parse_treat_err_as_bug(
1753        slot: &mut Option<NonZero<usize>>,
1754        v: Option<&str>,
1755    ) -> bool {
1756        match v {
1757            Some(s) => match s.parse() {
1758                Ok(val) => {
1759                    *slot = Some(val);
1760                    true
1761                }
1762                Err(e) => {
1763                    *slot = None;
1764                    e.kind() == &IntErrorKind::Zero
1765                }
1766            },
1767            None => {
1768                *slot = NonZero::new(1);
1769                true
1770            }
1771        }
1772    }
1773
1774    pub(crate) fn parse_next_solver_config(slot: &mut NextSolverConfig, v: Option<&str>) -> bool {
1775        if let Some(config) = v {
1776            *slot = match config {
1777                "no" => NextSolverConfig { coherence: false, globally: false },
1778                "coherence" => NextSolverConfig { coherence: true, globally: false },
1779                "globally" => NextSolverConfig { coherence: true, globally: true },
1780                _ => return false,
1781            };
1782        } else {
1783            *slot = NextSolverConfig { coherence: true, globally: true };
1784        }
1785
1786        true
1787    }
1788
1789    pub(crate) fn parse_lto(slot: &mut LtoCli, v: Option<&str>) -> bool {
1790        if v.is_some() {
1791            let mut bool_arg = None;
1792            if parse_opt_bool(&mut bool_arg, v) {
1793                *slot = if bool_arg.unwrap() { LtoCli::Yes } else { LtoCli::No };
1794                return true;
1795            }
1796        }
1797
1798        *slot = match v {
1799            None => LtoCli::NoParam,
1800            Some("thin") => LtoCli::Thin,
1801            Some("fat") => LtoCli::Fat,
1802            Some(_) => return false,
1803        };
1804        true
1805    }
1806
1807    pub(crate) fn parse_linker_plugin_lto(slot: &mut LinkerPluginLto, v: Option<&str>) -> bool {
1808        if v.is_some() {
1809            let mut bool_arg = None;
1810            if parse_opt_bool(&mut bool_arg, v) {
1811                *slot = if bool_arg.unwrap() {
1812                    LinkerPluginLto::LinkerPluginAuto
1813                } else {
1814                    LinkerPluginLto::Disabled
1815                };
1816                return true;
1817            }
1818        }
1819
1820        *slot = match v {
1821            None => LinkerPluginLto::LinkerPluginAuto,
1822            Some(path) => LinkerPluginLto::LinkerPlugin(PathBuf::from(path)),
1823        };
1824        true
1825    }
1826
1827    pub(crate) fn parse_switch_with_opt_path(
1828        slot: &mut SwitchWithOptPath,
1829        v: Option<&str>,
1830    ) -> bool {
1831        *slot = match v {
1832            None => SwitchWithOptPath::Enabled(None),
1833            Some(path) => SwitchWithOptPath::Enabled(Some(PathBuf::from(path))),
1834        };
1835        true
1836    }
1837
1838    pub(crate) fn parse_merge_functions(
1839        slot: &mut Option<MergeFunctions>,
1840        v: Option<&str>,
1841    ) -> bool {
1842        match v.and_then(|s| MergeFunctions::from_str(s).ok()) {
1843            Some(mergefunc) => *slot = Some(mergefunc),
1844            _ => return false,
1845        }
1846        true
1847    }
1848
1849    pub(crate) fn parse_relocation_model(slot: &mut Option<RelocModel>, v: Option<&str>) -> bool {
1850        match v.and_then(|s| RelocModel::from_str(s).ok()) {
1851            Some(relocation_model) => *slot = Some(relocation_model),
1852            None if v == Some("default") => *slot = None,
1853            _ => return false,
1854        }
1855        true
1856    }
1857
1858    pub(crate) fn parse_code_model(slot: &mut Option<CodeModel>, v: Option<&str>) -> bool {
1859        match v.and_then(|s| CodeModel::from_str(s).ok()) {
1860            Some(code_model) => *slot = Some(code_model),
1861            _ => return false,
1862        }
1863        true
1864    }
1865
1866    pub(crate) fn parse_tls_model(slot: &mut Option<TlsModel>, v: Option<&str>) -> bool {
1867        match v.and_then(|s| TlsModel::from_str(s).ok()) {
1868            Some(tls_model) => *slot = Some(tls_model),
1869            _ => return false,
1870        }
1871        true
1872    }
1873
1874    pub(crate) fn parse_terminal_url(slot: &mut TerminalUrl, v: Option<&str>) -> bool {
1875        *slot = match v {
1876            Some("on" | "" | "yes" | "y") | None => TerminalUrl::Yes,
1877            Some("off" | "no" | "n") => TerminalUrl::No,
1878            Some("auto") => TerminalUrl::Auto,
1879            _ => return false,
1880        };
1881        true
1882    }
1883
1884    pub(crate) fn parse_symbol_mangling_version(
1885        slot: &mut Option<SymbolManglingVersion>,
1886        v: Option<&str>,
1887    ) -> bool {
1888        *slot = match v {
1889            Some("legacy") => Some(SymbolManglingVersion::Legacy),
1890            Some("v0") => Some(SymbolManglingVersion::V0),
1891            Some("hashed") => Some(SymbolManglingVersion::Hashed),
1892            _ => return false,
1893        };
1894        true
1895    }
1896
1897    pub(crate) fn parse_src_file_hash(
1898        slot: &mut Option<SourceFileHashAlgorithm>,
1899        v: Option<&str>,
1900    ) -> bool {
1901        match v.and_then(|s| SourceFileHashAlgorithm::from_str(s).ok()) {
1902            Some(hash_kind) => *slot = Some(hash_kind),
1903            _ => return false,
1904        }
1905        true
1906    }
1907
1908    pub(crate) fn parse_cargo_src_file_hash(
1909        slot: &mut Option<SourceFileHashAlgorithm>,
1910        v: Option<&str>,
1911    ) -> bool {
1912        match v.and_then(|s| SourceFileHashAlgorithm::from_str(s).ok()) {
1913            Some(hash_kind) => {
1914                *slot = Some(hash_kind);
1915            }
1916            _ => return false,
1917        }
1918        true
1919    }
1920
1921    pub(crate) fn parse_target_feature(slot: &mut String, v: Option<&str>) -> bool {
1922        match v {
1923            Some(s) => {
1924                if !slot.is_empty() {
1925                    slot.push(',');
1926                }
1927                slot.push_str(s);
1928                true
1929            }
1930            None => false,
1931        }
1932    }
1933
1934    pub(crate) fn parse_link_self_contained(slot: &mut LinkSelfContained, v: Option<&str>) -> bool {
1935        // Whenever `-C link-self-contained` is passed without a value, it's an opt-in
1936        // just like `parse_opt_bool`, the historical value of this flag.
1937        //
1938        // 1. Parse historical single bool values
1939        let s = v.unwrap_or("y");
1940        match s {
1941            "y" | "yes" | "on" => {
1942                slot.set_all_explicitly(true);
1943                return true;
1944            }
1945            "n" | "no" | "off" => {
1946                slot.set_all_explicitly(false);
1947                return true;
1948            }
1949            _ => {}
1950        }
1951
1952        // 2. Parse a list of enabled and disabled components.
1953        for comp in s.split(',') {
1954            if slot.handle_cli_component(comp).is_none() {
1955                return false;
1956            }
1957        }
1958
1959        true
1960    }
1961
1962    /// Parse a comma-separated list of enabled and disabled linker features.
1963    pub(crate) fn parse_linker_features(slot: &mut LinkerFeaturesCli, v: Option<&str>) -> bool {
1964        match v {
1965            Some(s) => {
1966                for feature in s.split(',') {
1967                    if slot.handle_cli_feature(feature).is_none() {
1968                        return false;
1969                    }
1970                }
1971
1972                true
1973            }
1974            None => false,
1975        }
1976    }
1977
1978    pub(crate) fn parse_wasi_exec_model(slot: &mut Option<WasiExecModel>, v: Option<&str>) -> bool {
1979        match v {
1980            Some("command") => *slot = Some(WasiExecModel::Command),
1981            Some("reactor") => *slot = Some(WasiExecModel::Reactor),
1982            _ => return false,
1983        }
1984        true
1985    }
1986
1987    pub(crate) fn parse_split_debuginfo(
1988        slot: &mut Option<SplitDebuginfo>,
1989        v: Option<&str>,
1990    ) -> bool {
1991        match v.and_then(|s| SplitDebuginfo::from_str(s).ok()) {
1992            Some(e) => *slot = Some(e),
1993            _ => return false,
1994        }
1995        true
1996    }
1997
1998    pub(crate) fn parse_split_dwarf_kind(slot: &mut SplitDwarfKind, v: Option<&str>) -> bool {
1999        match v.and_then(|s| SplitDwarfKind::from_str(s).ok()) {
2000            Some(e) => *slot = e,
2001            _ => return false,
2002        }
2003        true
2004    }
2005
2006    pub(crate) fn parse_stack_protector(slot: &mut StackProtector, v: Option<&str>) -> bool {
2007        match v.and_then(|s| StackProtector::from_str(s).ok()) {
2008            Some(ssp) => *slot = ssp,
2009            _ => return false,
2010        }
2011        true
2012    }
2013
2014    pub(crate) fn parse_branch_protection(
2015        slot: &mut Option<BranchProtection>,
2016        v: Option<&str>,
2017    ) -> bool {
2018        match v {
2019            Some(s) => {
2020                let slot = slot.get_or_insert_default();
2021                for opt in s.split(',') {
2022                    match opt {
2023                        "bti" => slot.bti = true,
2024                        "pac-ret" if slot.pac_ret.is_none() => {
2025                            // Note: some targets only support certain keys (Windows on Arm only
2026                            // supports Key B) and this possible discrepancy is handled by the
2027                            // session's `branch_protection` accessor, when we have both the target
2028                            // tuple and branch protection information available.
2029                            slot.pac_ret = Some(PacRet { leaf: false, pc: false, key: PAuthKey::A })
2030                        }
2031                        "leaf" => match slot.pac_ret.as_mut() {
2032                            Some(pac) => pac.leaf = true,
2033                            _ => return false,
2034                        },
2035                        "b-key" => match slot.pac_ret.as_mut() {
2036                            Some(pac) => pac.key = PAuthKey::B,
2037                            _ => return false,
2038                        },
2039                        "pc" => match slot.pac_ret.as_mut() {
2040                            Some(pac) => pac.pc = true,
2041                            _ => return false,
2042                        },
2043                        "gcs" => slot.gcs = true,
2044                        _ => return false,
2045                    };
2046                }
2047            }
2048            _ => return false,
2049        }
2050        true
2051    }
2052
2053    pub(crate) fn parse_collapse_macro_debuginfo(
2054        slot: &mut CollapseMacroDebuginfo,
2055        v: Option<&str>,
2056    ) -> bool {
2057        if v.is_some() {
2058            let mut bool_arg = None;
2059            if parse_opt_bool(&mut bool_arg, v) {
2060                *slot = if bool_arg.unwrap() {
2061                    CollapseMacroDebuginfo::Yes
2062                } else {
2063                    CollapseMacroDebuginfo::No
2064                };
2065                return true;
2066            }
2067        }
2068
2069        *slot = match v {
2070            Some("external") => CollapseMacroDebuginfo::External,
2071            _ => return false,
2072        };
2073        true
2074    }
2075
2076    pub(crate) fn parse_proc_macro_execution_strategy(
2077        slot: &mut ProcMacroExecutionStrategy,
2078        v: Option<&str>,
2079    ) -> bool {
2080        *slot = match v {
2081            Some("same-thread") => ProcMacroExecutionStrategy::SameThread,
2082            Some("cross-thread") => ProcMacroExecutionStrategy::CrossThread,
2083            _ => return false,
2084        };
2085        true
2086    }
2087
2088    pub(crate) fn parse_inlining_threshold(slot: &mut InliningThreshold, v: Option<&str>) -> bool {
2089        match v {
2090            Some("always" | "yes") => {
2091                *slot = InliningThreshold::Always;
2092            }
2093            Some("never") => {
2094                *slot = InliningThreshold::Never;
2095            }
2096            Some(v) => {
2097                if let Ok(threshold) = v.parse() {
2098                    *slot = InliningThreshold::Sometimes(threshold);
2099                } else {
2100                    return false;
2101                }
2102            }
2103            None => return false,
2104        }
2105        true
2106    }
2107
2108    pub(crate) fn parse_llvm_module_flag(
2109        slot: &mut Vec<(String, u32, String)>,
2110        v: Option<&str>,
2111    ) -> bool {
2112        let elements = v.unwrap_or_default().split(':').collect::<Vec<_>>();
2113        let [key, md_type, value, behavior] = elements.as_slice() else {
2114            return false;
2115        };
2116        if *md_type != "u32" {
2117            // Currently we only support u32 metadata flags, but require the
2118            // type for forward-compatibility.
2119            return false;
2120        }
2121        let Ok(value) = value.parse::<u32>() else {
2122            return false;
2123        };
2124        let behavior = behavior.to_lowercase();
2125        let all_behaviors =
2126            ["error", "warning", "require", "override", "append", "appendunique", "max", "min"];
2127        if !all_behaviors.contains(&behavior.as_str()) {
2128            return false;
2129        }
2130
2131        slot.push((key.to_string(), value, behavior));
2132        true
2133    }
2134
2135    pub(crate) fn parse_function_return(slot: &mut FunctionReturn, v: Option<&str>) -> bool {
2136        match v {
2137            Some("keep") => *slot = FunctionReturn::Keep,
2138            Some("thunk-extern") => *slot = FunctionReturn::ThunkExtern,
2139            _ => return false,
2140        }
2141        true
2142    }
2143
2144    pub(crate) fn parse_wasm_c_abi(_slot: &mut (), v: Option<&str>) -> bool {
2145        v == Some("spec")
2146    }
2147
2148    pub(crate) fn parse_mir_include_spans(slot: &mut MirIncludeSpans, v: Option<&str>) -> bool {
2149        *slot = match v {
2150            Some("on" | "yes" | "y" | "true") | None => MirIncludeSpans::On,
2151            Some("off" | "no" | "n" | "false") => MirIncludeSpans::Off,
2152            Some("nll") => MirIncludeSpans::Nll,
2153            _ => return false,
2154        };
2155
2156        true
2157    }
2158
2159    pub(crate) fn parse_align(slot: &mut Option<Align>, v: Option<&str>) -> bool {
2160        let mut bytes = 0u64;
2161        if !parse_number(&mut bytes, v) {
2162            return false;
2163        }
2164
2165        let Ok(align) = Align::from_bytes(bytes) else {
2166            return false;
2167        };
2168
2169        *slot = Some(align);
2170
2171        true
2172    }
2173
2174    pub(crate) fn parse_assert_incr_state(
2175        slot: &mut Option<IncrementalStateAssertion>,
2176        v: Option<&str>,
2177    ) -> bool {
2178        *slot = match v {
2179            Some("loaded") => Some(IncrementalStateAssertion::Loaded),
2180            Some("not-loaded") => Some(IncrementalStateAssertion::NotLoaded),
2181            _ => return false,
2182        };
2183        true
2184    }
2185
2186    pub(crate) fn parse_rust_version(slot: &mut Option<RustcVersion>, v: Option<&str>) -> bool {
2187        let Some(v) = v else {
2188            return false;
2189        };
2190        if let Some(version) = RustcVersion::parse_str_strict(v) {
2191            *slot = Some(version);
2192            true
2193        } else {
2194            false
2195        }
2196    }
2197}
2198
2199#[rustc_lint_opt_ty]
pub struct CodegenOptions {
    pub ar: (),
    #[rustc_lint_opt_deny_field_access("use `Session::code_model` instead of this field")]
    pub code_model: Option<CodeModel>,
    pub codegen_units: Option<usize>,
    pub collapse_macro_debuginfo: CollapseMacroDebuginfo,
    pub control_flow_guard: CFGuard,
    pub debug_assertions: Option<bool>,
    pub debuginfo: DebugInfo,
    pub default_linker_libraries: bool,
    pub dlltool: Option<PathBuf>,
    #[rustc_lint_opt_deny_field_access("use `Session::dwarf_version` instead of this field")]
    pub dwarf_version: Option<u32>,
    pub embed_bitcode: bool,
    pub extra_filename: String,
    pub force_frame_pointers: FramePointer,
    #[rustc_lint_opt_deny_field_access("use `Session::must_emit_unwind_tables` instead of this field")]
    pub force_unwind_tables: Option<bool>,
    pub help: bool,
    pub incremental: Option<String>,
    pub inline_threshold: (),
    #[rustc_lint_opt_deny_field_access("use `Session::instrument_coverage` instead of this field")]
    pub instrument_coverage: InstrumentCoverage,
    pub jump_tables: bool,
    pub link_arg: (),
    pub link_args: Vec<String>,
    #[rustc_lint_opt_deny_field_access("use `Session::link_dead_code` instead of this field")]
    pub link_dead_code: Option<bool>,
    pub link_self_contained: LinkSelfContained,
    pub linker: Option<PathBuf>,
    pub linker_features: LinkerFeaturesCli,
    pub linker_flavor: Option<LinkerFlavorCli>,
    pub linker_plugin_lto: LinkerPluginLto,
    pub llvm_args: Vec<String>,
    #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
    pub lto: LtoCli,
    pub metadata: Vec<String>,
    pub no_prepopulate_passes: bool,
    pub no_redzone: Option<bool>,
    pub no_stack_check: (),
    pub no_vectorize_loops: bool,
    pub no_vectorize_slp: bool,
    pub opt_level: String,
    #[rustc_lint_opt_deny_field_access("use `Session::overflow_checks` instead of this field")]
    pub overflow_checks: Option<bool>,
    #[rustc_lint_opt_deny_field_access("use `Session::panic_strategy` instead of this field")]
    pub panic: Option<PanicStrategy>,
    pub passes: Vec<String>,
    pub prefer_dynamic: bool,
    pub profile_generate: SwitchWithOptPath,
    pub profile_sample_use: Option<PathBuf>,
    pub profile_use: Option<PathBuf>,
    #[rustc_lint_opt_deny_field_access("use `Session::relocation_model` instead of this field")]
    pub relocation_model: Option<RelocModel>,
    pub relro_level: Option<RelroLevel>,
    pub remark: Passes,
    pub rpath: bool,
    pub save_temps: bool,
    pub soft_float: (),
    #[rustc_lint_opt_deny_field_access("use `Session::split_debuginfo` instead of this field")]
    pub split_debuginfo: Option<SplitDebuginfo>,
    pub strip: Strip,
    pub symbol_mangling_version: Option<SymbolManglingVersion>,
    pub target_cpu: Option<String>,
    pub target_feature: String,
    pub unsafe_allow_abi_mismatch: Vec<String>,
}
#[automatically_derived]
impl ::core::clone::Clone for CodegenOptions {
    #[inline]
    fn clone(&self) -> Self {
        Self {
            ar: ::core::clone::Clone::clone(&self.ar),
            code_model: ::core::clone::Clone::clone(&self.code_model),
            codegen_units: ::core::clone::Clone::clone(&self.codegen_units),
            collapse_macro_debuginfo: ::core::clone::Clone::clone(&self.collapse_macro_debuginfo),
            control_flow_guard: ::core::clone::Clone::clone(&self.control_flow_guard),
            debug_assertions: ::core::clone::Clone::clone(&self.debug_assertions),
            debuginfo: ::core::clone::Clone::clone(&self.debuginfo),
            default_linker_libraries: ::core::clone::Clone::clone(&self.default_linker_libraries),
            dlltool: ::core::clone::Clone::clone(&self.dlltool),
            dwarf_version: ::core::clone::Clone::clone(&self.dwarf_version),
            embed_bitcode: ::core::clone::Clone::clone(&self.embed_bitcode),
            extra_filename: ::core::clone::Clone::clone(&self.extra_filename),
            force_frame_pointers: ::core::clone::Clone::clone(&self.force_frame_pointers),
            force_unwind_tables: ::core::clone::Clone::clone(&self.force_unwind_tables),
            help: ::core::clone::Clone::clone(&self.help),
            incremental: ::core::clone::Clone::clone(&self.incremental),
            inline_threshold: ::core::clone::Clone::clone(&self.inline_threshold),
            instrument_coverage: ::core::clone::Clone::clone(&self.instrument_coverage),
            jump_tables: ::core::clone::Clone::clone(&self.jump_tables),
            link_arg: ::core::clone::Clone::clone(&self.link_arg),
            link_args: ::core::clone::Clone::clone(&self.link_args),
            link_dead_code: ::core::clone::Clone::clone(&self.link_dead_code),
            link_self_contained: ::core::clone::Clone::clone(&self.link_self_contained),
            linker: ::core::clone::Clone::clone(&self.linker),
            linker_features: ::core::clone::Clone::clone(&self.linker_features),
            linker_flavor: ::core::clone::Clone::clone(&self.linker_flavor),
            linker_plugin_lto: ::core::clone::Clone::clone(&self.linker_plugin_lto),
            llvm_args: ::core::clone::Clone::clone(&self.llvm_args),
            lto: ::core::clone::Clone::clone(&self.lto),
            metadata: ::core::clone::Clone::clone(&self.metadata),
            no_prepopulate_passes: ::core::clone::Clone::clone(&self.no_prepopulate_passes),
            no_redzone: ::core::clone::Clone::clone(&self.no_redzone),
            no_stack_check: ::core::clone::Clone::clone(&self.no_stack_check),
            no_vectorize_loops: ::core::clone::Clone::clone(&self.no_vectorize_loops),
            no_vectorize_slp: ::core::clone::Clone::clone(&self.no_vectorize_slp),
            opt_level: ::core::clone::Clone::clone(&self.opt_level),
            overflow_checks: ::core::clone::Clone::clone(&self.overflow_checks),
            panic: ::core::clone::Clone::clone(&self.panic),
            passes: ::core::clone::Clone::clone(&self.passes),
            prefer_dynamic: ::core::clone::Clone::clone(&self.prefer_dynamic),
            profile_generate: ::core::clone::Clone::clone(&self.profile_generate),
            profile_sample_use: ::core::clone::Clone::clone(&self.profile_sample_use),
            profile_use: ::core::clone::Clone::clone(&self.profile_use),
            relocation_model: ::core::clone::Clone::clone(&self.relocation_model),
            relro_level: ::core::clone::Clone::clone(&self.relro_level),
            remark: ::core::clone::Clone::clone(&self.remark),
            rpath: ::core::clone::Clone::clone(&self.rpath),
            save_temps: ::core::clone::Clone::clone(&self.save_temps),
            soft_float: ::core::clone::Clone::clone(&self.soft_float),
            split_debuginfo: ::core::clone::Clone::clone(&self.split_debuginfo),
            strip: ::core::clone::Clone::clone(&self.strip),
            symbol_mangling_version: ::core::clone::Clone::clone(&self.symbol_mangling_version),
            target_cpu: ::core::clone::Clone::clone(&self.target_cpu),
            target_feature: ::core::clone::Clone::clone(&self.target_feature),
            unsafe_allow_abi_mismatch: ::core::clone::Clone::clone(&self.unsafe_allow_abi_mismatch),
        }
    }
}
pub enum CodegenOptionsTargetModifiers { TargetCpu, }
#[automatically_derived]
impl ::core::marker::StructuralPartialEq for CodegenOptionsTargetModifiers { }
#[automatically_derived]
impl ::core::cmp::PartialEq for CodegenOptionsTargetModifiers {
    #[inline]
    fn eq(&self, other: &Self) -> bool { true }
}
#[automatically_derived]
impl ::core::cmp::Eq for CodegenOptionsTargetModifiers { }
#[automatically_derived]
impl ::core::cmp::PartialOrd for CodegenOptionsTargetModifiers {
    #[inline]
    fn partial_cmp(&self, other: &Self)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ordering::Equal)
    }
}
#[automatically_derived]
impl ::core::cmp::Ord for CodegenOptionsTargetModifiers {
    #[inline]
    fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
        ::core::cmp::Ordering::Equal
    }
}
#[automatically_derived]
impl ::core::fmt::Debug for CodegenOptionsTargetModifiers {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f, "TargetCpu")
    }
}
#[automatically_derived]
impl ::core::marker::Copy for CodegenOptionsTargetModifiers { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for CodegenOptionsTargetModifiers { }
#[automatically_derived]
impl ::core::clone::Clone for CodegenOptionsTargetModifiers {
    #[inline]
    fn clone(&self) -> Self { *self }
}
const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CodegenOptionsTargetModifiers {
            fn encode(&self, __encoder: &mut __E) {}
        }
    };
const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for CodegenOptionsTargetModifiers {
            fn decode(__decoder: &mut __D) -> Self {
                CodegenOptionsTargetModifiers::TargetCpu
            }
        }
    };
impl CodegenOptionsTargetModifiers {
    pub fn reparse(&self, _user_value: &str) -> ExtendedTargetModifierInfo {
        match self {
            Self::TargetCpu => {
                let mut parsed: Option<String> = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_opt_string(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "C".to_string(),
                    name: "target_cpu".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
                #[allow(unreachable_patterns)]
                _ => {
                ::core::panicking::panic_fmt(format_args!("unknown target modifier option: {0:?}",
                        *self));
            }
        }
    }
    pub fn is_target_modifier(flag_name: &str) -> bool {
        match flag_name.replace('-', "_").as_str() {
            "target_cpu" => true,
            _ => false,
        }
    }
}
impl Default for CodegenOptions {
    fn default() -> CodegenOptions {
        CodegenOptions {
            ar: (),
            code_model: None,
            codegen_units: None,
            collapse_macro_debuginfo: CollapseMacroDebuginfo::Unspecified,
            control_flow_guard: CFGuard::Disabled,
            debug_assertions: None,
            debuginfo: DebugInfo::None,
            default_linker_libraries: false,
            dlltool: None,
            dwarf_version: None,
            embed_bitcode: true,
            extra_filename: String::new(),
            force_frame_pointers: FramePointer::MayOmit,
            force_unwind_tables: None,
            help: false,
            incremental: None,
            inline_threshold: (),
            instrument_coverage: InstrumentCoverage::No,
            jump_tables: true,
            link_arg: (),
            link_args: Vec::new(),
            link_dead_code: None,
            link_self_contained: LinkSelfContained::default(),
            linker: None,
            linker_features: LinkerFeaturesCli::default(),
            linker_flavor: None,
            linker_plugin_lto: LinkerPluginLto::Disabled,
            llvm_args: Vec::new(),
            lto: LtoCli::Unspecified,
            metadata: Vec::new(),
            no_prepopulate_passes: false,
            no_redzone: None,
            no_stack_check: (),
            no_vectorize_loops: false,
            no_vectorize_slp: false,
            opt_level: "0".to_string(),
            overflow_checks: None,
            panic: None,
            passes: Vec::new(),
            prefer_dynamic: false,
            profile_generate: SwitchWithOptPath::Disabled,
            profile_sample_use: None,
            profile_use: None,
            relocation_model: None,
            relro_level: None,
            remark: Passes::Some(Vec::new()),
            rpath: false,
            save_temps: false,
            soft_float: (),
            split_debuginfo: None,
            strip: Strip::None,
            symbol_mangling_version: None,
            target_cpu: None,
            target_feature: String::new(),
            unsafe_allow_abi_mismatch: Vec::new(),
        }
    }
}
impl CodegenOptions {
    pub fn build(early_dcx: &EarlyDiagCtxt, matches: &getopts::Matches,
        target_modifiers: &mut CollectedOptions) -> CodegenOptions {
        build_options(early_dcx, matches, target_modifiers, CG_OPTIONS, "C",
            "codegen")
    }
    fn dep_tracking_hash(&self, for_crate_hash: bool,
        error_format: ErrorOutputType) -> Hash64 {
        let mut sub_hashes = BTreeMap::new();
        {};
        {
            if (&mut sub_hashes).insert("code_model",
                        &self.code_model as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "code_model"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("collapse_macro_debuginfo",
                        &self.collapse_macro_debuginfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "collapse_macro_debuginfo"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("control_flow_guard",
                        &self.control_flow_guard as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "control_flow_guard"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debug_assertions",
                        &self.debug_assertions as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debug_assertions"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debuginfo",
                        &self.debuginfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debuginfo"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("dwarf_version",
                        &self.dwarf_version as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "dwarf_version"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("embed_bitcode",
                        &self.embed_bitcode as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "embed_bitcode"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("force_frame_pointers",
                        &self.force_frame_pointers as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "force_frame_pointers"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("force_unwind_tables",
                        &self.force_unwind_tables as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "force_unwind_tables"));
                }
            }
        };
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("instrument_coverage",
                        &self.instrument_coverage as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "instrument_coverage"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("jump_tables",
                        &self.jump_tables as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "jump_tables"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("link_dead_code",
                        &self.link_dead_code as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "link_dead_code"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("linker_plugin_lto",
                        &self.linker_plugin_lto as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "linker_plugin_lto"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("llvm_args",
                        &self.llvm_args as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "llvm_args"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("lto",
                        &self.lto as &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "lto"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("metadata",
                        &self.metadata as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "metadata"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_prepopulate_passes",
                        &self.no_prepopulate_passes as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_prepopulate_passes"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_redzone",
                        &self.no_redzone as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_redzone"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("no_vectorize_loops",
                        &self.no_vectorize_loops as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_vectorize_loops"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_vectorize_slp",
                        &self.no_vectorize_slp as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_vectorize_slp"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("opt_level",
                        &self.opt_level as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "opt_level"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("overflow_checks",
                        &self.overflow_checks as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "overflow_checks"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("panic",
                        &self.panic as &dyn dep_tracking::DepTrackingHash).is_some()
                {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "panic"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("passes",
                        &self.passes as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "passes"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("prefer_dynamic",
                        &self.prefer_dynamic as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "prefer_dynamic"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("profile_generate",
                        &self.profile_generate as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "profile_generate"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("profile_sample_use",
                        &self.profile_sample_use as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "profile_sample_use"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("profile_use",
                        &self.profile_use as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "profile_use"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("relocation_model",
                        &self.relocation_model as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "relocation_model"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("relro_level",
                        &self.relro_level as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "relro_level"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("split_debuginfo",
                        &self.split_debuginfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "split_debuginfo"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("symbol_mangling_version",
                        &self.symbol_mangling_version as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "symbol_mangling_version"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("target_cpu",
                        &self.target_cpu as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "target_cpu"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("target_feature",
                        &self.target_feature as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "target_feature"));
                }
            }
        };
        {};
        let mut hasher = StableHasher::new();
        dep_tracking::stable_hash(sub_hashes, &mut hasher, error_format,
            for_crate_hash);
        hasher.finish()
    }
    pub fn gather_target_modifiers(&self, _mods: &mut Vec<TargetModifier>,
        _tmod_vals: &BTreeMap<OptionsTargetModifiers, String>) {
        if self.target_cpu != None {
            tmod_push_impl(OptionsTargetModifiers::CodegenOptions(CodegenOptionsTargetModifiers::TargetCpu),
                _tmod_vals, _mods);
        }
    }
}
pub const CG_OPTIONS: OptionDescrs<CodegenOptions> =
    &[OptionDesc {
                    name: "ar",
                    setter: cgopts::ar,
                    type_desc: desc::parse_ignore,
                    desc: "this option has been removed",
                    removed: None.or(Some(RemovedOption::Err)),
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "code_model",
                    setter: cgopts::code_model,
                    type_desc: desc::parse_code_model,
                    desc: "choose the code model to use (`rustc --print code-models` for details)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "codegen_units",
                    setter: cgopts::codegen_units,
                    type_desc: desc::parse_opt_number,
                    desc: "divide crate into N units to optimize in parallel",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "collapse_macro_debuginfo",
                    setter: cgopts::collapse_macro_debuginfo,
                    type_desc: desc::parse_collapse_macro_debuginfo,
                    desc: "set option to collapse debuginfo for macros",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "control_flow_guard",
                    setter: cgopts::control_flow_guard,
                    type_desc: desc::parse_cfguard,
                    desc: "use Windows Control Flow Guard (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None.or(Some(mitigation_coverage::DeniedPartialMitigationKind::ControlFlowGuard)),
                },
                OptionDesc {
                    name: "debug_assertions",
                    setter: cgopts::debug_assertions,
                    type_desc: desc::parse_opt_bool,
                    desc: "explicitly enable the `cfg(debug_assertions)` directive",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "debuginfo",
                    setter: cgopts::debuginfo,
                    type_desc: desc::parse_debuginfo,
                    desc: "debug info emission level (0-2, none, line-directives-only, \
        line-tables-only, limited, or full; default: 0)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "default_linker_libraries",
                    setter: cgopts::default_linker_libraries,
                    type_desc: desc::parse_bool,
                    desc: "allow the linker to link its default libraries (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dlltool",
                    setter: cgopts::dlltool,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "import library generation tool (ignored except when targeting windows-gnu)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dwarf_version",
                    setter: cgopts::dwarf_version,
                    type_desc: desc::parse_opt_number,
                    desc: "version of DWARF debug information to emit (default: 2 or 4, depending on platform)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "embed_bitcode",
                    setter: cgopts::embed_bitcode,
                    type_desc: desc::parse_bool,
                    desc: "emit bitcode in rlibs (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "extra_filename",
                    setter: cgopts::extra_filename,
                    type_desc: desc::parse_string,
                    desc: "extra data to put in each output filename",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "force_frame_pointers",
                    setter: cgopts::force_frame_pointers,
                    type_desc: desc::parse_frame_pointer,
                    desc: "force use of the frame pointers",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "force_unwind_tables",
                    setter: cgopts::force_unwind_tables,
                    type_desc: desc::parse_opt_bool,
                    desc: "force use of unwind tables",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "help",
                    setter: cgopts::help,
                    type_desc: desc::parse_no_value,
                    desc: "Print codegen options",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "incremental",
                    setter: cgopts::incremental,
                    type_desc: desc::parse_opt_string,
                    desc: "enable incremental compilation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_threshold",
                    setter: cgopts::inline_threshold,
                    type_desc: desc::parse_ignore,
                    desc: "this option has been removed \
        (consider using `-Cllvm-args=--inline-threshold=...`)",
                    removed: None.or(Some(RemovedOption::Err)),
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "instrument_coverage",
                    setter: cgopts::instrument_coverage,
                    type_desc: desc::parse_instrument_coverage,
                    desc: "instrument the generated code to support LLVM source-based code coverage reports \
        (note, the compiler build config must include `profiler = true`); \
        implies `-C symbol-mangling-version=v0`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "jump_tables",
                    setter: cgopts::jump_tables,
                    type_desc: desc::parse_bool,
                    desc: "allow jump table and lookup table generation from switch case lowering (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_arg",
                    setter: cgopts::link_arg,
                    type_desc: desc::parse_string_push,
                    desc: "a single extra argument to append to the linker invocation (can be used several times)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_args",
                    setter: cgopts::link_args,
                    type_desc: desc::parse_list,
                    desc: "extra arguments to append to the linker invocation (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_dead_code",
                    setter: cgopts::link_dead_code,
                    type_desc: desc::parse_opt_bool,
                    desc: "try to generate and link dead code (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_self_contained",
                    setter: cgopts::link_self_contained,
                    type_desc: desc::parse_link_self_contained,
                    desc: "control whether to link Rust provided C objects/libraries or rely \
        on a C toolchain or linker installed in the system",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "linker",
                    setter: cgopts::linker,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "system linker to link outputs with",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "linker_features",
                    setter: cgopts::linker_features,
                    type_desc: desc::parse_linker_features,
                    desc: "a comma-separated list of linker features to enable (+) or disable (-): `lld`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "linker_flavor",
                    setter: cgopts::linker_flavor,
                    type_desc: desc::parse_linker_flavor,
                    desc: "linker flavor",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "linker_plugin_lto",
                    setter: cgopts::linker_plugin_lto,
                    type_desc: desc::parse_linker_plugin_lto,
                    desc: "generate build artifacts that are compatible with linker-based LTO",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_args",
                    setter: cgopts::llvm_args,
                    type_desc: desc::parse_list,
                    desc: "a list of arguments to pass to LLVM (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "lto",
                    setter: cgopts::lto,
                    type_desc: desc::parse_lto,
                    desc: "perform LLVM link-time optimizations",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "metadata",
                    setter: cgopts::metadata,
                    type_desc: desc::parse_list,
                    desc: "metadata to mangle symbol names with",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_prepopulate_passes",
                    setter: cgopts::no_prepopulate_passes,
                    type_desc: desc::parse_no_value,
                    desc: "give an empty list of passes to the pass manager",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_redzone",
                    setter: cgopts::no_redzone,
                    type_desc: desc::parse_opt_bool,
                    desc: "disable the use of the redzone",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_stack_check",
                    setter: cgopts::no_stack_check,
                    type_desc: desc::parse_ignore,
                    desc: "this option has been removed",
                    removed: None.or(Some(RemovedOption::Err)),
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_vectorize_loops",
                    setter: cgopts::no_vectorize_loops,
                    type_desc: desc::parse_no_value,
                    desc: "disable loop vectorization optimization passes",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_vectorize_slp",
                    setter: cgopts::no_vectorize_slp,
                    type_desc: desc::parse_no_value,
                    desc: "disable LLVM's SLP vectorization pass",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "opt_level",
                    setter: cgopts::opt_level,
                    type_desc: desc::parse_string,
                    desc: "optimization level (0-3, s, or z; default: 0)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "overflow_checks",
                    setter: cgopts::overflow_checks,
                    type_desc: desc::parse_opt_bool,
                    desc: "use overflow checks for integer arithmetic",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "panic",
                    setter: cgopts::panic,
                    type_desc: desc::parse_opt_panic_strategy,
                    desc: "panic strategy to compile crate with",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "passes",
                    setter: cgopts::passes,
                    type_desc: desc::parse_list,
                    desc: "a list of extra LLVM passes to run (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "prefer_dynamic",
                    setter: cgopts::prefer_dynamic,
                    type_desc: desc::parse_bool,
                    desc: "prefer dynamic linking to static linking (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "profile_generate",
                    setter: cgopts::profile_generate,
                    type_desc: desc::parse_switch_with_opt_path,
                    desc: "compile the program with profiling instrumentation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "profile_sample_use",
                    setter: cgopts::profile_sample_use,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "use the given `.prof` file for sample-based profile-guided optimization",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "profile_use",
                    setter: cgopts::profile_use,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "use the given `.profdata` file for profile-guided optimization",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "relocation_model",
                    setter: cgopts::relocation_model,
                    type_desc: desc::parse_relocation_model,
                    desc: "control generation of position-independent code (PIC) \
        (`rustc --print relocation-models` for details)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "relro_level",
                    setter: cgopts::relro_level,
                    type_desc: desc::parse_relro_level,
                    desc: "choose which RELRO level to use",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "remark",
                    setter: cgopts::remark,
                    type_desc: desc::parse_passes,
                    desc: "output remarks for these optimization passes (space separated, or \"all\")",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "rpath",
                    setter: cgopts::rpath,
                    type_desc: desc::parse_bool,
                    desc: "set rpath values in libs/exes (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "save_temps",
                    setter: cgopts::save_temps,
                    type_desc: desc::parse_bool,
                    desc: "save all temporary output files during compilation (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "soft_float",
                    setter: cgopts::soft_float,
                    type_desc: desc::parse_ignore,
                    desc: "this option has been removed \
        (use a corresponding *eabi target instead)",
                    removed: None.or(Some(RemovedOption::Err)),
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "split_debuginfo",
                    setter: cgopts::split_debuginfo,
                    type_desc: desc::parse_split_debuginfo,
                    desc: "how to handle split-debuginfo, a platform-specific option",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "strip",
                    setter: cgopts::strip,
                    type_desc: desc::parse_strip,
                    desc: "tell the linker which information to strip (`none` (default), `debuginfo` or `symbols`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "symbol_mangling_version",
                    setter: cgopts::symbol_mangling_version,
                    type_desc: desc::parse_symbol_mangling_version,
                    desc: "which mangling version to use for symbol names ('legacy', 'v0' (default), or 'hashed')",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "target_cpu",
                    setter: cgopts::target_cpu,
                    type_desc: desc::parse_opt_string,
                    desc: "select target processor (`rustc --print target-cpus` for details) \
        The resulting binary must only be executed on CPUs that have all the features \
        of the given CPU.",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::CodegenOptions(CodegenOptionsTargetModifiers::TargetCpu))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "target_feature",
                    setter: cgopts::target_feature,
                    type_desc: desc::parse_target_feature,
                    desc: "target-specific attributes (`rustc --print target-features` for details). \
        The resulting binary must only be executed on CPUs that have all the given features.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "unsafe_allow_abi_mismatch",
                    setter: cgopts::unsafe_allow_abi_mismatch,
                    type_desc: desc::parse_comma_list,
                    desc: "Allow incompatible target modifiers in dependency crates (comma separated list)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                }];
mod cgopts {
    pub(super) fn ar(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_ignore(&mut cg.ar, v)
    }
    pub(super) fn code_model(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_code_model(&mut cg.code_model, v)
    }
    pub(super) fn codegen_units(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.codegen_units, v)
    }
    pub(super) fn collapse_macro_debuginfo(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_collapse_macro_debuginfo(&mut cg.collapse_macro_debuginfo,
            v)
    }
    pub(super) fn control_flow_guard(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_cfguard(&mut cg.control_flow_guard, v)
    }
    pub(super) fn debug_assertions(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.debug_assertions, v)
    }
    pub(super) fn debuginfo(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_debuginfo(&mut cg.debuginfo, v)
    }
    pub(super) fn default_linker_libraries(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.default_linker_libraries, v)
    }
    pub(super) fn dlltool(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.dlltool, v)
    }
    pub(super) fn dwarf_version(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.dwarf_version, v)
    }
    pub(super) fn embed_bitcode(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.embed_bitcode, v)
    }
    pub(super) fn extra_filename(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.extra_filename, v)
    }
    pub(super) fn force_frame_pointers(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_frame_pointer(&mut cg.force_frame_pointers, v)
    }
    pub(super) fn force_unwind_tables(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.force_unwind_tables, v)
    }
    pub(super) fn help(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.help, v)
    }
    pub(super) fn incremental(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.incremental, v)
    }
    pub(super) fn inline_threshold(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_ignore(&mut cg.inline_threshold, v)
    }
    pub(super) fn instrument_coverage(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_instrument_coverage(&mut cg.instrument_coverage,
            v)
    }
    pub(super) fn jump_tables(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.jump_tables, v)
    }
    pub(super) fn link_arg(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string_push(&mut cg.link_args, v)
    }
    pub(super) fn link_args(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.link_args, v)
    }
    pub(super) fn link_dead_code(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.link_dead_code, v)
    }
    pub(super) fn link_self_contained(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_link_self_contained(&mut cg.link_self_contained,
            v)
    }
    pub(super) fn linker(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.linker, v)
    }
    pub(super) fn linker_features(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_linker_features(&mut cg.linker_features, v)
    }
    pub(super) fn linker_flavor(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_linker_flavor(&mut cg.linker_flavor, v)
    }
    pub(super) fn linker_plugin_lto(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_linker_plugin_lto(&mut cg.linker_plugin_lto, v)
    }
    pub(super) fn llvm_args(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.llvm_args, v)
    }
    pub(super) fn lto(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_lto(&mut cg.lto, v)
    }
    pub(super) fn metadata(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.metadata, v)
    }
    pub(super) fn no_prepopulate_passes(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_prepopulate_passes, v)
    }
    pub(super) fn no_redzone(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.no_redzone, v)
    }
    pub(super) fn no_stack_check(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_ignore(&mut cg.no_stack_check, v)
    }
    pub(super) fn no_vectorize_loops(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_vectorize_loops, v)
    }
    pub(super) fn no_vectorize_slp(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_vectorize_slp, v)
    }
    pub(super) fn opt_level(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.opt_level, v)
    }
    pub(super) fn overflow_checks(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.overflow_checks, v)
    }
    pub(super) fn panic(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_panic_strategy(&mut cg.panic, v)
    }
    pub(super) fn passes(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.passes, v)
    }
    pub(super) fn prefer_dynamic(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.prefer_dynamic, v)
    }
    pub(super) fn profile_generate(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_switch_with_opt_path(&mut cg.profile_generate, v)
    }
    pub(super) fn profile_sample_use(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.profile_sample_use, v)
    }
    pub(super) fn profile_use(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.profile_use, v)
    }
    pub(super) fn relocation_model(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_relocation_model(&mut cg.relocation_model, v)
    }
    pub(super) fn relro_level(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_relro_level(&mut cg.relro_level, v)
    }
    pub(super) fn remark(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_passes(&mut cg.remark, v)
    }
    pub(super) fn rpath(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.rpath, v)
    }
    pub(super) fn save_temps(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.save_temps, v)
    }
    pub(super) fn soft_float(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_ignore(&mut cg.soft_float, v)
    }
    pub(super) fn split_debuginfo(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_split_debuginfo(&mut cg.split_debuginfo, v)
    }
    pub(super) fn strip(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_strip(&mut cg.strip, v)
    }
    pub(super) fn symbol_mangling_version(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_symbol_mangling_version(&mut cg.symbol_mangling_version,
            v)
    }
    pub(super) fn target_cpu(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.target_cpu, v)
    }
    pub(super) fn target_feature(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_target_feature(&mut cg.target_feature, v)
    }
    pub(super) fn unsafe_allow_abi_mismatch(cg: &mut super::CodegenOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_comma_list(&mut cg.unsafe_allow_abi_mismatch, v)
    }
}options! {
2200    CodegenOptions, CodegenOptionsTargetModifiers, CG_OPTIONS, cgopts, "C", "codegen",
2201
2202    // If you add a new option, please update:
2203    // - compiler/rustc_interface/src/tests.rs
2204    // - src/doc/rustc/src/codegen-options/index.md
2205
2206    // tidy-alphabetical-start
2207    ar: () = ((), parse_ignore, [UNTRACKED],
2208        "this option has been removed",
2209        removed: Err),
2210    #[rustc_lint_opt_deny_field_access("use `Session::code_model` instead of this field")]
2211    code_model: Option<CodeModel> = (None, parse_code_model, [TRACKED],
2212        "choose the code model to use (`rustc --print code-models` for details)"),
2213    codegen_units: Option<usize> = (None, parse_opt_number, [UNTRACKED],
2214        "divide crate into N units to optimize in parallel"),
2215    collapse_macro_debuginfo: CollapseMacroDebuginfo = (CollapseMacroDebuginfo::Unspecified,
2216        parse_collapse_macro_debuginfo, [TRACKED],
2217        "set option to collapse debuginfo for macros"),
2218    control_flow_guard: CFGuard = (CFGuard::Disabled, parse_cfguard, [TRACKED] { MITIGATION: ControlFlowGuard },
2219        "use Windows Control Flow Guard (default: no)"),
2220    debug_assertions: Option<bool> = (None, parse_opt_bool, [TRACKED],
2221        "explicitly enable the `cfg(debug_assertions)` directive"),
2222    debuginfo: DebugInfo = (DebugInfo::None, parse_debuginfo, [TRACKED],
2223        "debug info emission level (0-2, none, line-directives-only, \
2224        line-tables-only, limited, or full; default: 0)"),
2225    default_linker_libraries: bool = (false, parse_bool, [UNTRACKED],
2226        "allow the linker to link its default libraries (default: no)"),
2227    dlltool: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
2228        "import library generation tool (ignored except when targeting windows-gnu)"),
2229    #[rustc_lint_opt_deny_field_access("use `Session::dwarf_version` instead of this field")]
2230    dwarf_version: Option<u32> = (None, parse_opt_number, [TRACKED],
2231        "version of DWARF debug information to emit (default: 2 or 4, depending on platform)"),
2232    embed_bitcode: bool = (true, parse_bool, [TRACKED],
2233        "emit bitcode in rlibs (default: yes)"),
2234    extra_filename: String = (String::new(), parse_string, [UNTRACKED],
2235        "extra data to put in each output filename"),
2236    force_frame_pointers: FramePointer = (FramePointer::MayOmit, parse_frame_pointer, [TRACKED],
2237        "force use of the frame pointers"),
2238    #[rustc_lint_opt_deny_field_access("use `Session::must_emit_unwind_tables` instead of this field")]
2239    force_unwind_tables: Option<bool> = (None, parse_opt_bool, [TRACKED],
2240        "force use of unwind tables"),
2241    help: bool = (false, parse_no_value, [UNTRACKED], "Print codegen options"),
2242    incremental: Option<String> = (None, parse_opt_string, [UNTRACKED],
2243        "enable incremental compilation"),
2244    inline_threshold: () = ((), parse_ignore, [UNTRACKED],
2245        "this option has been removed \
2246        (consider using `-Cllvm-args=--inline-threshold=...`)",
2247        removed: Err),
2248    #[rustc_lint_opt_deny_field_access("use `Session::instrument_coverage` instead of this field")]
2249    instrument_coverage: InstrumentCoverage = (InstrumentCoverage::No, parse_instrument_coverage, [TRACKED],
2250        "instrument the generated code to support LLVM source-based code coverage reports \
2251        (note, the compiler build config must include `profiler = true`); \
2252        implies `-C symbol-mangling-version=v0`"),
2253    jump_tables: bool = (true, parse_bool, [TRACKED],
2254        "allow jump table and lookup table generation from switch case lowering (default: yes)"),
2255    link_arg: (/* redirected to link_args */) = ((), parse_string_push, [UNTRACKED],
2256        "a single extra argument to append to the linker invocation (can be used several times)"),
2257    link_args: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
2258        "extra arguments to append to the linker invocation (space separated)"),
2259    #[rustc_lint_opt_deny_field_access("use `Session::link_dead_code` instead of this field")]
2260    link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
2261        "try to generate and link dead code (default: no)"),
2262    link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
2263        "control whether to link Rust provided C objects/libraries or rely \
2264        on a C toolchain or linker installed in the system"),
2265    linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
2266        "system linker to link outputs with"),
2267    linker_features: LinkerFeaturesCli = (LinkerFeaturesCli::default(), parse_linker_features, [UNTRACKED],
2268        "a comma-separated list of linker features to enable (+) or disable (-): `lld`"),
2269    linker_flavor: Option<LinkerFlavorCli> = (None, parse_linker_flavor, [UNTRACKED],
2270        "linker flavor"),
2271    linker_plugin_lto: LinkerPluginLto = (LinkerPluginLto::Disabled,
2272        parse_linker_plugin_lto, [TRACKED],
2273        "generate build artifacts that are compatible with linker-based LTO"),
2274    llvm_args: Vec<String> = (Vec::new(), parse_list, [TRACKED],
2275        "a list of arguments to pass to LLVM (space separated)"),
2276    #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
2277    lto: LtoCli = (LtoCli::Unspecified, parse_lto, [TRACKED],
2278        "perform LLVM link-time optimizations"),
2279    metadata: Vec<String> = (Vec::new(), parse_list, [TRACKED],
2280        "metadata to mangle symbol names with"),
2281    no_prepopulate_passes: bool = (false, parse_no_value, [TRACKED],
2282        "give an empty list of passes to the pass manager"),
2283    no_redzone: Option<bool> = (None, parse_opt_bool, [TRACKED],
2284        "disable the use of the redzone"),
2285    no_stack_check: () = ((), parse_ignore, [UNTRACKED],
2286        "this option has been removed",
2287        removed: Err),
2288    no_vectorize_loops: bool = (false, parse_no_value, [TRACKED],
2289        "disable loop vectorization optimization passes"),
2290    no_vectorize_slp: bool = (false, parse_no_value, [TRACKED],
2291        "disable LLVM's SLP vectorization pass"),
2292    opt_level: String = ("0".to_string(), parse_string, [TRACKED],
2293        "optimization level (0-3, s, or z; default: 0)"),
2294    #[rustc_lint_opt_deny_field_access("use `Session::overflow_checks` instead of this field")]
2295    overflow_checks: Option<bool> = (None, parse_opt_bool, [TRACKED],
2296        "use overflow checks for integer arithmetic"),
2297    #[rustc_lint_opt_deny_field_access("use `Session::panic_strategy` instead of this field")]
2298    panic: Option<PanicStrategy> = (None, parse_opt_panic_strategy, [TRACKED],
2299        "panic strategy to compile crate with"),
2300    passes: Vec<String> = (Vec::new(), parse_list, [TRACKED],
2301        "a list of extra LLVM passes to run (space separated)"),
2302    prefer_dynamic: bool = (false, parse_bool, [TRACKED],
2303        "prefer dynamic linking to static linking (default: no)"),
2304    profile_generate: SwitchWithOptPath = (SwitchWithOptPath::Disabled,
2305        parse_switch_with_opt_path, [TRACKED],
2306        "compile the program with profiling instrumentation"),
2307    profile_sample_use: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
2308        "use the given `.prof` file for sample-based profile-guided optimization"),
2309    profile_use: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
2310        "use the given `.profdata` file for profile-guided optimization"),
2311    #[rustc_lint_opt_deny_field_access("use `Session::relocation_model` instead of this field")]
2312    relocation_model: Option<RelocModel> = (None, parse_relocation_model, [TRACKED],
2313        "control generation of position-independent code (PIC) \
2314        (`rustc --print relocation-models` for details)"),
2315    relro_level: Option<RelroLevel> = (None, parse_relro_level, [TRACKED],
2316        "choose which RELRO level to use"),
2317    remark: Passes = (Passes::Some(Vec::new()), parse_passes, [UNTRACKED],
2318        "output remarks for these optimization passes (space separated, or \"all\")"),
2319    rpath: bool = (false, parse_bool, [UNTRACKED],
2320        "set rpath values in libs/exes (default: no)"),
2321    save_temps: bool = (false, parse_bool, [UNTRACKED],
2322        "save all temporary output files during compilation (default: no)"),
2323    soft_float: () = ((), parse_ignore, [UNTRACKED],
2324        "this option has been removed \
2325        (use a corresponding *eabi target instead)",
2326        removed: Err),
2327    #[rustc_lint_opt_deny_field_access("use `Session::split_debuginfo` instead of this field")]
2328    split_debuginfo: Option<SplitDebuginfo> = (None, parse_split_debuginfo, [TRACKED],
2329        "how to handle split-debuginfo, a platform-specific option"),
2330    strip: Strip = (Strip::None, parse_strip, [UNTRACKED],
2331        "tell the linker which information to strip (`none` (default), `debuginfo` or `symbols`)"),
2332    symbol_mangling_version: Option<SymbolManglingVersion> = (None,
2333        parse_symbol_mangling_version, [TRACKED],
2334        "which mangling version to use for symbol names ('legacy', 'v0' (default), or 'hashed')"),
2335    target_cpu: Option<String> = (None, parse_opt_string, [TRACKED] { TARGET_MODIFIER: TargetCpu },
2336        "select target processor (`rustc --print target-cpus` for details) \
2337        The resulting binary must only be executed on CPUs that have all the features \
2338        of the given CPU."),
2339    target_feature: String = (String::new(), parse_target_feature, [TRACKED],
2340        "target-specific attributes (`rustc --print target-features` for details). \
2341        The resulting binary must only be executed on CPUs that have all the given features."),
2342    unsafe_allow_abi_mismatch: Vec<String> = (Vec::new(), parse_comma_list, [UNTRACKED],
2343        "Allow incompatible target modifiers in dependency crates (comma separated list)"),
2344    // tidy-alphabetical-end
2345
2346    // If you add a new option, please update:
2347    // - compiler/rustc_interface/src/tests.rs
2348    // - src/doc/rustc/src/codegen-options/index.md
2349}
2350
2351const POLONIUS_HELP: &str = match Polonius::DEFAULT {
2352    Polonius::Off => "enable polonius-based borrow-checker (default: no)",
2353    Polonius::Next => "enable polonius-based borrow-checker (default: next)",
2354    Polonius::Legacy => {
    ::core::panicking::panic_fmt(format_args!("Polonius::Legacy is not a valid default value"));
}panic!("Polonius::Legacy is not a valid default value"),
2355};
2356
2357#[rustc_lint_opt_ty]
pub struct UnstableOptions {
    pub allow_features: Option<Vec<String>>,
    pub allow_partial_mitigations: (),
    pub always_encode_mir: bool,
    pub annotate_moves: AnnotateMoves,
    pub assert_incr_state: Option<IncrementalStateAssertion>,
    pub assume_incomplete_release: bool,
    pub assumptions_on_binders: bool,
    pub autodiff: Vec<crate::config::AutoDiff>,
    pub autodiff_post_passes: Option<String>,
    #[rustc_lint_opt_deny_field_access("use `Session::binary_dep_depinfo` instead of this field")]
    pub binary_dep_depinfo: bool,
    pub box_noalias: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::branch_protection` instead of this field")]
    pub branch_protection: Option<BranchProtection>,
    pub build_sdylib_interface: bool,
    pub cache_proc_macros: bool,
    pub cf_protection: CFProtection,
    pub check_cfg_all_expected: bool,
    pub checksum_hash_algorithm: Option<SourceFileHashAlgorithm>,
    pub codegen_backend: Option<String>,
    pub codegen_emit_retag: Option<CodegenRetagOptions>,
    pub codegen_source_order: bool,
    pub contract_checks: Option<bool>,
    pub coverage_options: CoverageOptions,
    pub crate_attr: Vec<String>,
    pub cross_crate_inline_threshold: InliningThreshold,
    pub debug_info_type_line_numbers: bool,
    pub debuginfo_compression: DebugInfoCompression,
    pub debuginfo_for_profiling: bool,
    pub deduplicate_diagnostics: bool,
    pub default_visibility: Option<SymbolVisibility>,
    pub deny_partial_mitigations: (),
    pub dep_info_omit_d_target: bool,
    pub direct_access_external_data: Option<bool>,
    pub disable_fast_paths: bool,
    pub disable_incr_comp_backend_caching: bool,
    pub disable_param_env_normalization_hack: bool,
    pub dual_proc_macros: bool,
    pub dump_dep_graph: bool,
    pub dump_mir: Option<String>,
    pub dump_mir_dataflow: bool,
    pub dump_mir_dir: String,
    pub dump_mir_exclude_alloc_bytes: bool,
    pub dump_mir_exclude_pass_number: bool,
    pub dump_mir_graphviz: bool,
    pub dump_mono_stats: SwitchWithOptPath,
    pub dump_mono_stats_format: DumpMonoStatsFormat,
    #[rustc_lint_opt_deny_field_access("use `Session::dwarf_version` instead of this field")]
    pub dwarf_version: Option<u32>,
    pub dylib_lto: bool,
    pub eagerly_emit_delayed_bugs: bool,
    pub ehcont_guard: bool,
    pub embed_metadata: bool,
    pub embed_source: bool,
    pub emit_stack_sizes: bool,
    pub enforce_type_length_limit: bool,
    pub experimental_default_bounds: bool,
    pub export_executable_symbols: bool,
    pub external_clangrt: bool,
    pub extra_const_ub_checks: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::fewer_names` instead of this field")]
    pub fewer_names: Option<bool>,
    pub fixed_x18: bool,
    pub flatten_format_args: bool,
    pub fmt_debug: FmtDebug,
    pub force_intrinsic_fallback: bool,
    pub force_unstable_if_unmarked: bool,
    pub function_return: FunctionReturn,
    pub function_sections: Option<bool>,
    pub future_incompat_test: bool,
    pub graphviz_dark_mode: bool,
    pub graphviz_font: String,
    pub has_thread_local: Option<bool>,
    pub help: bool,
    pub higher_ranked_assumptions: bool,
    pub hint_mostly_unused: bool,
    pub hint_msrv: Option<RustcVersion>,
    pub human_readable_cgu_names: bool,
    pub identify_regions: bool,
    pub ignore_directory_in_diagnostics_source_blocks: Vec<String>,
    pub implicit_sysroot_deps: bool,
    pub incremental_ignore_spans: bool,
    pub incremental_info: bool,
    pub incremental_verify_ich: bool,
    pub indirect_branch_cs_prefix: bool,
    pub inline_llvm: bool,
    pub inline_mir: Option<bool>,
    pub inline_mir_forwarder_threshold: Option<usize>,
    pub inline_mir_hint_threshold: Option<usize>,
    pub inline_mir_preserve_debug: Option<bool>,
    pub inline_mir_threshold: Option<usize>,
    pub input_stats: bool,
    pub instrument_mcount: InstrumentMcount,
    pub instrument_xray: Option<InstrumentXRay>,
    pub internal_testing_features: bool,
    pub large_data_threshold: Option<u64>,
    pub layout_seed: Option<u64>,
    pub link_directives: bool,
    pub link_native_libraries: bool,
    pub link_only: bool,
    pub lint_llvm_ir: bool,
    pub lint_mir: bool,
    pub llvm_module_flag: Vec<(String, u32, String)>,
    pub llvm_plugins: Vec<String>,
    pub llvm_target_feature: String,
    pub llvm_time_trace: bool,
    pub llvm_writable: bool,
    pub location_detail: LocationDetail,
    pub ls: Vec<String>,
    pub macro_backtrace: bool,
    pub macro_stats: bool,
    pub maximal_hir_to_mir_coverage: bool,
    pub merge_functions: Option<MergeFunctions>,
    pub meta_stats: bool,
    pub metrics_dir: Option<PathBuf>,
    pub min_function_alignment: Option<Align>,
    pub min_recursion_limit: Option<usize>,
    pub mir_enable_passes: Vec<(String, bool)>,
    pub mir_include_spans: MirIncludeSpans,
    pub mir_opt_bisect_limit: Option<usize>,
    #[rustc_lint_opt_deny_field_access("use `Session::mir_opt_level` instead of this field")]
    pub mir_opt_level: Option<usize>,
    pub mir_preserve_ub: bool,
    pub mir_strip_debuginfo: MirStripDebugInfo,
    pub move_size_limit: Option<usize>,
    pub namespaced_crates: bool,
    pub next_solver: NextSolverConfig,
    pub nll_facts: bool,
    pub nll_facts_dir: String,
    pub no_analysis: bool,
    pub no_codegen: bool,
    pub no_generate_arange_section: bool,
    pub no_implied_bounds_compat: bool,
    pub no_leak_check: bool,
    pub no_link: bool,
    pub no_parallel_backend: bool,
    pub no_profiler_runtime: bool,
    pub no_steal_thir: bool,
    pub no_trait_vptr: bool,
    pub no_unique_section_names: bool,
    pub normalize_docs: bool,
    pub offload: Vec<crate::config::Offload>,
    pub on_broken_pipe: OnBrokenPipe,
    pub osx_rpath_install_name: bool,
    pub packed_bundled_libs: bool,
    pub packed_stack: bool,
    pub panic_abort_tests: bool,
    pub panic_in_drop: PanicStrategy,
    pub parse_crate_root_only: bool,
    pub patchable_function_entry: PatchableFunctionEntry,
    pub plt: Option<bool>,
    pub pointer_authentication: Vec<(PointerAuthOption, bool)>,
    pub polonius: Polonius,
    pub pre_link_arg: (),
    pub pre_link_args: Vec<String>,
    pub precise_enum_drop_elaboration: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::print_codegen_stats` instead of this field")]
    pub print_codegen_stats: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::print_llvm_stats_json` instead of this field")]
    pub print_codegen_stats_json: Option<String>,
    pub print_llvm_passes: bool,
    pub print_mono_items: bool,
    pub print_type_sizes: bool,
    pub proc_macro_backtrace: bool,
    pub proc_macro_execution_strategy: ProcMacroExecutionStrategy,
    pub profile_closures: bool,
    pub profiler_runtime: String,
    pub query_dep_graph: bool,
    pub randomize_layout: bool,
    pub reg_struct_return: bool,
    pub regparm: Option<u32>,
    pub relax_elf_relocations: Option<bool>,
    pub remap_cwd_prefix: Option<PathBuf>,
    pub remark_dir: Option<PathBuf>,
    pub renormalize_rigid_aliases: bool,
    pub retpoline: bool,
    pub retpoline_external_thunk: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::sanitizers()` instead of this field")]
    pub sanitizer: SanitizerSet,
    pub sanitizer_ignorelist: Vec<String>,
    pub sanitizer_cfi_canonical_jump_tables: Option<bool>,
    pub sanitizer_cfi_generalize_pointers: Option<bool>,
    pub sanitizer_cfi_normalize_integers: Option<bool>,
    pub sanitizer_cfi_diag: Option<bool>,
    pub sanitizer_cfi_recover: Option<bool>,
    pub sanitizer_dataflow_abilist: Vec<String>,
    pub sanitizer_kcfi_arity: Option<bool>,
    pub sanitizer_memory_track_origins: usize,
    pub sanitizer_recover: SanitizerSet,
    pub self_profile: SwitchWithOptPath,
    pub self_profile_counter: String,
    #[doc =
    r" keep this in sync with the event filter names and defaults in rustc_data_structures/src/profiling.rs"]
    pub self_profile_events: Option<Vec<String>>,
    pub share_generics: Option<bool>,
    pub shell_argfiles: bool,
    pub simulate_remapped_rust_src_base: Option<PathBuf>,
    pub small_data_threshold: Option<usize>,
    pub span_debug: bool,
    #[doc = r" o/w tests have closure@path"]
    pub span_free_formats: bool,
    pub split_dwarf_inlining: bool,
    pub split_dwarf_kind: SplitDwarfKind,
    pub split_dwarf_out_dir: Option<PathBuf>,
    pub split_lto_unit: Option<bool>,
    pub src_hash_algorithm: Option<SourceFileHashAlgorithm>,
    #[rustc_lint_opt_deny_field_access("use `Session::stack_protector` instead of this field")]
    pub stack_protector: StackProtector,
    pub staticlib_allow_rdylib_deps: bool,
    pub staticlib_hide_internal_symbols: bool,
    pub staticlib_rename_internal_symbols: bool,
    pub staticlib_prefer_dynamic: bool,
    pub strict_init_checks: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::teach` instead of this field")]
    pub teach: bool,
    pub temps_dir: Option<String>,
    pub terminal_urls: TerminalUrl,
    #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
    pub thinlto: Option<bool>,
    pub threads: Option<String>,
    pub time_llvm_passes: bool,
    pub time_passes: bool,
    pub time_passes_format: TimePassesFormat,
    pub tiny_const_eval_limit: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::tls_model` instead of this field")]
    pub tls_model: Option<TlsModel>,
    pub trace_macros: bool,
    pub track_diagnostics: bool,
    pub translate_remapped_path_to_local_path: bool,
    pub trap_unreachable: Option<bool>,
    pub treat_err_as_bug: Option<NonZero<usize>>,
    pub trim_diagnostic_paths: bool,
    pub tune_cpu: Option<String>,
    #[rustc_lint_opt_deny_field_access("use `TyCtxt::use_typing_mode_post_typeck` instead of this field")]
    pub typing_mode_post_typeck_until_borrowck: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::ub_checks` instead of this field")]
    pub ub_checks: Option<bool>,
    pub ui_testing: bool,
    pub uninit_const_chunk_threshold: usize,
    pub unleash_the_miri_inside_of_you: bool,
    pub unpretty: Option<String>,
    pub unsound_mir_opts: bool,
    #[doc =
    r" This name is kind of confusing: Most unstable options enable something themselves, while"]
    #[doc = r#" this just allows "normal" options to be feature-gated."#]
    #[doc = r""]
    #[doc =
    r" The main check for `-Zunstable-options` takes place separately from the"]
    #[doc =
    r" usual parsing of `-Z` options (see [`crate::config::nightly_options`]),"]
    #[doc =
    r" so this boolean value is mostly used for enabling unstable _values_ of"]
    #[doc =
    r" stable options. That separate check doesn't handle boolean values, so"]
    #[doc = r" to avoid an inconsistent state we also forbid them here."]
    #[rustc_lint_opt_deny_field_access("use `Session::unstable_options` instead of this field")]
    pub unstable_options: bool,
    pub use_ctors_section: Option<bool>,
    pub use_sync_unwind: Option<bool>,
    pub validate_mir: bool,
    pub verbose_asm: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::verbose_internals` instead of this field")]
    pub verbose_internals: bool,
    #[rustc_lint_opt_deny_field_access("use `Session::verify_llvm_ir` instead of this field")]
    pub verify_llvm_ir: bool,
    pub virtual_function_elimination: bool,
    pub wasi_exec_model: Option<WasiExecModel>,
    pub wasm_c_abi: (),
    pub wasm_proc_macros: bool,
    pub write_long_types_to_disk: bool,
}
#[automatically_derived]
impl ::core::clone::Clone for UnstableOptions {
    #[inline]
    fn clone(&self) -> Self {
        Self {
            allow_features: ::core::clone::Clone::clone(&self.allow_features),
            allow_partial_mitigations: ::core::clone::Clone::clone(&self.allow_partial_mitigations),
            always_encode_mir: ::core::clone::Clone::clone(&self.always_encode_mir),
            annotate_moves: ::core::clone::Clone::clone(&self.annotate_moves),
            assert_incr_state: ::core::clone::Clone::clone(&self.assert_incr_state),
            assume_incomplete_release: ::core::clone::Clone::clone(&self.assume_incomplete_release),
            assumptions_on_binders: ::core::clone::Clone::clone(&self.assumptions_on_binders),
            autodiff: ::core::clone::Clone::clone(&self.autodiff),
            autodiff_post_passes: ::core::clone::Clone::clone(&self.autodiff_post_passes),
            binary_dep_depinfo: ::core::clone::Clone::clone(&self.binary_dep_depinfo),
            box_noalias: ::core::clone::Clone::clone(&self.box_noalias),
            branch_protection: ::core::clone::Clone::clone(&self.branch_protection),
            build_sdylib_interface: ::core::clone::Clone::clone(&self.build_sdylib_interface),
            cache_proc_macros: ::core::clone::Clone::clone(&self.cache_proc_macros),
            cf_protection: ::core::clone::Clone::clone(&self.cf_protection),
            check_cfg_all_expected: ::core::clone::Clone::clone(&self.check_cfg_all_expected),
            checksum_hash_algorithm: ::core::clone::Clone::clone(&self.checksum_hash_algorithm),
            codegen_backend: ::core::clone::Clone::clone(&self.codegen_backend),
            codegen_emit_retag: ::core::clone::Clone::clone(&self.codegen_emit_retag),
            codegen_source_order: ::core::clone::Clone::clone(&self.codegen_source_order),
            contract_checks: ::core::clone::Clone::clone(&self.contract_checks),
            coverage_options: ::core::clone::Clone::clone(&self.coverage_options),
            crate_attr: ::core::clone::Clone::clone(&self.crate_attr),
            cross_crate_inline_threshold: ::core::clone::Clone::clone(&self.cross_crate_inline_threshold),
            debug_info_type_line_numbers: ::core::clone::Clone::clone(&self.debug_info_type_line_numbers),
            debuginfo_compression: ::core::clone::Clone::clone(&self.debuginfo_compression),
            debuginfo_for_profiling: ::core::clone::Clone::clone(&self.debuginfo_for_profiling),
            deduplicate_diagnostics: ::core::clone::Clone::clone(&self.deduplicate_diagnostics),
            default_visibility: ::core::clone::Clone::clone(&self.default_visibility),
            deny_partial_mitigations: ::core::clone::Clone::clone(&self.deny_partial_mitigations),
            dep_info_omit_d_target: ::core::clone::Clone::clone(&self.dep_info_omit_d_target),
            direct_access_external_data: ::core::clone::Clone::clone(&self.direct_access_external_data),
            disable_fast_paths: ::core::clone::Clone::clone(&self.disable_fast_paths),
            disable_incr_comp_backend_caching: ::core::clone::Clone::clone(&self.disable_incr_comp_backend_caching),
            disable_param_env_normalization_hack: ::core::clone::Clone::clone(&self.disable_param_env_normalization_hack),
            dual_proc_macros: ::core::clone::Clone::clone(&self.dual_proc_macros),
            dump_dep_graph: ::core::clone::Clone::clone(&self.dump_dep_graph),
            dump_mir: ::core::clone::Clone::clone(&self.dump_mir),
            dump_mir_dataflow: ::core::clone::Clone::clone(&self.dump_mir_dataflow),
            dump_mir_dir: ::core::clone::Clone::clone(&self.dump_mir_dir),
            dump_mir_exclude_alloc_bytes: ::core::clone::Clone::clone(&self.dump_mir_exclude_alloc_bytes),
            dump_mir_exclude_pass_number: ::core::clone::Clone::clone(&self.dump_mir_exclude_pass_number),
            dump_mir_graphviz: ::core::clone::Clone::clone(&self.dump_mir_graphviz),
            dump_mono_stats: ::core::clone::Clone::clone(&self.dump_mono_stats),
            dump_mono_stats_format: ::core::clone::Clone::clone(&self.dump_mono_stats_format),
            dwarf_version: ::core::clone::Clone::clone(&self.dwarf_version),
            dylib_lto: ::core::clone::Clone::clone(&self.dylib_lto),
            eagerly_emit_delayed_bugs: ::core::clone::Clone::clone(&self.eagerly_emit_delayed_bugs),
            ehcont_guard: ::core::clone::Clone::clone(&self.ehcont_guard),
            embed_metadata: ::core::clone::Clone::clone(&self.embed_metadata),
            embed_source: ::core::clone::Clone::clone(&self.embed_source),
            emit_stack_sizes: ::core::clone::Clone::clone(&self.emit_stack_sizes),
            enforce_type_length_limit: ::core::clone::Clone::clone(&self.enforce_type_length_limit),
            experimental_default_bounds: ::core::clone::Clone::clone(&self.experimental_default_bounds),
            export_executable_symbols: ::core::clone::Clone::clone(&self.export_executable_symbols),
            external_clangrt: ::core::clone::Clone::clone(&self.external_clangrt),
            extra_const_ub_checks: ::core::clone::Clone::clone(&self.extra_const_ub_checks),
            fewer_names: ::core::clone::Clone::clone(&self.fewer_names),
            fixed_x18: ::core::clone::Clone::clone(&self.fixed_x18),
            flatten_format_args: ::core::clone::Clone::clone(&self.flatten_format_args),
            fmt_debug: ::core::clone::Clone::clone(&self.fmt_debug),
            force_intrinsic_fallback: ::core::clone::Clone::clone(&self.force_intrinsic_fallback),
            force_unstable_if_unmarked: ::core::clone::Clone::clone(&self.force_unstable_if_unmarked),
            function_return: ::core::clone::Clone::clone(&self.function_return),
            function_sections: ::core::clone::Clone::clone(&self.function_sections),
            future_incompat_test: ::core::clone::Clone::clone(&self.future_incompat_test),
            graphviz_dark_mode: ::core::clone::Clone::clone(&self.graphviz_dark_mode),
            graphviz_font: ::core::clone::Clone::clone(&self.graphviz_font),
            has_thread_local: ::core::clone::Clone::clone(&self.has_thread_local),
            help: ::core::clone::Clone::clone(&self.help),
            higher_ranked_assumptions: ::core::clone::Clone::clone(&self.higher_ranked_assumptions),
            hint_mostly_unused: ::core::clone::Clone::clone(&self.hint_mostly_unused),
            hint_msrv: ::core::clone::Clone::clone(&self.hint_msrv),
            human_readable_cgu_names: ::core::clone::Clone::clone(&self.human_readable_cgu_names),
            identify_regions: ::core::clone::Clone::clone(&self.identify_regions),
            ignore_directory_in_diagnostics_source_blocks: ::core::clone::Clone::clone(&self.ignore_directory_in_diagnostics_source_blocks),
            implicit_sysroot_deps: ::core::clone::Clone::clone(&self.implicit_sysroot_deps),
            incremental_ignore_spans: ::core::clone::Clone::clone(&self.incremental_ignore_spans),
            incremental_info: ::core::clone::Clone::clone(&self.incremental_info),
            incremental_verify_ich: ::core::clone::Clone::clone(&self.incremental_verify_ich),
            indirect_branch_cs_prefix: ::core::clone::Clone::clone(&self.indirect_branch_cs_prefix),
            inline_llvm: ::core::clone::Clone::clone(&self.inline_llvm),
            inline_mir: ::core::clone::Clone::clone(&self.inline_mir),
            inline_mir_forwarder_threshold: ::core::clone::Clone::clone(&self.inline_mir_forwarder_threshold),
            inline_mir_hint_threshold: ::core::clone::Clone::clone(&self.inline_mir_hint_threshold),
            inline_mir_preserve_debug: ::core::clone::Clone::clone(&self.inline_mir_preserve_debug),
            inline_mir_threshold: ::core::clone::Clone::clone(&self.inline_mir_threshold),
            input_stats: ::core::clone::Clone::clone(&self.input_stats),
            instrument_mcount: ::core::clone::Clone::clone(&self.instrument_mcount),
            instrument_xray: ::core::clone::Clone::clone(&self.instrument_xray),
            internal_testing_features: ::core::clone::Clone::clone(&self.internal_testing_features),
            large_data_threshold: ::core::clone::Clone::clone(&self.large_data_threshold),
            layout_seed: ::core::clone::Clone::clone(&self.layout_seed),
            link_directives: ::core::clone::Clone::clone(&self.link_directives),
            link_native_libraries: ::core::clone::Clone::clone(&self.link_native_libraries),
            link_only: ::core::clone::Clone::clone(&self.link_only),
            lint_llvm_ir: ::core::clone::Clone::clone(&self.lint_llvm_ir),
            lint_mir: ::core::clone::Clone::clone(&self.lint_mir),
            llvm_module_flag: ::core::clone::Clone::clone(&self.llvm_module_flag),
            llvm_plugins: ::core::clone::Clone::clone(&self.llvm_plugins),
            llvm_target_feature: ::core::clone::Clone::clone(&self.llvm_target_feature),
            llvm_time_trace: ::core::clone::Clone::clone(&self.llvm_time_trace),
            llvm_writable: ::core::clone::Clone::clone(&self.llvm_writable),
            location_detail: ::core::clone::Clone::clone(&self.location_detail),
            ls: ::core::clone::Clone::clone(&self.ls),
            macro_backtrace: ::core::clone::Clone::clone(&self.macro_backtrace),
            macro_stats: ::core::clone::Clone::clone(&self.macro_stats),
            maximal_hir_to_mir_coverage: ::core::clone::Clone::clone(&self.maximal_hir_to_mir_coverage),
            merge_functions: ::core::clone::Clone::clone(&self.merge_functions),
            meta_stats: ::core::clone::Clone::clone(&self.meta_stats),
            metrics_dir: ::core::clone::Clone::clone(&self.metrics_dir),
            min_function_alignment: ::core::clone::Clone::clone(&self.min_function_alignment),
            min_recursion_limit: ::core::clone::Clone::clone(&self.min_recursion_limit),
            mir_enable_passes: ::core::clone::Clone::clone(&self.mir_enable_passes),
            mir_include_spans: ::core::clone::Clone::clone(&self.mir_include_spans),
            mir_opt_bisect_limit: ::core::clone::Clone::clone(&self.mir_opt_bisect_limit),
            mir_opt_level: ::core::clone::Clone::clone(&self.mir_opt_level),
            mir_preserve_ub: ::core::clone::Clone::clone(&self.mir_preserve_ub),
            mir_strip_debuginfo: ::core::clone::Clone::clone(&self.mir_strip_debuginfo),
            move_size_limit: ::core::clone::Clone::clone(&self.move_size_limit),
            namespaced_crates: ::core::clone::Clone::clone(&self.namespaced_crates),
            next_solver: ::core::clone::Clone::clone(&self.next_solver),
            nll_facts: ::core::clone::Clone::clone(&self.nll_facts),
            nll_facts_dir: ::core::clone::Clone::clone(&self.nll_facts_dir),
            no_analysis: ::core::clone::Clone::clone(&self.no_analysis),
            no_codegen: ::core::clone::Clone::clone(&self.no_codegen),
            no_generate_arange_section: ::core::clone::Clone::clone(&self.no_generate_arange_section),
            no_implied_bounds_compat: ::core::clone::Clone::clone(&self.no_implied_bounds_compat),
            no_leak_check: ::core::clone::Clone::clone(&self.no_leak_check),
            no_link: ::core::clone::Clone::clone(&self.no_link),
            no_parallel_backend: ::core::clone::Clone::clone(&self.no_parallel_backend),
            no_profiler_runtime: ::core::clone::Clone::clone(&self.no_profiler_runtime),
            no_steal_thir: ::core::clone::Clone::clone(&self.no_steal_thir),
            no_trait_vptr: ::core::clone::Clone::clone(&self.no_trait_vptr),
            no_unique_section_names: ::core::clone::Clone::clone(&self.no_unique_section_names),
            normalize_docs: ::core::clone::Clone::clone(&self.normalize_docs),
            offload: ::core::clone::Clone::clone(&self.offload),
            on_broken_pipe: ::core::clone::Clone::clone(&self.on_broken_pipe),
            osx_rpath_install_name: ::core::clone::Clone::clone(&self.osx_rpath_install_name),
            packed_bundled_libs: ::core::clone::Clone::clone(&self.packed_bundled_libs),
            packed_stack: ::core::clone::Clone::clone(&self.packed_stack),
            panic_abort_tests: ::core::clone::Clone::clone(&self.panic_abort_tests),
            panic_in_drop: ::core::clone::Clone::clone(&self.panic_in_drop),
            parse_crate_root_only: ::core::clone::Clone::clone(&self.parse_crate_root_only),
            patchable_function_entry: ::core::clone::Clone::clone(&self.patchable_function_entry),
            plt: ::core::clone::Clone::clone(&self.plt),
            pointer_authentication: ::core::clone::Clone::clone(&self.pointer_authentication),
            polonius: ::core::clone::Clone::clone(&self.polonius),
            pre_link_arg: ::core::clone::Clone::clone(&self.pre_link_arg),
            pre_link_args: ::core::clone::Clone::clone(&self.pre_link_args),
            precise_enum_drop_elaboration: ::core::clone::Clone::clone(&self.precise_enum_drop_elaboration),
            print_codegen_stats: ::core::clone::Clone::clone(&self.print_codegen_stats),
            print_codegen_stats_json: ::core::clone::Clone::clone(&self.print_codegen_stats_json),
            print_llvm_passes: ::core::clone::Clone::clone(&self.print_llvm_passes),
            print_mono_items: ::core::clone::Clone::clone(&self.print_mono_items),
            print_type_sizes: ::core::clone::Clone::clone(&self.print_type_sizes),
            proc_macro_backtrace: ::core::clone::Clone::clone(&self.proc_macro_backtrace),
            proc_macro_execution_strategy: ::core::clone::Clone::clone(&self.proc_macro_execution_strategy),
            profile_closures: ::core::clone::Clone::clone(&self.profile_closures),
            profiler_runtime: ::core::clone::Clone::clone(&self.profiler_runtime),
            query_dep_graph: ::core::clone::Clone::clone(&self.query_dep_graph),
            randomize_layout: ::core::clone::Clone::clone(&self.randomize_layout),
            reg_struct_return: ::core::clone::Clone::clone(&self.reg_struct_return),
            regparm: ::core::clone::Clone::clone(&self.regparm),
            relax_elf_relocations: ::core::clone::Clone::clone(&self.relax_elf_relocations),
            remap_cwd_prefix: ::core::clone::Clone::clone(&self.remap_cwd_prefix),
            remark_dir: ::core::clone::Clone::clone(&self.remark_dir),
            renormalize_rigid_aliases: ::core::clone::Clone::clone(&self.renormalize_rigid_aliases),
            retpoline: ::core::clone::Clone::clone(&self.retpoline),
            retpoline_external_thunk: ::core::clone::Clone::clone(&self.retpoline_external_thunk),
            sanitizer: ::core::clone::Clone::clone(&self.sanitizer),
            sanitizer_ignorelist: ::core::clone::Clone::clone(&self.sanitizer_ignorelist),
            sanitizer_cfi_canonical_jump_tables: ::core::clone::Clone::clone(&self.sanitizer_cfi_canonical_jump_tables),
            sanitizer_cfi_generalize_pointers: ::core::clone::Clone::clone(&self.sanitizer_cfi_generalize_pointers),
            sanitizer_cfi_normalize_integers: ::core::clone::Clone::clone(&self.sanitizer_cfi_normalize_integers),
            sanitizer_cfi_diag: ::core::clone::Clone::clone(&self.sanitizer_cfi_diag),
            sanitizer_cfi_recover: ::core::clone::Clone::clone(&self.sanitizer_cfi_recover),
            sanitizer_dataflow_abilist: ::core::clone::Clone::clone(&self.sanitizer_dataflow_abilist),
            sanitizer_kcfi_arity: ::core::clone::Clone::clone(&self.sanitizer_kcfi_arity),
            sanitizer_memory_track_origins: ::core::clone::Clone::clone(&self.sanitizer_memory_track_origins),
            sanitizer_recover: ::core::clone::Clone::clone(&self.sanitizer_recover),
            self_profile: ::core::clone::Clone::clone(&self.self_profile),
            self_profile_counter: ::core::clone::Clone::clone(&self.self_profile_counter),
            self_profile_events: ::core::clone::Clone::clone(&self.self_profile_events),
            share_generics: ::core::clone::Clone::clone(&self.share_generics),
            shell_argfiles: ::core::clone::Clone::clone(&self.shell_argfiles),
            simulate_remapped_rust_src_base: ::core::clone::Clone::clone(&self.simulate_remapped_rust_src_base),
            small_data_threshold: ::core::clone::Clone::clone(&self.small_data_threshold),
            span_debug: ::core::clone::Clone::clone(&self.span_debug),
            span_free_formats: ::core::clone::Clone::clone(&self.span_free_formats),
            split_dwarf_inlining: ::core::clone::Clone::clone(&self.split_dwarf_inlining),
            split_dwarf_kind: ::core::clone::Clone::clone(&self.split_dwarf_kind),
            split_dwarf_out_dir: ::core::clone::Clone::clone(&self.split_dwarf_out_dir),
            split_lto_unit: ::core::clone::Clone::clone(&self.split_lto_unit),
            src_hash_algorithm: ::core::clone::Clone::clone(&self.src_hash_algorithm),
            stack_protector: ::core::clone::Clone::clone(&self.stack_protector),
            staticlib_allow_rdylib_deps: ::core::clone::Clone::clone(&self.staticlib_allow_rdylib_deps),
            staticlib_hide_internal_symbols: ::core::clone::Clone::clone(&self.staticlib_hide_internal_symbols),
            staticlib_rename_internal_symbols: ::core::clone::Clone::clone(&self.staticlib_rename_internal_symbols),
            staticlib_prefer_dynamic: ::core::clone::Clone::clone(&self.staticlib_prefer_dynamic),
            strict_init_checks: ::core::clone::Clone::clone(&self.strict_init_checks),
            teach: ::core::clone::Clone::clone(&self.teach),
            temps_dir: ::core::clone::Clone::clone(&self.temps_dir),
            terminal_urls: ::core::clone::Clone::clone(&self.terminal_urls),
            thinlto: ::core::clone::Clone::clone(&self.thinlto),
            threads: ::core::clone::Clone::clone(&self.threads),
            time_llvm_passes: ::core::clone::Clone::clone(&self.time_llvm_passes),
            time_passes: ::core::clone::Clone::clone(&self.time_passes),
            time_passes_format: ::core::clone::Clone::clone(&self.time_passes_format),
            tiny_const_eval_limit: ::core::clone::Clone::clone(&self.tiny_const_eval_limit),
            tls_model: ::core::clone::Clone::clone(&self.tls_model),
            trace_macros: ::core::clone::Clone::clone(&self.trace_macros),
            track_diagnostics: ::core::clone::Clone::clone(&self.track_diagnostics),
            translate_remapped_path_to_local_path: ::core::clone::Clone::clone(&self.translate_remapped_path_to_local_path),
            trap_unreachable: ::core::clone::Clone::clone(&self.trap_unreachable),
            treat_err_as_bug: ::core::clone::Clone::clone(&self.treat_err_as_bug),
            trim_diagnostic_paths: ::core::clone::Clone::clone(&self.trim_diagnostic_paths),
            tune_cpu: ::core::clone::Clone::clone(&self.tune_cpu),
            typing_mode_post_typeck_until_borrowck: ::core::clone::Clone::clone(&self.typing_mode_post_typeck_until_borrowck),
            ub_checks: ::core::clone::Clone::clone(&self.ub_checks),
            ui_testing: ::core::clone::Clone::clone(&self.ui_testing),
            uninit_const_chunk_threshold: ::core::clone::Clone::clone(&self.uninit_const_chunk_threshold),
            unleash_the_miri_inside_of_you: ::core::clone::Clone::clone(&self.unleash_the_miri_inside_of_you),
            unpretty: ::core::clone::Clone::clone(&self.unpretty),
            unsound_mir_opts: ::core::clone::Clone::clone(&self.unsound_mir_opts),
            unstable_options: ::core::clone::Clone::clone(&self.unstable_options),
            use_ctors_section: ::core::clone::Clone::clone(&self.use_ctors_section),
            use_sync_unwind: ::core::clone::Clone::clone(&self.use_sync_unwind),
            validate_mir: ::core::clone::Clone::clone(&self.validate_mir),
            verbose_asm: ::core::clone::Clone::clone(&self.verbose_asm),
            verbose_internals: ::core::clone::Clone::clone(&self.verbose_internals),
            verify_llvm_ir: ::core::clone::Clone::clone(&self.verify_llvm_ir),
            virtual_function_elimination: ::core::clone::Clone::clone(&self.virtual_function_elimination),
            wasi_exec_model: ::core::clone::Clone::clone(&self.wasi_exec_model),
            wasm_c_abi: ::core::clone::Clone::clone(&self.wasm_c_abi),
            wasm_proc_macros: ::core::clone::Clone::clone(&self.wasm_proc_macros),
            write_long_types_to_disk: ::core::clone::Clone::clone(&self.write_long_types_to_disk),
        }
    }
}
pub enum UnstableOptionsTargetModifiers {
    BranchProtection,
    FixedX18,
    IndirectBranchCsPrefix,
    LlvmTargetFeature,
    PointerAuthentication,
    RegStructReturn,
    Regparm,
    Retpoline,
    RetpolineExternalThunk,
    Sanitizer,
    SanitizerCfiNormalizeIntegers,
}
#[automatically_derived]
impl ::core::marker::StructuralPartialEq for UnstableOptionsTargetModifiers {
}
#[automatically_derived]
impl ::core::cmp::PartialEq for UnstableOptionsTargetModifiers {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}
#[automatically_derived]
impl ::core::cmp::Eq for UnstableOptionsTargetModifiers { }
#[automatically_derived]
impl ::core::cmp::PartialOrd for UnstableOptionsTargetModifiers {
    #[inline]
    fn partial_cmp(&self, other: &Self)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
    }
}
#[automatically_derived]
impl ::core::cmp::Ord for UnstableOptionsTargetModifiers {
    #[inline]
    fn cmp(&self, other: &Self) -> ::core::cmp::Ordering {
        ::core::cmp::Ord::cmp(&::core::intrinsics::discriminant_value(self),
            &::core::intrinsics::discriminant_value(other))
    }
}
#[automatically_derived]
impl ::core::fmt::Debug for UnstableOptionsTargetModifiers {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                UnstableOptionsTargetModifiers::BranchProtection =>
                    "BranchProtection",
                UnstableOptionsTargetModifiers::FixedX18 => "FixedX18",
                UnstableOptionsTargetModifiers::IndirectBranchCsPrefix =>
                    "IndirectBranchCsPrefix",
                UnstableOptionsTargetModifiers::LlvmTargetFeature =>
                    "LlvmTargetFeature",
                UnstableOptionsTargetModifiers::PointerAuthentication =>
                    "PointerAuthentication",
                UnstableOptionsTargetModifiers::RegStructReturn =>
                    "RegStructReturn",
                UnstableOptionsTargetModifiers::Regparm => "Regparm",
                UnstableOptionsTargetModifiers::Retpoline => "Retpoline",
                UnstableOptionsTargetModifiers::RetpolineExternalThunk =>
                    "RetpolineExternalThunk",
                UnstableOptionsTargetModifiers::Sanitizer => "Sanitizer",
                UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers
                    => "SanitizerCfiNormalizeIntegers",
            })
    }
}
#[automatically_derived]
impl ::core::marker::Copy for UnstableOptionsTargetModifiers { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for UnstableOptionsTargetModifiers { }
#[automatically_derived]
impl ::core::clone::Clone for UnstableOptionsTargetModifiers {
    #[inline]
    fn clone(&self) -> Self { *self }
}
const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for UnstableOptionsTargetModifiers {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        UnstableOptionsTargetModifiers::BranchProtection => {
                            0usize
                        }
                        UnstableOptionsTargetModifiers::FixedX18 => { 1usize }
                        UnstableOptionsTargetModifiers::IndirectBranchCsPrefix => {
                            2usize
                        }
                        UnstableOptionsTargetModifiers::LlvmTargetFeature => {
                            3usize
                        }
                        UnstableOptionsTargetModifiers::PointerAuthentication => {
                            4usize
                        }
                        UnstableOptionsTargetModifiers::RegStructReturn => {
                            5usize
                        }
                        UnstableOptionsTargetModifiers::Regparm => { 6usize }
                        UnstableOptionsTargetModifiers::Retpoline => { 7usize }
                        UnstableOptionsTargetModifiers::RetpolineExternalThunk => {
                            8usize
                        }
                        UnstableOptionsTargetModifiers::Sanitizer => { 9usize }
                        UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers
                            => {
                            10usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
            }
        }
    };
const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for UnstableOptionsTargetModifiers {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        UnstableOptionsTargetModifiers::BranchProtection
                    }
                    1usize => { UnstableOptionsTargetModifiers::FixedX18 }
                    2usize => {
                        UnstableOptionsTargetModifiers::IndirectBranchCsPrefix
                    }
                    3usize => {
                        UnstableOptionsTargetModifiers::LlvmTargetFeature
                    }
                    4usize => {
                        UnstableOptionsTargetModifiers::PointerAuthentication
                    }
                    5usize => {
                        UnstableOptionsTargetModifiers::RegStructReturn
                    }
                    6usize => { UnstableOptionsTargetModifiers::Regparm }
                    7usize => { UnstableOptionsTargetModifiers::Retpoline }
                    8usize => {
                        UnstableOptionsTargetModifiers::RetpolineExternalThunk
                    }
                    9usize => { UnstableOptionsTargetModifiers::Sanitizer }
                    10usize => {
                        UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `UnstableOptionsTargetModifiers`, expected 0..11, actual {0}",
                                n));
                    }
                }
            }
        }
    };
impl UnstableOptionsTargetModifiers {
    pub fn reparse(&self, _user_value: &str) -> ExtendedTargetModifierInfo {
        match self {
            Self::BranchProtection => {
                let mut parsed: Option<BranchProtection> = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_branch_protection(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "branch_protection".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::FixedX18 => {
                let mut parsed: bool = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "fixed_x18".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::IndirectBranchCsPrefix => {
                let mut parsed: bool = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "indirect_branch_cs_prefix".to_string().replace('_',
                        "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::LlvmTargetFeature => {
                let mut parsed: String = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_target_feature(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "llvm_target_feature".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::PointerAuthentication => {
                let mut parsed: Vec<(PointerAuthOption, bool)> =
                    Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_pointer_authentication_list_with_polarity(&mut parsed,
                    val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "pointer_authentication".to_string().replace('_',
                        "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::RegStructReturn => {
                let mut parsed: bool = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "reg_struct_return".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::Regparm => {
                let mut parsed: Option<u32> = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_opt_number(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "regparm".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::Retpoline => {
                let mut parsed: bool = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "retpoline".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::RetpolineExternalThunk => {
                let mut parsed: bool = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "retpoline_external_thunk".to_string().replace('_',
                        "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::Sanitizer => {
                let mut parsed: SanitizerSet = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_sanitizers(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "sanitizer".to_string().replace('_', "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
            Self::SanitizerCfiNormalizeIntegers => {
                let mut parsed: Option<bool> = Default::default();
                let val =
                    if _user_value.is_empty() {
                        None
                    } else { Some(_user_value) };
                parse::parse_opt_bool(&mut parsed, val);
                ExtendedTargetModifierInfo {
                    prefix: "Z".to_string(),
                    name: "sanitizer_cfi_normalize_integers".to_string().replace('_',
                        "-"),
                    tech_value: ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("{0:?}", parsed))
                        }),
                }
            }
                #[allow(unreachable_patterns)]
                _ => {
                ::core::panicking::panic_fmt(format_args!("unknown target modifier option: {0:?}",
                        *self));
            }
        }
    }
    pub fn is_target_modifier(flag_name: &str) -> bool {
        match flag_name.replace('-', "_").as_str() {
            "branch_protection" => true,
            "fixed_x18" => true,
            "indirect_branch_cs_prefix" => true,
            "llvm_target_feature" => true,
            "pointer_authentication" => true,
            "reg_struct_return" => true,
            "regparm" => true,
            "retpoline" => true,
            "retpoline_external_thunk" => true,
            "sanitizer" => true,
            "sanitizer_cfi_normalize_integers" => true,
            _ => false,
        }
    }
}
impl Default for UnstableOptions {
    fn default() -> UnstableOptions {
        UnstableOptions {
            allow_features: None,
            allow_partial_mitigations: (),
            always_encode_mir: false,
            annotate_moves: AnnotateMoves::Disabled,
            assert_incr_state: None,
            assume_incomplete_release: false,
            assumptions_on_binders: false,
            autodiff: Vec::new(),
            autodiff_post_passes: None,
            binary_dep_depinfo: false,
            box_noalias: true,
            branch_protection: None,
            build_sdylib_interface: false,
            cache_proc_macros: false,
            cf_protection: CFProtection::None,
            check_cfg_all_expected: false,
            checksum_hash_algorithm: None,
            codegen_backend: None,
            codegen_emit_retag: None,
            codegen_source_order: false,
            contract_checks: None,
            coverage_options: CoverageOptions::default(),
            crate_attr: Vec::new(),
            cross_crate_inline_threshold: InliningThreshold::Sometimes(100),
            debug_info_type_line_numbers: false,
            debuginfo_compression: DebugInfoCompression::None,
            debuginfo_for_profiling: false,
            deduplicate_diagnostics: true,
            default_visibility: None,
            deny_partial_mitigations: (),
            dep_info_omit_d_target: false,
            direct_access_external_data: None,
            disable_fast_paths: false,
            disable_incr_comp_backend_caching: false,
            disable_param_env_normalization_hack: false,
            dual_proc_macros: false,
            dump_dep_graph: false,
            dump_mir: None,
            dump_mir_dataflow: false,
            dump_mir_dir: "mir_dump".to_string(),
            dump_mir_exclude_alloc_bytes: false,
            dump_mir_exclude_pass_number: false,
            dump_mir_graphviz: false,
            dump_mono_stats: SwitchWithOptPath::Disabled,
            dump_mono_stats_format: DumpMonoStatsFormat::Markdown,
            dwarf_version: None,
            dylib_lto: false,
            eagerly_emit_delayed_bugs: false,
            ehcont_guard: false,
            embed_metadata: true,
            embed_source: false,
            emit_stack_sizes: false,
            enforce_type_length_limit: false,
            experimental_default_bounds: false,
            export_executable_symbols: false,
            external_clangrt: false,
            extra_const_ub_checks: false,
            fewer_names: None,
            fixed_x18: false,
            flatten_format_args: true,
            fmt_debug: FmtDebug::Full,
            force_intrinsic_fallback: false,
            force_unstable_if_unmarked: false,
            function_return: FunctionReturn::default(),
            function_sections: None,
            future_incompat_test: false,
            graphviz_dark_mode: false,
            graphviz_font: "Courier, monospace".to_string(),
            has_thread_local: None,
            help: false,
            higher_ranked_assumptions: false,
            hint_mostly_unused: false,
            hint_msrv: None,
            human_readable_cgu_names: false,
            identify_regions: false,
            ignore_directory_in_diagnostics_source_blocks: Vec::new(),
            implicit_sysroot_deps: true,
            incremental_ignore_spans: false,
            incremental_info: false,
            incremental_verify_ich: false,
            indirect_branch_cs_prefix: false,
            inline_llvm: true,
            inline_mir: None,
            inline_mir_forwarder_threshold: None,
            inline_mir_hint_threshold: None,
            inline_mir_preserve_debug: None,
            inline_mir_threshold: None,
            input_stats: false,
            instrument_mcount: InstrumentMcount::Disabled,
            instrument_xray: None,
            internal_testing_features: false,
            large_data_threshold: None,
            layout_seed: None,
            link_directives: true,
            link_native_libraries: true,
            link_only: false,
            lint_llvm_ir: false,
            lint_mir: false,
            llvm_module_flag: Vec::new(),
            llvm_plugins: Vec::new(),
            llvm_target_feature: String::new(),
            llvm_time_trace: false,
            llvm_writable: false,
            location_detail: LocationDetail::all(),
            ls: Vec::new(),
            macro_backtrace: false,
            macro_stats: false,
            maximal_hir_to_mir_coverage: false,
            merge_functions: None,
            meta_stats: false,
            metrics_dir: None,
            min_function_alignment: None,
            min_recursion_limit: None,
            mir_enable_passes: Vec::new(),
            mir_include_spans: MirIncludeSpans::default(),
            mir_opt_bisect_limit: None,
            mir_opt_level: None,
            mir_preserve_ub: false,
            mir_strip_debuginfo: MirStripDebugInfo::None,
            move_size_limit: None,
            namespaced_crates: false,
            next_solver: NextSolverConfig::default(),
            nll_facts: false,
            nll_facts_dir: "nll-facts".to_string(),
            no_analysis: false,
            no_codegen: false,
            no_generate_arange_section: false,
            no_implied_bounds_compat: false,
            no_leak_check: false,
            no_link: false,
            no_parallel_backend: false,
            no_profiler_runtime: false,
            no_steal_thir: false,
            no_trait_vptr: false,
            no_unique_section_names: false,
            normalize_docs: false,
            offload: Vec::new(),
            on_broken_pipe: OnBrokenPipe::Default,
            osx_rpath_install_name: false,
            packed_bundled_libs: false,
            packed_stack: false,
            panic_abort_tests: false,
            panic_in_drop: PanicStrategy::Unwind,
            parse_crate_root_only: false,
            patchable_function_entry: PatchableFunctionEntry::default(),
            plt: None,
            pointer_authentication: Vec::new(),
            polonius: Polonius::default(),
            pre_link_arg: (),
            pre_link_args: Vec::new(),
            precise_enum_drop_elaboration: true,
            print_codegen_stats: false,
            print_codegen_stats_json: None,
            print_llvm_passes: false,
            print_mono_items: false,
            print_type_sizes: false,
            proc_macro_backtrace: false,
            proc_macro_execution_strategy: ProcMacroExecutionStrategy::SameThread,
            profile_closures: false,
            profiler_runtime: String::from("profiler_builtins"),
            query_dep_graph: false,
            randomize_layout: false,
            reg_struct_return: false,
            regparm: None,
            relax_elf_relocations: None,
            remap_cwd_prefix: None,
            remark_dir: None,
            renormalize_rigid_aliases: false,
            retpoline: false,
            retpoline_external_thunk: false,
            sanitizer: SanitizerSet::empty(),
            sanitizer_ignorelist: ::alloc::vec::Vec::new(),
            sanitizer_cfi_canonical_jump_tables: Some(true),
            sanitizer_cfi_generalize_pointers: None,
            sanitizer_cfi_normalize_integers: None,
            sanitizer_cfi_diag: None,
            sanitizer_cfi_recover: None,
            sanitizer_dataflow_abilist: Vec::new(),
            sanitizer_kcfi_arity: None,
            sanitizer_memory_track_origins: 0,
            sanitizer_recover: SanitizerSet::empty(),
            self_profile: SwitchWithOptPath::Disabled,
            self_profile_counter: "wall-time".to_string(),
            self_profile_events: None,
            share_generics: None,
            shell_argfiles: false,
            simulate_remapped_rust_src_base: None,
            small_data_threshold: None,
            span_debug: false,
            span_free_formats: false,
            split_dwarf_inlining: false,
            split_dwarf_kind: SplitDwarfKind::Split,
            split_dwarf_out_dir: None,
            split_lto_unit: None,
            src_hash_algorithm: None,
            stack_protector: StackProtector::None,
            staticlib_allow_rdylib_deps: false,
            staticlib_hide_internal_symbols: false,
            staticlib_rename_internal_symbols: false,
            staticlib_prefer_dynamic: false,
            strict_init_checks: false,
            teach: false,
            temps_dir: None,
            terminal_urls: TerminalUrl::No,
            thinlto: None,
            threads: None,
            time_llvm_passes: false,
            time_passes: false,
            time_passes_format: TimePassesFormat::Text,
            tiny_const_eval_limit: false,
            tls_model: None,
            trace_macros: false,
            track_diagnostics: false,
            translate_remapped_path_to_local_path: true,
            trap_unreachable: None,
            treat_err_as_bug: None,
            trim_diagnostic_paths: true,
            tune_cpu: None,
            typing_mode_post_typeck_until_borrowck: false,
            ub_checks: None,
            ui_testing: false,
            uninit_const_chunk_threshold: 16,
            unleash_the_miri_inside_of_you: false,
            unpretty: None,
            unsound_mir_opts: false,
            unstable_options: false,
            use_ctors_section: None,
            use_sync_unwind: None,
            validate_mir: false,
            verbose_asm: false,
            verbose_internals: false,
            verify_llvm_ir: false,
            virtual_function_elimination: false,
            wasi_exec_model: None,
            wasm_c_abi: (),
            wasm_proc_macros: false,
            write_long_types_to_disk: true,
        }
    }
}
impl UnstableOptions {
    pub fn build(early_dcx: &EarlyDiagCtxt, matches: &getopts::Matches,
        target_modifiers: &mut CollectedOptions) -> UnstableOptions {
        build_options(early_dcx, matches, target_modifiers, Z_OPTIONS, "Z",
            "unstable")
    }
    fn dep_tracking_hash(&self, for_crate_hash: bool,
        error_format: ErrorOutputType) -> Hash64 {
        let mut sub_hashes = BTreeMap::new();
        {
            if (&mut sub_hashes).insert("allow_features",
                        &self.allow_features as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "allow_features"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("always_encode_mir",
                        &self.always_encode_mir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "always_encode_mir"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("annotate_moves",
                        &self.annotate_moves as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "annotate_moves"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("assume_incomplete_release",
                        &self.assume_incomplete_release as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "assume_incomplete_release"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("assumptions_on_binders",
                        &self.assumptions_on_binders as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "assumptions_on_binders"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("autodiff",
                        &self.autodiff as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "autodiff"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("autodiff_post_passes",
                        &self.autodiff_post_passes as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "autodiff_post_passes"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("binary_dep_depinfo",
                        &self.binary_dep_depinfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "binary_dep_depinfo"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("box_noalias",
                        &self.box_noalias as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "box_noalias"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("branch_protection",
                        &self.branch_protection as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "branch_protection"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("cache_proc_macros",
                        &self.cache_proc_macros as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "cache_proc_macros"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("cf_protection",
                        &self.cf_protection as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "cf_protection"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("checksum_hash_algorithm",
                        &self.checksum_hash_algorithm as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "checksum_hash_algorithm"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("codegen_backend",
                        &self.codegen_backend as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "codegen_backend"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("codegen_emit_retag",
                        &self.codegen_emit_retag as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "codegen_emit_retag"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("contract_checks",
                        &self.contract_checks as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "contract_checks"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("coverage_options",
                        &self.coverage_options as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "coverage_options"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("crate_attr",
                        &self.crate_attr as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "crate_attr"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("cross_crate_inline_threshold",
                        &self.cross_crate_inline_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "cross_crate_inline_threshold"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debug_info_type_line_numbers",
                        &self.debug_info_type_line_numbers as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debug_info_type_line_numbers"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debuginfo_compression",
                        &self.debuginfo_compression as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debuginfo_compression"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("debuginfo_for_profiling",
                        &self.debuginfo_for_profiling as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "debuginfo_for_profiling"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("default_visibility",
                        &self.default_visibility as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "default_visibility"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("dep_info_omit_d_target",
                        &self.dep_info_omit_d_target as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "dep_info_omit_d_target"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("direct_access_external_data",
                        &self.direct_access_external_data as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "direct_access_external_data"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("disable_fast_paths",
                        &self.disable_fast_paths as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "disable_fast_paths"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("disable_incr_comp_backend_caching",
                        &self.disable_incr_comp_backend_caching as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "disable_incr_comp_backend_caching"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("disable_param_env_normalization_hack",
                        &self.disable_param_env_normalization_hack as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "disable_param_env_normalization_hack"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("dual_proc_macros",
                        &self.dual_proc_macros as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "dual_proc_macros"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("dwarf_version",
                        &self.dwarf_version as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "dwarf_version"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("ehcont_guard",
                        &self.ehcont_guard as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "ehcont_guard"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("embed_metadata",
                        &self.embed_metadata as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "embed_metadata"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("embed_source",
                        &self.embed_source as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "embed_source"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("enforce_type_length_limit",
                        &self.enforce_type_length_limit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "enforce_type_length_limit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("experimental_default_bounds",
                        &self.experimental_default_bounds as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "experimental_default_bounds"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("export_executable_symbols",
                        &self.export_executable_symbols as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "export_executable_symbols"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("extra_const_ub_checks",
                        &self.extra_const_ub_checks as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "extra_const_ub_checks"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("fewer_names",
                        &self.fewer_names as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "fewer_names"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("fixed_x18",
                        &self.fixed_x18 as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "fixed_x18"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("flatten_format_args",
                        &self.flatten_format_args as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "flatten_format_args"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("fmt_debug",
                        &self.fmt_debug as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "fmt_debug"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("force_intrinsic_fallback",
                        &self.force_intrinsic_fallback as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "force_intrinsic_fallback"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("force_unstable_if_unmarked",
                        &self.force_unstable_if_unmarked as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "force_unstable_if_unmarked"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("function_return",
                        &self.function_return as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "function_return"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("function_sections",
                        &self.function_sections as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "function_sections"));
                }
            }
        };
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("has_thread_local",
                        &self.has_thread_local as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "has_thread_local"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("higher_ranked_assumptions",
                        &self.higher_ranked_assumptions as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "higher_ranked_assumptions"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("hint_mostly_unused",
                        &self.hint_mostly_unused as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "hint_mostly_unused"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("hint_msrv",
                        &self.hint_msrv as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "hint_msrv"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("human_readable_cgu_names",
                        &self.human_readable_cgu_names as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "human_readable_cgu_names"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("implicit_sysroot_deps",
                        &self.implicit_sysroot_deps as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "implicit_sysroot_deps"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("incremental_ignore_spans",
                        &self.incremental_ignore_spans as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "incremental_ignore_spans"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("indirect_branch_cs_prefix",
                        &self.indirect_branch_cs_prefix as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "indirect_branch_cs_prefix"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_llvm",
                        &self.inline_llvm as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_llvm"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_mir",
                        &self.inline_mir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_mir"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_mir_forwarder_threshold",
                        &self.inline_mir_forwarder_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_mir_forwarder_threshold"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_mir_hint_threshold",
                        &self.inline_mir_hint_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_mir_hint_threshold"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_mir_preserve_debug",
                        &self.inline_mir_preserve_debug as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_mir_preserve_debug"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("inline_mir_threshold",
                        &self.inline_mir_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "inline_mir_threshold"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("instrument_mcount",
                        &self.instrument_mcount as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "instrument_mcount"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("instrument_xray",
                        &self.instrument_xray as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "instrument_xray"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("internal_testing_features",
                        &self.internal_testing_features as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "internal_testing_features"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("large_data_threshold",
                        &self.large_data_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "large_data_threshold"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("layout_seed",
                        &self.layout_seed as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "layout_seed"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("link_directives",
                        &self.link_directives as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "link_directives"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("link_only",
                        &self.link_only as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "link_only"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("lint_llvm_ir",
                        &self.lint_llvm_ir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "lint_llvm_ir"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("llvm_module_flag",
                        &self.llvm_module_flag as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "llvm_module_flag"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("llvm_plugins",
                        &self.llvm_plugins as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "llvm_plugins"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("llvm_target_feature",
                        &self.llvm_target_feature as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "llvm_target_feature"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("llvm_writable",
                        &self.llvm_writable as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "llvm_writable"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("location_detail",
                        &self.location_detail as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "location_detail"));
                }
            }
        };
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("maximal_hir_to_mir_coverage",
                        &self.maximal_hir_to_mir_coverage as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "maximal_hir_to_mir_coverage"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("merge_functions",
                        &self.merge_functions as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "merge_functions"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("min_function_alignment",
                        &self.min_function_alignment as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "min_function_alignment"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("min_recursion_limit",
                        &self.min_recursion_limit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "min_recursion_limit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("mir_enable_passes",
                        &self.mir_enable_passes as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "mir_enable_passes"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("mir_opt_bisect_limit",
                        &self.mir_opt_bisect_limit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "mir_opt_bisect_limit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("mir_opt_level",
                        &self.mir_opt_level as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "mir_opt_level"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("mir_preserve_ub",
                        &self.mir_preserve_ub as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "mir_preserve_ub"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("mir_strip_debuginfo",
                        &self.mir_strip_debuginfo as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "mir_strip_debuginfo"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("move_size_limit",
                        &self.move_size_limit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "move_size_limit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("namespaced_crates",
                        &self.namespaced_crates as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "namespaced_crates"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("next_solver",
                        &self.next_solver as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "next_solver"));
                }
            }
        };
        {};
        {};
        {};
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("no_codegen",
                            &self.no_codegen as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "no_codegen"));
                    }
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_generate_arange_section",
                        &self.no_generate_arange_section as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_generate_arange_section"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_implied_bounds_compat",
                        &self.no_implied_bounds_compat as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_implied_bounds_compat"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("no_link",
                        &self.no_link as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_link"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("no_profiler_runtime",
                        &self.no_profiler_runtime as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_profiler_runtime"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("no_trait_vptr",
                        &self.no_trait_vptr as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_trait_vptr"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("no_unique_section_names",
                        &self.no_unique_section_names as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "no_unique_section_names"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("normalize_docs",
                        &self.normalize_docs as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "normalize_docs"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("offload",
                        &self.offload as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "offload"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("on_broken_pipe",
                        &self.on_broken_pipe as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "on_broken_pipe"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("osx_rpath_install_name",
                        &self.osx_rpath_install_name as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "osx_rpath_install_name"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("packed_bundled_libs",
                        &self.packed_bundled_libs as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "packed_bundled_libs"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("packed_stack",
                        &self.packed_stack as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "packed_stack"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("panic_abort_tests",
                        &self.panic_abort_tests as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "panic_abort_tests"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("panic_in_drop",
                        &self.panic_in_drop as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "panic_in_drop"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("patchable_function_entry",
                        &self.patchable_function_entry as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "patchable_function_entry"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("plt",
                        &self.plt as &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "plt"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("pointer_authentication",
                        &self.pointer_authentication as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "pointer_authentication"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("polonius",
                        &self.polonius as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "polonius"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("precise_enum_drop_elaboration",
                        &self.precise_enum_drop_elaboration as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "precise_enum_drop_elaboration"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("profiler_runtime",
                        &self.profiler_runtime as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "profiler_runtime"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("randomize_layout",
                        &self.randomize_layout as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "randomize_layout"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("reg_struct_return",
                        &self.reg_struct_return as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "reg_struct_return"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("regparm",
                        &self.regparm as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "regparm"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("relax_elf_relocations",
                        &self.relax_elf_relocations as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "relax_elf_relocations"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("remap_cwd_prefix",
                        &self.remap_cwd_prefix as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "remap_cwd_prefix"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("renormalize_rigid_aliases",
                        &self.renormalize_rigid_aliases as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "renormalize_rigid_aliases"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("retpoline",
                        &self.retpoline as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "retpoline"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("retpoline_external_thunk",
                        &self.retpoline_external_thunk as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "retpoline_external_thunk"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer",
                        &self.sanitizer as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_ignorelist",
                        &self.sanitizer_ignorelist as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_ignorelist"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_cfi_canonical_jump_tables",
                        &self.sanitizer_cfi_canonical_jump_tables as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_cfi_canonical_jump_tables"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_cfi_generalize_pointers",
                        &self.sanitizer_cfi_generalize_pointers as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_cfi_generalize_pointers"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_cfi_normalize_integers",
                        &self.sanitizer_cfi_normalize_integers as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_cfi_normalize_integers"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_cfi_diag",
                        &self.sanitizer_cfi_diag as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_cfi_diag"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_cfi_recover",
                        &self.sanitizer_cfi_recover as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_cfi_recover"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_dataflow_abilist",
                        &self.sanitizer_dataflow_abilist as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_dataflow_abilist"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_kcfi_arity",
                        &self.sanitizer_kcfi_arity as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_kcfi_arity"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_memory_track_origins",
                        &self.sanitizer_memory_track_origins as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_memory_track_origins"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("sanitizer_recover",
                        &self.sanitizer_recover as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "sanitizer_recover"));
                }
            }
        };
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("share_generics",
                        &self.share_generics as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "share_generics"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("simulate_remapped_rust_src_base",
                        &self.simulate_remapped_rust_src_base as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "simulate_remapped_rust_src_base"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("small_data_threshold",
                        &self.small_data_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "small_data_threshold"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("split_dwarf_inlining",
                        &self.split_dwarf_inlining as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "split_dwarf_inlining"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("split_dwarf_kind",
                        &self.split_dwarf_kind as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "split_dwarf_kind"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("split_dwarf_out_dir",
                        &self.split_dwarf_out_dir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "split_dwarf_out_dir"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("split_lto_unit",
                        &self.split_lto_unit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "split_lto_unit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("src_hash_algorithm",
                        &self.src_hash_algorithm as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "src_hash_algorithm"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("stack_protector",
                        &self.stack_protector as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "stack_protector"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("staticlib_allow_rdylib_deps",
                        &self.staticlib_allow_rdylib_deps as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "staticlib_allow_rdylib_deps"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("staticlib_hide_internal_symbols",
                        &self.staticlib_hide_internal_symbols as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "staticlib_hide_internal_symbols"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("staticlib_rename_internal_symbols",
                        &self.staticlib_rename_internal_symbols as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "staticlib_rename_internal_symbols"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("staticlib_prefer_dynamic",
                        &self.staticlib_prefer_dynamic as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "staticlib_prefer_dynamic"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("strict_init_checks",
                        &self.strict_init_checks as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "strict_init_checks"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("teach",
                        &self.teach as &dyn dep_tracking::DepTrackingHash).is_some()
                {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "teach"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("thinlto",
                        &self.thinlto as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "thinlto"));
                }
            }
        };
        {};
        {};
        {};
        {};
        {
            if (&mut sub_hashes).insert("tiny_const_eval_limit",
                        &self.tiny_const_eval_limit as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "tiny_const_eval_limit"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("tls_model",
                        &self.tls_model as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "tls_model"));
                }
            }
        };
        {};
        {};
        {
            if (&mut sub_hashes).insert("translate_remapped_path_to_local_path",
                        &self.translate_remapped_path_to_local_path as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "translate_remapped_path_to_local_path"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("trap_unreachable",
                        &self.trap_unreachable as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "trap_unreachable"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("treat_err_as_bug",
                        &self.treat_err_as_bug as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "treat_err_as_bug"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("tune_cpu",
                        &self.tune_cpu as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "tune_cpu"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("typing_mode_post_typeck_until_borrowck",
                        &self.typing_mode_post_typeck_until_borrowck as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "typing_mode_post_typeck_until_borrowck"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("ub_checks",
                        &self.ub_checks as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "ub_checks"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("uninit_const_chunk_threshold",
                        &self.uninit_const_chunk_threshold as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "uninit_const_chunk_threshold"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("unleash_the_miri_inside_of_you",
                        &self.unleash_the_miri_inside_of_you as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "unleash_the_miri_inside_of_you"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("unsound_mir_opts",
                        &self.unsound_mir_opts as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "unsound_mir_opts"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("use_ctors_section",
                        &self.use_ctors_section as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "use_ctors_section"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("use_sync_unwind",
                        &self.use_sync_unwind as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "use_sync_unwind"));
                }
            }
        };
        {};
        {
            if (&mut sub_hashes).insert("verbose_asm",
                        &self.verbose_asm as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "verbose_asm"));
                }
            }
        };
        {
            if !for_crate_hash {
                if (&mut sub_hashes).insert("verbose_internals",
                            &self.verbose_internals as
                                &dyn dep_tracking::DepTrackingHash).is_some() {
                    {
                        ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                                "verbose_internals"));
                    }
                }
            }
        };
        {
            if (&mut sub_hashes).insert("verify_llvm_ir",
                        &self.verify_llvm_ir as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "verify_llvm_ir"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("virtual_function_elimination",
                        &self.virtual_function_elimination as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "virtual_function_elimination"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("wasi_exec_model",
                        &self.wasi_exec_model as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "wasi_exec_model"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("wasm_c_abi",
                        &self.wasm_c_abi as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "wasm_c_abi"));
                }
            }
        };
        {
            if (&mut sub_hashes).insert("wasm_proc_macros",
                        &self.wasm_proc_macros as
                            &dyn dep_tracking::DepTrackingHash).is_some() {
                {
                    ::core::panicking::panic_fmt(format_args!("duplicate key in CLI DepTrackingHash: {0}",
                            "wasm_proc_macros"));
                }
            }
        };
        {};
        let mut hasher = StableHasher::new();
        dep_tracking::stable_hash(sub_hashes, &mut hasher, error_format,
            for_crate_hash);
        hasher.finish()
    }
    pub fn gather_target_modifiers(&self, _mods: &mut Vec<TargetModifier>,
        _tmod_vals: &BTreeMap<OptionsTargetModifiers, String>) {
        if self.branch_protection != None {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::BranchProtection),
                _tmod_vals, _mods);
        }
        if self.fixed_x18 != false {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::FixedX18),
                _tmod_vals, _mods);
        }
        if self.indirect_branch_cs_prefix != false {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::IndirectBranchCsPrefix),
                _tmod_vals, _mods);
        }
        if self.llvm_target_feature != String::new() {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::LlvmTargetFeature),
                _tmod_vals, _mods);
        }
        if self.pointer_authentication != Vec::new() {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::PointerAuthentication),
                _tmod_vals, _mods);
        }
        if self.reg_struct_return != false {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::RegStructReturn),
                _tmod_vals, _mods);
        }
        if self.regparm != None {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Regparm),
                _tmod_vals, _mods);
        }
        if self.retpoline != false {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Retpoline),
                _tmod_vals, _mods);
        }
        if self.retpoline_external_thunk != false {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::RetpolineExternalThunk),
                _tmod_vals, _mods);
        }
        if self.sanitizer != SanitizerSet::empty() {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Sanitizer),
                _tmod_vals, _mods);
        }
        if self.sanitizer_cfi_normalize_integers != None {
            tmod_push_impl(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers),
                _tmod_vals, _mods);
        }
    }
}
pub const Z_OPTIONS: OptionDescrs<UnstableOptions> =
    &[OptionDesc {
                    name: "allow_features",
                    setter: dbopts::allow_features,
                    type_desc: desc::parse_opt_comma_list,
                    desc: "only allow the listed language features to be enabled in code (comma separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "allow_partial_mitigations",
                    setter: dbopts::allow_partial_mitigations,
                    type_desc: desc::parse_allow_partial_mitigations,
                    desc: "Allow mitigations not enabled for all dependency crates (comma separated list)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "always_encode_mir",
                    setter: dbopts::always_encode_mir,
                    type_desc: desc::parse_bool,
                    desc: "encode MIR of all functions into the crate metadata (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "annotate_moves",
                    setter: dbopts::annotate_moves,
                    type_desc: desc::parse_annotate_moves,
                    desc: "emit debug info for compiler-generated move and copy operations \
        to make them visible in profilers. Can be a boolean or a size limit in bytes (default: disabled)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "assert_incr_state",
                    setter: dbopts::assert_incr_state,
                    type_desc: desc::parse_assert_incr_state,
                    desc: "assert that the incremental cache is in given state: \
         either `loaded` or `not-loaded`.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "assume_incomplete_release",
                    setter: dbopts::assume_incomplete_release,
                    type_desc: desc::parse_bool,
                    desc: "make cfg(version) treat the current version as incomplete (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "assumptions_on_binders",
                    setter: dbopts::assumptions_on_binders,
                    type_desc: desc::parse_bool,
                    desc: "allow deducing higher-ranked outlives assumptions from all binders (`for<'a>`); \
         implies `-Znext-solver=globally`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "autodiff",
                    setter: dbopts::autodiff,
                    type_desc: desc::parse_autodiff,
                    desc: "a list of autodiff flags to enable
        Mandatory setting:
        `=Enable`
        Optional extra settings:
        `=PrintTA`
        `=PrintAA`
        `=PrintPerf`
        `=PrintSteps`
        `=PrintModBefore`
        `=PrintModAfter`
        `=PrintModFinal`
        `=PrintPasses`,
        `=NoPostopt`
        `=LooseTypes`
        `=Inline`
        Multiple options can be combined with commas.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "autodiff_post_passes",
                    setter: dbopts::autodiff_post_passes,
                    type_desc: desc::parse_opt_string,
                    desc: "set llvm passes to run after enzyme (no passes run when it is empty)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "binary_dep_depinfo",
                    setter: dbopts::binary_dep_depinfo,
                    type_desc: desc::parse_bool,
                    desc: "include artifacts (sysroot, crate dependencies) used during compilation in dep-info \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "box_noalias",
                    setter: dbopts::box_noalias,
                    type_desc: desc::parse_bool,
                    desc: "emit noalias metadata for box (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "branch_protection",
                    setter: dbopts::branch_protection,
                    type_desc: desc::parse_branch_protection,
                    desc: "set options for branch target identification and pointer authentication on AArch64",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::BranchProtection))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "build_sdylib_interface",
                    setter: dbopts::build_sdylib_interface,
                    type_desc: desc::parse_bool,
                    desc: "whether the stable interface is being built",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "cache_proc_macros",
                    setter: dbopts::cache_proc_macros,
                    type_desc: desc::parse_bool,
                    desc: "cache the results of derive proc macro invocations (potentially unsound!) (default: no",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "cf_protection",
                    setter: dbopts::cf_protection,
                    type_desc: desc::parse_cfprotection,
                    desc: "instrument control-flow architecture protection",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "check_cfg_all_expected",
                    setter: dbopts::check_cfg_all_expected,
                    type_desc: desc::parse_bool,
                    desc: "show all expected values in check-cfg diagnostics (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "checksum_hash_algorithm",
                    setter: dbopts::checksum_hash_algorithm,
                    type_desc: desc::parse_cargo_src_file_hash,
                    desc: "hash algorithm of source files used to check freshness in cargo (`blake3` or `sha256`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "codegen_backend",
                    setter: dbopts::codegen_backend,
                    type_desc: desc::parse_opt_string,
                    desc: "the backend to use",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "codegen_emit_retag",
                    setter: dbopts::codegen_emit_retag,
                    type_desc: desc::parse_codegen_retag_options,
                    desc: "emit retag function calls in generated code",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "codegen_source_order",
                    setter: dbopts::codegen_source_order,
                    type_desc: desc::parse_bool,
                    desc: "emit mono items in the order of spans in source files (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "contract_checks",
                    setter: dbopts::contract_checks,
                    type_desc: desc::parse_opt_bool,
                    desc: "emit runtime checks for contract pre- and post-conditions (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "coverage_options",
                    setter: dbopts::coverage_options,
                    type_desc: desc::parse_coverage_options,
                    desc: "control details of coverage instrumentation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "crate_attr",
                    setter: dbopts::crate_attr,
                    type_desc: desc::parse_string_push,
                    desc: "inject the given attribute in the crate",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "cross_crate_inline_threshold",
                    setter: dbopts::cross_crate_inline_threshold,
                    type_desc: desc::parse_inlining_threshold,
                    desc: "threshold to allow cross crate inlining of functions",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "debug_info_type_line_numbers",
                    setter: dbopts::debug_info_type_line_numbers,
                    type_desc: desc::parse_bool,
                    desc: "emit type and line information for additional data types (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "debuginfo_compression",
                    setter: dbopts::debuginfo_compression,
                    type_desc: desc::parse_debuginfo_compression,
                    desc: "compress debug info sections (none, zlib, zstd, default: none)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "debuginfo_for_profiling",
                    setter: dbopts::debuginfo_for_profiling,
                    type_desc: desc::parse_bool,
                    desc: "emit extra debug info to make sample profile more accurate",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "deduplicate_diagnostics",
                    setter: dbopts::deduplicate_diagnostics,
                    type_desc: desc::parse_bool,
                    desc: "deduplicate identical diagnostics (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "default_visibility",
                    setter: dbopts::default_visibility,
                    type_desc: desc::parse_opt_symbol_visibility,
                    desc: "overrides the `default_visibility` setting of the target",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "deny_partial_mitigations",
                    setter: dbopts::deny_partial_mitigations,
                    type_desc: desc::parse_deny_partial_mitigations,
                    desc: "Deny mitigations not enabled for all dependency crates (comma separated list)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dep_info_omit_d_target",
                    setter: dbopts::dep_info_omit_d_target,
                    type_desc: desc::parse_bool,
                    desc: "in dep-info output, omit targets for tracking dependencies of the dep-info files \
        themselves (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "direct_access_external_data",
                    setter: dbopts::direct_access_external_data,
                    type_desc: desc::parse_opt_bool,
                    desc: "Direct or use GOT indirect to reference external data symbols",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "disable_fast_paths",
                    setter: dbopts::disable_fast_paths,
                    type_desc: desc::parse_bool,
                    desc: "disable various performance optimizations in trait solving",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "disable_incr_comp_backend_caching",
                    setter: dbopts::disable_incr_comp_backend_caching,
                    type_desc: desc::parse_bool,
                    desc: "disable caching of compiled objects by the codegen backend during incremental compilation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "disable_param_env_normalization_hack",
                    setter: dbopts::disable_param_env_normalization_hack,
                    type_desc: desc::parse_bool,
                    desc: "do not treat all aliases in the environment as rigid with `-Znext-solver`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dual_proc_macros",
                    setter: dbopts::dual_proc_macros,
                    type_desc: desc::parse_bool,
                    desc: "load proc macros for both target and host, but only link to the target (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_dep_graph",
                    setter: dbopts::dump_dep_graph,
                    type_desc: desc::parse_bool,
                    desc: "dump the dependency graph to `$RUST_DEP_GRAPH` as both a text file and a GraphViz dot file (default: ./dep_graph.{dot, txt}) \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir",
                    setter: dbopts::dump_mir,
                    type_desc: desc::parse_opt_string,
                    desc: "dump MIR state to file.
        `val` is used to select which passes and functions to dump. For example:
        `all` matches all passes and functions,
        `foo` matches all passes for functions whose name contains 'foo',
        `foo & ConstProp` only the 'ConstProp' pass for function names containing 'foo',
        `foo | bar` all passes for function names containing 'foo' or 'bar'.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir_dataflow",
                    setter: dbopts::dump_mir_dataflow,
                    type_desc: desc::parse_bool,
                    desc: "in addition to `.mir` files, create graphviz `.dot` files with dataflow results \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir_dir",
                    setter: dbopts::dump_mir_dir,
                    type_desc: desc::parse_string,
                    desc: "the directory the MIR is dumped into (default: `mir_dump`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir_exclude_alloc_bytes",
                    setter: dbopts::dump_mir_exclude_alloc_bytes,
                    type_desc: desc::parse_bool,
                    desc: "exclude the raw bytes of allocations when dumping MIR (used in tests) (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir_exclude_pass_number",
                    setter: dbopts::dump_mir_exclude_pass_number,
                    type_desc: desc::parse_bool,
                    desc: "exclude the pass number when dumping MIR (used in tests) (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mir_graphviz",
                    setter: dbopts::dump_mir_graphviz,
                    type_desc: desc::parse_bool,
                    desc: "in addition to `.mir` files, create graphviz `.dot` files (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mono_stats",
                    setter: dbopts::dump_mono_stats,
                    type_desc: desc::parse_switch_with_opt_path,
                    desc: "output statistics about monomorphization collection",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dump_mono_stats_format",
                    setter: dbopts::dump_mono_stats_format,
                    type_desc: desc::parse_dump_mono_stats,
                    desc: "the format to use for -Z dump-mono-stats (`markdown` (default) or `json`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dwarf_version",
                    setter: dbopts::dwarf_version,
                    type_desc: desc::parse_opt_number,
                    desc: "version of DWARF debug information to emit (default: 2 or 4, depending on platform)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "dylib_lto",
                    setter: dbopts::dylib_lto,
                    type_desc: desc::parse_bool,
                    desc: "enables LTO for dylib crate type",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "eagerly_emit_delayed_bugs",
                    setter: dbopts::eagerly_emit_delayed_bugs,
                    type_desc: desc::parse_bool,
                    desc: "emit delayed bugs eagerly as errors instead of stashing them and emitting \
        them only if an error has not been emitted",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "ehcont_guard",
                    setter: dbopts::ehcont_guard,
                    type_desc: desc::parse_bool,
                    desc: "generate Windows EHCont Guard tables",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "embed_metadata",
                    setter: dbopts::embed_metadata,
                    type_desc: desc::parse_bool,
                    desc: "embed metadata in rlibs and dylibs (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "embed_source",
                    setter: dbopts::embed_source,
                    type_desc: desc::parse_bool,
                    desc: "embed source text in DWARF debug sections (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "emit_stack_sizes",
                    setter: dbopts::emit_stack_sizes,
                    type_desc: desc::parse_bool,
                    desc: "emit a section containing stack size metadata (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "enforce_type_length_limit",
                    setter: dbopts::enforce_type_length_limit,
                    type_desc: desc::parse_bool,
                    desc: "enforce the type length limit when monomorphizing instances in codegen",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "experimental_default_bounds",
                    setter: dbopts::experimental_default_bounds,
                    type_desc: desc::parse_bool,
                    desc: "enable default bounds for experimental group of auto traits",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "export_executable_symbols",
                    setter: dbopts::export_executable_symbols,
                    type_desc: desc::parse_bool,
                    desc: "export symbols from executables, as if they were dynamic libraries",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "external_clangrt",
                    setter: dbopts::external_clangrt,
                    type_desc: desc::parse_bool,
                    desc: "rely on user specified linker commands to find clangrt",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "extra_const_ub_checks",
                    setter: dbopts::extra_const_ub_checks,
                    type_desc: desc::parse_bool,
                    desc: "turns on more checks to detect const UB, which can be slow (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "fewer_names",
                    setter: dbopts::fewer_names,
                    type_desc: desc::parse_opt_bool,
                    desc: "reduce memory use by retaining fewer names within compilation artifacts (LLVM-IR) \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "fixed_x18",
                    setter: dbopts::fixed_x18,
                    type_desc: desc::parse_bool,
                    desc: "make the x18 register reserved on AArch64 (default: no)",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::FixedX18))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "flatten_format_args",
                    setter: dbopts::flatten_format_args,
                    type_desc: desc::parse_bool,
                    desc: "flatten nested format_args!() and literals into a simplified format_args!() call \
        (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "fmt_debug",
                    setter: dbopts::fmt_debug,
                    type_desc: desc::parse_fmt_debug,
                    desc: "how detailed `#[derive(Debug)]` should be. `full` prints types recursively, \
        `shallow` prints only type names, `none` prints nothing and disables `{:?}`. (default: `full`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "force_intrinsic_fallback",
                    setter: dbopts::force_intrinsic_fallback,
                    type_desc: desc::parse_bool,
                    desc: "always use the fallback body of an intrinsic, if it has one, instead of lowering \
        the intrinsic in the codegen backend (default: no).",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "force_unstable_if_unmarked",
                    setter: dbopts::force_unstable_if_unmarked,
                    type_desc: desc::parse_bool,
                    desc: "force all crates to be `rustc_private` unstable (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "function_return",
                    setter: dbopts::function_return,
                    type_desc: desc::parse_function_return,
                    desc: "replace returns with jumps to `__x86_return_thunk` (default: `keep`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "function_sections",
                    setter: dbopts::function_sections,
                    type_desc: desc::parse_opt_bool,
                    desc: "whether each function should go in its own section",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "future_incompat_test",
                    setter: dbopts::future_incompat_test,
                    type_desc: desc::parse_bool,
                    desc: "forces all lints to be future incompatible, used for internal testing (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "graphviz_dark_mode",
                    setter: dbopts::graphviz_dark_mode,
                    type_desc: desc::parse_bool,
                    desc: "use dark-themed colors in graphviz output (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "graphviz_font",
                    setter: dbopts::graphviz_font,
                    type_desc: desc::parse_string,
                    desc: "use the given `fontname` in graphviz output; can be overridden by setting \
        environment variable `RUSTC_GRAPHVIZ_FONT` (default: `Courier, monospace`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "has_thread_local",
                    setter: dbopts::has_thread_local,
                    type_desc: desc::parse_opt_bool,
                    desc: "explicitly enable the `cfg(target_thread_local)` directive",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "help",
                    setter: dbopts::help,
                    type_desc: desc::parse_no_value,
                    desc: "Print unstable compiler options",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "higher_ranked_assumptions",
                    setter: dbopts::higher_ranked_assumptions,
                    type_desc: desc::parse_bool,
                    desc: "allow deducing higher-ranked outlives assumptions from coroutines when proving auto traits",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "hint_mostly_unused",
                    setter: dbopts::hint_mostly_unused,
                    type_desc: desc::parse_bool,
                    desc: "hint that most of this crate will go unused, to minimize work for uncalled functions",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "hint_msrv",
                    setter: dbopts::hint_msrv,
                    type_desc: desc::parse_rust_version,
                    desc: "control the minimum rust version for lints",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "human_readable_cgu_names",
                    setter: dbopts::human_readable_cgu_names,
                    type_desc: desc::parse_bool,
                    desc: "generate human-readable, predictable names for codegen units (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "identify_regions",
                    setter: dbopts::identify_regions,
                    type_desc: desc::parse_bool,
                    desc: "display unnamed regions as `'<id>`, using a non-ident unique id (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "ignore_directory_in_diagnostics_source_blocks",
                    setter: dbopts::ignore_directory_in_diagnostics_source_blocks,
                    type_desc: desc::parse_string_push,
                    desc: "do not display the source code block in diagnostics for files in the directory",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "implicit_sysroot_deps",
                    setter: dbopts::implicit_sysroot_deps,
                    type_desc: desc::parse_bool,
                    desc: "allows rust to search sysroot for a crate's dependencies (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "incremental_ignore_spans",
                    setter: dbopts::incremental_ignore_spans,
                    type_desc: desc::parse_bool,
                    desc: "ignore spans during ICH computation -- used for testing (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "incremental_info",
                    setter: dbopts::incremental_info,
                    type_desc: desc::parse_bool,
                    desc: "print high-level information about incremental reuse (or the lack thereof) \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "incremental_verify_ich",
                    setter: dbopts::incremental_verify_ich,
                    type_desc: desc::parse_bool,
                    desc: "verify extended properties for incr. comp. (default: no):
        - hashes of green query instances
        - hash collisions of query keys
        - hash collisions when creating dep-nodes",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "indirect_branch_cs_prefix",
                    setter: dbopts::indirect_branch_cs_prefix,
                    type_desc: desc::parse_bool,
                    desc: "add `cs` prefix to `call` and `jmp` to indirect thunks (default: no)",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::IndirectBranchCsPrefix))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_llvm",
                    setter: dbopts::inline_llvm,
                    type_desc: desc::parse_bool,
                    desc: "enable LLVM inlining (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_mir",
                    setter: dbopts::inline_mir,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable MIR inlining (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_mir_forwarder_threshold",
                    setter: dbopts::inline_mir_forwarder_threshold,
                    type_desc: desc::parse_opt_number,
                    desc: "inlining threshold when the caller is a simple forwarding function (default: 30)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_mir_hint_threshold",
                    setter: dbopts::inline_mir_hint_threshold,
                    type_desc: desc::parse_opt_number,
                    desc: "inlining threshold for functions with inline hint (default: 100)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_mir_preserve_debug",
                    setter: dbopts::inline_mir_preserve_debug,
                    type_desc: desc::parse_opt_bool,
                    desc: "when MIR inlining, whether to preserve debug info for callee variables \
        (default: preserve for debuginfo != None, otherwise remove)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "inline_mir_threshold",
                    setter: dbopts::inline_mir_threshold,
                    type_desc: desc::parse_opt_number,
                    desc: "a default MIR inlining threshold (default: 50)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "input_stats",
                    setter: dbopts::input_stats,
                    type_desc: desc::parse_bool,
                    desc: "print some statistics about AST and HIR (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "instrument_mcount",
                    setter: dbopts::instrument_mcount,
                    type_desc: desc::parse_instrument_mcount,
                    desc: "insert function instrument code for mcount-based tracing (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "instrument_xray",
                    setter: dbopts::instrument_xray,
                    type_desc: desc::parse_instrument_xray,
                    desc: "insert function instrument code for XRay-based tracing (default: no)
         Optional extra settings:
         `=always`
         `=never`
         `=ignore-loops`
         `=instruction-threshold=N`
         `=skip-entry`
         `=skip-exit`
         Multiple options can be combined with commas.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "internal_testing_features",
                    setter: dbopts::internal_testing_features,
                    type_desc: desc::parse_bool,
                    desc: "allow certain internal language features to be enabled that help exercise & test the compiler",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "large_data_threshold",
                    setter: dbopts::large_data_threshold,
                    type_desc: desc::parse_opt_number,
                    desc: "set the threshold for objects to be stored in a \"large data\" section \
         (only effective with -Ccode-model=medium, default: 65536)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "layout_seed",
                    setter: dbopts::layout_seed,
                    type_desc: desc::parse_opt_number,
                    desc: "seed layout randomization",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_directives",
                    setter: dbopts::link_directives,
                    type_desc: desc::parse_bool,
                    desc: "honor #[link] directives in the compiled crate (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_native_libraries",
                    setter: dbopts::link_native_libraries,
                    type_desc: desc::parse_bool,
                    desc: "link native libraries in the linker invocation (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "link_only",
                    setter: dbopts::link_only,
                    type_desc: desc::parse_bool,
                    desc: "link the `.rlink` file generated by `-Z no-link` (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "lint_llvm_ir",
                    setter: dbopts::lint_llvm_ir,
                    type_desc: desc::parse_bool,
                    desc: "lint LLVM IR (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "lint_mir",
                    setter: dbopts::lint_mir,
                    type_desc: desc::parse_bool,
                    desc: "lint MIR before and after each transformation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_module_flag",
                    setter: dbopts::llvm_module_flag,
                    type_desc: desc::parse_llvm_module_flag,
                    desc: "a list of module flags to pass to LLVM (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_plugins",
                    setter: dbopts::llvm_plugins,
                    type_desc: desc::parse_list,
                    desc: "a list LLVM plugins to enable (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_target_feature",
                    setter: dbopts::llvm_target_feature,
                    type_desc: desc::parse_target_feature,
                    desc: "enable/disable LLVM-level target features. \
        This feature is unsafe and can cause ABI issues and compiler crashes, \
        because LLVM does not support all target feature combinations.",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::LlvmTargetFeature))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_time_trace",
                    setter: dbopts::llvm_time_trace,
                    type_desc: desc::parse_bool,
                    desc: "generate JSON tracing data file from LLVM data (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "llvm_writable",
                    setter: dbopts::llvm_writable,
                    type_desc: desc::parse_bool,
                    desc: "emit the LLVM writable attribute for mutable reference arguments (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "location_detail",
                    setter: dbopts::location_detail,
                    type_desc: desc::parse_location_detail,
                    desc: "what location details should be tracked when using caller_location, either \
        `none`, or a comma separated list of location details, for which \
        valid options are `file`, `line`, and `column` (default: `file,line,column`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "ls",
                    setter: dbopts::ls,
                    type_desc: desc::parse_list,
                    desc: "decode and print various parts of the crate metadata for a library crate \
        (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "macro_backtrace",
                    setter: dbopts::macro_backtrace,
                    type_desc: desc::parse_bool,
                    desc: "show macro backtraces (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "macro_stats",
                    setter: dbopts::macro_stats,
                    type_desc: desc::parse_bool,
                    desc: "print some statistics about macro expansions (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "maximal_hir_to_mir_coverage",
                    setter: dbopts::maximal_hir_to_mir_coverage,
                    type_desc: desc::parse_bool,
                    desc: "save as much information as possible about the correspondence between MIR and HIR \
        as source scopes (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "merge_functions",
                    setter: dbopts::merge_functions,
                    type_desc: desc::parse_merge_functions,
                    desc: "control the operation of the MergeFunctions LLVM pass, taking \
        the same values as the target option of the same name",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "meta_stats",
                    setter: dbopts::meta_stats,
                    type_desc: desc::parse_bool,
                    desc: "gather metadata statistics (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "metrics_dir",
                    setter: dbopts::metrics_dir,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "the directory metrics emitted by rustc are dumped into (implicitly enables default set of metrics)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "min_function_alignment",
                    setter: dbopts::min_function_alignment,
                    type_desc: desc::parse_align,
                    desc: "align all functions to at least this many bytes. Must be a power of 2",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "min_recursion_limit",
                    setter: dbopts::min_recursion_limit,
                    type_desc: desc::parse_opt_number,
                    desc: "set a minimum recursion limit (final limit = max(this, recursion_limit_from_crate))",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_enable_passes",
                    setter: dbopts::mir_enable_passes,
                    type_desc: desc::parse_list_with_polarity,
                    desc: "use like `-Zmir-enable-passes=+DestinationPropagation,-InstSimplify`. Forces the \
        specified passes to be enabled, overriding all other checks. In particular, this will \
        enable unsound (known-buggy and hence usually disabled) passes without further warning! \
        Passes that are not specified are enabled or disabled by other flags as usual.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_include_spans",
                    setter: dbopts::mir_include_spans,
                    type_desc: desc::parse_mir_include_spans,
                    desc: "include extra comments in mir pretty printing, like line numbers and statement indices, \
         details about types, etc. (boolean for all passes, 'nll' to enable in NLL MIR only, default: 'nll')",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_opt_bisect_limit",
                    setter: dbopts::mir_opt_bisect_limit,
                    type_desc: desc::parse_opt_number,
                    desc: "limit the number of MIR optimization pass executions (global across all bodies). \
        Pass executions after this limit are skipped and reported. (default: no limit)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_opt_level",
                    setter: dbopts::mir_opt_level,
                    type_desc: desc::parse_opt_number,
                    desc: "MIR optimization level (0-4; default: 1 in non optimized builds and 2 in optimized builds)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_preserve_ub",
                    setter: dbopts::mir_preserve_ub,
                    type_desc: desc::parse_bool,
                    desc: "keep place mention statements and reads in trivial SwitchInt terminators, which are interpreted \
        e.g., by miri; implies -Zmir-opt-level=0 (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "mir_strip_debuginfo",
                    setter: dbopts::mir_strip_debuginfo,
                    type_desc: desc::parse_mir_strip_debuginfo,
                    desc: "Whether to remove some of the MIR debug info from methods.  Default: None",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "move_size_limit",
                    setter: dbopts::move_size_limit,
                    type_desc: desc::parse_opt_number,
                    desc: "the size at which the `large_assignments` lint starts to be emitted",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "namespaced_crates",
                    setter: dbopts::namespaced_crates,
                    type_desc: desc::parse_bool,
                    desc: "allow crates to be namespaced by other crates (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "next_solver",
                    setter: dbopts::next_solver,
                    type_desc: desc::parse_next_solver_config,
                    desc: "enable and configure the next generation trait solver used by rustc",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "nll_facts",
                    setter: dbopts::nll_facts,
                    type_desc: desc::parse_bool,
                    desc: "dump facts from NLL analysis into side files (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "nll_facts_dir",
                    setter: dbopts::nll_facts_dir,
                    type_desc: desc::parse_string,
                    desc: "the directory the NLL facts are dumped into (default: `nll-facts`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_analysis",
                    setter: dbopts::no_analysis,
                    type_desc: desc::parse_no_value,
                    desc: "parse and expand the source, but run no analysis",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_codegen",
                    setter: dbopts::no_codegen,
                    type_desc: desc::parse_no_value,
                    desc: "run all passes except codegen; no output",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_generate_arange_section",
                    setter: dbopts::no_generate_arange_section,
                    type_desc: desc::parse_no_value,
                    desc: "omit DWARF address ranges that give faster lookups",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_implied_bounds_compat",
                    setter: dbopts::no_implied_bounds_compat,
                    type_desc: desc::parse_bool,
                    desc: "disable the compatibility version of the `implied_bounds_ty` query",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_leak_check",
                    setter: dbopts::no_leak_check,
                    type_desc: desc::parse_no_value,
                    desc: "disable the 'leak check' for subtyping; unsound, but useful for tests",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_link",
                    setter: dbopts::no_link,
                    type_desc: desc::parse_no_value,
                    desc: "compile without linking",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_parallel_backend",
                    setter: dbopts::no_parallel_backend,
                    type_desc: desc::parse_no_value,
                    desc: "use `--jobs-backend=1` instead",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_profiler_runtime",
                    setter: dbopts::no_profiler_runtime,
                    type_desc: desc::parse_no_value,
                    desc: "prevent automatic injection of the profiler_builtins crate",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_steal_thir",
                    setter: dbopts::no_steal_thir,
                    type_desc: desc::parse_bool,
                    desc: "don't steal the THIR when we're done with it; useful for rustc drivers (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_trait_vptr",
                    setter: dbopts::no_trait_vptr,
                    type_desc: desc::parse_no_value,
                    desc: "disable generation of trait vptr in vtable for upcasting",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "no_unique_section_names",
                    setter: dbopts::no_unique_section_names,
                    type_desc: desc::parse_bool,
                    desc: "do not use unique names for text and data sections when -Z function-sections is used",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "normalize_docs",
                    setter: dbopts::normalize_docs,
                    type_desc: desc::parse_bool,
                    desc: "normalize associated items in rustdoc when generating documentation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "offload",
                    setter: dbopts::offload,
                    type_desc: desc::parse_offload,
                    desc: "a list of offload flags to enable
        Mandatory setting:
        `=Enable`
        Currently the only option available",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "on_broken_pipe",
                    setter: dbopts::on_broken_pipe,
                    type_desc: desc::parse_on_broken_pipe,
                    desc: "behavior of std::io::ErrorKind::BrokenPipe (SIGPIPE)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "osx_rpath_install_name",
                    setter: dbopts::osx_rpath_install_name,
                    type_desc: desc::parse_bool,
                    desc: "pass `-install_name @rpath/...` to the macOS linker (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "packed_bundled_libs",
                    setter: dbopts::packed_bundled_libs,
                    type_desc: desc::parse_bool,
                    desc: "change rlib format to store native libraries as archives",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "packed_stack",
                    setter: dbopts::packed_stack,
                    type_desc: desc::parse_bool,
                    desc: "use packed stack frames (s390x only) (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "panic_abort_tests",
                    setter: dbopts::panic_abort_tests,
                    type_desc: desc::parse_bool,
                    desc: "support compiling tests with panic=abort (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "panic_in_drop",
                    setter: dbopts::panic_in_drop,
                    type_desc: desc::parse_panic_strategy,
                    desc: "panic strategy for panics in drops",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "parse_crate_root_only",
                    setter: dbopts::parse_crate_root_only,
                    type_desc: desc::parse_bool,
                    desc: "parse the crate root file only; do not parse other files, compile, assemble, or link \
        (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "patchable_function_entry",
                    setter: dbopts::patchable_function_entry,
                    type_desc: desc::parse_patchable_function_entry,
                    desc: "nop padding at function entry",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "plt",
                    setter: dbopts::plt,
                    type_desc: desc::parse_opt_bool,
                    desc: "whether to use the PLT when calling into shared libraries;
        only has effect for PIC code on systems with ELF binaries
        (default: PLT is disabled if full relro is enabled on x86_64)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "pointer_authentication",
                    setter: dbopts::pointer_authentication,
                    type_desc: desc::parse_pointer_authentication_list_with_polarity,
                    desc: "A comma-separated list of pointer authentication options, each prefixed with `+` (enable) or `-` (disable). Available options:
        `aarch64-jump-table-hardening` - enable hardened lowering for jump-table dispatch
        `auth-traps` - trap immediately on pointer authentication failure
        `calls` - enable signing and authentication of all indirect calls
        `elf-got` - enable authentication of pointers from GOT (ELF only)
        `function-pointer-type-discrimination` - enable type discrimination on C function pointers
        `indirect-gotos` - enable signing and authentication of indirect goto targets
        `init-fini` - enable signing of function pointers in init/fini arrays
        `init-fini-address-discrimination` - enable address discrimination in init/fini arrays
        `intrinsics` - pointer authentication intrinsics
        `return-addresses` - enable signing and authentication of return addresses
        `typeinfo-vt-ptr-discrimination - incorporate type and address discrimination in authenticated vtable pointers for std::type_info
        `vt-ptr-addr-discrimination - incorporate address discrimination in authenticated vtable pointers
        `vt-ptr-type-discrimination - incorporate type discrimination in authenticated vtable pointers
        Example: `-Zpointer-authentication=+calls,-init-fini`.",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::PointerAuthentication))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "polonius",
                    setter: dbopts::polonius,
                    type_desc: desc::parse_polonius,
                    desc: POLONIUS_HELP,
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "pre_link_arg",
                    setter: dbopts::pre_link_arg,
                    type_desc: desc::parse_string_push,
                    desc: "a single extra argument to prepend the linker invocation (can be used several times)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "pre_link_args",
                    setter: dbopts::pre_link_args,
                    type_desc: desc::parse_list,
                    desc: "extra arguments to prepend to the linker invocation (space separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "precise_enum_drop_elaboration",
                    setter: dbopts::precise_enum_drop_elaboration,
                    type_desc: desc::parse_bool,
                    desc: "use a more precise version of drop elaboration for matches on enums (default: yes). \
        This results in better codegen, but has caused miscompilations on some tier 2 platforms. \
        See #77382 and #74551.",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "print_codegen_stats",
                    setter: dbopts::print_codegen_stats,
                    type_desc: desc::parse_bool,
                    desc: "print codegen statistics (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "print_codegen_stats_json",
                    setter: dbopts::print_codegen_stats_json,
                    type_desc: desc::parse_opt_string,
                    desc: "print codegen statistics in JSON to a file (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "print_llvm_passes",
                    setter: dbopts::print_llvm_passes,
                    type_desc: desc::parse_bool,
                    desc: "print the LLVM optimization passes being run (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "print_mono_items",
                    setter: dbopts::print_mono_items,
                    type_desc: desc::parse_bool,
                    desc: "print the result of the monomorphization collection pass (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "print_type_sizes",
                    setter: dbopts::print_type_sizes,
                    type_desc: desc::parse_bool,
                    desc: "print layout information for each type encountered (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "proc_macro_backtrace",
                    setter: dbopts::proc_macro_backtrace,
                    type_desc: desc::parse_bool,
                    desc: "show backtraces for panics during proc-macro execution (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "proc_macro_execution_strategy",
                    setter: dbopts::proc_macro_execution_strategy,
                    type_desc: desc::parse_proc_macro_execution_strategy,
                    desc: "how to run proc-macro code (default: same-thread)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "profile_closures",
                    setter: dbopts::profile_closures,
                    type_desc: desc::parse_no_value,
                    desc: "profile size of closures",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "profiler_runtime",
                    setter: dbopts::profiler_runtime,
                    type_desc: desc::parse_string,
                    desc: "name of the profiler runtime crate to automatically inject (default: `profiler_builtins`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "query_dep_graph",
                    setter: dbopts::query_dep_graph,
                    type_desc: desc::parse_bool,
                    desc: "enable queries of the dependency graph for regression testing (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "randomize_layout",
                    setter: dbopts::randomize_layout,
                    type_desc: desc::parse_bool,
                    desc: "randomize the layout of types (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "reg_struct_return",
                    setter: dbopts::reg_struct_return,
                    type_desc: desc::parse_bool,
                    desc: "On x86-32 targets, it overrides the default ABI to return small structs in registers.
        It is UNSOUND to link together crates that use different values for this flag!",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::RegStructReturn))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "regparm",
                    setter: dbopts::regparm,
                    type_desc: desc::parse_opt_number,
                    desc: "On x86-32 targets, setting this to N causes the compiler to pass N arguments \
        in registers EAX, EDX, and ECX instead of on the stack for\
        \"C\", \"cdecl\", and \"stdcall\" fn.\
        It is UNSOUND to link together crates that use different values for this flag!",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Regparm))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "relax_elf_relocations",
                    setter: dbopts::relax_elf_relocations,
                    type_desc: desc::parse_opt_bool,
                    desc: "whether ELF relocations can be relaxed",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "remap_cwd_prefix",
                    setter: dbopts::remap_cwd_prefix,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "remap paths under the current working directory to this path prefix",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "remark_dir",
                    setter: dbopts::remark_dir,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "directory into which to write optimization remarks (if not specified, they will be \
written to standard error output)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "renormalize_rigid_aliases",
                    setter: dbopts::renormalize_rigid_aliases,
                    type_desc: desc::parse_bool,
                    desc: "do not skip rigid aliases in normalization for internal debugging",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "retpoline",
                    setter: dbopts::retpoline,
                    type_desc: desc::parse_bool,
                    desc: "enables retpoline-indirect-branches and retpoline-indirect-calls target features (default: no)",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Retpoline))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "retpoline_external_thunk",
                    setter: dbopts::retpoline_external_thunk,
                    type_desc: desc::parse_bool,
                    desc: "enables retpoline-external-thunk, retpoline-indirect-branches and retpoline-indirect-calls \
        target features (default: no)",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::RetpolineExternalThunk))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer",
                    setter: dbopts::sanitizer,
                    type_desc: desc::parse_sanitizers,
                    desc: "use a sanitizer",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::Sanitizer))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_ignorelist",
                    setter: dbopts::sanitizer_ignorelist,
                    type_desc: desc::parse_list,
                    desc: "list of files providing ignorelists for sanitizers",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_cfi_canonical_jump_tables",
                    setter: dbopts::sanitizer_cfi_canonical_jump_tables,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable canonical jump tables (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_cfi_generalize_pointers",
                    setter: dbopts::sanitizer_cfi_generalize_pointers,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable generalizing pointer types (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_cfi_normalize_integers",
                    setter: dbopts::sanitizer_cfi_normalize_integers,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable normalizing integer types (default: no)",
                    removed: None,
                    tmod: None.or(Some(OptionsTargetModifiers::UnstableOptions(UnstableOptionsTargetModifiers::SanitizerCfiNormalizeIntegers))),
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_cfi_diag",
                    setter: dbopts::sanitizer_cfi_diag,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable CFI diagnostics (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_cfi_recover",
                    setter: dbopts::sanitizer_cfi_recover,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable CFI recovery (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_dataflow_abilist",
                    setter: dbopts::sanitizer_dataflow_abilist,
                    type_desc: desc::parse_comma_list,
                    desc: "additional ABI list files that control how shadow parameters are passed (comma separated)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_kcfi_arity",
                    setter: dbopts::sanitizer_kcfi_arity,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable KCFI arity indicator (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_memory_track_origins",
                    setter: dbopts::sanitizer_memory_track_origins,
                    type_desc: desc::parse_sanitizer_memory_track_origins,
                    desc: "enable origins tracking in MemorySanitizer",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "sanitizer_recover",
                    setter: dbopts::sanitizer_recover,
                    type_desc: desc::parse_sanitizers,
                    desc: "enable recovery for selected sanitizers",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "self_profile",
                    setter: dbopts::self_profile,
                    type_desc: desc::parse_switch_with_opt_path,
                    desc: "run the self profiler and output the raw event data",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "self_profile_counter",
                    setter: dbopts::self_profile_counter,
                    type_desc: desc::parse_string,
                    desc: "counter used by the self profiler (default: `wall-time`), one of:
        `wall-time` (monotonic clock, i.e. `std::time::Instant`)
        `instructions:u` (retired instructions, userspace-only)
        `instructions-minus-irqs:u` (subtracting hardware interrupt counts for extra accuracy)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "self_profile_events",
                    setter: dbopts::self_profile_events,
                    type_desc: desc::parse_opt_comma_list,
                    desc: "specify the events recorded by the self profiler;
        for example: `-Z self-profile-events=default,query-keys`
        all option groups: none, all, default, args
          `default` contains: generic-activity, query-provider, query-cache-hit-count, \
                            query-blocked, incr-cache-load, incr-result-hashing, artifact-sizes
             `args` contains: query-keys, function-args
        remaining (ungrouped) options: query-cache-hit, llvm",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "share_generics",
                    setter: dbopts::share_generics,
                    type_desc: desc::parse_opt_bool,
                    desc: "make the current crate share its generic instantiations",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "shell_argfiles",
                    setter: dbopts::shell_argfiles,
                    type_desc: desc::parse_bool,
                    desc: "allow argument files to be specified with POSIX \"shell-style\" argument quoting",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "simulate_remapped_rust_src_base",
                    setter: dbopts::simulate_remapped_rust_src_base,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "simulate the effect of remap-debuginfo = true at bootstrapping by remapping path \
        to rust's source base directory. only meant for testing purposes",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "small_data_threshold",
                    setter: dbopts::small_data_threshold,
                    type_desc: desc::parse_opt_number,
                    desc: "Set the threshold for objects to be stored in a \"small data\" section",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "span_debug",
                    setter: dbopts::span_debug,
                    type_desc: desc::parse_bool,
                    desc: "forward proc_macro::Span's `Debug` impl to `Span`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "span_free_formats",
                    setter: dbopts::span_free_formats,
                    type_desc: desc::parse_bool,
                    desc: "exclude spans when debug-printing compiler state (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "split_dwarf_inlining",
                    setter: dbopts::split_dwarf_inlining,
                    type_desc: desc::parse_bool,
                    desc: "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",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "split_dwarf_kind",
                    setter: dbopts::split_dwarf_kind,
                    type_desc: desc::parse_split_dwarf_kind,
                    desc: "split dwarf variant (only if -Csplit-debuginfo is enabled and on relevant platform)
        (default: `split`)

        `split`: sections which do not require relocation are written into a DWARF object (`.dwo`)
                 file which is ignored by the linker
        `single`: sections which do not require relocation are written into object file but ignored
                  by the linker",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "split_dwarf_out_dir",
                    setter: dbopts::split_dwarf_out_dir,
                    type_desc: desc::parse_opt_pathbuf,
                    desc: "location for writing split DWARF objects (`.dwo`) if enabled",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "split_lto_unit",
                    setter: dbopts::split_lto_unit,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable LTO unit splitting (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "src_hash_algorithm",
                    setter: dbopts::src_hash_algorithm,
                    type_desc: desc::parse_src_file_hash,
                    desc: "hash algorithm of source files in debug info (`md5`, `sha1`, or `sha256`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "stack_protector",
                    setter: dbopts::stack_protector,
                    type_desc: desc::parse_stack_protector,
                    desc: "control stack smash protection strategy (`rustc --print stack-protector-strategies` for details)",
                    removed: None,
                    tmod: None,
                    mitigation: None.or(Some(mitigation_coverage::DeniedPartialMitigationKind::StackProtector)),
                },
                OptionDesc {
                    name: "staticlib_allow_rdylib_deps",
                    setter: dbopts::staticlib_allow_rdylib_deps,
                    type_desc: desc::parse_bool,
                    desc: "allow staticlibs to have rust dylib dependencies",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "staticlib_hide_internal_symbols",
                    setter: dbopts::staticlib_hide_internal_symbols,
                    type_desc: desc::parse_bool,
                    desc: "hide non-exported Rust symbols when building staticlibs by setting STV_HIDDEN",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "staticlib_rename_internal_symbols",
                    setter: dbopts::staticlib_rename_internal_symbols,
                    type_desc: desc::parse_bool,
                    desc: "rename non-exported Rust symbols when building staticlibs to avoid conflicts",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "staticlib_prefer_dynamic",
                    setter: dbopts::staticlib_prefer_dynamic,
                    type_desc: desc::parse_bool,
                    desc: "prefer dynamic linking to static linking for staticlibs (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "strict_init_checks",
                    setter: dbopts::strict_init_checks,
                    type_desc: desc::parse_bool,
                    desc: "control if mem::uninitialized and mem::zeroed panic on more UB",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "teach",
                    setter: dbopts::teach,
                    type_desc: desc::parse_bool,
                    desc: "show extended diagnostic help (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "temps_dir",
                    setter: dbopts::temps_dir,
                    type_desc: desc::parse_opt_string,
                    desc: "the directory the intermediate files are written to",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "terminal_urls",
                    setter: dbopts::terminal_urls,
                    type_desc: desc::parse_terminal_url,
                    desc: "use the OSC 8 hyperlink terminal specification to print hyperlinks in the compiler output",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "thinlto",
                    setter: dbopts::thinlto,
                    type_desc: desc::parse_opt_bool,
                    desc: "enable ThinLTO when possible",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "threads",
                    setter: dbopts::threads,
                    type_desc: desc::parse_opt_string,
                    desc: "use `--jobs-frontend` instead",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "time_llvm_passes",
                    setter: dbopts::time_llvm_passes,
                    type_desc: desc::parse_bool,
                    desc: "measure time of each LLVM pass (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "time_passes",
                    setter: dbopts::time_passes,
                    type_desc: desc::parse_bool,
                    desc: "measure time of each rustc pass (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "time_passes_format",
                    setter: dbopts::time_passes_format,
                    type_desc: desc::parse_time_passes_format,
                    desc: "the format to use for -Z time-passes (`text` (default) or `json`)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "tiny_const_eval_limit",
                    setter: dbopts::tiny_const_eval_limit,
                    type_desc: desc::parse_bool,
                    desc: "sets a tiny, non-configurable limit for const eval; useful for compiler tests",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "tls_model",
                    setter: dbopts::tls_model,
                    type_desc: desc::parse_tls_model,
                    desc: "choose the TLS model to use (`rustc --print tls-models` for details)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "trace_macros",
                    setter: dbopts::trace_macros,
                    type_desc: desc::parse_bool,
                    desc: "for every macro invocation, print its name and arguments (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "track_diagnostics",
                    setter: dbopts::track_diagnostics,
                    type_desc: desc::parse_bool,
                    desc: "tracks where in rustc a diagnostic was emitted",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "translate_remapped_path_to_local_path",
                    setter: dbopts::translate_remapped_path_to_local_path,
                    type_desc: desc::parse_bool,
                    desc: "translate remapped paths into local paths when possible (default: yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "trap_unreachable",
                    setter: dbopts::trap_unreachable,
                    type_desc: desc::parse_opt_bool,
                    desc: "generate trap instructions for unreachable intrinsics (default: use target setting, usually yes)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "treat_err_as_bug",
                    setter: dbopts::treat_err_as_bug,
                    type_desc: desc::parse_treat_err_as_bug,
                    desc: "treat the `val`th error that occurs as bug (default if not specified: 0 - don't treat errors as bugs. \
        default if specified without a value: 1 - treat the first error as bug)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "trim_diagnostic_paths",
                    setter: dbopts::trim_diagnostic_paths,
                    type_desc: desc::parse_bool,
                    desc: "in diagnostics, use heuristics to shorten paths referring to items",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "tune_cpu",
                    setter: dbopts::tune_cpu,
                    type_desc: desc::parse_opt_string,
                    desc: "select processor to schedule for (`rustc --print target-cpus` for details)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "typing_mode_post_typeck_until_borrowck",
                    setter: dbopts::typing_mode_post_typeck_until_borrowck,
                    type_desc: desc::parse_bool,
                    desc: "enable `TypingMode::PostTypeckUntilBorrowck`, changing the way opaque types are handled during MIR borrowck",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "ub_checks",
                    setter: dbopts::ub_checks,
                    type_desc: desc::parse_opt_bool,
                    desc: "emit runtime checks for Undefined Behavior (default: -Cdebug-assertions)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "ui_testing",
                    setter: dbopts::ui_testing,
                    type_desc: desc::parse_bool,
                    desc: "emit compiler diagnostics in a form suitable for UI testing (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "uninit_const_chunk_threshold",
                    setter: dbopts::uninit_const_chunk_threshold,
                    type_desc: desc::parse_number,
                    desc: "allow generating const initializers with mixed init/uninit chunks, \
        and set the maximum number of chunks for which this is allowed (default: 16)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "unleash_the_miri_inside_of_you",
                    setter: dbopts::unleash_the_miri_inside_of_you,
                    type_desc: desc::parse_bool,
                    desc: "take the brakes off const evaluation. NOTE: this is unsound (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "unpretty",
                    setter: dbopts::unpretty,
                    type_desc: desc::parse_unpretty,
                    desc: "present the input source, unstable (and less-pretty) variants;
        `normal`,
        `expanded`, `expanded,identified`,
        `expanded,hygiene` (with internal representations),
        `ast-tree` (raw AST before expansion),
        `ast-tree,expanded` (raw AST after expansion),
        `hir` (the HIR), `hir,identified`,
        `hir,typed` (HIR with types for each node),
        `hir-tree` (dump the raw HIR),
        `thir-tree`, `thir-flat`,
        `mir` (the MIR), or `mir-cfg` (graphviz formatted MIR)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "unsound_mir_opts",
                    setter: dbopts::unsound_mir_opts,
                    type_desc: desc::parse_bool,
                    desc: "enable unsound and buggy MIR optimizations (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "unstable_options",
                    setter: dbopts::unstable_options,
                    type_desc: desc::parse_no_value,
                    desc: "adds unstable command line options to rustc interface (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "use_ctors_section",
                    setter: dbopts::use_ctors_section,
                    type_desc: desc::parse_opt_bool,
                    desc: "use legacy .ctors section for initializers rather than .init_array",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "use_sync_unwind",
                    setter: dbopts::use_sync_unwind,
                    type_desc: desc::parse_opt_bool,
                    desc: "Generate sync unwind tables instead of async unwind tables (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "validate_mir",
                    setter: dbopts::validate_mir,
                    type_desc: desc::parse_bool,
                    desc: "validate MIR after each transformation",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "verbose_asm",
                    setter: dbopts::verbose_asm,
                    type_desc: desc::parse_bool,
                    desc: "add descriptive comments from LLVM to the assembly (may change behavior) (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "verbose_internals",
                    setter: dbopts::verbose_internals,
                    type_desc: desc::parse_bool,
                    desc: "in general, enable more debug printouts (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "verify_llvm_ir",
                    setter: dbopts::verify_llvm_ir,
                    type_desc: desc::parse_bool,
                    desc: "verify LLVM IR (default: no)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "virtual_function_elimination",
                    setter: dbopts::virtual_function_elimination,
                    type_desc: desc::parse_bool,
                    desc: "enables dead virtual function elimination optimization. \
        Requires `-Clto[=[fat,yes]]`",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "wasi_exec_model",
                    setter: dbopts::wasi_exec_model,
                    type_desc: desc::parse_wasi_exec_model,
                    desc: "whether to build a wasi command or reactor",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "wasm_c_abi",
                    setter: dbopts::wasm_c_abi,
                    type_desc: desc::parse_wasm_c_abi,
                    desc: "use spec-compliant C ABI for `wasm32-unknown-unknown` (deprecated, always enabled)",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "wasm_proc_macros",
                    setter: dbopts::wasm_proc_macros,
                    type_desc: desc::parse_bool,
                    desc: "enable support for compiling and loading wasm proc macros",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                },
                OptionDesc {
                    name: "write_long_types_to_disk",
                    setter: dbopts::write_long_types_to_disk,
                    type_desc: desc::parse_bool,
                    desc: "whether long type names should be written to files instead of being printed in errors",
                    removed: None,
                    tmod: None,
                    mitigation: None,
                }];
mod dbopts {
    pub(super) fn allow_features(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_comma_list(&mut cg.allow_features, v)
    }
    pub(super) fn allow_partial_mitigations(_cg: &mut super::UnstableOptions,
        collected: &mut super::CollectedOptions, v: Option<&str>,
        index: usize) -> bool {
        collected.mitigations.handle_allowdeny_mitigation_option(v, index,
            true)
    }
    pub(super) fn always_encode_mir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.always_encode_mir, v)
    }
    pub(super) fn annotate_moves(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_annotate_moves(&mut cg.annotate_moves, v)
    }
    pub(super) fn assert_incr_state(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_assert_incr_state(&mut cg.assert_incr_state, v)
    }
    pub(super) fn assume_incomplete_release(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.assume_incomplete_release, v)
    }
    pub(super) fn assumptions_on_binders(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.assumptions_on_binders, v)
    }
    pub(super) fn autodiff(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_autodiff(&mut cg.autodiff, v)
    }
    pub(super) fn autodiff_post_passes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.autodiff_post_passes, v)
    }
    pub(super) fn binary_dep_depinfo(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.binary_dep_depinfo, v)
    }
    pub(super) fn box_noalias(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.box_noalias, v)
    }
    pub(super) fn branch_protection(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_branch_protection(&mut cg.branch_protection, v)
    }
    pub(super) fn build_sdylib_interface(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.build_sdylib_interface, v)
    }
    pub(super) fn cache_proc_macros(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.cache_proc_macros, v)
    }
    pub(super) fn cf_protection(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_cfprotection(&mut cg.cf_protection, v)
    }
    pub(super) fn check_cfg_all_expected(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.check_cfg_all_expected, v)
    }
    pub(super) fn checksum_hash_algorithm(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_cargo_src_file_hash(&mut cg.checksum_hash_algorithm,
            v)
    }
    pub(super) fn codegen_backend(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.codegen_backend, v)
    }
    pub(super) fn codegen_emit_retag(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_codegen_retag_options(&mut cg.codegen_emit_retag,
            v)
    }
    pub(super) fn codegen_source_order(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.codegen_source_order, v)
    }
    pub(super) fn contract_checks(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.contract_checks, v)
    }
    pub(super) fn coverage_options(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_coverage_options(&mut cg.coverage_options, v)
    }
    pub(super) fn crate_attr(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string_push(&mut cg.crate_attr, v)
    }
    pub(super) fn cross_crate_inline_threshold(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_inlining_threshold(&mut cg.cross_crate_inline_threshold,
            v)
    }
    pub(super) fn debug_info_type_line_numbers(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.debug_info_type_line_numbers, v)
    }
    pub(super) fn debuginfo_compression(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_debuginfo_compression(&mut cg.debuginfo_compression,
            v)
    }
    pub(super) fn debuginfo_for_profiling(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.debuginfo_for_profiling, v)
    }
    pub(super) fn deduplicate_diagnostics(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.deduplicate_diagnostics, v)
    }
    pub(super) fn default_visibility(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_symbol_visibility(&mut cg.default_visibility,
            v)
    }
    pub(super) fn deny_partial_mitigations(_cg: &mut super::UnstableOptions,
        collected: &mut super::CollectedOptions, v: Option<&str>,
        index: usize) -> bool {
        collected.mitigations.handle_allowdeny_mitigation_option(v, index,
            false)
    }
    pub(super) fn dep_info_omit_d_target(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dep_info_omit_d_target, v)
    }
    pub(super) fn direct_access_external_data(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.direct_access_external_data, v)
    }
    pub(super) fn disable_fast_paths(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.disable_fast_paths, v)
    }
    pub(super) fn disable_incr_comp_backend_caching(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.disable_incr_comp_backend_caching, v)
    }
    pub(super) fn disable_param_env_normalization_hack(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.disable_param_env_normalization_hack,
            v)
    }
    pub(super) fn dual_proc_macros(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dual_proc_macros, v)
    }
    pub(super) fn dump_dep_graph(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dump_dep_graph, v)
    }
    pub(super) fn dump_mir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.dump_mir, v)
    }
    pub(super) fn dump_mir_dataflow(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dump_mir_dataflow, v)
    }
    pub(super) fn dump_mir_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.dump_mir_dir, v)
    }
    pub(super) fn dump_mir_exclude_alloc_bytes(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dump_mir_exclude_alloc_bytes, v)
    }
    pub(super) fn dump_mir_exclude_pass_number(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dump_mir_exclude_pass_number, v)
    }
    pub(super) fn dump_mir_graphviz(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dump_mir_graphviz, v)
    }
    pub(super) fn dump_mono_stats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_switch_with_opt_path(&mut cg.dump_mono_stats, v)
    }
    pub(super) fn dump_mono_stats_format(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_dump_mono_stats(&mut cg.dump_mono_stats_format, v)
    }
    pub(super) fn dwarf_version(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.dwarf_version, v)
    }
    pub(super) fn dylib_lto(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.dylib_lto, v)
    }
    pub(super) fn eagerly_emit_delayed_bugs(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.eagerly_emit_delayed_bugs, v)
    }
    pub(super) fn ehcont_guard(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.ehcont_guard, v)
    }
    pub(super) fn embed_metadata(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.embed_metadata, v)
    }
    pub(super) fn embed_source(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.embed_source, v)
    }
    pub(super) fn emit_stack_sizes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.emit_stack_sizes, v)
    }
    pub(super) fn enforce_type_length_limit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.enforce_type_length_limit, v)
    }
    pub(super) fn experimental_default_bounds(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.experimental_default_bounds, v)
    }
    pub(super) fn export_executable_symbols(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.export_executable_symbols, v)
    }
    pub(super) fn external_clangrt(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.external_clangrt, v)
    }
    pub(super) fn extra_const_ub_checks(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.extra_const_ub_checks, v)
    }
    pub(super) fn fewer_names(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.fewer_names, v)
    }
    pub(super) fn fixed_x18(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.fixed_x18, v)
    }
    pub(super) fn flatten_format_args(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.flatten_format_args, v)
    }
    pub(super) fn fmt_debug(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_fmt_debug(&mut cg.fmt_debug, v)
    }
    pub(super) fn force_intrinsic_fallback(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.force_intrinsic_fallback, v)
    }
    pub(super) fn force_unstable_if_unmarked(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.force_unstable_if_unmarked, v)
    }
    pub(super) fn function_return(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_function_return(&mut cg.function_return, v)
    }
    pub(super) fn function_sections(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.function_sections, v)
    }
    pub(super) fn future_incompat_test(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.future_incompat_test, v)
    }
    pub(super) fn graphviz_dark_mode(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.graphviz_dark_mode, v)
    }
    pub(super) fn graphviz_font(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.graphviz_font, v)
    }
    pub(super) fn has_thread_local(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.has_thread_local, v)
    }
    pub(super) fn help(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.help, v)
    }
    pub(super) fn higher_ranked_assumptions(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.higher_ranked_assumptions, v)
    }
    pub(super) fn hint_mostly_unused(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.hint_mostly_unused, v)
    }
    pub(super) fn hint_msrv(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_rust_version(&mut cg.hint_msrv, v)
    }
    pub(super) fn human_readable_cgu_names(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.human_readable_cgu_names, v)
    }
    pub(super) fn identify_regions(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.identify_regions, v)
    }
    pub(super) fn ignore_directory_in_diagnostics_source_blocks(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string_push(&mut cg.ignore_directory_in_diagnostics_source_blocks,
            v)
    }
    pub(super) fn implicit_sysroot_deps(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.implicit_sysroot_deps, v)
    }
    pub(super) fn incremental_ignore_spans(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.incremental_ignore_spans, v)
    }
    pub(super) fn incremental_info(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.incremental_info, v)
    }
    pub(super) fn incremental_verify_ich(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.incremental_verify_ich, v)
    }
    pub(super) fn indirect_branch_cs_prefix(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.indirect_branch_cs_prefix, v)
    }
    pub(super) fn inline_llvm(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.inline_llvm, v)
    }
    pub(super) fn inline_mir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.inline_mir, v)
    }
    pub(super) fn inline_mir_forwarder_threshold(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.inline_mir_forwarder_threshold,
            v)
    }
    pub(super) fn inline_mir_hint_threshold(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.inline_mir_hint_threshold, v)
    }
    pub(super) fn inline_mir_preserve_debug(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.inline_mir_preserve_debug, v)
    }
    pub(super) fn inline_mir_threshold(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.inline_mir_threshold, v)
    }
    pub(super) fn input_stats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.input_stats, v)
    }
    pub(super) fn instrument_mcount(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_instrument_mcount(&mut cg.instrument_mcount, v)
    }
    pub(super) fn instrument_xray(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_instrument_xray(&mut cg.instrument_xray, v)
    }
    pub(super) fn internal_testing_features(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.internal_testing_features, v)
    }
    pub(super) fn large_data_threshold(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.large_data_threshold, v)
    }
    pub(super) fn layout_seed(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.layout_seed, v)
    }
    pub(super) fn link_directives(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.link_directives, v)
    }
    pub(super) fn link_native_libraries(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.link_native_libraries, v)
    }
    pub(super) fn link_only(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.link_only, v)
    }
    pub(super) fn lint_llvm_ir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.lint_llvm_ir, v)
    }
    pub(super) fn lint_mir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.lint_mir, v)
    }
    pub(super) fn llvm_module_flag(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_llvm_module_flag(&mut cg.llvm_module_flag, v)
    }
    pub(super) fn llvm_plugins(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.llvm_plugins, v)
    }
    pub(super) fn llvm_target_feature(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_target_feature(&mut cg.llvm_target_feature, v)
    }
    pub(super) fn llvm_time_trace(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.llvm_time_trace, v)
    }
    pub(super) fn llvm_writable(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.llvm_writable, v)
    }
    pub(super) fn location_detail(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_location_detail(&mut cg.location_detail, v)
    }
    pub(super) fn ls(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.ls, v)
    }
    pub(super) fn macro_backtrace(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.macro_backtrace, v)
    }
    pub(super) fn macro_stats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.macro_stats, v)
    }
    pub(super) fn maximal_hir_to_mir_coverage(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.maximal_hir_to_mir_coverage, v)
    }
    pub(super) fn merge_functions(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_merge_functions(&mut cg.merge_functions, v)
    }
    pub(super) fn meta_stats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.meta_stats, v)
    }
    pub(super) fn metrics_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.metrics_dir, v)
    }
    pub(super) fn min_function_alignment(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_align(&mut cg.min_function_alignment, v)
    }
    pub(super) fn min_recursion_limit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.min_recursion_limit, v)
    }
    pub(super) fn mir_enable_passes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list_with_polarity(&mut cg.mir_enable_passes, v)
    }
    pub(super) fn mir_include_spans(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_mir_include_spans(&mut cg.mir_include_spans, v)
    }
    pub(super) fn mir_opt_bisect_limit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.mir_opt_bisect_limit, v)
    }
    pub(super) fn mir_opt_level(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.mir_opt_level, v)
    }
    pub(super) fn mir_preserve_ub(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.mir_preserve_ub, v)
    }
    pub(super) fn mir_strip_debuginfo(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_mir_strip_debuginfo(&mut cg.mir_strip_debuginfo,
            v)
    }
    pub(super) fn move_size_limit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.move_size_limit, v)
    }
    pub(super) fn namespaced_crates(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.namespaced_crates, v)
    }
    pub(super) fn next_solver(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_next_solver_config(&mut cg.next_solver, v)
    }
    pub(super) fn nll_facts(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.nll_facts, v)
    }
    pub(super) fn nll_facts_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.nll_facts_dir, v)
    }
    pub(super) fn no_analysis(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_analysis, v)
    }
    pub(super) fn no_codegen(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_codegen, v)
    }
    pub(super) fn no_generate_arange_section(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_generate_arange_section, v)
    }
    pub(super) fn no_implied_bounds_compat(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.no_implied_bounds_compat, v)
    }
    pub(super) fn no_leak_check(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_leak_check, v)
    }
    pub(super) fn no_link(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_link, v)
    }
    pub(super) fn no_parallel_backend(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_parallel_backend, v)
    }
    pub(super) fn no_profiler_runtime(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_profiler_runtime, v)
    }
    pub(super) fn no_steal_thir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.no_steal_thir, v)
    }
    pub(super) fn no_trait_vptr(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.no_trait_vptr, v)
    }
    pub(super) fn no_unique_section_names(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.no_unique_section_names, v)
    }
    pub(super) fn normalize_docs(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.normalize_docs, v)
    }
    pub(super) fn offload(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_offload(&mut cg.offload, v)
    }
    pub(super) fn on_broken_pipe(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_on_broken_pipe(&mut cg.on_broken_pipe, v)
    }
    pub(super) fn osx_rpath_install_name(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.osx_rpath_install_name, v)
    }
    pub(super) fn packed_bundled_libs(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.packed_bundled_libs, v)
    }
    pub(super) fn packed_stack(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.packed_stack, v)
    }
    pub(super) fn panic_abort_tests(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.panic_abort_tests, v)
    }
    pub(super) fn panic_in_drop(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_panic_strategy(&mut cg.panic_in_drop, v)
    }
    pub(super) fn parse_crate_root_only(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.parse_crate_root_only, v)
    }
    pub(super) fn patchable_function_entry(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_patchable_function_entry(&mut cg.patchable_function_entry,
            v)
    }
    pub(super) fn plt(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.plt, v)
    }
    pub(super) fn pointer_authentication(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_pointer_authentication_list_with_polarity(&mut cg.pointer_authentication,
            v)
    }
    pub(super) fn polonius(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_polonius(&mut cg.polonius, v)
    }
    pub(super) fn pre_link_arg(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string_push(&mut cg.pre_link_args, v)
    }
    pub(super) fn pre_link_args(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.pre_link_args, v)
    }
    pub(super) fn precise_enum_drop_elaboration(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.precise_enum_drop_elaboration, v)
    }
    pub(super) fn print_codegen_stats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.print_codegen_stats, v)
    }
    pub(super) fn print_codegen_stats_json(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.print_codegen_stats_json, v)
    }
    pub(super) fn print_llvm_passes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.print_llvm_passes, v)
    }
    pub(super) fn print_mono_items(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.print_mono_items, v)
    }
    pub(super) fn print_type_sizes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.print_type_sizes, v)
    }
    pub(super) fn proc_macro_backtrace(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.proc_macro_backtrace, v)
    }
    pub(super) fn proc_macro_execution_strategy(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_proc_macro_execution_strategy(&mut cg.proc_macro_execution_strategy,
            v)
    }
    pub(super) fn profile_closures(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.profile_closures, v)
    }
    pub(super) fn profiler_runtime(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.profiler_runtime, v)
    }
    pub(super) fn query_dep_graph(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.query_dep_graph, v)
    }
    pub(super) fn randomize_layout(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.randomize_layout, v)
    }
    pub(super) fn reg_struct_return(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.reg_struct_return, v)
    }
    pub(super) fn regparm(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.regparm, v)
    }
    pub(super) fn relax_elf_relocations(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.relax_elf_relocations, v)
    }
    pub(super) fn remap_cwd_prefix(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.remap_cwd_prefix, v)
    }
    pub(super) fn remark_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.remark_dir, v)
    }
    pub(super) fn renormalize_rigid_aliases(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.renormalize_rigid_aliases, v)
    }
    pub(super) fn retpoline(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.retpoline, v)
    }
    pub(super) fn retpoline_external_thunk(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.retpoline_external_thunk, v)
    }
    pub(super) fn sanitizer(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_sanitizers(&mut cg.sanitizer, v)
    }
    pub(super) fn sanitizer_ignorelist(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_list(&mut cg.sanitizer_ignorelist, v)
    }
    pub(super) fn sanitizer_cfi_canonical_jump_tables(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_cfi_canonical_jump_tables,
            v)
    }
    pub(super) fn sanitizer_cfi_generalize_pointers(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_cfi_generalize_pointers,
            v)
    }
    pub(super) fn sanitizer_cfi_normalize_integers(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_cfi_normalize_integers,
            v)
    }
    pub(super) fn sanitizer_cfi_diag(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_cfi_diag, v)
    }
    pub(super) fn sanitizer_cfi_recover(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_cfi_recover, v)
    }
    pub(super) fn sanitizer_dataflow_abilist(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_comma_list(&mut cg.sanitizer_dataflow_abilist, v)
    }
    pub(super) fn sanitizer_kcfi_arity(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.sanitizer_kcfi_arity, v)
    }
    pub(super) fn sanitizer_memory_track_origins(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_sanitizer_memory_track_origins(&mut cg.sanitizer_memory_track_origins,
            v)
    }
    pub(super) fn sanitizer_recover(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_sanitizers(&mut cg.sanitizer_recover, v)
    }
    pub(super) fn self_profile(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_switch_with_opt_path(&mut cg.self_profile, v)
    }
    pub(super) fn self_profile_counter(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_string(&mut cg.self_profile_counter, v)
    }
    pub(super) fn self_profile_events(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_comma_list(&mut cg.self_profile_events, v)
    }
    pub(super) fn share_generics(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.share_generics, v)
    }
    pub(super) fn shell_argfiles(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.shell_argfiles, v)
    }
    pub(super) fn simulate_remapped_rust_src_base(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.simulate_remapped_rust_src_base,
            v)
    }
    pub(super) fn small_data_threshold(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_number(&mut cg.small_data_threshold, v)
    }
    pub(super) fn span_debug(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.span_debug, v)
    }
    pub(super) fn span_free_formats(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.span_free_formats, v)
    }
    pub(super) fn split_dwarf_inlining(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.split_dwarf_inlining, v)
    }
    pub(super) fn split_dwarf_kind(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_split_dwarf_kind(&mut cg.split_dwarf_kind, v)
    }
    pub(super) fn split_dwarf_out_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_pathbuf(&mut cg.split_dwarf_out_dir, v)
    }
    pub(super) fn split_lto_unit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.split_lto_unit, v)
    }
    pub(super) fn src_hash_algorithm(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_src_file_hash(&mut cg.src_hash_algorithm, v)
    }
    pub(super) fn stack_protector(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_stack_protector(&mut cg.stack_protector, v)
    }
    pub(super) fn staticlib_allow_rdylib_deps(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.staticlib_allow_rdylib_deps, v)
    }
    pub(super) fn staticlib_hide_internal_symbols(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.staticlib_hide_internal_symbols, v)
    }
    pub(super) fn staticlib_rename_internal_symbols(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.staticlib_rename_internal_symbols, v)
    }
    pub(super) fn staticlib_prefer_dynamic(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.staticlib_prefer_dynamic, v)
    }
    pub(super) fn strict_init_checks(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.strict_init_checks, v)
    }
    pub(super) fn teach(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.teach, v)
    }
    pub(super) fn temps_dir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.temps_dir, v)
    }
    pub(super) fn terminal_urls(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_terminal_url(&mut cg.terminal_urls, v)
    }
    pub(super) fn thinlto(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.thinlto, v)
    }
    pub(super) fn threads(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.threads, v)
    }
    pub(super) fn time_llvm_passes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.time_llvm_passes, v)
    }
    pub(super) fn time_passes(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.time_passes, v)
    }
    pub(super) fn time_passes_format(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_time_passes_format(&mut cg.time_passes_format, v)
    }
    pub(super) fn tiny_const_eval_limit(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.tiny_const_eval_limit, v)
    }
    pub(super) fn tls_model(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_tls_model(&mut cg.tls_model, v)
    }
    pub(super) fn trace_macros(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.trace_macros, v)
    }
    pub(super) fn track_diagnostics(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.track_diagnostics, v)
    }
    pub(super) fn translate_remapped_path_to_local_path(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.translate_remapped_path_to_local_path,
            v)
    }
    pub(super) fn trap_unreachable(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.trap_unreachable, v)
    }
    pub(super) fn treat_err_as_bug(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_treat_err_as_bug(&mut cg.treat_err_as_bug, v)
    }
    pub(super) fn trim_diagnostic_paths(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.trim_diagnostic_paths, v)
    }
    pub(super) fn tune_cpu(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_string(&mut cg.tune_cpu, v)
    }
    pub(super) fn typing_mode_post_typeck_until_borrowck(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.typing_mode_post_typeck_until_borrowck,
            v)
    }
    pub(super) fn ub_checks(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.ub_checks, v)
    }
    pub(super) fn ui_testing(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.ui_testing, v)
    }
    pub(super) fn uninit_const_chunk_threshold(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_number(&mut cg.uninit_const_chunk_threshold, v)
    }
    pub(super) fn unleash_the_miri_inside_of_you(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.unleash_the_miri_inside_of_you, v)
    }
    pub(super) fn unpretty(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_unpretty(&mut cg.unpretty, v)
    }
    pub(super) fn unsound_mir_opts(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.unsound_mir_opts, v)
    }
    pub(super) fn unstable_options(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_no_value(&mut cg.unstable_options, v)
    }
    pub(super) fn use_ctors_section(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.use_ctors_section, v)
    }
    pub(super) fn use_sync_unwind(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_opt_bool(&mut cg.use_sync_unwind, v)
    }
    pub(super) fn validate_mir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.validate_mir, v)
    }
    pub(super) fn verbose_asm(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.verbose_asm, v)
    }
    pub(super) fn verbose_internals(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.verbose_internals, v)
    }
    pub(super) fn verify_llvm_ir(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.verify_llvm_ir, v)
    }
    pub(super) fn virtual_function_elimination(cg:
            &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.virtual_function_elimination, v)
    }
    pub(super) fn wasi_exec_model(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_wasi_exec_model(&mut cg.wasi_exec_model, v)
    }
    pub(super) fn wasm_c_abi(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_wasm_c_abi(&mut cg.wasm_c_abi, v)
    }
    pub(super) fn wasm_proc_macros(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.wasm_proc_macros, v)
    }
    pub(super) fn write_long_types_to_disk(cg: &mut super::UnstableOptions,
        _collected: &mut super::CollectedOptions, v: Option<&str>,
        _index: usize) -> bool {
        super::parse::parse_bool(&mut cg.write_long_types_to_disk, v)
    }
}options! {
2358    UnstableOptions, UnstableOptionsTargetModifiers, Z_OPTIONS, dbopts, "Z", "unstable",
2359
2360    // If you add a new option, please update:
2361    // - compiler/rustc_interface/src/tests.rs
2362    // - src/doc/unstable-book/src/compiler-flags
2363
2364    // tidy-alphabetical-start
2365    allow_features: Option<Vec<String>> = (None, parse_opt_comma_list, [TRACKED],
2366        "only allow the listed language features to be enabled in code (comma separated)"),
2367    // the real parser is at the `setter_for` macro, to allow `-Z` and `-C` options to
2368    // work together.
2369    allow_partial_mitigations: () = ((), parse_allow_partial_mitigations, [UNTRACKED],
2370        "Allow mitigations not enabled for all dependency crates (comma separated list)"),
2371    always_encode_mir: bool = (false, parse_bool, [TRACKED],
2372        "encode MIR of all functions into the crate metadata (default: no)"),
2373    annotate_moves: AnnotateMoves = (AnnotateMoves::Disabled, parse_annotate_moves, [TRACKED],
2374        "emit debug info for compiler-generated move and copy operations \
2375        to make them visible in profilers. Can be a boolean or a size limit in bytes (default: disabled)"),
2376    assert_incr_state: Option<IncrementalStateAssertion> = (None, parse_assert_incr_state, [UNTRACKED],
2377        "assert that the incremental cache is in given state: \
2378         either `loaded` or `not-loaded`."),
2379    assume_incomplete_release: bool = (false, parse_bool, [TRACKED],
2380        "make cfg(version) treat the current version as incomplete (default: no)"),
2381    assumptions_on_binders: bool = (false, parse_bool, [TRACKED],
2382        "allow deducing higher-ranked outlives assumptions from all binders (`for<'a>`); \
2383         implies `-Znext-solver=globally`"),
2384    autodiff: Vec<crate::config::AutoDiff> = (Vec::new(), parse_autodiff, [TRACKED],
2385        "a list of autodiff flags to enable
2386        Mandatory setting:
2387        `=Enable`
2388        Optional extra settings:
2389        `=PrintTA`
2390        `=PrintAA`
2391        `=PrintPerf`
2392        `=PrintSteps`
2393        `=PrintModBefore`
2394        `=PrintModAfter`
2395        `=PrintModFinal`
2396        `=PrintPasses`,
2397        `=NoPostopt`
2398        `=LooseTypes`
2399        `=Inline`
2400        Multiple options can be combined with commas."),
2401    autodiff_post_passes: Option<String> = (None, parse_opt_string, [TRACKED],
2402        "set llvm passes to run after enzyme (no passes run when it is empty)"),
2403    #[rustc_lint_opt_deny_field_access("use `Session::binary_dep_depinfo` instead of this field")]
2404    binary_dep_depinfo: bool = (false, parse_bool, [TRACKED],
2405        "include artifacts (sysroot, crate dependencies) used during compilation in dep-info \
2406        (default: no)"),
2407    box_noalias: bool = (true, parse_bool, [TRACKED],
2408        "emit noalias metadata for box (default: yes)"),
2409    #[rustc_lint_opt_deny_field_access("use `Session::branch_protection` instead of this field")]
2410    branch_protection: Option<BranchProtection> = (None, parse_branch_protection, [TRACKED] { TARGET_MODIFIER: BranchProtection },
2411        "set options for branch target identification and pointer authentication on AArch64"),
2412    build_sdylib_interface: bool = (false, parse_bool, [UNTRACKED],
2413        "whether the stable interface is being built"),
2414    cache_proc_macros: bool = (false, parse_bool, [TRACKED],
2415        "cache the results of derive proc macro invocations (potentially unsound!) (default: no"),
2416    cf_protection: CFProtection = (CFProtection::None, parse_cfprotection, [TRACKED],
2417        "instrument control-flow architecture protection"),
2418    check_cfg_all_expected: bool = (false, parse_bool, [UNTRACKED],
2419        "show all expected values in check-cfg diagnostics (default: no)"),
2420    checksum_hash_algorithm: Option<SourceFileHashAlgorithm> = (None, parse_cargo_src_file_hash, [TRACKED],
2421        "hash algorithm of source files used to check freshness in cargo (`blake3` or `sha256`)"),
2422    codegen_backend: Option<String> = (None, parse_opt_string, [TRACKED],
2423        "the backend to use"),
2424    codegen_emit_retag: Option<CodegenRetagOptions> = (None, parse_codegen_retag_options, [TRACKED],
2425        "emit retag function calls in generated code"),
2426    codegen_source_order: bool = (false, parse_bool, [UNTRACKED],
2427        "emit mono items in the order of spans in source files (default: no)"),
2428    contract_checks: Option<bool> = (None, parse_opt_bool, [TRACKED],
2429        "emit runtime checks for contract pre- and post-conditions (default: no)"),
2430    coverage_options: CoverageOptions = (CoverageOptions::default(), parse_coverage_options, [TRACKED],
2431        "control details of coverage instrumentation"),
2432    crate_attr: Vec<String> = (Vec::new(), parse_string_push, [TRACKED],
2433        "inject the given attribute in the crate"),
2434    cross_crate_inline_threshold: InliningThreshold = (InliningThreshold::Sometimes(100), parse_inlining_threshold, [TRACKED],
2435        "threshold to allow cross crate inlining of functions"),
2436    debug_info_type_line_numbers: bool = (false, parse_bool, [TRACKED],
2437        "emit type and line information for additional data types (default: no)"),
2438    debuginfo_compression: DebugInfoCompression = (DebugInfoCompression::None, parse_debuginfo_compression, [TRACKED],
2439        "compress debug info sections (none, zlib, zstd, default: none)"),
2440    debuginfo_for_profiling: bool = (false, parse_bool, [TRACKED],
2441        "emit extra debug info to make sample profile more accurate"),
2442    deduplicate_diagnostics: bool = (true, parse_bool, [UNTRACKED],
2443        "deduplicate identical diagnostics (default: yes)"),
2444    default_visibility: Option<SymbolVisibility> = (None, parse_opt_symbol_visibility, [TRACKED],
2445        "overrides the `default_visibility` setting of the target"),
2446    deny_partial_mitigations: () = ((), parse_deny_partial_mitigations, [UNTRACKED],
2447        "Deny mitigations not enabled for all dependency crates (comma separated list)"),
2448    dep_info_omit_d_target: bool = (false, parse_bool, [TRACKED],
2449        "in dep-info output, omit targets for tracking dependencies of the dep-info files \
2450        themselves (default: no)"),
2451    direct_access_external_data: Option<bool> = (None, parse_opt_bool, [TRACKED],
2452        "Direct or use GOT indirect to reference external data symbols"),
2453    disable_fast_paths: bool = (false, parse_bool, [TRACKED],
2454        "disable various performance optimizations in trait solving"),
2455    disable_incr_comp_backend_caching: bool = (false, parse_bool, [TRACKED],
2456        "disable caching of compiled objects by the codegen backend during incremental compilation"),
2457    disable_param_env_normalization_hack: bool = (false, parse_bool, [TRACKED],
2458        "do not treat all aliases in the environment as rigid with `-Znext-solver`"),
2459    dual_proc_macros: bool = (false, parse_bool, [TRACKED],
2460        "load proc macros for both target and host, but only link to the target (default: no)"),
2461    dump_dep_graph: bool = (false, parse_bool, [UNTRACKED],
2462        "dump the dependency graph to `$RUST_DEP_GRAPH` as both a text file and a GraphViz dot file (default: ./dep_graph.{dot, txt}) \
2463        (default: no)"),
2464    dump_mir: Option<String> = (None, parse_opt_string, [UNTRACKED],
2465        "dump MIR state to file.
2466        `val` is used to select which passes and functions to dump. For example:
2467        `all` matches all passes and functions,
2468        `foo` matches all passes for functions whose name contains 'foo',
2469        `foo & ConstProp` only the 'ConstProp' pass for function names containing 'foo',
2470        `foo | bar` all passes for function names containing 'foo' or 'bar'."),
2471    dump_mir_dataflow: bool = (false, parse_bool, [UNTRACKED],
2472        "in addition to `.mir` files, create graphviz `.dot` files with dataflow results \
2473        (default: no)"),
2474    dump_mir_dir: String = ("mir_dump".to_string(), parse_string, [UNTRACKED],
2475        "the directory the MIR is dumped into (default: `mir_dump`)"),
2476    dump_mir_exclude_alloc_bytes: bool = (false, parse_bool, [UNTRACKED],
2477        "exclude the raw bytes of allocations when dumping MIR (used in tests) (default: no)"),
2478    dump_mir_exclude_pass_number: bool = (false, parse_bool, [UNTRACKED],
2479        "exclude the pass number when dumping MIR (used in tests) (default: no)"),
2480    dump_mir_graphviz: bool = (false, parse_bool, [UNTRACKED],
2481        "in addition to `.mir` files, create graphviz `.dot` files (default: no)"),
2482    dump_mono_stats: SwitchWithOptPath = (SwitchWithOptPath::Disabled,
2483        parse_switch_with_opt_path, [UNTRACKED],
2484        "output statistics about monomorphization collection"),
2485    dump_mono_stats_format: DumpMonoStatsFormat = (DumpMonoStatsFormat::Markdown, parse_dump_mono_stats, [UNTRACKED],
2486        "the format to use for -Z dump-mono-stats (`markdown` (default) or `json`)"),
2487    #[rustc_lint_opt_deny_field_access("use `Session::dwarf_version` instead of this field")]
2488    dwarf_version: Option<u32> = (None, parse_opt_number, [TRACKED],
2489        "version of DWARF debug information to emit (default: 2 or 4, depending on platform)"),
2490    dylib_lto: bool = (false, parse_bool, [UNTRACKED],
2491        "enables LTO for dylib crate type"),
2492    eagerly_emit_delayed_bugs: bool = (false, parse_bool, [UNTRACKED],
2493        "emit delayed bugs eagerly as errors instead of stashing them and emitting \
2494        them only if an error has not been emitted"),
2495    ehcont_guard: bool = (false, parse_bool, [TRACKED],
2496        "generate Windows EHCont Guard tables"),
2497    embed_metadata: bool = (true, parse_bool, [TRACKED],
2498        "embed metadata in rlibs and dylibs (default: yes)"),
2499    embed_source: bool = (false, parse_bool, [TRACKED],
2500        "embed source text in DWARF debug sections (default: no)"),
2501    emit_stack_sizes: bool = (false, parse_bool, [UNTRACKED],
2502        "emit a section containing stack size metadata (default: no)"),
2503    enforce_type_length_limit: bool = (false, parse_bool, [TRACKED],
2504        "enforce the type length limit when monomorphizing instances in codegen"),
2505    experimental_default_bounds: bool = (false, parse_bool, [TRACKED],
2506        "enable default bounds for experimental group of auto traits"),
2507    export_executable_symbols: bool = (false, parse_bool, [TRACKED],
2508        "export symbols from executables, as if they were dynamic libraries"),
2509    external_clangrt: bool = (false, parse_bool, [UNTRACKED],
2510        "rely on user specified linker commands to find clangrt"),
2511    extra_const_ub_checks: bool = (false, parse_bool, [TRACKED],
2512        "turns on more checks to detect const UB, which can be slow (default: no)"),
2513    #[rustc_lint_opt_deny_field_access("use `Session::fewer_names` instead of this field")]
2514    fewer_names: Option<bool> = (None, parse_opt_bool, [TRACKED],
2515        "reduce memory use by retaining fewer names within compilation artifacts (LLVM-IR) \
2516        (default: no)"),
2517    fixed_x18: bool = (false, parse_bool, [TRACKED] { TARGET_MODIFIER: FixedX18 },
2518        "make the x18 register reserved on AArch64 (default: no)"),
2519    flatten_format_args: bool = (true, parse_bool, [TRACKED],
2520        "flatten nested format_args!() and literals into a simplified format_args!() call \
2521        (default: yes)"),
2522    fmt_debug: FmtDebug = (FmtDebug::Full, parse_fmt_debug, [TRACKED],
2523        "how detailed `#[derive(Debug)]` should be. `full` prints types recursively, \
2524        `shallow` prints only type names, `none` prints nothing and disables `{:?}`. (default: `full`)"),
2525    force_intrinsic_fallback: bool = (false, parse_bool, [TRACKED],
2526        "always use the fallback body of an intrinsic, if it has one, instead of lowering \
2527        the intrinsic in the codegen backend (default: no)."),
2528    force_unstable_if_unmarked: bool = (false, parse_bool, [TRACKED],
2529        "force all crates to be `rustc_private` unstable (default: no)"),
2530    function_return: FunctionReturn = (FunctionReturn::default(), parse_function_return, [TRACKED],
2531        "replace returns with jumps to `__x86_return_thunk` (default: `keep`)"),
2532    function_sections: Option<bool> = (None, parse_opt_bool, [TRACKED],
2533        "whether each function should go in its own section"),
2534    future_incompat_test: bool = (false, parse_bool, [UNTRACKED],
2535        "forces all lints to be future incompatible, used for internal testing (default: no)"),
2536    graphviz_dark_mode: bool = (false, parse_bool, [UNTRACKED],
2537        "use dark-themed colors in graphviz output (default: no)"),
2538    graphviz_font: String = ("Courier, monospace".to_string(), parse_string, [UNTRACKED],
2539        "use the given `fontname` in graphviz output; can be overridden by setting \
2540        environment variable `RUSTC_GRAPHVIZ_FONT` (default: `Courier, monospace`)"),
2541    has_thread_local: Option<bool> = (None, parse_opt_bool, [TRACKED],
2542        "explicitly enable the `cfg(target_thread_local)` directive"),
2543    help: bool = (false, parse_no_value, [UNTRACKED], "Print unstable compiler options"),
2544    higher_ranked_assumptions: bool = (false, parse_bool, [TRACKED],
2545        "allow deducing higher-ranked outlives assumptions from coroutines when proving auto traits"),
2546    hint_mostly_unused: bool = (false, parse_bool, [TRACKED],
2547        "hint that most of this crate will go unused, to minimize work for uncalled functions"),
2548    hint_msrv: Option<RustcVersion> = (None, parse_rust_version, [TRACKED],
2549        "control the minimum rust version for lints"),
2550    human_readable_cgu_names: bool = (false, parse_bool, [TRACKED],
2551        "generate human-readable, predictable names for codegen units (default: no)"),
2552    identify_regions: bool = (false, parse_bool, [UNTRACKED],
2553        "display unnamed regions as `'<id>`, using a non-ident unique id (default: no)"),
2554    ignore_directory_in_diagnostics_source_blocks: Vec<String> = (Vec::new(), parse_string_push, [UNTRACKED],
2555        "do not display the source code block in diagnostics for files in the directory"),
2556    implicit_sysroot_deps: bool = (true, parse_bool, [TRACKED],
2557        "allows rust to search sysroot for a crate's dependencies (default: yes)"),
2558    incremental_ignore_spans: bool = (false, parse_bool, [TRACKED],
2559        "ignore spans during ICH computation -- used for testing (default: no)"),
2560    incremental_info: bool = (false, parse_bool, [UNTRACKED],
2561        "print high-level information about incremental reuse (or the lack thereof) \
2562        (default: no)"),
2563    incremental_verify_ich: bool = (false, parse_bool, [UNTRACKED],
2564        "verify extended properties for incr. comp. (default: no):
2565        - hashes of green query instances
2566        - hash collisions of query keys
2567        - hash collisions when creating dep-nodes"),
2568    indirect_branch_cs_prefix: bool = (false, parse_bool, [TRACKED] { TARGET_MODIFIER: IndirectBranchCsPrefix },
2569        "add `cs` prefix to `call` and `jmp` to indirect thunks (default: no)"),
2570    inline_llvm: bool = (true, parse_bool, [TRACKED],
2571        "enable LLVM inlining (default: yes)"),
2572    inline_mir: Option<bool> = (None, parse_opt_bool, [TRACKED],
2573        "enable MIR inlining (default: no)"),
2574    inline_mir_forwarder_threshold: Option<usize> = (None, parse_opt_number, [TRACKED],
2575        "inlining threshold when the caller is a simple forwarding function (default: 30)"),
2576    inline_mir_hint_threshold: Option<usize> = (None, parse_opt_number, [TRACKED],
2577        "inlining threshold for functions with inline hint (default: 100)"),
2578    inline_mir_preserve_debug: Option<bool> = (None, parse_opt_bool, [TRACKED],
2579        "when MIR inlining, whether to preserve debug info for callee variables \
2580        (default: preserve for debuginfo != None, otherwise remove)"),
2581    inline_mir_threshold: Option<usize> = (None, parse_opt_number, [TRACKED],
2582        "a default MIR inlining threshold (default: 50)"),
2583    input_stats: bool = (false, parse_bool, [UNTRACKED],
2584        "print some statistics about AST and HIR (default: no)"),
2585    instrument_mcount: InstrumentMcount = (InstrumentMcount::Disabled, parse_instrument_mcount, [TRACKED],
2586        "insert function instrument code for mcount-based tracing (default: no)"),
2587    instrument_xray: Option<InstrumentXRay> = (None, parse_instrument_xray, [TRACKED],
2588        "insert function instrument code for XRay-based tracing (default: no)
2589         Optional extra settings:
2590         `=always`
2591         `=never`
2592         `=ignore-loops`
2593         `=instruction-threshold=N`
2594         `=skip-entry`
2595         `=skip-exit`
2596         Multiple options can be combined with commas."),
2597    // The only purpose of this flag is to act as a deterrent:
2598    // Marking a feature that's only meant for testing as internal might not preclude somebody from
2599    // trying to use it in `core` or `std` as both enable various internal features and utilize them
2600    // throughout. This is intentionally a flag not another internal feature as having to modify the
2601    // build cfg in `bootstrap` is arguably scarier than just needing to add `#![feature]`. It also
2602    // stands out a lot more during code review making it easier to get caught.
2603    internal_testing_features: bool = (false, parse_bool, [TRACKED],
2604        "allow certain internal language features to be enabled that help exercise & test the compiler"),
2605    large_data_threshold: Option<u64> = (None, parse_opt_number, [TRACKED],
2606        "set the threshold for objects to be stored in a \"large data\" section \
2607         (only effective with -Ccode-model=medium, default: 65536)"),
2608    layout_seed: Option<u64> = (None, parse_opt_number, [TRACKED],
2609        "seed layout randomization"),
2610    link_directives: bool = (true, parse_bool, [TRACKED],
2611        "honor #[link] directives in the compiled crate (default: yes)"),
2612    link_native_libraries: bool = (true, parse_bool, [UNTRACKED],
2613        "link native libraries in the linker invocation (default: yes)"),
2614    link_only: bool = (false, parse_bool, [TRACKED],
2615        "link the `.rlink` file generated by `-Z no-link` (default: no)"),
2616    lint_llvm_ir: bool = (false, parse_bool, [TRACKED],
2617        "lint LLVM IR (default: no)"),
2618    lint_mir: bool = (false, parse_bool, [UNTRACKED],
2619        "lint MIR before and after each transformation"),
2620    llvm_module_flag: Vec<(String, u32, String)> = (Vec::new(), parse_llvm_module_flag, [TRACKED],
2621        "a list of module flags to pass to LLVM (space separated)"),
2622    llvm_plugins: Vec<String> = (Vec::new(), parse_list, [TRACKED],
2623        "a list LLVM plugins to enable (space separated)"),
2624    llvm_target_feature: String = (String::new(), parse_target_feature, [TRACKED] { TARGET_MODIFIER: LlvmTargetFeature },
2625        "enable/disable LLVM-level target features. \
2626        This feature is unsafe and can cause ABI issues and compiler crashes, \
2627        because LLVM does not support all target feature combinations."),
2628    llvm_time_trace: bool = (false, parse_bool, [UNTRACKED],
2629        "generate JSON tracing data file from LLVM data (default: no)"),
2630    llvm_writable: bool = (false, parse_bool, [TRACKED],
2631        "emit the LLVM writable attribute for mutable reference arguments (default: no)"),
2632    location_detail: LocationDetail = (LocationDetail::all(), parse_location_detail, [TRACKED],
2633        "what location details should be tracked when using caller_location, either \
2634        `none`, or a comma separated list of location details, for which \
2635        valid options are `file`, `line`, and `column` (default: `file,line,column`)"),
2636    ls: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
2637        "decode and print various parts of the crate metadata for a library crate \
2638        (space separated)"),
2639    macro_backtrace: bool = (false, parse_bool, [UNTRACKED],
2640        "show macro backtraces (default: no)"),
2641    macro_stats: bool = (false, parse_bool, [UNTRACKED],
2642        "print some statistics about macro expansions (default: no)"),
2643    maximal_hir_to_mir_coverage: bool = (false, parse_bool, [TRACKED],
2644        "save as much information as possible about the correspondence between MIR and HIR \
2645        as source scopes (default: no)"),
2646    merge_functions: Option<MergeFunctions> = (None, parse_merge_functions, [TRACKED],
2647        "control the operation of the MergeFunctions LLVM pass, taking \
2648        the same values as the target option of the same name"),
2649    meta_stats: bool = (false, parse_bool, [UNTRACKED],
2650        "gather metadata statistics (default: no)"),
2651    metrics_dir: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
2652        "the directory metrics emitted by rustc are dumped into (implicitly enables default set of metrics)"),
2653    min_function_alignment: Option<Align> = (None, parse_align, [TRACKED],
2654        "align all functions to at least this many bytes. Must be a power of 2"),
2655    min_recursion_limit: Option<usize> = (None, parse_opt_number, [TRACKED],
2656        "set a minimum recursion limit (final limit = max(this, recursion_limit_from_crate))"),
2657    mir_enable_passes: Vec<(String, bool)> = (Vec::new(), parse_list_with_polarity, [TRACKED],
2658        "use like `-Zmir-enable-passes=+DestinationPropagation,-InstSimplify`. Forces the \
2659        specified passes to be enabled, overriding all other checks. In particular, this will \
2660        enable unsound (known-buggy and hence usually disabled) passes without further warning! \
2661        Passes that are not specified are enabled or disabled by other flags as usual."),
2662    mir_include_spans: MirIncludeSpans = (MirIncludeSpans::default(), parse_mir_include_spans, [UNTRACKED],
2663        "include extra comments in mir pretty printing, like line numbers and statement indices, \
2664         details about types, etc. (boolean for all passes, 'nll' to enable in NLL MIR only, default: 'nll')"),
2665    mir_opt_bisect_limit: Option<usize> = (None, parse_opt_number, [TRACKED],
2666        "limit the number of MIR optimization pass executions (global across all bodies). \
2667        Pass executions after this limit are skipped and reported. (default: no limit)"),
2668    #[rustc_lint_opt_deny_field_access("use `Session::mir_opt_level` instead of this field")]
2669    mir_opt_level: Option<usize> = (None, parse_opt_number, [TRACKED],
2670        "MIR optimization level (0-4; default: 1 in non optimized builds and 2 in optimized builds)"),
2671    mir_preserve_ub: bool = (false, parse_bool, [TRACKED],
2672        "keep place mention statements and reads in trivial SwitchInt terminators, which are interpreted \
2673        e.g., by miri; implies -Zmir-opt-level=0 (default: no)"),
2674    mir_strip_debuginfo: MirStripDebugInfo = (MirStripDebugInfo::None, parse_mir_strip_debuginfo, [TRACKED],
2675        "Whether to remove some of the MIR debug info from methods.  Default: None"),
2676    move_size_limit: Option<usize> = (None, parse_opt_number, [TRACKED],
2677        "the size at which the `large_assignments` lint starts to be emitted"),
2678    namespaced_crates: bool = (false, parse_bool, [TRACKED],
2679        "allow crates to be namespaced by other crates (default: no)"),
2680    next_solver: NextSolverConfig = (NextSolverConfig::default(), parse_next_solver_config, [TRACKED],
2681        "enable and configure the next generation trait solver used by rustc"),
2682    nll_facts: bool = (false, parse_bool, [UNTRACKED],
2683        "dump facts from NLL analysis into side files (default: no)"),
2684    nll_facts_dir: String = ("nll-facts".to_string(), parse_string, [UNTRACKED],
2685        "the directory the NLL facts are dumped into (default: `nll-facts`)"),
2686    no_analysis: bool = (false, parse_no_value, [UNTRACKED],
2687        "parse and expand the source, but run no analysis"),
2688    no_codegen: bool = (false, parse_no_value, [TRACKED_NO_CRATE_HASH],
2689        "run all passes except codegen; no output"),
2690    no_generate_arange_section: bool = (false, parse_no_value, [TRACKED],
2691        "omit DWARF address ranges that give faster lookups"),
2692    no_implied_bounds_compat: bool = (false, parse_bool, [TRACKED],
2693        "disable the compatibility version of the `implied_bounds_ty` query"),
2694    no_leak_check: bool = (false, parse_no_value, [UNTRACKED],
2695        "disable the 'leak check' for subtyping; unsound, but useful for tests"),
2696    no_link: bool = (false, parse_no_value, [TRACKED],
2697        "compile without linking"),
2698    no_parallel_backend: bool = (false, parse_no_value, [UNTRACKED],
2699        "use `--jobs-backend=1` instead"),
2700    no_profiler_runtime: bool = (false, parse_no_value, [TRACKED],
2701        "prevent automatic injection of the profiler_builtins crate"),
2702    no_steal_thir: bool = (false, parse_bool, [UNTRACKED],
2703        "don't steal the THIR when we're done with it; useful for rustc drivers (default: no)"),
2704    no_trait_vptr: bool = (false, parse_no_value, [TRACKED],
2705        "disable generation of trait vptr in vtable for upcasting"),
2706    no_unique_section_names: bool = (false, parse_bool, [TRACKED],
2707        "do not use unique names for text and data sections when -Z function-sections is used"),
2708    normalize_docs: bool = (false, parse_bool, [TRACKED],
2709        "normalize associated items in rustdoc when generating documentation"),
2710    offload: Vec<crate::config::Offload> = (Vec::new(), parse_offload, [TRACKED],
2711        "a list of offload flags to enable
2712        Mandatory setting:
2713        `=Enable`
2714        Currently the only option available"),
2715    on_broken_pipe: OnBrokenPipe = (OnBrokenPipe::Default, parse_on_broken_pipe, [TRACKED],
2716        "behavior of std::io::ErrorKind::BrokenPipe (SIGPIPE)"),
2717    osx_rpath_install_name: bool = (false, parse_bool, [TRACKED],
2718        "pass `-install_name @rpath/...` to the macOS linker (default: no)"),
2719    packed_bundled_libs: bool = (false, parse_bool, [TRACKED],
2720        "change rlib format to store native libraries as archives"),
2721    packed_stack: bool = (false, parse_bool, [TRACKED],
2722        "use packed stack frames (s390x only) (default: no)"),
2723    panic_abort_tests: bool = (false, parse_bool, [TRACKED],
2724        "support compiling tests with panic=abort (default: no)"),
2725    panic_in_drop: PanicStrategy = (PanicStrategy::Unwind, parse_panic_strategy, [TRACKED],
2726        "panic strategy for panics in drops"),
2727    parse_crate_root_only: bool = (false, parse_bool, [UNTRACKED],
2728        "parse the crate root file only; do not parse other files, compile, assemble, or link \
2729        (default: no)"),
2730    patchable_function_entry: PatchableFunctionEntry = (PatchableFunctionEntry::default(), parse_patchable_function_entry, [TRACKED],
2731        "nop padding at function entry"),
2732    plt: Option<bool> = (None, parse_opt_bool, [TRACKED],
2733        "whether to use the PLT when calling into shared libraries;
2734        only has effect for PIC code on systems with ELF binaries
2735        (default: PLT is disabled if full relro is enabled on x86_64)"),
2736    pointer_authentication: Vec<(PointerAuthOption, bool)> = (
2737        Vec::new(),
2738        parse_pointer_authentication_list_with_polarity,
2739        [TRACKED]
2740        { TARGET_MODIFIER: PointerAuthentication },
2741        "A comma-separated list of pointer authentication options, each prefixed with `+` (enable) or `-` (disable). Available options:
2742        `aarch64-jump-table-hardening` - enable hardened lowering for jump-table dispatch
2743        `auth-traps` - trap immediately on pointer authentication failure
2744        `calls` - enable signing and authentication of all indirect calls
2745        `elf-got` - enable authentication of pointers from GOT (ELF only)
2746        `function-pointer-type-discrimination` - enable type discrimination on C function pointers
2747        `indirect-gotos` - enable signing and authentication of indirect goto targets
2748        `init-fini` - enable signing of function pointers in init/fini arrays
2749        `init-fini-address-discrimination` - enable address discrimination in init/fini arrays
2750        `intrinsics` - pointer authentication intrinsics
2751        `return-addresses` - enable signing and authentication of return addresses
2752        `typeinfo-vt-ptr-discrimination - incorporate type and address discrimination in authenticated vtable pointers for std::type_info
2753        `vt-ptr-addr-discrimination - incorporate address discrimination in authenticated vtable pointers
2754        `vt-ptr-type-discrimination - incorporate type discrimination in authenticated vtable pointers
2755        Example: `-Zpointer-authentication=+calls,-init-fini`."),
2756    polonius: Polonius = (Polonius::default(), parse_polonius, [TRACKED],
2757        POLONIUS_HELP),
2758    pre_link_arg: (/* redirected to pre_link_args */) = ((), parse_string_push, [UNTRACKED],
2759        "a single extra argument to prepend the linker invocation (can be used several times)"),
2760    pre_link_args: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
2761        "extra arguments to prepend to the linker invocation (space separated)"),
2762    precise_enum_drop_elaboration: bool = (true, parse_bool, [TRACKED],
2763        "use a more precise version of drop elaboration for matches on enums (default: yes). \
2764        This results in better codegen, but has caused miscompilations on some tier 2 platforms. \
2765        See #77382 and #74551."),
2766    #[rustc_lint_opt_deny_field_access("use `Session::print_codegen_stats` instead of this field")]
2767    print_codegen_stats: bool = (false, parse_bool, [UNTRACKED],
2768        "print codegen statistics (default: no)"),
2769    #[rustc_lint_opt_deny_field_access("use `Session::print_llvm_stats_json` instead of this field")]
2770    print_codegen_stats_json: Option<String> = (None, parse_opt_string, [UNTRACKED],
2771        "print codegen statistics in JSON to a file (default: no)"),
2772    print_llvm_passes: bool = (false, parse_bool, [UNTRACKED],
2773        "print the LLVM optimization passes being run (default: no)"),
2774    print_mono_items: bool = (false, parse_bool, [UNTRACKED],
2775        "print the result of the monomorphization collection pass (default: no)"),
2776    print_type_sizes: bool = (false, parse_bool, [UNTRACKED],
2777        "print layout information for each type encountered (default: no)"),
2778    proc_macro_backtrace: bool = (false, parse_bool, [UNTRACKED],
2779         "show backtraces for panics during proc-macro execution (default: no)"),
2780    proc_macro_execution_strategy: ProcMacroExecutionStrategy = (ProcMacroExecutionStrategy::SameThread,
2781        parse_proc_macro_execution_strategy, [UNTRACKED],
2782        "how to run proc-macro code (default: same-thread)"),
2783    profile_closures: bool = (false, parse_no_value, [UNTRACKED],
2784        "profile size of closures"),
2785    profiler_runtime: String = (String::from("profiler_builtins"), parse_string, [TRACKED],
2786        "name of the profiler runtime crate to automatically inject (default: `profiler_builtins`)"),
2787    query_dep_graph: bool = (false, parse_bool, [UNTRACKED],
2788        "enable queries of the dependency graph for regression testing (default: no)"),
2789    randomize_layout: bool = (false, parse_bool, [TRACKED],
2790        "randomize the layout of types (default: no)"),
2791    reg_struct_return: bool = (false, parse_bool, [TRACKED] { TARGET_MODIFIER: RegStructReturn },
2792        "On x86-32 targets, it overrides the default ABI to return small structs in registers.
2793        It is UNSOUND to link together crates that use different values for this flag!"),
2794    regparm: Option<u32> = (None, parse_opt_number, [TRACKED] { TARGET_MODIFIER: Regparm },
2795        "On x86-32 targets, setting this to N causes the compiler to pass N arguments \
2796        in registers EAX, EDX, and ECX instead of on the stack for\
2797        \"C\", \"cdecl\", and \"stdcall\" fn.\
2798        It is UNSOUND to link together crates that use different values for this flag!"),
2799    relax_elf_relocations: Option<bool> = (None, parse_opt_bool, [TRACKED],
2800        "whether ELF relocations can be relaxed"),
2801    remap_cwd_prefix: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
2802        "remap paths under the current working directory to this path prefix"),
2803    remark_dir: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
2804        "directory into which to write optimization remarks (if not specified, they will be \
2805written to standard error output)"),
2806    renormalize_rigid_aliases: bool = (false, parse_bool, [TRACKED],
2807        "do not skip rigid aliases in normalization for internal debugging"),
2808    retpoline: bool = (false, parse_bool, [TRACKED] { TARGET_MODIFIER: Retpoline },
2809        "enables retpoline-indirect-branches and retpoline-indirect-calls target features (default: no)"),
2810    retpoline_external_thunk: bool = (false, parse_bool, [TRACKED] { TARGET_MODIFIER: RetpolineExternalThunk },
2811        "enables retpoline-external-thunk, retpoline-indirect-branches and retpoline-indirect-calls \
2812        target features (default: no)"),
2813    #[rustc_lint_opt_deny_field_access("use `Session::sanitizers()` instead of this field")]
2814    sanitizer: SanitizerSet = (SanitizerSet::empty(), parse_sanitizers, [TRACKED] { TARGET_MODIFIER: Sanitizer },
2815        "use a sanitizer"),
2816    sanitizer_ignorelist: Vec<String> = (vec![], parse_list, [TRACKED],
2817        "list of files providing ignorelists for sanitizers"),
2818    sanitizer_cfi_canonical_jump_tables: Option<bool> = (Some(true), parse_opt_bool, [TRACKED],
2819        "enable canonical jump tables (default: yes)"),
2820    sanitizer_cfi_generalize_pointers: Option<bool> = (None, parse_opt_bool, [TRACKED],
2821        "enable generalizing pointer types (default: no)"),
2822    sanitizer_cfi_normalize_integers: Option<bool> = (None, parse_opt_bool, [TRACKED] { TARGET_MODIFIER: SanitizerCfiNormalizeIntegers },
2823        "enable normalizing integer types (default: no)"),
2824    sanitizer_cfi_diag: Option<bool> = (None, parse_opt_bool, [TRACKED],
2825        "enable CFI diagnostics (default: no)"),
2826    sanitizer_cfi_recover: Option<bool> = (None, parse_opt_bool, [TRACKED],
2827        "enable CFI recovery (default: no)"),
2828    sanitizer_dataflow_abilist: Vec<String> = (Vec::new(), parse_comma_list, [TRACKED],
2829        "additional ABI list files that control how shadow parameters are passed (comma separated)"),
2830    sanitizer_kcfi_arity: Option<bool> = (None, parse_opt_bool, [TRACKED],
2831        "enable KCFI arity indicator (default: no)"),
2832    sanitizer_memory_track_origins: usize = (0, parse_sanitizer_memory_track_origins, [TRACKED],
2833        "enable origins tracking in MemorySanitizer"),
2834    sanitizer_recover: SanitizerSet = (SanitizerSet::empty(), parse_sanitizers, [TRACKED],
2835        "enable recovery for selected sanitizers"),
2836    self_profile: SwitchWithOptPath = (SwitchWithOptPath::Disabled,
2837        parse_switch_with_opt_path, [UNTRACKED],
2838        "run the self profiler and output the raw event data"),
2839    self_profile_counter: String = ("wall-time".to_string(), parse_string, [UNTRACKED],
2840        "counter used by the self profiler (default: `wall-time`), one of:
2841        `wall-time` (monotonic clock, i.e. `std::time::Instant`)
2842        `instructions:u` (retired instructions, userspace-only)
2843        `instructions-minus-irqs:u` (subtracting hardware interrupt counts for extra accuracy)"
2844    ),
2845    /// keep this in sync with the event filter names and defaults in rustc_data_structures/src/profiling.rs
2846    self_profile_events: Option<Vec<String>> = (None, parse_opt_comma_list, [UNTRACKED],
2847        "specify the events recorded by the self profiler;
2848        for example: `-Z self-profile-events=default,query-keys`
2849        all option groups: none, all, default, args
2850          `default` contains: generic-activity, query-provider, query-cache-hit-count, \
2851                            query-blocked, incr-cache-load, incr-result-hashing, artifact-sizes
2852             `args` contains: query-keys, function-args
2853        remaining (ungrouped) options: query-cache-hit, llvm"),
2854    share_generics: Option<bool> = (None, parse_opt_bool, [TRACKED],
2855        "make the current crate share its generic instantiations"),
2856    shell_argfiles: bool = (false, parse_bool, [UNTRACKED],
2857        "allow argument files to be specified with POSIX \"shell-style\" argument quoting"),
2858    simulate_remapped_rust_src_base: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
2859        "simulate the effect of remap-debuginfo = true at bootstrapping by remapping path \
2860        to rust's source base directory. only meant for testing purposes"),
2861    small_data_threshold: Option<usize> = (None, parse_opt_number, [TRACKED],
2862        "Set the threshold for objects to be stored in a \"small data\" section"),
2863    span_debug: bool = (false, parse_bool, [UNTRACKED],
2864        "forward proc_macro::Span's `Debug` impl to `Span`"),
2865    /// o/w tests have closure@path
2866    span_free_formats: bool = (false, parse_bool, [UNTRACKED],
2867        "exclude spans when debug-printing compiler state (default: no)"),
2868    split_dwarf_inlining: bool = (false, parse_bool, [TRACKED],
2869        "provide minimal debug info in the object/executable to facilitate online \
2870         symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF"),
2871    split_dwarf_kind: SplitDwarfKind = (SplitDwarfKind::Split, parse_split_dwarf_kind, [TRACKED],
2872        "split dwarf variant (only if -Csplit-debuginfo is enabled and on relevant platform)
2873        (default: `split`)
2874
2875        `split`: sections which do not require relocation are written into a DWARF object (`.dwo`)
2876                 file which is ignored by the linker
2877        `single`: sections which do not require relocation are written into object file but ignored
2878                  by the linker"),
2879    split_dwarf_out_dir : Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
2880        "location for writing split DWARF objects (`.dwo`) if enabled"),
2881    split_lto_unit: Option<bool> = (None, parse_opt_bool, [TRACKED],
2882        "enable LTO unit splitting (default: no)"),
2883    src_hash_algorithm: Option<SourceFileHashAlgorithm> = (None, parse_src_file_hash, [TRACKED],
2884        "hash algorithm of source files in debug info (`md5`, `sha1`, or `sha256`)"),
2885    #[rustc_lint_opt_deny_field_access("use `Session::stack_protector` instead of this field")]
2886    stack_protector: StackProtector = (StackProtector::None, parse_stack_protector, [TRACKED] { MITIGATION: StackProtector },
2887        "control stack smash protection strategy (`rustc --print stack-protector-strategies` for details)"),
2888    staticlib_allow_rdylib_deps: bool = (false, parse_bool, [TRACKED],
2889        "allow staticlibs to have rust dylib dependencies"),
2890    staticlib_hide_internal_symbols: bool = (false, parse_bool, [TRACKED],
2891        "hide non-exported Rust symbols when building staticlibs by setting STV_HIDDEN"),
2892    staticlib_rename_internal_symbols: bool = (false, parse_bool, [TRACKED],
2893        "rename non-exported Rust symbols when building staticlibs to avoid conflicts"),
2894    staticlib_prefer_dynamic: bool = (false, parse_bool, [TRACKED],
2895        "prefer dynamic linking to static linking for staticlibs (default: no)"),
2896    strict_init_checks: bool = (false, parse_bool, [TRACKED],
2897        "control if mem::uninitialized and mem::zeroed panic on more UB"),
2898    #[rustc_lint_opt_deny_field_access("use `Session::teach` instead of this field")]
2899    teach: bool = (false, parse_bool, [TRACKED],
2900        "show extended diagnostic help (default: no)"),
2901    temps_dir: Option<String> = (None, parse_opt_string, [UNTRACKED],
2902        "the directory the intermediate files are written to"),
2903    terminal_urls: TerminalUrl = (TerminalUrl::No, parse_terminal_url, [UNTRACKED],
2904        "use the OSC 8 hyperlink terminal specification to print hyperlinks in the compiler output"),
2905    #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")]
2906    thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED],
2907        "enable ThinLTO when possible"),
2908    threads: Option<String> = (None, parse_opt_string, [UNTRACKED],
2909        "use `--jobs-frontend` instead"),
2910    time_llvm_passes: bool = (false, parse_bool, [UNTRACKED],
2911        "measure time of each LLVM pass (default: no)"),
2912    time_passes: bool = (false, parse_bool, [UNTRACKED],
2913        "measure time of each rustc pass (default: no)"),
2914    time_passes_format: TimePassesFormat = (TimePassesFormat::Text, parse_time_passes_format, [UNTRACKED],
2915        "the format to use for -Z time-passes (`text` (default) or `json`)"),
2916    tiny_const_eval_limit: bool = (false, parse_bool, [TRACKED],
2917        "sets a tiny, non-configurable limit for const eval; useful for compiler tests"),
2918    #[rustc_lint_opt_deny_field_access("use `Session::tls_model` instead of this field")]
2919    tls_model: Option<TlsModel> = (None, parse_tls_model, [TRACKED],
2920        "choose the TLS model to use (`rustc --print tls-models` for details)"),
2921    trace_macros: bool = (false, parse_bool, [UNTRACKED],
2922        "for every macro invocation, print its name and arguments (default: no)"),
2923    track_diagnostics: bool = (false, parse_bool, [UNTRACKED],
2924        "tracks where in rustc a diagnostic was emitted"),
2925    translate_remapped_path_to_local_path: bool = (true, parse_bool, [TRACKED],
2926        "translate remapped paths into local paths when possible (default: yes)"),
2927    trap_unreachable: Option<bool> = (None, parse_opt_bool, [TRACKED],
2928        "generate trap instructions for unreachable intrinsics (default: use target setting, usually yes)"),
2929    treat_err_as_bug: Option<NonZero<usize>> = (None, parse_treat_err_as_bug, [TRACKED],
2930        "treat the `val`th error that occurs as bug (default if not specified: 0 - don't treat errors as bugs. \
2931        default if specified without a value: 1 - treat the first error as bug)"),
2932    trim_diagnostic_paths: bool = (true, parse_bool, [UNTRACKED],
2933        "in diagnostics, use heuristics to shorten paths referring to items"),
2934    tune_cpu: Option<String> = (None, parse_opt_string, [TRACKED],
2935        "select processor to schedule for (`rustc --print target-cpus` for details)"),
2936    #[rustc_lint_opt_deny_field_access("use `TyCtxt::use_typing_mode_post_typeck` instead of this field")]
2937    typing_mode_post_typeck_until_borrowck: bool = (false, parse_bool, [TRACKED],
2938        "enable `TypingMode::PostTypeckUntilBorrowck`, changing the way opaque types are handled during MIR borrowck"),
2939    #[rustc_lint_opt_deny_field_access("use `Session::ub_checks` instead of this field")]
2940    ub_checks: Option<bool> = (None, parse_opt_bool, [TRACKED],
2941        "emit runtime checks for Undefined Behavior (default: -Cdebug-assertions)"),
2942    ui_testing: bool = (false, parse_bool, [UNTRACKED],
2943        "emit compiler diagnostics in a form suitable for UI testing (default: no)"),
2944    uninit_const_chunk_threshold: usize = (16, parse_number, [TRACKED],
2945        "allow generating const initializers with mixed init/uninit chunks, \
2946        and set the maximum number of chunks for which this is allowed (default: 16)"),
2947    unleash_the_miri_inside_of_you: bool = (false, parse_bool, [TRACKED],
2948        "take the brakes off const evaluation. NOTE: this is unsound (default: no)"),
2949    unpretty: Option<String> = (None, parse_unpretty, [UNTRACKED],
2950        "present the input source, unstable (and less-pretty) variants;
2951        `normal`,
2952        `expanded`, `expanded,identified`,
2953        `expanded,hygiene` (with internal representations),
2954        `ast-tree` (raw AST before expansion),
2955        `ast-tree,expanded` (raw AST after expansion),
2956        `hir` (the HIR), `hir,identified`,
2957        `hir,typed` (HIR with types for each node),
2958        `hir-tree` (dump the raw HIR),
2959        `thir-tree`, `thir-flat`,
2960        `mir` (the MIR), or `mir-cfg` (graphviz formatted MIR)"),
2961    unsound_mir_opts: bool = (false, parse_bool, [TRACKED],
2962        "enable unsound and buggy MIR optimizations (default: no)"),
2963    /// This name is kind of confusing: Most unstable options enable something themselves, while
2964    /// this just allows "normal" options to be feature-gated.
2965    ///
2966    /// The main check for `-Zunstable-options` takes place separately from the
2967    /// usual parsing of `-Z` options (see [`crate::config::nightly_options`]),
2968    /// so this boolean value is mostly used for enabling unstable _values_ of
2969    /// stable options. That separate check doesn't handle boolean values, so
2970    /// to avoid an inconsistent state we also forbid them here.
2971    #[rustc_lint_opt_deny_field_access("use `Session::unstable_options` instead of this field")]
2972    unstable_options: bool = (false, parse_no_value, [UNTRACKED],
2973        "adds unstable command line options to rustc interface (default: no)"),
2974    use_ctors_section: Option<bool> = (None, parse_opt_bool, [TRACKED],
2975        "use legacy .ctors section for initializers rather than .init_array"),
2976    use_sync_unwind: Option<bool> = (None, parse_opt_bool, [TRACKED],
2977        "Generate sync unwind tables instead of async unwind tables (default: no)"),
2978    validate_mir: bool = (false, parse_bool, [UNTRACKED],
2979        "validate MIR after each transformation"),
2980    verbose_asm: bool = (false, parse_bool, [TRACKED],
2981        "add descriptive comments from LLVM to the assembly (may change behavior) (default: no)"),
2982    #[rustc_lint_opt_deny_field_access("use `Session::verbose_internals` instead of this field")]
2983    verbose_internals: bool = (false, parse_bool, [TRACKED_NO_CRATE_HASH],
2984        "in general, enable more debug printouts (default: no)"),
2985    #[rustc_lint_opt_deny_field_access("use `Session::verify_llvm_ir` instead of this field")]
2986    verify_llvm_ir: bool = (false, parse_bool, [TRACKED],
2987        "verify LLVM IR (default: no)"),
2988    virtual_function_elimination: bool = (false, parse_bool, [TRACKED],
2989        "enables dead virtual function elimination optimization. \
2990        Requires `-Clto[=[fat,yes]]`"),
2991    wasi_exec_model: Option<WasiExecModel> = (None, parse_wasi_exec_model, [TRACKED],
2992        "whether to build a wasi command or reactor"),
2993    // This option only still exists to provide a more gradual transition path for people who need
2994    // the spec-complaint C ABI to be used.
2995    // FIXME remove this after a couple releases
2996    wasm_c_abi: () = ((), parse_wasm_c_abi, [TRACKED],
2997        "use spec-compliant C ABI for `wasm32-unknown-unknown` (deprecated, always enabled)"),
2998    wasm_proc_macros: bool = (false, parse_bool, [TRACKED],
2999        "enable support for compiling and loading wasm proc macros"),
3000    write_long_types_to_disk: bool = (true, parse_bool, [UNTRACKED],
3001        "whether long type names should be written to files instead of being printed in errors"),
3002    // tidy-alphabetical-end
3003
3004    // If you add a new option, please update:
3005    // - compiler/rustc_interface/src/tests.rs
3006    // - src/doc/unstable-book/src/compiler-flags
3007}