Struct rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrs
source · [−]pub struct CodegenFnAttrs {
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 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 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
sourceimpl 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
sourceimpl Clone for CodegenFnAttrs
impl Clone for CodegenFnAttrs
sourcefn clone(&self) -> CodegenFnAttrs
fn clone(&self) -> CodegenFnAttrs
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for CodegenFnAttrs
impl Debug for CodegenFnAttrs
sourceimpl<'tcx, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for CodegenFnAttrs
impl<'tcx, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for CodegenFnAttrs
sourceimpl<'tcx, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for CodegenFnAttrs
impl<'tcx, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for CodegenFnAttrs
sourceimpl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for CodegenFnAttrs
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
sourcedefault fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_debug_str(&self, Ctxt) -> String
sourcedefault fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
default fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> 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. Read moresourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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