From 6dc99737543c44ed1e1488f8d78a65f5073cc633 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 10 Mar 2022 07:12:12 -0500 Subject: [PATCH] Incorporate length into `Instruction`. --- InstructionSets/x86/Decoder.cpp | 4 +++- InstructionSets/x86/Instruction.hpp | 12 +++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/InstructionSets/x86/Decoder.cpp b/InstructionSets/x86/Decoder.cpp index 8a376b8db..aff9e5fb0 100644 --- a/InstructionSets/x86/Decoder.cpp +++ b/InstructionSets/x86/Decoder.cpp @@ -908,7 +908,9 @@ std::pair::InstructionT> Decoder::decode(con repetition_, DataSize(operation_size_), static_cast(displacement_), - static_cast(operand_)) + static_cast(operand_), + consumed_ + ) ); reset_parsing(); return result; diff --git a/InstructionSets/x86/Instruction.hpp b/InstructionSets/x86/Instruction.hpp index d29c89656..7e6f4bfe8 100644 --- a/InstructionSets/x86/Instruction.hpp +++ b/InstructionSets/x86/Instruction.hpp @@ -579,7 +579,8 @@ template class Instruction { sources_ == rhs.sources_ && displacement_ == rhs.displacement_ && operand_ == rhs.operand_ && - sib_ == rhs.sib_; + sib_ == rhs.sib_ && + length_ == rhs.length_; } using DisplacementT = typename std::conditional::type; @@ -637,6 +638,7 @@ template class Instruction { // Fields yet to be properly incorporated... ScaleIndexBase sib_; AddressSize address_size_ = AddressSize::b16; + int length_ = 0; public: /// @returns The number of bytes used for meaningful content within this class. A receiver must use at least @c sizeof(Instruction) bytes @@ -671,6 +673,8 @@ template class Instruction { DisplacementT displacement() const { return displacement_; } ImmediateT operand() const { return operand_; } + int length() const { return length_; } + Instruction() noexcept {} Instruction( Operation operation, @@ -683,7 +687,8 @@ template class Instruction { Repetition repetition, DataSize operation_size, DisplacementT displacement, - ImmediateT operand) noexcept : + ImmediateT operand, + int length) noexcept : operation(operation), repetition_size_(uint8_t((int(operation_size) << 2) | int(repetition))), sources_(uint16_t( @@ -695,7 +700,8 @@ template class Instruction { displacement_(displacement), operand_(operand), sib_(sib), - address_size_(address_size) {} + address_size_(address_size), + length_(length) {} }; // TODO: repack.