#[repr(C)]
pub struct TranslationBlock {
Show 22 fields pub pc: target_ulong, pub cs_base: target_ulong, pub flags: u32, pub size: u16, pub icount: u16, pub cflags: u32, pub invalid: u16, pub was_split: u8, pub tc_ptr: *mut c_void, pub tc_search: *mut u8, pub orig_tb: *mut TranslationBlock, pub page_next: [*mut TranslationBlock; 2], pub page_addr: [tb_page_addr_t; 2], pub jmp_reset_offset: [u16; 2], pub jmp_insn_offset: [u16; 2], pub jmp_list_next: [usize; 2], pub jmp_list_first: usize, pub llvm_tc_ptr: *mut u8, pub llvm_tc_end: *mut u8, pub llvm_tb_next: [*mut TranslationBlock; 2], pub llvm_asm_ptr: *mut u8, pub llvm_fn_name: [c_char; 64],
}

Fields§

§pc: target_ulong§cs_base: target_ulong§flags: u32§size: u16§icount: u16§cflags: u32§invalid: u16§was_split: u8§tc_ptr: *mut c_void§tc_search: *mut u8§orig_tb: *mut TranslationBlock§page_next: [*mut TranslationBlock; 2]§page_addr: [tb_page_addr_t; 2]§jmp_reset_offset: [u16; 2]§jmp_insn_offset: [u16; 2]§jmp_list_next: [usize; 2]§jmp_list_first: usize§llvm_tc_ptr: *mut u8§llvm_tc_end: *mut u8§llvm_tb_next: [*mut TranslationBlock; 2]§llvm_asm_ptr: *mut u8§llvm_fn_name: [c_char; 64]

Trait Implementations§

source§

impl Clone for TranslationBlock

source§

fn clone(&self) -> TranslationBlock

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 TranslationBlock

source§

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

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

impl Copy for TranslationBlock

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.