Author: hbelusca
Date: Tue Oct 21 21:18:23 2014
New Revision: 64881
URL:
http://svn.reactos.org/svn/reactos?rev=64881&view=rev
Log:
[FAST486]: Rename some 0F0x opcodes to "ExtOpcode..." to clarify what they are
and where they are used.
Modified:
trunk/reactos/lib/fast486/extraops.c
trunk/reactos/lib/fast486/opgroups.c
trunk/reactos/lib/fast486/opgroups.h
Modified: trunk/reactos/lib/fast486/extraops.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fast486/extraops.c?rev…
==============================================================================
--- trunk/reactos/lib/fast486/extraops.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fast486/extraops.c [iso-8859-1] Tue Oct 21 21:18:23 2014
@@ -37,8 +37,8 @@
FAST486_OPCODE_HANDLER_PROC
Fast486ExtendedHandlers[FAST486_NUM_OPCODE_HANDLERS] =
{
- Fast486OpcodeGroup0F00, /* 0x00 - 0x01 */
- Fast486OpcodeGroup0F01,
+ Fast486ExtOpcodeGroup0F00, /* 0x00 - 0x01 */
+ Fast486ExtOpcodeGroup0F01,
Fast486ExtOpcodeLar, /* 0x02 */
Fast486ExtOpcodeLsl, /* 0x03 */
Fast486ExtOpcodeInvalid, /* 0x04 - 0x05 */ // Invalid
@@ -222,8 +222,8 @@
Fast486ExtOpcodeMovzxByte, /* 0xB6 - 0xB7 */
Fast486ExtOpcodeMovzxWord,
Fast486ExtOpcodeInvalid, /* 0xB8 */ // Invalid
- Fast486OpcodeGroup0FB9, /* 0xB9 */
- Fast486OpcodeGroup0FBA, /* 0xBA */
+ Fast486ExtOpcodeGroup0FB9, /* 0xB9 */
+ Fast486ExtOpcodeGroup0FBA, /* 0xBA */
Fast486ExtOpcodeBtc, /* 0xBB */
Fast486ExtOpcodeBsf, /* 0xBC */
Fast486ExtOpcodeBsr, /* 0xBD */
Modified: trunk/reactos/lib/fast486/opgroups.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fast486/opgroups.c?rev…
==============================================================================
--- trunk/reactos/lib/fast486/opgroups.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fast486/opgroups.c [iso-8859-1] Tue Oct 21 21:18:23 2014
@@ -1703,7 +1703,8 @@
return TRUE;
}
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00)
+
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0F00)
{
FAST486_MOD_REG_RM ModRegRm;
BOOLEAN AddressSize = State->SegmentRegs[FAST486_REG_CS].Size;
@@ -2014,7 +2015,7 @@
}
}
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F01)
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0F01)
{
// FAST486_TABLE_REG TableReg;
UCHAR TableReg[6];
@@ -2230,7 +2231,7 @@
}
}
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0FB9)
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0FB9)
{
FAST486_MOD_REG_RM ModRegRm;
BOOLEAN AddressSize = State->SegmentRegs[FAST486_REG_CS].Size;
@@ -2248,7 +2249,7 @@
return FALSE;
}
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0FBA)
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0FBA)
{
FAST486_MOD_REG_RM ModRegRm;
BOOLEAN OperandSize, AddressSize;
Modified: trunk/reactos/lib/fast486/opgroups.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fast486/opgroups.h?rev…
==============================================================================
--- trunk/reactos/lib/fast486/opgroups.h [iso-8859-1] (original)
+++ trunk/reactos/lib/fast486/opgroups.h [iso-8859-1] Tue Oct 21 21:18:23 2014
@@ -42,10 +42,11 @@
FAST486_OPCODE_HANDLER(Fast486OpcodeGroupF7);
FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFE);
FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFF);
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00);
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F01);
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0FB9);
-FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0FBA);
+
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0F00);
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0F01);
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0FB9);
+FAST486_OPCODE_HANDLER(Fast486ExtOpcodeGroup0FBA);
#endif // _OPGROUPS_H_