Skip to main content

rustc_abi/
extern_abi.rs

1use std::cmp::Ordering;
2use std::fmt;
3use std::hash::{Hash, Hasher};
4
5#[cfg(feature = "nightly")]
6use rustc_data_structures::stable_hash::{StableHash, StableHashCtxt, StableHasher, StableOrd};
7#[cfg(feature = "nightly")]
8use rustc_macros::{Decodable, Encodable};
9#[cfg(feature = "nightly")]
10use rustc_span::Symbol;
11
12use crate::AbiFromStrErr;
13
14#[cfg(test)]
15mod tests;
16
17/// ABI we expect to see within `extern "{abi}"`
18#[derive(#[automatically_derived]
impl ::core::clone::Clone for ExternAbi {
    #[inline]
    fn clone(&self) -> ExternAbi {
        let _: ::core::clone::AssertParamIsClone<bool>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ExternAbi { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for ExternAbi {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ExternAbi::C { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "C",
                    "unwind", &__self_0),
            ExternAbi::System { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "System", "unwind", &__self_0),
            ExternAbi::Rust => ::core::fmt::Formatter::write_str(f, "Rust"),
            ExternAbi::RustCall =>
                ::core::fmt::Formatter::write_str(f, "RustCall"),
            ExternAbi::RustCold =>
                ::core::fmt::Formatter::write_str(f, "RustCold"),
            ExternAbi::RustInvalid =>
                ::core::fmt::Formatter::write_str(f, "RustInvalid"),
            ExternAbi::RustPreserveNone =>
                ::core::fmt::Formatter::write_str(f, "RustPreserveNone"),
            ExternAbi::Unadjusted =>
                ::core::fmt::Formatter::write_str(f, "Unadjusted"),
            ExternAbi::Custom =>
                ::core::fmt::Formatter::write_str(f, "Custom"),
            ExternAbi::EfiApi =>
                ::core::fmt::Formatter::write_str(f, "EfiApi"),
            ExternAbi::Swift => ::core::fmt::Formatter::write_str(f, "Swift"),
            ExternAbi::Aapcs { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Aapcs",
                    "unwind", &__self_0),
            ExternAbi::CmseNonSecureCall =>
                ::core::fmt::Formatter::write_str(f, "CmseNonSecureCall"),
            ExternAbi::CmseNonSecureEntry =>
                ::core::fmt::Formatter::write_str(f, "CmseNonSecureEntry"),
            ExternAbi::GpuKernel =>
                ::core::fmt::Formatter::write_str(f, "GpuKernel"),
            ExternAbi::PtxKernel =>
                ::core::fmt::Formatter::write_str(f, "PtxKernel"),
            ExternAbi::AvrInterrupt =>
                ::core::fmt::Formatter::write_str(f, "AvrInterrupt"),
            ExternAbi::AvrNonBlockingInterrupt =>
                ::core::fmt::Formatter::write_str(f,
                    "AvrNonBlockingInterrupt"),
            ExternAbi::Msp430Interrupt =>
                ::core::fmt::Formatter::write_str(f, "Msp430Interrupt"),
            ExternAbi::RiscvInterruptM =>
                ::core::fmt::Formatter::write_str(f, "RiscvInterruptM"),
            ExternAbi::RiscvInterruptS =>
                ::core::fmt::Formatter::write_str(f, "RiscvInterruptS"),
            ExternAbi::X86Interrupt =>
                ::core::fmt::Formatter::write_str(f, "X86Interrupt"),
            ExternAbi::Cdecl { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Cdecl",
                    "unwind", &__self_0),
            ExternAbi::Stdcall { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Stdcall", "unwind", &__self_0),
            ExternAbi::Fastcall { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Fastcall", "unwind", &__self_0),
            ExternAbi::Thiscall { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Thiscall", "unwind", &__self_0),
            ExternAbi::Vectorcall { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Vectorcall", "unwind", &__self_0),
            ExternAbi::SysV64 { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "SysV64", "unwind", &__self_0),
            ExternAbi::Win64 { unwind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Win64",
                    "unwind", &__self_0),
        }
    }
}Debug)]
19#[cfg_attr(feature = "nightly", derive(const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ExternAbi {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ExternAbi::C { unwind: ref __binding_0 } => { 0usize }
                        ExternAbi::System { unwind: ref __binding_0 } => { 1usize }
                        ExternAbi::Rust => { 2usize }
                        ExternAbi::RustCall => { 3usize }
                        ExternAbi::RustCold => { 4usize }
                        ExternAbi::RustInvalid => { 5usize }
                        ExternAbi::RustPreserveNone => { 6usize }
                        ExternAbi::Unadjusted => { 7usize }
                        ExternAbi::Custom => { 8usize }
                        ExternAbi::EfiApi => { 9usize }
                        ExternAbi::Swift => { 10usize }
                        ExternAbi::Aapcs { unwind: ref __binding_0 } => { 11usize }
                        ExternAbi::CmseNonSecureCall => { 12usize }
                        ExternAbi::CmseNonSecureEntry => { 13usize }
                        ExternAbi::GpuKernel => { 14usize }
                        ExternAbi::PtxKernel => { 15usize }
                        ExternAbi::AvrInterrupt => { 16usize }
                        ExternAbi::AvrNonBlockingInterrupt => { 17usize }
                        ExternAbi::Msp430Interrupt => { 18usize }
                        ExternAbi::RiscvInterruptM => { 19usize }
                        ExternAbi::RiscvInterruptS => { 20usize }
                        ExternAbi::X86Interrupt => { 21usize }
                        ExternAbi::Cdecl { unwind: ref __binding_0 } => { 22usize }
                        ExternAbi::Stdcall { unwind: ref __binding_0 } => {
                            23usize
                        }
                        ExternAbi::Fastcall { unwind: ref __binding_0 } => {
                            24usize
                        }
                        ExternAbi::Thiscall { unwind: ref __binding_0 } => {
                            25usize
                        }
                        ExternAbi::Vectorcall { unwind: ref __binding_0 } => {
                            26usize
                        }
                        ExternAbi::SysV64 { unwind: ref __binding_0 } => { 27usize }
                        ExternAbi::Win64 { unwind: ref __binding_0 } => { 28usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ExternAbi::C { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::System { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Rust => {}
                    ExternAbi::RustCall => {}
                    ExternAbi::RustCold => {}
                    ExternAbi::RustInvalid => {}
                    ExternAbi::RustPreserveNone => {}
                    ExternAbi::Unadjusted => {}
                    ExternAbi::Custom => {}
                    ExternAbi::EfiApi => {}
                    ExternAbi::Swift => {}
                    ExternAbi::Aapcs { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::CmseNonSecureCall => {}
                    ExternAbi::CmseNonSecureEntry => {}
                    ExternAbi::GpuKernel => {}
                    ExternAbi::PtxKernel => {}
                    ExternAbi::AvrInterrupt => {}
                    ExternAbi::AvrNonBlockingInterrupt => {}
                    ExternAbi::Msp430Interrupt => {}
                    ExternAbi::RiscvInterruptM => {}
                    ExternAbi::RiscvInterruptS => {}
                    ExternAbi::X86Interrupt => {}
                    ExternAbi::Cdecl { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Stdcall { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Fastcall { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Thiscall { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Vectorcall { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::SysV64 { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ExternAbi::Win64 { unwind: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ExternAbi {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        ExternAbi::C {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        ExternAbi::System {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    2usize => { ExternAbi::Rust }
                    3usize => { ExternAbi::RustCall }
                    4usize => { ExternAbi::RustCold }
                    5usize => { ExternAbi::RustInvalid }
                    6usize => { ExternAbi::RustPreserveNone }
                    7usize => { ExternAbi::Unadjusted }
                    8usize => { ExternAbi::Custom }
                    9usize => { ExternAbi::EfiApi }
                    10usize => { ExternAbi::Swift }
                    11usize => {
                        ExternAbi::Aapcs {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    12usize => { ExternAbi::CmseNonSecureCall }
                    13usize => { ExternAbi::CmseNonSecureEntry }
                    14usize => { ExternAbi::GpuKernel }
                    15usize => { ExternAbi::PtxKernel }
                    16usize => { ExternAbi::AvrInterrupt }
                    17usize => { ExternAbi::AvrNonBlockingInterrupt }
                    18usize => { ExternAbi::Msp430Interrupt }
                    19usize => { ExternAbi::RiscvInterruptM }
                    20usize => { ExternAbi::RiscvInterruptS }
                    21usize => { ExternAbi::X86Interrupt }
                    22usize => {
                        ExternAbi::Cdecl {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    23usize => {
                        ExternAbi::Stdcall {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    24usize => {
                        ExternAbi::Fastcall {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    25usize => {
                        ExternAbi::Thiscall {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    26usize => {
                        ExternAbi::Vectorcall {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    27usize => {
                        ExternAbi::SysV64 {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    28usize => {
                        ExternAbi::Win64 {
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ExternAbi`, expected 0..29, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable))]
20pub enum ExternAbi {
21    /* universal */
22    /// presumed C ABI for the platform
23    C {
24        unwind: bool,
25    },
26    /// ABI of the "system" interface, e.g. the Win32 API, always "aliasing"
27    System {
28        unwind: bool,
29    },
30
31    /// that's us!
32    Rust,
33    /// the mostly-unused `unboxed_closures` ABI, effectively now an impl detail unless someone
34    /// puts in the work to make it viable again... but would we need a special ABI?
35    RustCall,
36    /// For things unlikely to be called, where reducing register pressure in
37    /// `extern "Rust"` callers is worth paying extra cost in the callee.
38    /// Stronger than just `#[cold]` because `fn` pointers might be incompatible.
39    RustCold,
40
41    /// An always-invalid ABI that's used to test "this ABI is not supported by this platform"
42    /// in a platform-agnostic way.
43    RustInvalid,
44
45    /// Preserves no registers.
46    ///
47    /// Note, that this ABI is not stable in the registers it uses, is intended as an optimization
48    /// and may fall-back to a more conservative calling convention if the backend does not support
49    /// forcing callers to save all registers.
50    RustPreserveNone,
51
52    /// Unstable impl detail that directly uses Rust types to describe the ABI to LLVM.
53    /// Even normally-compatible Rust types can become ABI-incompatible with this ABI!
54    Unadjusted,
55
56    /// An ABI that rustc does not know how to call or define. Functions with this ABI can
57    /// only be created using `#[naked]` functions or `extern "custom"` blocks, and can only
58    /// be called from inline assembly.
59    Custom,
60
61    /// UEFI ABI, usually an alias of C, but sometimes an arch-specific alias
62    /// and only valid on platforms that have a UEFI standard
63    EfiApi,
64
65    /// Swift's calling convention, used to interoperate with Swift code without
66    /// going through C as an intermediary.
67    Swift,
68
69    /* arm */
70    /// Arm Architecture Procedure Call Standard, sometimes `ExternAbi::C` is an alias for this
71    Aapcs {
72        unwind: bool,
73    },
74    /// extremely constrained barely-C ABI for TrustZone
75    CmseNonSecureCall,
76    /// extremely constrained barely-C ABI for TrustZone
77    CmseNonSecureEntry,
78
79    /* gpu */
80    /// An entry-point function called by the GPU's host
81    GpuKernel,
82    /// An entry-point function called by the GPU's host
83    // FIXME: why do we have two of these?
84    PtxKernel,
85
86    /* interrupt */
87    AvrInterrupt,
88    AvrNonBlockingInterrupt,
89    Msp430Interrupt,
90    RiscvInterruptM,
91    RiscvInterruptS,
92    X86Interrupt,
93
94    /* x86 */
95    /// `ExternAbi::C` but spelled funny because x86
96    Cdecl {
97        unwind: bool,
98    },
99    /// gnu-stdcall on "unix" and win-stdcall on "windows"
100    Stdcall {
101        unwind: bool,
102    },
103    /// gnu-fastcall on "unix" and win-fastcall on "windows"
104    Fastcall {
105        unwind: bool,
106    },
107    /// windows C++ ABI
108    Thiscall {
109        unwind: bool,
110    },
111    /// uses AVX and stuff
112    Vectorcall {
113        unwind: bool,
114    },
115
116    /* x86_64 */
117    SysV64 {
118        unwind: bool,
119    },
120    Win64 {
121        unwind: bool,
122    },
123}
124
125macro_rules! abi_impls {
126    ($e_name:ident = {
127        $($variant:ident $({ unwind: $uw:literal })? =><= $tok:literal,)*
128    }) => {
129        impl $e_name {
130            pub const ALL_VARIANTS: &[Self] = &[
131                $($e_name::$variant $({ unwind: $uw })*,)*
132            ];
133            pub const fn as_str(&self) -> &'static str {
134                match self {
135                    $($e_name::$variant $( { unwind: $uw } )* => $tok,)*
136                }
137            }
138            // FIXME(FnSigKind): when PartialEq is stably const, use it instead
139            const fn internal_const_eq(&self, other: &Self) -> bool {
140                match (self, other) {
141                    $( ( $e_name::$variant $( { unwind: $uw } )* , $e_name::$variant $( { unwind: $uw } )* ) => true,)*
142                    _ => false,
143                }
144            }
145            // ALL_VARIANTS.iter().position(|v| v == self), but const
146            pub const fn as_packed(&self) -> u8 {
147                let mut index = 0;
148                while index < $e_name::ALL_VARIANTS.len() {
149                    if self.internal_const_eq(&$e_name::ALL_VARIANTS[index]) {
150                        return index as u8;
151                    }
152                    index += 1;
153                }
154                panic!("unreachable: invalid ExternAbi variant");
155            }
156            pub const fn from_packed(index: u8) -> Self {
157                let index = index as usize;
158                assert!(index < $e_name::ALL_VARIANTS.len(), "invalid ExternAbi index");
159                $e_name::ALL_VARIANTS[index]
160            }
161        }
162
163        impl ::core::str::FromStr for $e_name {
164            type Err = AbiFromStrErr;
165            fn from_str(s: &str) -> Result<$e_name, Self::Err> {
166                match s {
167                    $($tok => Ok($e_name::$variant $({ unwind: $uw })*),)*
168                    _ => Err(AbiFromStrErr::Unknown),
169                }
170            }
171        }
172    }
173}
174
175impl ExternAbi {
    pub const ALL_VARIANTS: &[Self] =
        &[ExternAbi::C { unwind: false }, ExternAbi::C { unwind: true },
                    ExternAbi::Rust, ExternAbi::Swift,
                    ExternAbi::Aapcs { unwind: false },
                    ExternAbi::Aapcs { unwind: true }, ExternAbi::AvrInterrupt,
                    ExternAbi::AvrNonBlockingInterrupt,
                    ExternAbi::Cdecl { unwind: false },
                    ExternAbi::Cdecl { unwind: true },
                    ExternAbi::CmseNonSecureCall, ExternAbi::CmseNonSecureEntry,
                    ExternAbi::Custom, ExternAbi::EfiApi,
                    ExternAbi::Fastcall { unwind: false },
                    ExternAbi::Fastcall { unwind: true }, ExternAbi::GpuKernel,
                    ExternAbi::Msp430Interrupt, ExternAbi::PtxKernel,
                    ExternAbi::RiscvInterruptM, ExternAbi::RiscvInterruptS,
                    ExternAbi::RustCall, ExternAbi::RustCold,
                    ExternAbi::RustInvalid, ExternAbi::RustPreserveNone,
                    ExternAbi::Stdcall { unwind: false },
                    ExternAbi::Stdcall { unwind: true },
                    ExternAbi::System { unwind: false },
                    ExternAbi::System { unwind: true },
                    ExternAbi::SysV64 { unwind: false },
                    ExternAbi::SysV64 { unwind: true },
                    ExternAbi::Thiscall { unwind: false },
                    ExternAbi::Thiscall { unwind: true }, ExternAbi::Unadjusted,
                    ExternAbi::Vectorcall { unwind: false },
                    ExternAbi::Vectorcall { unwind: true },
                    ExternAbi::Win64 { unwind: false },
                    ExternAbi::Win64 { unwind: true }, ExternAbi::X86Interrupt];
    pub const fn as_str(&self) -> &'static str {
        match self {
            ExternAbi::C { unwind: false } => "C",
            ExternAbi::C { unwind: true } => "C-unwind",
            ExternAbi::Rust => "Rust",
            ExternAbi::Swift => "Swift",
            ExternAbi::Aapcs { unwind: false } => "aapcs",
            ExternAbi::Aapcs { unwind: true } => "aapcs-unwind",
            ExternAbi::AvrInterrupt => "avr-interrupt",
            ExternAbi::AvrNonBlockingInterrupt =>
                "avr-non-blocking-interrupt",
            ExternAbi::Cdecl { unwind: false } => "cdecl",
            ExternAbi::Cdecl { unwind: true } => "cdecl-unwind",
            ExternAbi::CmseNonSecureCall => "cmse-nonsecure-call",
            ExternAbi::CmseNonSecureEntry => "cmse-nonsecure-entry",
            ExternAbi::Custom => "custom",
            ExternAbi::EfiApi => "efiapi",
            ExternAbi::Fastcall { unwind: false } => "fastcall",
            ExternAbi::Fastcall { unwind: true } => "fastcall-unwind",
            ExternAbi::GpuKernel => "gpu-kernel",
            ExternAbi::Msp430Interrupt => "msp430-interrupt",
            ExternAbi::PtxKernel => "ptx-kernel",
            ExternAbi::RiscvInterruptM => "riscv-interrupt-m",
            ExternAbi::RiscvInterruptS => "riscv-interrupt-s",
            ExternAbi::RustCall => "rust-call",
            ExternAbi::RustCold => "rust-cold",
            ExternAbi::RustInvalid => "rust-invalid",
            ExternAbi::RustPreserveNone => "rust-preserve-none",
            ExternAbi::Stdcall { unwind: false } => "stdcall",
            ExternAbi::Stdcall { unwind: true } => "stdcall-unwind",
            ExternAbi::System { unwind: false } => "system",
            ExternAbi::System { unwind: true } => "system-unwind",
            ExternAbi::SysV64 { unwind: false } => "sysv64",
            ExternAbi::SysV64 { unwind: true } => "sysv64-unwind",
            ExternAbi::Thiscall { unwind: false } => "thiscall",
            ExternAbi::Thiscall { unwind: true } => "thiscall-unwind",
            ExternAbi::Unadjusted => "unadjusted",
            ExternAbi::Vectorcall { unwind: false } => "vectorcall",
            ExternAbi::Vectorcall { unwind: true } => "vectorcall-unwind",
            ExternAbi::Win64 { unwind: false } => "win64",
            ExternAbi::Win64 { unwind: true } => "win64-unwind",
            ExternAbi::X86Interrupt => "x86-interrupt",
        }
    }
    const fn internal_const_eq(&self, other: &Self) -> bool {
        match (self, other) {
            (ExternAbi::C { unwind: false }, ExternAbi::C { unwind: false })
                => true,
            (ExternAbi::C { unwind: true }, ExternAbi::C { unwind: true }) =>
                true,
            (ExternAbi::Rust, ExternAbi::Rust) => true,
            (ExternAbi::Swift, ExternAbi::Swift) => true,
            (ExternAbi::Aapcs { unwind: false }, ExternAbi::Aapcs {
                unwind: false }) => true,
            (ExternAbi::Aapcs { unwind: true }, ExternAbi::Aapcs {
                unwind: true }) => true,
            (ExternAbi::AvrInterrupt, ExternAbi::AvrInterrupt) => true,
            (ExternAbi::AvrNonBlockingInterrupt,
                ExternAbi::AvrNonBlockingInterrupt) => true,
            (ExternAbi::Cdecl { unwind: false }, ExternAbi::Cdecl {
                unwind: false }) => true,
            (ExternAbi::Cdecl { unwind: true }, ExternAbi::Cdecl {
                unwind: true }) => true,
            (ExternAbi::CmseNonSecureCall, ExternAbi::CmseNonSecureCall) =>
                true,
            (ExternAbi::CmseNonSecureEntry, ExternAbi::CmseNonSecureEntry) =>
                true,
            (ExternAbi::Custom, ExternAbi::Custom) => true,
            (ExternAbi::EfiApi, ExternAbi::EfiApi) => true,
            (ExternAbi::Fastcall { unwind: false }, ExternAbi::Fastcall {
                unwind: false }) => true,
            (ExternAbi::Fastcall { unwind: true }, ExternAbi::Fastcall {
                unwind: true }) => true,
            (ExternAbi::GpuKernel, ExternAbi::GpuKernel) => true,
            (ExternAbi::Msp430Interrupt, ExternAbi::Msp430Interrupt) => true,
            (ExternAbi::PtxKernel, ExternAbi::PtxKernel) => true,
            (ExternAbi::RiscvInterruptM, ExternAbi::RiscvInterruptM) => true,
            (ExternAbi::RiscvInterruptS, ExternAbi::RiscvInterruptS) => true,
            (ExternAbi::RustCall, ExternAbi::RustCall) => true,
            (ExternAbi::RustCold, ExternAbi::RustCold) => true,
            (ExternAbi::RustInvalid, ExternAbi::RustInvalid) => true,
            (ExternAbi::RustPreserveNone, ExternAbi::RustPreserveNone) =>
                true,
            (ExternAbi::Stdcall { unwind: false }, ExternAbi::Stdcall {
                unwind: false }) => true,
            (ExternAbi::Stdcall { unwind: true }, ExternAbi::Stdcall {
                unwind: true }) => true,
            (ExternAbi::System { unwind: false }, ExternAbi::System {
                unwind: false }) => true,
            (ExternAbi::System { unwind: true }, ExternAbi::System {
                unwind: true }) => true,
            (ExternAbi::SysV64 { unwind: false }, ExternAbi::SysV64 {
                unwind: false }) => true,
            (ExternAbi::SysV64 { unwind: true }, ExternAbi::SysV64 {
                unwind: true }) => true,
            (ExternAbi::Thiscall { unwind: false }, ExternAbi::Thiscall {
                unwind: false }) => true,
            (ExternAbi::Thiscall { unwind: true }, ExternAbi::Thiscall {
                unwind: true }) => true,
            (ExternAbi::Unadjusted, ExternAbi::Unadjusted) => true,
            (ExternAbi::Vectorcall { unwind: false }, ExternAbi::Vectorcall {
                unwind: false }) => true,
            (ExternAbi::Vectorcall { unwind: true }, ExternAbi::Vectorcall {
                unwind: true }) => true,
            (ExternAbi::Win64 { unwind: false }, ExternAbi::Win64 {
                unwind: false }) => true,
            (ExternAbi::Win64 { unwind: true }, ExternAbi::Win64 {
                unwind: true }) => true,
            (ExternAbi::X86Interrupt, ExternAbi::X86Interrupt) => true,
            _ => false,
        }
    }
    pub const fn as_packed(&self) -> u8 {
        let mut index = 0;
        while index < ExternAbi::ALL_VARIANTS.len() {
            if self.internal_const_eq(&ExternAbi::ALL_VARIANTS[index]) {
                return index as u8;
            }
            index += 1;
        }
        {
            ::core::panicking::panic_fmt(format_args!("unreachable: invalid ExternAbi variant"));
        };
    }
    pub const fn from_packed(index: u8) -> Self {
        let index = index as usize;
        if !(index < ExternAbi::ALL_VARIANTS.len()) {
            {
                ::core::panicking::panic_fmt(format_args!("invalid ExternAbi index"));
            }
        };
        ExternAbi::ALL_VARIANTS[index]
    }
}
impl ::core::str::FromStr for ExternAbi {
    type Err = AbiFromStrErr;
    fn from_str(s: &str) -> Result<ExternAbi, Self::Err> {
        match s {
            "C" => Ok(ExternAbi::C { unwind: false }),
            "C-unwind" => Ok(ExternAbi::C { unwind: true }),
            "Rust" => Ok(ExternAbi::Rust),
            "Swift" => Ok(ExternAbi::Swift),
            "aapcs" => Ok(ExternAbi::Aapcs { unwind: false }),
            "aapcs-unwind" => Ok(ExternAbi::Aapcs { unwind: true }),
            "avr-interrupt" => Ok(ExternAbi::AvrInterrupt),
            "avr-non-blocking-interrupt" =>
                Ok(ExternAbi::AvrNonBlockingInterrupt),
            "cdecl" => Ok(ExternAbi::Cdecl { unwind: false }),
            "cdecl-unwind" => Ok(ExternAbi::Cdecl { unwind: true }),
            "cmse-nonsecure-call" => Ok(ExternAbi::CmseNonSecureCall),
            "cmse-nonsecure-entry" => Ok(ExternAbi::CmseNonSecureEntry),
            "custom" => Ok(ExternAbi::Custom),
            "efiapi" => Ok(ExternAbi::EfiApi),
            "fastcall" => Ok(ExternAbi::Fastcall { unwind: false }),
            "fastcall-unwind" => Ok(ExternAbi::Fastcall { unwind: true }),
            "gpu-kernel" => Ok(ExternAbi::GpuKernel),
            "msp430-interrupt" => Ok(ExternAbi::Msp430Interrupt),
            "ptx-kernel" => Ok(ExternAbi::PtxKernel),
            "riscv-interrupt-m" => Ok(ExternAbi::RiscvInterruptM),
            "riscv-interrupt-s" => Ok(ExternAbi::RiscvInterruptS),
            "rust-call" => Ok(ExternAbi::RustCall),
            "rust-cold" => Ok(ExternAbi::RustCold),
            "rust-invalid" => Ok(ExternAbi::RustInvalid),
            "rust-preserve-none" => Ok(ExternAbi::RustPreserveNone),
            "stdcall" => Ok(ExternAbi::Stdcall { unwind: false }),
            "stdcall-unwind" => Ok(ExternAbi::Stdcall { unwind: true }),
            "system" => Ok(ExternAbi::System { unwind: false }),
            "system-unwind" => Ok(ExternAbi::System { unwind: true }),
            "sysv64" => Ok(ExternAbi::SysV64 { unwind: false }),
            "sysv64-unwind" => Ok(ExternAbi::SysV64 { unwind: true }),
            "thiscall" => Ok(ExternAbi::Thiscall { unwind: false }),
            "thiscall-unwind" => Ok(ExternAbi::Thiscall { unwind: true }),
            "unadjusted" => Ok(ExternAbi::Unadjusted),
            "vectorcall" => Ok(ExternAbi::Vectorcall { unwind: false }),
            "vectorcall-unwind" => Ok(ExternAbi::Vectorcall { unwind: true }),
            "win64" => Ok(ExternAbi::Win64 { unwind: false }),
            "win64-unwind" => Ok(ExternAbi::Win64 { unwind: true }),
            "x86-interrupt" => Ok(ExternAbi::X86Interrupt),
            _ => Err(AbiFromStrErr::Unknown),
        }
    }
}abi_impls! {
176    ExternAbi = {
177            C { unwind: false } =><= "C",
178            C { unwind: true } =><= "C-unwind",
179            Rust =><= "Rust",
180            Swift =><= "Swift",
181            Aapcs { unwind: false } =><= "aapcs",
182            Aapcs { unwind: true } =><= "aapcs-unwind",
183            AvrInterrupt =><= "avr-interrupt",
184            AvrNonBlockingInterrupt =><= "avr-non-blocking-interrupt",
185            Cdecl { unwind: false } =><= "cdecl",
186            Cdecl { unwind: true } =><= "cdecl-unwind",
187            CmseNonSecureCall =><= "cmse-nonsecure-call",
188            CmseNonSecureEntry =><= "cmse-nonsecure-entry",
189            Custom =><= "custom",
190            EfiApi =><= "efiapi",
191            Fastcall { unwind: false } =><= "fastcall",
192            Fastcall { unwind: true } =><= "fastcall-unwind",
193            GpuKernel =><= "gpu-kernel",
194            Msp430Interrupt =><= "msp430-interrupt",
195            PtxKernel =><= "ptx-kernel",
196            RiscvInterruptM =><= "riscv-interrupt-m",
197            RiscvInterruptS =><= "riscv-interrupt-s",
198            RustCall =><= "rust-call",
199            RustCold =><= "rust-cold",
200            RustInvalid =><= "rust-invalid",
201            RustPreserveNone =><= "rust-preserve-none",
202            Stdcall { unwind: false } =><= "stdcall",
203            Stdcall { unwind: true } =><= "stdcall-unwind",
204            System { unwind: false } =><= "system",
205            System { unwind: true } =><= "system-unwind",
206            SysV64 { unwind: false } =><= "sysv64",
207            SysV64 { unwind: true } =><= "sysv64-unwind",
208            Thiscall { unwind: false } =><= "thiscall",
209            Thiscall { unwind: true } =><= "thiscall-unwind",
210            Unadjusted =><= "unadjusted",
211            Vectorcall { unwind: false } =><= "vectorcall",
212            Vectorcall { unwind: true } =><= "vectorcall-unwind",
213            Win64 { unwind: false } =><= "win64",
214            Win64 { unwind: true } =><= "win64-unwind",
215            X86Interrupt =><= "x86-interrupt",
216    }
217}
218
219impl Ord for ExternAbi {
220    fn cmp(&self, rhs: &Self) -> Ordering {
221        self.as_str().cmp(rhs.as_str())
222    }
223}
224
225impl PartialOrd for ExternAbi {
226    fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
227        Some(self.cmp(rhs))
228    }
229}
230
231impl PartialEq for ExternAbi {
232    fn eq(&self, rhs: &Self) -> bool {
233        self.cmp(rhs) == Ordering::Equal
234    }
235}
236
237impl Eq for ExternAbi {}
238
239impl Hash for ExternAbi {
240    fn hash<H: Hasher>(&self, state: &mut H) {
241        self.as_str().hash(state);
242        // double-assurance of a prefix breaker
243        u32::from_be_bytes(*b"ABI\0").hash(state);
244    }
245}
246
247#[cfg(feature = "nightly")]
248impl StableHash for ExternAbi {
249    #[inline]
250    fn stable_hash<Hcx: StableHashCtxt>(&self, _: &mut Hcx, hasher: &mut StableHasher) {
251        Hash::hash(self, hasher);
252    }
253}
254
255#[cfg(feature = "nightly")]
256impl StableOrd for ExternAbi {
257    const CAN_USE_UNSTABLE_SORT: bool = true;
258
259    // because each ABI is hashed like a string, there is no possible instability
260    const THIS_IMPLEMENTATION_HAS_BEEN_TRIPLE_CHECKED: () = ();
261}
262
263#[cfg(feature = "nightly")]
264impl ::rustc_error_messages::IntoDiagArg for ExternAbi {
    fn into_diag_arg(self, path: &mut Option<std::path::PathBuf>)
        -> ::rustc_error_messages::DiagArgValue {
        self.to_string().into_diag_arg(path)
    }
}rustc_error_messages::into_diag_arg_using_display!(ExternAbi);
265
266#[cfg(feature = "nightly")]
267#[derive(#[automatically_derived]
impl ::core::fmt::Debug for CVariadicStatus {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            CVariadicStatus::NotSupported =>
                ::core::fmt::Formatter::write_str(f, "NotSupported"),
            CVariadicStatus::Stable =>
                ::core::fmt::Formatter::write_str(f, "Stable"),
            CVariadicStatus::Unstable { feature: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Unstable", "feature", &__self_0),
        }
    }
}Debug)]
268pub enum CVariadicStatus {
269    NotSupported,
270    Stable,
271    Unstable { feature: Symbol },
272}
273
274impl ExternAbi {
275    /// An ABI "like Rust"
276    ///
277    /// These ABIs are fully controlled by the Rust compiler, which means they
278    /// - support unwinding with `-Cpanic=unwind`, unlike `extern "C"`
279    /// - often diverge from the C ABI
280    /// - are subject to change between compiler versions
281    pub fn is_rustic_abi(self) -> bool {
282        use ExternAbi::*;
283        #[allow(non_exhaustive_omitted_patterns)] match self {
    Rust | RustCall | RustCold | RustPreserveNone => true,
    _ => false,
}matches!(self, Rust | RustCall | RustCold | RustPreserveNone)
284    }
285
286    /// Returns whether the ABI supports C variadics. This only controls whether we allow *imports*
287    /// of such functions via `extern` blocks; there's a separate check during AST construction
288    /// guarding *definitions* of variadic functions.
289    #[cfg(feature = "nightly")]
290    pub fn supports_c_variadic(self) -> CVariadicStatus {
291        // * C and Cdecl obviously support varargs.
292        // * C can be based on Aapcs, SysV64 or Win64, so they must support varargs.
293        // * EfiApi is based on Win64 or C, so it also supports it.
294        // * System automatically falls back to C when used with variadics, therefore supports it.
295        //
296        // * Stdcall does not, because it would be impossible for the callee to clean
297        //   up the arguments. (callee doesn't know how many arguments are there)
298        // * Same for Fastcall, Vectorcall and Thiscall.
299        // * Other calling conventions are related to hardware or the compiler itself.
300        //
301        // All of the supported ones must have a test in `tests/codegen/cffi/c-variadic-ffi.rs`.
302        match self {
303            Self::C { .. }
304            | Self::Cdecl { .. }
305            | Self::Aapcs { .. }
306            | Self::Win64 { .. }
307            | Self::SysV64 { .. }
308            | Self::EfiApi
309            | Self::System { .. } => CVariadicStatus::Stable,
310            _ => CVariadicStatus::NotSupported,
311        }
312    }
313
314    /// Returns whether the ABI supports guaranteed tail calls.
315    #[cfg(feature = "nightly")]
316    pub fn supports_guaranteed_tail_call(self) -> bool {
317        match self {
318            Self::CmseNonSecureCall | Self::CmseNonSecureEntry => {
319                // See https://godbolt.org/z/9jhdeqErv. The CMSE calling conventions clear registers
320                // before returning, and hence cannot guarantee a tail call.
321                false
322            }
323            Self::AvrInterrupt
324            | Self::AvrNonBlockingInterrupt
325            | Self::Msp430Interrupt
326            | Self::RiscvInterruptM
327            | Self::RiscvInterruptS
328            | Self::X86Interrupt => {
329                // See https://godbolt.org/z/Edfjnxxcq. Interrupts cannot be called directly.
330                false
331            }
332            Self::GpuKernel | Self::PtxKernel => {
333                // See https://godbolt.org/z/jq5TE5jK1.
334                false
335            }
336            Self::Custom => {
337                // This ABI does not support calls at all (except via assembly).
338                false
339            }
340            Self::C { .. }
341            | Self::System { .. }
342            | Self::Rust
343            | Self::RustCall
344            | Self::RustCold
345            | Self::RustInvalid
346            | Self::Unadjusted
347            | Self::EfiApi
348            | Self::Aapcs { .. }
349            | Self::Cdecl { .. }
350            | Self::Stdcall { .. }
351            | Self::Fastcall { .. }
352            | Self::Thiscall { .. }
353            | Self::Vectorcall { .. }
354            | Self::SysV64 { .. }
355            | Self::Win64 { .. }
356            | Self::RustPreserveNone
357            | Self::Swift => true,
358        }
359    }
360}
361
362pub fn all_names() -> Vec<&'static str> {
363    ExternAbi::ALL_VARIANTS.iter().map(|abi| abi.as_str()).collect()
364}
365
366impl ExternAbi {
367    /// Default ABI chosen for `extern fn` declarations without an explicit ABI.
368    pub const FALLBACK: ExternAbi = ExternAbi::C { unwind: false };
369
370    pub fn name(self) -> &'static str {
371        self.as_str()
372    }
373}
374
375impl fmt::Display for ExternAbi {
376    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
377        f.write_fmt(format_args!("\"{0}\"", self.as_str()))write!(f, "\"{}\"", self.as_str())
378    }
379}