diff options
Diffstat (limited to 'ffi/src/long_mode.rs')
-rw-r--r-- | ffi/src/long_mode.rs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ffi/src/long_mode.rs b/ffi/src/long_mode.rs new file mode 100644 index 0000000..a3fd784 --- /dev/null +++ b/ffi/src/long_mode.rs @@ -0,0 +1,37 @@ +use yaxpeax_arch::{Arch, Decoder, LengthedInstruction, AddressBase}; +use yaxpeax_x86::long_mode; + +#[no_mangle] +pub unsafe extern "C" fn yaxpeax_x86_64_decode_optimistic(data: *const u8, length: u64, inst: *mut long_mode::Instruction) -> bool { + let inst: &mut long_mode::Instruction = core::mem::transmute(inst); + <long_mode::Arch as Arch>::Decoder::default().decode_into(inst, core::slice::from_raw_parts(data as *const u8, length as usize).iter().cloned()).is_err() +} + +#[no_mangle] +pub unsafe extern "C" fn yaxpeax_x86_64_instr_length(inst: *mut long_mode::Instruction) -> usize { + let inst: &mut long_mode::Instruction = core::mem::transmute(inst); + 0.wrapping_offset(inst.len()).to_linear() +} + +#[cfg(feature = "fmt")] +mod write_sink; + +#[cfg(feature = "fmt")] +mod fmt { + use super::write_sink::InstructionSink; + + use core::fmt::Write; + + use yaxpeax_x86::long_mode; + + #[no_mangle] + pub unsafe extern "C" fn yaxpeax_x86_64_fmt(inst: *mut long_mode::Instruction, text: *mut u8, len: usize) { + let inst: &mut long_mode::Instruction = core::mem::transmute(inst); + let res = core::slice::from_raw_parts_mut(text, len); + + write!(InstructionSink { buf: res, offs: 0 }, "{}", inst).unwrap(); + } +} + +#[cfg(feature = "fmt")] +pub use fmt::yaxpeax_x86_64_fmt; |