#intel #x86 #xed

sys xed-sys

Rust FFI bindings for Intel XED

8 releases (4 breaking)

0.5.0+xed-2023.12.19 Jan 17, 2024
0.4.0 Jun 26, 2021
0.3.0 May 23, 2020
0.2.4 Nov 1, 2019
0.1.1 Oct 8, 2017

#283 in Encoding

Download history 13/week @ 2024-01-15 17/week @ 2024-02-19 51/week @ 2024-02-26 4/week @ 2024-03-11 153/week @ 2024-04-01

157 downloads per month

Apache-2.0

4MB
81K SLoC

Python 35K SLoC // 0.2% comments Rust 26K SLoC // 0.0% comments C 19K SLoC // 0.1% comments C++ 847 SLoC // 0.1% comments Forge Config 472 SLoC // 0.8% comments Shell 29 SLoC // 0.2% comments Assembly 28 SLoC // 0.1% comments

Build Status Build status Crates.io

xed-sys

Rust FFI bindings for Intel XED.

/// Similar to `examples/xed-min.c` from official Intel XED repository.
use xed_sys::*;

fn main() {
    unsafe {
        let (mmode, stack_addr_width) = (XED_MACHINE_MODE_LEGACY_32, XED_ADDRESS_WIDTH_32b);

        xed_tables_init();

        let itext: [u8; 15] = [
            0xf, 0x85, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        ];

        for bytes in 0..16 {
            let mut xedd = ::std::mem::MaybeUninit::<xed_decoded_inst_t>::uninit();
            xed_decoded_inst_zero(xedd.as_mut_ptr());
            xed_decoded_inst_set_mode(xedd.as_mut_ptr(), mmode, stack_addr_width);

            let xed_error: xed_error_enum_t = xed_decode(xedd.as_mut_ptr(), itext.as_ptr(), bytes);
            let desc = std::ffi::CStr::from_ptr(xed_error_enum_t2str(xed_error)).to_string_lossy();
            println!("bytes={} error={}", bytes, desc);
        }
    }
}

Building

In order to build this crate, you need:

If you have the bindgen feature enabled then you will also need:

Examples

You can find usage examples in the examples/ directory.

These examples are meant to be executed with cargo. For instance, to run the example named xed_min:

# cd to the crate's root directory
cargo run --example xed_min

No runtime deps