Struct gimli::AArch64

source ·
pub struct AArch64;
Expand description

ARM 64-bit (AArch64) architecture specific definitions.

See DWARF for the ARM 64-bit Architecture.

Implementations§

source§

impl AArch64

source

pub const X0: Register = _

source

pub const X1: Register = _

source

pub const X2: Register = _

source

pub const X3: Register = _

source

pub const X4: Register = _

source

pub const X5: Register = _

source

pub const X6: Register = _

source

pub const X7: Register = _

source

pub const X8: Register = _

source

pub const X9: Register = _

source

pub const X10: Register = _

source

pub const X11: Register = _

source

pub const X12: Register = _

source

pub const X13: Register = _

source

pub const X14: Register = _

source

pub const X15: Register = _

source

pub const X16: Register = _

source

pub const X17: Register = _

source

pub const X18: Register = _

source

pub const X19: Register = _

source

pub const X20: Register = _

source

pub const X21: Register = _

source

pub const X22: Register = _

source

pub const X23: Register = _

source

pub const X24: Register = _

source

pub const X25: Register = _

source

pub const X26: Register = _

source

pub const X27: Register = _

source

pub const X28: Register = _

source

pub const X29: Register = _

source

pub const X30: Register = _

source

pub const SP: Register = _

source

pub const V0: Register = _

source

pub const V1: Register = _

source

pub const V2: Register = _

source

pub const V3: Register = _

source

pub const V4: Register = _

source

pub const V5: Register = _

source

pub const V6: Register = _

source

pub const V7: Register = _

source

pub const V8: Register = _

source

pub const V9: Register = _

source

pub const V10: Register = _

source

pub const V11: Register = _

source

pub const V12: Register = _

source

pub const V13: Register = _

source

pub const V14: Register = _

source

pub const V15: Register = _

source

pub const V16: Register = _

source

pub const V17: Register = _

source

pub const V18: Register = _

source

pub const V19: Register = _

source

pub const V20: Register = _

source

pub const V21: Register = _

source

pub const V22: Register = _

source

pub const V23: Register = _

source

pub const V24: Register = _

source

pub const V25: Register = _

source

pub const V26: Register = _

source

pub const V27: Register = _

source

pub const V28: Register = _

source

pub const V29: Register = _

source

pub const V30: Register = _

source

pub const V31: Register = _

source§

impl AArch64

source

pub fn register_name(register: Register) -> Option<&'static str>

The name of a register, or None if the register number is unknown.

Only returns the primary name for registers that alias with others.

source

pub fn name_to_register(value: &str) -> Option<Register>

Converts a register name into a register number.

Trait Implementations§

source§

impl Clone for AArch64

source§

fn clone(&self) -> AArch64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AArch64

source§

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

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

impl Copy for AArch64

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.