aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/ix86/ix86.c
blob: d701e899bc841cbb6783bfc5936d0900cd416a86 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
/***************************************************************************
 *   Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team              *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA.           *
 ***************************************************************************/

/*
 * ix86 core v0.5.1
 *  Authors: linuzappz <linuzappz@pcsx.net>
 *           alexey silinov
 */

#include "ix86.h"

s8  *x86Ptr;
u8  *j8Ptr[32];
u32 *j32Ptr[32];

void x86Init() {
}

void x86SetPtr(char *ptr) {
	x86Ptr = ptr;
}

void x86Shutdown() {
}

void x86SetJ8(u8 *j8) {
	u32 jump = (x86Ptr - (s8*)j8) - 1;

	if (jump > 0x7f) printf("j8 greater than 0x7f!!\n");
	*j8 = (u8)jump;
}

void x86SetJ32(u32 *j32) {
	*j32 = (x86Ptr - (s8*)j32) - 4;
}

void x86Align(int bytes) {
	// fordward align
	x86Ptr = (s8*)(((u32)x86Ptr + bytes) & ~(bytes - 1));
}

#define SIB 4
#define DISP32 5

/* macros helpers */

#define ModRM(mod, rm, reg) \
	write8((mod << 6) | (rm << 3) | (reg));

#define SibSB(ss, rm, index) \
	write8((ss << 6) | (rm << 3) | (index));

#define SET8R(cc, to) { \
	write8(0x0F); write8(cc); \
	write8((0xC0) | (to)); }

#define J8Rel(cc, to) { \
	write8(cc); write8(to); return x86Ptr - 1; }

#define J32Rel(cc, to) { \
	write8(0x0F); write8(cc); write32(to); return (u32*)(x86Ptr - 4); }

#define CMOV32RtoR(cc, to, from) { \
	write8(0x0F); write8(cc); \
	ModRM(3, to, from); }

#define CMOV32MtoR(cc, to, from) { \
	write8(0x0F); write8(cc); \
	ModRM(0, to, DISP32); \
	write32(from); }

/********************/
/* IX86 intructions */
/********************/

// mov instructions

/* mov r32 to r32 */
void MOV32RtoR(int to, int from) {
	write8(0x89);
	ModRM(3, from, to);
}

/* mov r32 to m32 */
void MOV32RtoM(u32 to, int from) {
	write8(0x89);
	ModRM(0, from, DISP32);
	write32(to);
}

/* mov m32 to r32 */
void MOV32MtoR(int to, u32 from) {
	write8(0x8B);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* mov [r32] to r32 */
void MOV32RmtoR(int to, int from) {
	write8(0x8B);
	ModRM(0, to, from);
}

/* mov [r32][r32*scale] to r32 */
void MOV32RmStoR(int to, int from, int from2, int scale) {
	write8(0x8B);
	ModRM(0, to, 0x4);
	SibSB(scale, from2, from);
}

/* mov r32 to [r32] */
void MOV32RtoRm(int to, int from) {
	write8(0x89);
	ModRM(0, from, to);
}

/* mov r32 to [r32][r32*scale] */
void MOV32RtoRmS(int to, int to2, int scale, int from) {
	write8(0x89);
	ModRM(0, from, 0x4);
	SibSB(scale, to2, to);
}

/* mov imm32 to r32 */
void MOV32ItoR(int to, u32 from) {
	write8(0xB8 | to); 
	write32(from);
}

/* mov imm32 to m32 */
void MOV32ItoM(u32 to, u32 from) {
	write8(0xC7);
	ModRM(0, 0, DISP32);
	write32(to);
	write32(from); 
}

/* mov r16 to m16 */
void MOV16RtoM(u32 to, int from) {
	write8(0x66);
	write8(0x89);
	ModRM(0, from, DISP32);
	write32(to);
}

/* mov m16 to r16 */
void MOV16MtoR(int to, u32 from) {
	write8(0x66);
	write8(0x8B);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* mov imm16 to m16 */
void MOV16ItoM(u32 to, u16 from) {
	write8(0x66);
	write8(0xC7);
	ModRM(0, 0, DISP32);
	write32(to);
	write16(from); 
}

/* mov r8 to m8 */
void MOV8RtoM(u32 to, int from) {
	write8(0x88);
	ModRM(0, from, DISP32);
	write32(to);
}

/* mov m8 to r8 */
void MOV8MtoR(int to, u32 from) {
	write8(0x8A);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* mov imm8 to m8 */
void MOV8ItoM(u32 to, u8 from) {
	write8(0xC6);
	ModRM(0, 0, DISP32);
	write32(to);
	write8(from); 
}

/* movsx r8 to r32 */
void MOVSX32R8toR(int to, int from) {
	write16(0xBE0F); 
	ModRM(3, to, from); 
}

/* movsx m8 to r32 */
void MOVSX32M8toR(int to, u32 from) {
	write16(0xBE0F); 
	ModRM(0, to, DISP32);
	write32(from);
}

/* movsx r16 to r32 */
void MOVSX32R16toR(int to, int from) {
	write16(0xBF0F); 
	ModRM(3, to, from); 
}

/* movsx m16 to r32 */
void MOVSX32M16toR(int to, u32 from) {
	write16(0xBF0F); 
	ModRM(0, to, DISP32);
	write32(from);
}

/* movzx r8 to r32 */
void MOVZX32R8toR(int to, int from) {
	write16(0xB60F); 
	ModRM(3, to, from); 
}

/* movzx m8 to r32 */
void MOVZX32M8toR(int to, u32 from) {
	write16(0xB60F); 
	ModRM(0, to, DISP32);
	write32(from);
}

/* movzx r16 to r32 */
void MOVZX32R16toR(int to, int from) {
	write16(0xB70F); 
	ModRM(3, to, from); 
}

/* movzx m16 to r32 */
void MOVZX32M16toR(int to, u32 from) {
	write16(0xB70F); 
	ModRM(0, to, DISP32);
	write32(from);
}

/* cmovne r32 to r32 */
void CMOVNE32RtoR(int to, int from) {
	CMOV32RtoR(0x45, to, from);
}

/* cmovne m32 to r32*/
void CMOVNE32MtoR(int to, u32 from) {
	CMOV32MtoR(0x45, to, from);
}

/* cmove r32 to r32*/
void CMOVE32RtoR(int to, int from) {
	CMOV32RtoR(0x44, to, from);
}

/* cmove m32 to r32*/
void CMOVE32MtoR(int to, u32 from) {
	CMOV32MtoR(0x44, to, from);
}

/* cmovg r32 to r32*/
void CMOVG32RtoR(int to, int from) {
	CMOV32RtoR(0x4F, to, from);
}

/* cmovg m32 to r32*/
void CMOVG32MtoR(int to, u32 from) {
	CMOV32MtoR(0x4F, to, from);
}

/* cmovge r32 to r32*/
void CMOVGE32RtoR(int to, int from) {
	CMOV32RtoR(0x4D, to, from);
}

/* cmovge m32 to r32*/
void CMOVGE32MtoR(int to, u32 from) {
	CMOV32MtoR(0x4D, to, from);
}

/* cmovl r32 to r32*/
void CMOVL32RtoR(int to, int from) {
	CMOV32RtoR(0x4C, to, from);
}

/* cmovl m32 to r32*/
void CMOVL32MtoR(int to, u32 from) {
	CMOV32MtoR(0x4C, to, from);
}

/* cmovle r32 to r32*/
void CMOVLE32RtoR(int to, int from) {
	CMOV32RtoR(0x4E, to, from);
}

/* cmovle m32 to r32*/
void CMOVLE32MtoR(int to, u32 from) {
	CMOV32MtoR(0x4E, to, from);
}

// arithmic instructions

/* add imm32 to r32 */
void ADD32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x05); 
	} else {
		write8(0x81); 
		ModRM(3, 0, to);
	}
	write32(from);
}

/* add imm32 to m32 */
void ADD32ItoM(u32 to, u32 from) {
	write8(0x81); 
	ModRM(0, 0, DISP32);
	write32(to);
	write32(from);
}

/* add r32 to r32 */
void ADD32RtoR(int to, int from) {
	write8(0x01); 
	ModRM(3, from, to);
}

/* add r32 to m32 */
void ADD32RtoM(u32 to, int from) {
	write8(0x01); 
	ModRM(0, from, DISP32);
	write32(to);
}

/* add m32 to r32 */
void ADD32MtoR(int to, u32 from) {
	write8(0x03); 
	ModRM(0, to, DISP32);
	write32(from);
}

/* adc imm32 to r32 */
void ADC32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x15);
	} else {
		write8(0x81);
		ModRM(3, 2, to);
	}
	write32(from); 
}

/* adc r32 to r32 */
void ADC32RtoR(int to, int from) {
	write8(0x11); 
	ModRM(3, from, to);
}

/* adc m32 to r32 */
void ADC32MtoR(int to, u32 from) {
	write8(0x13); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* inc r32 */
void INC32R(int to) {
	write8(0x40 + to);
}

/* inc m32 */
void INC32M(u32 to) {
	write8(0xFF);
	ModRM(0, 0, DISP32);
	write32(to);
}

/* sub imm32 to r32 */
void SUB32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x2D); 
	} else {
		write8(0x81); 
		ModRM(3, 5, to);
	}
	write32(from); 
}

/* sub r32 to r32 */
void SUB32RtoR(int to, int from) {
	write8(0x29); 
	ModRM(3, from, to);
}

/* sub m32 to r32 */
void SUB32MtoR(int to, u32 from) {
	write8(0x2B); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* sbb imm32 to r32 */
void SBB32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x1D);
	} else {
		write8(0x81);
		ModRM(3, 3, to);
	}
	write32(from); 
}

/* sbb r32 to r32 */
void SBB32RtoR(int to, int from) {
	write8(0x19); 
	ModRM(3, from, to);
}

/* sbb m32 to r32 */
void SBB32MtoR(int to, u32 from) {
	write8(0x1B); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* dec r32 */
void DEC32R(int to) {
	write8(0x48 + to);
}

/* dec m32 */
void DEC32M(u32 to) {
	write8(0xFF);
	ModRM(0, 1, DISP32);
	write32(to);
}

/* mul eax by r32 to edx:eax */
void MUL32R(int from) {
	write8(0xF7); 
	ModRM(3, 4, from);
}

/* imul eax by r32 to edx:eax */
void IMUL32R(int from) {
	write8(0xF7); 
	ModRM(3, 5, from);
}

/* mul eax by m32 to edx:eax */
void MUL32M(u32 from) {
	write8(0xF7); 
	ModRM(0, 4, DISP32);
	write32(from); 
}

/* imul eax by m32 to edx:eax */
void IMUL32M(u32 from) {
	write8(0xF7); 
	ModRM(0, 5, DISP32);
	write32(from); 
}

/* imul r32 by r32 to r32 */
void IMUL32RtoR(int to, int from) {
	write16(0xAF0F); 
	ModRM(3, to, from);
}

/* div eax by r32 to edx:eax */
void DIV32R(int from) {
	write8(0xF7); 
	ModRM(3, 6, from);
}

/* idiv eax by r32 to edx:eax */
void IDIV32R(int from) {
	write8(0xF7); 
	ModRM(3, 7, from);
}

/* div eax by m32 to edx:eax */
void DIV32M(u32 from) {
	write8(0xF7); 
	ModRM(0, 6, DISP32);
	write32(from); 
}

/* idiv eax by m32 to edx:eax */
void IDIV32M(u32 from) {
	write8(0xF7); 
	ModRM(0, 7, DISP32);
	write32(from); 
}

// shifting instructions

void RCR32ItoR(int to,int from)
{
	if (from==1)
	{
		write8(0xd1);
		write8(0xd8 | to);
	}
	else
	{
		write8(0xc1);
		write8(0xd8 | to);
		write8(from);
	}
}

/* shl imm8 to r32 */
void SHL32ItoR(int to, u8 from) {
	if (from==1)
	{
		write8(0xd1);
		write8(0xe0 | to);
		return;
	}
	write8(0xC1); 
	ModRM(3, 4, to);
	write8(from); 
}

/* shl cl to r32 */
void SHL32CLtoR(int to) {
	write8(0xD3); 
	ModRM(3, 4, to);
}

/* shr imm8 to r32 */
void SHR32ItoR(int to, u8 from) {
	if (from==1)
	{
		write8(0xd1);
		write8(0xe8 | to);
		return;
	}
	write8(0xC1); 
	ModRM(3, 5, to);
	write8(from); 
}

/* shr cl to r32 */
void SHR32CLtoR(int to) {
	write8(0xD3); 
	ModRM(3, 5, to);
}

/* sar imm8 to r32 */
void SAR32ItoR(int to, u8 from) {
	write8(0xC1); 
	ModRM(3, 7, to);
	write8(from); 
}

/* sar cl to r32 */
void SAR32CLtoR(int to) {
	write8(0xD3); 
	ModRM(3, 7, to);
}


// logical instructions

/* or imm32 to r32 */
void OR32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x0D); 
	} else {
		write8(0x81); 
		ModRM(3, 1, to);
	}
	write32(from); 
}

/* or imm32 to m32 */
void OR32ItoM(u32 to, u32 from) {
	write8(0x81); 
	ModRM(0, 1, DISP32);
	write32(to);
	write32(from); 
}

/* or r32 to r32 */
void OR32RtoR(int to, int from) {
	write8(0x09); 
	ModRM(3, from, to);
}

/* or r32 to m32 */
void OR32RtoM(u32 to, int from) {
	write8(0x09); 
	ModRM(0, from, DISP32);
	write32(to);
}

/* or m32 to r32 */
void OR32MtoR(int to, u32 from) {
	write8(0x0B); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* xor imm32 to r32 */
void XOR32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x35); 
	} else {
		write8(0x81); 
		ModRM(3, 6, to);
	}
	write32(from); 
}

/* xor imm32 to m32 */
void XOR32ItoM(u32 to, u32 from) {
	write8(0x81); 
	ModRM(0, 6, DISP32);
	write32(to); 
	write32(from); 
}

/* xor r32 to r32 */
void XOR32RtoR(int to, int from) {
	write8(0x31); 
	ModRM(3, from, to);
}

/* xor r32 to m32 */
void XOR32RtoM(u32 to, int from) {
	write8(0x31); 
	ModRM(0, from, DISP32);
	write32(to);
}

/* xor m32 to r32 */
void XOR32MtoR(int to, u32 from) {
	write8(0x33); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* and imm32 to r32 */
void AND32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x25); 
	} else {
		write8(0x81); 
		ModRM(3, 0x4, to);
	}
	write32(from); 
}

/* and imm32 to m32 */
void AND32ItoM(u32 to, u32 from) {
	write8(0x81); 
	ModRM(0, 0x4, DISP32);
	write32(to);
	write32(from); 
}

/* and r32 to r32 */
void AND32RtoR(int to, int from) {
	write8(0x21); 
	ModRM(3, from, to);
}

/* and r32 to m32 */
void AND32RtoM(u32 to, int from) {
	write8(0x21); 
	ModRM(0, from, DISP32);
	write32(to); 
}

/* and m32 to r32 */
void AND32MtoR(int to, u32 from) {
	write8(0x23); 
	ModRM(0, to, DISP32);
	write32(from); 
}

/* not r32 */
void NOT32R(int from) {
	write8(0xF7); 
	ModRM(3, 2, from);
}

/* neg r32 */
void NEG32R(int from) {
	write8(0xF7); 
	ModRM(3, 3, from);
}

// jump instructions

/* jmp rel8 */
u8*  JMP8(u8 to) {
	write8(0xEB); 
	write8(to);
	return x86Ptr - 1;
}

/* jmp rel32 */
u32* JMP32(u32 to) {
	write8(0xE9); 
	write32(to); 
	return (u32*)(x86Ptr - 4);
}

/* jmp r32 */
void JMP32R(int to) {
	write8(0xFF); 
	ModRM(3, 4, to);
}

/* je rel8 */
u8*  JE8(u8 to) {
	J8Rel(0x74, to);
}

/* jz rel8 */
u8*  JZ8(u8 to) {
	J8Rel(0x74, to); 
}

/* jg rel8 */
u8*  JG8(u8 to) { 
	J8Rel(0x7F, to);
}

/* jge rel8 */
u8*  JGE8(u8 to) { 
	J8Rel(0x7D, to); 
}

/* jl rel8 */
u8*  JL8(u8 to) { 
	J8Rel(0x7C, to); 
}

/* jle rel8 */
u8*  JLE8(u8 to) { 
	J8Rel(0x7E, to); 
}

/* jne rel8 */
u8*  JNE8(u8 to) { 
	J8Rel(0x75, to); 
}

/* jnz rel8 */
u8*  JNZ8(u8 to) { 
	J8Rel(0x75, to); 
}

/* jng rel8 */
u8*  JNG8(u8 to) { 
	J8Rel(0x7E, to); 
}

/* jnge rel8 */
u8*  JNGE8(u8 to) { 
	J8Rel(0x7C, to); 
}

/* jnl rel8 */
u8*  JNL8(u8 to) { 
	J8Rel(0x7D, to); 
}

/* jnle rel8 */
u8*  JNLE8(u8 to) { 
	J8Rel(0x7F, to); 
}

/* jo rel8 */
u8*  JO8(u8 to) { 
	J8Rel(0x70, to); 
}

/* jno rel8 */
u8*  JNO8(u8 to) { 
	J8Rel(0x71, to); 
}

/* je rel32 */
u32* JE32(u32 to) {
	J32Rel(0x84, to);
}

/* jz rel32 */
u32* JZ32(u32 to) {
	J32Rel(0x84, to); 
}

/* jg rel32 */
u32* JG32(u32 to) { 
	J32Rel(0x8F, to);
}

/* jge rel32 */
u32* JGE32(u32 to) { 
	J32Rel(0x8D, to); 
}

/* jl rel32 */
u32* JL32(u32 to) { 
	J32Rel(0x8C, to); 
}

/* jle rel32 */
u32* JLE32(u32 to) { 
	J32Rel(0x8E, to); 
}

/* jne rel32 */
u32* JNE32(u32 to) { 
	J32Rel(0x85, to); 
}

/* jnz rel32 */
u32* JNZ32(u32 to) { 
	J32Rel(0x85, to); 
}

/* jng rel32 */
u32* JNG32(u32 to) { 
	J32Rel(0x8E, to); 
}

/* jnge rel32 */
u32* JNGE32(u32 to) { 
	J32Rel(0x8C, to); 
}

/* jnl rel32 */
u32* JNL32(u32 to) { 
	J32Rel(0x8D, to); 
}

/* jnle rel32 */
u32*  JNLE32(u32 to) { 
	J32Rel(0x8F, to); 
}

/* jo rel32 */
u32*  JO32(u32 to) { 
	J32Rel(0x80, to); 
}

/* jno rel32 */
u32*  JNO32(u32 to) { 
	J32Rel(0x81, to); 
}

/* call func */
void CALLFunc(u32 func) {
	CALL32(func - ((u32)x86Ptr + 5));
}

/* call rel32 */
void CALL32(u32 to) {
	write8(0xE8); 
	write32(to); 
}

/* call r32 */
void CALL32R(int to) {
	write8(0xFF);
	ModRM(3, 2, to);
}

/* call m32 */
void CALL32M(u32 to) {
	write8(0xFF);
	ModRM(0, 2, DISP32);
	write32(to);
}

// misc instructions

/* cmp imm32 to r32 */
void CMP32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0x3D);
	} else {
		write8(0x81);
		ModRM(3, 7, to);
	}
	write32(from); 
}

/* cmp imm32 to m32 */
void CMP32ItoM(u32 to, u32 from) {
	write8(0x81); 
	ModRM(0, 7, DISP32);
	write32(to); 
	write32(from); 
}

/* cmp r32 to r32 */
void CMP32RtoR(int to, int from) {
	write8(0x39);
	ModRM(3, from, to);
}

/* cmp m32 to r32 */
void CMP32MtoR(int to, u32 from) {
	write8(0x3B);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* test imm32 to r32 */
void TEST32ItoR(int to, u32 from) {
	if (to == EAX) {
		write8(0xA9);
	} else {
		write8(0xF7);
		ModRM(3, 0, to);
	}
	write32(from); 
}

/* test r32 to r32 */
void TEST32RtoR(int to, int from) {
	write8(0x85);
	ModRM(3, from, to);
}

void BT32ItoR(int to,int from)
{
	write16(0xba0f);
	write8(0xe0 | to);
	write8(from);
}

/* sets r8 */
void SETS8R(int to) { 
        SET8R(0x98, to); 
}
/* setl r8 */
void SETL8R(int to) { 
	SET8R(0x9C, to); 
}

/* setb r8 */
void SETB8R(int to) { 
	SET8R(0x92, to); 
}

/* setnz r8 */
void SETNZ8R(int to) { 
	SET8R(0x95,to); 
}

/* cbw */
void CBW() {
	write16(0x9866); 
}

/* cwd */
void CWD() {
	write8(0x98);
}

/* cdq */
void CDQ() {
	write8(0x99); 
}

/* push r32 */
void PUSH32R(int from) {
	write8(0x50 | from); 
}

/* push m32 */
void PUSH32M(u32 from) {
	write8(0xFF);
	ModRM(0, 6, DISP32);
	write32(from); 
}

/* push imm32 */
void PUSH32I(u32 from) {
	write8(0x68); write32(from); 
}

/* pop r32 */
void POP32R(int from) {
	write8(0x58 | from); 
}

/* pushad */
void PUSHA32() {
	write8(0x60); 
}

/* popad */
void POPA32() {
	write8(0x61); 
}

/* ret */
void RET() {
	write8(0xC3); 
}

/********************/
/* FPU instructions */
/********************/

//Added:basara 14.01.2003
/* compare m32 to fpu reg stack */
void FCOMP32(u32 from) {
	write8(0xD8);
	ModRM(0, 0x3, DISP32);
	write32(from); 
}

void FNSTSWtoAX() {
	write16(0xE0DF);
}

/* fild m32 to fpu reg stack */
void FILD32(u32 from) {
	write8(0xDB);
	ModRM(0, 0x0, DISP32);
	write32(from); 
}

/* fistp m32 from fpu reg stack */
void FISTP32(u32 from) {
	write8(0xDB);
	ModRM(0, 0x3, DISP32);
	write32(from); 
}

/* fld m32 to fpu reg stack */
void FLD32(u32 from) {
	write8(0xD9);
	ModRM(0, 0x0, DISP32);
	write32(from); 
}

/* fstp m32 from fpu reg stack */
void FSTP32(u32 to) {
	write8(0xD9);
	ModRM(0, 0x3, DISP32);
	write32(to); 
}

//

/* fldcw fpu control word from m16 */
void FLDCW(u32 from) {
	write8(0xD9);
	ModRM(0, 0x5, DISP32);
	write32(from); 
}

/* fnstcw fpu control word to m16 */
void FNSTCW(u32 to) {
	write8(0xD9);
	ModRM(0, 0x7, DISP32);
	write32(to); 
}

//

/* fadd m32 to fpu reg stack */
void FADD32(u32 from) {
	write8(0xD8);
	ModRM(0, 0x0, DISP32);
	write32(from); 
}

/* fsub m32 to fpu reg stack */
void FSUB32(u32 from) {
	write8(0xD8);
	ModRM(0, 0x4, DISP32);
	write32(from); 
}

/* fmul m32 to fpu reg stack */
void FMUL32(u32 from) {
	write8(0xD8);
	ModRM(0, 0x1, DISP32);
	write32(from); 
}

/* fdiv m32 to fpu reg stack */
void FDIV32(u32 from) {
	write8(0xD8);
	ModRM(0, 0x6, DISP32);
	write32(from); 
}

/* fabs fpu reg stack */
void FABS() {
	write16(0xE1D9);
}

/* fsqrt fpu reg stack */
void FSQRT() {
	write16(0xFAD9);
}

/* fchs fpu reg stack */
void FCHS() {
	write16(0xE0D9);
}

/********************/
/* MMX instructions */
/********************/

// r64 = mm

/* movq m64 to r64 */
void MOVQMtoR(int to, u32 from) {
	write16(0x6F0F);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* movq r64 to m64 */
void MOVQRtoM(u32 to, int from) {
	write16(0x7F0F);
	ModRM(0, from, DISP32);
	write32(to); 
}

/* pand r64 to r64 */
void PANDRtoR(int to, int from) {
	write16(0xDB0F);
	ModRM(3, to, from); 
}

/* pand r64 to r64 */
void PANDNRtoR(int to, int from) {
	write16(0xDF0F);
	ModRM(3, to, from); 
}

/* por r64 to r64 */
void PORRtoR(int to, int from) {
	write16(0xEB0F);
	ModRM(3, to, from); 
}

/* pxor r64 to r64 */
void PXORRtoR(int to, int from) {
	write16(0xEF0F);
	ModRM(3, to, from); 
}

/* psllq r64 to r64 */
void PSLLQRtoR(int to, int from) {
	write16(0xF30F);
	ModRM(3, to, from); 
}

/* psllq m64 to r64 */
void PSLLQMtoR(int to, u32 from) {
	write16(0xF30F); 
	ModRM(0, to, DISP32); 
	write32(from);
}

/* psllq imm8 to r64 */
void PSLLQItoR(int to, u8 from) {
	write16(0x730F); 
	ModRM(3, 6, to); 
	write8(from); 
}

/* psrlq r64 to r64 */
void PSRLQRtoR(int to, int from) {
	write16(0xD30F); 
	ModRM(3, to, from); 
}

/* psrlq m64 to r64 */
void PSRLQMtoR(int to, u32 from) {
	write16(0xD30F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* psrlq imm8 to r64 */
void PSRLQItoR(int to, u8 from) {
	write16(0x730F);
	ModRM(3, 2, to); 
	write8(from); 
}

/* paddusb r64 to r64 */
void PADDUSBRtoR(int to, int from) {
	write16(0xDC0F); 
	ModRM(3, to, from); 
}

/* paddusb m64 to r64 */
void PADDUSBMtoR(int to, u32 from) {
	write16(0xDC0F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* paddusw r64 to r64 */
void PADDUSWRtoR(int to, int from) {
	write16(0xDD0F); 
	ModRM(3, to, from); 
}

/* paddusw m64 to r64 */
void PADDUSWMtoR(int to, u32 from) {
	write16(0xDD0F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* paddb r64 to r64 */
void PADDBRtoR(int to, int from) {
	write16(0xFC0F); 
	ModRM(3, to, from); 
}

/* paddb m64 to r64 */
void PADDBMtoR(int to, u32 from) {
	write16(0xFC0F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* paddw r64 to r64 */
void PADDWRtoR(int to, int from) {
	write16(0xFD0F); 
	ModRM(3, to, from); 
}

/* paddw m64 to r64 */
void PADDWMtoR(int to, u32 from) {
	write16(0xFD0F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* paddd r64 to r64 */
void PADDDRtoR(int to, int from) {
	write16(0xFE0F); 
	ModRM(3, to, from); 
}

/* paddd m64 to r64 */
void PADDDMtoR(int to, u32 from) {
	write16(0xFE0F); 
	ModRM(0, to, DISP32); 
	write32(from); 
}

/* emms */
void EMMS() {
	//use femms if we have 3dnow
	write16(0x0e0f);
	return;
}

/* femms */
void FEMMS() {
	write16(0x770F);
	return;
}

//Basara:changed
void PADDSBRtoR(int to, int from) {
	write16(0xEC0F); 
	ModRM(3, to, from); 
}

void PADDSWRtoR(int to, int from) {
	write16(0xED0F);
	ModRM(3, to, from); 
}

void PADDSDRtoR(int to, int from) {
	write16(0xEE0F); 
	ModRM(3, to, from); 
}

void PSUBSBRtoR(int to, int from) {
	write16(0xE80F); 
	ModRM(3, to, from); 
}

void PSUBSWRtoR(int to, int from) {
	write16(0xE90F);
	ModRM(3, to, from); 
}

void PSUBSDRtoR(int to, int from) {
	write16(0xEA0F); 
	ModRM(3, to, from); 
}

void PSUBBRtoR(int to, int from) {
	write16(0xF80F); 
	ModRM(3, to, from); 
}

void PSUBWRtoR(int to, int from) {
	write16(0xF90F); 
	ModRM(3, to, from); 
}

void PSUBDRtoR(int to, int from) {
	write16(0xFA0F); 
	ModRM(3, to, from); 
}

//changed:basara
//P.s.It's sux.Don't use it offten.
void MOVQ64ItoR(int reg,u64 i)
{
	MOVQMtoR(reg,(u32)(x86Ptr)+2+7);
	JMP8(8);
	write64(i);
}

void PSUBUSBRtoR(int to, int from) {
	write16(0xD80F); 
	ModRM(3, to, from); 
}

void PSUBUSWRtoR(int to, int from) {
	write16(0xD90F); 
	ModRM(3, to, from); 
}

void PMAXSWRtoR(int to,int from)
{
	write16(0xEE0F); 
	ModRM(3, to, from); 
}

void PMINSWRtoR(int to,int from)
{
	write16(0xEA0F); 
	ModRM(3, to, from); 
}

void PCMPEQBRtoR(int to,int from)
{
	write16(0x740F); 
	ModRM(3, to, from); 
}

void PCMPEQWRtoR(int to,int from)
{
	write16(0x750F); 
	ModRM(3, to, from); 
}

void PCMPEQDRtoR(int to,int from)
{
	write16(0x760F); 
	ModRM(3, to, from); 
}

void PCMPGTBRtoR(int to,int from)
{
	write16(0x640F); 
	ModRM(3, to, from); 
}

void PCMPGTWRtoR(int to,int from)
{
	write16(0x650F); 
	ModRM(3, to, from); 
}

void PCMPGTDRtoR(int to,int from)
{
	write16(0x660F); 
	ModRM(3, to, from); 
}

//Basara:Added 10.01.2003
void PSRLWItoR(int to,int from)
{
	write16(0x710f);
	ModRM(2, 2 , to); 
	write8(from);
}
void PSRLDItoR(int to,int from)
{
	write16(0x720f);
	ModRM(2, 2 , to); 
	write8(from);
}

void PSLLWItoR(int to,int from)
{
	write16(0x710f);
	ModRM(3, 6 , to); 
	write8(from);
}

void PSLLDItoR(int to,int from)
{
	write16(0x720f);
	ModRM(3, 6 , to); 
	write8(from);
}

void PSRAWItoR(int to,int from)
{
	write16(0x710f);
	ModRM(3, 4 , to); 
	write8(from);
}

void PSRADItoR(int to,int from)
{
	write16(0x720f);
	ModRM(3, 4 , to); 
	write8(from);
}

/* por m64 to r64 */
void PORMtoR(int to, u32 from) {
	write16(0xEB0F);
	ModRM(0, to, DISP32); 
	write32(from);
}

/* pxor m64 to r64 */
void PXORMtoR(int to, u32 from) {
	write16(0xEF0F);
	ModRM(0, to, DISP32); 
	write32(from);
}

/* pand m64 to r64 */
void PANDMtoR(int to, u32 from) {
	write16(0xDB0F);
	ModRM(0, to, DISP32); 
	write32(from);
}

/* pandn m64 to r64 */
void PANDNMtoR(int to, u32 from) {
	write16(0xDF0F);
	ModRM(0, to, DISP32); 
	write32(from);
}

/* movd m32 to r64 */
void MOVDMtoR(int to, u32 from) {
	write16(0x6E0F);
	ModRM(0, to, DISP32);
	write32(from); 
}

/* movq r64 to m32 */
void MOVDRtoM(u32 to, int from) {
	write16(0x7E0F);
	ModRM(0, from, DISP32);
	write32(to); 
}

/* movd r32 to r64 */
void MOVD32RtoR(int to, int from) {
	write16(0x6E0F);
	ModRM(3, to,from);
}

/* movq r64 to r32 */
void MOVD64RtoR(int to, int from) {
	write16(0x7E0F);
	ModRM(3, from,to);
}

void MOVQRtoR(int to, int from) {
	write16(0x6F0F);
	ModRM(3, to,from);
}

void PUNPCKHDQRtoR(int to, int from) {
	write16(0x6A0F);
	ModRM(3, to,from);
}

void PUNPCKLDQRtoR(int to, int from) {
	write16(0x620F);
	ModRM(3, to,from);
}

//////////////////////////////////////////////////////////////////////////
//	SSE	intructions 
//////////////////////////////////////////////////////////////////////////

void MOVAPSMtoR(int to, int from) {
	write16(0x280f);
	ModRM(0, to, DISP32);
	write32(from);
}

void MOVAPSRtoM(int to, int from) {
	write16(0x2b0f);
	ModRM(0, from, DISP32);
	write32(to);
}

void MOVAPSRtoR(int to, int from) {
	write16(0x290f);
	ModRM(3, to,from);
}

void ORPSMtoR(int to, int from) {
	write16(0x560f);
	ModRM(0, to, DISP32);
	write32(from);
}

void ORPSRtoR(int to, int from) {
	write16(0x560f);
	ModRM(3, to,from);
}

void XORPSMtoR(int to, int from) {
	write16(0x570f);
	ModRM(0, to, DISP32);
	write32(from);
}

void XORPSRtoR(int to, int from) {
	write16(0x570f);
	ModRM(3, to,from);
}

void ANDPSMtoR(int to, int from) {
	write16(0x540f);
	ModRM(0, to, DISP32);
	write32(from);
}

void ANDPSRtoR(int to, int from) {
	write16(0x540f);
	ModRM(3, to,from);
}

/*
	3DNOW intructions 
*/

void PFCMPEQMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0xb0);
}

void PFCMPGTMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0xa0);
}

void PFCMPGEMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x90);
}

void PFADDMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x9e);
}

void PFADDRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from);
	write8(0x9e);
}

void PFSUBMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x9a);
}

void PFSUBRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from); 
	write8(0x9a);
}

void PFMULMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0xb4);
}

void PFMULRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0xb4);
}

void PFRCPMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x96);
}

void PFRCPRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0x96);
}

void PFRCPIT1RtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0xa6);
}

void PFRCPIT2RtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0xb6);
}

void PFRSQRTRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0x97);
}

void PFRSQIT1RtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to,from); 
	write8(0xa7);
}

void PF2IDMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x1d);
}

void PF2IDRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from); 
	write8(0x1d);
}

void PI2FDMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x0d);
}

void PI2FDRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from); 
	write8(0x0d);
}

/*
	3DNOW Extension intructions 
*/

void PFMAXMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0xa4);
}

void PFMAXRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from); 
	write8(0xa4);
}

void PFMINMtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(0, to, DISP32); 
	write32(from); 
	write8(0x94);
}

void PFMINRtoR(int to, int from) {
	write16(0x0f0f);
	ModRM(3, to, from);
	write8(0x94);
}