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 PC: Register = _

source

pub const ELR_MODE: Register = _

source

pub const RA_SIGN_STATE: Register = _

source

pub const TPIDRRO_EL0: Register = _

source

pub const TPIDR_EL0: Register = _

source

pub const TPIDR_EL1: Register = _

source

pub const TPIDR_EL2: Register = _

source

pub const TPIDR_EL3: Register = _

source

pub const VG: Register = _

source

pub const FFR: Register = _

source

pub const P0: Register = _

source

pub const P1: Register = _

source

pub const P2: Register = _

source

pub const P3: Register = _

source

pub const P4: Register = _

source

pub const P5: Register = _

source

pub const P6: Register = _

source

pub const P7: Register = _

source

pub const P8: Register = _

source

pub const P9: Register = _

source

pub const P10: Register = _

source

pub const P11: Register = _

source

pub const P12: Register = _

source

pub const P13: Register = _

source

pub const P14: Register = _

source

pub const P15: 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

pub const Z0: Register = _

source

pub const Z1: Register = _

source

pub const Z2: Register = _

source

pub const Z3: Register = _

source

pub const Z4: Register = _

source

pub const Z5: Register = _

source

pub const Z6: Register = _

source

pub const Z7: Register = _

source

pub const Z8: Register = _

source

pub const Z9: Register = _

source

pub const Z10: Register = _

source

pub const Z11: Register = _

source

pub const Z12: Register = _

source

pub const Z13: Register = _

source

pub const Z14: Register = _

source

pub const Z15: Register = _

source

pub const Z16: Register = _

source

pub const Z17: Register = _

source

pub const Z18: Register = _

source

pub const Z19: Register = _

source

pub const Z20: Register = _

source

pub const Z21: Register = _

source

pub const Z22: Register = _

source

pub const Z23: Register = _

source

pub const Z24: Register = _

source

pub const Z25: Register = _

source

pub const Z26: Register = _

source

pub const Z27: Register = _

source

pub const Z28: Register = _

source

pub const Z29: Register = _

source

pub const Z30: Register = _

source

pub const Z31: 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 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> ToOwned for T
where 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 T
where U: Into<T>,

§

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>,

§

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.