[][src]Enum symbolic_common::Arch

#[repr(u32)]pub enum Arch {
    Unknown,
    X86,
    X86Unknown,
    Amd64,
    Amd64h,
    Amd64Unknown,
    Arm,
    ArmV5,
    ArmV6,
    ArmV6m,
    ArmV7,
    ArmV7f,
    ArmV7s,
    ArmV7k,
    ArmV7m,
    ArmV7em,
    ArmUnknown,
    Arm64,
    Arm64V8,
    Arm64e,
    Arm64Unknown,
    Ppc,
    Ppc64,
    Mips,
    Mips64,
    Arm64_32,
    Arm64_32V8,
    Arm64_32Unknown,
}

An enum of CPU architectures and variants.

Variants

Unknown
X86
X86Unknown
Amd64
Amd64h
Amd64Unknown
Arm
ArmV5
ArmV6
ArmV6m
ArmV7
ArmV7f
ArmV7s
ArmV7k
ArmV7m
ArmV7em
ArmUnknown
Arm64
Arm64V8
Arm64e
Arm64Unknown
Ppc
Ppc64
Mips
Mips64
Arm64_32
Arm64_32V8
Arm64_32Unknown

Implementations

impl Arch[src]

pub fn from_u32(val: u32) -> Arch[src]

Creates an arch from the u32 it represents.

pub fn cpu_family(self) -> CpuFamily[src]

Returns the CPU family.

pub fn name(self) -> &'static str[src]

Returns the name of the arch.

pub fn pointer_size(self) -> Option<usize>[src]

Returns the native pointer size.

pub fn instruction_alignment(self) -> Option<u64>[src]

Returns instruction alignment if fixed.

pub fn ip_register_name(self) -> Option<&'static str>[src]

The name of the IP register if known.

pub fn well_known(self) -> bool[src]

Returns whether this architecture is well-known.

pub fn register_name(self, register: u16) -> Option<&'static str>[src]

Returns the name of a register in a given architecture.

Trait Implementations

impl Clone for Arch[src]

impl Copy for Arch[src]

impl Debug for Arch[src]

impl Default for Arch[src]

impl Display for Arch[src]

impl Eq for Arch[src]

impl FromStr for Arch[src]

type Err = UnknownArchError

The associated error which can be returned from parsing.

impl Hash for Arch[src]

impl Ord for Arch[src]

impl PartialEq<Arch> for Arch[src]

impl PartialOrd<Arch> for Arch[src]

impl StructuralEq for Arch[src]

impl StructuralPartialEq for Arch[src]

Auto Trait Implementations

impl RefUnwindSafe for Arch

impl Send for Arch

impl Sync for Arch

impl Unpin for Arch

impl UnwindSafe for Arch

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.