Struct rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrs
source · pub struct CodegenFnAttrs {Show 13 fields
pub flags: CodegenFnAttrFlags,
pub inline: InlineAttr,
pub optimize: OptimizeAttr,
pub export_name: Option<Symbol>,
pub link_name: Option<Symbol>,
pub link_ordinal: Option<u16>,
pub target_features: Vec<Symbol>,
pub linkage: Option<Linkage>,
pub import_linkage: Option<Linkage>,
pub link_section: Option<Symbol>,
pub no_sanitize: SanitizerSet,
pub instruction_set: Option<InstructionSetAttr>,
pub alignment: Option<u32>,
}
Fields§
§flags: CodegenFnAttrFlags
§inline: InlineAttr
Parsed representation of the #[inline]
attribute
optimize: OptimizeAttr
Parsed representation of the #[optimize]
attribute
export_name: Option<Symbol>
The #[export_name = "..."]
attribute, indicating a custom symbol a
function should be exported under
link_name: Option<Symbol>
The #[link_name = "..."]
attribute, indicating a custom symbol an
imported function should be imported as. Note that export_name
probably isn’t set when this is set, this is for foreign items while
#[export_name]
is for Rust-defined functions.
link_ordinal: Option<u16>
The #[link_ordinal = "..."]
attribute, indicating an ordinal an
imported function has in the dynamic library. Note that this must not
be set when link_name
is set. This is for foreign items with the
“raw-dylib” kind.
target_features: Vec<Symbol>
The #[target_feature(enable = "...")]
attribute and the enabled
features (only enabled features are supported right now).
linkage: Option<Linkage>
The #[linkage = "..."]
attribute on Rust-defined items and the value we found.
import_linkage: Option<Linkage>
The #[linkage = "..."]
attribute on foreign items and the value we found.
link_section: Option<Symbol>
The #[link_section = "..."]
attribute, or what executable section this
should be placed in.
no_sanitize: SanitizerSet
The #[no_sanitize(...)]
attribute. Indicates sanitizers for which
instrumentation should be disabled inside the annotated function.
instruction_set: Option<InstructionSetAttr>
The #[instruction_set(set)]
attribute. Indicates if the generated code should
be generated against a specific instruction set. Only usable on architectures which allow
switching between multiple instruction sets.
alignment: Option<u32>
The #[repr(align(...))]
attribute. Indicates the value of which the function should be
aligned to.
Implementations§
source§impl CodegenFnAttrs
impl CodegenFnAttrs
pub const EMPTY: &'static Self = _
pub const fn new() -> CodegenFnAttrs
sourcepub fn requests_inline(&self) -> bool
pub fn requests_inline(&self) -> bool
Returns true
if #[inline]
or #[inline(always)]
is present.
sourcepub fn contains_extern_indicator(&self) -> bool
pub fn contains_extern_indicator(&self) -> bool
Returns true
if it looks like this symbol needs to be exported, for example:
#[no_mangle]
is present#[export_name(...)]
is present#[linkage]
is present
Trait Implementations§
source§impl Clone for CodegenFnAttrs
impl Clone for CodegenFnAttrs
source§fn clone(&self) -> CodegenFnAttrs
fn clone(&self) -> CodegenFnAttrs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CodegenFnAttrs
impl Debug for CodegenFnAttrs
source§impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
fn hash_stable( &self, __hcx: &mut StableHashingContext<'__ctx>, __hasher: &mut StableHasher )
source§impl ParameterizedOverTcx for CodegenFnAttrs
impl ParameterizedOverTcx for CodegenFnAttrs
type Value<'tcx> = CodegenFnAttrs
Auto Trait Implementations§
impl RefUnwindSafe for CodegenFnAttrs
impl Send for CodegenFnAttrs
impl Sync for CodegenFnAttrs
impl Unpin for CodegenFnAttrs
impl UnwindSafe for CodegenFnAttrs
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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<Tcx, T> DepNodeParams<Tcx> for Twhere
Tcx: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Tcx, T> DepNodeParams<Tcx> for Twhere Tcx: DepContext, T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
source§default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_debug_str(&self, _: Tcx) -> String
source§default fn recover(_: Tcx, _: &DepNode) -> Option<T>
default fn recover(_: Tcx, _: &DepNode) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it.source§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<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> 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: &[QueryInfo], _guar: ErrorGuaranteed ) -> 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: 64 bytes