Enum rustc_codegen_llvm::llvm_::ffi::AttributeKind
source · #[repr(C)]pub enum AttributeKind {
Show 42 variants
AlwaysInline = 0,
ByVal = 1,
Cold = 2,
InlineHint = 3,
MinSize = 4,
Naked = 5,
NoAlias = 6,
NoCapture = 7,
NoInline = 8,
NonNull = 9,
NoRedZone = 10,
NoReturn = 11,
NoUnwind = 12,
OptimizeForSize = 13,
ReadOnly = 14,
SExt = 15,
StructRet = 16,
UWTable = 17,
ZExt = 18,
InReg = 19,
SanitizeThread = 20,
SanitizeAddress = 21,
SanitizeMemory = 22,
NonLazyBind = 23,
OptimizeNone = 24,
ReadNone = 26,
SanitizeHWAddress = 28,
WillReturn = 29,
StackProtectReq = 30,
StackProtectStrong = 31,
StackProtect = 32,
NoUndef = 33,
SanitizeMemTag = 34,
NoCfCheck = 35,
ShadowCallStack = 36,
AllocSize = 37,
AllocatedPointer = 38,
AllocAlign = 39,
SanitizeSafeStack = 40,
FnRetThunkExtern = 41,
Writable = 42,
DeadOnUnwind = 43,
}
Expand description
Matches LLVMRustAttribute in LLVMWrapper.h Semantically a subset of the C++ enum llvm::Attribute::AttrKind, though it is not ABI compatible (since it’s a C++ enum)
Variants§
AlwaysInline = 0
ByVal = 1
Cold = 2
InlineHint = 3
MinSize = 4
Naked = 5
NoAlias = 6
NoCapture = 7
NoInline = 8
NonNull = 9
NoRedZone = 10
NoReturn = 11
NoUnwind = 12
OptimizeForSize = 13
ReadOnly = 14
SExt = 15
StructRet = 16
UWTable = 17
ZExt = 18
InReg = 19
SanitizeThread = 20
SanitizeAddress = 21
SanitizeMemory = 22
NonLazyBind = 23
OptimizeNone = 24
ReadNone = 26
SanitizeHWAddress = 28
WillReturn = 29
StackProtectReq = 30
StackProtectStrong = 31
StackProtect = 32
NoUndef = 33
SanitizeMemTag = 34
NoCfCheck = 35
ShadowCallStack = 36
AllocSize = 37
AllocatedPointer = 38
AllocAlign = 39
SanitizeSafeStack = 40
FnRetThunkExtern = 41
Writable = 42
DeadOnUnwind = 43
Implementations§
source§impl AttributeKind
impl AttributeKind
sourcepub fn create_attr(self, llcx: &Context) -> &Attribute
pub fn create_attr(self, llcx: &Context) -> &Attribute
Create an LLVM Attribute with no associated value.
Trait Implementations§
source§impl Clone for AttributeKind
impl Clone for AttributeKind
source§fn clone(&self) -> AttributeKind
fn clone(&self) -> AttributeKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AttributeKind
impl Debug for AttributeKind
impl Copy for AttributeKind
Auto Trait Implementations§
impl Freeze for AttributeKind
impl RefUnwindSafe for AttributeKind
impl Send for AttributeKind
impl Sync for AttributeKind
impl Unpin for AttributeKind
impl UnwindSafe for AttributeKind
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'a mut [T]
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'a mut [T]
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 4 bytes
Size for each variant:
AlwaysInline
: 0 bytesByVal
: 0 bytesCold
: 0 bytesInlineHint
: 0 bytesMinSize
: 0 bytesNaked
: 0 bytesNoAlias
: 0 bytesNoCapture
: 0 bytesNoInline
: 0 bytesNonNull
: 0 bytesNoRedZone
: 0 bytesNoReturn
: 0 bytesNoUnwind
: 0 bytesOptimizeForSize
: 0 bytesReadOnly
: 0 bytesSExt
: 0 bytesStructRet
: 0 bytesUWTable
: 0 bytesZExt
: 0 bytesInReg
: 0 bytesSanitizeThread
: 0 bytesSanitizeAddress
: 0 bytesSanitizeMemory
: 0 bytesNonLazyBind
: 0 bytesOptimizeNone
: 0 bytesReadNone
: 0 bytesSanitizeHWAddress
: 0 bytesWillReturn
: 0 bytesStackProtectReq
: 0 bytesStackProtectStrong
: 0 bytesStackProtect
: 0 bytesNoUndef
: 0 bytesSanitizeMemTag
: 0 bytesNoCfCheck
: 0 bytesShadowCallStack
: 0 bytesAllocSize
: 0 bytesAllocatedPointer
: 0 bytesAllocAlign
: 0 bytesSanitizeSafeStack
: 0 bytesFnRetThunkExtern
: 0 bytesWritable
: 0 bytesDeadOnUnwind
: 0 bytes