1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use core::fmt;
#[repr(C, align(16))]
#[derive(Debug, Copy, Clone)]
pub struct VectorRegs {
pub fcw: u16,
pub fsw: u16,
pub ftw: u8,
pub _pad0: u8,
pub fop: u16,
pub fip: u32,
pub fcs: u16,
pub _pad1: u16,
pub fdp: u32,
pub fds: u16,
pub _pad2: u16,
pub mxcsr: u32,
pub mxcsr_mask: u32,
pub mm: [U128; 8],
pub xmm: [U128; 16],
pub reserved: [U128; 3],
pub available: [U128; 3],
}
impl Default for VectorRegs {
fn default() -> Self {
VectorRegs {
fcw: 0x37f,
mxcsr: 0x1f80,
..unsafe { core::mem::zeroed() }
}
}
}
#[derive(Default, Clone, Copy)]
#[repr(C, align(16))]
pub struct U128(pub [u64; 2]);
impl fmt::Debug for U128 {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:#016x}{:016x}", self.0[1], self.0[0])
}
}