cranelift_codegen::isa::aarch64

Struct AArch64Backend

Source
pub struct AArch64Backend { /* private fields */ }
Available on crate feature arm64 only.
Expand description

An AArch64 backend.

Implementations§

Source§

impl AArch64Backend

Source

pub fn new_with_flags( triple: Triple, flags: Flags, isa_flags: Flags, ) -> AArch64Backend

Create a new AArch64 backend with the given (shared) flags.

Trait Implementations§

Source§

impl Display for AArch64Backend

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl TargetIsa for AArch64Backend

Source§

fn compile_function( &self, func: &Function, domtree: &DominatorTree, want_disasm: bool, ctrl_plane: &mut ControlPlane, ) -> CodegenResult<CompiledCodeBase<Stencil>>

Compile the given function.
Source§

fn name(&self) -> &'static str

Get the name of this ISA.
Source§

fn triple(&self) -> &Triple

Get the target triple that was used to make this trait object.
Source§

fn flags(&self) -> &Flags

Get the ISA-independent flags that were used to make this trait object.
Source§

fn isa_flags(&self) -> Vec<Value>

Get the ISA-dependent flag values that were used to make this trait object.
Source§

fn is_branch_protection_enabled(&self) -> bool

Get a flag indicating whether branch protection is enabled.
Source§

fn dynamic_vector_bytes(&self, _dyn_ty: Type) -> u32

Get the ISA-dependent maximum vector register size, in bytes.
Source§

fn emit_unwind_info( &self, result: &CompiledCode, kind: UnwindInfoKind, ) -> CodegenResult<Option<UnwindInfo>>

Available on crate feature unwind only.
Creates unwind information for the function. Read more
Source§

fn create_systemv_cie(&self) -> Option<CommonInformationEntry>

Available on crate feature unwind only.
Creates a new System V Common Information Entry for the ISA. Read more
Source§

fn text_section_builder(&self, num_funcs: usize) -> Box<dyn TextSectionBuilder>

Returns an object that can be used to build the text section of an executable. Read more
Source§

fn map_regalloc_reg_to_dwarf( &self, reg: Reg, ) -> Result<u16, RegisterMappingError>

Available on crate feature unwind only.
Map a regalloc::Reg to its corresponding DWARF register.
Source§

fn function_alignment(&self) -> FunctionAlignment

Returns the minimum function alignment and the preferred function alignment, for performance, required by this ISA.
Source§

fn page_size_align_log2(&self) -> u8

The log2 of the target’s page size and alignment. Read more
Source§

fn has_native_fma(&self) -> bool

Returns whether this ISA has a native fused-multiply-and-add instruction for floats. Read more
Source§

fn has_x86_blendv_lowering(&self, _: Type) -> bool

Returns whether the CLIF x86_blendv instruction is implemented for this ISA for the specified type.
Source§

fn has_x86_pshufb_lowering(&self) -> bool

Returns whether the CLIF x86_pshufb instruction is implemented for this ISA.
Source§

fn has_x86_pmulhrsw_lowering(&self) -> bool

Returns whether the CLIF x86_pmulhrsw instruction is implemented for this ISA.
Source§

fn has_x86_pmaddubsw_lowering(&self) -> bool

Returns whether the CLIF x86_pmaddubsw instruction is implemented for this ISA.
Source§

fn wrapped(self) -> OwnedTargetIsa
where Self: Sized + 'static,

Create a polymorphic TargetIsa from this specific implementation.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.