I'm facing an ambiguous case with regard to decoding x87 FPU instructions. Take a look at the following instruction taken from page Page 3-380 of Vol 2A Intel's instruction set manual [1].
D9 /0 --> FLD m32fp --> Push m32fp onto the FPU register stack.
D9 C0+i --> FLD ST(i) --> Push ST(i) onto the FPU register stack.
Both these instructions have the same single-byte base opcode 0xD9. The first instruction has an extension opcode of 0x00. The extension opcode will be specified in the 'reg' field of the ModR/M byte. But the second instruction is a 2 byte opcode with an 'Add to get register' feature. This means that:
D9 C0 --> FLD ST0
D9 C1 --> FLD ST1
(and so on)
I have a small issue with regard to differentiating these two instructions. A small example is:
Now, supposing I get the opcode sequence "D9 C1". If I need to check if it's the instruction "FLD m32fp", then I have to check if the 'reg' field of the ModR/M byte is 0x00 or not. If so, then it's indeed the instruction "FLD m32fp" being used.
The binary representation of C1 is "1100 0001". Assuming bit0 is LSB, then bit3-bit5 (inclusive) constitute the 'reg' field of the ModR/M byte "C1". We see that it is indeed 0x00 (3 zeros).
So I map the opcode sequence "D9 C1" to the "FLD m32fp" instruction. Decoding further, we see that the operand actually becomes "ecx" in this case. But we see that "FLD ST1" also has opcode sequence "D9 C1", and this is the actual instruction being used for that opcode sequence.
In essence, how can I be sure that the opcode sequence "D9 C1" corresponds to the instruction "FLD ST1" and not "FLD ecx"?
A very similar problems appears for the "FMUL" instruction too, since takes operands the same way as "FLD" here does.
[1] http://www.intel.com/design/intarch/manuals/243191.HTM
Thanks and Regards,
Hrishikesh Murali