diff options
Diffstat (limited to 'Userland/Libraries/LibX86/Instruction.h')
-rw-r--r-- | Userland/Libraries/LibX86/Instruction.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/Userland/Libraries/LibX86/Instruction.h b/Userland/Libraries/LibX86/Instruction.h index a1207df9b2..10ea32adda 100644 --- a/Userland/Libraries/LibX86/Instruction.h +++ b/Userland/Libraries/LibX86/Instruction.h @@ -518,20 +518,20 @@ class MemoryOrRegisterReference { friend class Instruction; public: - DeprecatedString to_string_o8(Instruction const&) const; - DeprecatedString to_string_o16(Instruction const&) const; - DeprecatedString to_string_o32(Instruction const&) const; - DeprecatedString to_string_o64(Instruction const&) const; - DeprecatedString to_string_fpu_reg() const; - DeprecatedString to_string_fpu_mem(Instruction const&) const; - DeprecatedString to_string_fpu_ax16() const; - DeprecatedString to_string_fpu16(Instruction const&) const; - DeprecatedString to_string_fpu32(Instruction const&) const; - DeprecatedString to_string_fpu64(Instruction const&) const; - DeprecatedString to_string_fpu80(Instruction const&) const; - DeprecatedString to_string_mm(Instruction const&) const; - DeprecatedString to_string_xmm(Instruction const&) const; - DeprecatedString sib_to_string(ProcessorMode) const; + DeprecatedString to_deprecated_string_o8(Instruction const&) const; + DeprecatedString to_deprecated_string_o16(Instruction const&) const; + DeprecatedString to_deprecated_string_o32(Instruction const&) const; + DeprecatedString to_deprecated_string_o64(Instruction const&) const; + DeprecatedString to_deprecated_string_fpu_reg() const; + DeprecatedString to_deprecated_string_fpu_mem(Instruction const&) const; + DeprecatedString to_deprecated_string_fpu_ax16() const; + DeprecatedString to_deprecated_string_fpu16(Instruction const&) const; + DeprecatedString to_deprecated_string_fpu32(Instruction const&) const; + DeprecatedString to_deprecated_string_fpu64(Instruction const&) const; + DeprecatedString to_deprecated_string_fpu80(Instruction const&) const; + DeprecatedString to_deprecated_string_mm(Instruction const&) const; + DeprecatedString to_deprecated_string_xmm(Instruction const&) const; + DeprecatedString sib_to_deprecated_string(ProcessorMode) const; bool is_register() const { return m_register_index != 0x7f; } @@ -580,10 +580,10 @@ public: private: MemoryOrRegisterReference() = default; - DeprecatedString to_string(Instruction const&) const; - DeprecatedString to_string_a16() const; - DeprecatedString to_string_a32() const; - DeprecatedString to_string_a64() const; + DeprecatedString to_deprecated_string(Instruction const&) const; + DeprecatedString to_deprecated_string_a16() const; + DeprecatedString to_deprecated_string_a32() const; + DeprecatedString to_deprecated_string_a64() const; template<typename InstructionStreamType> void decode(InstructionStreamType&, AddressSize, bool has_rex_r, bool has_rex_x, bool has_rex_b); @@ -695,13 +695,13 @@ public: OperandSize operand_size() const { return m_operand_size; } ProcessorMode mode() const { return m_mode; } - DeprecatedString to_string(u32 origin, SymbolProvider const* = nullptr, bool x32 = true) const; + DeprecatedString to_deprecated_string(u32 origin, SymbolProvider const* = nullptr, bool x32 = true) const; private: template<typename InstructionStreamType> Instruction(InstructionStreamType&, OperandSize, AddressSize); - void to_string_internal(StringBuilder&, u32 origin, SymbolProvider const*, bool x32) const; + void to_deprecated_string_internal(StringBuilder&, u32 origin, SymbolProvider const*, bool x32) const; StringView reg8_name() const; StringView reg16_name() const; |