#[repr(C)]pub struct FpuState {
pub fp: [u64; 32],
pub fcc: [u8; 8],
pub fcsr: u32,
}Expand description
Floating-point registers of LoongArch64
Fields§
§fp: [u64; 32]Floating-point registers (f0-f31)
fcc: [u8; 8]Floating-point Condition Code register
fcsr: u32Floating-point Control and Status register
Implementations§
Trait Implementations§
impl Copy for FpuState
Auto Trait Implementations§
impl Freeze for FpuState
impl RefUnwindSafe for FpuState
impl Send for FpuState
impl Sync for FpuState
impl Unpin for FpuState
impl UnsafeUnpin for FpuState
impl UnwindSafe for FpuState
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