pub enum CallConv {
Fast,
Cold,
Tail,
SystemV,
WindowsFastcall,
AppleAarch64,
Probestack,
Winch,
}
Expand description
Calling convention identifiers.
Variants§
Fast
Best performance, not ABI-stable.
Cold
Smallest caller code size, not ABI-stable.
Tail
Supports tail calls, not ABI-stable.
SystemV
System V-style convention used on many platforms.
WindowsFastcall
Windows “fastcall” convention, also used for x64 and ARM.
AppleAarch64
Mac aarch64 calling convention, which is a tweaked aarch64 ABI.
Probestack
Specialized convention for the probestack function.
Winch
The winch calling convention, not ABI-stable.
The main difference to SystemV is that the winch calling convention defines no callee-save registers, and restricts the number of return registers to one integer, and one floating point.
Implementations§
Source§impl CallConv
impl CallConv
Sourcepub fn triple_default(triple: &Triple) -> Self
pub fn triple_default(triple: &Triple) -> Self
Return the default calling convention for the given target triple.
Sourcepub fn for_libcall(flags: &Flags, default_call_conv: CallConv) -> Self
pub fn for_libcall(flags: &Flags, default_call_conv: CallConv) -> Self
Returns the calling convention used for libcalls according to the current flags.
Sourcepub fn supports_tail_calls(&self) -> bool
pub fn supports_tail_calls(&self) -> bool
Does this calling convention support tail calls?
Trait Implementations§
impl Copy for CallConv
impl Eq for CallConv
impl StructuralPartialEq for CallConv
Auto Trait Implementations§
impl Freeze for CallConv
impl RefUnwindSafe for CallConv
impl Send for CallConv
impl Sync for CallConv
impl Unpin for CallConv
impl UnwindSafe for CallConv
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.