aboutsummaryrefslogtreecommitdiff
path: root/test/long_mode/operand.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-05-03 13:54:02 -0700
committeriximeow <me@iximeow.net>2020-05-03 13:54:02 -0700
commit876fc7449cf862e7ffe788885fb7d4209ad2eb5d (patch)
treeab66916f6bfae21dab417372fcf9b3ae7fce547f /test/long_mode/operand.rs
parentc9df7910c914d04644aee660d48de1245467f384 (diff)
add width() to ask width of an x86 operand
this is largely wrong for memory operands, which require more invasive changes
Diffstat (limited to 'test/long_mode/operand.rs')
-rw-r--r--test/long_mode/operand.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/long_mode/operand.rs b/test/long_mode/operand.rs
new file mode 100644
index 0000000..885c6d1
--- /dev/null
+++ b/test/long_mode/operand.rs
@@ -0,0 +1,17 @@
+use yaxpeax_arch::{Decoder, LengthedInstruction};
+use yaxpeax_x86::long_mode::{DecodeError, InstDecoder, Opcode};
+
+#[test]
+fn register_widths() {
+ assert_eq!(Operand::Register(RegSpec::rsp()).width(), 8);
+ assert_eq!(Operand::Register(RegSpec::esp()).width(), 4);
+ assert_eq!(Operand::Register(RegSpec::sp()).width(), 2);
+ assert_eq!(Operand::Register(RegSpec::cl()).width(), 1);
+ assert_eq!(Operand::Register(RegSpec::ch()).width(), 1);
+ assert_eq!(Operand::Register(RegSpec::gs()).width(), 2);
+}
+
+#[test]
+fn memory_widths() {
+ assert_eq!(Operand::RegDeref(RegSpec::rsp()).width(), 8);
+}