-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
arith.rs
1202 lines (1185 loc) · 37 KB
/
arith.rs
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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use cpu::cpu::*;
use cpu::global_pointers::*;
use cpu::memory::{read8, write8};
use cpu::misc_instr::{getaf, getcf, getzf};
fn int_log2(x: i32) -> i32 { 31 - x.leading_zeros() as i32 }
unsafe fn add(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let res = dest_operand + source_operand;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL;
return res;
}
unsafe fn adc(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let cf = getcf() as i32;
let res = dest_operand + source_operand + cf;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL & !FLAG_CARRY & !FLAG_ADJUST & !FLAG_OVERFLOW;
*flags = *flags & !FLAG_CARRY & !FLAG_ADJUST & !FLAG_OVERFLOW
| (dest_operand ^ ((dest_operand ^ source_operand) & (source_operand ^ res))) >> op_size
& FLAG_CARRY
| (dest_operand ^ source_operand ^ res) & FLAG_ADJUST
| ((source_operand ^ res) & (dest_operand ^ res)) >> op_size << 11 & FLAG_OVERFLOW;
return res;
}
unsafe fn sub(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let res = dest_operand - source_operand;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL | FLAG_SUB;
return res;
}
unsafe fn sbb(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let cf = getcf() as i32;
let res = dest_operand - source_operand - cf;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL & !FLAG_CARRY & !FLAG_ADJUST & !FLAG_OVERFLOW | FLAG_SUB;
*flags = *flags & !FLAG_CARRY & !FLAG_ADJUST & !FLAG_OVERFLOW
| (res ^ ((res ^ source_operand) & (source_operand ^ dest_operand))) >> op_size
& FLAG_CARRY
| (dest_operand ^ source_operand ^ res) & FLAG_ADJUST
| ((source_operand ^ dest_operand) & (res ^ dest_operand)) >> op_size << 11 & FLAG_OVERFLOW;
return res;
}
pub unsafe fn add8(x: i32, y: i32) -> i32 {
dbg_assert!(x >= 0 && x < 0x100);
dbg_assert!(y >= 0 && y < 0x100);
return add(x, y, OPSIZE_8);
}
#[no_mangle]
pub unsafe fn add16(x: i32, y: i32) -> i32 {
dbg_assert!(x >= 0 && x < 0x10000);
dbg_assert!(y >= 0 && y < 0x10000);
return add(x, y, OPSIZE_16);
}
pub unsafe fn add32(x: i32, y: i32) -> i32 { return add(x, y, OPSIZE_32); }
pub unsafe fn sub8(x: i32, y: i32) -> i32 { return sub(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn sub16(x: i32, y: i32) -> i32 { return sub(x, y, OPSIZE_16); }
pub unsafe fn sub32(x: i32, y: i32) -> i32 { return sub(x, y, OPSIZE_32); }
#[no_mangle]
pub unsafe fn adc8(x: i32, y: i32) -> i32 { return adc(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn adc16(x: i32, y: i32) -> i32 { return adc(x, y, OPSIZE_16); }
pub unsafe fn adc32(x: i32, y: i32) -> i32 { return adc(x, y, OPSIZE_32); }
#[no_mangle]
pub unsafe fn sbb8(x: i32, y: i32) -> i32 { return sbb(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn sbb16(x: i32, y: i32) -> i32 { return sbb(x, y, OPSIZE_16); }
pub unsafe fn sbb32(x: i32, y: i32) -> i32 { return sbb(x, y, OPSIZE_32); }
pub unsafe fn cmp8(x: i32, y: i32) {
dbg_assert!(x >= 0 && x < 0x100);
dbg_assert!(y >= 0 && y < 0x100);
sub(x, y, OPSIZE_8);
}
pub unsafe fn cmp16(x: i32, y: i32) {
dbg_assert!(x >= 0 && x < 0x10000);
dbg_assert!(y >= 0 && y < 0x10000);
sub(x, y, OPSIZE_16);
}
pub unsafe fn cmp32(x: i32, y: i32) { sub(x, y, OPSIZE_32); }
unsafe fn inc(dest_operand: i32, op_size: i32) -> i32 {
*flags = *flags & !1 | getcf() as i32;
let res = dest_operand + 1;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL & !1;
return res;
}
unsafe fn dec(dest_operand: i32, op_size: i32) -> i32 {
*flags = *flags & !1 | getcf() as i32;
let res = dest_operand - 1;
*last_op1 = dest_operand;
*last_result = res & (2 << op_size) - 1;
*last_op_size = op_size;
*flags_changed = FLAGS_ALL & !1 | FLAG_SUB;
return res;
}
#[no_mangle]
pub unsafe fn inc8(x: i32) -> i32 { return inc(x, OPSIZE_8); }
pub unsafe fn inc16(x: i32) -> i32 { return inc(x, OPSIZE_16); }
pub unsafe fn inc32(x: i32) -> i32 { return inc(x, OPSIZE_32); }
#[no_mangle]
pub unsafe fn dec8(x: i32) -> i32 { return dec(x, OPSIZE_8); }
pub unsafe fn dec16(x: i32) -> i32 { return dec(x, OPSIZE_16); }
pub unsafe fn dec32(x: i32) -> i32 { return dec(x, OPSIZE_32); }
unsafe fn neg(dest_operand: i32, op_size: i32) -> i32 { sub(0, dest_operand, op_size) }
#[no_mangle]
pub unsafe fn not8(x: i32) -> i32 { return !x; }
#[no_mangle]
pub unsafe fn neg8(x: i32) -> i32 { return neg(x, OPSIZE_8); }
#[no_mangle]
pub unsafe fn neg16(x: i32) -> i32 { return neg(x, OPSIZE_16); }
pub unsafe fn neg32(x: i32) -> i32 { return neg(x, OPSIZE_32); }
#[no_mangle]
pub unsafe fn mul8(source_operand: i32) {
let result = source_operand * read_reg8(AL);
write_reg16(AX, result);
*last_result = result & 255;
*last_op_size = OPSIZE_8;
if result < 256 {
*flags &= !1 & !FLAG_OVERFLOW
}
else {
*flags |= 1 | FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn imul8(source_operand: i32) {
let result = source_operand * (read_reg8(AL) << 24 >> 24);
write_reg16(AX, result);
*last_result = result & 255;
*last_op_size = OPSIZE_8;
if result > 127 || result < -128 {
*flags |= 1 | FLAG_OVERFLOW
}
else {
*flags &= !1 & !FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn mul16(source_operand: u32) {
let result = source_operand * read_reg16(AX) as u32;
let high_result = result >> 16;
write_reg16(AX, result as i32);
write_reg16(DX, high_result as i32);
*last_result = (result & 0xFFFF) as i32;
*last_op_size = OPSIZE_16;
if high_result == 0 {
*flags &= !1 & !FLAG_OVERFLOW
}
else {
*flags |= 1 | FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn imul16(source_operand: i32) {
let result = source_operand * (read_reg16(AX) << 16 >> 16);
write_reg16(AX, result);
write_reg16(DX, result >> 16);
*last_result = result & 0xFFFF;
*last_op_size = OPSIZE_16;
if result > 32767 || result < -32768 {
*flags |= 1 | FLAG_OVERFLOW
}
else {
*flags &= !1 & !FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn imul_reg16(mut operand1: i32, mut operand2: i32) -> i32 {
operand1 = operand1 << 16 >> 16;
operand2 = operand2 << 16 >> 16;
let result = operand1 * operand2;
*last_result = result & 0xFFFF;
*last_op_size = OPSIZE_16;
if result > 32767 || result < -32768 {
*flags |= 1 | FLAG_OVERFLOW
}
else {
*flags &= !1 & !FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
return result;
}
#[no_mangle]
pub unsafe fn mul32(source_operand: i32) {
let dest_operand = read_reg32(EAX);
let result = (dest_operand as u32 as u64) * (source_operand as u32 as u64);
let result_low = result as i32;
let result_high = (result >> 32) as i32;
write_reg32(EAX, result_low);
write_reg32(EDX, result_high);
*last_result = result_low;
*last_op_size = OPSIZE_32;
if result_high == 0 {
*flags &= !1 & !FLAG_OVERFLOW
}
else {
*flags |= 1 | FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
pub unsafe fn imul32(source_operand: i32) {
let dest_operand = read_reg32(EAX);
let result = dest_operand as i64 * source_operand as i64;
let result_low = result as i32;
let result_high = (result >> 32) as i32;
write_reg32(EAX, result_low);
write_reg32(EDX, result_high);
*last_result = result_low;
*last_op_size = OPSIZE_32;
if result_high == result_low >> 31 {
*flags &= !1 & !FLAG_OVERFLOW
}
else {
*flags |= 1 | FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
}
pub unsafe fn imul_reg32(operand1: i32, operand2: i32) -> i32 {
let result = operand1 as i64 * operand2 as i64;
let result_low = result as i32;
let result_high = (result >> 32) as i32;
*last_result = result_low;
*last_op_size = OPSIZE_32;
if result_high == result_low >> 31 {
*flags &= !1 & !FLAG_OVERFLOW
}
else {
*flags |= 1 | FLAG_OVERFLOW
}
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
return result_low;
}
#[no_mangle]
pub unsafe fn xadd8(source_operand: i32, reg: i32) -> i32 {
let tmp = read_reg8(reg);
write_reg8(reg, source_operand);
return add(source_operand, tmp, OPSIZE_8);
}
#[no_mangle]
pub unsafe fn xadd16(source_operand: i32, reg: i32) -> i32 {
let tmp = read_reg16(reg);
write_reg16(reg, source_operand);
return add(source_operand, tmp, OPSIZE_16);
}
pub unsafe fn xadd32(source_operand: i32, reg: i32) -> i32 {
let tmp = read_reg32(reg);
write_reg32(reg, source_operand);
return add(source_operand, tmp, OPSIZE_32);
}
#[no_mangle]
pub unsafe fn cmpxchg8(data: i32, r: i32) -> i32 {
cmp8(read_reg8(AL), data);
if getzf() {
read_reg8(r)
}
else {
write_reg8(AL, data);
data
}
}
#[no_mangle]
pub unsafe fn cmpxchg16(data: i32, r: i32) -> i32 {
cmp16(read_reg16(AX), data);
if getzf() {
read_reg16(r)
}
else {
write_reg16(AX, data);
data
}
}
pub unsafe fn cmpxchg32(data: i32, r: i32) -> i32 {
cmp32(read_reg32(EAX), data);
if getzf() {
read_reg32(r)
}
else {
write_reg32(EAX, data);
data
}
}
#[no_mangle]
pub unsafe fn bcd_daa() {
let old_al = read_reg8(AL);
let old_cf = getcf();
let old_af = getaf();
*flags &= !1 & !FLAG_ADJUST;
if old_al & 15 > 9 || old_af {
write_reg8(AL, read_reg8(AL) + 6);
*flags |= FLAG_ADJUST
}
if old_al > 153 || old_cf {
write_reg8(AL, read_reg8(AL) + 96);
*flags |= 1
}
*last_result = read_reg8(AL);
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_ADJUST & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn bcd_das() {
let old_al = read_reg8(AL);
let old_cf = getcf();
*flags &= !1;
if old_al & 15 > 9 || getaf() {
write_reg8(AL, read_reg8(AL) - 6);
*flags |= FLAG_ADJUST;
*flags = *flags & !1 | old_cf as i32 | (old_al < 6) as i32
}
else {
*flags &= !FLAG_ADJUST
}
if old_al > 153 || old_cf {
write_reg8(AL, read_reg8(AL) - 96);
*flags |= 1
}
*last_result = read_reg8(AL);
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_ADJUST & !FLAG_OVERFLOW;
}
#[no_mangle]
pub unsafe fn bcd_aad(imm8: i32) {
let result = read_reg8(AL) + read_reg8(AH) * imm8;
*last_result = result & 255;
write_reg16(AX, *last_result);
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_ADJUST & !FLAG_OVERFLOW;
*flags &= !1 & !FLAG_ADJUST & !FLAG_OVERFLOW;
if result > 0xFFFF {
*flags |= 1
};
}
#[no_mangle]
pub unsafe fn bcd_aam(imm8: i32) {
// ascii adjust after multiplication
if imm8 == 0 {
trigger_de();
}
else {
let temp = read_reg8(AL);
write_reg8(AH, temp as i32 / imm8);
write_reg8(AL, temp as i32 % imm8);
*last_result = read_reg8(AL);
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_ADJUST & !FLAG_OVERFLOW;
*flags &= !1 & !FLAG_ADJUST & !FLAG_OVERFLOW
};
}
#[no_mangle]
pub unsafe fn bcd_aaa() {
if read_reg8(AL) & 15 > 9 || getaf() {
write_reg16(AX, read_reg16(AX) + 6);
write_reg8(AH, read_reg8(AH) + 1);
*flags |= FLAG_ADJUST | 1
}
else {
*flags &= !FLAG_ADJUST & !1
}
write_reg8(AL, read_reg8(AL) & 15);
*flags_changed &= !FLAG_ADJUST & !1;
}
#[no_mangle]
pub unsafe fn bcd_aas() {
if read_reg8(AL) & 15 > 9 || getaf() {
write_reg16(AX, read_reg16(AX) - 6);
write_reg8(AH, read_reg8(AH) - 1);
*flags |= FLAG_ADJUST | 1
}
else {
*flags &= !FLAG_ADJUST & !1
}
write_reg8(AL, read_reg8(AL) & 15);
*flags_changed &= !FLAG_ADJUST & !1;
}
unsafe fn and(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let result = dest_operand & source_operand;
*last_result = result;
*last_op_size = op_size;
*flags &= !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
return result;
}
unsafe fn or(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let result = dest_operand | source_operand;
*last_result = result;
*last_op_size = op_size;
*flags &= !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
return result;
}
unsafe fn xor(dest_operand: i32, source_operand: i32, op_size: i32) -> i32 {
let result = dest_operand ^ source_operand;
*last_result = result;
*last_op_size = op_size;
*flags &= !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW & !FLAG_ADJUST;
return result;
}
pub unsafe fn and8(x: i32, y: i32) -> i32 { return and(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn and16(x: i32, y: i32) -> i32 { return and(x, y, OPSIZE_16); }
pub unsafe fn and32(x: i32, y: i32) -> i32 { return and(x, y, OPSIZE_32); }
pub unsafe fn test8(x: i32, y: i32) { and(x, y, OPSIZE_8); }
pub unsafe fn test16(x: i32, y: i32) { and(x, y, OPSIZE_16); }
pub unsafe fn test32(x: i32, y: i32) { and(x, y, OPSIZE_32); }
pub unsafe fn or8(x: i32, y: i32) -> i32 { return or(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn or16(x: i32, y: i32) -> i32 { return or(x, y, OPSIZE_16); }
pub unsafe fn or32(x: i32, y: i32) -> i32 { return or(x, y, OPSIZE_32); }
pub unsafe fn xor8(x: i32, y: i32) -> i32 { return xor(x, y, OPSIZE_8); }
#[no_mangle]
pub unsafe fn xor16(x: i32, y: i32) -> i32 { return xor(x, y, OPSIZE_16); }
pub unsafe fn xor32(x: i32, y: i32) -> i32 { return xor(x, y, OPSIZE_32); }
#[no_mangle]
pub unsafe fn rol8(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
count &= 7;
let result = dest_operand << count | dest_operand >> 8 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result & 1
| (result << 11 ^ result << 4) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rol16(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
count &= 15;
let result = dest_operand << count | dest_operand >> 16 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result & 1
| (result << 11 ^ result >> 4) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rol32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
let result = ((dest_operand << count) as u32 | dest_operand as u32 >> 32 - count) as i32;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result & 1
| (result << 11 ^ result >> 20) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcl8(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
count %= 9;
if 0 == count {
return dest_operand;
}
else {
let result =
dest_operand << count | (getcf() as i32) << count - 1 | dest_operand >> 9 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 8 & 1
| (result << 3 ^ result << 4) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcl16(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
count %= 17;
if 0 == count {
return dest_operand;
}
else {
let result =
dest_operand << count | (getcf() as i32) << count - 1 | dest_operand >> 17 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 16 & 1
| (result >> 5 ^ result >> 4) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcl32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
let mut result = dest_operand << count | (getcf() as i32) << count - 1;
if count > 1 {
result = (result as u32 | dest_operand as u32 >> 33 - count) as i32
}
*flags_changed &= !1 & !FLAG_OVERFLOW;
let b = (dest_operand as u32 >> 32 - count & 1) as i32;
*flags = (*flags & !1 & !FLAG_OVERFLOW | b) | (b << 11 ^ result >> 20) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn ror8(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
count &= 7;
let result = dest_operand >> count | dest_operand << 8 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 7 & 1
| (result << 4 ^ result << 5) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn ror16(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
count &= 15;
let result = dest_operand >> count | dest_operand << 16 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 15 & 1
| (result >> 4 ^ result >> 3) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn ror32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
let result = (dest_operand as u32 >> count | (dest_operand << 32 - count) as u32) as i32;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 31 & 1
| (result >> 20 ^ result >> 19) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcr8(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
count %= 9;
if 0 == count {
return dest_operand;
}
else {
let result =
dest_operand >> count | (getcf() as i32) << 8 - count | dest_operand << 9 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 8 & 1
| (result << 4 ^ result << 5) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcr16(dest_operand: i32, mut count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
count %= 17;
if 0 == count {
return dest_operand;
}
else {
let result =
dest_operand >> count | (getcf() as i32) << 16 - count | dest_operand << 17 - count;
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 16 & 1
| (result >> 4 ^ result >> 3) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn rcr32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if 0 == count {
return dest_operand;
}
else {
let mut result =
(dest_operand as u32 >> count | ((getcf() as i32) << 32 - count) as u32) as i32;
if count > 1 {
result |= dest_operand << 33 - count
}
*flags_changed &= !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| dest_operand >> count - 1 & 1
| (result >> 20 ^ result >> 19) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn div8(source_operand: u32) {
if source_operand == 0 {
trigger_de();
return;
}
let target_operand = read_reg16(AX) as u32;
let result = target_operand / source_operand;
if result >= 0x100 {
trigger_de();
return;
}
write_reg8(AL, result as i32);
write_reg8(AH, (target_operand % source_operand) as i32);
}
#[no_mangle]
pub unsafe fn idiv8(source_operand: i32) {
if source_operand == 0 {
trigger_de();
return;
}
let target_operand = read_reg16(AX) << 16 >> 16;
let result = target_operand / source_operand;
if result >= 0x80 || result < -0x80 {
trigger_de();
return;
}
write_reg8(AL, result);
write_reg8(AH, target_operand % source_operand);
}
#[no_mangle]
pub unsafe fn div16_without_fault(source_operand: u32) -> bool {
let target_operand = (read_reg16(AX) | read_reg16(DX) << 16) as u32;
let result = match target_operand.checked_div(source_operand) {
None => return false,
Some(r) => r,
};
if result >= 0x10000 {
return false;
}
write_reg16(AX, result as i32);
write_reg16(DX, (target_operand % source_operand) as i32);
return true;
}
pub unsafe fn div16(source_operand: u32) {
if !div16_without_fault(source_operand) {
trigger_de()
}
}
#[no_mangle]
pub unsafe fn idiv16_without_fault(source_operand: i32) -> bool {
let target_operand = read_reg16(AX) | read_reg16(DX) << 16;
let result = match target_operand.checked_div(source_operand) {
None => return false,
Some(r) => r,
};
if result >= 0x8000 || result < -0x8000 {
return false;
}
write_reg16(AX, result);
write_reg16(DX, (target_operand % source_operand) as i32);
return true;
}
pub unsafe fn idiv16(source_operand: i32) {
if !idiv16_without_fault(source_operand) {
trigger_de()
}
}
#[no_mangle]
pub unsafe fn div32_without_fault(source_operand: u32) -> bool {
let source_operand = source_operand as u64;
let target_low = read_reg32(EAX) as u32;
let target_high = read_reg32(EDX) as u32;
let target_operand = (target_high as u64) << 32 | target_low as u64;
let result = match target_operand.checked_div(source_operand) {
None => return false,
Some(r) => r,
};
if result > 0xFFFFFFFF {
return false;
}
let modulo = target_operand % source_operand;
write_reg32(EAX, result as i32);
write_reg32(EDX, modulo as i32);
return true;
}
pub unsafe fn div32(source_operand: u32) {
if !div32_without_fault(source_operand) {
trigger_de()
}
}
#[no_mangle]
pub unsafe fn idiv32_without_fault(source_operand: i32) -> bool {
let source_operand = source_operand as i64;
let target_low = read_reg32(EAX) as u32;
let target_high = read_reg32(EDX) as u32;
let target_operand = (target_high as i64) << 32 | target_low as i64;
let result = match target_operand.checked_div(source_operand) {
None => return false,
Some(r) => r,
};
if result < -0x80000000 || result > 0x7FFFFFFF {
return false;
}
let modulo = target_operand % source_operand;
write_reg32(EAX, result as i32);
write_reg32(EDX, modulo as i32);
return true;
}
pub unsafe fn idiv32(source_operand: i32) {
if !idiv32_without_fault(source_operand) {
trigger_de()
}
}
#[no_mangle]
pub unsafe fn shl8(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand << count;
*last_result = result;
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 8 & 1
| (result << 3 ^ result << 4) & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn shl16(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand << count;
*last_result = result;
*last_op_size = OPSIZE_16;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| result >> 16 & 1
| (result >> 5 ^ result >> 4) & FLAG_OVERFLOW;
return result;
};
}
pub unsafe fn shl32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand << count;
*last_result = result;
*last_op_size = OPSIZE_32;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
let b = dest_operand >> 32 - count & 1;
*flags = *flags & !1 & !FLAG_OVERFLOW | b | (b ^ result >> 31) << 11 & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn shr8(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand >> count;
*last_result = result;
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| dest_operand >> count - 1 & 1
| (dest_operand >> 7 & 1) << 11 & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn shr16(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand >> count;
*last_result = result;
*last_op_size = OPSIZE_16;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !1 & !FLAG_OVERFLOW
| dest_operand >> count - 1 & 1
| dest_operand >> 4 & FLAG_OVERFLOW;
return result;
};
}
pub unsafe fn shr32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = (dest_operand as u32 >> count) as i32;
*last_result = result;
*last_op_size = OPSIZE_32;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = (*flags & !1 & !FLAG_OVERFLOW)
| (dest_operand as u32 >> count - 1 & 1) as i32
| (dest_operand >> 20 & FLAG_OVERFLOW);
return result;
};
}
#[no_mangle]
pub unsafe fn sar8(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result;
if count < 8 {
result = dest_operand << 24 >> count + 24;
// of is zero
*flags = *flags & !1 & !FLAG_OVERFLOW | dest_operand >> count - 1 & 1
}
else {
result = dest_operand << 24 >> 31;
*flags = *flags & !1 & !FLAG_OVERFLOW | result & 1
}
*last_result = result;
*last_op_size = OPSIZE_8;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn sar16(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result;
if count < 16 {
result = dest_operand << 16 >> count + 16;
*flags = *flags & !1 & !FLAG_OVERFLOW | dest_operand >> count - 1 & 1
}
else {
result = dest_operand << 16 >> 31;
*flags = *flags & !1 & !FLAG_OVERFLOW | result & 1
}
*last_result = result;
*last_op_size = OPSIZE_16;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
return result;
};
}
pub unsafe fn sar32(dest_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = dest_operand >> count;
*last_result = result;
*last_op_size = OPSIZE_32;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = (*flags & !1 & !FLAG_OVERFLOW) | (dest_operand as u32 >> count - 1 & 1) as i32;
return result;
};
}
#[no_mangle]
pub unsafe fn shrd16(dest_operand: i32, source_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result;
if count <= 16 {
result = dest_operand >> count | source_operand << 16 - count;
*flags = *flags & !1 | dest_operand >> count - 1 & 1
}
else {
result = dest_operand << 32 - count | source_operand >> count - 16;
*flags = *flags & !1 | source_operand >> count - 17 & 1
}
*last_result = result;
*last_op_size = OPSIZE_16;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !FLAG_OVERFLOW | (result ^ dest_operand) >> 4 & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn shrd32(dest_operand: i32, source_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = (dest_operand as u32 >> count | (source_operand << 32 - count) as u32) as i32;
*last_result = result;
*last_op_size = OPSIZE_32;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = ((*flags & !1 & !FLAG_OVERFLOW) | (dest_operand as u32 >> count - 1 & 1) as i32)
| (result ^ dest_operand) >> 20 & FLAG_OVERFLOW;
return result;
};
}
#[no_mangle]
pub unsafe fn shld16(dest_operand: i32, source_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result;
if count <= 16 {
result = ((dest_operand << count) as u32 | source_operand as u32 >> 16 - count) as i32;
*flags = (*flags & !1) | (dest_operand as u32 >> 16 - count & 1) as i32;
}
else {
result = dest_operand >> 32 - count | source_operand << count - 16;
*flags = (*flags & !1) | (source_operand as u32 >> 32 - count & 1) as i32;
}
*last_result = result;
*last_op_size = OPSIZE_16;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = *flags & !FLAG_OVERFLOW | (*flags & 1 ^ result >> 15 & 1) << 11;
return result;
};
}
#[no_mangle]
pub unsafe fn shld32(dest_operand: i32, source_operand: i32, count: i32) -> i32 {
dbg_assert!(count >= 0 && count < 32);
if count == 0 {
return dest_operand;
}
else {
let result = ((dest_operand << count) as u32 | source_operand as u32 >> 32 - count) as i32;
*last_result = result;
*last_op_size = OPSIZE_32;
*flags_changed = FLAGS_ALL & !1 & !FLAG_OVERFLOW;
*flags = (*flags & !1) | (dest_operand as u32 >> 32 - count & 1) as i32;
if count == 1 {
*flags = *flags & !FLAG_OVERFLOW | (*flags & 1 ^ result >> 31 & 1) << 11
}
else {
*flags &= !FLAG_OVERFLOW
}
return result;
};
}
pub unsafe fn bt_reg(bit_base: i32, bit_offset: i32) {
*flags = *flags & !1 | bit_base >> bit_offset & 1;
*flags_changed &= !1;
}
pub unsafe fn btc_reg(bit_base: i32, bit_offset: i32) -> i32 {
*flags = *flags & !1 | bit_base >> bit_offset & 1;
*flags_changed &= !1;