[][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

UnknownX86X86UnknownAmd64Amd64hAmd64UnknownArmArmV5ArmV6ArmV6mArmV7ArmV7fArmV7sArmV7kArmV7mArmV7emArmUnknownArm64Arm64V8Arm64eArm64UnknownPpcPpc64MipsMips64Arm64_32Arm64_32V8Arm64_32Unknown

Methods

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 Ord for Arch[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<Arch> for Arch[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Default for Arch[src]

impl Clone for Arch[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Arch> for Arch[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for Arch[src]

impl Copy for Arch[src]

impl Display for Arch[src]

impl Debug for Arch[src]

impl Hash for Arch[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl FromStr for Arch[src]

type Err = UnknownArchError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Sync for Arch

impl Send for Arch

impl Unpin for Arch

impl UnwindSafe for Arch

impl RefUnwindSafe for Arch

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[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.

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

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

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