use crate::*;
use core::mem;
pub trait FormatterOptionsProvider {
fn operand_options(
&mut self, instruction: &Instruction, operand: u32, instruction_operand: Option<u32>, options: &mut FormatterOperandOptions,
number_options: &mut NumberFormattingOptions<'_>,
);
}
pub(super) struct FormatterOperandOptionsFlags;
impl FormatterOperandOptionsFlags {
#[cfg(any(feature = "intel", feature = "masm", feature = "nasm"))]
pub(super) const NONE: u32 = 0x0000_0000;
pub(super) const NO_BRANCH_SIZE: u32 = 0x0000_0001;
const RIP_RELATIVE_ADDRESSES: u32 = 0x0000_0002;
const MEMORY_SIZE_SHIFT: u32 = 30;
const MEMORY_SIZE_MASK: u32 = 3 << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT;
}
#[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Hash)]
pub struct FormatterOperandOptions {
flags: u32, }
impl FormatterOperandOptions {
#[cfg(any(feature = "intel", feature = "masm", feature = "nasm"))]
#[must_use]
#[inline]
pub(super) const fn new(flags: u32) -> Self {
Self { flags }
}
#[must_use]
#[inline]
pub(super) const fn with_memory_size_options(options: MemorySizeOptions) -> Self {
Self { flags: (options as u32) << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT }
}
#[must_use]
#[inline]
pub const fn branch_size(&self) -> bool {
(self.flags & FormatterOperandOptionsFlags::NO_BRANCH_SIZE) == 0
}
#[inline]
pub fn set_branch_size(&mut self, value: bool) {
if value {
self.flags &= !FormatterOperandOptionsFlags::NO_BRANCH_SIZE;
} else {
self.flags |= FormatterOperandOptionsFlags::NO_BRANCH_SIZE;
}
}
#[must_use]
#[inline]
pub const fn rip_relative_addresses(&self) -> bool {
(self.flags & FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES) != 0
}
#[inline]
pub fn set_rip_relative_addresses(&mut self, value: bool) {
if value {
self.flags |= FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES;
} else {
self.flags &= !FormatterOperandOptionsFlags::RIP_RELATIVE_ADDRESSES;
}
}
#[must_use]
#[inline]
pub fn memory_size_options(&self) -> MemorySizeOptions {
unsafe { mem::transmute((self.flags >> FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT) as MemorySizeOptionsUnderlyingType) }
}
#[inline]
pub fn set_memory_size_options(&mut self, value: MemorySizeOptions) {
self.flags =
(self.flags & !FormatterOperandOptionsFlags::MEMORY_SIZE_MASK) | ((value as u32) << FormatterOperandOptionsFlags::MEMORY_SIZE_SHIFT)
}
}