From 282645e18ac920b2c1051a0bdf3e3236ee5839d6 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 3 Jul 2021 16:13:48 -0700 Subject: add tests for MemoryAccessSize, consistentify style on docs --- test/protected_mode/operand.rs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'test/protected_mode') diff --git a/test/protected_mode/operand.rs b/test/protected_mode/operand.rs index 028cb8f..b2d3624 100644 --- a/test/protected_mode/operand.rs +++ b/test/protected_mode/operand.rs @@ -1,4 +1,4 @@ -use yaxpeax_x86::protected_mode::{Operand, RegSpec}; +use yaxpeax_x86::protected_mode::{InstDecoder, MemoryAccessSize, Operand, RegSpec}; #[test] fn register_widths() { @@ -11,5 +11,17 @@ fn register_widths() { #[test] fn memory_widths() { + // the register operand directly doesn't report a size - it comes from the `Instruction` for + // which this is an operand. assert_eq!(Operand::RegDeref(RegSpec::esp()).width(), None); + + fn mem_size_of(data: &[u8]) -> MemoryAccessSize { + let decoder = InstDecoder::default(); + decoder.decode_slice(data).unwrap().mem_size().unwrap() + } + + // and checking the memory size direcly reports correct names + assert_eq!(mem_size_of(&[0x32, 0x00]).size_name(), "byte"); + assert_eq!(mem_size_of(&[0x66, 0x33, 0x00]).size_name(), "word"); + assert_eq!(mem_size_of(&[0x33, 0x00]).size_name(), "dword"); } -- cgit v1.1