1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
// SPDX-License-Identifier: MIT
// Copyright (C) 2018-present iced project and contributors
use crate::formatter::fast::options::FastFormatterOptions;
use crate::formatter::fast::trait_options::SpecializedFormatterTraitOptions;
/// Default [`FastFormatter`] options
///
/// [`FastFormatter`]: type.FastFormatter.html
#[allow(missing_copy_implementations)]
#[allow(missing_debug_implementations)]
pub struct DefaultFastFormatterTraitOptions;
impl SpecializedFormatterTraitOptions for DefaultFastFormatterTraitOptions {
/// DO NOT USE: NOT PART OF THE PUBLIC API
const __IS_FAST_FORMATTER: bool = true;
/// Set to `true` so symbol resolvers can be used
const ENABLE_SYMBOL_RESOLVER: bool = true;
/// Enables support for formatting `db`, `dw`, `dd`, `dq`.
///
/// For fastest code, this should be *disabled*, not enabled.
const ENABLE_DB_DW_DD_DQ: bool = true;
/// Add a space after the operand separator
///
/// Default | Value | Example
/// --------|-------|--------
/// _ | `true` | `mov rax, rcx`
/// 👍 | `false` | `mov rax,rcx`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn space_after_operand_separator(options: &FastFormatterOptions) -> bool {
options.space_after_operand_separator()
}
/// Show `RIP+displ` or the virtual address
///
/// Default | Value | Example
/// --------|-------|--------
/// _ | `true` | `mov eax,[rip+12345678h]`
/// 👍 | `false` | `mov eax,[1029384756AFBECDh]`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn rip_relative_addresses(options: &FastFormatterOptions) -> bool {
options.rip_relative_addresses()
}
/// Use pseudo instructions
///
/// Default | Value | Example
/// --------|-------|--------
/// 👍 | `true` | `vcmpnltsd xmm2,xmm6,xmm3`
/// _ | `false` | `vcmpsd xmm2,xmm6,xmm3,5h`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn use_pseudo_ops(options: &FastFormatterOptions) -> bool {
options.use_pseudo_ops()
}
/// Show the original value after the symbol name
///
/// Default | Value | Example
/// --------|-------|--------
/// _ | `true` | `mov eax,[myfield (12345678)]`
/// 👍 | `false` | `mov eax,[myfield]`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn show_symbol_address(options: &FastFormatterOptions) -> bool {
options.show_symbol_address()
}
/// Always show the effective segment register. If the option is `false`, only show the segment register if
/// there's a segment override prefix.
///
/// Default | Value | Example
/// --------|-------|--------
/// _ | `true` | `mov eax,ds:[ecx]`
/// 👍 | `false` | `mov eax,[ecx]`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn always_show_segment_register(options: &FastFormatterOptions) -> bool {
options.always_show_segment_register()
}
/// Always show the size of memory operands
///
/// Default | Value | Example | Example
/// --------|-------|---------|--------
/// _ | `true` | `mov eax,dword ptr [ebx]` | `add byte ptr [eax],0x12`
/// 👍 | `false` | `mov eax,[ebx]` | `add byte ptr [eax],0x12`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn always_show_memory_size(options: &FastFormatterOptions) -> bool {
options.always_show_memory_size()
}
/// Use uppercase hex digits
///
/// Default | Value | Example
/// --------|-------|--------
/// 👍 | `true` | `0xFF`
/// _ | `false` | `0xff`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn uppercase_hex(options: &FastFormatterOptions) -> bool {
options.uppercase_hex()
}
/// Use a hex prefix (`0x`) or a hex suffix (`h`)
///
/// Default | Value | Example
/// --------|-------|--------
/// _ | `true` | `0x5A`
/// 👍 | `false` | `5Ah`
///
/// # Arguments
///
/// * `options`: Current formatter options
#[must_use]
#[inline]
fn use_hex_prefix(options: &FastFormatterOptions) -> bool {
options.use_hex_prefix()
}
}