pub struct FpSimdRegs {
pub v: [[u64; 2]; 32],
pub fpsr: u64,
pub fpcr: u64,
}Expand description
Per-vCPU FP/SIMD register file (V0..V31, FPSR, FPCR).
Fields§
§v: [[u64; 2]; 32]V0..V31 — 32 registers, each 128 bits (split into two u64 for serde).
fpsr: u64FPSR — floating-point status register.
fpcr: u64FPCR — floating-point control register.
Trait Implementations§
Source§impl Clone for FpSimdRegs
impl Clone for FpSimdRegs
Source§fn clone(&self) -> FpSimdRegs
fn clone(&self) -> FpSimdRegs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FpSimdRegs
impl Debug for FpSimdRegs
Source§impl Default for FpSimdRegs
impl Default for FpSimdRegs
Source§fn default() -> FpSimdRegs
fn default() -> FpSimdRegs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FpSimdRegs
impl<'de> Deserialize<'de> for FpSimdRegs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FpSimdRegs
impl PartialEq for FpSimdRegs
Source§fn eq(&self, other: &FpSimdRegs) -> bool
fn eq(&self, other: &FpSimdRegs) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FpSimdRegs
impl Serialize for FpSimdRegs
impl Eq for FpSimdRegs
impl StructuralPartialEq for FpSimdRegs
Auto Trait Implementations§
impl Freeze for FpSimdRegs
impl RefUnwindSafe for FpSimdRegs
impl Send for FpSimdRegs
impl Sync for FpSimdRegs
impl Unpin for FpSimdRegs
impl UnsafeUnpin for FpSimdRegs
impl UnwindSafe for FpSimdRegs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more