File size: 64,669 Bytes
d7a5f2f | 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 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 | // Code generated by ./parse.py -go rv64_a rv64_c rv64_d rv64_f rv64_i rv64_m rv64_q rv64_zba rv64_zbb rv64_zbs rv_a rv_c rv_c_d rv_d rv_f rv_i rv_m rv_q rv_s rv_system rv_v rv_zba rv_zbb rv_zbs rv_zicond rv_zicsr; DO NOT EDIT.
package riscv
import "cmd/internal/obj"
type inst struct {
opcode uint32
funct3 uint32
rs1 uint32
rs2 uint32
csr int64
funct7 uint32
}
func encode(a obj.As) *inst {
switch a {
case AADD:
return &inst{0x33, 0x0, 0x0, 0x0, 0, 0x0}
case AADDUW:
return &inst{0x3b, 0x0, 0x0, 0x0, 128, 0x4}
case AADDI:
return &inst{0x13, 0x0, 0x0, 0x0, 0, 0x0}
case AADDIW:
return &inst{0x1b, 0x0, 0x0, 0x0, 0, 0x0}
case AADDW:
return &inst{0x3b, 0x0, 0x0, 0x0, 0, 0x0}
case AAMOADDD:
return &inst{0x2f, 0x3, 0x0, 0x0, 0, 0x0}
case AAMOADDW:
return &inst{0x2f, 0x2, 0x0, 0x0, 0, 0x0}
case AAMOANDD:
return &inst{0x2f, 0x3, 0x0, 0x0, 1536, 0x30}
case AAMOANDW:
return &inst{0x2f, 0x2, 0x0, 0x0, 1536, 0x30}
case AAMOMAXD:
return &inst{0x2f, 0x3, 0x0, 0x0, -1536, 0x50}
case AAMOMAXW:
return &inst{0x2f, 0x2, 0x0, 0x0, -1536, 0x50}
case AAMOMAXUD:
return &inst{0x2f, 0x3, 0x0, 0x0, -512, 0x70}
case AAMOMAXUW:
return &inst{0x2f, 0x2, 0x0, 0x0, -512, 0x70}
case AAMOMIND:
return &inst{0x2f, 0x3, 0x0, 0x0, -2048, 0x40}
case AAMOMINW:
return &inst{0x2f, 0x2, 0x0, 0x0, -2048, 0x40}
case AAMOMINUD:
return &inst{0x2f, 0x3, 0x0, 0x0, -1024, 0x60}
case AAMOMINUW:
return &inst{0x2f, 0x2, 0x0, 0x0, -1024, 0x60}
case AAMOORD:
return &inst{0x2f, 0x3, 0x0, 0x0, 1024, 0x20}
case AAMOORW:
return &inst{0x2f, 0x2, 0x0, 0x0, 1024, 0x20}
case AAMOSWAPD:
return &inst{0x2f, 0x3, 0x0, 0x0, 128, 0x4}
case AAMOSWAPW:
return &inst{0x2f, 0x2, 0x0, 0x0, 128, 0x4}
case AAMOXORD:
return &inst{0x2f, 0x3, 0x0, 0x0, 512, 0x10}
case AAMOXORW:
return &inst{0x2f, 0x2, 0x0, 0x0, 512, 0x10}
case AAND:
return &inst{0x33, 0x7, 0x0, 0x0, 0, 0x0}
case AANDI:
return &inst{0x13, 0x7, 0x0, 0x0, 0, 0x0}
case AANDN:
return &inst{0x33, 0x7, 0x0, 0x0, 1024, 0x20}
case AAUIPC:
return &inst{0x17, 0x0, 0x0, 0x0, 0, 0x0}
case ABCLR:
return &inst{0x33, 0x1, 0x0, 0x0, 1152, 0x24}
case ABCLRI:
return &inst{0x13, 0x1, 0x0, 0x0, 1152, 0x24}
case ABEQ:
return &inst{0x63, 0x0, 0x0, 0x0, 0, 0x0}
case ABEXT:
return &inst{0x33, 0x5, 0x0, 0x0, 1152, 0x24}
case ABEXTI:
return &inst{0x13, 0x5, 0x0, 0x0, 1152, 0x24}
case ABGE:
return &inst{0x63, 0x5, 0x0, 0x0, 0, 0x0}
case ABGEU:
return &inst{0x63, 0x7, 0x0, 0x0, 0, 0x0}
case ABINV:
return &inst{0x33, 0x1, 0x0, 0x0, 1664, 0x34}
case ABINVI:
return &inst{0x13, 0x1, 0x0, 0x0, 1664, 0x34}
case ABLT:
return &inst{0x63, 0x4, 0x0, 0x0, 0, 0x0}
case ABLTU:
return &inst{0x63, 0x6, 0x0, 0x0, 0, 0x0}
case ABNE:
return &inst{0x63, 0x1, 0x0, 0x0, 0, 0x0}
case ABSET:
return &inst{0x33, 0x1, 0x0, 0x0, 640, 0x14}
case ABSETI:
return &inst{0x13, 0x1, 0x0, 0x0, 640, 0x14}
case ACADD:
return &inst{0x2, 0x1, 0x1, 0x0, 0, 0x0}
case ACADDI:
return &inst{0x1, 0x0, 0x0, 0x0, 0, 0x0}
case ACADDI16SP:
return &inst{0x1, 0x6, 0x0, 0x0, 0, 0x0}
case ACADDI4SPN:
return &inst{0x0, 0x0, 0x0, 0x0, 0, 0x0}
case ACADDIW:
return &inst{0x1, 0x2, 0x0, 0x0, 0, 0x0}
case ACADDW:
return &inst{0x21, 0x1, 0x1, 0x0, 0, 0x0}
case ACAND:
return &inst{0x61, 0x0, 0x1, 0x0, 0, 0x0}
case ACANDI:
return &inst{0x1, 0x0, 0x1, 0x0, 0, 0x0}
case ACBEQZ:
return &inst{0x1, 0x4, 0x1, 0x0, 0, 0x0}
case ACBNEZ:
return &inst{0x1, 0x6, 0x1, 0x0, 0, 0x0}
case ACEBREAK:
return &inst{0x2, 0x1, 0x1, 0x0, 0, 0x0}
case ACFLD:
return &inst{0x0, 0x2, 0x0, 0x0, 0, 0x0}
case ACFLDSP:
return &inst{0x2, 0x2, 0x0, 0x0, 0, 0x0}
case ACFSD:
return &inst{0x0, 0x2, 0x1, 0x0, 0, 0x0}
case ACFSDSP:
return &inst{0x2, 0x2, 0x1, 0x0, 0, 0x0}
case ACJ:
return &inst{0x1, 0x2, 0x1, 0x0, 0, 0x0}
case ACJALR:
return &inst{0x2, 0x1, 0x1, 0x0, 0, 0x0}
case ACJR:
return &inst{0x2, 0x0, 0x1, 0x0, 0, 0x0}
case ACLD:
return &inst{0x0, 0x6, 0x0, 0x0, 0, 0x0}
case ACLDSP:
return &inst{0x2, 0x6, 0x0, 0x0, 0, 0x0}
case ACLI:
return &inst{0x1, 0x4, 0x0, 0x0, 0, 0x0}
case ACLUI:
return &inst{0x1, 0x6, 0x0, 0x0, 0, 0x0}
case ACLW:
return &inst{0x0, 0x4, 0x0, 0x0, 0, 0x0}
case ACLWSP:
return &inst{0x2, 0x4, 0x0, 0x0, 0, 0x0}
case ACMV:
return &inst{0x2, 0x0, 0x1, 0x0, 0, 0x0}
case ACNOP:
return &inst{0x1, 0x0, 0x0, 0x0, 0, 0x0}
case ACOR:
return &inst{0x41, 0x0, 0x1, 0x0, 0, 0x0}
case ACSD:
return &inst{0x0, 0x6, 0x1, 0x0, 0, 0x0}
case ACSDSP:
return &inst{0x2, 0x6, 0x1, 0x0, 0, 0x0}
case ACSLLI:
return &inst{0x2, 0x0, 0x0, 0x0, 0, 0x0}
case ACSRAI:
return &inst{0x1, 0x0, 0x1, 0x0, 0, 0x0}
case ACSRLI:
return &inst{0x1, 0x0, 0x1, 0x0, 0, 0x0}
case ACSUB:
return &inst{0x1, 0x0, 0x1, 0x0, 0, 0x0}
case ACSUBW:
return &inst{0x1, 0x1, 0x1, 0x0, 0, 0x0}
case ACSW:
return &inst{0x0, 0x4, 0x1, 0x0, 0, 0x0}
case ACSWSP:
return &inst{0x2, 0x4, 0x1, 0x0, 0, 0x0}
case ACXOR:
return &inst{0x21, 0x0, 0x1, 0x0, 0, 0x0}
case ACLZ:
return &inst{0x13, 0x1, 0x0, 0x0, 1536, 0x30}
case ACLZW:
return &inst{0x1b, 0x1, 0x0, 0x0, 1536, 0x30}
case ACPOP:
return &inst{0x13, 0x1, 0x0, 0x2, 1538, 0x30}
case ACPOPW:
return &inst{0x1b, 0x1, 0x0, 0x2, 1538, 0x30}
case ACSRRC:
return &inst{0x73, 0x3, 0x0, 0x0, 0, 0x0}
case ACSRRCI:
return &inst{0x73, 0x7, 0x0, 0x0, 0, 0x0}
case ACSRRS:
return &inst{0x73, 0x2, 0x0, 0x0, 0, 0x0}
case ACSRRSI:
return &inst{0x73, 0x6, 0x0, 0x0, 0, 0x0}
case ACSRRW:
return &inst{0x73, 0x1, 0x0, 0x0, 0, 0x0}
case ACSRRWI:
return &inst{0x73, 0x5, 0x0, 0x0, 0, 0x0}
case ACTZ:
return &inst{0x13, 0x1, 0x0, 0x1, 1537, 0x30}
case ACTZW:
return &inst{0x1b, 0x1, 0x0, 0x1, 1537, 0x30}
case ACZEROEQZ:
return &inst{0x33, 0x5, 0x0, 0x0, 224, 0x7}
case ACZERONEZ:
return &inst{0x33, 0x7, 0x0, 0x0, 224, 0x7}
case ADIV:
return &inst{0x33, 0x4, 0x0, 0x0, 32, 0x1}
case ADIVU:
return &inst{0x33, 0x5, 0x0, 0x0, 32, 0x1}
case ADIVUW:
return &inst{0x3b, 0x5, 0x0, 0x0, 32, 0x1}
case ADIVW:
return &inst{0x3b, 0x4, 0x0, 0x0, 32, 0x1}
case AEBREAK:
return &inst{0x73, 0x0, 0x0, 0x1, 1, 0x0}
case AECALL:
return &inst{0x73, 0x0, 0x0, 0x0, 0, 0x0}
case AFADDD:
return &inst{0x53, 0x0, 0x0, 0x0, 32, 0x1}
case AFADDQ:
return &inst{0x53, 0x0, 0x0, 0x0, 96, 0x3}
case AFADDS:
return &inst{0x53, 0x0, 0x0, 0x0, 0, 0x0}
case AFCLASSD:
return &inst{0x53, 0x1, 0x0, 0x0, -480, 0x71}
case AFCLASSQ:
return &inst{0x53, 0x1, 0x0, 0x0, -416, 0x73}
case AFCLASSS:
return &inst{0x53, 0x1, 0x0, 0x0, -512, 0x70}
case AFCVTDL:
return &inst{0x53, 0x0, 0x0, 0x2, -734, 0x69}
case AFCVTDLU:
return &inst{0x53, 0x0, 0x0, 0x3, -733, 0x69}
case AFCVTDQ:
return &inst{0x53, 0x0, 0x0, 0x3, 1059, 0x21}
case AFCVTDS:
return &inst{0x53, 0x0, 0x0, 0x0, 1056, 0x21}
case AFCVTDW:
return &inst{0x53, 0x0, 0x0, 0x0, -736, 0x69}
case AFCVTDWU:
return &inst{0x53, 0x0, 0x0, 0x1, -735, 0x69}
case AFCVTLD:
return &inst{0x53, 0x0, 0x0, 0x2, -990, 0x61}
case AFCVTLQ:
return &inst{0x53, 0x0, 0x0, 0x2, -926, 0x63}
case AFCVTLS:
return &inst{0x53, 0x0, 0x0, 0x2, -1022, 0x60}
case AFCVTLUD:
return &inst{0x53, 0x0, 0x0, 0x3, -989, 0x61}
case AFCVTLUQ:
return &inst{0x53, 0x0, 0x0, 0x3, -925, 0x63}
case AFCVTLUS:
return &inst{0x53, 0x0, 0x0, 0x3, -1021, 0x60}
case AFCVTQD:
return &inst{0x53, 0x0, 0x0, 0x1, 1121, 0x23}
case AFCVTQL:
return &inst{0x53, 0x0, 0x0, 0x2, -670, 0x6b}
case AFCVTQLU:
return &inst{0x53, 0x0, 0x0, 0x3, -669, 0x6b}
case AFCVTQS:
return &inst{0x53, 0x0, 0x0, 0x0, 1120, 0x23}
case AFCVTQW:
return &inst{0x53, 0x0, 0x0, 0x0, -672, 0x6b}
case AFCVTQWU:
return &inst{0x53, 0x0, 0x0, 0x1, -671, 0x6b}
case AFCVTSD:
return &inst{0x53, 0x0, 0x0, 0x1, 1025, 0x20}
case AFCVTSL:
return &inst{0x53, 0x0, 0x0, 0x2, -766, 0x68}
case AFCVTSLU:
return &inst{0x53, 0x0, 0x0, 0x3, -765, 0x68}
case AFCVTSQ:
return &inst{0x53, 0x0, 0x0, 0x3, 1027, 0x20}
case AFCVTSW:
return &inst{0x53, 0x0, 0x0, 0x0, -768, 0x68}
case AFCVTSWU:
return &inst{0x53, 0x0, 0x0, 0x1, -767, 0x68}
case AFCVTWD:
return &inst{0x53, 0x0, 0x0, 0x0, -992, 0x61}
case AFCVTWQ:
return &inst{0x53, 0x0, 0x0, 0x0, -928, 0x63}
case AFCVTWS:
return &inst{0x53, 0x0, 0x0, 0x0, -1024, 0x60}
case AFCVTWUD:
return &inst{0x53, 0x0, 0x0, 0x1, -991, 0x61}
case AFCVTWUQ:
return &inst{0x53, 0x0, 0x0, 0x1, -927, 0x63}
case AFCVTWUS:
return &inst{0x53, 0x0, 0x0, 0x1, -1023, 0x60}
case AFDIVD:
return &inst{0x53, 0x0, 0x0, 0x0, 416, 0xd}
case AFDIVQ:
return &inst{0x53, 0x0, 0x0, 0x0, 480, 0xf}
case AFDIVS:
return &inst{0x53, 0x0, 0x0, 0x0, 384, 0xc}
case AFENCE:
return &inst{0xf, 0x0, 0x0, 0x0, 0, 0x0}
case AFEQD:
return &inst{0x53, 0x2, 0x0, 0x0, -1504, 0x51}
case AFEQQ:
return &inst{0x53, 0x2, 0x0, 0x0, -1440, 0x53}
case AFEQS:
return &inst{0x53, 0x2, 0x0, 0x0, -1536, 0x50}
case AFLD:
return &inst{0x7, 0x3, 0x0, 0x0, 0, 0x0}
case AFLED:
return &inst{0x53, 0x0, 0x0, 0x0, -1504, 0x51}
case AFLEQ:
return &inst{0x53, 0x0, 0x0, 0x0, -1440, 0x53}
case AFLES:
return &inst{0x53, 0x0, 0x0, 0x0, -1536, 0x50}
case AFLQ:
return &inst{0x7, 0x4, 0x0, 0x0, 0, 0x0}
case AFLTD:
return &inst{0x53, 0x1, 0x0, 0x0, -1504, 0x51}
case AFLTQ:
return &inst{0x53, 0x1, 0x0, 0x0, -1440, 0x53}
case AFLTS:
return &inst{0x53, 0x1, 0x0, 0x0, -1536, 0x50}
case AFLW:
return &inst{0x7, 0x2, 0x0, 0x0, 0, 0x0}
case AFMADDD:
return &inst{0x43, 0x0, 0x0, 0x0, 32, 0x1}
case AFMADDQ:
return &inst{0x43, 0x0, 0x0, 0x0, 96, 0x3}
case AFMADDS:
return &inst{0x43, 0x0, 0x0, 0x0, 0, 0x0}
case AFMAXD:
return &inst{0x53, 0x1, 0x0, 0x0, 672, 0x15}
case AFMAXQ:
return &inst{0x53, 0x1, 0x0, 0x0, 736, 0x17}
case AFMAXS:
return &inst{0x53, 0x1, 0x0, 0x0, 640, 0x14}
case AFMIND:
return &inst{0x53, 0x0, 0x0, 0x0, 672, 0x15}
case AFMINQ:
return &inst{0x53, 0x0, 0x0, 0x0, 736, 0x17}
case AFMINS:
return &inst{0x53, 0x0, 0x0, 0x0, 640, 0x14}
case AFMSUBD:
return &inst{0x47, 0x0, 0x0, 0x0, 32, 0x1}
case AFMSUBQ:
return &inst{0x47, 0x0, 0x0, 0x0, 96, 0x3}
case AFMSUBS:
return &inst{0x47, 0x0, 0x0, 0x0, 0, 0x0}
case AFMULD:
return &inst{0x53, 0x0, 0x0, 0x0, 288, 0x9}
case AFMULQ:
return &inst{0x53, 0x0, 0x0, 0x0, 352, 0xb}
case AFMULS:
return &inst{0x53, 0x0, 0x0, 0x0, 256, 0x8}
case AFMVDX:
return &inst{0x53, 0x0, 0x0, 0x0, -224, 0x79}
case AFMVWX:
return &inst{0x53, 0x0, 0x0, 0x0, -256, 0x78}
case AFMVXD:
return &inst{0x53, 0x0, 0x0, 0x0, -480, 0x71}
case AFMVXW:
return &inst{0x53, 0x0, 0x0, 0x0, -512, 0x70}
case AFNMADDD:
return &inst{0x4f, 0x0, 0x0, 0x0, 32, 0x1}
case AFNMADDQ:
return &inst{0x4f, 0x0, 0x0, 0x0, 96, 0x3}
case AFNMADDS:
return &inst{0x4f, 0x0, 0x0, 0x0, 0, 0x0}
case AFNMSUBD:
return &inst{0x4b, 0x0, 0x0, 0x0, 32, 0x1}
case AFNMSUBQ:
return &inst{0x4b, 0x0, 0x0, 0x0, 96, 0x3}
case AFNMSUBS:
return &inst{0x4b, 0x0, 0x0, 0x0, 0, 0x0}
case AFSD:
return &inst{0x27, 0x3, 0x0, 0x0, 0, 0x0}
case AFSGNJD:
return &inst{0x53, 0x0, 0x0, 0x0, 544, 0x11}
case AFSGNJQ:
return &inst{0x53, 0x0, 0x0, 0x0, 608, 0x13}
case AFSGNJS:
return &inst{0x53, 0x0, 0x0, 0x0, 512, 0x10}
case AFSGNJND:
return &inst{0x53, 0x1, 0x0, 0x0, 544, 0x11}
case AFSGNJNQ:
return &inst{0x53, 0x1, 0x0, 0x0, 608, 0x13}
case AFSGNJNS:
return &inst{0x53, 0x1, 0x0, 0x0, 512, 0x10}
case AFSGNJXD:
return &inst{0x53, 0x2, 0x0, 0x0, 544, 0x11}
case AFSGNJXQ:
return &inst{0x53, 0x2, 0x0, 0x0, 608, 0x13}
case AFSGNJXS:
return &inst{0x53, 0x2, 0x0, 0x0, 512, 0x10}
case AFSQ:
return &inst{0x27, 0x4, 0x0, 0x0, 0, 0x0}
case AFSQRTD:
return &inst{0x53, 0x0, 0x0, 0x0, 1440, 0x2d}
case AFSQRTQ:
return &inst{0x53, 0x0, 0x0, 0x0, 1504, 0x2f}
case AFSQRTS:
return &inst{0x53, 0x0, 0x0, 0x0, 1408, 0x2c}
case AFSUBD:
return &inst{0x53, 0x0, 0x0, 0x0, 160, 0x5}
case AFSUBQ:
return &inst{0x53, 0x0, 0x0, 0x0, 224, 0x7}
case AFSUBS:
return &inst{0x53, 0x0, 0x0, 0x0, 128, 0x4}
case AFSW:
return &inst{0x27, 0x2, 0x0, 0x0, 0, 0x0}
case AJAL:
return &inst{0x6f, 0x0, 0x0, 0x0, 0, 0x0}
case AJALR:
return &inst{0x67, 0x0, 0x0, 0x0, 0, 0x0}
case ALB:
return &inst{0x3, 0x0, 0x0, 0x0, 0, 0x0}
case ALBU:
return &inst{0x3, 0x4, 0x0, 0x0, 0, 0x0}
case ALD:
return &inst{0x3, 0x3, 0x0, 0x0, 0, 0x0}
case ALH:
return &inst{0x3, 0x1, 0x0, 0x0, 0, 0x0}
case ALHU:
return &inst{0x3, 0x5, 0x0, 0x0, 0, 0x0}
case ALRD:
return &inst{0x2f, 0x3, 0x0, 0x0, 256, 0x8}
case ALRW:
return &inst{0x2f, 0x2, 0x0, 0x0, 256, 0x8}
case ALUI:
return &inst{0x37, 0x0, 0x0, 0x0, 0, 0x0}
case ALW:
return &inst{0x3, 0x2, 0x0, 0x0, 0, 0x0}
case ALWU:
return &inst{0x3, 0x6, 0x0, 0x0, 0, 0x0}
case AMAX:
return &inst{0x33, 0x6, 0x0, 0x0, 160, 0x5}
case AMAXU:
return &inst{0x33, 0x7, 0x0, 0x0, 160, 0x5}
case AMIN:
return &inst{0x33, 0x4, 0x0, 0x0, 160, 0x5}
case AMINU:
return &inst{0x33, 0x5, 0x0, 0x0, 160, 0x5}
case AMRET:
return &inst{0x73, 0x0, 0x0, 0x2, 770, 0x18}
case AMUL:
return &inst{0x33, 0x0, 0x0, 0x0, 32, 0x1}
case AMULH:
return &inst{0x33, 0x1, 0x0, 0x0, 32, 0x1}
case AMULHSU:
return &inst{0x33, 0x2, 0x0, 0x0, 32, 0x1}
case AMULHU:
return &inst{0x33, 0x3, 0x0, 0x0, 32, 0x1}
case AMULW:
return &inst{0x3b, 0x0, 0x0, 0x0, 32, 0x1}
case AOR:
return &inst{0x33, 0x6, 0x0, 0x0, 0, 0x0}
case AORCB:
return &inst{0x13, 0x5, 0x0, 0x7, 647, 0x14}
case AORI:
return &inst{0x13, 0x6, 0x0, 0x0, 0, 0x0}
case AORN:
return &inst{0x33, 0x6, 0x0, 0x0, 1024, 0x20}
case AREM:
return &inst{0x33, 0x6, 0x0, 0x0, 32, 0x1}
case AREMU:
return &inst{0x33, 0x7, 0x0, 0x0, 32, 0x1}
case AREMUW:
return &inst{0x3b, 0x7, 0x0, 0x0, 32, 0x1}
case AREMW:
return &inst{0x3b, 0x6, 0x0, 0x0, 32, 0x1}
case AREV8:
return &inst{0x13, 0x5, 0x0, 0x18, 1720, 0x35}
case AROL:
return &inst{0x33, 0x1, 0x0, 0x0, 1536, 0x30}
case AROLW:
return &inst{0x3b, 0x1, 0x0, 0x0, 1536, 0x30}
case AROR:
return &inst{0x33, 0x5, 0x0, 0x0, 1536, 0x30}
case ARORI:
return &inst{0x13, 0x5, 0x0, 0x0, 1536, 0x30}
case ARORIW:
return &inst{0x1b, 0x5, 0x0, 0x0, 1536, 0x30}
case ARORW:
return &inst{0x3b, 0x5, 0x0, 0x0, 1536, 0x30}
case ASB:
return &inst{0x23, 0x0, 0x0, 0x0, 0, 0x0}
case ASCD:
return &inst{0x2f, 0x3, 0x0, 0x0, 384, 0xc}
case ASCW:
return &inst{0x2f, 0x2, 0x0, 0x0, 384, 0xc}
case ASD:
return &inst{0x23, 0x3, 0x0, 0x0, 0, 0x0}
case ASEXTB:
return &inst{0x13, 0x1, 0x0, 0x4, 1540, 0x30}
case ASEXTH:
return &inst{0x13, 0x1, 0x0, 0x5, 1541, 0x30}
case ASFENCEVMA:
return &inst{0x73, 0x0, 0x0, 0x0, 288, 0x9}
case ASH:
return &inst{0x23, 0x1, 0x0, 0x0, 0, 0x0}
case ASH1ADD:
return &inst{0x33, 0x2, 0x0, 0x0, 512, 0x10}
case ASH1ADDUW:
return &inst{0x3b, 0x2, 0x0, 0x0, 512, 0x10}
case ASH2ADD:
return &inst{0x33, 0x4, 0x0, 0x0, 512, 0x10}
case ASH2ADDUW:
return &inst{0x3b, 0x4, 0x0, 0x0, 512, 0x10}
case ASH3ADD:
return &inst{0x33, 0x6, 0x0, 0x0, 512, 0x10}
case ASH3ADDUW:
return &inst{0x3b, 0x6, 0x0, 0x0, 512, 0x10}
case ASLL:
return &inst{0x33, 0x1, 0x0, 0x0, 0, 0x0}
case ASLLI:
return &inst{0x13, 0x1, 0x0, 0x0, 0, 0x0}
case ASLLIUW:
return &inst{0x1b, 0x1, 0x0, 0x0, 128, 0x4}
case ASLLIW:
return &inst{0x1b, 0x1, 0x0, 0x0, 0, 0x0}
case ASLLW:
return &inst{0x3b, 0x1, 0x0, 0x0, 0, 0x0}
case ASLT:
return &inst{0x33, 0x2, 0x0, 0x0, 0, 0x0}
case ASLTI:
return &inst{0x13, 0x2, 0x0, 0x0, 0, 0x0}
case ASLTIU:
return &inst{0x13, 0x3, 0x0, 0x0, 0, 0x0}
case ASLTU:
return &inst{0x33, 0x3, 0x0, 0x0, 0, 0x0}
case ASRA:
return &inst{0x33, 0x5, 0x0, 0x0, 1024, 0x20}
case ASRAI:
return &inst{0x13, 0x5, 0x0, 0x0, 1024, 0x20}
case ASRAIW:
return &inst{0x1b, 0x5, 0x0, 0x0, 1024, 0x20}
case ASRAW:
return &inst{0x3b, 0x5, 0x0, 0x0, 1024, 0x20}
case ASRET:
return &inst{0x73, 0x0, 0x0, 0x2, 258, 0x8}
case ASRL:
return &inst{0x33, 0x5, 0x0, 0x0, 0, 0x0}
case ASRLI:
return &inst{0x13, 0x5, 0x0, 0x0, 0, 0x0}
case ASRLIW:
return &inst{0x1b, 0x5, 0x0, 0x0, 0, 0x0}
case ASRLW:
return &inst{0x3b, 0x5, 0x0, 0x0, 0, 0x0}
case ASUB:
return &inst{0x33, 0x0, 0x0, 0x0, 1024, 0x20}
case ASUBW:
return &inst{0x3b, 0x0, 0x0, 0x0, 1024, 0x20}
case ASW:
return &inst{0x23, 0x2, 0x0, 0x0, 0, 0x0}
case AVAADDVV:
return &inst{0x57, 0x2, 0x0, 0x0, 576, 0x12}
case AVAADDVX:
return &inst{0x57, 0x6, 0x0, 0x0, 576, 0x12}
case AVAADDUVV:
return &inst{0x57, 0x2, 0x0, 0x0, 512, 0x10}
case AVAADDUVX:
return &inst{0x57, 0x6, 0x0, 0x0, 512, 0x10}
case AVADCVIM:
return &inst{0x57, 0x3, 0x0, 0x0, 1024, 0x20}
case AVADCVVM:
return &inst{0x57, 0x0, 0x0, 0x0, 1024, 0x20}
case AVADCVXM:
return &inst{0x57, 0x4, 0x0, 0x0, 1024, 0x20}
case AVADDVI:
return &inst{0x57, 0x3, 0x0, 0x0, 0, 0x0}
case AVADDVV:
return &inst{0x57, 0x0, 0x0, 0x0, 0, 0x0}
case AVADDVX:
return &inst{0x57, 0x4, 0x0, 0x0, 0, 0x0}
case AVANDVI:
return &inst{0x57, 0x3, 0x0, 0x0, 576, 0x12}
case AVANDVV:
return &inst{0x57, 0x0, 0x0, 0x0, 576, 0x12}
case AVANDVX:
return &inst{0x57, 0x4, 0x0, 0x0, 576, 0x12}
case AVASUBVV:
return &inst{0x57, 0x2, 0x0, 0x0, 704, 0x16}
case AVASUBVX:
return &inst{0x57, 0x6, 0x0, 0x0, 704, 0x16}
case AVASUBUVV:
return &inst{0x57, 0x2, 0x0, 0x0, 640, 0x14}
case AVASUBUVX:
return &inst{0x57, 0x6, 0x0, 0x0, 640, 0x14}
case AVCOMPRESSVM:
return &inst{0x57, 0x2, 0x0, 0x0, 1504, 0x2f}
case AVCPOPM:
return &inst{0x57, 0x2, 0x10, 0x0, 1024, 0x20}
case AVDIVVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1984, 0x42}
case AVDIVVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1984, 0x42}
case AVDIVUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -2048, 0x40}
case AVDIVUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -2048, 0x40}
case AVFADDVF:
return &inst{0x57, 0x5, 0x0, 0x0, 0, 0x0}
case AVFADDVV:
return &inst{0x57, 0x1, 0x0, 0x0, 0, 0x0}
case AVFCLASSV:
return &inst{0x57, 0x1, 0x10, 0x0, 1216, 0x26}
case AVFCVTFXV:
return &inst{0x57, 0x1, 0x3, 0x0, 1152, 0x24}
case AVFCVTFXUV:
return &inst{0x57, 0x1, 0x2, 0x0, 1152, 0x24}
case AVFCVTRTZXFV:
return &inst{0x57, 0x1, 0x7, 0x0, 1152, 0x24}
case AVFCVTRTZXUFV:
return &inst{0x57, 0x1, 0x6, 0x0, 1152, 0x24}
case AVFCVTXFV:
return &inst{0x57, 0x1, 0x1, 0x0, 1152, 0x24}
case AVFCVTXUFV:
return &inst{0x57, 0x1, 0x0, 0x0, 1152, 0x24}
case AVFDIVVF:
return &inst{0x57, 0x5, 0x0, 0x0, -2048, 0x40}
case AVFDIVVV:
return &inst{0x57, 0x1, 0x0, 0x0, -2048, 0x40}
case AVFIRSTM:
return &inst{0x57, 0x2, 0x11, 0x0, 1024, 0x20}
case AVFMACCVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1280, 0x58}
case AVFMACCVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1280, 0x58}
case AVFMADDVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1536, 0x50}
case AVFMADDVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1536, 0x50}
case AVFMAXVF:
return &inst{0x57, 0x5, 0x0, 0x0, 384, 0xc}
case AVFMAXVV:
return &inst{0x57, 0x1, 0x0, 0x0, 384, 0xc}
case AVFMERGEVFM:
return &inst{0x57, 0x5, 0x0, 0x0, 1472, 0x2e}
case AVFMINVF:
return &inst{0x57, 0x5, 0x0, 0x0, 256, 0x8}
case AVFMINVV:
return &inst{0x57, 0x1, 0x0, 0x0, 256, 0x8}
case AVFMSACVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1152, 0x5c}
case AVFMSACVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1152, 0x5c}
case AVFMSUBVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1408, 0x54}
case AVFMSUBVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1408, 0x54}
case AVFMULVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1792, 0x48}
case AVFMULVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1792, 0x48}
case AVFMVFS:
return &inst{0x57, 0x1, 0x0, 0x0, 1056, 0x21}
case AVFMVSF:
return &inst{0x57, 0x5, 0x0, 0x0, 1056, 0x21}
case AVFMVVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1504, 0x2f}
case AVFNCVTFFW:
return &inst{0x57, 0x1, 0x14, 0x0, 1152, 0x24}
case AVFNCVTFXW:
return &inst{0x57, 0x1, 0x13, 0x0, 1152, 0x24}
case AVFNCVTFXUW:
return &inst{0x57, 0x1, 0x12, 0x0, 1152, 0x24}
case AVFNCVTRODFFW:
return &inst{0x57, 0x1, 0x15, 0x0, 1152, 0x24}
case AVFNCVTRTZXFW:
return &inst{0x57, 0x1, 0x17, 0x0, 1152, 0x24}
case AVFNCVTRTZXUFW:
return &inst{0x57, 0x1, 0x16, 0x0, 1152, 0x24}
case AVFNCVTXFW:
return &inst{0x57, 0x1, 0x11, 0x0, 1152, 0x24}
case AVFNCVTXUFW:
return &inst{0x57, 0x1, 0x10, 0x0, 1152, 0x24}
case AVFNMACCVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1216, 0x5a}
case AVFNMACCVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1216, 0x5a}
case AVFNMADDVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1472, 0x52}
case AVFNMADDVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1472, 0x52}
case AVFNMSACVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1088, 0x5e}
case AVFNMSACVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1088, 0x5e}
case AVFNMSUBVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1344, 0x56}
case AVFNMSUBVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1344, 0x56}
case AVFRDIVVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1984, 0x42}
case AVFREC7V:
return &inst{0x57, 0x1, 0x5, 0x0, 1216, 0x26}
case AVFREDMAXVS:
return &inst{0x57, 0x1, 0x0, 0x0, 448, 0xe}
case AVFREDMINVS:
return &inst{0x57, 0x1, 0x0, 0x0, 320, 0xa}
case AVFREDOSUMVS:
return &inst{0x57, 0x1, 0x0, 0x0, 192, 0x6}
case AVFREDUSUMVS:
return &inst{0x57, 0x1, 0x0, 0x0, 64, 0x2}
case AVFRSQRT7V:
return &inst{0x57, 0x1, 0x4, 0x0, 1216, 0x26}
case AVFRSUBVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1600, 0x4e}
case AVFSGNJVF:
return &inst{0x57, 0x5, 0x0, 0x0, 512, 0x10}
case AVFSGNJVV:
return &inst{0x57, 0x1, 0x0, 0x0, 512, 0x10}
case AVFSGNJNVF:
return &inst{0x57, 0x5, 0x0, 0x0, 576, 0x12}
case AVFSGNJNVV:
return &inst{0x57, 0x1, 0x0, 0x0, 576, 0x12}
case AVFSGNJXVF:
return &inst{0x57, 0x5, 0x0, 0x0, 640, 0x14}
case AVFSGNJXVV:
return &inst{0x57, 0x1, 0x0, 0x0, 640, 0x14}
case AVFSLIDE1DOWNVF:
return &inst{0x57, 0x5, 0x0, 0x0, 960, 0x1e}
case AVFSLIDE1UPVF:
return &inst{0x57, 0x5, 0x0, 0x0, 896, 0x1c}
case AVFSQRTV:
return &inst{0x57, 0x1, 0x0, 0x0, 1216, 0x26}
case AVFSUBVF:
return &inst{0x57, 0x5, 0x0, 0x0, 128, 0x4}
case AVFSUBVV:
return &inst{0x57, 0x1, 0x0, 0x0, 128, 0x4}
case AVFWADDVF:
return &inst{0x57, 0x5, 0x0, 0x0, -1024, 0x60}
case AVFWADDVV:
return &inst{0x57, 0x1, 0x0, 0x0, -1024, 0x60}
case AVFWADDWF:
return &inst{0x57, 0x5, 0x0, 0x0, -768, 0x68}
case AVFWADDWV:
return &inst{0x57, 0x1, 0x0, 0x0, -768, 0x68}
case AVFWCVTFFV:
return &inst{0x57, 0x1, 0xc, 0x0, 1152, 0x24}
case AVFWCVTFXV:
return &inst{0x57, 0x1, 0xb, 0x0, 1152, 0x24}
case AVFWCVTFXUV:
return &inst{0x57, 0x1, 0xa, 0x0, 1152, 0x24}
case AVFWCVTRTZXFV:
return &inst{0x57, 0x1, 0xf, 0x0, 1152, 0x24}
case AVFWCVTRTZXUFV:
return &inst{0x57, 0x1, 0xe, 0x0, 1152, 0x24}
case AVFWCVTXFV:
return &inst{0x57, 0x1, 0x9, 0x0, 1152, 0x24}
case AVFWCVTXUFV:
return &inst{0x57, 0x1, 0x8, 0x0, 1152, 0x24}
case AVFWMACCVF:
return &inst{0x57, 0x5, 0x0, 0x0, -256, 0x78}
case AVFWMACCVV:
return &inst{0x57, 0x1, 0x0, 0x0, -256, 0x78}
case AVFWMSACVF:
return &inst{0x57, 0x5, 0x0, 0x0, -128, 0x7c}
case AVFWMSACVV:
return &inst{0x57, 0x1, 0x0, 0x0, -128, 0x7c}
case AVFWMULVF:
return &inst{0x57, 0x5, 0x0, 0x0, -512, 0x70}
case AVFWMULVV:
return &inst{0x57, 0x1, 0x0, 0x0, -512, 0x70}
case AVFWNMACCVF:
return &inst{0x57, 0x5, 0x0, 0x0, -192, 0x7a}
case AVFWNMACCVV:
return &inst{0x57, 0x1, 0x0, 0x0, -192, 0x7a}
case AVFWNMSACVF:
return &inst{0x57, 0x5, 0x0, 0x0, -64, 0x7e}
case AVFWNMSACVV:
return &inst{0x57, 0x1, 0x0, 0x0, -64, 0x7e}
case AVFWREDOSUMVS:
return &inst{0x57, 0x1, 0x0, 0x0, -832, 0x66}
case AVFWREDUSUMVS:
return &inst{0x57, 0x1, 0x0, 0x0, -960, 0x62}
case AVFWSUBVF:
return &inst{0x57, 0x5, 0x0, 0x0, -896, 0x64}
case AVFWSUBVV:
return &inst{0x57, 0x1, 0x0, 0x0, -896, 0x64}
case AVFWSUBWF:
return &inst{0x57, 0x5, 0x0, 0x0, -640, 0x6c}
case AVFWSUBWV:
return &inst{0x57, 0x1, 0x0, 0x0, -640, 0x6c}
case AVIDV:
return &inst{0x57, 0x2, 0x11, 0x0, 1280, 0x28}
case AVIOTAM:
return &inst{0x57, 0x2, 0x10, 0x0, 1280, 0x28}
case AVL1RE16V:
return &inst{0x7, 0x5, 0x0, 0x8, 40, 0x1}
case AVL1RE32V:
return &inst{0x7, 0x6, 0x0, 0x8, 40, 0x1}
case AVL1RE64V:
return &inst{0x7, 0x7, 0x0, 0x8, 40, 0x1}
case AVL1RE8V:
return &inst{0x7, 0x0, 0x0, 0x8, 40, 0x1}
case AVL2RE16V:
return &inst{0x7, 0x5, 0x0, 0x8, 552, 0x11}
case AVL2RE32V:
return &inst{0x7, 0x6, 0x0, 0x8, 552, 0x11}
case AVL2RE64V:
return &inst{0x7, 0x7, 0x0, 0x8, 552, 0x11}
case AVL2RE8V:
return &inst{0x7, 0x0, 0x0, 0x8, 552, 0x11}
case AVL4RE16V:
return &inst{0x7, 0x5, 0x0, 0x8, 1576, 0x31}
case AVL4RE32V:
return &inst{0x7, 0x6, 0x0, 0x8, 1576, 0x31}
case AVL4RE64V:
return &inst{0x7, 0x7, 0x0, 0x8, 1576, 0x31}
case AVL4RE8V:
return &inst{0x7, 0x0, 0x0, 0x8, 1576, 0x31}
case AVL8RE16V:
return &inst{0x7, 0x5, 0x0, 0x8, -472, 0x71}
case AVL8RE32V:
return &inst{0x7, 0x6, 0x0, 0x8, -472, 0x71}
case AVL8RE64V:
return &inst{0x7, 0x7, 0x0, 0x8, -472, 0x71}
case AVL8RE8V:
return &inst{0x7, 0x0, 0x0, 0x8, -472, 0x71}
case AVLE16V:
return &inst{0x7, 0x5, 0x0, 0x0, 0, 0x0}
case AVLSEG2E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 512, 0x10}
case AVLSEG3E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1024, 0x20}
case AVLSEG4E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1536, 0x30}
case AVLSEG5E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -2048, 0x40}
case AVLSEG6E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1536, 0x50}
case AVLSEG7E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1024, 0x60}
case AVLSEG8E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -512, 0x70}
case AVLE16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, 16, 0x0}
case AVLSEG2E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, 528, 0x10}
case AVLSEG3E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, 1040, 0x20}
case AVLSEG4E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, 1552, 0x30}
case AVLSEG5E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, -2032, 0x40}
case AVLSEG6E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, -1520, 0x50}
case AVLSEG7E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, -1008, 0x60}
case AVLSEG8E16FFV:
return &inst{0x7, 0x5, 0x0, 0x10, -496, 0x70}
case AVLE32V:
return &inst{0x7, 0x6, 0x0, 0x0, 0, 0x0}
case AVLSEG2E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 512, 0x10}
case AVLSEG3E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1024, 0x20}
case AVLSEG4E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1536, 0x30}
case AVLSEG5E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -2048, 0x40}
case AVLSEG6E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1536, 0x50}
case AVLSEG7E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1024, 0x60}
case AVLSEG8E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -512, 0x70}
case AVLE32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, 16, 0x0}
case AVLSEG2E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, 528, 0x10}
case AVLSEG3E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, 1040, 0x20}
case AVLSEG4E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, 1552, 0x30}
case AVLSEG5E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, -2032, 0x40}
case AVLSEG6E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, -1520, 0x50}
case AVLSEG7E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, -1008, 0x60}
case AVLSEG8E32FFV:
return &inst{0x7, 0x6, 0x0, 0x10, -496, 0x70}
case AVLE64V:
return &inst{0x7, 0x7, 0x0, 0x0, 0, 0x0}
case AVLSEG2E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 512, 0x10}
case AVLSEG3E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1024, 0x20}
case AVLSEG4E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1536, 0x30}
case AVLSEG5E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -2048, 0x40}
case AVLSEG6E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1536, 0x50}
case AVLSEG7E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1024, 0x60}
case AVLSEG8E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -512, 0x70}
case AVLE64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, 16, 0x0}
case AVLSEG2E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, 528, 0x10}
case AVLSEG3E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, 1040, 0x20}
case AVLSEG4E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, 1552, 0x30}
case AVLSEG5E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, -2032, 0x40}
case AVLSEG6E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, -1520, 0x50}
case AVLSEG7E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, -1008, 0x60}
case AVLSEG8E64FFV:
return &inst{0x7, 0x7, 0x0, 0x10, -496, 0x70}
case AVLE8V:
return &inst{0x7, 0x0, 0x0, 0x0, 0, 0x0}
case AVLSEG2E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 512, 0x10}
case AVLSEG3E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1024, 0x20}
case AVLSEG4E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1536, 0x30}
case AVLSEG5E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -2048, 0x40}
case AVLSEG6E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1536, 0x50}
case AVLSEG7E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1024, 0x60}
case AVLSEG8E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -512, 0x70}
case AVLE8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, 16, 0x0}
case AVLSEG2E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, 528, 0x10}
case AVLSEG3E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, 1040, 0x20}
case AVLSEG4E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, 1552, 0x30}
case AVLSEG5E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, -2032, 0x40}
case AVLSEG6E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, -1520, 0x50}
case AVLSEG7E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, -1008, 0x60}
case AVLSEG8E8FFV:
return &inst{0x7, 0x0, 0x0, 0x10, -496, 0x70}
case AVLMV:
return &inst{0x7, 0x0, 0x0, 0xb, 43, 0x1}
case AVLOXEI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 192, 0x6}
case AVLOXSEG2EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 704, 0x16}
case AVLOXSEG3EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1216, 0x26}
case AVLOXSEG4EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1728, 0x36}
case AVLOXSEG5EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1856, 0x46}
case AVLOXSEG6EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1344, 0x56}
case AVLOXSEG7EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -832, 0x66}
case AVLOXSEG8EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -320, 0x76}
case AVLOXEI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 192, 0x6}
case AVLOXSEG2EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 704, 0x16}
case AVLOXSEG3EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1216, 0x26}
case AVLOXSEG4EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1728, 0x36}
case AVLOXSEG5EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1856, 0x46}
case AVLOXSEG6EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1344, 0x56}
case AVLOXSEG7EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -832, 0x66}
case AVLOXSEG8EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -320, 0x76}
case AVLOXEI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 192, 0x6}
case AVLOXSEG2EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 704, 0x16}
case AVLOXSEG3EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1216, 0x26}
case AVLOXSEG4EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1728, 0x36}
case AVLOXSEG5EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1856, 0x46}
case AVLOXSEG6EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1344, 0x56}
case AVLOXSEG7EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -832, 0x66}
case AVLOXSEG8EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -320, 0x76}
case AVLOXEI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 192, 0x6}
case AVLOXSEG2EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 704, 0x16}
case AVLOXSEG3EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1216, 0x26}
case AVLOXSEG4EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1728, 0x36}
case AVLOXSEG5EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1856, 0x46}
case AVLOXSEG6EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1344, 0x56}
case AVLOXSEG7EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -832, 0x66}
case AVLOXSEG8EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -320, 0x76}
case AVLSE16V:
return &inst{0x7, 0x5, 0x0, 0x0, 128, 0x4}
case AVLSSEG2E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 640, 0x14}
case AVLSSEG3E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1152, 0x24}
case AVLSSEG4E16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1664, 0x34}
case AVLSSEG5E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1920, 0x44}
case AVLSSEG6E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1408, 0x54}
case AVLSSEG7E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -896, 0x64}
case AVLSSEG8E16V:
return &inst{0x7, 0x5, 0x0, 0x0, -384, 0x74}
case AVLSE32V:
return &inst{0x7, 0x6, 0x0, 0x0, 128, 0x4}
case AVLSSEG2E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 640, 0x14}
case AVLSSEG3E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1152, 0x24}
case AVLSSEG4E32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1664, 0x34}
case AVLSSEG5E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1920, 0x44}
case AVLSSEG6E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1408, 0x54}
case AVLSSEG7E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -896, 0x64}
case AVLSSEG8E32V:
return &inst{0x7, 0x6, 0x0, 0x0, -384, 0x74}
case AVLSE64V:
return &inst{0x7, 0x7, 0x0, 0x0, 128, 0x4}
case AVLSSEG2E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 640, 0x14}
case AVLSSEG3E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1152, 0x24}
case AVLSSEG4E64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1664, 0x34}
case AVLSSEG5E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1920, 0x44}
case AVLSSEG6E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1408, 0x54}
case AVLSSEG7E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -896, 0x64}
case AVLSSEG8E64V:
return &inst{0x7, 0x7, 0x0, 0x0, -384, 0x74}
case AVLSE8V:
return &inst{0x7, 0x0, 0x0, 0x0, 128, 0x4}
case AVLSSEG2E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 640, 0x14}
case AVLSSEG3E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1152, 0x24}
case AVLSSEG4E8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1664, 0x34}
case AVLSSEG5E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1920, 0x44}
case AVLSSEG6E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1408, 0x54}
case AVLSSEG7E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -896, 0x64}
case AVLSSEG8E8V:
return &inst{0x7, 0x0, 0x0, 0x0, -384, 0x74}
case AVLUXEI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 64, 0x2}
case AVLUXSEG2EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 576, 0x12}
case AVLUXSEG3EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1088, 0x22}
case AVLUXSEG4EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, 1600, 0x32}
case AVLUXSEG5EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1984, 0x42}
case AVLUXSEG6EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -1472, 0x52}
case AVLUXSEG7EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -960, 0x62}
case AVLUXSEG8EI16V:
return &inst{0x7, 0x5, 0x0, 0x0, -448, 0x72}
case AVLUXEI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 64, 0x2}
case AVLUXSEG2EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 576, 0x12}
case AVLUXSEG3EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1088, 0x22}
case AVLUXSEG4EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, 1600, 0x32}
case AVLUXSEG5EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1984, 0x42}
case AVLUXSEG6EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -1472, 0x52}
case AVLUXSEG7EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -960, 0x62}
case AVLUXSEG8EI32V:
return &inst{0x7, 0x6, 0x0, 0x0, -448, 0x72}
case AVLUXEI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 64, 0x2}
case AVLUXSEG2EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 576, 0x12}
case AVLUXSEG3EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1088, 0x22}
case AVLUXSEG4EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, 1600, 0x32}
case AVLUXSEG5EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1984, 0x42}
case AVLUXSEG6EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -1472, 0x52}
case AVLUXSEG7EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -960, 0x62}
case AVLUXSEG8EI64V:
return &inst{0x7, 0x7, 0x0, 0x0, -448, 0x72}
case AVLUXEI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 64, 0x2}
case AVLUXSEG2EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 576, 0x12}
case AVLUXSEG3EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1088, 0x22}
case AVLUXSEG4EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, 1600, 0x32}
case AVLUXSEG5EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1984, 0x42}
case AVLUXSEG6EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -1472, 0x52}
case AVLUXSEG7EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -960, 0x62}
case AVLUXSEG8EI8V:
return &inst{0x7, 0x0, 0x0, 0x0, -448, 0x72}
case AVMACCVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1216, 0x5a}
case AVMACCVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1216, 0x5a}
case AVMADCVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1120, 0x23}
case AVMADCVIM:
return &inst{0x57, 0x3, 0x0, 0x0, 1088, 0x22}
case AVMADCVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1120, 0x23}
case AVMADCVVM:
return &inst{0x57, 0x0, 0x0, 0x0, 1088, 0x22}
case AVMADCVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1120, 0x23}
case AVMADCVXM:
return &inst{0x57, 0x4, 0x0, 0x0, 1088, 0x22}
case AVMADDVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1472, 0x52}
case AVMADDVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1472, 0x52}
case AVMANDMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1632, 0x33}
case AVMANDNMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1568, 0x31}
case AVMAXVV:
return &inst{0x57, 0x0, 0x0, 0x0, 448, 0xe}
case AVMAXVX:
return &inst{0x57, 0x4, 0x0, 0x0, 448, 0xe}
case AVMAXUVV:
return &inst{0x57, 0x0, 0x0, 0x0, 384, 0xc}
case AVMAXUVX:
return &inst{0x57, 0x4, 0x0, 0x0, 384, 0xc}
case AVMERGEVIM:
return &inst{0x57, 0x3, 0x0, 0x0, 1472, 0x2e}
case AVMERGEVVM:
return &inst{0x57, 0x0, 0x0, 0x0, 1472, 0x2e}
case AVMERGEVXM:
return &inst{0x57, 0x4, 0x0, 0x0, 1472, 0x2e}
case AVMFEQVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1536, 0x30}
case AVMFEQVV:
return &inst{0x57, 0x1, 0x0, 0x0, 1536, 0x30}
case AVMFGEVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1984, 0x3e}
case AVMFGTVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1856, 0x3a}
case AVMFLEVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1600, 0x32}
case AVMFLEVV:
return &inst{0x57, 0x1, 0x0, 0x0, 1600, 0x32}
case AVMFLTVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1728, 0x36}
case AVMFLTVV:
return &inst{0x57, 0x1, 0x0, 0x0, 1728, 0x36}
case AVMFNEVF:
return &inst{0x57, 0x5, 0x0, 0x0, 1792, 0x38}
case AVMFNEVV:
return &inst{0x57, 0x1, 0x0, 0x0, 1792, 0x38}
case AVMINVV:
return &inst{0x57, 0x0, 0x0, 0x0, 320, 0xa}
case AVMINVX:
return &inst{0x57, 0x4, 0x0, 0x0, 320, 0xa}
case AVMINUVV:
return &inst{0x57, 0x0, 0x0, 0x0, 256, 0x8}
case AVMINUVX:
return &inst{0x57, 0x4, 0x0, 0x0, 256, 0x8}
case AVMNANDMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1888, 0x3b}
case AVMNORMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1952, 0x3d}
case AVMORMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1696, 0x35}
case AVMORNMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1824, 0x39}
case AVMSBCVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1248, 0x27}
case AVMSBCVVM:
return &inst{0x57, 0x0, 0x0, 0x0, 1216, 0x26}
case AVMSBCVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1248, 0x27}
case AVMSBCVXM:
return &inst{0x57, 0x4, 0x0, 0x0, 1216, 0x26}
case AVMSBFM:
return &inst{0x57, 0x2, 0x1, 0x0, 1280, 0x28}
case AVMSEQVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1536, 0x30}
case AVMSEQVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1536, 0x30}
case AVMSEQVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1536, 0x30}
case AVMSGTVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1984, 0x3e}
case AVMSGTVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1984, 0x3e}
case AVMSGTUVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1920, 0x3c}
case AVMSGTUVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1920, 0x3c}
case AVMSIFM:
return &inst{0x57, 0x2, 0x3, 0x0, 1280, 0x28}
case AVMSLEVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1856, 0x3a}
case AVMSLEVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1856, 0x3a}
case AVMSLEVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1856, 0x3a}
case AVMSLEUVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1792, 0x38}
case AVMSLEUVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1792, 0x38}
case AVMSLEUVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1792, 0x38}
case AVMSLTVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1728, 0x36}
case AVMSLTVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1728, 0x36}
case AVMSLTUVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1664, 0x34}
case AVMSLTUVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1664, 0x34}
case AVMSNEVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1600, 0x32}
case AVMSNEVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1600, 0x32}
case AVMSNEVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1600, 0x32}
case AVMSOFM:
return &inst{0x57, 0x2, 0x2, 0x0, 1280, 0x28}
case AVMULVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1728, 0x4a}
case AVMULVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1728, 0x4a}
case AVMULHVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1600, 0x4e}
case AVMULHVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1600, 0x4e}
case AVMULHSUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1664, 0x4c}
case AVMULHSUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1664, 0x4c}
case AVMULHUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1792, 0x48}
case AVMULHUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1792, 0x48}
case AVMV1RV:
return &inst{0x57, 0x3, 0x0, 0x0, -1568, 0x4f}
case AVMV2RV:
return &inst{0x57, 0x3, 0x1, 0x0, -1568, 0x4f}
case AVMV4RV:
return &inst{0x57, 0x3, 0x3, 0x0, -1568, 0x4f}
case AVMV8RV:
return &inst{0x57, 0x3, 0x7, 0x0, -1568, 0x4f}
case AVMVSX:
return &inst{0x57, 0x6, 0x0, 0x0, 1056, 0x21}
case AVMVVI:
return &inst{0x57, 0x3, 0x0, 0x0, 1504, 0x2f}
case AVMVVV:
return &inst{0x57, 0x0, 0x0, 0x0, 1504, 0x2f}
case AVMVVX:
return &inst{0x57, 0x4, 0x0, 0x0, 1504, 0x2f}
case AVMVXS:
return &inst{0x57, 0x2, 0x0, 0x0, 1056, 0x21}
case AVMXNORMM:
return &inst{0x57, 0x2, 0x0, 0x0, 2016, 0x3f}
case AVMXORMM:
return &inst{0x57, 0x2, 0x0, 0x0, 1760, 0x37}
case AVNCLIPWI:
return &inst{0x57, 0x3, 0x0, 0x0, -1088, 0x5e}
case AVNCLIPWV:
return &inst{0x57, 0x0, 0x0, 0x0, -1088, 0x5e}
case AVNCLIPWX:
return &inst{0x57, 0x4, 0x0, 0x0, -1088, 0x5e}
case AVNCLIPUWI:
return &inst{0x57, 0x3, 0x0, 0x0, -1152, 0x5c}
case AVNCLIPUWV:
return &inst{0x57, 0x0, 0x0, 0x0, -1152, 0x5c}
case AVNCLIPUWX:
return &inst{0x57, 0x4, 0x0, 0x0, -1152, 0x5c}
case AVNMSACVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1088, 0x5e}
case AVNMSACVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1088, 0x5e}
case AVNMSUBVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1344, 0x56}
case AVNMSUBVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1344, 0x56}
case AVNSRAWI:
return &inst{0x57, 0x3, 0x0, 0x0, -1216, 0x5a}
case AVNSRAWV:
return &inst{0x57, 0x0, 0x0, 0x0, -1216, 0x5a}
case AVNSRAWX:
return &inst{0x57, 0x4, 0x0, 0x0, -1216, 0x5a}
case AVNSRLWI:
return &inst{0x57, 0x3, 0x0, 0x0, -1280, 0x58}
case AVNSRLWV:
return &inst{0x57, 0x0, 0x0, 0x0, -1280, 0x58}
case AVNSRLWX:
return &inst{0x57, 0x4, 0x0, 0x0, -1280, 0x58}
case AVORVI:
return &inst{0x57, 0x3, 0x0, 0x0, 640, 0x14}
case AVORVV:
return &inst{0x57, 0x0, 0x0, 0x0, 640, 0x14}
case AVORVX:
return &inst{0x57, 0x4, 0x0, 0x0, 640, 0x14}
case AVREDANDVS:
return &inst{0x57, 0x2, 0x0, 0x0, 64, 0x2}
case AVREDMAXVS:
return &inst{0x57, 0x2, 0x0, 0x0, 448, 0xe}
case AVREDMAXUVS:
return &inst{0x57, 0x2, 0x0, 0x0, 384, 0xc}
case AVREDMINVS:
return &inst{0x57, 0x2, 0x0, 0x0, 320, 0xa}
case AVREDMINUVS:
return &inst{0x57, 0x2, 0x0, 0x0, 256, 0x8}
case AVREDORVS:
return &inst{0x57, 0x2, 0x0, 0x0, 128, 0x4}
case AVREDSUMVS:
return &inst{0x57, 0x2, 0x0, 0x0, 0, 0x0}
case AVREDXORVS:
return &inst{0x57, 0x2, 0x0, 0x0, 192, 0x6}
case AVREMVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1856, 0x46}
case AVREMVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1856, 0x46}
case AVREMUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1920, 0x44}
case AVREMUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1920, 0x44}
case AVRGATHERVI:
return &inst{0x57, 0x3, 0x0, 0x0, 768, 0x18}
case AVRGATHERVV:
return &inst{0x57, 0x0, 0x0, 0x0, 768, 0x18}
case AVRGATHERVX:
return &inst{0x57, 0x4, 0x0, 0x0, 768, 0x18}
case AVRGATHEREI16VV:
return &inst{0x57, 0x0, 0x0, 0x0, 896, 0x1c}
case AVRSUBVI:
return &inst{0x57, 0x3, 0x0, 0x0, 192, 0x6}
case AVRSUBVX:
return &inst{0x57, 0x4, 0x0, 0x0, 192, 0x6}
case AVS1RV:
return &inst{0x27, 0x0, 0x0, 0x8, 40, 0x1}
case AVS2RV:
return &inst{0x27, 0x0, 0x0, 0x8, 552, 0x11}
case AVS4RV:
return &inst{0x27, 0x0, 0x0, 0x8, 1576, 0x31}
case AVS8RV:
return &inst{0x27, 0x0, 0x0, 0x8, -472, 0x71}
case AVSADDVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1984, 0x42}
case AVSADDVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1984, 0x42}
case AVSADDVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1984, 0x42}
case AVSADDUVI:
return &inst{0x57, 0x3, 0x0, 0x0, -2048, 0x40}
case AVSADDUVV:
return &inst{0x57, 0x0, 0x0, 0x0, -2048, 0x40}
case AVSADDUVX:
return &inst{0x57, 0x4, 0x0, 0x0, -2048, 0x40}
case AVSBCVVM:
return &inst{0x57, 0x0, 0x0, 0x0, 1152, 0x24}
case AVSBCVXM:
return &inst{0x57, 0x4, 0x0, 0x0, 1152, 0x24}
case AVSE16V:
return &inst{0x27, 0x5, 0x0, 0x0, 0, 0x0}
case AVSSEG2E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 512, 0x10}
case AVSSEG3E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1024, 0x20}
case AVSSEG4E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1536, 0x30}
case AVSSEG5E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -2048, 0x40}
case AVSSEG6E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1536, 0x50}
case AVSSEG7E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1024, 0x60}
case AVSSEG8E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -512, 0x70}
case AVSE32V:
return &inst{0x27, 0x6, 0x0, 0x0, 0, 0x0}
case AVSSEG2E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 512, 0x10}
case AVSSEG3E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1024, 0x20}
case AVSSEG4E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1536, 0x30}
case AVSSEG5E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -2048, 0x40}
case AVSSEG6E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1536, 0x50}
case AVSSEG7E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1024, 0x60}
case AVSSEG8E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -512, 0x70}
case AVSE64V:
return &inst{0x27, 0x7, 0x0, 0x0, 0, 0x0}
case AVSSEG2E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 512, 0x10}
case AVSSEG3E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1024, 0x20}
case AVSSEG4E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1536, 0x30}
case AVSSEG5E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -2048, 0x40}
case AVSSEG6E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1536, 0x50}
case AVSSEG7E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1024, 0x60}
case AVSSEG8E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -512, 0x70}
case AVSE8V:
return &inst{0x27, 0x0, 0x0, 0x0, 0, 0x0}
case AVSSEG2E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 512, 0x10}
case AVSSEG3E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1024, 0x20}
case AVSSEG4E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1536, 0x30}
case AVSSEG5E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -2048, 0x40}
case AVSSEG6E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1536, 0x50}
case AVSSEG7E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1024, 0x60}
case AVSSEG8E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -512, 0x70}
case AVSETIVLI:
return &inst{0x57, 0x7, 0x0, 0x0, -1024, 0x60}
case AVSETVL:
return &inst{0x57, 0x7, 0x0, 0x0, -2048, 0x40}
case AVSETVLI:
return &inst{0x57, 0x7, 0x0, 0x0, 0, 0x0}
case AVSEXTVF2:
return &inst{0x57, 0x2, 0x7, 0x0, 1152, 0x24}
case AVSEXTVF4:
return &inst{0x57, 0x2, 0x5, 0x0, 1152, 0x24}
case AVSEXTVF8:
return &inst{0x57, 0x2, 0x3, 0x0, 1152, 0x24}
case AVSLIDE1DOWNVX:
return &inst{0x57, 0x6, 0x0, 0x0, 960, 0x1e}
case AVSLIDE1UPVX:
return &inst{0x57, 0x6, 0x0, 0x0, 896, 0x1c}
case AVSLIDEDOWNVI:
return &inst{0x57, 0x3, 0x0, 0x0, 960, 0x1e}
case AVSLIDEDOWNVX:
return &inst{0x57, 0x4, 0x0, 0x0, 960, 0x1e}
case AVSLIDEUPVI:
return &inst{0x57, 0x3, 0x0, 0x0, 896, 0x1c}
case AVSLIDEUPVX:
return &inst{0x57, 0x4, 0x0, 0x0, 896, 0x1c}
case AVSLLVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1728, 0x4a}
case AVSLLVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1728, 0x4a}
case AVSLLVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1728, 0x4a}
case AVSMV:
return &inst{0x27, 0x0, 0x0, 0xb, 43, 0x1}
case AVSMULVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1600, 0x4e}
case AVSMULVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1600, 0x4e}
case AVSOXEI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 192, 0x6}
case AVSOXSEG2EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 704, 0x16}
case AVSOXSEG3EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1216, 0x26}
case AVSOXSEG4EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1728, 0x36}
case AVSOXSEG5EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1856, 0x46}
case AVSOXSEG6EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1344, 0x56}
case AVSOXSEG7EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -832, 0x66}
case AVSOXSEG8EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -320, 0x76}
case AVSOXEI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 192, 0x6}
case AVSOXSEG2EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 704, 0x16}
case AVSOXSEG3EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1216, 0x26}
case AVSOXSEG4EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1728, 0x36}
case AVSOXSEG5EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1856, 0x46}
case AVSOXSEG6EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1344, 0x56}
case AVSOXSEG7EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -832, 0x66}
case AVSOXSEG8EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -320, 0x76}
case AVSOXEI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 192, 0x6}
case AVSOXSEG2EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 704, 0x16}
case AVSOXSEG3EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1216, 0x26}
case AVSOXSEG4EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1728, 0x36}
case AVSOXSEG5EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1856, 0x46}
case AVSOXSEG6EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1344, 0x56}
case AVSOXSEG7EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -832, 0x66}
case AVSOXSEG8EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -320, 0x76}
case AVSOXEI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 192, 0x6}
case AVSOXSEG2EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 704, 0x16}
case AVSOXSEG3EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1216, 0x26}
case AVSOXSEG4EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1728, 0x36}
case AVSOXSEG5EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1856, 0x46}
case AVSOXSEG6EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1344, 0x56}
case AVSOXSEG7EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -832, 0x66}
case AVSOXSEG8EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -320, 0x76}
case AVSRAVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1472, 0x52}
case AVSRAVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1472, 0x52}
case AVSRAVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1472, 0x52}
case AVSRLVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1536, 0x50}
case AVSRLVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1536, 0x50}
case AVSRLVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1536, 0x50}
case AVSSE16V:
return &inst{0x27, 0x5, 0x0, 0x0, 128, 0x4}
case AVSSSEG2E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 640, 0x14}
case AVSSSEG3E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1152, 0x24}
case AVSSSEG4E16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1664, 0x34}
case AVSSSEG5E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1920, 0x44}
case AVSSSEG6E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1408, 0x54}
case AVSSSEG7E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -896, 0x64}
case AVSSSEG8E16V:
return &inst{0x27, 0x5, 0x0, 0x0, -384, 0x74}
case AVSSE32V:
return &inst{0x27, 0x6, 0x0, 0x0, 128, 0x4}
case AVSSSEG2E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 640, 0x14}
case AVSSSEG3E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1152, 0x24}
case AVSSSEG4E32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1664, 0x34}
case AVSSSEG5E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1920, 0x44}
case AVSSSEG6E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1408, 0x54}
case AVSSSEG7E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -896, 0x64}
case AVSSSEG8E32V:
return &inst{0x27, 0x6, 0x0, 0x0, -384, 0x74}
case AVSSE64V:
return &inst{0x27, 0x7, 0x0, 0x0, 128, 0x4}
case AVSSSEG2E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 640, 0x14}
case AVSSSEG3E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1152, 0x24}
case AVSSSEG4E64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1664, 0x34}
case AVSSSEG5E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1920, 0x44}
case AVSSSEG6E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1408, 0x54}
case AVSSSEG7E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -896, 0x64}
case AVSSSEG8E64V:
return &inst{0x27, 0x7, 0x0, 0x0, -384, 0x74}
case AVSSE8V:
return &inst{0x27, 0x0, 0x0, 0x0, 128, 0x4}
case AVSSSEG2E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 640, 0x14}
case AVSSSEG3E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1152, 0x24}
case AVSSSEG4E8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1664, 0x34}
case AVSSSEG5E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1920, 0x44}
case AVSSSEG6E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1408, 0x54}
case AVSSSEG7E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -896, 0x64}
case AVSSSEG8E8V:
return &inst{0x27, 0x0, 0x0, 0x0, -384, 0x74}
case AVSSRAVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1344, 0x56}
case AVSSRAVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1344, 0x56}
case AVSSRAVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1344, 0x56}
case AVSSRLVI:
return &inst{0x57, 0x3, 0x0, 0x0, -1408, 0x54}
case AVSSRLVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1408, 0x54}
case AVSSRLVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1408, 0x54}
case AVSSUBVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1856, 0x46}
case AVSSUBVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1856, 0x46}
case AVSSUBUVV:
return &inst{0x57, 0x0, 0x0, 0x0, -1920, 0x44}
case AVSSUBUVX:
return &inst{0x57, 0x4, 0x0, 0x0, -1920, 0x44}
case AVSUBVV:
return &inst{0x57, 0x0, 0x0, 0x0, 128, 0x4}
case AVSUBVX:
return &inst{0x57, 0x4, 0x0, 0x0, 128, 0x4}
case AVSUXEI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 64, 0x2}
case AVSUXSEG2EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 576, 0x12}
case AVSUXSEG3EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1088, 0x22}
case AVSUXSEG4EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, 1600, 0x32}
case AVSUXSEG5EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1984, 0x42}
case AVSUXSEG6EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -1472, 0x52}
case AVSUXSEG7EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -960, 0x62}
case AVSUXSEG8EI16V:
return &inst{0x27, 0x5, 0x0, 0x0, -448, 0x72}
case AVSUXEI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 64, 0x2}
case AVSUXSEG2EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 576, 0x12}
case AVSUXSEG3EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1088, 0x22}
case AVSUXSEG4EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, 1600, 0x32}
case AVSUXSEG5EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1984, 0x42}
case AVSUXSEG6EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -1472, 0x52}
case AVSUXSEG7EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -960, 0x62}
case AVSUXSEG8EI32V:
return &inst{0x27, 0x6, 0x0, 0x0, -448, 0x72}
case AVSUXEI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 64, 0x2}
case AVSUXSEG2EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 576, 0x12}
case AVSUXSEG3EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1088, 0x22}
case AVSUXSEG4EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, 1600, 0x32}
case AVSUXSEG5EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1984, 0x42}
case AVSUXSEG6EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -1472, 0x52}
case AVSUXSEG7EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -960, 0x62}
case AVSUXSEG8EI64V:
return &inst{0x27, 0x7, 0x0, 0x0, -448, 0x72}
case AVSUXEI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 64, 0x2}
case AVSUXSEG2EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 576, 0x12}
case AVSUXSEG3EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1088, 0x22}
case AVSUXSEG4EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, 1600, 0x32}
case AVSUXSEG5EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1984, 0x42}
case AVSUXSEG6EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -1472, 0x52}
case AVSUXSEG7EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -960, 0x62}
case AVSUXSEG8EI8V:
return &inst{0x27, 0x0, 0x0, 0x0, -448, 0x72}
case AVWADDVV:
return &inst{0x57, 0x2, 0x0, 0x0, -960, 0x62}
case AVWADDVX:
return &inst{0x57, 0x6, 0x0, 0x0, -960, 0x62}
case AVWADDWV:
return &inst{0x57, 0x2, 0x0, 0x0, -704, 0x6a}
case AVWADDWX:
return &inst{0x57, 0x6, 0x0, 0x0, -704, 0x6a}
case AVWADDUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -1024, 0x60}
case AVWADDUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -1024, 0x60}
case AVWADDUWV:
return &inst{0x57, 0x2, 0x0, 0x0, -768, 0x68}
case AVWADDUWX:
return &inst{0x57, 0x6, 0x0, 0x0, -768, 0x68}
case AVWMACCVV:
return &inst{0x57, 0x2, 0x0, 0x0, -192, 0x7a}
case AVWMACCVX:
return &inst{0x57, 0x6, 0x0, 0x0, -192, 0x7a}
case AVWMACCSUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -64, 0x7e}
case AVWMACCSUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -64, 0x7e}
case AVWMACCUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -256, 0x78}
case AVWMACCUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -256, 0x78}
case AVWMACCUSVX:
return &inst{0x57, 0x6, 0x0, 0x0, -128, 0x7c}
case AVWMULVV:
return &inst{0x57, 0x2, 0x0, 0x0, -320, 0x76}
case AVWMULVX:
return &inst{0x57, 0x6, 0x0, 0x0, -320, 0x76}
case AVWMULSUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -384, 0x74}
case AVWMULSUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -384, 0x74}
case AVWMULUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -512, 0x70}
case AVWMULUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -512, 0x70}
case AVWREDSUMVS:
return &inst{0x57, 0x0, 0x0, 0x0, -960, 0x62}
case AVWREDSUMUVS:
return &inst{0x57, 0x0, 0x0, 0x0, -1024, 0x60}
case AVWSUBVV:
return &inst{0x57, 0x2, 0x0, 0x0, -832, 0x66}
case AVWSUBVX:
return &inst{0x57, 0x6, 0x0, 0x0, -832, 0x66}
case AVWSUBWV:
return &inst{0x57, 0x2, 0x0, 0x0, -576, 0x6e}
case AVWSUBWX:
return &inst{0x57, 0x6, 0x0, 0x0, -576, 0x6e}
case AVWSUBUVV:
return &inst{0x57, 0x2, 0x0, 0x0, -896, 0x64}
case AVWSUBUVX:
return &inst{0x57, 0x6, 0x0, 0x0, -896, 0x64}
case AVWSUBUWV:
return &inst{0x57, 0x2, 0x0, 0x0, -640, 0x6c}
case AVWSUBUWX:
return &inst{0x57, 0x6, 0x0, 0x0, -640, 0x6c}
case AVXORVI:
return &inst{0x57, 0x3, 0x0, 0x0, 704, 0x16}
case AVXORVV:
return &inst{0x57, 0x0, 0x0, 0x0, 704, 0x16}
case AVXORVX:
return &inst{0x57, 0x4, 0x0, 0x0, 704, 0x16}
case AVZEXTVF2:
return &inst{0x57, 0x2, 0x6, 0x0, 1152, 0x24}
case AVZEXTVF4:
return &inst{0x57, 0x2, 0x4, 0x0, 1152, 0x24}
case AVZEXTVF8:
return &inst{0x57, 0x2, 0x2, 0x0, 1152, 0x24}
case AWFI:
return &inst{0x73, 0x0, 0x0, 0x5, 261, 0x8}
case AXNOR:
return &inst{0x33, 0x4, 0x0, 0x0, 1024, 0x20}
case AXOR:
return &inst{0x33, 0x4, 0x0, 0x0, 0, 0x0}
case AXORI:
return &inst{0x13, 0x4, 0x0, 0x0, 0, 0x0}
case AZEXTH:
return &inst{0x3b, 0x4, 0x0, 0x0, 128, 0x4}
}
return nil
}
var csrs = map[uint16]string{
0x1: "FFLAGS",
0x2: "FRM",
0x3: "FCSR",
0x7: "UTVT",
0x8: "VSTART",
0x9: "VXSAT",
0xa: "VXRM",
0xf: "VCSR",
0x11: "SSP",
0x15: "SEED",
0x17: "JVT",
0x45: "UNXTI",
0x46: "UINTSTATUS",
0x48: "USCRATCHCSW",
0x49: "USCRATCHCSWL",
0x100: "SSTATUS",
0x102: "SEDELEG",
0x103: "SIDELEG",
0x104: "SIE",
0x105: "STVEC",
0x106: "SCOUNTEREN",
0x107: "STVT",
0x10a: "SENVCFG",
0x10c: "SSTATEEN0",
0x10d: "SSTATEEN1",
0x10e: "SSTATEEN2",
0x10f: "SSTATEEN3",
0x120: "SCOUNTINHIBIT",
0x140: "SSCRATCH",
0x141: "SEPC",
0x142: "SCAUSE",
0x143: "STVAL",
0x144: "SIP",
0x145: "SNXTI",
0x146: "SINTSTATUS",
0x148: "SSCRATCHCSW",
0x149: "SSCRATCHCSWL",
0x14d: "STIMECMP",
0x14e: "SCTRCTL",
0x14f: "SCTRSTATUS",
0x150: "SISELECT",
0x151: "SIREG",
0x152: "SIREG2",
0x153: "SIREG3",
0x155: "SIREG4",
0x156: "SIREG5",
0x157: "SIREG6",
0x15c: "STOPEI",
0x15f: "SCTRDEPTH",
0x180: "SATP",
0x181: "SRMCFG",
0x200: "VSSTATUS",
0x204: "VSIE",
0x205: "VSTVEC",
0x240: "VSSCRATCH",
0x241: "VSEPC",
0x242: "VSCAUSE",
0x243: "VSTVAL",
0x244: "VSIP",
0x24d: "VSTIMECMP",
0x24e: "VSCTRCTL",
0x250: "VSISELECT",
0x251: "VSIREG",
0x252: "VSIREG2",
0x253: "VSIREG3",
0x255: "VSIREG4",
0x256: "VSIREG5",
0x257: "VSIREG6",
0x25c: "VSTOPEI",
0x280: "VSATP",
0x300: "MSTATUS",
0x301: "MISA",
0x302: "MEDELEG",
0x303: "MIDELEG",
0x304: "MIE",
0x305: "MTVEC",
0x306: "MCOUNTEREN",
0x307: "MTVT",
0x308: "MVIEN",
0x309: "MVIP",
0x30a: "MENVCFG",
0x30c: "MSTATEEN0",
0x30d: "MSTATEEN1",
0x30e: "MSTATEEN2",
0x30f: "MSTATEEN3",
0x320: "MCOUNTINHIBIT",
0x321: "MCYCLECFG",
0x322: "MINSTRETCFG",
0x323: "MHPMEVENT3",
0x324: "MHPMEVENT4",
0x325: "MHPMEVENT5",
0x326: "MHPMEVENT6",
0x327: "MHPMEVENT7",
0x328: "MHPMEVENT8",
0x329: "MHPMEVENT9",
0x32a: "MHPMEVENT10",
0x32b: "MHPMEVENT11",
0x32c: "MHPMEVENT12",
0x32d: "MHPMEVENT13",
0x32e: "MHPMEVENT14",
0x32f: "MHPMEVENT15",
0x330: "MHPMEVENT16",
0x331: "MHPMEVENT17",
0x332: "MHPMEVENT18",
0x333: "MHPMEVENT19",
0x334: "MHPMEVENT20",
0x335: "MHPMEVENT21",
0x336: "MHPMEVENT22",
0x337: "MHPMEVENT23",
0x338: "MHPMEVENT24",
0x339: "MHPMEVENT25",
0x33a: "MHPMEVENT26",
0x33b: "MHPMEVENT27",
0x33c: "MHPMEVENT28",
0x33d: "MHPMEVENT29",
0x33e: "MHPMEVENT30",
0x33f: "MHPMEVENT31",
0x340: "MSCRATCH",
0x341: "MEPC",
0x342: "MCAUSE",
0x343: "MTVAL",
0x344: "MIP",
0x345: "MNXTI",
0x346: "MINTSTATUS",
0x348: "MSCRATCHCSW",
0x349: "MSCRATCHCSWL",
0x34a: "MTINST",
0x34b: "MTVAL2",
0x34e: "MCTRCTL",
0x350: "MISELECT",
0x351: "MIREG",
0x352: "MIREG2",
0x353: "MIREG3",
0x355: "MIREG4",
0x356: "MIREG5",
0x357: "MIREG6",
0x35c: "MTOPEI",
0x3a0: "PMPCFG0",
0x3a1: "PMPCFG1",
0x3a2: "PMPCFG2",
0x3a3: "PMPCFG3",
0x3a4: "PMPCFG4",
0x3a5: "PMPCFG5",
0x3a6: "PMPCFG6",
0x3a7: "PMPCFG7",
0x3a8: "PMPCFG8",
0x3a9: "PMPCFG9",
0x3aa: "PMPCFG10",
0x3ab: "PMPCFG11",
0x3ac: "PMPCFG12",
0x3ad: "PMPCFG13",
0x3ae: "PMPCFG14",
0x3af: "PMPCFG15",
0x3b0: "PMPADDR0",
0x3b1: "PMPADDR1",
0x3b2: "PMPADDR2",
0x3b3: "PMPADDR3",
0x3b4: "PMPADDR4",
0x3b5: "PMPADDR5",
0x3b6: "PMPADDR6",
0x3b7: "PMPADDR7",
0x3b8: "PMPADDR8",
0x3b9: "PMPADDR9",
0x3ba: "PMPADDR10",
0x3bb: "PMPADDR11",
0x3bc: "PMPADDR12",
0x3bd: "PMPADDR13",
0x3be: "PMPADDR14",
0x3bf: "PMPADDR15",
0x3c0: "PMPADDR16",
0x3c1: "PMPADDR17",
0x3c2: "PMPADDR18",
0x3c3: "PMPADDR19",
0x3c4: "PMPADDR20",
0x3c5: "PMPADDR21",
0x3c6: "PMPADDR22",
0x3c7: "PMPADDR23",
0x3c8: "PMPADDR24",
0x3c9: "PMPADDR25",
0x3ca: "PMPADDR26",
0x3cb: "PMPADDR27",
0x3cc: "PMPADDR28",
0x3cd: "PMPADDR29",
0x3ce: "PMPADDR30",
0x3cf: "PMPADDR31",
0x3d0: "PMPADDR32",
0x3d1: "PMPADDR33",
0x3d2: "PMPADDR34",
0x3d3: "PMPADDR35",
0x3d4: "PMPADDR36",
0x3d5: "PMPADDR37",
0x3d6: "PMPADDR38",
0x3d7: "PMPADDR39",
0x3d8: "PMPADDR40",
0x3d9: "PMPADDR41",
0x3da: "PMPADDR42",
0x3db: "PMPADDR43",
0x3dc: "PMPADDR44",
0x3dd: "PMPADDR45",
0x3de: "PMPADDR46",
0x3df: "PMPADDR47",
0x3e0: "PMPADDR48",
0x3e1: "PMPADDR49",
0x3e2: "PMPADDR50",
0x3e3: "PMPADDR51",
0x3e4: "PMPADDR52",
0x3e5: "PMPADDR53",
0x3e6: "PMPADDR54",
0x3e7: "PMPADDR55",
0x3e8: "PMPADDR56",
0x3e9: "PMPADDR57",
0x3ea: "PMPADDR58",
0x3eb: "PMPADDR59",
0x3ec: "PMPADDR60",
0x3ed: "PMPADDR61",
0x3ee: "PMPADDR62",
0x3ef: "PMPADDR63",
0x5a8: "SCONTEXT",
0x600: "HSTATUS",
0x602: "HEDELEG",
0x603: "HIDELEG",
0x604: "HIE",
0x605: "HTIMEDELTA",
0x606: "HCOUNTEREN",
0x607: "HGEIE",
0x608: "HVIEN",
0x609: "HVICTL",
0x60a: "HENVCFG",
0x60c: "HSTATEEN0",
0x60d: "HSTATEEN1",
0x60e: "HSTATEEN2",
0x60f: "HSTATEEN3",
0x643: "HTVAL",
0x644: "HIP",
0x645: "HVIP",
0x646: "HVIPRIO1",
0x647: "HVIPRIO2",
0x64a: "HTINST",
0x680: "HGATP",
0x6a8: "HCONTEXT",
0x747: "MSECCFG",
0x7a0: "TSELECT",
0x7a1: "TDATA1",
0x7a2: "TDATA2",
0x7a3: "TDATA3",
0x7a4: "TINFO",
0x7a5: "TCONTROL",
0x7a8: "MCONTEXT",
0x7aa: "MSCONTEXT",
0x7b0: "DCSR",
0x7b1: "DPC",
0x7b2: "DSCRATCH0",
0x7b3: "DSCRATCH1",
0xb00: "MCYCLE",
0xb02: "MINSTRET",
0xb03: "MHPMCOUNTER3",
0xb04: "MHPMCOUNTER4",
0xb05: "MHPMCOUNTER5",
0xb06: "MHPMCOUNTER6",
0xb07: "MHPMCOUNTER7",
0xb08: "MHPMCOUNTER8",
0xb09: "MHPMCOUNTER9",
0xb0a: "MHPMCOUNTER10",
0xb0b: "MHPMCOUNTER11",
0xb0c: "MHPMCOUNTER12",
0xb0d: "MHPMCOUNTER13",
0xb0e: "MHPMCOUNTER14",
0xb0f: "MHPMCOUNTER15",
0xb10: "MHPMCOUNTER16",
0xb11: "MHPMCOUNTER17",
0xb12: "MHPMCOUNTER18",
0xb13: "MHPMCOUNTER19",
0xb14: "MHPMCOUNTER20",
0xb15: "MHPMCOUNTER21",
0xb16: "MHPMCOUNTER22",
0xb17: "MHPMCOUNTER23",
0xb18: "MHPMCOUNTER24",
0xb19: "MHPMCOUNTER25",
0xb1a: "MHPMCOUNTER26",
0xb1b: "MHPMCOUNTER27",
0xb1c: "MHPMCOUNTER28",
0xb1d: "MHPMCOUNTER29",
0xb1e: "MHPMCOUNTER30",
0xb1f: "MHPMCOUNTER31",
0xc00: "CYCLE",
0xc01: "TIME",
0xc02: "INSTRET",
0xc03: "HPMCOUNTER3",
0xc04: "HPMCOUNTER4",
0xc05: "HPMCOUNTER5",
0xc06: "HPMCOUNTER6",
0xc07: "HPMCOUNTER7",
0xc08: "HPMCOUNTER8",
0xc09: "HPMCOUNTER9",
0xc0a: "HPMCOUNTER10",
0xc0b: "HPMCOUNTER11",
0xc0c: "HPMCOUNTER12",
0xc0d: "HPMCOUNTER13",
0xc0e: "HPMCOUNTER14",
0xc0f: "HPMCOUNTER15",
0xc10: "HPMCOUNTER16",
0xc11: "HPMCOUNTER17",
0xc12: "HPMCOUNTER18",
0xc13: "HPMCOUNTER19",
0xc14: "HPMCOUNTER20",
0xc15: "HPMCOUNTER21",
0xc16: "HPMCOUNTER22",
0xc17: "HPMCOUNTER23",
0xc18: "HPMCOUNTER24",
0xc19: "HPMCOUNTER25",
0xc1a: "HPMCOUNTER26",
0xc1b: "HPMCOUNTER27",
0xc1c: "HPMCOUNTER28",
0xc1d: "HPMCOUNTER29",
0xc1e: "HPMCOUNTER30",
0xc1f: "HPMCOUNTER31",
0xc20: "VL",
0xc21: "VTYPE",
0xc22: "VLENB",
0xda0: "SCOUNTOVF",
0xdb0: "STOPI",
0xe12: "HGEIP",
0xeb0: "VSTOPI",
0xf11: "MVENDORID",
0xf12: "MARCHID",
0xf13: "MIMPID",
0xf14: "MHARTID",
0xf15: "MCONFIGPTR",
0xfb0: "MTOPI",
}
|