2 * Fast486 386/486 CPU Emulation Library
5 * Copyright (C) 2014 Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 /* INCLUDES *******************************************************************/
36 /* PUBLIC VARIABLES ***********************************************************/
38 FAST486_OPCODE_HANDLER_PROC
39 Fast486OpcodeHandlers
[FAST486_NUM_OPCODE_HANDLERS
] =
41 Fast486OpcodeAddByteModrm
, /* 0x00 - 0x03 */
42 Fast486OpcodeAddModrm
,
43 Fast486OpcodeAddByteModrm
,
44 Fast486OpcodeAddModrm
,
45 Fast486OpcodeAddAl
, /* 0x04 */
46 Fast486OpcodeAddEax
, /* 0x05 */
47 Fast486OpcodePushEs
, /* 0x06 */
48 Fast486OpcodePopEs
, /* 0x07 */
49 Fast486OpcodeOrByteModrm
, /* 0x08 - 0x0B */
51 Fast486OpcodeOrByteModrm
,
53 Fast486OpcodeOrAl
, /* 0x0C */
54 Fast486OpcodeOrEax
, /* 0x0D */
55 Fast486OpcodePushCs
, /* 0x0E */
56 Fast486OpcodeExtended
, /* 0x0F */
57 Fast486OpcodeAdcByteModrm
, /* 0x10 - 0x13 */
58 Fast486OpcodeAdcModrm
,
59 Fast486OpcodeAdcByteModrm
,
60 Fast486OpcodeAdcModrm
,
61 Fast486OpcodeAdcAl
, /* 0x14 */
62 Fast486OpcodeAdcEax
, /* 0x15 */
63 Fast486OpcodePushSs
, /* 0x16 */
64 Fast486OpcodePopSs
, /* 0x17 */
65 Fast486OpcodeSbbByteModrm
, /* 0x18 - 0x1B */
66 Fast486OpcodeSbbModrm
,
67 Fast486OpcodeSbbByteModrm
,
68 Fast486OpcodeSbbModrm
,
69 Fast486OpcodeSbbAl
, /* 0x1C */
70 Fast486OpcodeSbbEax
, /* 0x1D */
71 Fast486OpcodePushDs
, /* 0x1E */
72 Fast486OpcodePopDs
, /* 0x1F */
73 Fast486OpcodeAndByteModrm
, /* 0x20 - 0x23 */
74 Fast486OpcodeAndModrm
,
75 Fast486OpcodeAndByteModrm
,
76 Fast486OpcodeAndModrm
,
77 Fast486OpcodeAndAl
, /* 0x24 */
78 Fast486OpcodeAndEax
, /* 0x25 */
79 Fast486OpcodePrefix
, /* 0x26 */
80 Fast486OpcodeDaa
, /* 0x27 */
81 Fast486OpcodeCmpSubByteModrm
, /* 0x28 - 0x2B */
82 Fast486OpcodeCmpSubModrm
,
83 Fast486OpcodeCmpSubByteModrm
,
84 Fast486OpcodeCmpSubModrm
,
85 Fast486OpcodeCmpSubAl
, /* 0x2C */
86 Fast486OpcodeCmpSubEax
, /* 0x2D */
87 Fast486OpcodePrefix
, /* 0x2E */
88 Fast486OpcodeDas
, /* 0x2F */
89 Fast486OpcodeXorByteModrm
, /* 0x30 - 0x33 */
90 Fast486OpcodeXorModrm
,
91 Fast486OpcodeXorByteModrm
,
92 Fast486OpcodeXorModrm
,
93 Fast486OpcodeXorAl
, /* 0x34 */
94 Fast486OpcodeXorEax
, /* 0x35 */
95 Fast486OpcodePrefix
, /* 0x36 */
96 Fast486OpcodeAaa
, /* 0x37 */
97 Fast486OpcodeCmpSubByteModrm
, /* 0x38 - 0x3B */
98 Fast486OpcodeCmpSubModrm
,
99 Fast486OpcodeCmpSubByteModrm
,
100 Fast486OpcodeCmpSubModrm
,
101 Fast486OpcodeCmpSubAl
, /* 0x3C */
102 Fast486OpcodeCmpSubEax
, /* 0x3D */
103 Fast486OpcodePrefix
, /* 0x3E */
104 Fast486OpcodeAas
, /* 0x3F */
105 Fast486OpcodeIncrement
, /* 0x40 - 0x47 */
106 Fast486OpcodeIncrement
,
107 Fast486OpcodeIncrement
,
108 Fast486OpcodeIncrement
,
109 Fast486OpcodeIncrement
,
110 Fast486OpcodeIncrement
,
111 Fast486OpcodeIncrement
,
112 Fast486OpcodeIncrement
,
113 Fast486OpcodeDecrement
, /* 0x48 - 0x4F */
114 Fast486OpcodeDecrement
,
115 Fast486OpcodeDecrement
,
116 Fast486OpcodeDecrement
,
117 Fast486OpcodeDecrement
,
118 Fast486OpcodeDecrement
,
119 Fast486OpcodeDecrement
,
120 Fast486OpcodeDecrement
,
121 Fast486OpcodePushReg
, /* 0x50 - 0x57 */
122 Fast486OpcodePushReg
,
123 Fast486OpcodePushReg
,
124 Fast486OpcodePushReg
,
125 Fast486OpcodePushReg
,
126 Fast486OpcodePushReg
,
127 Fast486OpcodePushReg
,
128 Fast486OpcodePushReg
,
129 Fast486OpcodePopReg
, /* 0x58 - 0x5F */
137 Fast486OpcodePushAll
, /* 0x60 */
138 Fast486OpcodePopAll
, /* 0x61 */
139 Fast486OpcodeBound
, /* 0x62 */
140 Fast486OpcodeArpl
, /* 0x63 */
141 Fast486OpcodePrefix
, /* 0x64 - 0x67 */
145 Fast486OpcodePushImm
, /* 0x68 */
146 Fast486OpcodeImulModrmImm
, /* 0x69 */
147 Fast486OpcodePushByteImm
, /* 0x6A */
148 Fast486OpcodeImulModrmImm
, /* 0x6B */
149 Fast486OpcodeIns
, /* 0x6C */
150 Fast486OpcodeIns
, /* 0x6D */
151 Fast486OpcodeOuts
, /* 0x6E */
152 Fast486OpcodeOuts
, /* 0x6F */
153 Fast486OpcodeShortConditionalJmp
, /* 0x70 - 0x7F */
154 Fast486OpcodeShortConditionalJmp
,
155 Fast486OpcodeShortConditionalJmp
,
156 Fast486OpcodeShortConditionalJmp
,
157 Fast486OpcodeShortConditionalJmp
,
158 Fast486OpcodeShortConditionalJmp
,
159 Fast486OpcodeShortConditionalJmp
,
160 Fast486OpcodeShortConditionalJmp
,
161 Fast486OpcodeShortConditionalJmp
,
162 Fast486OpcodeShortConditionalJmp
,
163 Fast486OpcodeShortConditionalJmp
,
164 Fast486OpcodeShortConditionalJmp
,
165 Fast486OpcodeShortConditionalJmp
,
166 Fast486OpcodeShortConditionalJmp
,
167 Fast486OpcodeShortConditionalJmp
,
168 Fast486OpcodeShortConditionalJmp
,
169 Fast486OpcodeGroup8082
, /* 0x80 */
170 Fast486OpcodeGroup81
, /* 0x81 */
171 Fast486OpcodeGroup8082
, /* 0x82 */
172 Fast486OpcodeGroup83
, /* 0x83 */
173 Fast486OpcodeTestByteModrm
, /* 0x84 */
174 Fast486OpcodeTestModrm
, /* 0x85 */
175 Fast486OpcodeXchgByteModrm
, /* 0x86 */
176 Fast486OpcodeXchgModrm
, /* 0x87 */
177 Fast486OpcodeMovByteModrm
, /* 0x88 */
178 Fast486OpcodeMovModrm
, /* 0x89 */
179 Fast486OpcodeMovByteModrm
, /* 0x8A */
180 Fast486OpcodeMovModrm
, /* 0x8B */
181 Fast486OpcodeMovStoreSeg
, /* 0x8C */
182 Fast486OpcodeLea
, /* 0x8D */
183 Fast486OpcodeMovLoadSeg
, /* 0x8E */
184 Fast486OpcodeGroup8F
, /* 0x8F */
185 Fast486OpcodeNop
, /* 0x90 */
186 Fast486OpcodeExchangeEax
, /* 0x91 - 0x97 */
187 Fast486OpcodeExchangeEax
,
188 Fast486OpcodeExchangeEax
,
189 Fast486OpcodeExchangeEax
,
190 Fast486OpcodeExchangeEax
,
191 Fast486OpcodeExchangeEax
,
192 Fast486OpcodeExchangeEax
,
193 Fast486OpcodeCwde
, /* 0x98 */
194 Fast486OpcodeCdq
, /* 0x99 */
195 Fast486OpcodeCallAbs
, /* 0x9A */
196 Fast486OpcodeWait
, /* 0x9B */
197 Fast486OpcodePushFlags
, /* 0x9C */
198 Fast486OpcodePopFlags
, /* 0x9D */
199 Fast486OpcodeSahf
, /* 0x9E */
200 Fast486OpcodeLahf
, /* 0x9F */
201 Fast486OpcodeMovAlOffset
, /* 0xA0 */
202 Fast486OpcodeMovEaxOffset
, /* 0xA1 */
203 Fast486OpcodeMovOffsetAl
, /* 0xA2 */
204 Fast486OpcodeMovOffsetEax
, /* 0xA3 */
205 Fast486OpcodeMovs
, /* 0xA4 */
206 Fast486OpcodeMovs
, /* 0xA5 */
207 Fast486OpcodeCmps
, /* 0xA6 */
208 Fast486OpcodeCmps
, /* 0xA7 */
209 Fast486OpcodeTestAl
, /* 0xA8 */
210 Fast486OpcodeTestEax
, /* 0xA9 */
211 Fast486OpcodeStos
, /* 0xAA */
212 Fast486OpcodeStos
, /* 0xAB */
213 Fast486OpcodeLods
, /* 0xAC */
214 Fast486OpcodeLods
, /* 0xAD */
215 Fast486OpcodeScas
, /* 0xAE */
216 Fast486OpcodeScas
, /* 0xAF */
217 Fast486OpcodeMovByteRegImm
, /* 0xB0 - 0xB7 */
218 Fast486OpcodeMovByteRegImm
,
219 Fast486OpcodeMovByteRegImm
,
220 Fast486OpcodeMovByteRegImm
,
221 Fast486OpcodeMovByteRegImm
,
222 Fast486OpcodeMovByteRegImm
,
223 Fast486OpcodeMovByteRegImm
,
224 Fast486OpcodeMovByteRegImm
,
225 Fast486OpcodeMovRegImm
, /* 0xB8 - 0xBF */
226 Fast486OpcodeMovRegImm
,
227 Fast486OpcodeMovRegImm
,
228 Fast486OpcodeMovRegImm
,
229 Fast486OpcodeMovRegImm
,
230 Fast486OpcodeMovRegImm
,
231 Fast486OpcodeMovRegImm
,
232 Fast486OpcodeMovRegImm
,
233 Fast486OpcodeGroupC0
, /* 0xC0 */
234 Fast486OpcodeGroupC1
, /* 0xC1 */
235 Fast486OpcodeRet
, /* 0xC2 */
236 Fast486OpcodeRet
, /* 0xC3 */
237 Fast486OpcodeLdsLes
, /* 0xC4 */
238 Fast486OpcodeLdsLes
, /* 0xC5 */
239 Fast486OpcodeGroupC6
, /* 0xC6 */
240 Fast486OpcodeGroupC7
, /* 0xC7 */
241 Fast486OpcodeEnter
, /* 0xC8 */
242 Fast486OpcodeLeave
, /* 0xC9 */
243 Fast486OpcodeRetFar
, /* 0xCA */
244 Fast486OpcodeRetFar
, /* 0xCB */
245 Fast486OpcodeInt
, /* 0xCC */
246 Fast486OpcodeInt
, /* 0xCD */
247 Fast486OpcodeInt
, /* 0xCE */
248 Fast486OpcodeIret
, /* 0xCF */
249 Fast486OpcodeGroupD0
, /* 0xD0 - 0xD3 */
250 Fast486OpcodeGroupD1
,
251 Fast486OpcodeGroupD2
,
252 Fast486OpcodeGroupD3
,
253 Fast486OpcodeAam
, /* 0xD4 */
254 Fast486OpcodeAad
, /* 0xD5 */
255 Fast486OpcodeSalc
, /* 0xD6 */
256 Fast486OpcodeXlat
, /* 0xD7 */
257 Fast486FpuOpcodeD8DC
, /* 0xD8 - 0xDF */
261 Fast486FpuOpcodeD8DC
,
265 Fast486OpcodeLoop
, /* 0xE0 - 0xE2 */
268 Fast486OpcodeJecxz
, /* 0xE3 */
269 Fast486OpcodeInByte
, /* 0xE4 */
270 Fast486OpcodeIn
, /* 0xE5 */
271 Fast486OpcodeOutByte
, /* 0xE6 */
272 Fast486OpcodeOut
, /* 0xE7 */
273 Fast486OpcodeCall
, /* 0xE8 */
274 Fast486OpcodeJmp
, /* 0xE9 */
275 Fast486OpcodeJmpAbs
, /* 0xEA */
276 Fast486OpcodeShortJump
, /* 0xEB */
277 Fast486OpcodeInByte
, /* 0xEC */
278 Fast486OpcodeIn
, /* 0xED */
279 Fast486OpcodeOutByte
, /* 0xEE */
280 Fast486OpcodeOut
, /* 0xEF */
281 Fast486OpcodePrefix
, /* 0xF0 */
282 Fast486OpcodeInvalid
, /* 0xF1 */ // Invalid opcode -- ICEBP/INT01 opcode
283 Fast486OpcodePrefix
, /* 0xF2 */
284 Fast486OpcodePrefix
, /* 0xF3 */
285 Fast486OpcodeHalt
, /* 0xF4 */
286 Fast486OpcodeComplCarry
, /* 0xF5 */
287 Fast486OpcodeGroupF6
, /* 0xF6 */
288 Fast486OpcodeGroupF7
, /* 0xF7 */
289 Fast486OpcodeClearCarry
, /* 0xF8 */
290 Fast486OpcodeSetCarry
, /* 0xF9 */
291 Fast486OpcodeClearInt
, /* 0xFA */
292 Fast486OpcodeSetInt
, /* 0xFB */
293 Fast486OpcodeClearDir
, /* 0xFC */
294 Fast486OpcodeSetDir
, /* 0xFD */
295 Fast486OpcodeGroupFE
, /* 0xFE */
296 Fast486OpcodeGroupFF
, /* 0xFF */
299 /* PUBLIC FUNCTIONS ***********************************************************/
301 FAST486_OPCODE_HANDLER(Fast486OpcodeInvalid
)
304 * This is not a valid opcode.
305 * Well, not totally: see http://www.rcollins.org/secrets/opcodes/ICEBP.html
308 DPRINT1("FAST486 -- Calling ICEBP opcode\n");
309 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
312 FAST486_OPCODE_HANDLER(Fast486OpcodePrefix
)
314 BOOLEAN Valid
= FALSE
;
321 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
323 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
324 State
->SegmentOverride
= FAST486_REG_ES
;
334 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
336 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
337 State
->SegmentOverride
= FAST486_REG_CS
;
347 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
349 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
350 State
->SegmentOverride
= FAST486_REG_SS
;
360 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
362 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
363 State
->SegmentOverride
= FAST486_REG_DS
;
373 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
375 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
376 State
->SegmentOverride
= FAST486_REG_FS
;
386 if (!(State
->PrefixFlags
& FAST486_PREFIX_SEG
))
388 State
->PrefixFlags
|= FAST486_PREFIX_SEG
;
389 State
->SegmentOverride
= FAST486_REG_GS
;
399 if (!(State
->PrefixFlags
& FAST486_PREFIX_OPSIZE
))
401 State
->PrefixFlags
|= FAST486_PREFIX_OPSIZE
;
411 if (!(State
->PrefixFlags
& FAST486_PREFIX_ADSIZE
))
413 State
->PrefixFlags
|= FAST486_PREFIX_ADSIZE
;
422 if (!(State
->PrefixFlags
& FAST486_PREFIX_LOCK
))
424 State
->PrefixFlags
|= FAST486_PREFIX_LOCK
;
434 /* Mutually exclusive with REP */
435 if (!(State
->PrefixFlags
436 & (FAST486_PREFIX_REPNZ
| FAST486_PREFIX_REP
)))
438 State
->PrefixFlags
|= FAST486_PREFIX_REPNZ
;
448 /* Mutually exclusive with REPNZ */
449 if (!(State
->PrefixFlags
450 & (FAST486_PREFIX_REPNZ
| FAST486_PREFIX_REP
)))
452 State
->PrefixFlags
|= FAST486_PREFIX_REP
;
462 /* Clear all prefixes */
463 State
->PrefixFlags
= 0;
465 /* Throw an exception */
466 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
470 FAST486_OPCODE_HANDLER(Fast486OpcodeIncrement
)
473 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
478 /* Make sure this is the right instruction */
479 ASSERT((Opcode
& 0xF8) == 0x40);
483 Value
= ++State
->GeneralRegs
[Opcode
& 0x07].Long
;
485 State
->Flags
.Of
= (Value
== SIGN_FLAG_LONG
);
486 State
->Flags
.Sf
= ((Value
& SIGN_FLAG_LONG
) != 0);
490 Value
= ++State
->GeneralRegs
[Opcode
& 0x07].LowWord
;
492 State
->Flags
.Of
= (Value
== SIGN_FLAG_WORD
);
493 State
->Flags
.Sf
= ((Value
& SIGN_FLAG_WORD
) != 0);
496 State
->Flags
.Zf
= (Value
== 0);
497 State
->Flags
.Af
= ((Value
& 0x0F) == 0);
498 State
->Flags
.Pf
= Fast486CalculateParity(LOBYTE(Value
));
501 FAST486_OPCODE_HANDLER(Fast486OpcodeDecrement
)
504 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
509 /* Make sure this is the right instruction */
510 ASSERT((Opcode
& 0xF8) == 0x48);
514 Value
= --State
->GeneralRegs
[Opcode
& 0x07].Long
;
516 State
->Flags
.Of
= (Value
== (SIGN_FLAG_LONG
- 1));
517 State
->Flags
.Sf
= ((Value
& SIGN_FLAG_LONG
) != 0);
521 Value
= --State
->GeneralRegs
[Opcode
& 0x07].LowWord
;
523 State
->Flags
.Of
= (Value
== (SIGN_FLAG_WORD
- 1));
524 State
->Flags
.Sf
= ((Value
& SIGN_FLAG_WORD
) != 0);
527 State
->Flags
.Zf
= (Value
== 0);
528 State
->Flags
.Af
= ((Value
& 0x0F) == 0x0F);
529 State
->Flags
.Pf
= Fast486CalculateParity(LOBYTE(Value
));
532 FAST486_OPCODE_HANDLER(Fast486OpcodePushReg
)
536 /* Make sure this is the right instruction */
537 ASSERT((Opcode
& 0xF8) == 0x50);
539 /* Call the internal function */
540 Fast486StackPush(State
, State
->GeneralRegs
[Opcode
& 0x07].Long
);
543 FAST486_OPCODE_HANDLER(Fast486OpcodePopReg
)
546 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
551 /* Make sure this is the right instruction */
552 ASSERT((Opcode
& 0xF8) == 0x58);
554 /* Call the internal function */
555 if (!Fast486StackPop(State
, &Value
)) return;
557 /* Store the value */
558 if (Size
) State
->GeneralRegs
[Opcode
& 0x07].Long
= Value
;
559 else State
->GeneralRegs
[Opcode
& 0x07].LowWord
= Value
;
562 FAST486_OPCODE_HANDLER(Fast486OpcodeNop
)
566 FAST486_OPCODE_HANDLER(Fast486OpcodeExchangeEax
)
568 INT Reg
= Opcode
& 0x07;
569 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
574 /* Make sure this is the right instruction */
575 ASSERT((Opcode
& 0xF8) == 0x90);
577 /* Exchange the values */
582 Value
= State
->GeneralRegs
[Reg
].Long
;
583 State
->GeneralRegs
[Reg
].Long
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
584 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Value
;
590 Value
= State
->GeneralRegs
[Reg
].LowWord
;
591 State
->GeneralRegs
[Reg
].LowWord
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
592 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Value
;
596 FAST486_OPCODE_HANDLER(Fast486OpcodeShortConditionalJmp
)
598 BOOLEAN Jump
= FALSE
;
600 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
602 /* Make sure this is the right instruction */
603 ASSERT((Opcode
& 0xF0) == 0x70);
607 /* Fetch the offset */
608 if (!Fast486FetchByte(State
, (PUCHAR
)&Offset
))
610 /* An exception occurred */
614 switch ((Opcode
& 0x0F) >> 1)
619 Jump
= State
->Flags
.Of
;
626 Jump
= State
->Flags
.Cf
;
633 Jump
= State
->Flags
.Zf
;
640 Jump
= State
->Flags
.Cf
|| State
->Flags
.Zf
;
647 Jump
= State
->Flags
.Sf
;
654 Jump
= State
->Flags
.Pf
;
661 Jump
= State
->Flags
.Sf
!= State
->Flags
.Of
;
668 Jump
= (State
->Flags
.Sf
!= State
->Flags
.Of
) || State
->Flags
.Zf
;
675 /* Invert the result */
681 /* Move the instruction pointer */
682 State
->InstPtr
.Long
+= Offset
;
686 /* Clear the top half of EIP */
687 State
->InstPtr
.Long
&= 0xFFFF;
692 FAST486_OPCODE_HANDLER(Fast486OpcodeClearCarry
)
694 /* Make sure this is the right instruction */
695 ASSERT(Opcode
== 0xF8);
697 /* No prefixes allowed */
698 if (State
->PrefixFlags
)
700 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
704 /* Clear CF and return success */
705 State
->Flags
.Cf
= FALSE
;
708 FAST486_OPCODE_HANDLER(Fast486OpcodeSetCarry
)
710 /* Make sure this is the right instruction */
711 ASSERT(Opcode
== 0xF9);
713 /* No prefixes allowed */
714 if (State
->PrefixFlags
)
716 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
720 /* Set CF and return success*/
721 State
->Flags
.Cf
= TRUE
;
724 FAST486_OPCODE_HANDLER(Fast486OpcodeComplCarry
)
726 /* Make sure this is the right instruction */
727 ASSERT(Opcode
== 0xF5);
729 /* No prefixes allowed */
730 if (State
->PrefixFlags
)
732 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
736 /* Toggle CF and return success */
737 State
->Flags
.Cf
= !State
->Flags
.Cf
;
741 FAST486_OPCODE_HANDLER(Fast486OpcodeClearInt
)
743 /* Make sure this is the right instruction */
744 ASSERT(Opcode
== 0xFA);
746 /* No prefixes allowed */
747 if (State
->PrefixFlags
)
749 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
753 /* Check for protected mode */
754 if (State
->ControlRegisters
[FAST486_REG_CR0
] & FAST486_CR0_PE
)
757 if (State
->Flags
.Iopl
>= State
->SegmentRegs
[FAST486_REG_CS
].Dpl
)
759 /* Clear the interrupt flag */
760 State
->Flags
.If
= FALSE
;
764 /* General Protection Fault */
765 Fast486Exception(State
, FAST486_EXCEPTION_GP
);
771 /* Just clear the interrupt flag */
772 State
->Flags
.If
= FALSE
;
776 FAST486_OPCODE_HANDLER(Fast486OpcodeSetInt
)
778 /* Make sure this is the right instruction */
779 ASSERT(Opcode
== 0xFB);
781 /* No prefixes allowed */
782 if (State
->PrefixFlags
)
784 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
788 /* Check for protected mode */
789 if (State
->ControlRegisters
[FAST486_REG_CR0
] & FAST486_CR0_PE
)
792 if (State
->Flags
.Iopl
>= State
->SegmentRegs
[FAST486_REG_CS
].Dpl
)
794 /* Set the interrupt flag */
795 State
->Flags
.If
= TRUE
;
799 /* General Protection Fault */
800 Fast486Exception(State
, FAST486_EXCEPTION_GP
);
806 /* Just set the interrupt flag */
807 State
->Flags
.If
= TRUE
;
811 FAST486_OPCODE_HANDLER(Fast486OpcodeClearDir
)
813 /* Make sure this is the right instruction */
814 ASSERT(Opcode
== 0xFC);
816 /* No prefixes allowed */
817 if (State
->PrefixFlags
)
819 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
824 State
->Flags
.Df
= FALSE
;
827 FAST486_OPCODE_HANDLER(Fast486OpcodeSetDir
)
829 /* Make sure this is the right instruction */
830 ASSERT(Opcode
== 0xFD);
832 /* No prefixes allowed */
833 if (State
->PrefixFlags
)
835 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
840 State
->Flags
.Df
= TRUE
;
843 FAST486_OPCODE_HANDLER(Fast486OpcodeHalt
)
845 /* Make sure this is the right instruction */
846 ASSERT(Opcode
== 0xF4);
848 /* No prefixes allowed */
849 if (State
->PrefixFlags
)
851 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
855 /* Privileged instructions can only be executed under CPL = 0 */
856 if (State
->SegmentRegs
[FAST486_REG_CS
].Dpl
!= 0)
858 Fast486Exception(State
, FAST486_EXCEPTION_GP
);
863 State
->Halted
= TRUE
;
866 FAST486_OPCODE_HANDLER(Fast486OpcodeInByte
)
871 /* Make sure this is the right instruction */
872 ASSERT((Opcode
& 0xF7) == 0xE4);
876 /* Fetch the parameter */
877 if (!Fast486FetchByte(State
, &Data
))
879 /* Exception occurred */
883 /* Set the port number to the parameter */
888 /* The port number is in DX */
889 Port
= State
->GeneralRegs
[FAST486_REG_EDX
].LowWord
;
892 /* Read a byte from the I/O port */
893 State
->IoReadCallback(State
, Port
, &Data
, 1, sizeof(UCHAR
));
895 /* Store the result in AL */
896 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Data
;
899 FAST486_OPCODE_HANDLER(Fast486OpcodeIn
)
902 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
904 /* Make sure this is the right instruction */
905 ASSERT((Opcode
& 0xF7) == 0xE5);
914 /* Fetch the parameter */
915 if (!Fast486FetchByte(State
, &Data
))
917 /* Exception occurred */
921 /* Set the port number to the parameter */
926 /* The port number is in DX */
927 Port
= State
->GeneralRegs
[FAST486_REG_EDX
].LowWord
;
934 /* Read a dword from the I/O port */
935 State
->IoReadCallback(State
, Port
, &Data
, 1, sizeof(ULONG
));
937 /* Store the value in EAX */
938 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Data
;
944 /* Read a word from the I/O port */
945 State
->IoReadCallback(State
, Port
, &Data
, 1, sizeof(USHORT
));
947 /* Store the value in AX */
948 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Data
;
952 FAST486_OPCODE_HANDLER(Fast486OpcodeOutByte
)
957 /* Make sure this is the right instruction */
958 ASSERT((Opcode
& 0xF7) == 0xE6);
962 /* Fetch the parameter */
963 if (!Fast486FetchByte(State
, &Data
))
965 /* Exception occurred */
969 /* Set the port number to the parameter */
974 /* The port number is in DX */
975 Port
= State
->GeneralRegs
[FAST486_REG_EDX
].LowWord
;
978 /* Read the value from AL */
979 Data
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
981 /* Write the byte to the I/O port */
982 State
->IoWriteCallback(State
, Port
, &Data
, 1, sizeof(UCHAR
));
985 FAST486_OPCODE_HANDLER(Fast486OpcodeOut
)
988 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
990 /* Make sure this is the right instruction */
991 ASSERT((Opcode
& 0xF7) == 0xE7);
1000 /* Fetch the parameter */
1001 if (!Fast486FetchByte(State
, &Data
))
1003 /* Exception occurred */
1007 /* Set the port number to the parameter */
1012 /* The port number is in DX */
1013 Port
= State
->GeneralRegs
[FAST486_REG_EDX
].LowWord
;
1018 /* Get the value from EAX */
1019 ULONG Data
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
1021 /* Write a dword to the I/O port */
1022 State
->IoWriteCallback(State
, Port
, &Data
, 1, sizeof(ULONG
));
1026 /* Get the value from AX */
1027 USHORT Data
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
1029 /* Write a word to the I/O port */
1030 State
->IoWriteCallback(State
, Port
, &Data
, 1, sizeof(USHORT
));
1034 FAST486_OPCODE_HANDLER(Fast486OpcodeShortJump
)
1037 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1039 TOGGLE_OPSIZE(Size
);
1041 /* Make sure this is the right instruction */
1042 ASSERT(Opcode
== 0xEB);
1044 /* Fetch the offset */
1045 if (!Fast486FetchByte(State
, (PUCHAR
)&Offset
))
1047 /* An exception occurred */
1051 /* Move the instruction pointer */
1052 State
->InstPtr
.Long
+= Offset
;
1056 /* Clear the top half of EIP */
1057 State
->InstPtr
.Long
&= 0xFFFF;
1061 FAST486_OPCODE_HANDLER(Fast486OpcodeMovRegImm
)
1063 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1065 /* Make sure this is the right instruction */
1066 ASSERT((Opcode
& 0xF8) == 0xB8);
1068 TOGGLE_OPSIZE(Size
);
1075 /* Fetch the dword */
1076 if (!Fast486FetchDword(State
, &Value
))
1078 /* Exception occurred */
1082 /* Store the value in the register */
1083 State
->GeneralRegs
[Opcode
& 0x07].Long
= Value
;
1089 /* Fetch the word */
1090 if (!Fast486FetchWord(State
, &Value
))
1092 /* Exception occurred */
1096 /* Store the value in the register */
1097 State
->GeneralRegs
[Opcode
& 0x07].LowWord
= Value
;
1101 FAST486_OPCODE_HANDLER(Fast486OpcodeMovByteRegImm
)
1105 /* Make sure this is the right instruction */
1106 ASSERT((Opcode
& 0xF8) == 0xB0);
1108 if (State
->PrefixFlags
!= 0)
1110 /* Invalid prefix */
1111 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
1115 /* Fetch the byte */
1116 if (!Fast486FetchByte(State
, &Value
))
1118 /* Exception occurred */
1124 /* AH, CH, DH or BH */
1125 State
->GeneralRegs
[Opcode
& 0x03].HighByte
= Value
;
1129 /* AL, CL, DL or BL */
1130 State
->GeneralRegs
[Opcode
& 0x03].LowByte
= Value
;
1134 FAST486_OPCODE_HANDLER(Fast486OpcodeAddByteModrm
)
1136 UCHAR FirstValue
, SecondValue
, Result
;
1137 FAST486_MOD_REG_RM ModRegRm
;
1138 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1140 /* Make sure this is the right instruction */
1141 ASSERT((Opcode
& 0xFD) == 0x00);
1143 TOGGLE_ADSIZE(AddressSize
);
1145 /* Get the operands */
1146 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1148 /* Exception occurred */
1152 if (!Fast486ReadModrmByteOperands(State
,
1157 /* Exception occurred */
1161 /* Calculate the result */
1162 Result
= FirstValue
+ SecondValue
;
1164 /* Update the flags */
1165 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1166 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) == (SecondValue
& SIGN_FLAG_BYTE
))
1167 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
1168 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1169 State
->Flags
.Zf
= (Result
== 0);
1170 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1171 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1173 /* Write back the result */
1174 Fast486WriteModrmByteOperands(State
,
1176 Opcode
& FAST486_OPCODE_WRITE_REG
,
1180 FAST486_OPCODE_HANDLER(Fast486OpcodeAddModrm
)
1182 FAST486_MOD_REG_RM ModRegRm
;
1183 BOOLEAN OperandSize
, AddressSize
;
1185 /* Make sure this is the right instruction */
1186 ASSERT((Opcode
& 0xFD) == 0x01);
1188 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1190 TOGGLE_ADSIZE(AddressSize
);
1191 TOGGLE_OPSIZE(OperandSize
);
1193 /* Get the operands */
1194 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1196 /* Exception occurred */
1200 /* Check the operand size */
1203 ULONG FirstValue
, SecondValue
, Result
;
1205 if (!Fast486ReadModrmDwordOperands(State
,
1210 /* Exception occurred */
1214 /* Calculate the result */
1215 Result
= FirstValue
+ SecondValue
;
1217 /* Update the flags */
1218 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1219 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) == (SecondValue
& SIGN_FLAG_LONG
))
1220 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
1221 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1222 State
->Flags
.Zf
= (Result
== 0);
1223 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1224 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1226 /* Write back the result */
1227 Fast486WriteModrmDwordOperands(State
,
1229 Opcode
& FAST486_OPCODE_WRITE_REG
,
1234 USHORT FirstValue
, SecondValue
, Result
;
1236 if (!Fast486ReadModrmWordOperands(State
,
1241 /* Exception occurred */
1245 /* Calculate the result */
1246 Result
= FirstValue
+ SecondValue
;
1248 /* Update the flags */
1249 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1250 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) == (SecondValue
& SIGN_FLAG_WORD
))
1251 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
1252 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1253 State
->Flags
.Zf
= (Result
== 0);
1254 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1255 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1257 /* Write back the result */
1258 Fast486WriteModrmWordOperands(State
,
1260 Opcode
& FAST486_OPCODE_WRITE_REG
,
1265 FAST486_OPCODE_HANDLER(Fast486OpcodeAddAl
)
1267 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
1268 UCHAR SecondValue
, Result
;
1270 /* Make sure this is the right instruction */
1271 ASSERT(Opcode
== 0x04);
1273 if (State
->PrefixFlags
)
1275 /* This opcode doesn't take any prefixes */
1276 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
1280 if (!Fast486FetchByte(State
, &SecondValue
))
1282 /* Exception occurred */
1286 /* Calculate the result */
1287 Result
= FirstValue
+ SecondValue
;
1289 /* Update the flags */
1290 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1291 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) == (SecondValue
& SIGN_FLAG_BYTE
))
1292 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
1293 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1294 State
->Flags
.Zf
= (Result
== 0);
1295 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1296 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1298 /* Write back the result */
1299 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
1302 FAST486_OPCODE_HANDLER(Fast486OpcodeAddEax
)
1304 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1306 /* Make sure this is the right instruction */
1307 ASSERT(Opcode
== 0x05);
1310 TOGGLE_OPSIZE(Size
);
1314 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
1315 ULONG SecondValue
, Result
;
1317 if (!Fast486FetchDword(State
, &SecondValue
))
1319 /* Exception occurred */
1323 /* Calculate the result */
1324 Result
= FirstValue
+ SecondValue
;
1326 /* Update the flags */
1327 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1328 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) == (SecondValue
& SIGN_FLAG_LONG
))
1329 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
1330 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1331 State
->Flags
.Zf
= (Result
== 0);
1332 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1333 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1335 /* Write back the result */
1336 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
1340 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
1341 USHORT SecondValue
, Result
;
1343 if (!Fast486FetchWord(State
, &SecondValue
))
1345 /* Exception occurred */
1349 /* Calculate the result */
1350 Result
= FirstValue
+ SecondValue
;
1352 /* Update the flags */
1353 State
->Flags
.Cf
= (Result
< FirstValue
) && (Result
< SecondValue
);
1354 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) == (SecondValue
& SIGN_FLAG_WORD
))
1355 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
1356 State
->Flags
.Af
= ((((FirstValue
& 0x0F) + (SecondValue
& 0x0F)) & 0x10) != 0);
1357 State
->Flags
.Zf
= (Result
== 0);
1358 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1359 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1361 /* Write back the result */
1362 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
1366 FAST486_OPCODE_HANDLER(Fast486OpcodeOrByteModrm
)
1368 UCHAR FirstValue
, SecondValue
, Result
;
1369 FAST486_MOD_REG_RM ModRegRm
;
1370 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1372 /* Make sure this is the right instruction */
1373 ASSERT((Opcode
& 0xFD) == 0x08);
1375 TOGGLE_ADSIZE(AddressSize
);
1377 /* Get the operands */
1378 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1380 /* Exception occurred */
1384 if (!Fast486ReadModrmByteOperands(State
,
1389 /* Exception occurred */
1393 /* Calculate the result */
1394 Result
= FirstValue
| SecondValue
;
1396 /* Update the flags */
1397 State
->Flags
.Cf
= FALSE
;
1398 State
->Flags
.Of
= FALSE
;
1399 State
->Flags
.Zf
= (Result
== 0);
1400 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1401 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1403 /* Write back the result */
1404 Fast486WriteModrmByteOperands(State
,
1406 Opcode
& FAST486_OPCODE_WRITE_REG
,
1410 FAST486_OPCODE_HANDLER(Fast486OpcodeOrModrm
)
1412 FAST486_MOD_REG_RM ModRegRm
;
1413 BOOLEAN OperandSize
, AddressSize
;
1415 /* Make sure this is the right instruction */
1416 ASSERT((Opcode
& 0xFD) == 0x09);
1418 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1420 TOGGLE_ADSIZE(AddressSize
);
1421 TOGGLE_OPSIZE(OperandSize
);
1423 /* Get the operands */
1424 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1426 /* Exception occurred */
1430 /* Check the operand size */
1433 ULONG FirstValue
, SecondValue
, Result
;
1435 if (!Fast486ReadModrmDwordOperands(State
,
1440 /* Exception occurred */
1444 /* Calculate the result */
1445 Result
= FirstValue
| SecondValue
;
1447 /* Update the flags */
1448 State
->Flags
.Cf
= FALSE
;
1449 State
->Flags
.Of
= FALSE
;
1450 State
->Flags
.Zf
= (Result
== 0);
1451 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1452 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1454 /* Write back the result */
1455 Fast486WriteModrmDwordOperands(State
,
1457 Opcode
& FAST486_OPCODE_WRITE_REG
,
1462 USHORT FirstValue
, SecondValue
, Result
;
1464 if (!Fast486ReadModrmWordOperands(State
,
1469 /* Exception occurred */
1473 /* Calculate the result */
1474 Result
= FirstValue
| SecondValue
;
1476 /* Update the flags */
1477 State
->Flags
.Cf
= FALSE
;
1478 State
->Flags
.Of
= FALSE
;
1479 State
->Flags
.Zf
= (Result
== 0);
1480 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1481 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1483 /* Write back the result */
1484 Fast486WriteModrmWordOperands(State
,
1486 Opcode
& FAST486_OPCODE_WRITE_REG
,
1491 FAST486_OPCODE_HANDLER(Fast486OpcodeOrAl
)
1493 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
1494 UCHAR SecondValue
, Result
;
1496 /* Make sure this is the right instruction */
1497 ASSERT(Opcode
== 0x0C);
1499 if (State
->PrefixFlags
)
1501 /* This opcode doesn't take any prefixes */
1502 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
1506 if (!Fast486FetchByte(State
, &SecondValue
))
1508 /* Exception occurred */
1512 /* Calculate the result */
1513 Result
= FirstValue
| SecondValue
;
1515 /* Update the flags */
1516 State
->Flags
.Cf
= FALSE
;
1517 State
->Flags
.Of
= FALSE
;
1518 State
->Flags
.Zf
= (Result
== 0);
1519 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1520 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1522 /* Write back the result */
1523 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
1526 FAST486_OPCODE_HANDLER(Fast486OpcodeOrEax
)
1528 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1530 /* Make sure this is the right instruction */
1531 ASSERT(Opcode
== 0x0D);
1534 TOGGLE_OPSIZE(Size
);
1538 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
1539 ULONG SecondValue
, Result
;
1541 if (!Fast486FetchDword(State
, &SecondValue
))
1543 /* Exception occurred */
1547 /* Calculate the result */
1548 Result
= FirstValue
| SecondValue
;
1550 /* Update the flags */
1551 State
->Flags
.Cf
= FALSE
;
1552 State
->Flags
.Of
= FALSE
;
1553 State
->Flags
.Zf
= (Result
== 0);
1554 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1555 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1557 /* Write back the result */
1558 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
1562 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
1563 USHORT SecondValue
, Result
;
1565 if (!Fast486FetchWord(State
, &SecondValue
))
1567 /* Exception occurred */
1571 /* Calculate the result */
1572 Result
= FirstValue
| SecondValue
;
1574 /* Update the flags */
1575 State
->Flags
.Cf
= FALSE
;
1576 State
->Flags
.Of
= FALSE
;
1577 State
->Flags
.Zf
= (Result
== 0);
1578 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1579 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1581 /* Write back the result */
1582 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
1586 FAST486_OPCODE_HANDLER(Fast486OpcodeAndByteModrm
)
1588 UCHAR FirstValue
, SecondValue
, Result
;
1589 FAST486_MOD_REG_RM ModRegRm
;
1590 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1592 /* Make sure this is the right instruction */
1593 ASSERT((Opcode
& 0xFD) == 0x20);
1595 TOGGLE_ADSIZE(AddressSize
);
1597 /* Get the operands */
1598 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1600 /* Exception occurred */
1604 if (!Fast486ReadModrmByteOperands(State
,
1609 /* Exception occurred */
1613 /* Calculate the result */
1614 Result
= FirstValue
& SecondValue
;
1616 /* Update the flags */
1617 State
->Flags
.Cf
= FALSE
;
1618 State
->Flags
.Of
= FALSE
;
1619 State
->Flags
.Zf
= (Result
== 0);
1620 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1621 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1623 /* Write back the result */
1624 Fast486WriteModrmByteOperands(State
,
1626 Opcode
& FAST486_OPCODE_WRITE_REG
,
1630 FAST486_OPCODE_HANDLER(Fast486OpcodeAndModrm
)
1632 FAST486_MOD_REG_RM ModRegRm
;
1633 BOOLEAN OperandSize
, AddressSize
;
1635 /* Make sure this is the right instruction */
1636 ASSERT((Opcode
& 0xFD) == 0x21);
1638 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1640 TOGGLE_ADSIZE(AddressSize
);
1641 TOGGLE_OPSIZE(OperandSize
);
1643 /* Get the operands */
1644 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1646 /* Exception occurred */
1650 /* Check the operand size */
1653 ULONG FirstValue
, SecondValue
, Result
;
1655 if (!Fast486ReadModrmDwordOperands(State
,
1660 /* Exception occurred */
1664 /* Calculate the result */
1665 Result
= FirstValue
& SecondValue
;
1667 /* Update the flags */
1668 State
->Flags
.Cf
= FALSE
;
1669 State
->Flags
.Of
= FALSE
;
1670 State
->Flags
.Zf
= (Result
== 0);
1671 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1672 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1674 /* Write back the result */
1675 Fast486WriteModrmDwordOperands(State
,
1677 Opcode
& FAST486_OPCODE_WRITE_REG
,
1682 USHORT FirstValue
, SecondValue
, Result
;
1684 if (!Fast486ReadModrmWordOperands(State
,
1689 /* Exception occurred */
1693 /* Calculate the result */
1694 Result
= FirstValue
& SecondValue
;
1696 /* Update the flags */
1697 State
->Flags
.Cf
= FALSE
;
1698 State
->Flags
.Of
= FALSE
;
1699 State
->Flags
.Zf
= (Result
== 0);
1700 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1701 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1703 /* Write back the result */
1704 Fast486WriteModrmWordOperands(State
,
1706 Opcode
& FAST486_OPCODE_WRITE_REG
,
1711 FAST486_OPCODE_HANDLER(Fast486OpcodeAndAl
)
1713 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
1714 UCHAR SecondValue
, Result
;
1716 /* Make sure this is the right instruction */
1717 ASSERT(Opcode
== 0x24);
1721 if (!Fast486FetchByte(State
, &SecondValue
))
1723 /* Exception occurred */
1727 /* Calculate the result */
1728 Result
= FirstValue
& SecondValue
;
1730 /* Update the flags */
1731 State
->Flags
.Cf
= FALSE
;
1732 State
->Flags
.Of
= FALSE
;
1733 State
->Flags
.Zf
= (Result
== 0);
1734 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1735 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1737 /* Write back the result */
1738 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
1741 FAST486_OPCODE_HANDLER(Fast486OpcodeAndEax
)
1743 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1745 /* Make sure this is the right instruction */
1746 ASSERT(Opcode
== 0x25);
1749 TOGGLE_OPSIZE(Size
);
1753 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
1754 ULONG SecondValue
, Result
;
1756 if (!Fast486FetchDword(State
, &SecondValue
))
1758 /* Exception occurred */
1762 /* Calculate the result */
1763 Result
= FirstValue
& SecondValue
;
1765 /* Update the flags */
1766 State
->Flags
.Cf
= FALSE
;
1767 State
->Flags
.Of
= FALSE
;
1768 State
->Flags
.Zf
= (Result
== 0);
1769 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1770 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1772 /* Write back the result */
1773 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
1777 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
1778 USHORT SecondValue
, Result
;
1780 if (!Fast486FetchWord(State
, &SecondValue
))
1782 /* Exception occurred */
1786 /* Calculate the result */
1787 Result
= FirstValue
& SecondValue
;
1789 /* Update the flags */
1790 State
->Flags
.Cf
= FALSE
;
1791 State
->Flags
.Of
= FALSE
;
1792 State
->Flags
.Zf
= (Result
== 0);
1793 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1794 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1796 /* Write back the result */
1797 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
1801 FAST486_OPCODE_HANDLER(Fast486OpcodeXorByteModrm
)
1803 UCHAR FirstValue
, SecondValue
, Result
;
1804 FAST486_MOD_REG_RM ModRegRm
;
1805 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1807 /* Make sure this is the right instruction */
1808 ASSERT((Opcode
& 0xFD) == 0x30);
1810 TOGGLE_ADSIZE(AddressSize
);
1812 /* Get the operands */
1813 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1815 /* Exception occurred */
1819 if (!Fast486ReadModrmByteOperands(State
,
1824 /* Exception occurred */
1828 /* Calculate the result */
1829 Result
= FirstValue
^ SecondValue
;
1831 /* Update the flags */
1832 State
->Flags
.Cf
= FALSE
;
1833 State
->Flags
.Of
= FALSE
;
1834 State
->Flags
.Zf
= (Result
== 0);
1835 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1836 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1838 /* Write back the result */
1839 Fast486WriteModrmByteOperands(State
,
1841 Opcode
& FAST486_OPCODE_WRITE_REG
,
1845 FAST486_OPCODE_HANDLER(Fast486OpcodeXorModrm
)
1847 FAST486_MOD_REG_RM ModRegRm
;
1848 BOOLEAN OperandSize
, AddressSize
;
1850 /* Make sure this is the right instruction */
1851 ASSERT((Opcode
& 0xFD) == 0x31);
1853 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1855 TOGGLE_ADSIZE(AddressSize
);
1856 TOGGLE_OPSIZE(OperandSize
);
1858 /* Get the operands */
1859 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
1861 /* Exception occurred */
1865 /* Check the operand size */
1868 ULONG FirstValue
, SecondValue
, Result
;
1870 if (!Fast486ReadModrmDwordOperands(State
,
1875 /* Exception occurred */
1879 /* Calculate the result */
1880 Result
= FirstValue
^ SecondValue
;
1882 /* Update the flags */
1883 State
->Flags
.Cf
= FALSE
;
1884 State
->Flags
.Of
= FALSE
;
1885 State
->Flags
.Zf
= (Result
== 0);
1886 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1887 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1889 /* Write back the result */
1890 Fast486WriteModrmDwordOperands(State
,
1892 Opcode
& FAST486_OPCODE_WRITE_REG
,
1897 USHORT FirstValue
, SecondValue
, Result
;
1899 if (!Fast486ReadModrmWordOperands(State
,
1904 /* Exception occurred */
1908 /* Calculate the result */
1909 Result
= FirstValue
^ SecondValue
;
1911 /* Update the flags */
1912 State
->Flags
.Cf
= FALSE
;
1913 State
->Flags
.Of
= FALSE
;
1914 State
->Flags
.Zf
= (Result
== 0);
1915 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
1916 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1918 /* Write back the result */
1919 Fast486WriteModrmWordOperands(State
,
1921 Opcode
& FAST486_OPCODE_WRITE_REG
,
1926 FAST486_OPCODE_HANDLER(Fast486OpcodeXorAl
)
1928 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
1929 UCHAR SecondValue
, Result
;
1931 /* Make sure this is the right instruction */
1932 ASSERT(Opcode
== 0x34);
1934 if (State
->PrefixFlags
)
1936 /* This opcode doesn't take any prefixes */
1937 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
1941 if (!Fast486FetchByte(State
, &SecondValue
))
1943 /* Exception occurred */
1947 /* Calculate the result */
1948 Result
= FirstValue
^ SecondValue
;
1950 /* Update the flags */
1951 State
->Flags
.Cf
= FALSE
;
1952 State
->Flags
.Of
= FALSE
;
1953 State
->Flags
.Zf
= (Result
== 0);
1954 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
1955 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1957 /* Write back the result */
1958 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
1961 FAST486_OPCODE_HANDLER(Fast486OpcodeXorEax
)
1963 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
1965 /* Make sure this is the right instruction */
1966 ASSERT(Opcode
== 0x35);
1969 TOGGLE_OPSIZE(Size
);
1973 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
1974 ULONG SecondValue
, Result
;
1976 if (!Fast486FetchDword(State
, &SecondValue
))
1978 /* Exception occurred */
1982 /* Calculate the result */
1983 Result
= FirstValue
^ SecondValue
;
1985 /* Update the flags */
1986 State
->Flags
.Cf
= FALSE
;
1987 State
->Flags
.Of
= FALSE
;
1988 State
->Flags
.Zf
= (Result
== 0);
1989 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
1990 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
1992 /* Write back the result */
1993 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
1997 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
1998 USHORT SecondValue
, Result
;
2000 if (!Fast486FetchWord(State
, &SecondValue
))
2002 /* Exception occurred */
2006 /* Calculate the result */
2007 Result
= FirstValue
^ SecondValue
;
2009 /* Update the flags */
2010 State
->Flags
.Cf
= FALSE
;
2011 State
->Flags
.Of
= FALSE
;
2012 State
->Flags
.Zf
= (Result
== 0);
2013 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2014 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2016 /* Write back the result */
2017 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
2021 FAST486_OPCODE_HANDLER(Fast486OpcodeTestByteModrm
)
2023 UCHAR FirstValue
, SecondValue
, Result
;
2024 FAST486_MOD_REG_RM ModRegRm
;
2025 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2027 /* Make sure this is the right instruction */
2028 ASSERT(Opcode
== 0x84);
2030 TOGGLE_ADSIZE(AddressSize
);
2032 /* Get the operands */
2033 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2035 /* Exception occurred */
2039 if (!Fast486ReadModrmByteOperands(State
,
2044 /* Exception occurred */
2047 /* Calculate the result */
2048 Result
= FirstValue
& SecondValue
;
2050 /* Update the flags */
2051 State
->Flags
.Cf
= FALSE
;
2052 State
->Flags
.Of
= FALSE
;
2053 State
->Flags
.Zf
= (Result
== 0);
2054 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2055 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2058 FAST486_OPCODE_HANDLER(Fast486OpcodeTestModrm
)
2060 FAST486_MOD_REG_RM ModRegRm
;
2061 BOOLEAN OperandSize
, AddressSize
;
2063 /* Make sure this is the right instruction */
2064 ASSERT(Opcode
== 0x85);
2066 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2068 TOGGLE_ADSIZE(AddressSize
);
2069 TOGGLE_OPSIZE(OperandSize
);
2071 /* Get the operands */
2072 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2074 /* Exception occurred */
2078 /* Check the operand size */
2081 ULONG FirstValue
, SecondValue
, Result
;
2083 if (!Fast486ReadModrmDwordOperands(State
,
2088 /* Exception occurred */
2092 /* Calculate the result */
2093 Result
= FirstValue
& SecondValue
;
2095 /* Update the flags */
2096 State
->Flags
.Cf
= FALSE
;
2097 State
->Flags
.Of
= FALSE
;
2098 State
->Flags
.Zf
= (Result
== 0);
2099 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2100 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2104 USHORT FirstValue
, SecondValue
, Result
;
2106 if (!Fast486ReadModrmWordOperands(State
,
2111 /* Exception occurred */
2115 /* Calculate the result */
2116 Result
= FirstValue
& SecondValue
;
2118 /* Update the flags */
2119 State
->Flags
.Cf
= FALSE
;
2120 State
->Flags
.Of
= FALSE
;
2121 State
->Flags
.Zf
= (Result
== 0);
2122 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2123 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2127 FAST486_OPCODE_HANDLER(Fast486OpcodeTestAl
)
2129 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
2130 UCHAR SecondValue
, Result
;
2132 /* Make sure this is the right instruction */
2133 ASSERT(Opcode
== 0xA8);
2135 if (State
->PrefixFlags
)
2137 /* This opcode doesn't take any prefixes */
2138 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
2142 if (!Fast486FetchByte(State
, &SecondValue
))
2144 /* Exception occurred */
2148 /* Calculate the result */
2149 Result
= FirstValue
& SecondValue
;
2151 /* Update the flags */
2152 State
->Flags
.Cf
= FALSE
;
2153 State
->Flags
.Of
= FALSE
;
2154 State
->Flags
.Zf
= (Result
== 0);
2155 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2156 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2159 FAST486_OPCODE_HANDLER(Fast486OpcodeTestEax
)
2161 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2163 /* Make sure this is the right instruction */
2164 ASSERT(Opcode
== 0xA9);
2167 TOGGLE_OPSIZE(Size
);
2171 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
2172 ULONG SecondValue
, Result
;
2174 if (!Fast486FetchDword(State
, &SecondValue
))
2176 /* Exception occurred */
2180 /* Calculate the result */
2181 Result
= FirstValue
& SecondValue
;
2183 /* Update the flags */
2184 State
->Flags
.Cf
= FALSE
;
2185 State
->Flags
.Of
= FALSE
;
2186 State
->Flags
.Zf
= (Result
== 0);
2187 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2188 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2192 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
2193 USHORT SecondValue
, Result
;
2195 if (!Fast486FetchWord(State
, &SecondValue
))
2197 /* Exception occurred */
2201 /* Calculate the result */
2202 Result
= FirstValue
& SecondValue
;
2204 /* Update the flags */
2205 State
->Flags
.Cf
= FALSE
;
2206 State
->Flags
.Of
= FALSE
;
2207 State
->Flags
.Zf
= (Result
== 0);
2208 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2209 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2213 FAST486_OPCODE_HANDLER(Fast486OpcodeXchgByteModrm
)
2215 UCHAR FirstValue
, SecondValue
;
2216 FAST486_MOD_REG_RM ModRegRm
;
2217 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2219 /* Make sure this is the right instruction */
2220 ASSERT(Opcode
== 0x86);
2222 TOGGLE_ADSIZE(AddressSize
);
2224 /* Get the operands */
2225 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2227 /* Exception occurred */
2231 if (!Fast486ReadModrmByteOperands(State
,
2236 /* Exception occurred */
2240 /* Write the value from the register to the R/M */
2241 if (!Fast486WriteModrmByteOperands(State
,
2246 /* Exception occurred */
2250 /* Write the value from the R/M to the register */
2251 Fast486WriteModrmByteOperands(State
,
2257 FAST486_OPCODE_HANDLER(Fast486OpcodeXchgModrm
)
2259 FAST486_MOD_REG_RM ModRegRm
;
2260 BOOLEAN OperandSize
, AddressSize
;
2262 /* Make sure this is the right instruction */
2263 ASSERT(Opcode
== 0x87);
2265 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2267 TOGGLE_ADSIZE(AddressSize
);
2268 TOGGLE_OPSIZE(OperandSize
);
2270 /* Get the operands */
2271 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2273 /* Exception occurred */
2277 /* Check the operand size */
2280 ULONG FirstValue
, SecondValue
;
2282 if (!Fast486ReadModrmDwordOperands(State
,
2287 /* Exception occurred */
2291 /* Write the value from the register to the R/M */
2292 if (!Fast486WriteModrmDwordOperands(State
,
2297 /* Exception occurred */
2301 /* Write the value from the R/M to the register */
2302 Fast486WriteModrmDwordOperands(State
,
2309 USHORT FirstValue
, SecondValue
;
2311 if (!Fast486ReadModrmWordOperands(State
,
2316 /* Exception occurred */
2320 /* Write the value from the register to the R/M */
2321 if (!Fast486WriteModrmWordOperands(State
,
2326 /* Exception occurred */
2330 /* Write the value from the R/M to the register */
2331 Fast486WriteModrmWordOperands(State
,
2338 FAST486_OPCODE_HANDLER(Fast486OpcodePushEs
)
2340 /* Call the internal API */
2341 Fast486StackPush(State
, State
->SegmentRegs
[FAST486_REG_ES
].Selector
);
2344 FAST486_OPCODE_HANDLER(Fast486OpcodePopEs
)
2348 if (!Fast486StackPop(State
, &NewSelector
))
2350 /* Exception occurred */
2354 /* Call the internal API */
2355 Fast486LoadSegment(State
, FAST486_REG_ES
, LOWORD(NewSelector
));
2358 FAST486_OPCODE_HANDLER(Fast486OpcodePushCs
)
2360 /* Call the internal API */
2361 Fast486StackPush(State
, State
->SegmentRegs
[FAST486_REG_CS
].Selector
);
2364 FAST486_OPCODE_HANDLER(Fast486OpcodeAdcByteModrm
)
2366 UCHAR FirstValue
, SecondValue
, Result
;
2367 FAST486_MOD_REG_RM ModRegRm
;
2368 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2370 /* Make sure this is the right instruction */
2371 ASSERT((Opcode
& 0xFD) == 0x10);
2373 TOGGLE_ADSIZE(AddressSize
);
2375 /* Get the operands */
2376 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2378 /* Exception occurred */
2382 if (!Fast486ReadModrmByteOperands(State
,
2387 /* Exception occurred */
2391 /* Calculate the result */
2392 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2394 /* Special exception for CF */
2395 State
->Flags
.Cf
= State
->Flags
.Cf
2396 && ((FirstValue
== 0xFF) || (SecondValue
== 0xFF));
2398 /* Update the flags */
2399 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2400 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) == (SecondValue
& SIGN_FLAG_BYTE
))
2401 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
2402 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2403 State
->Flags
.Zf
= (Result
== 0);
2404 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2405 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2407 /* Write back the result */
2408 Fast486WriteModrmByteOperands(State
,
2410 Opcode
& FAST486_OPCODE_WRITE_REG
,
2414 FAST486_OPCODE_HANDLER(Fast486OpcodeAdcModrm
)
2416 FAST486_MOD_REG_RM ModRegRm
;
2417 BOOLEAN OperandSize
, AddressSize
;
2419 /* Make sure this is the right instruction */
2420 ASSERT((Opcode
& 0xFD) == 0x11);
2422 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2424 TOGGLE_ADSIZE(AddressSize
);
2425 TOGGLE_OPSIZE(OperandSize
);
2427 /* Get the operands */
2428 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2430 /* Exception occurred */
2434 /* Check the operand size */
2437 ULONG FirstValue
, SecondValue
, Result
;
2439 if (!Fast486ReadModrmDwordOperands(State
,
2444 /* Exception occurred */
2448 /* Calculate the result */
2449 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2451 /* Special exception for CF */
2452 State
->Flags
.Cf
= State
->Flags
.Cf
2453 && ((FirstValue
== 0xFFFFFFFF) || (SecondValue
== 0xFFFFFFFF));
2455 /* Update the flags */
2456 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2457 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) == (SecondValue
& SIGN_FLAG_LONG
))
2458 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
2459 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2460 State
->Flags
.Zf
= (Result
== 0);
2461 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2462 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2464 /* Write back the result */
2465 Fast486WriteModrmDwordOperands(State
,
2467 Opcode
& FAST486_OPCODE_WRITE_REG
,
2472 USHORT FirstValue
, SecondValue
, Result
;
2474 if (!Fast486ReadModrmWordOperands(State
,
2479 /* Exception occurred */
2483 /* Calculate the result */
2484 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2486 /* Special exception for CF */
2487 State
->Flags
.Cf
= State
->Flags
.Cf
2488 && ((FirstValue
== 0xFFFF) || (SecondValue
== 0xFFFF));
2490 /* Update the flags */
2491 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2492 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) == (SecondValue
& SIGN_FLAG_WORD
))
2493 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
2494 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2495 State
->Flags
.Zf
= (Result
== 0);
2496 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2497 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2499 /* Write back the result */
2500 Fast486WriteModrmWordOperands(State
,
2502 Opcode
& FAST486_OPCODE_WRITE_REG
,
2508 FAST486_OPCODE_HANDLER(Fast486OpcodeAdcAl
)
2510 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
2511 UCHAR SecondValue
, Result
;
2513 /* Make sure this is the right instruction */
2514 ASSERT(Opcode
== 0x14);
2516 if (State
->PrefixFlags
)
2518 /* This opcode doesn't take any prefixes */
2519 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
2523 if (!Fast486FetchByte(State
, &SecondValue
))
2525 /* Exception occurred */
2529 /* Calculate the result */
2530 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2532 /* Special exception for CF */
2533 State
->Flags
.Cf
= State
->Flags
.Cf
&&
2534 ((FirstValue
== 0xFF) || (SecondValue
== 0xFF));
2536 /* Update the flags */
2537 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2538 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) == (SecondValue
& SIGN_FLAG_BYTE
))
2539 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
2540 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2541 State
->Flags
.Zf
= (Result
== 0);
2542 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2543 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2545 /* Write back the result */
2546 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
2549 FAST486_OPCODE_HANDLER(Fast486OpcodeAdcEax
)
2551 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2553 /* Make sure this is the right instruction */
2554 ASSERT(Opcode
== 0x15);
2557 TOGGLE_OPSIZE(Size
);
2561 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
2562 ULONG SecondValue
, Result
;
2564 if (!Fast486FetchDword(State
, &SecondValue
))
2566 /* Exception occurred */
2570 /* Calculate the result */
2571 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2573 /* Special exception for CF */
2574 State
->Flags
.Cf
= State
->Flags
.Cf
&&
2575 ((FirstValue
== 0xFFFFFFFF) || (SecondValue
== 0xFFFFFFFF));
2577 /* Update the flags */
2578 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2579 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) == (SecondValue
& SIGN_FLAG_LONG
))
2580 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
2581 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2582 State
->Flags
.Zf
= (Result
== 0);
2583 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2584 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2586 /* Write back the result */
2587 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
2591 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
2592 USHORT SecondValue
, Result
;
2594 if (!Fast486FetchWord(State
, &SecondValue
))
2596 /* Exception occurred */
2600 /* Calculate the result */
2601 Result
= FirstValue
+ SecondValue
+ State
->Flags
.Cf
;
2603 /* Special exception for CF */
2604 State
->Flags
.Cf
= State
->Flags
.Cf
&&
2605 ((FirstValue
== 0xFFFF) || (SecondValue
== 0xFFFF));
2607 /* Update the flags */
2608 State
->Flags
.Cf
= State
->Flags
.Cf
|| ((Result
< FirstValue
) && (Result
< SecondValue
));
2609 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) == (SecondValue
& SIGN_FLAG_WORD
))
2610 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
2611 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2612 State
->Flags
.Zf
= (Result
== 0);
2613 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2614 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2616 /* Write back the result */
2617 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
2621 FAST486_OPCODE_HANDLER(Fast486OpcodePushSs
)
2623 /* Call the internal API */
2624 Fast486StackPush(State
, State
->SegmentRegs
[FAST486_REG_SS
].Selector
);
2627 FAST486_OPCODE_HANDLER(Fast486OpcodePopSs
)
2631 if (!Fast486StackPop(State
, &NewSelector
))
2633 /* Exception occurred */
2637 /* Call the internal API */
2638 Fast486LoadSegment(State
, FAST486_REG_SS
, LOWORD(NewSelector
));
2641 FAST486_OPCODE_HANDLER(Fast486OpcodeSbbByteModrm
)
2643 UCHAR FirstValue
, SecondValue
, Result
;
2644 FAST486_MOD_REG_RM ModRegRm
;
2645 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2646 INT Carry
= State
->Flags
.Cf
? 1 : 0;
2648 /* Make sure this is the right instruction */
2649 ASSERT((Opcode
& 0xFD) == 0x18);
2651 TOGGLE_ADSIZE(AddressSize
);
2653 /* Get the operands */
2654 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2656 /* Exception occurred */
2660 if (!Fast486ReadModrmByteOperands(State
,
2665 /* Exception occurred */
2669 /* Check if this is the instruction that writes to R/M */
2670 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
2672 /* Swap the order */
2673 SWAP(FirstValue
, SecondValue
);
2676 /* Calculate the result */
2677 Result
= FirstValue
- SecondValue
- Carry
;
2679 /* Update the flags */
2680 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2681 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) != (SecondValue
& SIGN_FLAG_BYTE
))
2682 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
2683 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2684 State
->Flags
.Zf
= (Result
== 0);
2685 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2686 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2688 /* Write back the result */
2689 Fast486WriteModrmByteOperands(State
,
2691 Opcode
& FAST486_OPCODE_WRITE_REG
,
2695 FAST486_OPCODE_HANDLER(Fast486OpcodeSbbModrm
)
2697 FAST486_MOD_REG_RM ModRegRm
;
2698 BOOLEAN OperandSize
, AddressSize
;
2699 INT Carry
= State
->Flags
.Cf
? 1 : 0;
2701 /* Make sure this is the right instruction */
2702 ASSERT((Opcode
& 0xFD) == 0x19);
2704 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2706 TOGGLE_ADSIZE(AddressSize
);
2707 TOGGLE_OPSIZE(OperandSize
);
2709 /* Get the operands */
2710 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2712 /* Exception occurred */
2716 /* Check the operand size */
2719 ULONG FirstValue
, SecondValue
, Result
;
2721 if (!Fast486ReadModrmDwordOperands(State
,
2726 /* Exception occurred */
2730 /* Check if this is the instruction that writes to R/M */
2731 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
2733 /* Swap the order */
2734 SWAP(FirstValue
, SecondValue
);
2737 /* Calculate the result */
2738 Result
= FirstValue
- SecondValue
- Carry
;
2740 /* Update the flags */
2741 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2742 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) != (SecondValue
& SIGN_FLAG_LONG
))
2743 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
2744 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2745 State
->Flags
.Zf
= (Result
== 0);
2746 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2747 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2749 /* Write back the result */
2750 Fast486WriteModrmDwordOperands(State
,
2752 Opcode
& FAST486_OPCODE_WRITE_REG
,
2757 USHORT FirstValue
, SecondValue
, Result
;
2759 if (!Fast486ReadModrmWordOperands(State
,
2764 /* Exception occurred */
2768 /* Check if this is the instruction that writes to R/M */
2769 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
2771 /* Swap the order */
2772 SWAP(FirstValue
, SecondValue
);
2775 /* Calculate the result */
2776 Result
= FirstValue
- SecondValue
- Carry
;
2778 /* Update the flags */
2779 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2780 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) != (SecondValue
& SIGN_FLAG_WORD
))
2781 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
2782 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2783 State
->Flags
.Zf
= (Result
== 0);
2784 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2785 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2787 /* Write back the result */
2788 Fast486WriteModrmWordOperands(State
,
2790 Opcode
& FAST486_OPCODE_WRITE_REG
,
2795 FAST486_OPCODE_HANDLER(Fast486OpcodeSbbAl
)
2797 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
2798 UCHAR SecondValue
, Result
;
2799 INT Carry
= State
->Flags
.Cf
? 1 : 0;
2801 /* Make sure this is the right instruction */
2802 ASSERT(Opcode
== 0x1C);
2804 if (State
->PrefixFlags
)
2806 /* This opcode doesn't take any prefixes */
2807 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
2811 if (!Fast486FetchByte(State
, &SecondValue
))
2813 /* Exception occurred */
2817 /* Calculate the result */
2818 Result
= FirstValue
- SecondValue
- Carry
;
2820 /* Update the flags */
2821 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2822 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) != (SecondValue
& SIGN_FLAG_BYTE
))
2823 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
2824 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2825 State
->Flags
.Zf
= (Result
== 0);
2826 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
2827 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2829 /* Write back the result */
2830 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
2833 FAST486_OPCODE_HANDLER(Fast486OpcodeSbbEax
)
2835 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2836 INT Carry
= State
->Flags
.Cf
? 1 : 0;
2838 /* Make sure this is the right instruction */
2839 ASSERT(Opcode
== 0x1D);
2842 TOGGLE_OPSIZE(Size
);
2846 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
2847 ULONG SecondValue
, Result
;
2849 if (!Fast486FetchDword(State
, &SecondValue
))
2851 /* Exception occurred */
2855 /* Calculate the result */
2856 Result
= FirstValue
- SecondValue
- Carry
;
2858 /* Update the flags */
2859 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2860 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) != (SecondValue
& SIGN_FLAG_LONG
))
2861 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
2862 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2863 State
->Flags
.Zf
= (Result
== 0);
2864 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
2865 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2867 /* Write back the result */
2868 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
2872 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
2873 USHORT SecondValue
, Result
;
2875 if (!Fast486FetchWord(State
, &SecondValue
))
2877 /* Exception occurred */
2881 /* Calculate the result */
2882 Result
= FirstValue
- SecondValue
- Carry
;
2884 /* Update the flags */
2885 State
->Flags
.Cf
= Carry
? (FirstValue
<= SecondValue
) : (FirstValue
< SecondValue
);
2886 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) != (SecondValue
& SIGN_FLAG_WORD
))
2887 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
2888 State
->Flags
.Af
= ((FirstValue
^ SecondValue
^ Result
) & 0x10) != 0;
2889 State
->Flags
.Zf
= (Result
== 0);
2890 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
2891 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
2893 /* Write back the result */
2894 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
2898 FAST486_OPCODE_HANDLER(Fast486OpcodePushDs
)
2900 /* Call the internal API */
2901 Fast486StackPush(State
, State
->SegmentRegs
[FAST486_REG_DS
].Selector
);
2904 FAST486_OPCODE_HANDLER(Fast486OpcodePopDs
)
2908 if (!Fast486StackPop(State
, &NewSelector
))
2910 /* Exception occurred */
2914 /* Call the internal API */
2915 Fast486LoadSegment(State
, FAST486_REG_DS
, LOWORD(NewSelector
));
2918 FAST486_OPCODE_HANDLER(Fast486OpcodeDaa
)
2920 UCHAR Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
2921 BOOLEAN Carry
= State
->Flags
.Cf
;
2923 /* Clear the carry flag */
2924 State
->Flags
.Cf
= FALSE
;
2926 /* Check if the first BCD digit is invalid or there was a carry from it */
2927 if (((Value
& 0x0F) > 9) || State
->Flags
.Af
)
2930 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
+= 0x06;
2931 if (State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
< 0x06)
2933 /* A carry occurred */
2934 State
->Flags
.Cf
= TRUE
;
2937 /* Set the adjust flag */
2938 State
->Flags
.Af
= TRUE
;
2941 /* Check if the second BCD digit is invalid or there was a carry from it */
2942 if ((Value
> 0x99) || Carry
)
2945 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
+= 0x60;
2947 /* There was a carry */
2948 State
->Flags
.Cf
= TRUE
;
2951 Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
2953 /* Update the flags */
2954 State
->Flags
.Sf
= (Value
& SIGN_FLAG_BYTE
) != 0;
2955 State
->Flags
.Zf
= (Value
== 0);
2956 State
->Flags
.Pf
= Fast486CalculateParity(Value
);
2959 FAST486_OPCODE_HANDLER(Fast486OpcodeCmpSubByteModrm
)
2961 UCHAR FirstValue
, SecondValue
, Result
;
2962 FAST486_MOD_REG_RM ModRegRm
;
2963 BOOLEAN AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
2965 /* Make sure this is the right instruction */
2966 ASSERT((Opcode
& 0xED) == 0x28);
2968 TOGGLE_ADSIZE(AddressSize
);
2970 /* Get the operands */
2971 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
2973 /* Exception occurred */
2977 if (!Fast486ReadModrmByteOperands(State
,
2982 /* Exception occurred */
2986 /* Check if this is the instruction that writes to R/M */
2987 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
2989 /* Swap the order */
2990 SWAP(FirstValue
, SecondValue
);
2993 /* Calculate the result */
2994 Result
= FirstValue
- SecondValue
;
2996 /* Update the flags */
2997 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
2998 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) != (SecondValue
& SIGN_FLAG_BYTE
))
2999 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
3000 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3001 State
->Flags
.Zf
= (Result
== 0);
3002 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
3003 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3005 /* Check if this is not a CMP */
3006 if (!(Opcode
& 0x10))
3008 /* Write back the result */
3009 Fast486WriteModrmByteOperands(State
,
3011 Opcode
& FAST486_OPCODE_WRITE_REG
,
3016 FAST486_OPCODE_HANDLER(Fast486OpcodeCmpSubModrm
)
3018 FAST486_MOD_REG_RM ModRegRm
;
3019 BOOLEAN OperandSize
, AddressSize
;
3021 /* Make sure this is the right instruction */
3022 ASSERT((Opcode
& 0xED) == 0x29);
3024 OperandSize
= AddressSize
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
3026 TOGGLE_ADSIZE(AddressSize
);
3027 TOGGLE_OPSIZE(OperandSize
);
3029 /* Get the operands */
3030 if (!Fast486ParseModRegRm(State
, AddressSize
, &ModRegRm
))
3032 /* Exception occurred */
3036 /* Check the operand size */
3039 ULONG FirstValue
, SecondValue
, Result
;
3041 if (!Fast486ReadModrmDwordOperands(State
,
3046 /* Exception occurred */
3050 /* Check if this is the instruction that writes to R/M */
3051 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
3053 /* Swap the order */
3054 SWAP(FirstValue
, SecondValue
);
3057 /* Calculate the result */
3058 Result
= FirstValue
- SecondValue
;
3060 /* Update the flags */
3061 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
3062 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) != (SecondValue
& SIGN_FLAG_LONG
))
3063 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
3064 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3065 State
->Flags
.Zf
= (Result
== 0);
3066 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
3067 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3069 /* Check if this is not a CMP */
3070 if (!(Opcode
& 0x10))
3072 /* Write back the result */
3073 Fast486WriteModrmDwordOperands(State
,
3075 Opcode
& FAST486_OPCODE_WRITE_REG
,
3081 USHORT FirstValue
, SecondValue
, Result
;
3083 if (!Fast486ReadModrmWordOperands(State
,
3088 /* Exception occurred */
3092 /* Check if this is the instruction that writes to R/M */
3093 if (!(Opcode
& FAST486_OPCODE_WRITE_REG
))
3095 /* Swap the order */
3096 SWAP(FirstValue
, SecondValue
);
3099 /* Calculate the result */
3100 Result
= FirstValue
- SecondValue
;
3102 /* Update the flags */
3103 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
3104 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) != (SecondValue
& SIGN_FLAG_WORD
))
3105 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
3106 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3107 State
->Flags
.Zf
= (Result
== 0);
3108 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
3109 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3111 /* Check if this is not a CMP */
3112 if (!(Opcode
& 0x10))
3114 /* Write back the result */
3115 Fast486WriteModrmWordOperands(State
,
3117 Opcode
& FAST486_OPCODE_WRITE_REG
,
3123 FAST486_OPCODE_HANDLER(Fast486OpcodeCmpSubAl
)
3125 UCHAR FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
3126 UCHAR SecondValue
, Result
;
3128 /* Make sure this is the right instruction */
3129 ASSERT((Opcode
& 0xEF) == 0x2C);
3131 if (State
->PrefixFlags
)
3133 /* This opcode doesn't take any prefixes */
3134 Fast486Exception(State
, FAST486_EXCEPTION_UD
);
3138 if (!Fast486FetchByte(State
, &SecondValue
))
3140 /* Exception occurred */
3144 /* Calculate the result */
3145 Result
= FirstValue
- SecondValue
;
3147 /* Update the flags */
3148 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
3149 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_BYTE
) != (SecondValue
& SIGN_FLAG_BYTE
))
3150 && ((FirstValue
& SIGN_FLAG_BYTE
) != (Result
& SIGN_FLAG_BYTE
));
3151 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3152 State
->Flags
.Zf
= (Result
== 0);
3153 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_BYTE
) != 0);
3154 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3156 /* Check if this is not a CMP */
3157 if (!(Opcode
& 0x10))
3159 /* Write back the result */
3160 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
= Result
;
3164 FAST486_OPCODE_HANDLER(Fast486OpcodeCmpSubEax
)
3166 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
3168 /* Make sure this is the right instruction */
3169 ASSERT((Opcode
& 0xEF) == 0x2D);
3172 TOGGLE_OPSIZE(Size
);
3176 ULONG FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].Long
;
3177 ULONG SecondValue
, Result
;
3179 if (!Fast486FetchDword(State
, &SecondValue
))
3181 /* Exception occurred */
3185 /* Calculate the result */
3186 Result
= FirstValue
- SecondValue
;
3188 /* Update the flags */
3189 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
3190 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_LONG
) != (SecondValue
& SIGN_FLAG_LONG
))
3191 && ((FirstValue
& SIGN_FLAG_LONG
) != (Result
& SIGN_FLAG_LONG
));
3192 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3193 State
->Flags
.Zf
= (Result
== 0);
3194 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_LONG
) != 0);
3195 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3197 /* Check if this is not a CMP */
3198 if (!(Opcode
& 0x10))
3200 /* Write back the result */
3201 State
->GeneralRegs
[FAST486_REG_EAX
].Long
= Result
;
3206 USHORT FirstValue
= State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
;
3207 USHORT SecondValue
, Result
;
3209 if (!Fast486FetchWord(State
, &SecondValue
))
3211 /* Exception occurred */
3215 /* Calculate the result */
3216 Result
= FirstValue
- SecondValue
;
3218 /* Update the flags */
3219 State
->Flags
.Cf
= (FirstValue
< SecondValue
);
3220 State
->Flags
.Of
= ((FirstValue
& SIGN_FLAG_WORD
) != (SecondValue
& SIGN_FLAG_WORD
))
3221 && ((FirstValue
& SIGN_FLAG_WORD
) != (Result
& SIGN_FLAG_WORD
));
3222 State
->Flags
.Af
= (FirstValue
& 0x0F) < (SecondValue
& 0x0F);
3223 State
->Flags
.Zf
= (Result
== 0);
3224 State
->Flags
.Sf
= ((Result
& SIGN_FLAG_WORD
) != 0);
3225 State
->Flags
.Pf
= Fast486CalculateParity(Result
);
3227 /* Check if this is not a CMP */
3228 if (!(Opcode
& 0x10))
3230 /* Write back the result */
3231 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
= Result
;
3236 FAST486_OPCODE_HANDLER(Fast486OpcodeDas
)
3238 UCHAR Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
3239 BOOLEAN Carry
= State
->Flags
.Cf
;
3241 /* Clear the carry flag */
3242 State
->Flags
.Cf
= FALSE
;
3244 /* Check if the first BCD digit is invalid or there was a borrow */
3245 if (((Value
& 0x0F) > 9) || State
->Flags
.Af
)
3248 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
-= 0x06;
3249 if (State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
> 0xFB)
3251 /* A borrow occurred */
3252 State
->Flags
.Cf
= TRUE
;
3255 /* Set the adjust flag */
3256 State
->Flags
.Af
= TRUE
;
3259 /* Check if the second BCD digit is invalid or there was a borrow */
3260 if ((Value
> 0x99) || Carry
)
3263 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
-= 0x60;
3265 /* There was a borrow */
3266 State
->Flags
.Cf
= TRUE
;
3269 Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
3271 /* Update the flags */
3272 State
->Flags
.Sf
= (Value
& SIGN_FLAG_BYTE
) != 0;
3273 State
->Flags
.Zf
= (Value
== 0);
3274 State
->Flags
.Pf
= Fast486CalculateParity(Value
);
3277 FAST486_OPCODE_HANDLER(Fast486OpcodeAaa
)
3279 UCHAR Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
3282 * Check if the value in AL is not a valid BCD digit,
3283 * or there was a carry from the lowest 4 bits of AL
3285 if (((Value
& 0x0F) > 9) || State
->Flags
.Af
)
3288 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
+= 0x06;
3289 State
->GeneralRegs
[FAST486_REG_EAX
].HighByte
++;
3292 State
->Flags
.Cf
= State
->Flags
.Af
= TRUE
;
3296 /* Clear CF and AF */
3297 State
->Flags
.Cf
= State
->Flags
.Af
= FALSE
;
3300 /* Keep only the lowest 4 bits of AL */
3301 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
&= 0x0F;
3304 FAST486_OPCODE_HANDLER(Fast486OpcodeAas
)
3306 UCHAR Value
= State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
;
3309 * Check if the value in AL is not a valid BCD digit,
3310 * or there was a borrow from the lowest 4 bits of AL
3312 if (((Value
& 0x0F) > 9) || State
->Flags
.Af
)
3315 State
->GeneralRegs
[FAST486_REG_EAX
].LowWord
-= 0x06;
3316 State
->GeneralRegs
[FAST486_REG_EAX
].HighByte
--;
3319 State
->Flags
.Cf
= State
->Flags
.Af
= TRUE
;
3323 /* Clear CF and AF */
3324 State
->Flags
.Cf
= State
->Flags
.Af
= FALSE
;
3327 /* Keep only the lowest 4 bits of AL */
3328 State
->GeneralRegs
[FAST486_REG_EAX
].LowByte
&= 0x0F;
3331 FAST486_OPCODE_HANDLER(Fast486OpcodePushAll
)
3334 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
3335 FAST486_REG SavedEsp
= State
->GeneralRegs
[FAST486_REG_ESP
];
3337 /* Make sure this is the right instruction */
3338 ASSERT(Opcode
== 0x60);
3340 TOGGLE_OPSIZE(Size
);
3343 /* Push all the registers in order */
3344 for (i
= 0; i
< FAST486_NUM_GEN_REGS
; i
++)
3346 if (i
== FAST486_REG_ESP
)
3348 /* Use the saved ESP instead */
3349 if (!Fast486StackPush(State
, Size
? SavedEsp
.Long
: SavedEsp
.LowWord
))
3351 /* Exception occurred */
3357 /* Push the register */
3358 if (!Fast486StackPush(State
, Size
? State
->GeneralRegs
[i
].Long
3359 : State
->GeneralRegs
[i
].LowWord
))
3361 /* Exception occurred */
3368 FAST486_OPCODE_HANDLER(Fast486OpcodePopAll
)
3371 BOOLEAN Size
= State
->SegmentRegs
[FAST486_REG_CS
].Size
;
3374 /* Make sure this is the right instruction */
3375 ASSERT(Opcode
== 0x61);
3377 TOGGLE_OPSIZE(Size
);
3380 /* Pop all the registers in reverse order */
3381 for (i
= FAST486_NUM_GEN_REGS
- 1; i
>= 0; i
--)
3384 if (!Fast486StackPop(State
, &Value
))