[][src]Struct unicorn::CpuSPARC

pub struct CpuSPARC { /* fields omitted */ }

A SPARC emulator instance.

Methods

impl CpuSPARC[src]

pub fn new(mode: Mode) -> Result<Self, Error>[src]

Create a SPARC emulator instance for the specified hardware mode.

Trait Implementations

impl Cpu for CpuSPARC[src]

type Reg = RegisterSPARC

fn reg_read(&self, reg: Self::Reg) -> Result<u64, Error>[src]

Read an unsigned value from a register.

fn reg_read_i32(&self, reg: Self::Reg) -> Result<i32, Error>[src]

Read a signed 32-bit value from a register.

unsafe fn reg_write_generic<T: Sized>(
    &self,
    reg: Self::Reg,
    value: T
) -> Result<(), Error>
[src]

Write a generic type to a register.

fn reg_write(&self, reg: Self::Reg, value: u64) -> Result<(), Error>[src]

Write an unsigned value register.

fn reg_write_i32(&self, reg: Self::Reg, value: i32) -> Result<(), Error>[src]

Write a signed 32-bit value to a register.

fn mem_map(
    &self,
    address: u64,
    size: size_t,
    perms: Protection
) -> Result<(), Error>
[src]

Map a memory region in the emulator at the specified address. Read more

unsafe fn mem_map_ptr<T>(
    &self,
    address: u64,
    size: size_t,
    perms: Protection,
    ptr: *mut T
) -> Result<(), Error>
[src]

Map an existing memory region in the emulator at the specified address. Read more

fn mem_unmap(&self, address: u64, size: size_t) -> Result<(), Error>[src]

Unmap a memory region. Read more

fn mem_write(&self, address: u64, bytes: &[u8]) -> Result<(), Error>[src]

Write a range of bytes to memory at the specified address.

fn mem_read(&self, address: u64, bytes: &mut [u8]) -> Result<(), Error>[src]

Read a range of bytes from memory at the specified address.

fn mem_read_as_vec(&self, address: u64, size: usize) -> Result<Vec<u8>, Error>[src]

Read a range of bytes from memory at the specified address; return the bytes read as a Vec. Read more

fn mem_protect(
    &self,
    address: u64,
    size: usize,
    perms: Protection
) -> Result<(), Error>
[src]

Set the memory permissions for an existing memory region. Read more

fn mem_regions(&self) -> Result<Vec<MemRegion>, Error>[src]

Returns a vector with the memory regions that are mapped in the emulator.

fn emu_start(
    &self,
    begin: u64,
    until: u64,
    timeout: u64,
    count: usize
) -> Result<(), Error>
[src]

Emulate machine code for a specified duration. Read more

fn emu_stop(&self) -> Result<(), Error>[src]

Stop the emulation. Read more

fn add_code_hook<F>(
    &mut self,
    hook_type: CodeHookType,
    begin: u64,
    end: u64,
    callback: F
) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn, u64, u32) + 'static, 
[src]

Add a code hook.

fn add_intr_hook<F>(&mut self, callback: F) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn, u32) + 'static, 
[src]

Add an interrupt hook.

fn add_mem_hook<F>(
    &mut self,
    hook_type: MemHookType,
    begin: u64,
    end: u64,
    callback: F
) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn, MemType, u64, usize, i64) -> bool + 'static, 
[src]

Add a memory hook.

fn add_insn_in_hook<F>(&mut self, callback: F) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn, u32, usize) -> u32 + 'static, 
[src]

Add an "in" instruction hook.

fn add_insn_out_hook<F>(&mut self, callback: F) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn, u32, usize, u32) + 'static, 
[src]

Add an "out" instruction hook.

fn add_insn_sys_hook<F>(
    &mut self,
    insn_type: InsnSysX86,
    begin: u64,
    end: u64,
    callback: F
) -> Result<uc_hook, Error> where
    F: Fn(&Unicorn) + 'static, 
[src]

Add a "syscall" or "sysenter" instruction hook.

fn remove_hook(&mut self, hook: uc_hook) -> Result<(), Error>[src]

Remove a hook. Read more

fn errno(&self) -> Error[src]

Return the last error code when an API function failed. Read more

fn query(&self, query: Query) -> Result<usize, Error>[src]

Query the internal status of the engine. Read more

fn context_save(&self) -> Result<Context, Error>[src]

Save the CPU context into an opaque struct.

fn context_restore(&self, context: &Context) -> Result<(), Error>[src]

Auto Trait Implementations

impl !Send for CpuSPARC

impl !Sync for CpuSPARC

Blanket Implementations

impl<T> From<T> for T[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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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