-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_OPCODES.INC
542 lines (486 loc) · 14.6 KB
/
_OPCODES.INC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
Function testCPUOpcodes:longint;
begin
{
Exercises almost every single 8086 opcode, in roughly opcode order.
Exceptions are anything that would interrupt the timing of the code, any non-
8086 instruction, and all floating-point instructions. (This code must run on
all processors.) Instructions explicitly not exercised are:
Instructions skipped Because:
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~
HLT It would delay by a random amount
IN, OUT Port accesses vary highly from machine
to machine, and are not really what this
benchmark was built to test
AAD/AAM with custom operand Intel only
WAIT, ESC These require optional/external hardware
LOCK Kills the OS on multi-CPU machines (verified!)
INT3 (trap to debugger) Not used during normal program execution
INTO (int4, overflow handler) Not used during normal program execution
SALC (set AL on carry) Undocumented (D6h); Intel only
POP CS Undocumented and only works on Intel 808x
POP SP PUSH SP is broken on 808x so we avoid POP SP
}
asm
pushf; cli; call _PZTimerOn; popf
mov ax,foow
mov dx,$5678
(*lea bx,scratchspace {init some vars}*)
{Start exercising opcodes in roughly order of encoding.
NOTE: All opcode encodings are not represented with these sections;
however, all mod r/m sections are represented in the effective addressing
tests in the _ea.bod file. (For MOV only, anyway.)}
add ax,foow {accum, imm16}
add dx,foow {reg, imm16}
add al,foob {accum, imm8}
add dl,foob {reg, imm8}
add [w],ax {mem16, accum}
add [w],dx {mem16, reg}
add [b],al {mem8, accum}
add [b],dl {mem8, reg}
add al,[b] {accum, mem8}
add dl,[b] {reg, mem8}
add ax,[w] {accum, mem16}
add dx,[w] {reg, mem16}
add ax,dx {accum, reg}
add dx,ax {reg, accum}
add al,dl {accum, reg}
add dl,al {reg, accum}
push es
pop es
or ax,foow {accum, imm16}
or dx,foow {reg, imm16}
or al,foob {accum, imm8}
or dl,foob {reg, imm8}
or w,ax {mem16, accum}
or w,dx {mem16, reg}
or b,al {mem8, accum}
or b,dl {mem8, reg}
or al,b {accum, mem8}
or dl,b {reg, mem8}
or ax,w {accum, mem16}
or dx,w {reg, mem16}
or ax,dx {accum, reg}
or dx,ax {reg, accum}
or al,dl {accum, reg}
or dl,al {reg, accum}
push cs
pop es {POP CS is an undocumented opcode that actually works
on 8088/8086 but we're not going to use it -- it means
something completely different on later processors}
adc ax,foow {accum, imm16}
adc dx,foow {reg, imm16}
adc al,foob {accum, imm8}
adc dl,foob {reg, imm8}
adc w,ax {mem16, accum}
adc w,dx {mem16, reg}
adc b,al {mem8, accum}
adc b,dl {mem8, reg}
adc al,b {accum, mem8}
adc dl,b {reg, mem8}
adc ax,w {accum, mem16}
adc dx,w {reg, mem16}
adc ax,dx {accum, reg}
adc dx,ax {reg, accum}
adc al,dl {accum, reg}
adc dl,al {reg, accum}
push ax
mov ax,sp
push ss
pop ss {halts all interrupts including NMI for next instr.}
mov sp,ax
pop ax
sbb ax,foow {accum, imm16}
sbb dx,foow {reg, imm16}
sbb al,foob {accum, imm8}
sbb dl,foob {reg, imm8}
sbb w,ax {mem16, accum}
sbb w,dx {mem16, reg}
sbb b,al {mem8, accum}
sbb b,dl {mem8, reg}
sbb al,b {accum, mem8}
sbb dl,b {reg, mem8}
sbb ax,w {accum, mem16}
sbb dx,w {reg, mem16}
sbb ax,dx {accum, reg}
sbb dx,ax {reg, accum}
sbb al,dl {accum, reg}
sbb dl,al {reg, accum}
push ds
pop ds
and ax,foow {accum, imm16}
and dx,foow {reg, imm16}
and al,foob {accum, imm8}
and dl,foob {reg, imm8}
and w,ax {mem16, accum}
and w,dx {mem16, reg}
and b,al {mem8, accum}
and b,dl {mem8, reg}
and al,b {accum, mem8}
and dl,b {reg, mem8}
and ax,w {accum, mem16}
and dx,w {reg, mem16}
and ax,dx {accum, reg}
and dx,ax {reg, accum}
and al,dl {accum, reg}
and dl,al {reg, accum}
seges mov ax,[bx] {segment override ES is opcode 26h}
daa
sub ax,foow {accum, imm16}
sub dx,foow {reg, imm16}
sub al,foob {accum, imm8}
sub dl,foob {reg, imm8}
sub w,ax {mem16, accum}
sub w,dx {mem16, reg}
sub b,al {mem8, accum}
sub b,dl {mem8, reg}
sub al,b {accum, mem8}
sub dl,b {reg, mem8}
sub ax,w {accum, mem16}
sub dx,w {reg, mem16}
sub ax,dx {accum, reg}
sub dx,ax {reg, accum}
sub al,dl {accum, reg}
sub dl,al {reg, accum}
segcs mov ax,[bx] {segment override CS is opcode 2Eh}
das
xor ax,foow {accum, imm16}
xor dx,foow {reg, imm16}
xor al,foob {accum, imm8}
xor dl,foob {reg, imm8}
xor w,ax {mem16, accum}
xor w,dx {mem16, reg}
xor b,al {mem8, accum}
xor b,dl {mem8, reg}
xor al,b {accum, mem8}
xor dl,b {reg, mem8}
xor ax,w {accum, mem16}
xor dx,w {reg, mem16}
xor ax,dx {accum, reg}
xor dx,ax {reg, accum}
xor al,dl {accum, reg}
xor dl,al {reg, accum}
segss mov ax,[bx] {segment override SS is opcode 36h}
aaa
cmp ax,foow {accum, imm16}
cmp dx,foow {reg, imm16}
cmp al,foob {accum, imm8}
cmp dl,foob {reg, imm8}
cmp w,ax {mem16, accum}
cmp w,dx {mem16, reg}
cmp b,al {mem8, accum}
cmp b,dl {mem8, reg}
cmp al,b {accum, mem8}
cmp dl,b {reg, mem8}
cmp ax,w {accum, mem16}
cmp dx,w {reg, mem16}
cmp ax,dx {accum, reg}
cmp dx,ax {reg, accum}
cmp al,dl {accum, reg}
cmp dl,al {reg, accum}
segds lodsw {segment override DS is opcode 3Eh}
aas
inc ax
inc cx
inc dx
inc bx
inc si
inc di
dec ax
dec cx
dec dx
dec bx
dec si
dec di
{ensure we can do this next part without borking the machine}
pushf
cli
inc sp
inc bp
dec sp
dec bp
popf
push ax
push cx
push dx
push bx
push bp
push si
push di
pop di
pop si
pop bp
pop bx
pop dx
pop cx
pop ax
{Jcc and JMP tests -- timings are identical for most forms so we will
only test a few. jcxz is the only one with different timings so it is
explicitly tested as well.}
xor cx,cx {zero out cx}
dec cx {cx := -1}
stc {set carry flag}
jc @L1 {jump if carry - yes}
nop
@L1:
clc {clear carry flag}
jc @L1 {jump if carry - no}
inc cx
jcxz @L1 {jump if cx=0 - yes 1st pass, no 2nd}
sub cx,2
jmp @L3
@L2:
inc cx
clc
@L3:
jbe @L2 {jump if cf=1 or zf=1}
mov cx,2
@loopfun:
nop
loop @loopfun
@endofJMPtests:
{test has optimized forms for accumulator}
test ax,foow {accum, imm16}
test dx,foow {reg, imm16}
test al,foob {accum, imm8}
test dl,foob {reg, imm8}
test w,ax {mem16, accum}
test w,dx {mem16, reg}
test b,al {mem8, accum}
test b,dl {mem8, reg}
test al,b {accum, mem8}
test dl,b {reg, mem8}
test ax,w {accum, mem16}
test dx,w {reg, mem16}
test ax,dx {accum, reg}
test dx,ax {reg, accum}
test al,dl {accum, reg}
test dl,al {reg, accum}
lea ax,[w]
{8e mov segreg,rmw}
mov es,[bx+si+1234h]
lea bx,scratchspace
nop
xchg w,ax {mem16, accum}
xchg w,dx {mem16, reg}
xchg b,al {mem8, accum}
xchg b,dl {mem8, reg}
xchg al,b {accum, mem8}
xchg dl,b {reg, mem8}
xchg ax,w {accum, mem16}
xchg dx,w {reg, mem16}
xchg ax,dx {accum, reg}
xchg dx,ax {reg, accum}
xchg al,dl {accum, reg}
xchg dl,al {reg, accum}
cbw
{both near and far calls explicitly included so they can be measured}
call doNothingNear
call doNothingFar
pushf
cli
lahf
sahf
popf
push ds
pop es
mov di,si {es:di should now equal ds:si}
movsb
movsw
movsb
movsw
lodsb
stosb
lodsw
stosw
lodsb
stosb
lodsw
stosw {tests both aligned and unaligned moves}
cmpsb
cmpsw
cmpsb
cmpsw {aligned and unaligned}
scasb
scasw
scasb
scasw {aligned and unaligned}
mov al,foob
mov cl,foob
mov dl,foob
mov bl,foob
mov ah,foob
mov ch,foob
mov dh,foob
mov bh,foob
mov ax,foow
mov cx,foow
mov dx,foow
mov bx,foow
{A lot of hassle just to test the mov encodings of sp and bp :-P }
pushf
cli
mov dx,sp
mov sp,foow
mov sp,dx
mov dx,bp
mov bp,foow
mov bp,dx
popf
mov si,foow
mov di,foow
les bx,[foow]
pushf
cli
push ds
lds si,[foow]
pop ds
popf
mov bx,$FFFF
rol bl,1
rol [b],1
ror bl,1
ror [b],1
rcl bl,1
rcl [b],1
rcr bl,1
rcr [b],1
shl bl,1
shl [b],1
shr bl,1
shr [b],1
sal bl,1
sal [b],1
sar bl,1
sar [b],1
rol bx,1
rol [w],1
ror bx,1
ror [w],1
rcl bx,1
rcl [w],1
rcr bx,1
rcr [w],1
shl bx,1
shl [w],1
shr bx,1
shr [w],1
sal bx,1
sal [w],1
sar bx,1
sar [w],1
{Nybble work is common, so let's choose 4. Higher values could be used,
but can be optimized out (ie. rol al,5 = ror al,3) so we'll avoid them.}
mov cl,4
rol bl,cl
rol [b],cl
ror bl,cl
ror [b],cl
rcl bl,cl
rcl [b],cl
rcr bl,cl
rcr [b],cl
shl bl,cl
shl [b],cl
shr bl,cl
shr [b],cl
sal bl,cl
sal [b],cl
sar bl,cl
sar [b],cl
rol bx,cl
rol [w],cl
ror bx,cl
ror [w],cl
rcl bx,cl
rcl [w],cl
rcr bx,cl
rcr [w],cl
shl bx,cl
shl [w],cl
shr bx,cl
shr [w],cl
sal bx,cl
sal [w],cl
sar bx,cl
sar [w],cl
aad
aam
xlat
mov ax,foow
mov dx,$5678 {get non-zeros in registers again}
cmc
not dl
not ax
neg dl
neg ax
{mul/div tests. Values inspired by "PIT ticks to usec" conversion}
mov dx,8381
mul dx
mov bx,10000
div bx
imul dx
idiv bx
clc
stc
cli
sti
std
cld {reversed from opcode encoding to ensure we don't bork future moves}
{Call a BIOS do-nothing interrupt to test INT. Dummy interrupt in this case
is 1C, the user hook interrupt, which we haven't hooked so it should just do
an iret. If a TSR is loaded that DOES hook it, it's going to skew things, so
remember to remind the user to test on a clean boot if possible.}
int 1Ch
(* old do-nothing interrupt test was READ CURSOR POSITION
{returns data from BIOS DATA AREA, shouldn't actually touch hardware}
push ax
push bx
push cx
push dx
mov ah,3
mov bh,0
int 10h
pop dx
pop cx
pop bx
pop ax
*)
pushf
call doNothingInterrupt; {...to force an IRET in memory to be measured.
Previous test also calls an IRET but the IRET is usually located in the BIOS
ROM if 1c hasn't been hooked.}
(*this completely crashed a virtual session -- it turns out that,
unless you're writing a multi-CPU operating system, you shouldn't
use LOCK indiscriminantly :-D
lock xor dx,foow {LOCK prefix takes 2 cycles on 8086}*)
{Although the effective addressing test exercises this massively,
we should do a little something here.}
mov ax,foow {accum, imm16}
mov dx,foow {reg, imm16}
mov al,foob {accum, imm8}
mov dl,foob {reg, imm8}
mov w,ax {mem16, accum}
mov w,dx {mem16, reg}
mov b,al {mem8, accum}
mov b,dl {mem8, reg}
mov al,b {accum, mem8}
mov dl,b {reg, mem8}
mov ax,w {accum, mem16}
mov dx,w {reg, mem16}
mov ax,dx {accum, reg}
mov dx,ax {reg, accum}
mov al,dl {accum, reg}
mov dl,al {reg, accum}
{don't forget some segment overrides:}
mov dx,cs:[bx]
mov dx,ss:[bp]
mov dx,es:[si]
mov dx,ds:[di]
lea bx,scratchspace
{stupid pascal in-line assembler won't recognize push rmw!}
{push [bx]} DB $FF,$37
{pop [bx]} DB $8F,$07
pushf; cli; call _PZTimerOff; popf
end;
testCPUOpcodes:=_PZTimerCount;
end;