iced_x86/formatter/
fmt_opt_provider.rs1use crate::*;
5use core::mem;
6
7pub trait FormatterOptionsProvider {
11 fn operand_options(
21 &mut self, instruction: &Instruction, operand: u32, instruction_operand: Option<u32>, options: &mut FormatterOperandOptions,
22 number_options: &mut NumberFormattingOptions<'_>,
23 );
24}
25
26pub(super) struct FormatterOperandOptionsFlags;
27impl FormatterOperandOptionsFlags {
28 #[cfg(any(feature = "intel", feature = "masm", feature = "nasm"))]
29 pub(super) const NONE: u32 = 0x0000_0000;
30 pub(super) const NO_BRANCH_SIZE: u32 = 0x0000_0001;
31 const RIP_RELATIVE_ADDRESSES: u32 = 0x0000_0002;
32 const MEMORY_SIZE_SHIFT: u32 = 30;
33 const MEMORY_SIZE_MASK: u32 = 3 << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT;
34}
35
36#[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Hash)]
38pub struct FormatterOperandOptions {
39 flags: u32, }
41
42impl FormatterOperandOptions {
43 #[cfg(any(feature = "intel", feature = "masm", feature = "nasm"))]
44 #[must_use]
45 #[inline]
46 pub(super) const fn new(flags: u32) -> Self {
47 Self { flags }
48 }
49
50 #[must_use]
51 #[inline]
52 pub(super) const fn with_memory_size_options(options: MemorySizeOptions) -> Self {
53 Self { flags: (options as u32) << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT }
54 }
55
56 #[must_use]
58 #[inline]
59 pub const fn branch_size(&self) -> bool {
60 (self.flags & FormatterOperandOptionsFlags::NO_BRANCH_SIZE) == 0
61 }
62
63 #[inline]
69 pub fn set_branch_size(&mut self, value: bool) {
70 if value {
71 self.flags &= !FormatterOperandOptionsFlags::NO_BRANCH_SIZE;
72 } else {
73 self.flags |= FormatterOperandOptionsFlags::NO_BRANCH_SIZE;
74 }
75 }
76
77 #[must_use]
79 #[inline]
80 pub const fn rip_relative_addresses(&self) -> bool {
81 (self.flags & FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES) != 0
82 }
83
84 #[inline]
90 pub fn set_rip_relative_addresses(&mut self, value: bool) {
91 if value {
92 self.flags |= FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES;
93 } else {
94 self.flags &= !FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES;
95 }
96 }
97
98 #[must_use]
100 #[inline]
101 pub fn memory_size_options(&self) -> MemorySizeOptions {
102 unsafe { mem::transmute((self.flags >> FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT) as MemorySizeOptionsUnderlyingType) }
104 }
105
106 #[inline]
112 pub fn set_memory_size_options(&mut self, value: MemorySizeOptions) {
113 self.flags =
114 (self.flags & !FormatterOperandOptionsFlags::MEMORY_SIZE_MASK) | ((value as u32) << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT)
115 }
116}