debug_worker/gdb/arch/x86/reg/
mod.rsuse gdbstub::arch::Registers;
#[expect(dead_code)]
pub mod id;
mod core32;
mod core64;
pub use core32::X86CoreRegs;
pub use core64::X86_64CoreRegs;
pub type F80 = [u8; 10];
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct X87FpuInternalRegs {
pub fctrl: u32,
pub fstat: u32,
pub ftag: u32,
pub fiseg: u32,
pub fioff: u32,
pub foseg: u32,
pub fooff: u32,
pub fop: u32,
}
impl Registers for X87FpuInternalRegs {
type ProgramCounter = u32;
fn pc(&self) -> Self::ProgramCounter {
0
}
fn gdb_serialize(&self, mut write_byte: impl FnMut(Option<u8>)) {
macro_rules! write_bytes {
($bytes:expr) => {
for b in $bytes {
write_byte(Some(*b))
}
};
}
write_bytes!(&self.fctrl.to_le_bytes());
write_bytes!(&self.fstat.to_le_bytes());
write_bytes!(&self.ftag.to_le_bytes());
write_bytes!(&self.fiseg.to_le_bytes());
write_bytes!(&self.fioff.to_le_bytes());
write_bytes!(&self.foseg.to_le_bytes());
write_bytes!(&self.fooff.to_le_bytes());
write_bytes!(&self.fop.to_le_bytes());
}
fn gdb_deserialize(&mut self, bytes: &[u8]) -> Result<(), ()> {
if bytes.len() != 0x20 {
return Err(());
}
let mut regs = bytes
.chunks_exact(4)
.map(|x| u32::from_le_bytes(x.try_into().unwrap()));
self.fctrl = regs.next().ok_or(())?;
self.fstat = regs.next().ok_or(())?;
self.ftag = regs.next().ok_or(())?;
self.fiseg = regs.next().ok_or(())?;
self.fioff = regs.next().ok_or(())?;
self.foseg = regs.next().ok_or(())?;
self.fooff = regs.next().ok_or(())?;
self.fop = regs.next().ok_or(())?;
Ok(())
}
}
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct X86SegmentRegs {
pub cs: u32,
pub ss: u32,
pub ds: u32,
pub es: u32,
pub fs: u32,
pub gs: u32,
}
impl Registers for X86SegmentRegs {
type ProgramCounter = u32;
fn pc(&self) -> Self::ProgramCounter {
0
}
fn gdb_serialize(&self, mut write_byte: impl FnMut(Option<u8>)) {
macro_rules! write_bytes {
($bytes:expr) => {
for b in $bytes {
write_byte(Some(*b))
}
};
}
write_bytes!(&self.cs.to_le_bytes());
write_bytes!(&self.ss.to_le_bytes());
write_bytes!(&self.ds.to_le_bytes());
write_bytes!(&self.es.to_le_bytes());
write_bytes!(&self.fs.to_le_bytes());
write_bytes!(&self.gs.to_le_bytes());
}
fn gdb_deserialize(&mut self, bytes: &[u8]) -> Result<(), ()> {
if bytes.len() != size_of::<u32>() * 6 {
return Err(());
}
let mut regs = bytes
.chunks_exact(4)
.map(|x| u32::from_le_bytes(x.try_into().unwrap()));
self.cs = regs.next().ok_or(())?;
self.ss = regs.next().ok_or(())?;
self.ds = regs.next().ok_or(())?;
self.es = regs.next().ok_or(())?;
self.fs = regs.next().ok_or(())?;
self.gs = regs.next().ok_or(())?;
Ok(())
}
}