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
|
/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|*Target Register Enum Values *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
/* Capstone Disassembly Engine, http://www.capstone-engine.org */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
#ifdef GET_REGINFO_ENUM
#undef GET_REGINFO_ENUM
enum {
Mips_NoRegister,
Mips_AT = 1,
Mips_DSPCCond = 2,
Mips_DSPCarry = 3,
Mips_DSPEFI = 4,
Mips_DSPOutFlag = 5,
Mips_DSPPos = 6,
Mips_DSPSCount = 7,
Mips_FP = 8,
Mips_GP = 9,
Mips_MSAAccess = 10,
Mips_MSACSR = 11,
Mips_MSAIR = 12,
Mips_MSAMap = 13,
Mips_MSAModify = 14,
Mips_MSARequest = 15,
Mips_MSASave = 16,
Mips_MSAUnmap = 17,
Mips_PC = 18,
Mips_RA = 19,
Mips_SP = 20,
Mips_ZERO = 21,
Mips_A0 = 22,
Mips_A1 = 23,
Mips_A2 = 24,
Mips_A3 = 25,
Mips_AC0 = 26,
Mips_AC1 = 27,
Mips_AC2 = 28,
Mips_AC3 = 29,
Mips_AT_64 = 30,
Mips_CC0 = 31,
Mips_CC1 = 32,
Mips_CC2 = 33,
Mips_CC3 = 34,
Mips_CC4 = 35,
Mips_CC5 = 36,
Mips_CC6 = 37,
Mips_CC7 = 38,
Mips_COP20 = 39,
Mips_COP21 = 40,
Mips_COP22 = 41,
Mips_COP23 = 42,
Mips_COP24 = 43,
Mips_COP25 = 44,
Mips_COP26 = 45,
Mips_COP27 = 46,
Mips_COP28 = 47,
Mips_COP29 = 48,
Mips_COP30 = 49,
Mips_COP31 = 50,
Mips_COP32 = 51,
Mips_COP33 = 52,
Mips_COP34 = 53,
Mips_COP35 = 54,
Mips_COP36 = 55,
Mips_COP37 = 56,
Mips_COP38 = 57,
Mips_COP39 = 58,
Mips_COP210 = 59,
Mips_COP211 = 60,
Mips_COP212 = 61,
Mips_COP213 = 62,
Mips_COP214 = 63,
Mips_COP215 = 64,
Mips_COP216 = 65,
Mips_COP217 = 66,
Mips_COP218 = 67,
Mips_COP219 = 68,
Mips_COP220 = 69,
Mips_COP221 = 70,
Mips_COP222 = 71,
Mips_COP223 = 72,
Mips_COP224 = 73,
Mips_COP225 = 74,
Mips_COP226 = 75,
Mips_COP227 = 76,
Mips_COP228 = 77,
Mips_COP229 = 78,
Mips_COP230 = 79,
Mips_COP231 = 80,
Mips_COP310 = 81,
Mips_COP311 = 82,
Mips_COP312 = 83,
Mips_COP313 = 84,
Mips_COP314 = 85,
Mips_COP315 = 86,
Mips_COP316 = 87,
Mips_COP317 = 88,
Mips_COP318 = 89,
Mips_COP319 = 90,
Mips_COP320 = 91,
Mips_COP321 = 92,
Mips_COP322 = 93,
Mips_COP323 = 94,
Mips_COP324 = 95,
Mips_COP325 = 96,
Mips_COP326 = 97,
Mips_COP327 = 98,
Mips_COP328 = 99,
Mips_COP329 = 100,
Mips_COP330 = 101,
Mips_COP331 = 102,
Mips_D0 = 103,
Mips_D1 = 104,
Mips_D2 = 105,
Mips_D3 = 106,
Mips_D4 = 107,
Mips_D5 = 108,
Mips_D6 = 109,
Mips_D7 = 110,
Mips_D8 = 111,
Mips_D9 = 112,
Mips_D10 = 113,
Mips_D11 = 114,
Mips_D12 = 115,
Mips_D13 = 116,
Mips_D14 = 117,
Mips_D15 = 118,
Mips_DSPOutFlag20 = 119,
Mips_DSPOutFlag21 = 120,
Mips_DSPOutFlag22 = 121,
Mips_DSPOutFlag23 = 122,
Mips_F0 = 123,
Mips_F1 = 124,
Mips_F2 = 125,
Mips_F3 = 126,
Mips_F4 = 127,
Mips_F5 = 128,
Mips_F6 = 129,
Mips_F7 = 130,
Mips_F8 = 131,
Mips_F9 = 132,
Mips_F10 = 133,
Mips_F11 = 134,
Mips_F12 = 135,
Mips_F13 = 136,
Mips_F14 = 137,
Mips_F15 = 138,
Mips_F16 = 139,
Mips_F17 = 140,
Mips_F18 = 141,
Mips_F19 = 142,
Mips_F20 = 143,
Mips_F21 = 144,
Mips_F22 = 145,
Mips_F23 = 146,
Mips_F24 = 147,
Mips_F25 = 148,
Mips_F26 = 149,
Mips_F27 = 150,
Mips_F28 = 151,
Mips_F29 = 152,
Mips_F30 = 153,
Mips_F31 = 154,
Mips_FCC0 = 155,
Mips_FCC1 = 156,
Mips_FCC2 = 157,
Mips_FCC3 = 158,
Mips_FCC4 = 159,
Mips_FCC5 = 160,
Mips_FCC6 = 161,
Mips_FCC7 = 162,
Mips_FCR0 = 163,
Mips_FCR1 = 164,
Mips_FCR2 = 165,
Mips_FCR3 = 166,
Mips_FCR4 = 167,
Mips_FCR5 = 168,
Mips_FCR6 = 169,
Mips_FCR7 = 170,
Mips_FCR8 = 171,
Mips_FCR9 = 172,
Mips_FCR10 = 173,
Mips_FCR11 = 174,
Mips_FCR12 = 175,
Mips_FCR13 = 176,
Mips_FCR14 = 177,
Mips_FCR15 = 178,
Mips_FCR16 = 179,
Mips_FCR17 = 180,
Mips_FCR18 = 181,
Mips_FCR19 = 182,
Mips_FCR20 = 183,
Mips_FCR21 = 184,
Mips_FCR22 = 185,
Mips_FCR23 = 186,
Mips_FCR24 = 187,
Mips_FCR25 = 188,
Mips_FCR26 = 189,
Mips_FCR27 = 190,
Mips_FCR28 = 191,
Mips_FCR29 = 192,
Mips_FCR30 = 193,
Mips_FCR31 = 194,
Mips_FP_64 = 195,
Mips_F_HI0 = 196,
Mips_F_HI1 = 197,
Mips_F_HI2 = 198,
Mips_F_HI3 = 199,
Mips_F_HI4 = 200,
Mips_F_HI5 = 201,
Mips_F_HI6 = 202,
Mips_F_HI7 = 203,
Mips_F_HI8 = 204,
Mips_F_HI9 = 205,
Mips_F_HI10 = 206,
Mips_F_HI11 = 207,
Mips_F_HI12 = 208,
Mips_F_HI13 = 209,
Mips_F_HI14 = 210,
Mips_F_HI15 = 211,
Mips_F_HI16 = 212,
Mips_F_HI17 = 213,
Mips_F_HI18 = 214,
Mips_F_HI19 = 215,
Mips_F_HI20 = 216,
Mips_F_HI21 = 217,
Mips_F_HI22 = 218,
Mips_F_HI23 = 219,
Mips_F_HI24 = 220,
Mips_F_HI25 = 221,
Mips_F_HI26 = 222,
Mips_F_HI27 = 223,
Mips_F_HI28 = 224,
Mips_F_HI29 = 225,
Mips_F_HI30 = 226,
Mips_F_HI31 = 227,
Mips_GP_64 = 228,
Mips_HI0 = 229,
Mips_HI1 = 230,
Mips_HI2 = 231,
Mips_HI3 = 232,
Mips_HWR0 = 233,
Mips_HWR1 = 234,
Mips_HWR2 = 235,
Mips_HWR3 = 236,
Mips_HWR4 = 237,
Mips_HWR5 = 238,
Mips_HWR6 = 239,
Mips_HWR7 = 240,
Mips_HWR8 = 241,
Mips_HWR9 = 242,
Mips_HWR10 = 243,
Mips_HWR11 = 244,
Mips_HWR12 = 245,
Mips_HWR13 = 246,
Mips_HWR14 = 247,
Mips_HWR15 = 248,
Mips_HWR16 = 249,
Mips_HWR17 = 250,
Mips_HWR18 = 251,
Mips_HWR19 = 252,
Mips_HWR20 = 253,
Mips_HWR21 = 254,
Mips_HWR22 = 255,
Mips_HWR23 = 256,
Mips_HWR24 = 257,
Mips_HWR25 = 258,
Mips_HWR26 = 259,
Mips_HWR27 = 260,
Mips_HWR28 = 261,
Mips_HWR29 = 262,
Mips_HWR30 = 263,
Mips_HWR31 = 264,
Mips_K0 = 265,
Mips_K1 = 266,
Mips_LO0 = 267,
Mips_LO1 = 268,
Mips_LO2 = 269,
Mips_LO3 = 270,
Mips_MPL0 = 271,
Mips_MPL1 = 272,
Mips_MPL2 = 273,
Mips_P0 = 274,
Mips_P1 = 275,
Mips_P2 = 276,
Mips_RA_64 = 277,
Mips_S0 = 278,
Mips_S1 = 279,
Mips_S2 = 280,
Mips_S3 = 281,
Mips_S4 = 282,
Mips_S5 = 283,
Mips_S6 = 284,
Mips_S7 = 285,
Mips_SP_64 = 286,
Mips_T0 = 287,
Mips_T1 = 288,
Mips_T2 = 289,
Mips_T3 = 290,
Mips_T4 = 291,
Mips_T5 = 292,
Mips_T6 = 293,
Mips_T7 = 294,
Mips_T8 = 295,
Mips_T9 = 296,
Mips_V0 = 297,
Mips_V1 = 298,
Mips_W0 = 299,
Mips_W1 = 300,
Mips_W2 = 301,
Mips_W3 = 302,
Mips_W4 = 303,
Mips_W5 = 304,
Mips_W6 = 305,
Mips_W7 = 306,
Mips_W8 = 307,
Mips_W9 = 308,
Mips_W10 = 309,
Mips_W11 = 310,
Mips_W12 = 311,
Mips_W13 = 312,
Mips_W14 = 313,
Mips_W15 = 314,
Mips_W16 = 315,
Mips_W17 = 316,
Mips_W18 = 317,
Mips_W19 = 318,
Mips_W20 = 319,
Mips_W21 = 320,
Mips_W22 = 321,
Mips_W23 = 322,
Mips_W24 = 323,
Mips_W25 = 324,
Mips_W26 = 325,
Mips_W27 = 326,
Mips_W28 = 327,
Mips_W29 = 328,
Mips_W30 = 329,
Mips_W31 = 330,
Mips_ZERO_64 = 331,
Mips_A0_64 = 332,
Mips_A1_64 = 333,
Mips_A2_64 = 334,
Mips_A3_64 = 335,
Mips_AC0_64 = 336,
Mips_D0_64 = 337,
Mips_D1_64 = 338,
Mips_D2_64 = 339,
Mips_D3_64 = 340,
Mips_D4_64 = 341,
Mips_D5_64 = 342,
Mips_D6_64 = 343,
Mips_D7_64 = 344,
Mips_D8_64 = 345,
Mips_D9_64 = 346,
Mips_D10_64 = 347,
Mips_D11_64 = 348,
Mips_D12_64 = 349,
Mips_D13_64 = 350,
Mips_D14_64 = 351,
Mips_D15_64 = 352,
Mips_D16_64 = 353,
Mips_D17_64 = 354,
Mips_D18_64 = 355,
Mips_D19_64 = 356,
Mips_D20_64 = 357,
Mips_D21_64 = 358,
Mips_D22_64 = 359,
Mips_D23_64 = 360,
Mips_D24_64 = 361,
Mips_D25_64 = 362,
Mips_D26_64 = 363,
Mips_D27_64 = 364,
Mips_D28_64 = 365,
Mips_D29_64 = 366,
Mips_D30_64 = 367,
Mips_D31_64 = 368,
Mips_DSPOutFlag16_19 = 369,
Mips_HI0_64 = 370,
Mips_K0_64 = 371,
Mips_K1_64 = 372,
Mips_LO0_64 = 373,
Mips_S0_64 = 374,
Mips_S1_64 = 375,
Mips_S2_64 = 376,
Mips_S3_64 = 377,
Mips_S4_64 = 378,
Mips_S5_64 = 379,
Mips_S6_64 = 380,
Mips_S7_64 = 381,
Mips_T0_64 = 382,
Mips_T1_64 = 383,
Mips_T2_64 = 384,
Mips_T3_64 = 385,
Mips_T4_64 = 386,
Mips_T5_64 = 387,
Mips_T6_64 = 388,
Mips_T7_64 = 389,
Mips_T8_64 = 390,
Mips_T9_64 = 391,
Mips_V0_64 = 392,
Mips_V1_64 = 393,
Mips_NUM_TARGET_REGS // 394
};
// Register classes
enum {
Mips_OddSPRegClassID = 0,
Mips_CCRRegClassID = 1,
Mips_COP2RegClassID = 2,
Mips_COP3RegClassID = 3,
Mips_DSPRRegClassID = 4,
Mips_FGR32RegClassID = 5,
Mips_FGRCCRegClassID = 6,
Mips_FGRH32RegClassID = 7,
Mips_GPR32RegClassID = 8,
Mips_HWRegsRegClassID = 9,
Mips_OddSP_with_sub_hiRegClassID = 10,
Mips_FGR32_and_OddSPRegClassID = 11,
Mips_FGRH32_and_OddSPRegClassID = 12,
Mips_OddSP_with_sub_hi_with_sub_hi_in_FGRH32RegClassID = 13,
Mips_CPU16RegsPlusSPRegClassID = 14,
Mips_CCRegClassID = 15,
Mips_CPU16RegsRegClassID = 16,
Mips_FCCRegClassID = 17,
Mips_GPRMM16RegClassID = 18,
Mips_GPRMM16MovePRegClassID = 19,
Mips_GPRMM16ZeroRegClassID = 20,
Mips_MSACtrlRegClassID = 21,
Mips_OddSP_with_sub_hi_with_sub_hi_in_FGR32RegClassID = 22,
Mips_CPU16Regs_and_GPRMM16ZeroRegClassID = 23,
Mips_CPU16Regs_and_GPRMM16MovePRegClassID = 24,
Mips_GPRMM16MoveP_and_GPRMM16ZeroRegClassID = 25,
Mips_HI32DSPRegClassID = 26,
Mips_LO32DSPRegClassID = 27,
Mips_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroRegClassID = 28,
Mips_CPURARegRegClassID = 29,
Mips_CPUSPRegRegClassID = 30,
Mips_DSPCCRegClassID = 31,
Mips_HI32RegClassID = 32,
Mips_LO32RegClassID = 33,
Mips_FGR64RegClassID = 34,
Mips_GPR64RegClassID = 35,
Mips_AFGR64RegClassID = 36,
Mips_FGR64_and_OddSPRegClassID = 37,
Mips_GPR64_with_sub_32_in_CPU16RegsPlusSPRegClassID = 38,
Mips_AFGR64_and_OddSPRegClassID = 39,
Mips_GPR64_with_sub_32_in_CPU16RegsRegClassID = 40,
Mips_GPR64_with_sub_32_in_GPRMM16MovePRegClassID = 41,
Mips_GPR64_with_sub_32_in_GPRMM16ZeroRegClassID = 42,
Mips_GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16ZeroRegClassID = 43,
Mips_ACC64DSPRegClassID = 44,
Mips_GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MovePRegClassID = 45,
Mips_GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16ZeroRegClassID = 46,
Mips_GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroRegClassID = 47,
Mips_OCTEON_MPLRegClassID = 48,
Mips_OCTEON_PRegClassID = 49,
Mips_ACC64RegClassID = 50,
Mips_GPR64_with_sub_32_in_CPURARegRegClassID = 51,
Mips_GPR64_with_sub_32_in_CPUSPRegRegClassID = 52,
Mips_HI64RegClassID = 53,
Mips_LO64RegClassID = 54,
Mips_MSA128BRegClassID = 55,
Mips_MSA128DRegClassID = 56,
Mips_MSA128HRegClassID = 57,
Mips_MSA128WRegClassID = 58,
Mips_MSA128B_with_sub_64_in_OddSPRegClassID = 59,
Mips_MSA128WEvensRegClassID = 60,
Mips_ACC128RegClassID = 61,
};
#endif // GET_REGINFO_ENUM
/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|*MC Register Information *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
/* Capstone Disassembly Engine, http://www.capstone-engine.org */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
#ifdef GET_REGINFO_MC_DESC
#undef GET_REGINFO_MC_DESC
static const MCPhysReg MipsRegDiffLists[] = {
/* 0 */ 0, 0,
/* 2 */ 4, 1, 1, 1, 1, 0,
/* 8 */ 364, 65286, 1, 1, 1, 0,
/* 14 */ 20, 1, 0,
/* 17 */ 21, 1, 0,
/* 20 */ 22, 1, 0,
/* 23 */ 23, 1, 0,
/* 26 */ 24, 1, 0,
/* 29 */ 25, 1, 0,
/* 32 */ 26, 1, 0,
/* 35 */ 27, 1, 0,
/* 38 */ 28, 1, 0,
/* 41 */ 29, 1, 0,
/* 44 */ 30, 1, 0,
/* 47 */ 31, 1, 0,
/* 50 */ 32, 1, 0,
/* 53 */ 33, 1, 0,
/* 56 */ 34, 1, 0,
/* 59 */ 35, 1, 0,
/* 62 */ 65439, 1, 0,
/* 65 */ 65513, 1, 0,
/* 68 */ 3, 0,
/* 70 */ 4, 0,
/* 72 */ 6, 0,
/* 74 */ 11, 0,
/* 76 */ 12, 0,
/* 78 */ 22, 0,
/* 80 */ 23, 0,
/* 82 */ 29, 0,
/* 84 */ 30, 0,
/* 86 */ 65308, 72, 0,
/* 89 */ 65346, 72, 0,
/* 92 */ 38, 65322, 73, 0,
/* 96 */ 95, 0,
/* 98 */ 96, 0,
/* 100 */ 106, 0,
/* 102 */ 187, 0,
/* 104 */ 219, 0,
/* 106 */ 258, 0,
/* 108 */ 266, 0,
/* 110 */ 310, 0,
/* 112 */ 65031, 0,
/* 114 */ 65108, 0,
/* 116 */ 65172, 0,
/* 118 */ 65226, 0,
/* 120 */ 65229, 0,
/* 122 */ 65270, 0,
/* 124 */ 65278, 0,
/* 126 */ 65295, 0,
/* 128 */ 65317, 0,
/* 130 */ 37, 65430, 103, 65395, 65333, 0,
/* 136 */ 65349, 0,
/* 138 */ 65395, 0,
/* 140 */ 65410, 0,
/* 142 */ 65415, 0,
/* 144 */ 65419, 0,
/* 146 */ 65420, 0,
/* 148 */ 65421, 0,
/* 150 */ 65422, 0,
/* 152 */ 65430, 0,
/* 154 */ 65440, 0,
/* 156 */ 65441, 0,
/* 158 */ 141, 65498, 0,
/* 161 */ 65516, 234, 65498, 0,
/* 165 */ 65515, 235, 65498, 0,
/* 169 */ 65514, 236, 65498, 0,
/* 173 */ 65513, 237, 65498, 0,
/* 177 */ 65512, 238, 65498, 0,
/* 181 */ 65511, 239, 65498, 0,
/* 185 */ 65510, 240, 65498, 0,
/* 189 */ 65509, 241, 65498, 0,
/* 193 */ 65508, 242, 65498, 0,
/* 197 */ 65507, 243, 65498, 0,
/* 201 */ 65506, 244, 65498, 0,
/* 205 */ 65505, 245, 65498, 0,
/* 209 */ 65504, 246, 65498, 0,
/* 213 */ 65503, 247, 65498, 0,
/* 217 */ 65502, 248, 65498, 0,
/* 221 */ 65501, 249, 65498, 0,
/* 225 */ 65500, 250, 65498, 0,
/* 229 */ 65295, 347, 65499, 0,
/* 233 */ 65333, 344, 65502, 0,
/* 237 */ 65507, 0,
/* 239 */ 65510, 0,
/* 241 */ 65511, 0,
/* 243 */ 65512, 0,
/* 245 */ 65516, 0,
/* 247 */ 65521, 0,
/* 249 */ 65522, 0,
/* 251 */ 65535, 0,
};
static const uint16_t MipsSubRegIdxLists[] = {
/* 0 */ 1, 0,
/* 2 */ 3, 4, 5, 6, 7, 0,
/* 8 */ 2, 9, 8, 0,
/* 12 */ 9, 1, 8, 10, 11, 0,
};
static const MCRegisterDesc MipsRegDesc[] = { // Descriptors
{ 6, 0, 0, 0, 0, 0 },
{ 2007, 1, 82, 1, 4017, 0 },
{ 2010, 1, 1, 1, 4017, 0 },
{ 2102, 1, 1, 1, 4017, 0 },
{ 1973, 1, 1, 1, 4017, 0 },
{ 2027, 8, 1, 2, 32, 4 },
{ 2054, 1, 1, 1, 1089, 0 },
{ 2071, 1, 1, 1, 1089, 0 },
{ 1985, 1, 102, 1, 1089, 0 },
{ 1988, 1, 104, 1, 1089, 0 },
{ 2061, 1, 1, 1, 1089, 0 },
{ 2000, 1, 1, 1, 1089, 0 },
{ 1994, 1, 1, 1, 1089, 0 },
{ 2038, 1, 1, 1, 1089, 0 },
{ 2092, 1, 1, 1, 1089, 0 },
{ 2081, 1, 1, 1, 1089, 0 },
{ 2019, 1, 1, 1, 1089, 0 },
{ 2045, 1, 1, 1, 1089, 0 },
{ 1970, 1, 1, 1, 1089, 0 },
{ 1967, 1, 106, 1, 1089, 0 },
{ 1991, 1, 108, 1, 1089, 0 },
{ 1980, 1, 110, 1, 1089, 0 },
{ 152, 1, 110, 1, 1089, 0 },
{ 365, 1, 110, 1, 1089, 0 },
{ 537, 1, 110, 1, 1089, 0 },
{ 703, 1, 110, 1, 1089, 0 },
{ 155, 190, 110, 9, 1042, 10 },
{ 368, 190, 1, 9, 1042, 10 },
{ 540, 190, 1, 9, 1042, 10 },
{ 706, 190, 1, 9, 1042, 10 },
{ 1271, 237, 1, 0, 0, 2 },
{ 160, 1, 1, 1, 1153, 0 },
{ 373, 1, 1, 1, 1153, 0 },
{ 545, 1, 1, 1, 1153, 0 },
{ 711, 1, 1, 1, 1153, 0 },
{ 1278, 1, 1, 1, 1153, 0 },
{ 1412, 1, 1, 1, 1153, 0 },
{ 1542, 1, 1, 1, 1153, 0 },
{ 1672, 1, 1, 1, 1153, 0 },
{ 70, 1, 1, 1, 1153, 0 },
{ 283, 1, 1, 1, 1153, 0 },
{ 496, 1, 1, 1, 1153, 0 },
{ 662, 1, 1, 1, 1153, 0 },
{ 820, 1, 1, 1, 1153, 0 },
{ 1383, 1, 1, 1, 1153, 0 },
{ 1513, 1, 1, 1, 1153, 0 },
{ 1643, 1, 1, 1, 1153, 0 },
{ 1773, 1, 1, 1, 1153, 0 },
{ 1911, 1, 1, 1, 1153, 0 },
{ 130, 1, 1, 1, 1153, 0 },
{ 343, 1, 1, 1, 1153, 0 },
{ 531, 1, 1, 1, 1153, 0 },
{ 697, 1, 1, 1, 1153, 0 },
{ 842, 1, 1, 1, 1153, 0 },
{ 1405, 1, 1, 1, 1153, 0 },
{ 1535, 1, 1, 1, 1153, 0 },
{ 1665, 1, 1, 1, 1153, 0 },
{ 1795, 1, 1, 1, 1153, 0 },
{ 1933, 1, 1, 1, 1153, 0 },
{ 0, 1, 1, 1, 1153, 0 },
{ 213, 1, 1, 1, 1153, 0 },
{ 426, 1, 1, 1, 1153, 0 },
{ 592, 1, 1, 1, 1153, 0 },
{ 750, 1, 1, 1, 1153, 0 },
{ 1313, 1, 1, 1, 1153, 0 },
{ 1447, 1, 1, 1, 1153, 0 },
{ 1577, 1, 1, 1, 1153, 0 },
{ 1707, 1, 1, 1, 1153, 0 },
{ 1829, 1, 1, 1, 1153, 0 },
{ 45, 1, 1, 1, 1153, 0 },
{ 258, 1, 1, 1, 1153, 0 },
{ 471, 1, 1, 1, 1153, 0 },
{ 637, 1, 1, 1, 1153, 0 },
{ 795, 1, 1, 1, 1153, 0 },
{ 1358, 1, 1, 1, 1153, 0 },
{ 1488, 1, 1, 1, 1153, 0 },
{ 1618, 1, 1, 1, 1153, 0 },
{ 1748, 1, 1, 1, 1153, 0 },
{ 1886, 1, 1, 1, 1153, 0 },
{ 105, 1, 1, 1, 1153, 0 },
{ 318, 1, 1, 1, 1153, 0 },
{ 7, 1, 1, 1, 1153, 0 },
{ 220, 1, 1, 1, 1153, 0 },
{ 433, 1, 1, 1, 1153, 0 },
{ 599, 1, 1, 1, 1153, 0 },
{ 757, 1, 1, 1, 1153, 0 },
{ 1320, 1, 1, 1, 1153, 0 },
{ 1454, 1, 1, 1, 1153, 0 },
{ 1584, 1, 1, 1, 1153, 0 },
{ 1714, 1, 1, 1, 1153, 0 },
{ 1836, 1, 1, 1, 1153, 0 },
{ 52, 1, 1, 1, 1153, 0 },
{ 265, 1, 1, 1, 1153, 0 },
{ 478, 1, 1, 1, 1153, 0 },
{ 644, 1, 1, 1, 1153, 0 },
{ 802, 1, 1, 1, 1153, 0 },
{ 1365, 1, 1, 1, 1153, 0 },
{ 1495, 1, 1, 1, 1153, 0 },
{ 1625, 1, 1, 1, 1153, 0 },
{ 1755, 1, 1, 1, 1153, 0 },
{ 1893, 1, 1, 1, 1153, 0 },
{ 112, 1, 1, 1, 1153, 0 },
{ 325, 1, 1, 1, 1153, 0 },
{ 164, 14, 1, 9, 994, 10 },
{ 377, 17, 1, 9, 994, 10 },
{ 549, 20, 1, 9, 994, 10 },
{ 715, 23, 1, 9, 994, 10 },
{ 1282, 26, 1, 9, 994, 10 },
{ 1416, 29, 1, 9, 994, 10 },
{ 1546, 32, 1, 9, 994, 10 },
{ 1676, 35, 1, 9, 994, 10 },
{ 1801, 38, 1, 9, 994, 10 },
{ 1939, 41, 1, 9, 994, 10 },
{ 14, 44, 1, 9, 994, 10 },
{ 227, 47, 1, 9, 994, 10 },
{ 440, 50, 1, 9, 994, 10 },
{ 606, 53, 1, 9, 994, 10 },
{ 764, 56, 1, 9, 994, 10 },
{ 1327, 59, 1, 9, 994, 10 },
{ 92, 1, 150, 1, 2401, 0 },
{ 305, 1, 148, 1, 2401, 0 },
{ 518, 1, 146, 1, 2401, 0 },
{ 684, 1, 144, 1, 2401, 0 },
{ 167, 1, 161, 1, 3985, 0 },
{ 380, 1, 165, 1, 3985, 0 },
{ 552, 1, 165, 1, 3985, 0 },
{ 718, 1, 169, 1, 3985, 0 },
{ 1285, 1, 169, 1, 3985, 0 },
{ 1419, 1, 173, 1, 3985, 0 },
{ 1549, 1, 173, 1, 3985, 0 },
{ 1679, 1, 177, 1, 3985, 0 },
{ 1804, 1, 177, 1, 3985, 0 },
{ 1942, 1, 181, 1, 3985, 0 },
{ 18, 1, 181, 1, 3985, 0 },
{ 231, 1, 185, 1, 3985, 0 },
{ 444, 1, 185, 1, 3985, 0 },
{ 610, 1, 189, 1, 3985, 0 },
{ 768, 1, 189, 1, 3985, 0 },
{ 1331, 1, 193, 1, 3985, 0 },
{ 1461, 1, 193, 1, 3985, 0 },
{ 1591, 1, 197, 1, 3985, 0 },
{ 1721, 1, 197, 1, 3985, 0 },
{ 1843, 1, 201, 1, 3985, 0 },
{ 59, 1, 201, 1, 3985, 0 },
{ 272, 1, 205, 1, 3985, 0 },
{ 485, 1, 205, 1, 3985, 0 },
{ 651, 1, 209, 1, 3985, 0 },
{ 809, 1, 209, 1, 3985, 0 },
{ 1372, 1, 213, 1, 3985, 0 },
{ 1502, 1, 213, 1, 3985, 0 },
{ 1632, 1, 217, 1, 3985, 0 },
{ 1762, 1, 217, 1, 3985, 0 },
{ 1900, 1, 221, 1, 3985, 0 },
{ 119, 1, 221, 1, 3985, 0 },
{ 332, 1, 225, 1, 3985, 0 },
{ 159, 1, 1, 1, 3985, 0 },
{ 372, 1, 1, 1, 3985, 0 },
{ 544, 1, 1, 1, 3985, 0 },
{ 710, 1, 1, 1, 3985, 0 },
{ 1277, 1, 1, 1, 3985, 0 },
{ 1411, 1, 1, 1, 3985, 0 },
{ 1541, 1, 1, 1, 3985, 0 },
{ 1671, 1, 1, 1, 3985, 0 },
{ 191, 1, 1, 1, 3985, 0 },
{ 404, 1, 1, 1, 3985, 0 },
{ 573, 1, 1, 1, 3985, 0 },
{ 731, 1, 1, 1, 3985, 0 },
{ 1294, 1, 1, 1, 3985, 0 },
{ 1428, 1, 1, 1, 3985, 0 },
{ 1558, 1, 1, 1, 3985, 0 },
{ 1688, 1, 1, 1, 3985, 0 },
{ 1813, 1, 1, 1, 3985, 0 },
{ 1951, 1, 1, 1, 3985, 0 },
{ 29, 1, 1, 1, 3985, 0 },
{ 242, 1, 1, 1, 3985, 0 },
{ 455, 1, 1, 1, 3985, 0 },
{ 621, 1, 1, 1, 3985, 0 },
{ 779, 1, 1, 1, 3985, 0 },
{ 1342, 1, 1, 1, 3985, 0 },
{ 1472, 1, 1, 1, 3985, 0 },
{ 1602, 1, 1, 1, 3985, 0 },
{ 1732, 1, 1, 1, 3985, 0 },
{ 1854, 1, 1, 1, 3985, 0 },
{ 76, 1, 1, 1, 3985, 0 },
{ 289, 1, 1, 1, 3985, 0 },
{ 502, 1, 1, 1, 3985, 0 },
{ 668, 1, 1, 1, 3985, 0 },
{ 826, 1, 1, 1, 3985, 0 },
{ 1389, 1, 1, 1, 3985, 0 },
{ 1519, 1, 1, 1, 3985, 0 },
{ 1649, 1, 1, 1, 3985, 0 },
{ 1779, 1, 1, 1, 3985, 0 },
{ 1917, 1, 1, 1, 3985, 0 },
{ 136, 1, 1, 1, 3985, 0 },
{ 349, 1, 1, 1, 3985, 0 },
{ 1253, 136, 1, 0, 1184, 2 },
{ 170, 1, 158, 1, 3953, 0 },
{ 383, 1, 158, 1, 3953, 0 },
{ 555, 1, 158, 1, 3953, 0 },
{ 721, 1, 158, 1, 3953, 0 },
{ 1288, 1, 158, 1, 3953, 0 },
{ 1422, 1, 158, 1, 3953, 0 },
{ 1552, 1, 158, 1, 3953, 0 },
{ 1682, 1, 158, 1, 3953, 0 },
{ 1807, 1, 158, 1, 3953, 0 },
{ 1945, 1, 158, 1, 3953, 0 },
{ 22, 1, 158, 1, 3953, 0 },
{ 235, 1, 158, 1, 3953, 0 },
{ 448, 1, 158, 1, 3953, 0 },
{ 614, 1, 158, 1, 3953, 0 },
{ 772, 1, 158, 1, 3953, 0 },
{ 1335, 1, 158, 1, 3953, 0 },
{ 1465, 1, 158, 1, 3953, 0 },
{ 1595, 1, 158, 1, 3953, 0 },
{ 1725, 1, 158, 1, 3953, 0 },
{ 1847, 1, 158, 1, 3953, 0 },
{ 63, 1, 158, 1, 3953, 0 },
{ 276, 1, 158, 1, 3953, 0 },
{ 489, 1, 158, 1, 3953, 0 },
{ 655, 1, 158, 1, 3953, 0 },
{ 813, 1, 158, 1, 3953, 0 },
{ 1376, 1, 158, 1, 3953, 0 },
{ 1506, 1, 158, 1, 3953, 0 },
{ 1636, 1, 158, 1, 3953, 0 },
{ 1766, 1, 158, 1, 3953, 0 },
{ 1904, 1, 158, 1, 3953, 0 },
{ 123, 1, 158, 1, 3953, 0 },
{ 336, 1, 158, 1, 3953, 0 },
{ 1259, 128, 1, 0, 1216, 2 },
{ 172, 1, 233, 1, 1826, 0 },
{ 385, 1, 134, 1, 1826, 0 },
{ 557, 1, 134, 1, 1826, 0 },
{ 723, 1, 134, 1, 1826, 0 },
{ 196, 1, 1, 1, 3921, 0 },
{ 409, 1, 1, 1, 3921, 0 },
{ 578, 1, 1, 1, 3921, 0 },
{ 736, 1, 1, 1, 3921, 0 },
{ 1299, 1, 1, 1, 3921, 0 },
{ 1433, 1, 1, 1, 3921, 0 },
{ 1563, 1, 1, 1, 3921, 0 },
{ 1693, 1, 1, 1, 3921, 0 },
{ 1818, 1, 1, 1, 3921, 0 },
{ 1956, 1, 1, 1, 3921, 0 },
{ 35, 1, 1, 1, 3921, 0 },
{ 248, 1, 1, 1, 3921, 0 },
{ 461, 1, 1, 1, 3921, 0 },
{ 627, 1, 1, 1, 3921, 0 },
{ 785, 1, 1, 1, 3921, 0 },
{ 1348, 1, 1, 1, 3921, 0 },
{ 1478, 1, 1, 1, 3921, 0 },
{ 1608, 1, 1, 1, 3921, 0 },
{ 1738, 1, 1, 1, 3921, 0 },
{ 1860, 1, 1, 1, 3921, 0 },
{ 82, 1, 1, 1, 3921, 0 },
{ 295, 1, 1, 1, 3921, 0 },
{ 508, 1, 1, 1, 3921, 0 },
{ 674, 1, 1, 1, 3921, 0 },
{ 832, 1, 1, 1, 3921, 0 },
{ 1395, 1, 1, 1, 3921, 0 },
{ 1525, 1, 1, 1, 3921, 0 },
{ 1655, 1, 1, 1, 3921, 0 },
{ 1785, 1, 1, 1, 3921, 0 },
{ 1923, 1, 1, 1, 3921, 0 },
{ 142, 1, 1, 1, 3921, 0 },
{ 355, 1, 1, 1, 3921, 0 },
{ 176, 1, 100, 1, 3921, 0 },
{ 389, 1, 100, 1, 3921, 0 },
{ 184, 1, 229, 1, 1794, 0 },
{ 397, 1, 126, 1, 1794, 0 },
{ 566, 1, 126, 1, 1794, 0 },
{ 727, 1, 126, 1, 1794, 0 },
{ 179, 1, 1, 1, 3889, 0 },
{ 392, 1, 1, 1, 3889, 0 },
{ 561, 1, 1, 1, 3889, 0 },
{ 188, 1, 1, 1, 3889, 0 },
{ 401, 1, 1, 1, 3889, 0 },
{ 570, 1, 1, 1, 3889, 0 },
{ 1239, 124, 1, 0, 1248, 2 },
{ 201, 1, 98, 1, 3857, 0 },
{ 414, 1, 98, 1, 3857, 0 },
{ 583, 1, 98, 1, 3857, 0 },
{ 741, 1, 98, 1, 3857, 0 },
{ 1304, 1, 98, 1, 3857, 0 },
{ 1438, 1, 98, 1, 3857, 0 },
{ 1568, 1, 98, 1, 3857, 0 },
{ 1698, 1, 98, 1, 3857, 0 },
{ 1265, 122, 1, 0, 1280, 2 },
{ 204, 1, 96, 1, 3825, 0 },
{ 417, 1, 96, 1, 3825, 0 },
{ 586, 1, 96, 1, 3825, 0 },
{ 744, 1, 96, 1, 3825, 0 },
{ 1307, 1, 96, 1, 3825, 0 },
{ 1441, 1, 96, 1, 3825, 0 },
{ 1571, 1, 96, 1, 3825, 0 },
{ 1701, 1, 96, 1, 3825, 0 },
{ 1823, 1, 96, 1, 3825, 0 },
{ 1961, 1, 96, 1, 3825, 0 },
{ 207, 1, 96, 1, 3825, 0 },
{ 420, 1, 96, 1, 3825, 0 },
{ 210, 92, 1, 8, 1425, 10 },
{ 423, 92, 1, 8, 1425, 10 },
{ 589, 92, 1, 8, 1425, 10 },
{ 747, 92, 1, 8, 1425, 10 },
{ 1310, 92, 1, 8, 1425, 10 },
{ 1444, 92, 1, 8, 1425, 10 },
{ 1574, 92, 1, 8, 1425, 10 },
{ 1704, 92, 1, 8, 1425, 10 },
{ 1826, 92, 1, 8, 1425, 10 },
{ 1964, 92, 1, 8, 1425, 10 },
{ 41, 92, 1, 8, 1425, 10 },
{ 254, 92, 1, 8, 1425, 10 },
{ 467, 92, 1, 8, 1425, 10 },
{ 633, 92, 1, 8, 1425, 10 },
{ 791, 92, 1, 8, 1425, 10 },
{ 1354, 92, 1, 8, 1425, 10 },
{ 1484, 92, 1, 8, 1425, 10 },
{ 1614, 92, 1, 8, 1425, 10 },
{ 1744, 92, 1, 8, 1425, 10 },
{ 1866, 92, 1, 8, 1425, 10 },
{ 88, 92, 1, 8, 1425, 10 },
{ 301, 92, 1, 8, 1425, 10 },
{ 514, 92, 1, 8, 1425, 10 },
{ 680, 92, 1, 8, 1425, 10 },
{ 838, 92, 1, 8, 1425, 10 },
{ 1401, 92, 1, 8, 1425, 10 },
{ 1531, 92, 1, 8, 1425, 10 },
{ 1661, 92, 1, 8, 1425, 10 },
{ 1791, 92, 1, 8, 1425, 10 },
{ 1929, 92, 1, 8, 1425, 10 },
{ 148, 92, 1, 8, 1425, 10 },
{ 361, 92, 1, 8, 1425, 10 },
{ 1245, 118, 1, 0, 1921, 2 },
{ 869, 118, 1, 0, 1921, 2 },
{ 947, 118, 1, 0, 1921, 2 },
{ 997, 118, 1, 0, 1921, 2 },
{ 1035, 118, 1, 0, 1921, 2 },
{ 875, 130, 1, 12, 656, 10 },
{ 882, 93, 159, 9, 1377, 10 },
{ 953, 93, 159, 9, 1377, 10 },
{ 1003, 93, 159, 9, 1377, 10 },
{ 1041, 93, 159, 9, 1377, 10 },
{ 1073, 93, 159, 9, 1377, 10 },
{ 1105, 93, 159, 9, 1377, 10 },
{ 1137, 93, 159, 9, 1377, 10 },
{ 1169, 93, 159, 9, 1377, 10 },
{ 1201, 93, 159, 9, 1377, 10 },
{ 1227, 93, 159, 9, 1377, 10 },
{ 848, 93, 159, 9, 1377, 10 },
{ 926, 93, 159, 9, 1377, 10 },
{ 983, 93, 159, 9, 1377, 10 },
{ 1021, 93, 159, 9, 1377, 10 },
{ 1059, 93, 159, 9, 1377, 10 },
{ 1091, 93, 159, 9, 1377, 10 },
{ 1123, 93, 159, 9, 1377, 10 },
{ 1155, 93, 159, 9, 1377, 10 },
{ 1187, 93, 159, 9, 1377, 10 },
{ 1213, 93, 159, 9, 1377, 10 },
{ 855, 93, 159, 9, 1377, 10 },
{ 933, 93, 159, 9, 1377, 10 },
{ 990, 93, 159, 9, 1377, 10 },
{ 1028, 93, 159, 9, 1377, 10 },
{ 1066, 93, 159, 9, 1377, 10 },
{ 1098, 93, 159, 9, 1377, 10 },
{ 1130, 93, 159, 9, 1377, 10 },
{ 1162, 93, 159, 9, 1377, 10 },
{ 1194, 93, 159, 9, 1377, 10 },
{ 1220, 93, 159, 9, 1377, 10 },
{ 862, 93, 159, 9, 1377, 10 },
{ 940, 93, 159, 9, 1377, 10 },
{ 1870, 1, 116, 1, 1120, 0 },
{ 888, 138, 235, 0, 1344, 2 },
{ 895, 152, 1, 0, 2241, 2 },
{ 959, 152, 1, 0, 2241, 2 },
{ 901, 152, 231, 0, 1312, 2 },
{ 908, 154, 1, 0, 2273, 2 },
{ 965, 154, 1, 0, 2273, 2 },
{ 1009, 154, 1, 0, 2273, 2 },
{ 1047, 154, 1, 0, 2273, 2 },
{ 1079, 154, 1, 0, 2273, 2 },
{ 1111, 154, 1, 0, 2273, 2 },
{ 1143, 154, 1, 0, 2273, 2 },
{ 1175, 154, 1, 0, 2273, 2 },
{ 914, 156, 1, 0, 2273, 2 },
{ 971, 156, 1, 0, 2273, 2 },
{ 1015, 156, 1, 0, 2273, 2 },
{ 1053, 156, 1, 0, 2273, 2 },
{ 1085, 156, 1, 0, 2273, 2 },
{ 1117, 156, 1, 0, 2273, 2 },
{ 1149, 156, 1, 0, 2273, 2 },
{ 1181, 156, 1, 0, 2273, 2 },
{ 1207, 156, 1, 0, 2273, 2 },
{ 1233, 156, 1, 0, 2273, 2 },
{ 920, 156, 1, 0, 2273, 2 },
{ 977, 156, 1, 0, 2273, 2 },
};
// OddSP Register Class...
static const MCPhysReg OddSP[] = {
Mips_F1, Mips_F3, Mips_F5, Mips_F7, Mips_F9, Mips_F11, Mips_F13, Mips_F15, Mips_F17, Mips_F19, Mips_F21, Mips_F23, Mips_F25, Mips_F27, Mips_F29, Mips_F31, Mips_F_HI1, Mips_F_HI3, Mips_F_HI5, Mips_F_HI7, Mips_F_HI9, Mips_F_HI11, Mips_F_HI13, Mips_F_HI15, Mips_F_HI17, Mips_F_HI19, Mips_F_HI21, Mips_F_HI23, Mips_F_HI25, Mips_F_HI27, Mips_F_HI29, Mips_F_HI31, Mips_D1, Mips_D3, Mips_D5, Mips_D7, Mips_D9, Mips_D11, Mips_D13, Mips_D15, Mips_D1_64, Mips_D3_64, Mips_D5_64, Mips_D7_64, Mips_D9_64, Mips_D11_64, Mips_D13_64, Mips_D15_64, Mips_D17_64, Mips_D19_64, Mips_D21_64, Mips_D23_64, Mips_D25_64, Mips_D27_64, Mips_D29_64, Mips_D31_64,
};
// OddSP Bit set.
static const uint8_t OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x55, 0x50, 0x55, 0x55, 0x55, 0x05, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x55, 0x55, 0x55, 0x01,
};
// CCR Register Class...
static const MCPhysReg CCR[] = {
Mips_FCR0, Mips_FCR1, Mips_FCR2, Mips_FCR3, Mips_FCR4, Mips_FCR5, Mips_FCR6, Mips_FCR7, Mips_FCR8, Mips_FCR9, Mips_FCR10, Mips_FCR11, Mips_FCR12, Mips_FCR13, Mips_FCR14, Mips_FCR15, Mips_FCR16, Mips_FCR17, Mips_FCR18, Mips_FCR19, Mips_FCR20, Mips_FCR21, Mips_FCR22, Mips_FCR23, Mips_FCR24, Mips_FCR25, Mips_FCR26, Mips_FCR27, Mips_FCR28, Mips_FCR29, Mips_FCR30, Mips_FCR31,
};
// CCR Bit set.
static const uint8_t CCRBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// COP2 Register Class...
static const MCPhysReg COP2[] = {
Mips_COP20, Mips_COP21, Mips_COP22, Mips_COP23, Mips_COP24, Mips_COP25, Mips_COP26, Mips_COP27, Mips_COP28, Mips_COP29, Mips_COP210, Mips_COP211, Mips_COP212, Mips_COP213, Mips_COP214, Mips_COP215, Mips_COP216, Mips_COP217, Mips_COP218, Mips_COP219, Mips_COP220, Mips_COP221, Mips_COP222, Mips_COP223, Mips_COP224, Mips_COP225, Mips_COP226, Mips_COP227, Mips_COP228, Mips_COP229, Mips_COP230, Mips_COP231,
};
// COP2 Bit set.
static const uint8_t COP2Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x01, 0xf8, 0xff, 0xff, 0x01,
};
// COP3 Register Class...
static const MCPhysReg COP3[] = {
Mips_COP30, Mips_COP31, Mips_COP32, Mips_COP33, Mips_COP34, Mips_COP35, Mips_COP36, Mips_COP37, Mips_COP38, Mips_COP39, Mips_COP310, Mips_COP311, Mips_COP312, Mips_COP313, Mips_COP314, Mips_COP315, Mips_COP316, Mips_COP317, Mips_COP318, Mips_COP319, Mips_COP320, Mips_COP321, Mips_COP322, Mips_COP323, Mips_COP324, Mips_COP325, Mips_COP326, Mips_COP327, Mips_COP328, Mips_COP329, Mips_COP330, Mips_COP331,
};
// COP3 Bit set.
static const uint8_t COP3Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x07, 0x00, 0x00, 0xfe, 0xff, 0x7f,
};
// DSPR Register Class...
static const MCPhysReg DSPR[] = {
Mips_ZERO, Mips_AT, Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3, Mips_T0, Mips_T1, Mips_T2, Mips_T3, Mips_T4, Mips_T5, Mips_T6, Mips_T7, Mips_S0, Mips_S1, Mips_S2, Mips_S3, Mips_S4, Mips_S5, Mips_S6, Mips_S7, Mips_T8, Mips_T9, Mips_K0, Mips_K1, Mips_GP, Mips_SP, Mips_FP, Mips_RA,
};
// DSPR Bit set.
static const uint8_t DSPRBits[] = {
0x02, 0x03, 0xf8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xc0, 0xbf, 0xff, 0x07,
};
// FGR32 Register Class...
static const MCPhysReg FGR32[] = {
Mips_F0, Mips_F1, Mips_F2, Mips_F3, Mips_F4, Mips_F5, Mips_F6, Mips_F7, Mips_F8, Mips_F9, Mips_F10, Mips_F11, Mips_F12, Mips_F13, Mips_F14, Mips_F15, Mips_F16, Mips_F17, Mips_F18, Mips_F19, Mips_F20, Mips_F21, Mips_F22, Mips_F23, Mips_F24, Mips_F25, Mips_F26, Mips_F27, Mips_F28, Mips_F29, Mips_F30, Mips_F31,
};
// FGR32 Bit set.
static const uint8_t FGR32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// FGRCC Register Class...
static const MCPhysReg FGRCC[] = {
Mips_F0, Mips_F1, Mips_F2, Mips_F3, Mips_F4, Mips_F5, Mips_F6, Mips_F7, Mips_F8, Mips_F9, Mips_F10, Mips_F11, Mips_F12, Mips_F13, Mips_F14, Mips_F15, Mips_F16, Mips_F17, Mips_F18, Mips_F19, Mips_F20, Mips_F21, Mips_F22, Mips_F23, Mips_F24, Mips_F25, Mips_F26, Mips_F27, Mips_F28, Mips_F29, Mips_F30, Mips_F31,
};
// FGRCC Bit set.
static const uint8_t FGRCCBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// FGRH32 Register Class...
static const MCPhysReg FGRH32[] = {
Mips_F_HI0, Mips_F_HI1, Mips_F_HI2, Mips_F_HI3, Mips_F_HI4, Mips_F_HI5, Mips_F_HI6, Mips_F_HI7, Mips_F_HI8, Mips_F_HI9, Mips_F_HI10, Mips_F_HI11, Mips_F_HI12, Mips_F_HI13, Mips_F_HI14, Mips_F_HI15, Mips_F_HI16, Mips_F_HI17, Mips_F_HI18, Mips_F_HI19, Mips_F_HI20, Mips_F_HI21, Mips_F_HI22, Mips_F_HI23, Mips_F_HI24, Mips_F_HI25, Mips_F_HI26, Mips_F_HI27, Mips_F_HI28, Mips_F_HI29, Mips_F_HI30, Mips_F_HI31,
};
// FGRH32 Bit set.
static const uint8_t FGRH32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x0f,
};
// GPR32 Register Class...
static const MCPhysReg GPR32[] = {
Mips_ZERO, Mips_AT, Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3, Mips_T0, Mips_T1, Mips_T2, Mips_T3, Mips_T4, Mips_T5, Mips_T6, Mips_T7, Mips_S0, Mips_S1, Mips_S2, Mips_S3, Mips_S4, Mips_S5, Mips_S6, Mips_S7, Mips_T8, Mips_T9, Mips_K0, Mips_K1, Mips_GP, Mips_SP, Mips_FP, Mips_RA,
};
// GPR32 Bit set.
static const uint8_t GPR32Bits[] = {
0x02, 0x03, 0xf8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xc0, 0xbf, 0xff, 0x07,
};
// HWRegs Register Class...
static const MCPhysReg HWRegs[] = {
Mips_HWR0, Mips_HWR1, Mips_HWR2, Mips_HWR3, Mips_HWR4, Mips_HWR5, Mips_HWR6, Mips_HWR7, Mips_HWR8, Mips_HWR9, Mips_HWR10, Mips_HWR11, Mips_HWR12, Mips_HWR13, Mips_HWR14, Mips_HWR15, Mips_HWR16, Mips_HWR17, Mips_HWR18, Mips_HWR19, Mips_HWR20, Mips_HWR21, Mips_HWR22, Mips_HWR23, Mips_HWR24, Mips_HWR25, Mips_HWR26, Mips_HWR27, Mips_HWR28, Mips_HWR29, Mips_HWR30, Mips_HWR31,
};
// HWRegs Bit set.
static const uint8_t HWRegsBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01,
};
// OddSP_with_sub_hi Register Class...
static const MCPhysReg OddSP_with_sub_hi[] = {
Mips_D1, Mips_D3, Mips_D5, Mips_D7, Mips_D9, Mips_D11, Mips_D13, Mips_D15, Mips_D1_64, Mips_D3_64, Mips_D5_64, Mips_D7_64, Mips_D9_64, Mips_D11_64, Mips_D13_64, Mips_D15_64, Mips_D17_64, Mips_D19_64, Mips_D21_64, Mips_D23_64, Mips_D25_64, Mips_D27_64, Mips_D29_64, Mips_D31_64,
};
// OddSP_with_sub_hi Bit set.
static const uint8_t OddSP_with_sub_hiBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x55, 0x55, 0x55, 0x01,
};
// FGR32_and_OddSP Register Class...
static const MCPhysReg FGR32_and_OddSP[] = {
Mips_F1, Mips_F3, Mips_F5, Mips_F7, Mips_F9, Mips_F11, Mips_F13, Mips_F15, Mips_F17, Mips_F19, Mips_F21, Mips_F23, Mips_F25, Mips_F27, Mips_F29, Mips_F31,
};
// FGR32_and_OddSP Bit set.
static const uint8_t FGR32_and_OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x55, 0x55, 0x55, 0x05,
};
// FGRH32_and_OddSP Register Class...
static const MCPhysReg FGRH32_and_OddSP[] = {
Mips_F_HI1, Mips_F_HI3, Mips_F_HI5, Mips_F_HI7, Mips_F_HI9, Mips_F_HI11, Mips_F_HI13, Mips_F_HI15, Mips_F_HI17, Mips_F_HI19, Mips_F_HI21, Mips_F_HI23, Mips_F_HI25, Mips_F_HI27, Mips_F_HI29, Mips_F_HI31,
};
// FGRH32_and_OddSP Bit set.
static const uint8_t FGRH32_and_OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0x0a,
};
// OddSP_with_sub_hi_with_sub_hi_in_FGRH32 Register Class...
static const MCPhysReg OddSP_with_sub_hi_with_sub_hi_in_FGRH32[] = {
Mips_D1_64, Mips_D3_64, Mips_D5_64, Mips_D7_64, Mips_D9_64, Mips_D11_64, Mips_D13_64, Mips_D15_64, Mips_D17_64, Mips_D19_64, Mips_D21_64, Mips_D23_64, Mips_D25_64, Mips_D27_64, Mips_D29_64, Mips_D31_64,
};
// OddSP_with_sub_hi_with_sub_hi_in_FGRH32 Bit set.
static const uint8_t OddSP_with_sub_hi_with_sub_hi_in_FGRH32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x55, 0x55, 0x55, 0x01,
};
// CPU16RegsPlusSP Register Class...
static const MCPhysReg CPU16RegsPlusSP[] = {
Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3, Mips_S0, Mips_S1, Mips_SP,
};
// CPU16RegsPlusSP Bit set.
static const uint8_t CPU16RegsPlusSPBits[] = {
0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x06,
};
// CC Register Class...
static const MCPhysReg CC[] = {
Mips_CC0, Mips_CC1, Mips_CC2, Mips_CC3, Mips_CC4, Mips_CC5, Mips_CC6, Mips_CC7,
};
// CC Bit set.
static const uint8_t CCBits[] = {
0x00, 0x00, 0x00, 0x80, 0x7f,
};
// CPU16Regs Register Class...
static const MCPhysReg CPU16Regs[] = {
Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3, Mips_S0, Mips_S1,
};
// CPU16Regs Bit set.
static const uint8_t CPU16RegsBits[] = {
0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x06,
};
// FCC Register Class...
static const MCPhysReg FCC[] = {
Mips_FCC0, Mips_FCC1, Mips_FCC2, Mips_FCC3, Mips_FCC4, Mips_FCC5, Mips_FCC6, Mips_FCC7,
};
// FCC Bit set.
static const uint8_t FCCBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07,
};
// GPRMM16 Register Class...
static const MCPhysReg GPRMM16[] = {
Mips_S0, Mips_S1, Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3,
};
// GPRMM16 Bit set.
static const uint8_t GPRMM16Bits[] = {
0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x06,
};
// GPRMM16MoveP Register Class...
static const MCPhysReg GPRMM16MoveP[] = {
Mips_ZERO, Mips_S1, Mips_V0, Mips_V1, Mips_S0, Mips_S2, Mips_S3, Mips_S4,
};
// GPRMM16MoveP Bit set.
static const uint8_t GPRMM16MovePBits[] = {
0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x06,
};
// GPRMM16Zero Register Class...
static const MCPhysReg GPRMM16Zero[] = {
Mips_ZERO, Mips_S1, Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3,
};
// GPRMM16Zero Bit set.
static const uint8_t GPRMM16ZeroBits[] = {
0x00, 0x00, 0xe0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x06,
};
// MSACtrl Register Class...
static const MCPhysReg MSACtrl[] = {
Mips_MSAIR, Mips_MSACSR, Mips_MSAAccess, Mips_MSASave, Mips_MSAModify, Mips_MSARequest, Mips_MSAMap, Mips_MSAUnmap,
};
// MSACtrl Bit set.
static const uint8_t MSACtrlBits[] = {
0x00, 0xfc, 0x03,
};
// OddSP_with_sub_hi_with_sub_hi_in_FGR32 Register Class...
static const MCPhysReg OddSP_with_sub_hi_with_sub_hi_in_FGR32[] = {
Mips_D1, Mips_D3, Mips_D5, Mips_D7, Mips_D9, Mips_D11, Mips_D13, Mips_D15,
};
// OddSP_with_sub_hi_with_sub_hi_in_FGR32 Bit set.
static const uint8_t OddSP_with_sub_hi_with_sub_hi_in_FGR32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x55,
};
// CPU16Regs_and_GPRMM16Zero Register Class...
static const MCPhysReg CPU16Regs_and_GPRMM16Zero[] = {
Mips_S1, Mips_V0, Mips_V1, Mips_A0, Mips_A1, Mips_A2, Mips_A3,
};
// CPU16Regs_and_GPRMM16Zero Bit set.
static const uint8_t CPU16Regs_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x06,
};
// CPU16Regs_and_GPRMM16MoveP Register Class...
static const MCPhysReg CPU16Regs_and_GPRMM16MoveP[] = {
Mips_S1, Mips_V0, Mips_V1, Mips_S0,
};
// CPU16Regs_and_GPRMM16MoveP Bit set.
static const uint8_t CPU16Regs_and_GPRMM16MovePBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x06,
};
// GPRMM16MoveP_and_GPRMM16Zero Register Class...
static const MCPhysReg GPRMM16MoveP_and_GPRMM16Zero[] = {
Mips_ZERO, Mips_S1, Mips_V0, Mips_V1,
};
// GPRMM16MoveP_and_GPRMM16Zero Bit set.
static const uint8_t GPRMM16MoveP_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x06,
};
// HI32DSP Register Class...
static const MCPhysReg HI32DSP[] = {
Mips_HI0, Mips_HI1, Mips_HI2, Mips_HI3,
};
// HI32DSP Bit set.
static const uint8_t HI32DSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x01,
};
// LO32DSP Register Class...
static const MCPhysReg LO32DSP[] = {
Mips_LO0, Mips_LO1, Mips_LO2, Mips_LO3,
};
// LO32DSP Bit set.
static const uint8_t LO32DSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78,
};
// GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero Register Class...
static const MCPhysReg GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero[] = {
Mips_S1, Mips_V0, Mips_V1,
};
// GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero Bit set.
static const uint8_t GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x06,
};
// CPURAReg Register Class...
static const MCPhysReg CPURAReg[] = {
Mips_RA,
};
// CPURAReg Bit set.
static const uint8_t CPURARegBits[] = {
0x00, 0x00, 0x08,
};
// CPUSPReg Register Class...
static const MCPhysReg CPUSPReg[] = {
Mips_SP,
};
// CPUSPReg Bit set.
static const uint8_t CPUSPRegBits[] = {
0x00, 0x00, 0x10,
};
// DSPCC Register Class...
static const MCPhysReg DSPCC[] = {
Mips_DSPCCond,
};
// DSPCC Bit set.
static const uint8_t DSPCCBits[] = {
0x04,
};
// HI32 Register Class...
static const MCPhysReg HI32[] = {
Mips_HI0,
};
// HI32 Bit set.
static const uint8_t HI32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20,
};
// LO32 Register Class...
static const MCPhysReg LO32[] = {
Mips_LO0,
};
// LO32 Bit set.
static const uint8_t LO32Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08,
};
// FGR64 Register Class...
static const MCPhysReg FGR64[] = {
Mips_D0_64, Mips_D1_64, Mips_D2_64, Mips_D3_64, Mips_D4_64, Mips_D5_64, Mips_D6_64, Mips_D7_64, Mips_D8_64, Mips_D9_64, Mips_D10_64, Mips_D11_64, Mips_D12_64, Mips_D13_64, Mips_D14_64, Mips_D15_64, Mips_D16_64, Mips_D17_64, Mips_D18_64, Mips_D19_64, Mips_D20_64, Mips_D21_64, Mips_D22_64, Mips_D23_64, Mips_D24_64, Mips_D25_64, Mips_D26_64, Mips_D27_64, Mips_D28_64, Mips_D29_64, Mips_D30_64, Mips_D31_64,
};
// FGR64 Bit set.
static const uint8_t FGR64Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x01,
};
// GPR64 Register Class...
static const MCPhysReg GPR64[] = {
Mips_ZERO_64, Mips_AT_64, Mips_V0_64, Mips_V1_64, Mips_A0_64, Mips_A1_64, Mips_A2_64, Mips_A3_64, Mips_T0_64, Mips_T1_64, Mips_T2_64, Mips_T3_64, Mips_T4_64, Mips_T5_64, Mips_T6_64, Mips_T7_64, Mips_S0_64, Mips_S1_64, Mips_S2_64, Mips_S3_64, Mips_S4_64, Mips_S5_64, Mips_S6_64, Mips_S7_64, Mips_T8_64, Mips_T9_64, Mips_K0_64, Mips_K1_64, Mips_GP_64, Mips_SP_64, Mips_FP_64, Mips_RA_64,
};
// GPR64 Bit set.
static const uint8_t GPR64Bits[] = {
0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xff, 0x03,
};
// AFGR64 Register Class...
static const MCPhysReg AFGR64[] = {
Mips_D0, Mips_D1, Mips_D2, Mips_D3, Mips_D4, Mips_D5, Mips_D6, Mips_D7, Mips_D8, Mips_D9, Mips_D10, Mips_D11, Mips_D12, Mips_D13, Mips_D14, Mips_D15,
};
// AFGR64 Bit set.
static const uint8_t AFGR64Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f,
};
// FGR64_and_OddSP Register Class...
static const MCPhysReg FGR64_and_OddSP[] = {
Mips_D1_64, Mips_D3_64, Mips_D5_64, Mips_D7_64, Mips_D9_64, Mips_D11_64, Mips_D13_64, Mips_D15_64, Mips_D17_64, Mips_D19_64, Mips_D21_64, Mips_D23_64, Mips_D25_64, Mips_D27_64, Mips_D29_64, Mips_D31_64,
};
// FGR64_and_OddSP Bit set.
static const uint8_t FGR64_and_OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x55, 0x55, 0x55, 0x01,
};
// GPR64_with_sub_32_in_CPU16RegsPlusSP Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPU16RegsPlusSP[] = {
Mips_V0_64, Mips_V1_64, Mips_A0_64, Mips_A1_64, Mips_A2_64, Mips_A3_64, Mips_S0_64, Mips_S1_64, Mips_SP_64,
};
// GPR64_with_sub_32_in_CPU16RegsPlusSP Bit set.
static const uint8_t GPR64_with_sub_32_in_CPU16RegsPlusSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x03,
};
// AFGR64_and_OddSP Register Class...
static const MCPhysReg AFGR64_and_OddSP[] = {
Mips_D1, Mips_D3, Mips_D5, Mips_D7, Mips_D9, Mips_D11, Mips_D13, Mips_D15,
};
// AFGR64_and_OddSP Bit set.
static const uint8_t AFGR64_and_OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x55,
};
// GPR64_with_sub_32_in_CPU16Regs Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPU16Regs[] = {
Mips_V0_64, Mips_V1_64, Mips_A0_64, Mips_A1_64, Mips_A2_64, Mips_A3_64, Mips_S0_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_CPU16Regs Bit set.
static const uint8_t GPR64_with_sub_32_in_CPU16RegsBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x03,
};
// GPR64_with_sub_32_in_GPRMM16MoveP Register Class...
static const MCPhysReg GPR64_with_sub_32_in_GPRMM16MoveP[] = {
Mips_ZERO_64, Mips_V0_64, Mips_V1_64, Mips_S0_64, Mips_S1_64, Mips_S2_64, Mips_S3_64, Mips_S4_64,
};
// GPR64_with_sub_32_in_GPRMM16MoveP Bit set.
static const uint8_t GPR64_with_sub_32_in_GPRMM16MovePBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x03,
};
// GPR64_with_sub_32_in_GPRMM16Zero Register Class...
static const MCPhysReg GPR64_with_sub_32_in_GPRMM16Zero[] = {
Mips_ZERO_64, Mips_V0_64, Mips_V1_64, Mips_A0_64, Mips_A1_64, Mips_A2_64, Mips_A3_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_GPRMM16Zero Bit set.
static const uint8_t GPR64_with_sub_32_in_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03,
};
// GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16Zero Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16Zero[] = {
Mips_V0_64, Mips_V1_64, Mips_A0_64, Mips_A1_64, Mips_A2_64, Mips_A3_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16Zero Bit set.
static const uint8_t GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03,
};
// ACC64DSP Register Class...
static const MCPhysReg ACC64DSP[] = {
Mips_AC0, Mips_AC1, Mips_AC2, Mips_AC3,
};
// ACC64DSP Bit set.
static const uint8_t ACC64DSPBits[] = {
0x00, 0x00, 0x00, 0x3c,
};
// GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MoveP Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MoveP[] = {
Mips_V0_64, Mips_V1_64, Mips_S0_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MoveP Bit set.
static const uint8_t GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MovePBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x03,
};
// GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16Zero Register Class...
static const MCPhysReg GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16Zero[] = {
Mips_ZERO_64, Mips_V0_64, Mips_V1_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16Zero Bit set.
static const uint8_t GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03,
};
// GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero Register Class...
static const MCPhysReg GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero[] = {
Mips_V0_64, Mips_V1_64, Mips_S1_64,
};
// GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero Bit set.
static const uint8_t GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x03,
};
// OCTEON_MPL Register Class...
static const MCPhysReg OCTEON_MPL[] = {
Mips_MPL0, Mips_MPL1, Mips_MPL2,
};
// OCTEON_MPL Bit set.
static const uint8_t OCTEON_MPLBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
};
// OCTEON_P Register Class...
static const MCPhysReg OCTEON_P[] = {
Mips_P0, Mips_P1, Mips_P2,
};
// OCTEON_P Bit set.
static const uint8_t OCTEON_PBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c,
};
// ACC64 Register Class...
static const MCPhysReg ACC64[] = {
Mips_AC0,
};
// ACC64 Bit set.
static const uint8_t ACC64Bits[] = {
0x00, 0x00, 0x00, 0x04,
};
// GPR64_with_sub_32_in_CPURAReg Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPURAReg[] = {
Mips_RA_64,
};
// GPR64_with_sub_32_in_CPURAReg Bit set.
static const uint8_t GPR64_with_sub_32_in_CPURARegBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20,
};
// GPR64_with_sub_32_in_CPUSPReg Register Class...
static const MCPhysReg GPR64_with_sub_32_in_CPUSPReg[] = {
Mips_SP_64,
};
// GPR64_with_sub_32_in_CPUSPReg Bit set.
static const uint8_t GPR64_with_sub_32_in_CPUSPRegBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
};
// HI64 Register Class...
static const MCPhysReg HI64[] = {
Mips_HI0_64,
};
// HI64 Bit set.
static const uint8_t HI64Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04,
};
// LO64 Register Class...
static const MCPhysReg LO64[] = {
Mips_LO0_64,
};
// LO64 Bit set.
static const uint8_t LO64Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20,
};
// MSA128B Register Class...
static const MCPhysReg MSA128B[] = {
Mips_W0, Mips_W1, Mips_W2, Mips_W3, Mips_W4, Mips_W5, Mips_W6, Mips_W7, Mips_W8, Mips_W9, Mips_W10, Mips_W11, Mips_W12, Mips_W13, Mips_W14, Mips_W15, Mips_W16, Mips_W17, Mips_W18, Mips_W19, Mips_W20, Mips_W21, Mips_W22, Mips_W23, Mips_W24, Mips_W25, Mips_W26, Mips_W27, Mips_W28, Mips_W29, Mips_W30, Mips_W31,
};
// MSA128B Bit set.
static const uint8_t MSA128BBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// MSA128D Register Class...
static const MCPhysReg MSA128D[] = {
Mips_W0, Mips_W1, Mips_W2, Mips_W3, Mips_W4, Mips_W5, Mips_W6, Mips_W7, Mips_W8, Mips_W9, Mips_W10, Mips_W11, Mips_W12, Mips_W13, Mips_W14, Mips_W15, Mips_W16, Mips_W17, Mips_W18, Mips_W19, Mips_W20, Mips_W21, Mips_W22, Mips_W23, Mips_W24, Mips_W25, Mips_W26, Mips_W27, Mips_W28, Mips_W29, Mips_W30, Mips_W31,
};
// MSA128D Bit set.
static const uint8_t MSA128DBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// MSA128H Register Class...
static const MCPhysReg MSA128H[] = {
Mips_W0, Mips_W1, Mips_W2, Mips_W3, Mips_W4, Mips_W5, Mips_W6, Mips_W7, Mips_W8, Mips_W9, Mips_W10, Mips_W11, Mips_W12, Mips_W13, Mips_W14, Mips_W15, Mips_W16, Mips_W17, Mips_W18, Mips_W19, Mips_W20, Mips_W21, Mips_W22, Mips_W23, Mips_W24, Mips_W25, Mips_W26, Mips_W27, Mips_W28, Mips_W29, Mips_W30, Mips_W31,
};
// MSA128H Bit set.
static const uint8_t MSA128HBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// MSA128W Register Class...
static const MCPhysReg MSA128W[] = {
Mips_W0, Mips_W1, Mips_W2, Mips_W3, Mips_W4, Mips_W5, Mips_W6, Mips_W7, Mips_W8, Mips_W9, Mips_W10, Mips_W11, Mips_W12, Mips_W13, Mips_W14, Mips_W15, Mips_W16, Mips_W17, Mips_W18, Mips_W19, Mips_W20, Mips_W21, Mips_W22, Mips_W23, Mips_W24, Mips_W25, Mips_W26, Mips_W27, Mips_W28, Mips_W29, Mips_W30, Mips_W31,
};
// MSA128W Bit set.
static const uint8_t MSA128WBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x07,
};
// MSA128B_with_sub_64_in_OddSP Register Class...
static const MCPhysReg MSA128B_with_sub_64_in_OddSP[] = {
Mips_W1, Mips_W3, Mips_W5, Mips_W7, Mips_W9, Mips_W11, Mips_W13, Mips_W15, Mips_W17, Mips_W19, Mips_W21, Mips_W23, Mips_W25, Mips_W27, Mips_W29, Mips_W31,
};
// MSA128B_with_sub_64_in_OddSP Bit set.
static const uint8_t MSA128B_with_sub_64_in_OddSPBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x55, 0x55, 0x55, 0x05,
};
// MSA128WEvens Register Class...
static const MCPhysReg MSA128WEvens[] = {
Mips_W0, Mips_W2, Mips_W4, Mips_W6, Mips_W8, Mips_W10, Mips_W12, Mips_W14, Mips_W16, Mips_W18, Mips_W20, Mips_W22, Mips_W24, Mips_W26, Mips_W28, Mips_W30,
};
// MSA128WEvens Bit set.
static const uint8_t MSA128WEvensBits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0xaa, 0xaa, 0xaa, 0x02,
};
// ACC128 Register Class...
static const MCPhysReg ACC128[] = {
Mips_AC0_64,
};
// ACC128 Bit set.
static const uint8_t ACC128Bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
};
static const MCRegisterClass MipsMCRegisterClasses[] = {
{ OddSP, OddSPBits, sizeof(OddSPBits) },
{ CCR, CCRBits, sizeof(CCRBits) },
{ COP2, COP2Bits, sizeof(COP2Bits) },
{ COP3, COP3Bits, sizeof(COP3Bits) },
{ DSPR, DSPRBits, sizeof(DSPRBits) },
{ FGR32, FGR32Bits, sizeof(FGR32Bits) },
{ FGRCC, FGRCCBits, sizeof(FGRCCBits) },
{ FGRH32, FGRH32Bits, sizeof(FGRH32Bits) },
{ GPR32, GPR32Bits, sizeof(GPR32Bits) },
{ HWRegs, HWRegsBits, sizeof(HWRegsBits) },
{ OddSP_with_sub_hi, OddSP_with_sub_hiBits, sizeof(OddSP_with_sub_hiBits) },
{ FGR32_and_OddSP, FGR32_and_OddSPBits, sizeof(FGR32_and_OddSPBits) },
{ FGRH32_and_OddSP, FGRH32_and_OddSPBits, sizeof(FGRH32_and_OddSPBits) },
{ OddSP_with_sub_hi_with_sub_hi_in_FGRH32, OddSP_with_sub_hi_with_sub_hi_in_FGRH32Bits, sizeof(OddSP_with_sub_hi_with_sub_hi_in_FGRH32Bits) },
{ CPU16RegsPlusSP, CPU16RegsPlusSPBits, sizeof(CPU16RegsPlusSPBits) },
{ CC, CCBits, sizeof(CCBits) },
{ CPU16Regs, CPU16RegsBits, sizeof(CPU16RegsBits) },
{ FCC, FCCBits, sizeof(FCCBits) },
{ GPRMM16, GPRMM16Bits, sizeof(GPRMM16Bits) },
{ GPRMM16MoveP, GPRMM16MovePBits, sizeof(GPRMM16MovePBits) },
{ GPRMM16Zero, GPRMM16ZeroBits, sizeof(GPRMM16ZeroBits) },
{ MSACtrl, MSACtrlBits, sizeof(MSACtrlBits) },
{ OddSP_with_sub_hi_with_sub_hi_in_FGR32, OddSP_with_sub_hi_with_sub_hi_in_FGR32Bits, sizeof(OddSP_with_sub_hi_with_sub_hi_in_FGR32Bits) },
{ CPU16Regs_and_GPRMM16Zero, CPU16Regs_and_GPRMM16ZeroBits, sizeof(CPU16Regs_and_GPRMM16ZeroBits) },
{ CPU16Regs_and_GPRMM16MoveP, CPU16Regs_and_GPRMM16MovePBits, sizeof(CPU16Regs_and_GPRMM16MovePBits) },
{ GPRMM16MoveP_and_GPRMM16Zero, GPRMM16MoveP_and_GPRMM16ZeroBits, sizeof(GPRMM16MoveP_and_GPRMM16ZeroBits) },
{ HI32DSP, HI32DSPBits, sizeof(HI32DSPBits) },
{ LO32DSP, LO32DSPBits, sizeof(LO32DSPBits) },
{ GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero, GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits, sizeof(GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits) },
{ CPURAReg, CPURARegBits, sizeof(CPURARegBits) },
{ CPUSPReg, CPUSPRegBits, sizeof(CPUSPRegBits) },
{ DSPCC, DSPCCBits, sizeof(DSPCCBits) },
{ HI32, HI32Bits, sizeof(HI32Bits) },
{ LO32, LO32Bits, sizeof(LO32Bits) },
{ FGR64, FGR64Bits, sizeof(FGR64Bits) },
{ GPR64, GPR64Bits, sizeof(GPR64Bits) },
{ AFGR64, AFGR64Bits, sizeof(AFGR64Bits) },
{ FGR64_and_OddSP, FGR64_and_OddSPBits, sizeof(FGR64_and_OddSPBits) },
{ GPR64_with_sub_32_in_CPU16RegsPlusSP, GPR64_with_sub_32_in_CPU16RegsPlusSPBits, sizeof(GPR64_with_sub_32_in_CPU16RegsPlusSPBits) },
{ AFGR64_and_OddSP, AFGR64_and_OddSPBits, sizeof(AFGR64_and_OddSPBits) },
{ GPR64_with_sub_32_in_CPU16Regs, GPR64_with_sub_32_in_CPU16RegsBits, sizeof(GPR64_with_sub_32_in_CPU16RegsBits) },
{ GPR64_with_sub_32_in_GPRMM16MoveP, GPR64_with_sub_32_in_GPRMM16MovePBits, sizeof(GPR64_with_sub_32_in_GPRMM16MovePBits) },
{ GPR64_with_sub_32_in_GPRMM16Zero, GPR64_with_sub_32_in_GPRMM16ZeroBits, sizeof(GPR64_with_sub_32_in_GPRMM16ZeroBits) },
{ GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16Zero, GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16ZeroBits, sizeof(GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16ZeroBits) },
{ ACC64DSP, ACC64DSPBits, sizeof(ACC64DSPBits) },
{ GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MoveP, GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MovePBits, sizeof(GPR64_with_sub_32_in_CPU16Regs_and_GPRMM16MovePBits) },
{ GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16Zero, GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16ZeroBits, sizeof(GPR64_with_sub_32_in_GPRMM16MoveP_and_GPRMM16ZeroBits) },
{ GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16Zero, GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits, sizeof(GPR64_with_sub_32_in_GPRMM16MoveP_and_CPU16Regs_and_GPRMM16ZeroBits) },
{ OCTEON_MPL, OCTEON_MPLBits, sizeof(OCTEON_MPLBits) },
{ OCTEON_P, OCTEON_PBits, sizeof(OCTEON_PBits) },
{ ACC64, ACC64Bits, sizeof(ACC64Bits) },
{ GPR64_with_sub_32_in_CPURAReg, GPR64_with_sub_32_in_CPURARegBits, sizeof(GPR64_with_sub_32_in_CPURARegBits) },
{ GPR64_with_sub_32_in_CPUSPReg, GPR64_with_sub_32_in_CPUSPRegBits, sizeof(GPR64_with_sub_32_in_CPUSPRegBits) },
{ HI64, HI64Bits, sizeof(HI64Bits) },
{ LO64, LO64Bits, sizeof(LO64Bits) },
{ MSA128B, MSA128BBits, sizeof(MSA128BBits) },
{ MSA128D, MSA128DBits, sizeof(MSA128DBits) },
{ MSA128H, MSA128HBits, sizeof(MSA128HBits) },
{ MSA128W, MSA128WBits, sizeof(MSA128WBits) },
{ MSA128B_with_sub_64_in_OddSP, MSA128B_with_sub_64_in_OddSPBits, sizeof(MSA128B_with_sub_64_in_OddSPBits) },
{ MSA128WEvens, MSA128WEvensBits, sizeof(MSA128WEvensBits) },
{ ACC128, ACC128Bits, sizeof(ACC128Bits) },
};
#endif // GET_REGINFO_MC_DESC
|