mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
nice big refactor
This commit is contained in:
@ -11,11 +11,11 @@ public class TestImmWithRm8Handler : InstructionHandler
|
||||
/// <param name="codeBuffer">The buffer containing the code to decode</param>
|
||||
/// <param name="decoder">The instruction decoder that owns this handler</param>
|
||||
/// <param name="length">The length of the buffer</param>
|
||||
public TestImmWithRm8Handler(byte[] codeBuffer, InstructionDecoder decoder, int length)
|
||||
public TestImmWithRm8Handler(byte[] codeBuffer, InstructionDecoder decoder, int length)
|
||||
: base(codeBuffer, decoder, length)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Checks if this handler can decode the given opcode
|
||||
/// </summary>
|
||||
@ -27,7 +27,7 @@ public class TestImmWithRm8Handler : InstructionHandler
|
||||
// The reg field check (for TEST operation) will be done in the Decode method
|
||||
return opcode == 0xF6;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Decodes a TEST r/m8, imm8 instruction
|
||||
/// </summary>
|
||||
@ -37,57 +37,42 @@ public class TestImmWithRm8Handler : InstructionHandler
|
||||
public override bool Decode(byte opcode, Instruction instruction)
|
||||
{
|
||||
int position = Decoder.GetPosition();
|
||||
|
||||
|
||||
if (position >= Length)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// Read the ModR/M byte
|
||||
byte modRM = CodeBuffer[position++];
|
||||
|
||||
// Extract the fields from the ModR/M byte
|
||||
byte mod = (byte)((modRM & 0xC0) >> 6);
|
||||
byte reg = (byte)((modRM & 0x38) >> 3); // Should be 0 for TEST
|
||||
byte rm = (byte)(modRM & 0x07);
|
||||
|
||||
var (mod, reg, rm, destOperand) = ModRMDecoder.ReadModRM(true);
|
||||
|
||||
// Check if the reg field is 0 (TEST operation)
|
||||
if (reg != 0)
|
||||
if (reg != RegisterIndex.A)
|
||||
{
|
||||
return false; // Not a TEST instruction
|
||||
}
|
||||
|
||||
|
||||
// Set the mnemonic
|
||||
instruction.Mnemonic = "test";
|
||||
|
||||
Decoder.SetPosition(position);
|
||||
|
||||
// Get the operand based on the addressing mode
|
||||
string destOperand;
|
||||
|
||||
|
||||
// For direct register addressing (mod == 3), the r/m field specifies a register
|
||||
if (mod == 3)
|
||||
{
|
||||
destOperand = GetRegister8(rm);
|
||||
destOperand = ModRMDecoder.GetRegisterName(rm, 8);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Use the ModR/M decoder for memory addressing
|
||||
destOperand = ModRMDecoder.DecodeModRM(mod, rm, true);
|
||||
}
|
||||
|
||||
|
||||
// Use the ModR/M decoder for memory addressing
|
||||
// Read the immediate value
|
||||
if (position >= Length)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
byte imm8 = CodeBuffer[position];
|
||||
Decoder.SetPosition(position + 1);
|
||||
|
||||
|
||||
byte imm8 = Decoder.ReadByte();
|
||||
|
||||
// Set the operands
|
||||
instruction.Operands = $"{destOperand}, 0x{imm8:X2}";
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user