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 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135
|
/* Simulator instruction decoder for sh64_compact.
THIS FILE IS MACHINE GENERATED WITH CGEN.
Copyright 1996-2010, 2012 Free Software Foundation, Inc.
This file is part of the GNU simulators.
This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
It is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
#define WANT_CPU sh64
#define WANT_CPU_SH64
#include "sim-main.h"
#include "sim-assert.h"
/* The instruction descriptor array.
This is computed at runtime. Space for it is not malloc'd to save a
teensy bit of cpu in the decoder. Moving it to malloc space is trivial
but won't be done until necessary (we don't currently support the runtime
addition of instructions nor an SMP machine with different cpus). */
static IDESC sh64_compact_insn_data[SH64_COMPACT_INSN__MAX];
/* Commas between elements are contained in the macros.
Some of these are conditionally compiled out. */
static const struct insn_sem sh64_compact_insn_sem[] =
{
{ VIRTUAL_INSN_X_INVALID, SH64_COMPACT_INSN_X_INVALID, SH64_COMPACT_SFMT_EMPTY },
{ VIRTUAL_INSN_X_AFTER, SH64_COMPACT_INSN_X_AFTER, SH64_COMPACT_SFMT_EMPTY },
{ VIRTUAL_INSN_X_BEFORE, SH64_COMPACT_INSN_X_BEFORE, SH64_COMPACT_SFMT_EMPTY },
{ VIRTUAL_INSN_X_CTI_CHAIN, SH64_COMPACT_INSN_X_CTI_CHAIN, SH64_COMPACT_SFMT_EMPTY },
{ VIRTUAL_INSN_X_CHAIN, SH64_COMPACT_INSN_X_CHAIN, SH64_COMPACT_SFMT_EMPTY },
{ VIRTUAL_INSN_X_BEGIN, SH64_COMPACT_INSN_X_BEGIN, SH64_COMPACT_SFMT_EMPTY },
{ SH_INSN_ADD_COMPACT, SH64_COMPACT_INSN_ADD_COMPACT, SH64_COMPACT_SFMT_ADD_COMPACT },
{ SH_INSN_ADDI_COMPACT, SH64_COMPACT_INSN_ADDI_COMPACT, SH64_COMPACT_SFMT_ADDI_COMPACT },
{ SH_INSN_ADDC_COMPACT, SH64_COMPACT_INSN_ADDC_COMPACT, SH64_COMPACT_SFMT_ADDC_COMPACT },
{ SH_INSN_ADDV_COMPACT, SH64_COMPACT_INSN_ADDV_COMPACT, SH64_COMPACT_SFMT_ADDV_COMPACT },
{ SH_INSN_AND_COMPACT, SH64_COMPACT_INSN_AND_COMPACT, SH64_COMPACT_SFMT_AND_COMPACT },
{ SH_INSN_ANDI_COMPACT, SH64_COMPACT_INSN_ANDI_COMPACT, SH64_COMPACT_SFMT_ANDI_COMPACT },
{ SH_INSN_ANDB_COMPACT, SH64_COMPACT_INSN_ANDB_COMPACT, SH64_COMPACT_SFMT_ANDB_COMPACT },
{ SH_INSN_BF_COMPACT, SH64_COMPACT_INSN_BF_COMPACT, SH64_COMPACT_SFMT_BF_COMPACT },
{ SH_INSN_BFS_COMPACT, SH64_COMPACT_INSN_BFS_COMPACT, SH64_COMPACT_SFMT_BFS_COMPACT },
{ SH_INSN_BRA_COMPACT, SH64_COMPACT_INSN_BRA_COMPACT, SH64_COMPACT_SFMT_BRA_COMPACT },
{ SH_INSN_BRAF_COMPACT, SH64_COMPACT_INSN_BRAF_COMPACT, SH64_COMPACT_SFMT_BRAF_COMPACT },
{ SH_INSN_BRK_COMPACT, SH64_COMPACT_INSN_BRK_COMPACT, SH64_COMPACT_SFMT_BRK_COMPACT },
{ SH_INSN_BSR_COMPACT, SH64_COMPACT_INSN_BSR_COMPACT, SH64_COMPACT_SFMT_BSR_COMPACT },
{ SH_INSN_BSRF_COMPACT, SH64_COMPACT_INSN_BSRF_COMPACT, SH64_COMPACT_SFMT_BSRF_COMPACT },
{ SH_INSN_BT_COMPACT, SH64_COMPACT_INSN_BT_COMPACT, SH64_COMPACT_SFMT_BF_COMPACT },
{ SH_INSN_BTS_COMPACT, SH64_COMPACT_INSN_BTS_COMPACT, SH64_COMPACT_SFMT_BFS_COMPACT },
{ SH_INSN_CLRMAC_COMPACT, SH64_COMPACT_INSN_CLRMAC_COMPACT, SH64_COMPACT_SFMT_CLRMAC_COMPACT },
{ SH_INSN_CLRS_COMPACT, SH64_COMPACT_INSN_CLRS_COMPACT, SH64_COMPACT_SFMT_CLRS_COMPACT },
{ SH_INSN_CLRT_COMPACT, SH64_COMPACT_INSN_CLRT_COMPACT, SH64_COMPACT_SFMT_CLRT_COMPACT },
{ SH_INSN_CMPEQ_COMPACT, SH64_COMPACT_INSN_CMPEQ_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_CMPEQI_COMPACT, SH64_COMPACT_INSN_CMPEQI_COMPACT, SH64_COMPACT_SFMT_CMPEQI_COMPACT },
{ SH_INSN_CMPGE_COMPACT, SH64_COMPACT_INSN_CMPGE_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_CMPGT_COMPACT, SH64_COMPACT_INSN_CMPGT_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_CMPHI_COMPACT, SH64_COMPACT_INSN_CMPHI_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_CMPHS_COMPACT, SH64_COMPACT_INSN_CMPHS_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_CMPPL_COMPACT, SH64_COMPACT_INSN_CMPPL_COMPACT, SH64_COMPACT_SFMT_CMPPL_COMPACT },
{ SH_INSN_CMPPZ_COMPACT, SH64_COMPACT_INSN_CMPPZ_COMPACT, SH64_COMPACT_SFMT_CMPPL_COMPACT },
{ SH_INSN_CMPSTR_COMPACT, SH64_COMPACT_INSN_CMPSTR_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_DIV0S_COMPACT, SH64_COMPACT_INSN_DIV0S_COMPACT, SH64_COMPACT_SFMT_DIV0S_COMPACT },
{ SH_INSN_DIV0U_COMPACT, SH64_COMPACT_INSN_DIV0U_COMPACT, SH64_COMPACT_SFMT_DIV0U_COMPACT },
{ SH_INSN_DIV1_COMPACT, SH64_COMPACT_INSN_DIV1_COMPACT, SH64_COMPACT_SFMT_DIV1_COMPACT },
{ SH_INSN_DIVU_COMPACT, SH64_COMPACT_INSN_DIVU_COMPACT, SH64_COMPACT_SFMT_DIVU_COMPACT },
{ SH_INSN_MULR_COMPACT, SH64_COMPACT_INSN_MULR_COMPACT, SH64_COMPACT_SFMT_DIVU_COMPACT },
{ SH_INSN_DMULSL_COMPACT, SH64_COMPACT_INSN_DMULSL_COMPACT, SH64_COMPACT_SFMT_DMULSL_COMPACT },
{ SH_INSN_DMULUL_COMPACT, SH64_COMPACT_INSN_DMULUL_COMPACT, SH64_COMPACT_SFMT_DMULSL_COMPACT },
{ SH_INSN_DT_COMPACT, SH64_COMPACT_INSN_DT_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_EXTSB_COMPACT, SH64_COMPACT_INSN_EXTSB_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_EXTSW_COMPACT, SH64_COMPACT_INSN_EXTSW_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_EXTUB_COMPACT, SH64_COMPACT_INSN_EXTUB_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_EXTUW_COMPACT, SH64_COMPACT_INSN_EXTUW_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_FABS_COMPACT, SH64_COMPACT_INSN_FABS_COMPACT, SH64_COMPACT_SFMT_FABS_COMPACT },
{ SH_INSN_FADD_COMPACT, SH64_COMPACT_INSN_FADD_COMPACT, SH64_COMPACT_SFMT_FADD_COMPACT },
{ SH_INSN_FCMPEQ_COMPACT, SH64_COMPACT_INSN_FCMPEQ_COMPACT, SH64_COMPACT_SFMT_FCMPEQ_COMPACT },
{ SH_INSN_FCMPGT_COMPACT, SH64_COMPACT_INSN_FCMPGT_COMPACT, SH64_COMPACT_SFMT_FCMPEQ_COMPACT },
{ SH_INSN_FCNVDS_COMPACT, SH64_COMPACT_INSN_FCNVDS_COMPACT, SH64_COMPACT_SFMT_FCNVDS_COMPACT },
{ SH_INSN_FCNVSD_COMPACT, SH64_COMPACT_INSN_FCNVSD_COMPACT, SH64_COMPACT_SFMT_FCNVSD_COMPACT },
{ SH_INSN_FDIV_COMPACT, SH64_COMPACT_INSN_FDIV_COMPACT, SH64_COMPACT_SFMT_FADD_COMPACT },
{ SH_INSN_FIPR_COMPACT, SH64_COMPACT_INSN_FIPR_COMPACT, SH64_COMPACT_SFMT_FIPR_COMPACT },
{ SH_INSN_FLDS_COMPACT, SH64_COMPACT_INSN_FLDS_COMPACT, SH64_COMPACT_SFMT_FLDS_COMPACT },
{ SH_INSN_FLDI0_COMPACT, SH64_COMPACT_INSN_FLDI0_COMPACT, SH64_COMPACT_SFMT_FLDI0_COMPACT },
{ SH_INSN_FLDI1_COMPACT, SH64_COMPACT_INSN_FLDI1_COMPACT, SH64_COMPACT_SFMT_FLDI0_COMPACT },
{ SH_INSN_FLOAT_COMPACT, SH64_COMPACT_INSN_FLOAT_COMPACT, SH64_COMPACT_SFMT_FLOAT_COMPACT },
{ SH_INSN_FMAC_COMPACT, SH64_COMPACT_INSN_FMAC_COMPACT, SH64_COMPACT_SFMT_FMAC_COMPACT },
{ SH_INSN_FMOV1_COMPACT, SH64_COMPACT_INSN_FMOV1_COMPACT, SH64_COMPACT_SFMT_FMOV1_COMPACT },
{ SH_INSN_FMOV2_COMPACT, SH64_COMPACT_INSN_FMOV2_COMPACT, SH64_COMPACT_SFMT_FMOV2_COMPACT },
{ SH_INSN_FMOV3_COMPACT, SH64_COMPACT_INSN_FMOV3_COMPACT, SH64_COMPACT_SFMT_FMOV3_COMPACT },
{ SH_INSN_FMOV4_COMPACT, SH64_COMPACT_INSN_FMOV4_COMPACT, SH64_COMPACT_SFMT_FMOV4_COMPACT },
{ SH_INSN_FMOV5_COMPACT, SH64_COMPACT_INSN_FMOV5_COMPACT, SH64_COMPACT_SFMT_FMOV5_COMPACT },
{ SH_INSN_FMOV6_COMPACT, SH64_COMPACT_INSN_FMOV6_COMPACT, SH64_COMPACT_SFMT_FMOV6_COMPACT },
{ SH_INSN_FMOV7_COMPACT, SH64_COMPACT_INSN_FMOV7_COMPACT, SH64_COMPACT_SFMT_FMOV7_COMPACT },
{ SH_INSN_FMOV8_COMPACT, SH64_COMPACT_INSN_FMOV8_COMPACT, SH64_COMPACT_SFMT_FMOV8_COMPACT },
{ SH_INSN_FMOV9_COMPACT, SH64_COMPACT_INSN_FMOV9_COMPACT, SH64_COMPACT_SFMT_FMOV9_COMPACT },
{ SH_INSN_FMUL_COMPACT, SH64_COMPACT_INSN_FMUL_COMPACT, SH64_COMPACT_SFMT_FADD_COMPACT },
{ SH_INSN_FNEG_COMPACT, SH64_COMPACT_INSN_FNEG_COMPACT, SH64_COMPACT_SFMT_FABS_COMPACT },
{ SH_INSN_FRCHG_COMPACT, SH64_COMPACT_INSN_FRCHG_COMPACT, SH64_COMPACT_SFMT_FRCHG_COMPACT },
{ SH_INSN_FSCHG_COMPACT, SH64_COMPACT_INSN_FSCHG_COMPACT, SH64_COMPACT_SFMT_FSCHG_COMPACT },
{ SH_INSN_FSQRT_COMPACT, SH64_COMPACT_INSN_FSQRT_COMPACT, SH64_COMPACT_SFMT_FABS_COMPACT },
{ SH_INSN_FSTS_COMPACT, SH64_COMPACT_INSN_FSTS_COMPACT, SH64_COMPACT_SFMT_FSTS_COMPACT },
{ SH_INSN_FSUB_COMPACT, SH64_COMPACT_INSN_FSUB_COMPACT, SH64_COMPACT_SFMT_FADD_COMPACT },
{ SH_INSN_FTRC_COMPACT, SH64_COMPACT_INSN_FTRC_COMPACT, SH64_COMPACT_SFMT_FTRC_COMPACT },
{ SH_INSN_FTRV_COMPACT, SH64_COMPACT_INSN_FTRV_COMPACT, SH64_COMPACT_SFMT_FTRV_COMPACT },
{ SH_INSN_JMP_COMPACT, SH64_COMPACT_INSN_JMP_COMPACT, SH64_COMPACT_SFMT_BRAF_COMPACT },
{ SH_INSN_JSR_COMPACT, SH64_COMPACT_INSN_JSR_COMPACT, SH64_COMPACT_SFMT_BSRF_COMPACT },
{ SH_INSN_LDC_GBR_COMPACT, SH64_COMPACT_INSN_LDC_GBR_COMPACT, SH64_COMPACT_SFMT_LDC_GBR_COMPACT },
{ SH_INSN_LDC_VBR_COMPACT, SH64_COMPACT_INSN_LDC_VBR_COMPACT, SH64_COMPACT_SFMT_LDC_VBR_COMPACT },
{ SH_INSN_LDC_SR_COMPACT, SH64_COMPACT_INSN_LDC_SR_COMPACT, SH64_COMPACT_SFMT_LDC_SR_COMPACT },
{ SH_INSN_LDCL_GBR_COMPACT, SH64_COMPACT_INSN_LDCL_GBR_COMPACT, SH64_COMPACT_SFMT_LDCL_GBR_COMPACT },
{ SH_INSN_LDCL_VBR_COMPACT, SH64_COMPACT_INSN_LDCL_VBR_COMPACT, SH64_COMPACT_SFMT_LDCL_VBR_COMPACT },
{ SH_INSN_LDS_FPSCR_COMPACT, SH64_COMPACT_INSN_LDS_FPSCR_COMPACT, SH64_COMPACT_SFMT_LDS_FPSCR_COMPACT },
{ SH_INSN_LDSL_FPSCR_COMPACT, SH64_COMPACT_INSN_LDSL_FPSCR_COMPACT, SH64_COMPACT_SFMT_LDSL_FPSCR_COMPACT },
{ SH_INSN_LDS_FPUL_COMPACT, SH64_COMPACT_INSN_LDS_FPUL_COMPACT, SH64_COMPACT_SFMT_LDS_FPUL_COMPACT },
{ SH_INSN_LDSL_FPUL_COMPACT, SH64_COMPACT_INSN_LDSL_FPUL_COMPACT, SH64_COMPACT_SFMT_LDSL_FPUL_COMPACT },
{ SH_INSN_LDS_MACH_COMPACT, SH64_COMPACT_INSN_LDS_MACH_COMPACT, SH64_COMPACT_SFMT_LDS_MACH_COMPACT },
{ SH_INSN_LDSL_MACH_COMPACT, SH64_COMPACT_INSN_LDSL_MACH_COMPACT, SH64_COMPACT_SFMT_LDSL_MACH_COMPACT },
{ SH_INSN_LDS_MACL_COMPACT, SH64_COMPACT_INSN_LDS_MACL_COMPACT, SH64_COMPACT_SFMT_LDS_MACL_COMPACT },
{ SH_INSN_LDSL_MACL_COMPACT, SH64_COMPACT_INSN_LDSL_MACL_COMPACT, SH64_COMPACT_SFMT_LDSL_MACL_COMPACT },
{ SH_INSN_LDS_PR_COMPACT, SH64_COMPACT_INSN_LDS_PR_COMPACT, SH64_COMPACT_SFMT_LDS_PR_COMPACT },
{ SH_INSN_LDSL_PR_COMPACT, SH64_COMPACT_INSN_LDSL_PR_COMPACT, SH64_COMPACT_SFMT_LDSL_PR_COMPACT },
{ SH_INSN_MACL_COMPACT, SH64_COMPACT_INSN_MACL_COMPACT, SH64_COMPACT_SFMT_MACL_COMPACT },
{ SH_INSN_MACW_COMPACT, SH64_COMPACT_INSN_MACW_COMPACT, SH64_COMPACT_SFMT_MACW_COMPACT },
{ SH_INSN_MOV_COMPACT, SH64_COMPACT_INSN_MOV_COMPACT, SH64_COMPACT_SFMT_MOV_COMPACT },
{ SH_INSN_MOVI_COMPACT, SH64_COMPACT_INSN_MOVI_COMPACT, SH64_COMPACT_SFMT_MOVI_COMPACT },
{ SH_INSN_MOVI20_COMPACT, SH64_COMPACT_INSN_MOVI20_COMPACT, SH64_COMPACT_SFMT_MOVI20_COMPACT },
{ SH_INSN_MOVB1_COMPACT, SH64_COMPACT_INSN_MOVB1_COMPACT, SH64_COMPACT_SFMT_MOVB1_COMPACT },
{ SH_INSN_MOVB2_COMPACT, SH64_COMPACT_INSN_MOVB2_COMPACT, SH64_COMPACT_SFMT_MOVB2_COMPACT },
{ SH_INSN_MOVB3_COMPACT, SH64_COMPACT_INSN_MOVB3_COMPACT, SH64_COMPACT_SFMT_MOVB3_COMPACT },
{ SH_INSN_MOVB4_COMPACT, SH64_COMPACT_INSN_MOVB4_COMPACT, SH64_COMPACT_SFMT_MOVB4_COMPACT },
{ SH_INSN_MOVB5_COMPACT, SH64_COMPACT_INSN_MOVB5_COMPACT, SH64_COMPACT_SFMT_MOVB5_COMPACT },
{ SH_INSN_MOVB6_COMPACT, SH64_COMPACT_INSN_MOVB6_COMPACT, SH64_COMPACT_SFMT_MOVB6_COMPACT },
{ SH_INSN_MOVB7_COMPACT, SH64_COMPACT_INSN_MOVB7_COMPACT, SH64_COMPACT_SFMT_MOVB7_COMPACT },
{ SH_INSN_MOVB8_COMPACT, SH64_COMPACT_INSN_MOVB8_COMPACT, SH64_COMPACT_SFMT_MOVB8_COMPACT },
{ SH_INSN_MOVB9_COMPACT, SH64_COMPACT_INSN_MOVB9_COMPACT, SH64_COMPACT_SFMT_MOVB9_COMPACT },
{ SH_INSN_MOVB10_COMPACT, SH64_COMPACT_INSN_MOVB10_COMPACT, SH64_COMPACT_SFMT_MOVB10_COMPACT },
{ SH_INSN_MOVL1_COMPACT, SH64_COMPACT_INSN_MOVL1_COMPACT, SH64_COMPACT_SFMT_MOVL1_COMPACT },
{ SH_INSN_MOVL2_COMPACT, SH64_COMPACT_INSN_MOVL2_COMPACT, SH64_COMPACT_SFMT_MOVL2_COMPACT },
{ SH_INSN_MOVL3_COMPACT, SH64_COMPACT_INSN_MOVL3_COMPACT, SH64_COMPACT_SFMT_MOVL3_COMPACT },
{ SH_INSN_MOVL4_COMPACT, SH64_COMPACT_INSN_MOVL4_COMPACT, SH64_COMPACT_SFMT_MOVL4_COMPACT },
{ SH_INSN_MOVL5_COMPACT, SH64_COMPACT_INSN_MOVL5_COMPACT, SH64_COMPACT_SFMT_MOVL5_COMPACT },
{ SH_INSN_MOVL6_COMPACT, SH64_COMPACT_INSN_MOVL6_COMPACT, SH64_COMPACT_SFMT_MOVL6_COMPACT },
{ SH_INSN_MOVL7_COMPACT, SH64_COMPACT_INSN_MOVL7_COMPACT, SH64_COMPACT_SFMT_MOVL7_COMPACT },
{ SH_INSN_MOVL8_COMPACT, SH64_COMPACT_INSN_MOVL8_COMPACT, SH64_COMPACT_SFMT_MOVL8_COMPACT },
{ SH_INSN_MOVL9_COMPACT, SH64_COMPACT_INSN_MOVL9_COMPACT, SH64_COMPACT_SFMT_MOVL9_COMPACT },
{ SH_INSN_MOVL10_COMPACT, SH64_COMPACT_INSN_MOVL10_COMPACT, SH64_COMPACT_SFMT_MOVL10_COMPACT },
{ SH_INSN_MOVL11_COMPACT, SH64_COMPACT_INSN_MOVL11_COMPACT, SH64_COMPACT_SFMT_MOVL11_COMPACT },
{ SH_INSN_MOVL12_COMPACT, SH64_COMPACT_INSN_MOVL12_COMPACT, SH64_COMPACT_SFMT_MOVL12_COMPACT },
{ SH_INSN_MOVL13_COMPACT, SH64_COMPACT_INSN_MOVL13_COMPACT, SH64_COMPACT_SFMT_MOVL13_COMPACT },
{ SH_INSN_MOVW1_COMPACT, SH64_COMPACT_INSN_MOVW1_COMPACT, SH64_COMPACT_SFMT_MOVW1_COMPACT },
{ SH_INSN_MOVW2_COMPACT, SH64_COMPACT_INSN_MOVW2_COMPACT, SH64_COMPACT_SFMT_MOVW2_COMPACT },
{ SH_INSN_MOVW3_COMPACT, SH64_COMPACT_INSN_MOVW3_COMPACT, SH64_COMPACT_SFMT_MOVW3_COMPACT },
{ SH_INSN_MOVW4_COMPACT, SH64_COMPACT_INSN_MOVW4_COMPACT, SH64_COMPACT_SFMT_MOVW4_COMPACT },
{ SH_INSN_MOVW5_COMPACT, SH64_COMPACT_INSN_MOVW5_COMPACT, SH64_COMPACT_SFMT_MOVW5_COMPACT },
{ SH_INSN_MOVW6_COMPACT, SH64_COMPACT_INSN_MOVW6_COMPACT, SH64_COMPACT_SFMT_MOVW6_COMPACT },
{ SH_INSN_MOVW7_COMPACT, SH64_COMPACT_INSN_MOVW7_COMPACT, SH64_COMPACT_SFMT_MOVW7_COMPACT },
{ SH_INSN_MOVW8_COMPACT, SH64_COMPACT_INSN_MOVW8_COMPACT, SH64_COMPACT_SFMT_MOVW8_COMPACT },
{ SH_INSN_MOVW9_COMPACT, SH64_COMPACT_INSN_MOVW9_COMPACT, SH64_COMPACT_SFMT_MOVW9_COMPACT },
{ SH_INSN_MOVW10_COMPACT, SH64_COMPACT_INSN_MOVW10_COMPACT, SH64_COMPACT_SFMT_MOVW10_COMPACT },
{ SH_INSN_MOVW11_COMPACT, SH64_COMPACT_INSN_MOVW11_COMPACT, SH64_COMPACT_SFMT_MOVW11_COMPACT },
{ SH_INSN_MOVA_COMPACT, SH64_COMPACT_INSN_MOVA_COMPACT, SH64_COMPACT_SFMT_MOVA_COMPACT },
{ SH_INSN_MOVCAL_COMPACT, SH64_COMPACT_INSN_MOVCAL_COMPACT, SH64_COMPACT_SFMT_MOVCAL_COMPACT },
{ SH_INSN_MOVCOL_COMPACT, SH64_COMPACT_INSN_MOVCOL_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_MOVT_COMPACT, SH64_COMPACT_INSN_MOVT_COMPACT, SH64_COMPACT_SFMT_MOVT_COMPACT },
{ SH_INSN_MOVUAL_COMPACT, SH64_COMPACT_INSN_MOVUAL_COMPACT, SH64_COMPACT_SFMT_MOVUAL_COMPACT },
{ SH_INSN_MOVUAL2_COMPACT, SH64_COMPACT_INSN_MOVUAL2_COMPACT, SH64_COMPACT_SFMT_MOVUAL2_COMPACT },
{ SH_INSN_MULL_COMPACT, SH64_COMPACT_INSN_MULL_COMPACT, SH64_COMPACT_SFMT_MULL_COMPACT },
{ SH_INSN_MULSW_COMPACT, SH64_COMPACT_INSN_MULSW_COMPACT, SH64_COMPACT_SFMT_MULL_COMPACT },
{ SH_INSN_MULUW_COMPACT, SH64_COMPACT_INSN_MULUW_COMPACT, SH64_COMPACT_SFMT_MULL_COMPACT },
{ SH_INSN_NEG_COMPACT, SH64_COMPACT_INSN_NEG_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_NEGC_COMPACT, SH64_COMPACT_INSN_NEGC_COMPACT, SH64_COMPACT_SFMT_NEGC_COMPACT },
{ SH_INSN_NOP_COMPACT, SH64_COMPACT_INSN_NOP_COMPACT, SH64_COMPACT_SFMT_NOP_COMPACT },
{ SH_INSN_NOT_COMPACT, SH64_COMPACT_INSN_NOT_COMPACT, SH64_COMPACT_SFMT_MOV_COMPACT },
{ SH_INSN_OCBI_COMPACT, SH64_COMPACT_INSN_OCBI_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_OCBP_COMPACT, SH64_COMPACT_INSN_OCBP_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_OCBWB_COMPACT, SH64_COMPACT_INSN_OCBWB_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_OR_COMPACT, SH64_COMPACT_INSN_OR_COMPACT, SH64_COMPACT_SFMT_AND_COMPACT },
{ SH_INSN_ORI_COMPACT, SH64_COMPACT_INSN_ORI_COMPACT, SH64_COMPACT_SFMT_ANDI_COMPACT },
{ SH_INSN_ORB_COMPACT, SH64_COMPACT_INSN_ORB_COMPACT, SH64_COMPACT_SFMT_ANDB_COMPACT },
{ SH_INSN_PREF_COMPACT, SH64_COMPACT_INSN_PREF_COMPACT, SH64_COMPACT_SFMT_PREF_COMPACT },
{ SH_INSN_ROTCL_COMPACT, SH64_COMPACT_INSN_ROTCL_COMPACT, SH64_COMPACT_SFMT_ROTCL_COMPACT },
{ SH_INSN_ROTCR_COMPACT, SH64_COMPACT_INSN_ROTCR_COMPACT, SH64_COMPACT_SFMT_ROTCL_COMPACT },
{ SH_INSN_ROTL_COMPACT, SH64_COMPACT_INSN_ROTL_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_ROTR_COMPACT, SH64_COMPACT_INSN_ROTR_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_RTS_COMPACT, SH64_COMPACT_INSN_RTS_COMPACT, SH64_COMPACT_SFMT_RTS_COMPACT },
{ SH_INSN_SETS_COMPACT, SH64_COMPACT_INSN_SETS_COMPACT, SH64_COMPACT_SFMT_CLRS_COMPACT },
{ SH_INSN_SETT_COMPACT, SH64_COMPACT_INSN_SETT_COMPACT, SH64_COMPACT_SFMT_CLRT_COMPACT },
{ SH_INSN_SHAD_COMPACT, SH64_COMPACT_INSN_SHAD_COMPACT, SH64_COMPACT_SFMT_SHAD_COMPACT },
{ SH_INSN_SHAL_COMPACT, SH64_COMPACT_INSN_SHAL_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_SHAR_COMPACT, SH64_COMPACT_INSN_SHAR_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_SHLD_COMPACT, SH64_COMPACT_INSN_SHLD_COMPACT, SH64_COMPACT_SFMT_SHAD_COMPACT },
{ SH_INSN_SHLL_COMPACT, SH64_COMPACT_INSN_SHLL_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_SHLL2_COMPACT, SH64_COMPACT_INSN_SHLL2_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_SHLL8_COMPACT, SH64_COMPACT_INSN_SHLL8_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_SHLL16_COMPACT, SH64_COMPACT_INSN_SHLL16_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_SHLR_COMPACT, SH64_COMPACT_INSN_SHLR_COMPACT, SH64_COMPACT_SFMT_DT_COMPACT },
{ SH_INSN_SHLR2_COMPACT, SH64_COMPACT_INSN_SHLR2_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_SHLR8_COMPACT, SH64_COMPACT_INSN_SHLR8_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_SHLR16_COMPACT, SH64_COMPACT_INSN_SHLR16_COMPACT, SH64_COMPACT_SFMT_MOVCOL_COMPACT },
{ SH_INSN_STC_GBR_COMPACT, SH64_COMPACT_INSN_STC_GBR_COMPACT, SH64_COMPACT_SFMT_STC_GBR_COMPACT },
{ SH_INSN_STC_VBR_COMPACT, SH64_COMPACT_INSN_STC_VBR_COMPACT, SH64_COMPACT_SFMT_STC_VBR_COMPACT },
{ SH_INSN_STCL_GBR_COMPACT, SH64_COMPACT_INSN_STCL_GBR_COMPACT, SH64_COMPACT_SFMT_STCL_GBR_COMPACT },
{ SH_INSN_STCL_VBR_COMPACT, SH64_COMPACT_INSN_STCL_VBR_COMPACT, SH64_COMPACT_SFMT_STCL_VBR_COMPACT },
{ SH_INSN_STS_FPSCR_COMPACT, SH64_COMPACT_INSN_STS_FPSCR_COMPACT, SH64_COMPACT_SFMT_STS_FPSCR_COMPACT },
{ SH_INSN_STSL_FPSCR_COMPACT, SH64_COMPACT_INSN_STSL_FPSCR_COMPACT, SH64_COMPACT_SFMT_STSL_FPSCR_COMPACT },
{ SH_INSN_STS_FPUL_COMPACT, SH64_COMPACT_INSN_STS_FPUL_COMPACT, SH64_COMPACT_SFMT_STS_FPUL_COMPACT },
{ SH_INSN_STSL_FPUL_COMPACT, SH64_COMPACT_INSN_STSL_FPUL_COMPACT, SH64_COMPACT_SFMT_STSL_FPUL_COMPACT },
{ SH_INSN_STS_MACH_COMPACT, SH64_COMPACT_INSN_STS_MACH_COMPACT, SH64_COMPACT_SFMT_STS_MACH_COMPACT },
{ SH_INSN_STSL_MACH_COMPACT, SH64_COMPACT_INSN_STSL_MACH_COMPACT, SH64_COMPACT_SFMT_STSL_MACH_COMPACT },
{ SH_INSN_STS_MACL_COMPACT, SH64_COMPACT_INSN_STS_MACL_COMPACT, SH64_COMPACT_SFMT_STS_MACL_COMPACT },
{ SH_INSN_STSL_MACL_COMPACT, SH64_COMPACT_INSN_STSL_MACL_COMPACT, SH64_COMPACT_SFMT_STSL_MACL_COMPACT },
{ SH_INSN_STS_PR_COMPACT, SH64_COMPACT_INSN_STS_PR_COMPACT, SH64_COMPACT_SFMT_STS_PR_COMPACT },
{ SH_INSN_STSL_PR_COMPACT, SH64_COMPACT_INSN_STSL_PR_COMPACT, SH64_COMPACT_SFMT_STSL_PR_COMPACT },
{ SH_INSN_SUB_COMPACT, SH64_COMPACT_INSN_SUB_COMPACT, SH64_COMPACT_SFMT_ADD_COMPACT },
{ SH_INSN_SUBC_COMPACT, SH64_COMPACT_INSN_SUBC_COMPACT, SH64_COMPACT_SFMT_ADDC_COMPACT },
{ SH_INSN_SUBV_COMPACT, SH64_COMPACT_INSN_SUBV_COMPACT, SH64_COMPACT_SFMT_ADDV_COMPACT },
{ SH_INSN_SWAPB_COMPACT, SH64_COMPACT_INSN_SWAPB_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_SWAPW_COMPACT, SH64_COMPACT_INSN_SWAPW_COMPACT, SH64_COMPACT_SFMT_EXTSB_COMPACT },
{ SH_INSN_TASB_COMPACT, SH64_COMPACT_INSN_TASB_COMPACT, SH64_COMPACT_SFMT_TASB_COMPACT },
{ SH_INSN_TRAPA_COMPACT, SH64_COMPACT_INSN_TRAPA_COMPACT, SH64_COMPACT_SFMT_TRAPA_COMPACT },
{ SH_INSN_TST_COMPACT, SH64_COMPACT_INSN_TST_COMPACT, SH64_COMPACT_SFMT_CMPEQ_COMPACT },
{ SH_INSN_TSTI_COMPACT, SH64_COMPACT_INSN_TSTI_COMPACT, SH64_COMPACT_SFMT_TSTI_COMPACT },
{ SH_INSN_TSTB_COMPACT, SH64_COMPACT_INSN_TSTB_COMPACT, SH64_COMPACT_SFMT_TSTB_COMPACT },
{ SH_INSN_XOR_COMPACT, SH64_COMPACT_INSN_XOR_COMPACT, SH64_COMPACT_SFMT_AND_COMPACT },
{ SH_INSN_XORI_COMPACT, SH64_COMPACT_INSN_XORI_COMPACT, SH64_COMPACT_SFMT_ANDI_COMPACT },
{ SH_INSN_XORB_COMPACT, SH64_COMPACT_INSN_XORB_COMPACT, SH64_COMPACT_SFMT_ANDB_COMPACT },
{ SH_INSN_XTRCT_COMPACT, SH64_COMPACT_INSN_XTRCT_COMPACT, SH64_COMPACT_SFMT_ADD_COMPACT },
};
static const struct insn_sem sh64_compact_insn_sem_invalid =
{
VIRTUAL_INSN_X_INVALID, SH64_COMPACT_INSN_X_INVALID, SH64_COMPACT_SFMT_EMPTY
};
/* Initialize an IDESC from the compile-time computable parts. */
static INLINE void
init_idesc (SIM_CPU *cpu, IDESC *id, const struct insn_sem *t)
{
const CGEN_INSN *insn_table = CGEN_CPU_INSN_TABLE (CPU_CPU_DESC (cpu))->init_entries;
id->num = t->index;
id->sfmt = t->sfmt;
if ((int) t->type <= 0)
id->idata = & cgen_virtual_insn_table[- (int) t->type];
else
id->idata = & insn_table[t->type];
id->attrs = CGEN_INSN_ATTRS (id->idata);
/* Oh my god, a magic number. */
id->length = CGEN_INSN_BITSIZE (id->idata) / 8;
#if WITH_PROFILE_MODEL_P
id->timing = & MODEL_TIMING (CPU_MODEL (cpu)) [t->index];
{
SIM_DESC sd = CPU_STATE (cpu);
SIM_ASSERT (t->index == id->timing->num);
}
#endif
/* Semantic pointers are initialized elsewhere. */
}
/* Initialize the instruction descriptor table. */
void
sh64_compact_init_idesc_table (SIM_CPU *cpu)
{
IDESC *id,*tabend;
const struct insn_sem *t,*tend;
int tabsize = SH64_COMPACT_INSN__MAX;
IDESC *table = sh64_compact_insn_data;
memset (table, 0, tabsize * sizeof (IDESC));
/* First set all entries to the `invalid insn'. */
t = & sh64_compact_insn_sem_invalid;
for (id = table, tabend = table + tabsize; id < tabend; ++id)
init_idesc (cpu, id, t);
/* Now fill in the values for the chosen cpu. */
for (t = sh64_compact_insn_sem, tend = t + sizeof (sh64_compact_insn_sem) / sizeof (*t);
t != tend; ++t)
{
init_idesc (cpu, & table[t->index], t);
}
/* Link the IDESC table into the cpu. */
CPU_IDESC (cpu) = table;
}
/* Given an instruction, return a pointer to its IDESC entry. */
const IDESC *
sh64_compact_decode (SIM_CPU *current_cpu, IADDR pc,
CGEN_INSN_WORD base_insn, CGEN_INSN_WORD entire_insn,
ARGBUF *abuf)
{
/* Result of decoder. */
SH64_COMPACT_INSN_TYPE itype;
{
CGEN_INSN_WORD insn = base_insn;
{
unsigned int val = (((insn >> 5) & (15 << 7)) | ((insn >> 0) & (127 << 0)));
switch (val)
{
case 0 : /* fall through */
case 16 : /* fall through */
case 32 : /* fall through */
case 48 : /* fall through */
case 64 : /* fall through */
case 80 : /* fall through */
case 96 : /* fall through */
case 112 : itype = SH64_COMPACT_INSN_MOVI20_COMPACT; goto extract_sfmt_movi20_compact;
case 3 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_BSRF_COMPACT; goto extract_sfmt_bsrf_compact;
case 1 : itype = SH64_COMPACT_INSN_PREF_COMPACT; goto extract_sfmt_pref_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 4 : /* fall through */
case 20 : /* fall through */
case 36 : /* fall through */
case 52 : /* fall through */
case 68 : /* fall through */
case 84 : /* fall through */
case 100 : /* fall through */
case 116 : itype = SH64_COMPACT_INSN_MOVB3_COMPACT; goto extract_sfmt_movb3_compact;
case 5 : /* fall through */
case 21 : /* fall through */
case 37 : /* fall through */
case 53 : /* fall through */
case 69 : /* fall through */
case 85 : /* fall through */
case 101 : /* fall through */
case 117 : itype = SH64_COMPACT_INSN_MOVW3_COMPACT; goto extract_sfmt_movw3_compact;
case 6 : /* fall through */
case 22 : /* fall through */
case 38 : /* fall through */
case 54 : /* fall through */
case 70 : /* fall through */
case 86 : /* fall through */
case 102 : /* fall through */
case 118 : itype = SH64_COMPACT_INSN_MOVL3_COMPACT; goto extract_sfmt_movl3_compact;
case 7 : /* fall through */
case 23 : /* fall through */
case 39 : /* fall through */
case 55 : /* fall through */
case 71 : /* fall through */
case 87 : /* fall through */
case 103 : /* fall through */
case 119 : itype = SH64_COMPACT_INSN_MULL_COMPACT; goto extract_sfmt_mull_compact;
case 8 :
if ((entire_insn & 0xffff) == 0x8)
{ itype = SH64_COMPACT_INSN_CLRT_COMPACT; goto extract_sfmt_clrt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 9 :
if ((entire_insn & 0xffff) == 0x9)
{ itype = SH64_COMPACT_INSN_NOP_COMPACT; goto extract_sfmt_nop_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 10 :
if ((entire_insn & 0xf0ff) == 0xa)
{ itype = SH64_COMPACT_INSN_STS_MACH_COMPACT; goto extract_sfmt_sts_mach_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 11 :
if ((entire_insn & 0xffff) == 0xb)
{ itype = SH64_COMPACT_INSN_RTS_COMPACT; goto extract_sfmt_rts_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 12 : /* fall through */
case 28 : /* fall through */
case 44 : /* fall through */
case 60 : /* fall through */
case 76 : /* fall through */
case 92 : /* fall through */
case 108 : /* fall through */
case 124 : itype = SH64_COMPACT_INSN_MOVB8_COMPACT; goto extract_sfmt_movb8_compact;
case 13 : /* fall through */
case 29 : /* fall through */
case 45 : /* fall through */
case 61 : /* fall through */
case 77 : /* fall through */
case 93 : /* fall through */
case 109 : /* fall through */
case 125 : itype = SH64_COMPACT_INSN_MOVW8_COMPACT; goto extract_sfmt_movw8_compact;
case 14 : /* fall through */
case 30 : /* fall through */
case 46 : /* fall through */
case 62 : /* fall through */
case 78 : /* fall through */
case 94 : /* fall through */
case 110 : /* fall through */
case 126 : itype = SH64_COMPACT_INSN_MOVL8_COMPACT; goto extract_sfmt_movl8_compact;
case 15 : /* fall through */
case 31 : /* fall through */
case 47 : /* fall through */
case 63 : /* fall through */
case 79 : /* fall through */
case 95 : /* fall through */
case 111 : /* fall through */
case 127 : itype = SH64_COMPACT_INSN_MACL_COMPACT; goto extract_sfmt_macl_compact;
case 18 :
if ((entire_insn & 0xf0ff) == 0x12)
{ itype = SH64_COMPACT_INSN_STC_GBR_COMPACT; goto extract_sfmt_stc_gbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 19 :
if ((entire_insn & 0xf0ff) == 0x93)
{ itype = SH64_COMPACT_INSN_OCBI_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 24 :
if ((entire_insn & 0xffff) == 0x18)
{ itype = SH64_COMPACT_INSN_SETT_COMPACT; goto extract_sfmt_clrt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 25 :
if ((entire_insn & 0xffff) == 0x19)
{ itype = SH64_COMPACT_INSN_DIV0U_COMPACT; goto extract_sfmt_div0u_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 26 :
if ((entire_insn & 0xf0ff) == 0x1a)
{ itype = SH64_COMPACT_INSN_STS_MACL_COMPACT; goto extract_sfmt_sts_macl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 34 :
if ((entire_insn & 0xf0ff) == 0x22)
{ itype = SH64_COMPACT_INSN_STC_VBR_COMPACT; goto extract_sfmt_stc_vbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 35 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_BRAF_COMPACT; goto extract_sfmt_braf_compact;
case 1 : itype = SH64_COMPACT_INSN_OCBP_COMPACT; goto extract_sfmt_movcol_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 40 :
if ((entire_insn & 0xffff) == 0x28)
{ itype = SH64_COMPACT_INSN_CLRMAC_COMPACT; goto extract_sfmt_clrmac_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 41 :
if ((entire_insn & 0xf0ff) == 0x29)
{ itype = SH64_COMPACT_INSN_MOVT_COMPACT; goto extract_sfmt_movt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 42 :
if ((entire_insn & 0xf0ff) == 0x2a)
{ itype = SH64_COMPACT_INSN_STS_PR_COMPACT; goto extract_sfmt_sts_pr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 51 :
if ((entire_insn & 0xf0ff) == 0xb3)
{ itype = SH64_COMPACT_INSN_OCBWB_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 59 :
if ((entire_insn & 0xffff) == 0x3b)
{ itype = SH64_COMPACT_INSN_BRK_COMPACT; goto extract_sfmt_brk_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 67 :
if ((entire_insn & 0xf0ff) == 0xc3)
{ itype = SH64_COMPACT_INSN_MOVCAL_COMPACT; goto extract_sfmt_movcal_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 72 :
if ((entire_insn & 0xffff) == 0x48)
{ itype = SH64_COMPACT_INSN_CLRS_COMPACT; goto extract_sfmt_clrs_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 88 :
if ((entire_insn & 0xffff) == 0x58)
{ itype = SH64_COMPACT_INSN_SETS_COMPACT; goto extract_sfmt_clrs_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 90 :
if ((entire_insn & 0xf0ff) == 0x5a)
{ itype = SH64_COMPACT_INSN_STS_FPUL_COMPACT; goto extract_sfmt_sts_fpul_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 106 :
if ((entire_insn & 0xf0ff) == 0x6a)
{ itype = SH64_COMPACT_INSN_STS_FPSCR_COMPACT; goto extract_sfmt_sts_fpscr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 115 :
if ((entire_insn & 0xf0ff) == 0x73)
{ itype = SH64_COMPACT_INSN_MOVCOL_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 128 : /* fall through */
case 129 : /* fall through */
case 130 : /* fall through */
case 131 : /* fall through */
case 132 : /* fall through */
case 133 : /* fall through */
case 134 : /* fall through */
case 135 : /* fall through */
case 136 : /* fall through */
case 137 : /* fall through */
case 138 : /* fall through */
case 139 : /* fall through */
case 140 : /* fall through */
case 141 : /* fall through */
case 142 : /* fall through */
case 143 : /* fall through */
case 144 : /* fall through */
case 145 : /* fall through */
case 146 : /* fall through */
case 147 : /* fall through */
case 148 : /* fall through */
case 149 : /* fall through */
case 150 : /* fall through */
case 151 : /* fall through */
case 152 : /* fall through */
case 153 : /* fall through */
case 154 : /* fall through */
case 155 : /* fall through */
case 156 : /* fall through */
case 157 : /* fall through */
case 158 : /* fall through */
case 159 : /* fall through */
case 160 : /* fall through */
case 161 : /* fall through */
case 162 : /* fall through */
case 163 : /* fall through */
case 164 : /* fall through */
case 165 : /* fall through */
case 166 : /* fall through */
case 167 : /* fall through */
case 168 : /* fall through */
case 169 : /* fall through */
case 170 : /* fall through */
case 171 : /* fall through */
case 172 : /* fall through */
case 173 : /* fall through */
case 174 : /* fall through */
case 175 : /* fall through */
case 176 : /* fall through */
case 177 : /* fall through */
case 178 : /* fall through */
case 179 : /* fall through */
case 180 : /* fall through */
case 181 : /* fall through */
case 182 : /* fall through */
case 183 : /* fall through */
case 184 : /* fall through */
case 185 : /* fall through */
case 186 : /* fall through */
case 187 : /* fall through */
case 188 : /* fall through */
case 189 : /* fall through */
case 190 : /* fall through */
case 191 : /* fall through */
case 192 : /* fall through */
case 193 : /* fall through */
case 194 : /* fall through */
case 195 : /* fall through */
case 196 : /* fall through */
case 197 : /* fall through */
case 198 : /* fall through */
case 199 : /* fall through */
case 200 : /* fall through */
case 201 : /* fall through */
case 202 : /* fall through */
case 203 : /* fall through */
case 204 : /* fall through */
case 205 : /* fall through */
case 206 : /* fall through */
case 207 : /* fall through */
case 208 : /* fall through */
case 209 : /* fall through */
case 210 : /* fall through */
case 211 : /* fall through */
case 212 : /* fall through */
case 213 : /* fall through */
case 214 : /* fall through */
case 215 : /* fall through */
case 216 : /* fall through */
case 217 : /* fall through */
case 218 : /* fall through */
case 219 : /* fall through */
case 220 : /* fall through */
case 221 : /* fall through */
case 222 : /* fall through */
case 223 : /* fall through */
case 224 : /* fall through */
case 225 : /* fall through */
case 226 : /* fall through */
case 227 : /* fall through */
case 228 : /* fall through */
case 229 : /* fall through */
case 230 : /* fall through */
case 231 : /* fall through */
case 232 : /* fall through */
case 233 : /* fall through */
case 234 : /* fall through */
case 235 : /* fall through */
case 236 : /* fall through */
case 237 : /* fall through */
case 238 : /* fall through */
case 239 : /* fall through */
case 240 : /* fall through */
case 241 : /* fall through */
case 242 : /* fall through */
case 243 : /* fall through */
case 244 : /* fall through */
case 245 : /* fall through */
case 246 : /* fall through */
case 247 : /* fall through */
case 248 : /* fall through */
case 249 : /* fall through */
case 250 : /* fall through */
case 251 : /* fall through */
case 252 : /* fall through */
case 253 : /* fall through */
case 254 : /* fall through */
case 255 : itype = SH64_COMPACT_INSN_MOVL5_COMPACT; goto extract_sfmt_movl5_compact;
case 256 : /* fall through */
case 272 : /* fall through */
case 288 : /* fall through */
case 304 : /* fall through */
case 320 : /* fall through */
case 336 : /* fall through */
case 352 : /* fall through */
case 368 : itype = SH64_COMPACT_INSN_MOVB1_COMPACT; goto extract_sfmt_movb1_compact;
case 257 : /* fall through */
case 273 : /* fall through */
case 289 : /* fall through */
case 305 : /* fall through */
case 321 : /* fall through */
case 337 : /* fall through */
case 353 : /* fall through */
case 369 : itype = SH64_COMPACT_INSN_MOVW1_COMPACT; goto extract_sfmt_movw1_compact;
case 258 : /* fall through */
case 274 : /* fall through */
case 290 : /* fall through */
case 306 : /* fall through */
case 322 : /* fall through */
case 338 : /* fall through */
case 354 : /* fall through */
case 370 : itype = SH64_COMPACT_INSN_MOVL1_COMPACT; goto extract_sfmt_movl1_compact;
case 260 : /* fall through */
case 276 : /* fall through */
case 292 : /* fall through */
case 308 : /* fall through */
case 324 : /* fall through */
case 340 : /* fall through */
case 356 : /* fall through */
case 372 : itype = SH64_COMPACT_INSN_MOVB2_COMPACT; goto extract_sfmt_movb2_compact;
case 261 : /* fall through */
case 277 : /* fall through */
case 293 : /* fall through */
case 309 : /* fall through */
case 325 : /* fall through */
case 341 : /* fall through */
case 357 : /* fall through */
case 373 : itype = SH64_COMPACT_INSN_MOVW2_COMPACT; goto extract_sfmt_movw2_compact;
case 262 : /* fall through */
case 278 : /* fall through */
case 294 : /* fall through */
case 310 : /* fall through */
case 326 : /* fall through */
case 342 : /* fall through */
case 358 : /* fall through */
case 374 : itype = SH64_COMPACT_INSN_MOVL2_COMPACT; goto extract_sfmt_movl2_compact;
case 263 : /* fall through */
case 279 : /* fall through */
case 295 : /* fall through */
case 311 : /* fall through */
case 327 : /* fall through */
case 343 : /* fall through */
case 359 : /* fall through */
case 375 : itype = SH64_COMPACT_INSN_DIV0S_COMPACT; goto extract_sfmt_div0s_compact;
case 264 : /* fall through */
case 280 : /* fall through */
case 296 : /* fall through */
case 312 : /* fall through */
case 328 : /* fall through */
case 344 : /* fall through */
case 360 : /* fall through */
case 376 : itype = SH64_COMPACT_INSN_TST_COMPACT; goto extract_sfmt_cmpeq_compact;
case 265 : /* fall through */
case 281 : /* fall through */
case 297 : /* fall through */
case 313 : /* fall through */
case 329 : /* fall through */
case 345 : /* fall through */
case 361 : /* fall through */
case 377 : itype = SH64_COMPACT_INSN_AND_COMPACT; goto extract_sfmt_and_compact;
case 266 : /* fall through */
case 282 : /* fall through */
case 298 : /* fall through */
case 314 : /* fall through */
case 330 : /* fall through */
case 346 : /* fall through */
case 362 : /* fall through */
case 378 : itype = SH64_COMPACT_INSN_XOR_COMPACT; goto extract_sfmt_and_compact;
case 267 : /* fall through */
case 283 : /* fall through */
case 299 : /* fall through */
case 315 : /* fall through */
case 331 : /* fall through */
case 347 : /* fall through */
case 363 : /* fall through */
case 379 : itype = SH64_COMPACT_INSN_OR_COMPACT; goto extract_sfmt_and_compact;
case 268 : /* fall through */
case 284 : /* fall through */
case 300 : /* fall through */
case 316 : /* fall through */
case 332 : /* fall through */
case 348 : /* fall through */
case 364 : /* fall through */
case 380 : itype = SH64_COMPACT_INSN_CMPSTR_COMPACT; goto extract_sfmt_cmpeq_compact;
case 269 : /* fall through */
case 285 : /* fall through */
case 301 : /* fall through */
case 317 : /* fall through */
case 333 : /* fall through */
case 349 : /* fall through */
case 365 : /* fall through */
case 381 : itype = SH64_COMPACT_INSN_XTRCT_COMPACT; goto extract_sfmt_add_compact;
case 270 : /* fall through */
case 286 : /* fall through */
case 302 : /* fall through */
case 318 : /* fall through */
case 334 : /* fall through */
case 350 : /* fall through */
case 366 : /* fall through */
case 382 : itype = SH64_COMPACT_INSN_MULUW_COMPACT; goto extract_sfmt_mull_compact;
case 271 : /* fall through */
case 287 : /* fall through */
case 303 : /* fall through */
case 319 : /* fall through */
case 335 : /* fall through */
case 351 : /* fall through */
case 367 : /* fall through */
case 383 : itype = SH64_COMPACT_INSN_MULSW_COMPACT; goto extract_sfmt_mull_compact;
case 384 : /* fall through */
case 400 : /* fall through */
case 416 : /* fall through */
case 432 : /* fall through */
case 448 : /* fall through */
case 464 : /* fall through */
case 480 : /* fall through */
case 496 : itype = SH64_COMPACT_INSN_CMPEQ_COMPACT; goto extract_sfmt_cmpeq_compact;
case 385 : /* fall through */
case 417 : /* fall through */
case 449 : /* fall through */
case 481 :
{
unsigned int val = (((entire_insn >> 13) & (1 << 1)) | ((entire_insn >> 12) & (1 << 0)));
switch (val)
{
case 0 :
if ((entire_insn & 0xf00ff000) == 0x30012000)
{ itype = SH64_COMPACT_INSN_MOVL13_COMPACT; goto extract_sfmt_movl13_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 1 :
if ((entire_insn & 0xf01ff000) == 0x30013000)
{ itype = SH64_COMPACT_INSN_FMOV9_COMPACT; goto extract_sfmt_fmov9_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 2 :
if ((entire_insn & 0xf00ff000) == 0x30016000)
{ itype = SH64_COMPACT_INSN_MOVL12_COMPACT; goto extract_sfmt_movl12_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 3 :
if ((entire_insn & 0xf10ff000) == 0x30017000)
{ itype = SH64_COMPACT_INSN_FMOV8_COMPACT; goto extract_sfmt_fmov8_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 386 : /* fall through */
case 402 : /* fall through */
case 418 : /* fall through */
case 434 : /* fall through */
case 450 : /* fall through */
case 466 : /* fall through */
case 482 : /* fall through */
case 498 : itype = SH64_COMPACT_INSN_CMPHS_COMPACT; goto extract_sfmt_cmpeq_compact;
case 387 : /* fall through */
case 403 : /* fall through */
case 419 : /* fall through */
case 435 : /* fall through */
case 451 : /* fall through */
case 467 : /* fall through */
case 483 : /* fall through */
case 499 : itype = SH64_COMPACT_INSN_CMPGE_COMPACT; goto extract_sfmt_cmpeq_compact;
case 388 : /* fall through */
case 404 : /* fall through */
case 420 : /* fall through */
case 436 : /* fall through */
case 452 : /* fall through */
case 468 : /* fall through */
case 484 : /* fall through */
case 500 : itype = SH64_COMPACT_INSN_DIV1_COMPACT; goto extract_sfmt_div1_compact;
case 389 : /* fall through */
case 405 : /* fall through */
case 421 : /* fall through */
case 437 : /* fall through */
case 453 : /* fall through */
case 469 : /* fall through */
case 485 : /* fall through */
case 501 : itype = SH64_COMPACT_INSN_DMULUL_COMPACT; goto extract_sfmt_dmulsl_compact;
case 390 : /* fall through */
case 406 : /* fall through */
case 422 : /* fall through */
case 438 : /* fall through */
case 454 : /* fall through */
case 470 : /* fall through */
case 486 : /* fall through */
case 502 : itype = SH64_COMPACT_INSN_CMPHI_COMPACT; goto extract_sfmt_cmpeq_compact;
case 391 : /* fall through */
case 407 : /* fall through */
case 423 : /* fall through */
case 439 : /* fall through */
case 455 : /* fall through */
case 471 : /* fall through */
case 487 : /* fall through */
case 503 : itype = SH64_COMPACT_INSN_CMPGT_COMPACT; goto extract_sfmt_cmpeq_compact;
case 392 : /* fall through */
case 408 : /* fall through */
case 424 : /* fall through */
case 440 : /* fall through */
case 456 : /* fall through */
case 472 : /* fall through */
case 488 : /* fall through */
case 504 : itype = SH64_COMPACT_INSN_SUB_COMPACT; goto extract_sfmt_add_compact;
case 394 : /* fall through */
case 410 : /* fall through */
case 426 : /* fall through */
case 442 : /* fall through */
case 458 : /* fall through */
case 474 : /* fall through */
case 490 : /* fall through */
case 506 : itype = SH64_COMPACT_INSN_SUBC_COMPACT; goto extract_sfmt_addc_compact;
case 395 : /* fall through */
case 411 : /* fall through */
case 427 : /* fall through */
case 443 : /* fall through */
case 459 : /* fall through */
case 475 : /* fall through */
case 491 : /* fall through */
case 507 : itype = SH64_COMPACT_INSN_SUBV_COMPACT; goto extract_sfmt_addv_compact;
case 396 : /* fall through */
case 412 : /* fall through */
case 428 : /* fall through */
case 444 : /* fall through */
case 460 : /* fall through */
case 476 : /* fall through */
case 492 : /* fall through */
case 508 : itype = SH64_COMPACT_INSN_ADD_COMPACT; goto extract_sfmt_add_compact;
case 397 : /* fall through */
case 413 : /* fall through */
case 429 : /* fall through */
case 445 : /* fall through */
case 461 : /* fall through */
case 477 : /* fall through */
case 493 : /* fall through */
case 509 : itype = SH64_COMPACT_INSN_DMULSL_COMPACT; goto extract_sfmt_dmulsl_compact;
case 398 : /* fall through */
case 414 : /* fall through */
case 430 : /* fall through */
case 446 : /* fall through */
case 462 : /* fall through */
case 478 : /* fall through */
case 494 : /* fall through */
case 510 : itype = SH64_COMPACT_INSN_ADDC_COMPACT; goto extract_sfmt_addc_compact;
case 399 : /* fall through */
case 415 : /* fall through */
case 431 : /* fall through */
case 447 : /* fall through */
case 463 : /* fall through */
case 479 : /* fall through */
case 495 : /* fall through */
case 511 : itype = SH64_COMPACT_INSN_ADDV_COMPACT; goto extract_sfmt_addv_compact;
case 401 : /* fall through */
case 433 : /* fall through */
case 465 : /* fall through */
case 497 :
{
unsigned int val = (((entire_insn >> 13) & (1 << 1)) | ((entire_insn >> 12) & (1 << 0)));
switch (val)
{
case 0 :
if ((entire_insn & 0xf00ff000) == 0x30012000)
{ itype = SH64_COMPACT_INSN_MOVL13_COMPACT; goto extract_sfmt_movl13_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 2 :
if ((entire_insn & 0xf00ff000) == 0x30016000)
{ itype = SH64_COMPACT_INSN_MOVL12_COMPACT; goto extract_sfmt_movl12_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 3 :
if ((entire_insn & 0xf10ff000) == 0x30017000)
{ itype = SH64_COMPACT_INSN_FMOV8_COMPACT; goto extract_sfmt_fmov8_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 512 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_SHLL_COMPACT; goto extract_sfmt_dt_compact;
case 1 : itype = SH64_COMPACT_INSN_MULR_COMPACT; goto extract_sfmt_divu_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 513 :
if ((entire_insn & 0xf0ff) == 0x4001)
{ itype = SH64_COMPACT_INSN_SHLR_COMPACT; goto extract_sfmt_dt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 514 :
if ((entire_insn & 0xf0ff) == 0x4002)
{ itype = SH64_COMPACT_INSN_STSL_MACH_COMPACT; goto extract_sfmt_stsl_mach_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 516 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_ROTL_COMPACT; goto extract_sfmt_dt_compact;
case 1 : itype = SH64_COMPACT_INSN_DIVU_COMPACT; goto extract_sfmt_divu_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 517 :
if ((entire_insn & 0xf0ff) == 0x4005)
{ itype = SH64_COMPACT_INSN_ROTR_COMPACT; goto extract_sfmt_dt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 518 :
if ((entire_insn & 0xf0ff) == 0x4006)
{ itype = SH64_COMPACT_INSN_LDSL_MACH_COMPACT; goto extract_sfmt_ldsl_mach_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 520 :
if ((entire_insn & 0xf0ff) == 0x4008)
{ itype = SH64_COMPACT_INSN_SHLL2_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 521 :
if ((entire_insn & 0xf0ff) == 0x4009)
{ itype = SH64_COMPACT_INSN_SHLR2_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 522 :
if ((entire_insn & 0xf0ff) == 0x400a)
{ itype = SH64_COMPACT_INSN_LDS_MACH_COMPACT; goto extract_sfmt_lds_mach_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 523 :
if ((entire_insn & 0xf0ff) == 0x400b)
{ itype = SH64_COMPACT_INSN_JSR_COMPACT; goto extract_sfmt_bsrf_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 524 : /* fall through */
case 540 : /* fall through */
case 556 : /* fall through */
case 572 : /* fall through */
case 588 : /* fall through */
case 604 : /* fall through */
case 620 : /* fall through */
case 636 : itype = SH64_COMPACT_INSN_SHAD_COMPACT; goto extract_sfmt_shad_compact;
case 525 : /* fall through */
case 541 : /* fall through */
case 557 : /* fall through */
case 573 : /* fall through */
case 589 : /* fall through */
case 605 : /* fall through */
case 621 : /* fall through */
case 637 : itype = SH64_COMPACT_INSN_SHLD_COMPACT; goto extract_sfmt_shad_compact;
case 526 :
if ((entire_insn & 0xf0ff) == 0x400e)
{ itype = SH64_COMPACT_INSN_LDC_SR_COMPACT; goto extract_sfmt_ldc_sr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 527 : /* fall through */
case 543 : /* fall through */
case 559 : /* fall through */
case 575 : /* fall through */
case 591 : /* fall through */
case 607 : /* fall through */
case 623 : /* fall through */
case 639 : itype = SH64_COMPACT_INSN_MACW_COMPACT; goto extract_sfmt_macw_compact;
case 528 :
if ((entire_insn & 0xf0ff) == 0x4010)
{ itype = SH64_COMPACT_INSN_DT_COMPACT; goto extract_sfmt_dt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 529 :
if ((entire_insn & 0xf0ff) == 0x4011)
{ itype = SH64_COMPACT_INSN_CMPPZ_COMPACT; goto extract_sfmt_cmppl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 530 :
if ((entire_insn & 0xf0ff) == 0x4012)
{ itype = SH64_COMPACT_INSN_STSL_MACL_COMPACT; goto extract_sfmt_stsl_macl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 531 :
if ((entire_insn & 0xf0ff) == 0x4013)
{ itype = SH64_COMPACT_INSN_STCL_GBR_COMPACT; goto extract_sfmt_stcl_gbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 533 :
if ((entire_insn & 0xf0ff) == 0x4015)
{ itype = SH64_COMPACT_INSN_CMPPL_COMPACT; goto extract_sfmt_cmppl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 534 :
if ((entire_insn & 0xf0ff) == 0x4016)
{ itype = SH64_COMPACT_INSN_LDSL_MACL_COMPACT; goto extract_sfmt_ldsl_macl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 535 :
if ((entire_insn & 0xf0ff) == 0x4017)
{ itype = SH64_COMPACT_INSN_LDCL_GBR_COMPACT; goto extract_sfmt_ldcl_gbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 536 :
if ((entire_insn & 0xf0ff) == 0x4018)
{ itype = SH64_COMPACT_INSN_SHLL8_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 537 :
if ((entire_insn & 0xf0ff) == 0x4019)
{ itype = SH64_COMPACT_INSN_SHLR8_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 538 :
if ((entire_insn & 0xf0ff) == 0x401a)
{ itype = SH64_COMPACT_INSN_LDS_MACL_COMPACT; goto extract_sfmt_lds_macl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 539 :
if ((entire_insn & 0xf0ff) == 0x401b)
{ itype = SH64_COMPACT_INSN_TASB_COMPACT; goto extract_sfmt_tasb_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 542 :
if ((entire_insn & 0xf0ff) == 0x401e)
{ itype = SH64_COMPACT_INSN_LDC_GBR_COMPACT; goto extract_sfmt_ldc_gbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 544 :
if ((entire_insn & 0xf0ff) == 0x4020)
{ itype = SH64_COMPACT_INSN_SHAL_COMPACT; goto extract_sfmt_dt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 545 :
if ((entire_insn & 0xf0ff) == 0x4021)
{ itype = SH64_COMPACT_INSN_SHAR_COMPACT; goto extract_sfmt_dt_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 546 :
if ((entire_insn & 0xf0ff) == 0x4022)
{ itype = SH64_COMPACT_INSN_STSL_PR_COMPACT; goto extract_sfmt_stsl_pr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 547 :
if ((entire_insn & 0xf0ff) == 0x4023)
{ itype = SH64_COMPACT_INSN_STCL_VBR_COMPACT; goto extract_sfmt_stcl_vbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 548 :
if ((entire_insn & 0xf0ff) == 0x4024)
{ itype = SH64_COMPACT_INSN_ROTCL_COMPACT; goto extract_sfmt_rotcl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 549 :
if ((entire_insn & 0xf0ff) == 0x4025)
{ itype = SH64_COMPACT_INSN_ROTCR_COMPACT; goto extract_sfmt_rotcl_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 550 :
if ((entire_insn & 0xf0ff) == 0x4026)
{ itype = SH64_COMPACT_INSN_LDSL_PR_COMPACT; goto extract_sfmt_ldsl_pr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 551 :
if ((entire_insn & 0xf0ff) == 0x4027)
{ itype = SH64_COMPACT_INSN_LDCL_VBR_COMPACT; goto extract_sfmt_ldcl_vbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 552 :
if ((entire_insn & 0xf0ff) == 0x4028)
{ itype = SH64_COMPACT_INSN_SHLL16_COMPACT; goto extract_sfmt_movcol_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 553 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_SHLR16_COMPACT; goto extract_sfmt_movcol_compact;
case 1 : itype = SH64_COMPACT_INSN_MOVUAL_COMPACT; goto extract_sfmt_movual_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 554 :
if ((entire_insn & 0xf0ff) == 0x402a)
{ itype = SH64_COMPACT_INSN_LDS_PR_COMPACT; goto extract_sfmt_lds_pr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 555 :
if ((entire_insn & 0xf0ff) == 0x402b)
{ itype = SH64_COMPACT_INSN_JMP_COMPACT; goto extract_sfmt_braf_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 558 :
if ((entire_insn & 0xf0ff) == 0x402e)
{ itype = SH64_COMPACT_INSN_LDC_VBR_COMPACT; goto extract_sfmt_ldc_vbr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 594 :
if ((entire_insn & 0xf0ff) == 0x4052)
{ itype = SH64_COMPACT_INSN_STSL_FPUL_COMPACT; goto extract_sfmt_stsl_fpul_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 598 :
if ((entire_insn & 0xf0ff) == 0x4056)
{ itype = SH64_COMPACT_INSN_LDSL_FPUL_COMPACT; goto extract_sfmt_ldsl_fpul_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 602 :
if ((entire_insn & 0xf0ff) == 0x405a)
{ itype = SH64_COMPACT_INSN_LDS_FPUL_COMPACT; goto extract_sfmt_lds_fpul_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 610 :
if ((entire_insn & 0xf0ff) == 0x4062)
{ itype = SH64_COMPACT_INSN_STSL_FPSCR_COMPACT; goto extract_sfmt_stsl_fpscr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 614 :
if ((entire_insn & 0xf0ff) == 0x4066)
{ itype = SH64_COMPACT_INSN_LDSL_FPSCR_COMPACT; goto extract_sfmt_ldsl_fpscr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 617 :
if ((entire_insn & 0xf0ff) == 0x40e9)
{ itype = SH64_COMPACT_INSN_MOVUAL2_COMPACT; goto extract_sfmt_movual2_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 618 :
if ((entire_insn & 0xf0ff) == 0x406a)
{ itype = SH64_COMPACT_INSN_LDS_FPSCR_COMPACT; goto extract_sfmt_lds_fpscr_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 640 : /* fall through */
case 641 : /* fall through */
case 642 : /* fall through */
case 643 : /* fall through */
case 644 : /* fall through */
case 645 : /* fall through */
case 646 : /* fall through */
case 647 : /* fall through */
case 648 : /* fall through */
case 649 : /* fall through */
case 650 : /* fall through */
case 651 : /* fall through */
case 652 : /* fall through */
case 653 : /* fall through */
case 654 : /* fall through */
case 655 : /* fall through */
case 656 : /* fall through */
case 657 : /* fall through */
case 658 : /* fall through */
case 659 : /* fall through */
case 660 : /* fall through */
case 661 : /* fall through */
case 662 : /* fall through */
case 663 : /* fall through */
case 664 : /* fall through */
case 665 : /* fall through */
case 666 : /* fall through */
case 667 : /* fall through */
case 668 : /* fall through */
case 669 : /* fall through */
case 670 : /* fall through */
case 671 : /* fall through */
case 672 : /* fall through */
case 673 : /* fall through */
case 674 : /* fall through */
case 675 : /* fall through */
case 676 : /* fall through */
case 677 : /* fall through */
case 678 : /* fall through */
case 679 : /* fall through */
case 680 : /* fall through */
case 681 : /* fall through */
case 682 : /* fall through */
case 683 : /* fall through */
case 684 : /* fall through */
case 685 : /* fall through */
case 686 : /* fall through */
case 687 : /* fall through */
case 688 : /* fall through */
case 689 : /* fall through */
case 690 : /* fall through */
case 691 : /* fall through */
case 692 : /* fall through */
case 693 : /* fall through */
case 694 : /* fall through */
case 695 : /* fall through */
case 696 : /* fall through */
case 697 : /* fall through */
case 698 : /* fall through */
case 699 : /* fall through */
case 700 : /* fall through */
case 701 : /* fall through */
case 702 : /* fall through */
case 703 : /* fall through */
case 704 : /* fall through */
case 705 : /* fall through */
case 706 : /* fall through */
case 707 : /* fall through */
case 708 : /* fall through */
case 709 : /* fall through */
case 710 : /* fall through */
case 711 : /* fall through */
case 712 : /* fall through */
case 713 : /* fall through */
case 714 : /* fall through */
case 715 : /* fall through */
case 716 : /* fall through */
case 717 : /* fall through */
case 718 : /* fall through */
case 719 : /* fall through */
case 720 : /* fall through */
case 721 : /* fall through */
case 722 : /* fall through */
case 723 : /* fall through */
case 724 : /* fall through */
case 725 : /* fall through */
case 726 : /* fall through */
case 727 : /* fall through */
case 728 : /* fall through */
case 729 : /* fall through */
case 730 : /* fall through */
case 731 : /* fall through */
case 732 : /* fall through */
case 733 : /* fall through */
case 734 : /* fall through */
case 735 : /* fall through */
case 736 : /* fall through */
case 737 : /* fall through */
case 738 : /* fall through */
case 739 : /* fall through */
case 740 : /* fall through */
case 741 : /* fall through */
case 742 : /* fall through */
case 743 : /* fall through */
case 744 : /* fall through */
case 745 : /* fall through */
case 746 : /* fall through */
case 747 : /* fall through */
case 748 : /* fall through */
case 749 : /* fall through */
case 750 : /* fall through */
case 751 : /* fall through */
case 752 : /* fall through */
case 753 : /* fall through */
case 754 : /* fall through */
case 755 : /* fall through */
case 756 : /* fall through */
case 757 : /* fall through */
case 758 : /* fall through */
case 759 : /* fall through */
case 760 : /* fall through */
case 761 : /* fall through */
case 762 : /* fall through */
case 763 : /* fall through */
case 764 : /* fall through */
case 765 : /* fall through */
case 766 : /* fall through */
case 767 : itype = SH64_COMPACT_INSN_MOVL11_COMPACT; goto extract_sfmt_movl11_compact;
case 768 : /* fall through */
case 784 : /* fall through */
case 800 : /* fall through */
case 816 : /* fall through */
case 832 : /* fall through */
case 848 : /* fall through */
case 864 : /* fall through */
case 880 : itype = SH64_COMPACT_INSN_MOVB6_COMPACT; goto extract_sfmt_movb6_compact;
case 769 : /* fall through */
case 785 : /* fall through */
case 801 : /* fall through */
case 817 : /* fall through */
case 833 : /* fall through */
case 849 : /* fall through */
case 865 : /* fall through */
case 881 : itype = SH64_COMPACT_INSN_MOVW6_COMPACT; goto extract_sfmt_movw6_compact;
case 770 : /* fall through */
case 786 : /* fall through */
case 802 : /* fall through */
case 818 : /* fall through */
case 834 : /* fall through */
case 850 : /* fall through */
case 866 : /* fall through */
case 882 : itype = SH64_COMPACT_INSN_MOVL6_COMPACT; goto extract_sfmt_movl6_compact;
case 771 : /* fall through */
case 787 : /* fall through */
case 803 : /* fall through */
case 819 : /* fall through */
case 835 : /* fall through */
case 851 : /* fall through */
case 867 : /* fall through */
case 883 : itype = SH64_COMPACT_INSN_MOV_COMPACT; goto extract_sfmt_mov_compact;
case 772 : /* fall through */
case 788 : /* fall through */
case 804 : /* fall through */
case 820 : /* fall through */
case 836 : /* fall through */
case 852 : /* fall through */
case 868 : /* fall through */
case 884 : itype = SH64_COMPACT_INSN_MOVB7_COMPACT; goto extract_sfmt_movb7_compact;
case 773 : /* fall through */
case 789 : /* fall through */
case 805 : /* fall through */
case 821 : /* fall through */
case 837 : /* fall through */
case 853 : /* fall through */
case 869 : /* fall through */
case 885 : itype = SH64_COMPACT_INSN_MOVW7_COMPACT; goto extract_sfmt_movw7_compact;
case 774 : /* fall through */
case 790 : /* fall through */
case 806 : /* fall through */
case 822 : /* fall through */
case 838 : /* fall through */
case 854 : /* fall through */
case 870 : /* fall through */
case 886 : itype = SH64_COMPACT_INSN_MOVL7_COMPACT; goto extract_sfmt_movl7_compact;
case 775 : /* fall through */
case 791 : /* fall through */
case 807 : /* fall through */
case 823 : /* fall through */
case 839 : /* fall through */
case 855 : /* fall through */
case 871 : /* fall through */
case 887 : itype = SH64_COMPACT_INSN_NOT_COMPACT; goto extract_sfmt_mov_compact;
case 776 : /* fall through */
case 792 : /* fall through */
case 808 : /* fall through */
case 824 : /* fall through */
case 840 : /* fall through */
case 856 : /* fall through */
case 872 : /* fall through */
case 888 : itype = SH64_COMPACT_INSN_SWAPB_COMPACT; goto extract_sfmt_extsb_compact;
case 777 : /* fall through */
case 793 : /* fall through */
case 809 : /* fall through */
case 825 : /* fall through */
case 841 : /* fall through */
case 857 : /* fall through */
case 873 : /* fall through */
case 889 : itype = SH64_COMPACT_INSN_SWAPW_COMPACT; goto extract_sfmt_extsb_compact;
case 778 : /* fall through */
case 794 : /* fall through */
case 810 : /* fall through */
case 826 : /* fall through */
case 842 : /* fall through */
case 858 : /* fall through */
case 874 : /* fall through */
case 890 : itype = SH64_COMPACT_INSN_NEGC_COMPACT; goto extract_sfmt_negc_compact;
case 779 : /* fall through */
case 795 : /* fall through */
case 811 : /* fall through */
case 827 : /* fall through */
case 843 : /* fall through */
case 859 : /* fall through */
case 875 : /* fall through */
case 891 : itype = SH64_COMPACT_INSN_NEG_COMPACT; goto extract_sfmt_extsb_compact;
case 780 : /* fall through */
case 796 : /* fall through */
case 812 : /* fall through */
case 828 : /* fall through */
case 844 : /* fall through */
case 860 : /* fall through */
case 876 : /* fall through */
case 892 : itype = SH64_COMPACT_INSN_EXTUB_COMPACT; goto extract_sfmt_extsb_compact;
case 781 : /* fall through */
case 797 : /* fall through */
case 813 : /* fall through */
case 829 : /* fall through */
case 845 : /* fall through */
case 861 : /* fall through */
case 877 : /* fall through */
case 893 : itype = SH64_COMPACT_INSN_EXTUW_COMPACT; goto extract_sfmt_extsb_compact;
case 782 : /* fall through */
case 798 : /* fall through */
case 814 : /* fall through */
case 830 : /* fall through */
case 846 : /* fall through */
case 862 : /* fall through */
case 878 : /* fall through */
case 894 : itype = SH64_COMPACT_INSN_EXTSB_COMPACT; goto extract_sfmt_extsb_compact;
case 783 : /* fall through */
case 799 : /* fall through */
case 815 : /* fall through */
case 831 : /* fall through */
case 847 : /* fall through */
case 863 : /* fall through */
case 879 : /* fall through */
case 895 : itype = SH64_COMPACT_INSN_EXTSW_COMPACT; goto extract_sfmt_extsb_compact;
case 896 : /* fall through */
case 897 : /* fall through */
case 898 : /* fall through */
case 899 : /* fall through */
case 900 : /* fall through */
case 901 : /* fall through */
case 902 : /* fall through */
case 903 : /* fall through */
case 904 : /* fall through */
case 905 : /* fall through */
case 906 : /* fall through */
case 907 : /* fall through */
case 908 : /* fall through */
case 909 : /* fall through */
case 910 : /* fall through */
case 911 : /* fall through */
case 912 : /* fall through */
case 913 : /* fall through */
case 914 : /* fall through */
case 915 : /* fall through */
case 916 : /* fall through */
case 917 : /* fall through */
case 918 : /* fall through */
case 919 : /* fall through */
case 920 : /* fall through */
case 921 : /* fall through */
case 922 : /* fall through */
case 923 : /* fall through */
case 924 : /* fall through */
case 925 : /* fall through */
case 926 : /* fall through */
case 927 : /* fall through */
case 928 : /* fall through */
case 929 : /* fall through */
case 930 : /* fall through */
case 931 : /* fall through */
case 932 : /* fall through */
case 933 : /* fall through */
case 934 : /* fall through */
case 935 : /* fall through */
case 936 : /* fall through */
case 937 : /* fall through */
case 938 : /* fall through */
case 939 : /* fall through */
case 940 : /* fall through */
case 941 : /* fall through */
case 942 : /* fall through */
case 943 : /* fall through */
case 944 : /* fall through */
case 945 : /* fall through */
case 946 : /* fall through */
case 947 : /* fall through */
case 948 : /* fall through */
case 949 : /* fall through */
case 950 : /* fall through */
case 951 : /* fall through */
case 952 : /* fall through */
case 953 : /* fall through */
case 954 : /* fall through */
case 955 : /* fall through */
case 956 : /* fall through */
case 957 : /* fall through */
case 958 : /* fall through */
case 959 : /* fall through */
case 960 : /* fall through */
case 961 : /* fall through */
case 962 : /* fall through */
case 963 : /* fall through */
case 964 : /* fall through */
case 965 : /* fall through */
case 966 : /* fall through */
case 967 : /* fall through */
case 968 : /* fall through */
case 969 : /* fall through */
case 970 : /* fall through */
case 971 : /* fall through */
case 972 : /* fall through */
case 973 : /* fall through */
case 974 : /* fall through */
case 975 : /* fall through */
case 976 : /* fall through */
case 977 : /* fall through */
case 978 : /* fall through */
case 979 : /* fall through */
case 980 : /* fall through */
case 981 : /* fall through */
case 982 : /* fall through */
case 983 : /* fall through */
case 984 : /* fall through */
case 985 : /* fall through */
case 986 : /* fall through */
case 987 : /* fall through */
case 988 : /* fall through */
case 989 : /* fall through */
case 990 : /* fall through */
case 991 : /* fall through */
case 992 : /* fall through */
case 993 : /* fall through */
case 994 : /* fall through */
case 995 : /* fall through */
case 996 : /* fall through */
case 997 : /* fall through */
case 998 : /* fall through */
case 999 : /* fall through */
case 1000 : /* fall through */
case 1001 : /* fall through */
case 1002 : /* fall through */
case 1003 : /* fall through */
case 1004 : /* fall through */
case 1005 : /* fall through */
case 1006 : /* fall through */
case 1007 : /* fall through */
case 1008 : /* fall through */
case 1009 : /* fall through */
case 1010 : /* fall through */
case 1011 : /* fall through */
case 1012 : /* fall through */
case 1013 : /* fall through */
case 1014 : /* fall through */
case 1015 : /* fall through */
case 1016 : /* fall through */
case 1017 : /* fall through */
case 1018 : /* fall through */
case 1019 : /* fall through */
case 1020 : /* fall through */
case 1021 : /* fall through */
case 1022 : /* fall through */
case 1023 : itype = SH64_COMPACT_INSN_ADDI_COMPACT; goto extract_sfmt_addi_compact;
case 1024 : /* fall through */
case 1025 : /* fall through */
case 1026 : /* fall through */
case 1027 : /* fall through */
case 1028 : /* fall through */
case 1029 : /* fall through */
case 1030 : /* fall through */
case 1031 : /* fall through */
case 1032 : /* fall through */
case 1033 : /* fall through */
case 1034 : /* fall through */
case 1035 : /* fall through */
case 1036 : /* fall through */
case 1037 : /* fall through */
case 1038 : /* fall through */
case 1039 : /* fall through */
case 1040 : /* fall through */
case 1041 : /* fall through */
case 1042 : /* fall through */
case 1043 : /* fall through */
case 1044 : /* fall through */
case 1045 : /* fall through */
case 1046 : /* fall through */
case 1047 : /* fall through */
case 1048 : /* fall through */
case 1049 : /* fall through */
case 1050 : /* fall through */
case 1051 : /* fall through */
case 1052 : /* fall through */
case 1053 : /* fall through */
case 1054 : /* fall through */
case 1055 : /* fall through */
case 1056 : /* fall through */
case 1057 : /* fall through */
case 1058 : /* fall through */
case 1059 : /* fall through */
case 1060 : /* fall through */
case 1061 : /* fall through */
case 1062 : /* fall through */
case 1063 : /* fall through */
case 1064 : /* fall through */
case 1065 : /* fall through */
case 1066 : /* fall through */
case 1067 : /* fall through */
case 1068 : /* fall through */
case 1069 : /* fall through */
case 1070 : /* fall through */
case 1071 : /* fall through */
case 1072 : /* fall through */
case 1073 : /* fall through */
case 1074 : /* fall through */
case 1075 : /* fall through */
case 1076 : /* fall through */
case 1077 : /* fall through */
case 1078 : /* fall through */
case 1079 : /* fall through */
case 1080 : /* fall through */
case 1081 : /* fall through */
case 1082 : /* fall through */
case 1083 : /* fall through */
case 1084 : /* fall through */
case 1085 : /* fall through */
case 1086 : /* fall through */
case 1087 : /* fall through */
case 1088 : /* fall through */
case 1089 : /* fall through */
case 1090 : /* fall through */
case 1091 : /* fall through */
case 1092 : /* fall through */
case 1093 : /* fall through */
case 1094 : /* fall through */
case 1095 : /* fall through */
case 1096 : /* fall through */
case 1097 : /* fall through */
case 1098 : /* fall through */
case 1099 : /* fall through */
case 1100 : /* fall through */
case 1101 : /* fall through */
case 1102 : /* fall through */
case 1103 : /* fall through */
case 1104 : /* fall through */
case 1105 : /* fall through */
case 1106 : /* fall through */
case 1107 : /* fall through */
case 1108 : /* fall through */
case 1109 : /* fall through */
case 1110 : /* fall through */
case 1111 : /* fall through */
case 1112 : /* fall through */
case 1113 : /* fall through */
case 1114 : /* fall through */
case 1115 : /* fall through */
case 1116 : /* fall through */
case 1117 : /* fall through */
case 1118 : /* fall through */
case 1119 : /* fall through */
case 1120 : /* fall through */
case 1121 : /* fall through */
case 1122 : /* fall through */
case 1123 : /* fall through */
case 1124 : /* fall through */
case 1125 : /* fall through */
case 1126 : /* fall through */
case 1127 : /* fall through */
case 1128 : /* fall through */
case 1129 : /* fall through */
case 1130 : /* fall through */
case 1131 : /* fall through */
case 1132 : /* fall through */
case 1133 : /* fall through */
case 1134 : /* fall through */
case 1135 : /* fall through */
case 1136 : /* fall through */
case 1137 : /* fall through */
case 1138 : /* fall through */
case 1139 : /* fall through */
case 1140 : /* fall through */
case 1141 : /* fall through */
case 1142 : /* fall through */
case 1143 : /* fall through */
case 1144 : /* fall through */
case 1145 : /* fall through */
case 1146 : /* fall through */
case 1147 : /* fall through */
case 1148 : /* fall through */
case 1149 : /* fall through */
case 1150 : /* fall through */
case 1151 :
{
unsigned int val = (((insn >> 8) & (15 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_MOVB5_COMPACT; goto extract_sfmt_movb5_compact;
case 1 : itype = SH64_COMPACT_INSN_MOVW5_COMPACT; goto extract_sfmt_movw5_compact;
case 4 : itype = SH64_COMPACT_INSN_MOVB10_COMPACT; goto extract_sfmt_movb10_compact;
case 5 : itype = SH64_COMPACT_INSN_MOVW11_COMPACT; goto extract_sfmt_movw11_compact;
case 8 : itype = SH64_COMPACT_INSN_CMPEQI_COMPACT; goto extract_sfmt_cmpeqi_compact;
case 9 : itype = SH64_COMPACT_INSN_BT_COMPACT; goto extract_sfmt_bf_compact;
case 11 : itype = SH64_COMPACT_INSN_BF_COMPACT; goto extract_sfmt_bf_compact;
case 13 : itype = SH64_COMPACT_INSN_BTS_COMPACT; goto extract_sfmt_bfs_compact;
case 15 : itype = SH64_COMPACT_INSN_BFS_COMPACT; goto extract_sfmt_bfs_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1152 : /* fall through */
case 1153 : /* fall through */
case 1154 : /* fall through */
case 1155 : /* fall through */
case 1156 : /* fall through */
case 1157 : /* fall through */
case 1158 : /* fall through */
case 1159 : /* fall through */
case 1160 : /* fall through */
case 1161 : /* fall through */
case 1162 : /* fall through */
case 1163 : /* fall through */
case 1164 : /* fall through */
case 1165 : /* fall through */
case 1166 : /* fall through */
case 1167 : /* fall through */
case 1168 : /* fall through */
case 1169 : /* fall through */
case 1170 : /* fall through */
case 1171 : /* fall through */
case 1172 : /* fall through */
case 1173 : /* fall through */
case 1174 : /* fall through */
case 1175 : /* fall through */
case 1176 : /* fall through */
case 1177 : /* fall through */
case 1178 : /* fall through */
case 1179 : /* fall through */
case 1180 : /* fall through */
case 1181 : /* fall through */
case 1182 : /* fall through */
case 1183 : /* fall through */
case 1184 : /* fall through */
case 1185 : /* fall through */
case 1186 : /* fall through */
case 1187 : /* fall through */
case 1188 : /* fall through */
case 1189 : /* fall through */
case 1190 : /* fall through */
case 1191 : /* fall through */
case 1192 : /* fall through */
case 1193 : /* fall through */
case 1194 : /* fall through */
case 1195 : /* fall through */
case 1196 : /* fall through */
case 1197 : /* fall through */
case 1198 : /* fall through */
case 1199 : /* fall through */
case 1200 : /* fall through */
case 1201 : /* fall through */
case 1202 : /* fall through */
case 1203 : /* fall through */
case 1204 : /* fall through */
case 1205 : /* fall through */
case 1206 : /* fall through */
case 1207 : /* fall through */
case 1208 : /* fall through */
case 1209 : /* fall through */
case 1210 : /* fall through */
case 1211 : /* fall through */
case 1212 : /* fall through */
case 1213 : /* fall through */
case 1214 : /* fall through */
case 1215 : /* fall through */
case 1216 : /* fall through */
case 1217 : /* fall through */
case 1218 : /* fall through */
case 1219 : /* fall through */
case 1220 : /* fall through */
case 1221 : /* fall through */
case 1222 : /* fall through */
case 1223 : /* fall through */
case 1224 : /* fall through */
case 1225 : /* fall through */
case 1226 : /* fall through */
case 1227 : /* fall through */
case 1228 : /* fall through */
case 1229 : /* fall through */
case 1230 : /* fall through */
case 1231 : /* fall through */
case 1232 : /* fall through */
case 1233 : /* fall through */
case 1234 : /* fall through */
case 1235 : /* fall through */
case 1236 : /* fall through */
case 1237 : /* fall through */
case 1238 : /* fall through */
case 1239 : /* fall through */
case 1240 : /* fall through */
case 1241 : /* fall through */
case 1242 : /* fall through */
case 1243 : /* fall through */
case 1244 : /* fall through */
case 1245 : /* fall through */
case 1246 : /* fall through */
case 1247 : /* fall through */
case 1248 : /* fall through */
case 1249 : /* fall through */
case 1250 : /* fall through */
case 1251 : /* fall through */
case 1252 : /* fall through */
case 1253 : /* fall through */
case 1254 : /* fall through */
case 1255 : /* fall through */
case 1256 : /* fall through */
case 1257 : /* fall through */
case 1258 : /* fall through */
case 1259 : /* fall through */
case 1260 : /* fall through */
case 1261 : /* fall through */
case 1262 : /* fall through */
case 1263 : /* fall through */
case 1264 : /* fall through */
case 1265 : /* fall through */
case 1266 : /* fall through */
case 1267 : /* fall through */
case 1268 : /* fall through */
case 1269 : /* fall through */
case 1270 : /* fall through */
case 1271 : /* fall through */
case 1272 : /* fall through */
case 1273 : /* fall through */
case 1274 : /* fall through */
case 1275 : /* fall through */
case 1276 : /* fall through */
case 1277 : /* fall through */
case 1278 : /* fall through */
case 1279 : itype = SH64_COMPACT_INSN_MOVW10_COMPACT; goto extract_sfmt_movw10_compact;
case 1280 : /* fall through */
case 1281 : /* fall through */
case 1282 : /* fall through */
case 1283 : /* fall through */
case 1284 : /* fall through */
case 1285 : /* fall through */
case 1286 : /* fall through */
case 1287 : /* fall through */
case 1288 : /* fall through */
case 1289 : /* fall through */
case 1290 : /* fall through */
case 1291 : /* fall through */
case 1292 : /* fall through */
case 1293 : /* fall through */
case 1294 : /* fall through */
case 1295 : /* fall through */
case 1296 : /* fall through */
case 1297 : /* fall through */
case 1298 : /* fall through */
case 1299 : /* fall through */
case 1300 : /* fall through */
case 1301 : /* fall through */
case 1302 : /* fall through */
case 1303 : /* fall through */
case 1304 : /* fall through */
case 1305 : /* fall through */
case 1306 : /* fall through */
case 1307 : /* fall through */
case 1308 : /* fall through */
case 1309 : /* fall through */
case 1310 : /* fall through */
case 1311 : /* fall through */
case 1312 : /* fall through */
case 1313 : /* fall through */
case 1314 : /* fall through */
case 1315 : /* fall through */
case 1316 : /* fall through */
case 1317 : /* fall through */
case 1318 : /* fall through */
case 1319 : /* fall through */
case 1320 : /* fall through */
case 1321 : /* fall through */
case 1322 : /* fall through */
case 1323 : /* fall through */
case 1324 : /* fall through */
case 1325 : /* fall through */
case 1326 : /* fall through */
case 1327 : /* fall through */
case 1328 : /* fall through */
case 1329 : /* fall through */
case 1330 : /* fall through */
case 1331 : /* fall through */
case 1332 : /* fall through */
case 1333 : /* fall through */
case 1334 : /* fall through */
case 1335 : /* fall through */
case 1336 : /* fall through */
case 1337 : /* fall through */
case 1338 : /* fall through */
case 1339 : /* fall through */
case 1340 : /* fall through */
case 1341 : /* fall through */
case 1342 : /* fall through */
case 1343 : /* fall through */
case 1344 : /* fall through */
case 1345 : /* fall through */
case 1346 : /* fall through */
case 1347 : /* fall through */
case 1348 : /* fall through */
case 1349 : /* fall through */
case 1350 : /* fall through */
case 1351 : /* fall through */
case 1352 : /* fall through */
case 1353 : /* fall through */
case 1354 : /* fall through */
case 1355 : /* fall through */
case 1356 : /* fall through */
case 1357 : /* fall through */
case 1358 : /* fall through */
case 1359 : /* fall through */
case 1360 : /* fall through */
case 1361 : /* fall through */
case 1362 : /* fall through */
case 1363 : /* fall through */
case 1364 : /* fall through */
case 1365 : /* fall through */
case 1366 : /* fall through */
case 1367 : /* fall through */
case 1368 : /* fall through */
case 1369 : /* fall through */
case 1370 : /* fall through */
case 1371 : /* fall through */
case 1372 : /* fall through */
case 1373 : /* fall through */
case 1374 : /* fall through */
case 1375 : /* fall through */
case 1376 : /* fall through */
case 1377 : /* fall through */
case 1378 : /* fall through */
case 1379 : /* fall through */
case 1380 : /* fall through */
case 1381 : /* fall through */
case 1382 : /* fall through */
case 1383 : /* fall through */
case 1384 : /* fall through */
case 1385 : /* fall through */
case 1386 : /* fall through */
case 1387 : /* fall through */
case 1388 : /* fall through */
case 1389 : /* fall through */
case 1390 : /* fall through */
case 1391 : /* fall through */
case 1392 : /* fall through */
case 1393 : /* fall through */
case 1394 : /* fall through */
case 1395 : /* fall through */
case 1396 : /* fall through */
case 1397 : /* fall through */
case 1398 : /* fall through */
case 1399 : /* fall through */
case 1400 : /* fall through */
case 1401 : /* fall through */
case 1402 : /* fall through */
case 1403 : /* fall through */
case 1404 : /* fall through */
case 1405 : /* fall through */
case 1406 : /* fall through */
case 1407 : itype = SH64_COMPACT_INSN_BRA_COMPACT; goto extract_sfmt_bra_compact;
case 1408 : /* fall through */
case 1409 : /* fall through */
case 1410 : /* fall through */
case 1411 : /* fall through */
case 1412 : /* fall through */
case 1413 : /* fall through */
case 1414 : /* fall through */
case 1415 : /* fall through */
case 1416 : /* fall through */
case 1417 : /* fall through */
case 1418 : /* fall through */
case 1419 : /* fall through */
case 1420 : /* fall through */
case 1421 : /* fall through */
case 1422 : /* fall through */
case 1423 : /* fall through */
case 1424 : /* fall through */
case 1425 : /* fall through */
case 1426 : /* fall through */
case 1427 : /* fall through */
case 1428 : /* fall through */
case 1429 : /* fall through */
case 1430 : /* fall through */
case 1431 : /* fall through */
case 1432 : /* fall through */
case 1433 : /* fall through */
case 1434 : /* fall through */
case 1435 : /* fall through */
case 1436 : /* fall through */
case 1437 : /* fall through */
case 1438 : /* fall through */
case 1439 : /* fall through */
case 1440 : /* fall through */
case 1441 : /* fall through */
case 1442 : /* fall through */
case 1443 : /* fall through */
case 1444 : /* fall through */
case 1445 : /* fall through */
case 1446 : /* fall through */
case 1447 : /* fall through */
case 1448 : /* fall through */
case 1449 : /* fall through */
case 1450 : /* fall through */
case 1451 : /* fall through */
case 1452 : /* fall through */
case 1453 : /* fall through */
case 1454 : /* fall through */
case 1455 : /* fall through */
case 1456 : /* fall through */
case 1457 : /* fall through */
case 1458 : /* fall through */
case 1459 : /* fall through */
case 1460 : /* fall through */
case 1461 : /* fall through */
case 1462 : /* fall through */
case 1463 : /* fall through */
case 1464 : /* fall through */
case 1465 : /* fall through */
case 1466 : /* fall through */
case 1467 : /* fall through */
case 1468 : /* fall through */
case 1469 : /* fall through */
case 1470 : /* fall through */
case 1471 : /* fall through */
case 1472 : /* fall through */
case 1473 : /* fall through */
case 1474 : /* fall through */
case 1475 : /* fall through */
case 1476 : /* fall through */
case 1477 : /* fall through */
case 1478 : /* fall through */
case 1479 : /* fall through */
case 1480 : /* fall through */
case 1481 : /* fall through */
case 1482 : /* fall through */
case 1483 : /* fall through */
case 1484 : /* fall through */
case 1485 : /* fall through */
case 1486 : /* fall through */
case 1487 : /* fall through */
case 1488 : /* fall through */
case 1489 : /* fall through */
case 1490 : /* fall through */
case 1491 : /* fall through */
case 1492 : /* fall through */
case 1493 : /* fall through */
case 1494 : /* fall through */
case 1495 : /* fall through */
case 1496 : /* fall through */
case 1497 : /* fall through */
case 1498 : /* fall through */
case 1499 : /* fall through */
case 1500 : /* fall through */
case 1501 : /* fall through */
case 1502 : /* fall through */
case 1503 : /* fall through */
case 1504 : /* fall through */
case 1505 : /* fall through */
case 1506 : /* fall through */
case 1507 : /* fall through */
case 1508 : /* fall through */
case 1509 : /* fall through */
case 1510 : /* fall through */
case 1511 : /* fall through */
case 1512 : /* fall through */
case 1513 : /* fall through */
case 1514 : /* fall through */
case 1515 : /* fall through */
case 1516 : /* fall through */
case 1517 : /* fall through */
case 1518 : /* fall through */
case 1519 : /* fall through */
case 1520 : /* fall through */
case 1521 : /* fall through */
case 1522 : /* fall through */
case 1523 : /* fall through */
case 1524 : /* fall through */
case 1525 : /* fall through */
case 1526 : /* fall through */
case 1527 : /* fall through */
case 1528 : /* fall through */
case 1529 : /* fall through */
case 1530 : /* fall through */
case 1531 : /* fall through */
case 1532 : /* fall through */
case 1533 : /* fall through */
case 1534 : /* fall through */
case 1535 : itype = SH64_COMPACT_INSN_BSR_COMPACT; goto extract_sfmt_bsr_compact;
case 1536 : /* fall through */
case 1537 : /* fall through */
case 1538 : /* fall through */
case 1539 : /* fall through */
case 1540 : /* fall through */
case 1541 : /* fall through */
case 1542 : /* fall through */
case 1543 : /* fall through */
case 1544 : /* fall through */
case 1545 : /* fall through */
case 1546 : /* fall through */
case 1547 : /* fall through */
case 1548 : /* fall through */
case 1549 : /* fall through */
case 1550 : /* fall through */
case 1551 : /* fall through */
case 1552 : /* fall through */
case 1553 : /* fall through */
case 1554 : /* fall through */
case 1555 : /* fall through */
case 1556 : /* fall through */
case 1557 : /* fall through */
case 1558 : /* fall through */
case 1559 : /* fall through */
case 1560 : /* fall through */
case 1561 : /* fall through */
case 1562 : /* fall through */
case 1563 : /* fall through */
case 1564 : /* fall through */
case 1565 : /* fall through */
case 1566 : /* fall through */
case 1567 : /* fall through */
case 1568 : /* fall through */
case 1569 : /* fall through */
case 1570 : /* fall through */
case 1571 : /* fall through */
case 1572 : /* fall through */
case 1573 : /* fall through */
case 1574 : /* fall through */
case 1575 : /* fall through */
case 1576 : /* fall through */
case 1577 : /* fall through */
case 1578 : /* fall through */
case 1579 : /* fall through */
case 1580 : /* fall through */
case 1581 : /* fall through */
case 1582 : /* fall through */
case 1583 : /* fall through */
case 1584 : /* fall through */
case 1585 : /* fall through */
case 1586 : /* fall through */
case 1587 : /* fall through */
case 1588 : /* fall through */
case 1589 : /* fall through */
case 1590 : /* fall through */
case 1591 : /* fall through */
case 1592 : /* fall through */
case 1593 : /* fall through */
case 1594 : /* fall through */
case 1595 : /* fall through */
case 1596 : /* fall through */
case 1597 : /* fall through */
case 1598 : /* fall through */
case 1599 : /* fall through */
case 1600 : /* fall through */
case 1601 : /* fall through */
case 1602 : /* fall through */
case 1603 : /* fall through */
case 1604 : /* fall through */
case 1605 : /* fall through */
case 1606 : /* fall through */
case 1607 : /* fall through */
case 1608 : /* fall through */
case 1609 : /* fall through */
case 1610 : /* fall through */
case 1611 : /* fall through */
case 1612 : /* fall through */
case 1613 : /* fall through */
case 1614 : /* fall through */
case 1615 : /* fall through */
case 1616 : /* fall through */
case 1617 : /* fall through */
case 1618 : /* fall through */
case 1619 : /* fall through */
case 1620 : /* fall through */
case 1621 : /* fall through */
case 1622 : /* fall through */
case 1623 : /* fall through */
case 1624 : /* fall through */
case 1625 : /* fall through */
case 1626 : /* fall through */
case 1627 : /* fall through */
case 1628 : /* fall through */
case 1629 : /* fall through */
case 1630 : /* fall through */
case 1631 : /* fall through */
case 1632 : /* fall through */
case 1633 : /* fall through */
case 1634 : /* fall through */
case 1635 : /* fall through */
case 1636 : /* fall through */
case 1637 : /* fall through */
case 1638 : /* fall through */
case 1639 : /* fall through */
case 1640 : /* fall through */
case 1641 : /* fall through */
case 1642 : /* fall through */
case 1643 : /* fall through */
case 1644 : /* fall through */
case 1645 : /* fall through */
case 1646 : /* fall through */
case 1647 : /* fall through */
case 1648 : /* fall through */
case 1649 : /* fall through */
case 1650 : /* fall through */
case 1651 : /* fall through */
case 1652 : /* fall through */
case 1653 : /* fall through */
case 1654 : /* fall through */
case 1655 : /* fall through */
case 1656 : /* fall through */
case 1657 : /* fall through */
case 1658 : /* fall through */
case 1659 : /* fall through */
case 1660 : /* fall through */
case 1661 : /* fall through */
case 1662 : /* fall through */
case 1663 :
{
unsigned int val = (((insn >> 8) & (15 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_MOVB4_COMPACT; goto extract_sfmt_movb4_compact;
case 1 : itype = SH64_COMPACT_INSN_MOVW4_COMPACT; goto extract_sfmt_movw4_compact;
case 2 : itype = SH64_COMPACT_INSN_MOVL4_COMPACT; goto extract_sfmt_movl4_compact;
case 3 : itype = SH64_COMPACT_INSN_TRAPA_COMPACT; goto extract_sfmt_trapa_compact;
case 4 : itype = SH64_COMPACT_INSN_MOVB9_COMPACT; goto extract_sfmt_movb9_compact;
case 5 : itype = SH64_COMPACT_INSN_MOVW9_COMPACT; goto extract_sfmt_movw9_compact;
case 6 : itype = SH64_COMPACT_INSN_MOVL9_COMPACT; goto extract_sfmt_movl9_compact;
case 7 : itype = SH64_COMPACT_INSN_MOVA_COMPACT; goto extract_sfmt_mova_compact;
case 8 : itype = SH64_COMPACT_INSN_TSTI_COMPACT; goto extract_sfmt_tsti_compact;
case 9 : itype = SH64_COMPACT_INSN_ANDI_COMPACT; goto extract_sfmt_andi_compact;
case 10 : itype = SH64_COMPACT_INSN_XORI_COMPACT; goto extract_sfmt_andi_compact;
case 11 : itype = SH64_COMPACT_INSN_ORI_COMPACT; goto extract_sfmt_andi_compact;
case 12 : itype = SH64_COMPACT_INSN_TSTB_COMPACT; goto extract_sfmt_tstb_compact;
case 13 : itype = SH64_COMPACT_INSN_ANDB_COMPACT; goto extract_sfmt_andb_compact;
case 14 : itype = SH64_COMPACT_INSN_XORB_COMPACT; goto extract_sfmt_andb_compact;
case 15 : itype = SH64_COMPACT_INSN_ORB_COMPACT; goto extract_sfmt_andb_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1664 : /* fall through */
case 1665 : /* fall through */
case 1666 : /* fall through */
case 1667 : /* fall through */
case 1668 : /* fall through */
case 1669 : /* fall through */
case 1670 : /* fall through */
case 1671 : /* fall through */
case 1672 : /* fall through */
case 1673 : /* fall through */
case 1674 : /* fall through */
case 1675 : /* fall through */
case 1676 : /* fall through */
case 1677 : /* fall through */
case 1678 : /* fall through */
case 1679 : /* fall through */
case 1680 : /* fall through */
case 1681 : /* fall through */
case 1682 : /* fall through */
case 1683 : /* fall through */
case 1684 : /* fall through */
case 1685 : /* fall through */
case 1686 : /* fall through */
case 1687 : /* fall through */
case 1688 : /* fall through */
case 1689 : /* fall through */
case 1690 : /* fall through */
case 1691 : /* fall through */
case 1692 : /* fall through */
case 1693 : /* fall through */
case 1694 : /* fall through */
case 1695 : /* fall through */
case 1696 : /* fall through */
case 1697 : /* fall through */
case 1698 : /* fall through */
case 1699 : /* fall through */
case 1700 : /* fall through */
case 1701 : /* fall through */
case 1702 : /* fall through */
case 1703 : /* fall through */
case 1704 : /* fall through */
case 1705 : /* fall through */
case 1706 : /* fall through */
case 1707 : /* fall through */
case 1708 : /* fall through */
case 1709 : /* fall through */
case 1710 : /* fall through */
case 1711 : /* fall through */
case 1712 : /* fall through */
case 1713 : /* fall through */
case 1714 : /* fall through */
case 1715 : /* fall through */
case 1716 : /* fall through */
case 1717 : /* fall through */
case 1718 : /* fall through */
case 1719 : /* fall through */
case 1720 : /* fall through */
case 1721 : /* fall through */
case 1722 : /* fall through */
case 1723 : /* fall through */
case 1724 : /* fall through */
case 1725 : /* fall through */
case 1726 : /* fall through */
case 1727 : /* fall through */
case 1728 : /* fall through */
case 1729 : /* fall through */
case 1730 : /* fall through */
case 1731 : /* fall through */
case 1732 : /* fall through */
case 1733 : /* fall through */
case 1734 : /* fall through */
case 1735 : /* fall through */
case 1736 : /* fall through */
case 1737 : /* fall through */
case 1738 : /* fall through */
case 1739 : /* fall through */
case 1740 : /* fall through */
case 1741 : /* fall through */
case 1742 : /* fall through */
case 1743 : /* fall through */
case 1744 : /* fall through */
case 1745 : /* fall through */
case 1746 : /* fall through */
case 1747 : /* fall through */
case 1748 : /* fall through */
case 1749 : /* fall through */
case 1750 : /* fall through */
case 1751 : /* fall through */
case 1752 : /* fall through */
case 1753 : /* fall through */
case 1754 : /* fall through */
case 1755 : /* fall through */
case 1756 : /* fall through */
case 1757 : /* fall through */
case 1758 : /* fall through */
case 1759 : /* fall through */
case 1760 : /* fall through */
case 1761 : /* fall through */
case 1762 : /* fall through */
case 1763 : /* fall through */
case 1764 : /* fall through */
case 1765 : /* fall through */
case 1766 : /* fall through */
case 1767 : /* fall through */
case 1768 : /* fall through */
case 1769 : /* fall through */
case 1770 : /* fall through */
case 1771 : /* fall through */
case 1772 : /* fall through */
case 1773 : /* fall through */
case 1774 : /* fall through */
case 1775 : /* fall through */
case 1776 : /* fall through */
case 1777 : /* fall through */
case 1778 : /* fall through */
case 1779 : /* fall through */
case 1780 : /* fall through */
case 1781 : /* fall through */
case 1782 : /* fall through */
case 1783 : /* fall through */
case 1784 : /* fall through */
case 1785 : /* fall through */
case 1786 : /* fall through */
case 1787 : /* fall through */
case 1788 : /* fall through */
case 1789 : /* fall through */
case 1790 : /* fall through */
case 1791 : itype = SH64_COMPACT_INSN_MOVL10_COMPACT; goto extract_sfmt_movl10_compact;
case 1792 : /* fall through */
case 1793 : /* fall through */
case 1794 : /* fall through */
case 1795 : /* fall through */
case 1796 : /* fall through */
case 1797 : /* fall through */
case 1798 : /* fall through */
case 1799 : /* fall through */
case 1800 : /* fall through */
case 1801 : /* fall through */
case 1802 : /* fall through */
case 1803 : /* fall through */
case 1804 : /* fall through */
case 1805 : /* fall through */
case 1806 : /* fall through */
case 1807 : /* fall through */
case 1808 : /* fall through */
case 1809 : /* fall through */
case 1810 : /* fall through */
case 1811 : /* fall through */
case 1812 : /* fall through */
case 1813 : /* fall through */
case 1814 : /* fall through */
case 1815 : /* fall through */
case 1816 : /* fall through */
case 1817 : /* fall through */
case 1818 : /* fall through */
case 1819 : /* fall through */
case 1820 : /* fall through */
case 1821 : /* fall through */
case 1822 : /* fall through */
case 1823 : /* fall through */
case 1824 : /* fall through */
case 1825 : /* fall through */
case 1826 : /* fall through */
case 1827 : /* fall through */
case 1828 : /* fall through */
case 1829 : /* fall through */
case 1830 : /* fall through */
case 1831 : /* fall through */
case 1832 : /* fall through */
case 1833 : /* fall through */
case 1834 : /* fall through */
case 1835 : /* fall through */
case 1836 : /* fall through */
case 1837 : /* fall through */
case 1838 : /* fall through */
case 1839 : /* fall through */
case 1840 : /* fall through */
case 1841 : /* fall through */
case 1842 : /* fall through */
case 1843 : /* fall through */
case 1844 : /* fall through */
case 1845 : /* fall through */
case 1846 : /* fall through */
case 1847 : /* fall through */
case 1848 : /* fall through */
case 1849 : /* fall through */
case 1850 : /* fall through */
case 1851 : /* fall through */
case 1852 : /* fall through */
case 1853 : /* fall through */
case 1854 : /* fall through */
case 1855 : /* fall through */
case 1856 : /* fall through */
case 1857 : /* fall through */
case 1858 : /* fall through */
case 1859 : /* fall through */
case 1860 : /* fall through */
case 1861 : /* fall through */
case 1862 : /* fall through */
case 1863 : /* fall through */
case 1864 : /* fall through */
case 1865 : /* fall through */
case 1866 : /* fall through */
case 1867 : /* fall through */
case 1868 : /* fall through */
case 1869 : /* fall through */
case 1870 : /* fall through */
case 1871 : /* fall through */
case 1872 : /* fall through */
case 1873 : /* fall through */
case 1874 : /* fall through */
case 1875 : /* fall through */
case 1876 : /* fall through */
case 1877 : /* fall through */
case 1878 : /* fall through */
case 1879 : /* fall through */
case 1880 : /* fall through */
case 1881 : /* fall through */
case 1882 : /* fall through */
case 1883 : /* fall through */
case 1884 : /* fall through */
case 1885 : /* fall through */
case 1886 : /* fall through */
case 1887 : /* fall through */
case 1888 : /* fall through */
case 1889 : /* fall through */
case 1890 : /* fall through */
case 1891 : /* fall through */
case 1892 : /* fall through */
case 1893 : /* fall through */
case 1894 : /* fall through */
case 1895 : /* fall through */
case 1896 : /* fall through */
case 1897 : /* fall through */
case 1898 : /* fall through */
case 1899 : /* fall through */
case 1900 : /* fall through */
case 1901 : /* fall through */
case 1902 : /* fall through */
case 1903 : /* fall through */
case 1904 : /* fall through */
case 1905 : /* fall through */
case 1906 : /* fall through */
case 1907 : /* fall through */
case 1908 : /* fall through */
case 1909 : /* fall through */
case 1910 : /* fall through */
case 1911 : /* fall through */
case 1912 : /* fall through */
case 1913 : /* fall through */
case 1914 : /* fall through */
case 1915 : /* fall through */
case 1916 : /* fall through */
case 1917 : /* fall through */
case 1918 : /* fall through */
case 1919 : itype = SH64_COMPACT_INSN_MOVI_COMPACT; goto extract_sfmt_movi_compact;
case 1920 : /* fall through */
case 1936 : /* fall through */
case 1952 : /* fall through */
case 1968 : /* fall through */
case 1984 : /* fall through */
case 2000 : /* fall through */
case 2016 : /* fall through */
case 2032 : itype = SH64_COMPACT_INSN_FADD_COMPACT; goto extract_sfmt_fadd_compact;
case 1921 : /* fall through */
case 1937 : /* fall through */
case 1953 : /* fall through */
case 1969 : /* fall through */
case 1985 : /* fall through */
case 2001 : /* fall through */
case 2017 : /* fall through */
case 2033 : itype = SH64_COMPACT_INSN_FSUB_COMPACT; goto extract_sfmt_fadd_compact;
case 1922 : /* fall through */
case 1938 : /* fall through */
case 1954 : /* fall through */
case 1970 : /* fall through */
case 1986 : /* fall through */
case 2002 : /* fall through */
case 2018 : /* fall through */
case 2034 : itype = SH64_COMPACT_INSN_FMUL_COMPACT; goto extract_sfmt_fadd_compact;
case 1923 : /* fall through */
case 1939 : /* fall through */
case 1955 : /* fall through */
case 1971 : /* fall through */
case 1987 : /* fall through */
case 2003 : /* fall through */
case 2019 : /* fall through */
case 2035 : itype = SH64_COMPACT_INSN_FDIV_COMPACT; goto extract_sfmt_fadd_compact;
case 1924 : /* fall through */
case 1940 : /* fall through */
case 1956 : /* fall through */
case 1972 : /* fall through */
case 1988 : /* fall through */
case 2004 : /* fall through */
case 2020 : /* fall through */
case 2036 : itype = SH64_COMPACT_INSN_FCMPEQ_COMPACT; goto extract_sfmt_fcmpeq_compact;
case 1925 : /* fall through */
case 1941 : /* fall through */
case 1957 : /* fall through */
case 1973 : /* fall through */
case 1989 : /* fall through */
case 2005 : /* fall through */
case 2021 : /* fall through */
case 2037 : itype = SH64_COMPACT_INSN_FCMPGT_COMPACT; goto extract_sfmt_fcmpeq_compact;
case 1926 : /* fall through */
case 1942 : /* fall through */
case 1958 : /* fall through */
case 1974 : /* fall through */
case 1990 : /* fall through */
case 2006 : /* fall through */
case 2022 : /* fall through */
case 2038 : itype = SH64_COMPACT_INSN_FMOV4_COMPACT; goto extract_sfmt_fmov4_compact;
case 1927 : /* fall through */
case 1943 : /* fall through */
case 1959 : /* fall through */
case 1975 : /* fall through */
case 1991 : /* fall through */
case 2007 : /* fall through */
case 2023 : /* fall through */
case 2039 : itype = SH64_COMPACT_INSN_FMOV7_COMPACT; goto extract_sfmt_fmov7_compact;
case 1928 : /* fall through */
case 1944 : /* fall through */
case 1960 : /* fall through */
case 1976 : /* fall through */
case 1992 : /* fall through */
case 2008 : /* fall through */
case 2024 : /* fall through */
case 2040 : itype = SH64_COMPACT_INSN_FMOV2_COMPACT; goto extract_sfmt_fmov2_compact;
case 1929 : /* fall through */
case 1945 : /* fall through */
case 1961 : /* fall through */
case 1977 : /* fall through */
case 1993 : /* fall through */
case 2009 : /* fall through */
case 2025 : /* fall through */
case 2041 : itype = SH64_COMPACT_INSN_FMOV3_COMPACT; goto extract_sfmt_fmov3_compact;
case 1930 : /* fall through */
case 1946 : /* fall through */
case 1962 : /* fall through */
case 1978 : /* fall through */
case 1994 : /* fall through */
case 2010 : /* fall through */
case 2026 : /* fall through */
case 2042 : itype = SH64_COMPACT_INSN_FMOV5_COMPACT; goto extract_sfmt_fmov5_compact;
case 1931 : /* fall through */
case 1947 : /* fall through */
case 1963 : /* fall through */
case 1979 : /* fall through */
case 1995 : /* fall through */
case 2011 : /* fall through */
case 2027 : /* fall through */
case 2043 : itype = SH64_COMPACT_INSN_FMOV6_COMPACT; goto extract_sfmt_fmov6_compact;
case 1932 : /* fall through */
case 1948 : /* fall through */
case 1964 : /* fall through */
case 1980 : /* fall through */
case 1996 : /* fall through */
case 2012 : /* fall through */
case 2028 : /* fall through */
case 2044 : itype = SH64_COMPACT_INSN_FMOV1_COMPACT; goto extract_sfmt_fmov1_compact;
case 1933 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_FSTS_COMPACT; goto extract_sfmt_fsts_compact;
case 1 : itype = SH64_COMPACT_INSN_FLDI0_COMPACT; goto extract_sfmt_fldi0_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1934 : /* fall through */
case 1950 : /* fall through */
case 1966 : /* fall through */
case 1982 : /* fall through */
case 1998 : /* fall through */
case 2014 : /* fall through */
case 2030 : /* fall through */
case 2046 : itype = SH64_COMPACT_INSN_FMAC_COMPACT; goto extract_sfmt_fmac_compact;
case 1949 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_FLDS_COMPACT; goto extract_sfmt_flds_compact;
case 1 : itype = SH64_COMPACT_INSN_FLDI1_COMPACT; goto extract_sfmt_fldi0_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1965 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_FLOAT_COMPACT; goto extract_sfmt_float_compact;
case 1 :
if ((entire_insn & 0xf1ff) == 0xf0ad)
{ itype = SH64_COMPACT_INSN_FCNVSD_COMPACT; goto extract_sfmt_fcnvsd_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1981 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_FTRC_COMPACT; goto extract_sfmt_ftrc_compact;
case 1 :
if ((entire_insn & 0xf1ff) == 0xf0bd)
{ itype = SH64_COMPACT_INSN_FCNVDS_COMPACT; goto extract_sfmt_fcnvds_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 1997 :
if ((entire_insn & 0xf0ff) == 0xf04d)
{ itype = SH64_COMPACT_INSN_FNEG_COMPACT; goto extract_sfmt_fabs_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 2013 :
if ((entire_insn & 0xf0ff) == 0xf05d)
{ itype = SH64_COMPACT_INSN_FABS_COMPACT; goto extract_sfmt_fabs_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 2029 :
{
unsigned int val = (((insn >> 7) & (1 << 0)));
switch (val)
{
case 0 : itype = SH64_COMPACT_INSN_FSQRT_COMPACT; goto extract_sfmt_fabs_compact;
case 1 : itype = SH64_COMPACT_INSN_FIPR_COMPACT; goto extract_sfmt_fipr_compact;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
case 2045 :
{
unsigned int val = (((insn >> 10) & (1 << 1)) | ((insn >> 9) & (1 << 0)));
switch (val)
{
case 0 : /* fall through */
case 2 :
if ((entire_insn & 0xf3ff) == 0xf1fd)
{ itype = SH64_COMPACT_INSN_FTRV_COMPACT; goto extract_sfmt_ftrv_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 1 :
if ((entire_insn & 0xffff) == 0xf3fd)
{ itype = SH64_COMPACT_INSN_FSCHG_COMPACT; goto extract_sfmt_fschg_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
case 3 :
if ((entire_insn & 0xffff) == 0xfbfd)
{ itype = SH64_COMPACT_INSN_FRCHG_COMPACT; goto extract_sfmt_frchg_compact; }
itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
default : itype = SH64_COMPACT_INSN_X_INVALID; goto extract_sfmt_empty;
}
}
}
/* The instruction has been decoded, now extract the fields. */
extract_sfmt_empty:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_empty", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_add_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_add_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_addi_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_rn;
UINT f_imm8;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_addi_compact", "f_imm8 0x%x", 'x', f_imm8, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_addc_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_addc_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_addv_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_addv_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_and_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_and_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm64) = f_rm;
FLD (in_rn64) = f_rn;
FLD (out_rn64) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_andi_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_andi_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_andb_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_andb_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_bf_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_bf_compact.f
SI f_disp8;
f_disp8 = ((((EXTRACT_MSB0_SINT (insn, 16, 8, 8)) << (1))) + (((pc) + (4))));
/* Record the fields for the semantic handler. */
FLD (i_disp8) = f_disp8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_bf_compact", "disp8 0x%x", 'x', f_disp8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_bfs_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_bf_compact.f
SI f_disp8;
f_disp8 = ((((EXTRACT_MSB0_SINT (insn, 16, 8, 8)) << (1))) + (((pc) + (4))));
/* Record the fields for the semantic handler. */
FLD (i_disp8) = f_disp8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_bfs_compact", "disp8 0x%x", 'x', f_disp8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_bra_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_bra_compact.f
SI f_disp12;
f_disp12 = ((((EXTRACT_MSB0_SINT (insn, 16, 4, 12)) << (1))) + (((pc) + (4))));
/* Record the fields for the semantic handler. */
FLD (i_disp12) = f_disp12;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_bra_compact", "disp12 0x%x", 'x', f_disp12, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_braf_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_braf_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_brk_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_brk_compact", (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_bsr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_bra_compact.f
SI f_disp12;
f_disp12 = ((((EXTRACT_MSB0_SINT (insn, 16, 4, 12)) << (1))) + (((pc) + (4))));
/* Record the fields for the semantic handler. */
FLD (i_disp12) = f_disp12;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_bsr_compact", "disp12 0x%x", 'x', f_disp12, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_bsrf_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_bsrf_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_clrmac_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_clrmac_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_clrs_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_clrs_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_clrt_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_clrt_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_cmpeq_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_cmpeq_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_cmpeqi_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_cmpeqi_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_cmppl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_cmppl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_div0s_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_div0s_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_div0u_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_div0u_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_div1_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_div1_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_divu_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_divu_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_dmulsl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_dmulsl_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_dt_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_dt_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_extsb_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_extsb_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fabs_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fabs_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fsdn) = f_rn;
FLD (out_fsdn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fadd_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fadd_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fsdm) = f_rm;
FLD (in_fsdn) = f_rn;
FLD (out_fsdn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fcmpeq_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fcmpeq_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fsdm) = f_rm;
FLD (in_fsdn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fcnvds_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fmov8_compact.f
SI f_dn;
f_dn = ((EXTRACT_MSB0_UINT (insn, 16, 4, 3)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_dn) = f_dn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fcnvds_compact", "f_dn 0x%x", 'x', f_dn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_drn) = f_dn;
FLD (out_fpul) = 32;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fcnvsd_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fmov8_compact.f
SI f_dn;
f_dn = ((EXTRACT_MSB0_UINT (insn, 16, 4, 3)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_dn) = f_dn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fcnvsd_compact", "f_dn 0x%x", 'x', f_dn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fpul) = 32;
FLD (out_drn) = f_dn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fipr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fipr_compact.f
SI f_vn;
SI f_vm;
f_vn = ((EXTRACT_MSB0_UINT (insn, 16, 4, 2)) << (2));
f_vm = ((EXTRACT_MSB0_UINT (insn, 16, 6, 2)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_vm) = f_vm;
FLD (f_vn) = f_vn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fipr_compact", "f_vm 0x%x", 'x', f_vm, "f_vn 0x%x", 'x', f_vn, (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_flds_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_flds_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_frn) = f_rn;
FLD (out_fpul) = 32;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fldi0_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fldi0_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_frn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_float_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_float_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fpul) = 32;
FLD (out_fsdn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmac_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmac_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fr0) = 0;
FLD (in_frm) = f_rm;
FLD (in_frn) = f_rn;
FLD (out_frn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov1_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov1_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fmovm) = f_rm;
FLD (out_fmovn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov2_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov2_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_fmovn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov3_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov3_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_fmovn) = f_rn;
FLD (out_rm) = f_rm;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov4_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov4_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (out_fmovn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov5_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov5_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fmovm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov6_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov6_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fmovm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov7_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov7_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fmovm) = f_rm;
FLD (in_r0) = 0;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov8_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fmov8_compact.f
SI f_dn;
UINT f_rm;
SI f_imm12x8;
f_dn = ((EXTRACT_MSB0_UINT (insn, 32, 4, 3)) << (1));
f_rm = EXTRACT_MSB0_UINT (insn, 32, 8, 4);
f_imm12x8 = ((EXTRACT_MSB0_SINT (insn, 32, 20, 12)) << (3));
/* Record the fields for the semantic handler. */
FLD (f_imm12x8) = f_imm12x8;
FLD (f_rm) = f_rm;
FLD (f_dn) = f_dn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov8_compact", "f_imm12x8 0x%x", 'x', f_imm12x8, "f_rm 0x%x", 'x', f_rm, "f_dn 0x%x", 'x', f_dn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_drn) = f_dn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_fmov9_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fmov9_compact.f
UINT f_rn;
SI f_dm;
SI f_imm12x8;
f_rn = EXTRACT_MSB0_UINT (insn, 32, 4, 4);
f_dm = ((EXTRACT_MSB0_UINT (insn, 32, 8, 3)) << (1));
f_imm12x8 = ((EXTRACT_MSB0_SINT (insn, 32, 20, 12)) << (3));
/* Record the fields for the semantic handler. */
FLD (f_dm) = f_dm;
FLD (f_imm12x8) = f_imm12x8;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fmov9_compact", "f_dm 0x%x", 'x', f_dm, "f_imm12x8 0x%x", 'x', f_imm12x8, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_drm) = f_dm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_frchg_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_frchg_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_fschg_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fschg_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_fsts_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_fsts_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fpul) = 32;
FLD (out_frn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ftrc_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ftrc_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fsdn) = f_rn;
FLD (out_fpul) = 32;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ftrv_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_fipr_compact.f
SI f_vn;
f_vn = ((EXTRACT_MSB0_UINT (insn, 16, 4, 2)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_vn) = f_vn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ftrv_compact", "f_vn 0x%x", 'x', f_vn, (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_ldc_gbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldc_gbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldc_vbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldc_vbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldc_sr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldc_sr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldcl_gbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldcl_gbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldcl_vbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldcl_vbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_lds_fpscr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_lds_fpscr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldsl_fpscr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldsl_fpscr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_lds_fpul_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_lds_fpul_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_fpul) = 32;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldsl_fpul_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldsl_fpul_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_fpul) = 32;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_lds_mach_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_lds_mach_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldsl_mach_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldsl_mach_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_lds_macl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_lds_macl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldsl_macl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldsl_macl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_lds_pr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_lds_pr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_ldsl_pr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_ldsl_pr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_macl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_macl_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_macw_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_macw_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_mov_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_mov_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm64) = f_rm;
FLD (out_rn64) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movi_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_rn;
UINT f_imm8;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movi_compact", "f_imm8 0x%x", 'x', f_imm8, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movi20_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movi20_compact.f
UINT f_rn;
INT f_imm20_hi;
UINT f_imm20_lo;
INT f_imm20;
f_rn = EXTRACT_MSB0_UINT (insn, 32, 4, 4);
f_imm20_hi = EXTRACT_MSB0_SINT (insn, 32, 8, 4);
f_imm20_lo = EXTRACT_MSB0_UINT (insn, 32, 16, 16);
f_imm20 = ((((f_imm20_hi) << (16))) | (f_imm20_lo));
/* Record the fields for the semantic handler. */
FLD (f_imm20) = f_imm20;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movi20_compact", "f_imm20 0x%x", 'x', f_imm20, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb1_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb1_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb2_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb2_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb3_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb3_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb4_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb4_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb5_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movb5_compact.f
UINT f_rm;
UINT f_imm4;
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4 = EXTRACT_MSB0_UINT (insn, 16, 12, 4);
/* Record the fields for the semantic handler. */
FLD (f_imm4) = f_imm4;
FLD (f_rm) = f_rm;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb5_compact", "f_imm4 0x%x", 'x', f_imm4, "f_rm 0x%x", 'x', f_rm, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb6_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb6_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb7_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb7_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb8_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb8_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb9_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb9_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movb10_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movb5_compact.f
UINT f_rm;
UINT f_imm4;
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4 = EXTRACT_MSB0_UINT (insn, 16, 12, 4);
/* Record the fields for the semantic handler. */
FLD (f_imm4) = f_imm4;
FLD (f_rm) = f_rm;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movb10_compact", "f_imm4 0x%x", 'x', f_imm4, "f_rm 0x%x", 'x', f_rm, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl1_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl1_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl2_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl2_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl3_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl3_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl4_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl10_compact.f
SI f_imm8x4;
f_imm8x4 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm8x4) = f_imm8x4;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl4_compact", "f_imm8x4 0x%x", 'x', f_imm8x4, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl5_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl5_compact.f
UINT f_rn;
UINT f_rm;
SI f_imm4x4;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4x4 = ((EXTRACT_MSB0_UINT (insn, 16, 12, 4)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm4x4) = f_imm4x4;
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl5_compact", "f_imm4x4 0x%x", 'x', f_imm4x4, "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl6_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl6_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl7_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl7_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl8_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl8_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl9_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl10_compact.f
SI f_imm8x4;
f_imm8x4 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm8x4) = f_imm8x4;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl9_compact", "f_imm8x4 0x%x", 'x', f_imm8x4, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl10_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl10_compact.f
UINT f_rn;
SI f_imm8x4;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_imm8x4 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm8x4) = f_imm8x4;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl10_compact", "f_imm8x4 0x%x", 'x', f_imm8x4, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl11_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl5_compact.f
UINT f_rn;
UINT f_rm;
SI f_imm4x4;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4x4 = ((EXTRACT_MSB0_UINT (insn, 16, 12, 4)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm4x4) = f_imm4x4;
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl11_compact", "f_imm4x4 0x%x", 'x', f_imm4x4, "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl12_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
SI f_imm12x4;
f_rn = EXTRACT_MSB0_UINT (insn, 32, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 32, 8, 4);
f_imm12x4 = ((EXTRACT_MSB0_SINT (insn, 32, 20, 12)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm12x4) = f_imm12x4;
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl12_compact", "f_imm12x4 0x%x", 'x', f_imm12x4, "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movl13_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
SI f_imm12x4;
f_rn = EXTRACT_MSB0_UINT (insn, 32, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 32, 8, 4);
f_imm12x4 = ((EXTRACT_MSB0_SINT (insn, 32, 20, 12)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm12x4) = f_imm12x4;
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movl13_compact", "f_imm12x4 0x%x", 'x', f_imm12x4, "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw1_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw1_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw2_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw2_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw3_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw3_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw4_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
SI f_imm8x2;
f_imm8x2 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_imm8x2) = f_imm8x2;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw4_compact", "f_imm8x2 0x%x", 'x', f_imm8x2, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw5_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw5_compact.f
UINT f_rm;
SI f_imm4x2;
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4x2 = ((EXTRACT_MSB0_UINT (insn, 16, 12, 4)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_imm4x2) = f_imm4x2;
FLD (f_rm) = f_rm;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw5_compact", "f_imm4x2 0x%x", 'x', f_imm4x2, "f_rm 0x%x", 'x', f_rm, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw6_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw6_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw7_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw7_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw8_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw8_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw9_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
SI f_imm8x2;
f_imm8x2 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_imm8x2) = f_imm8x2;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw9_compact", "f_imm8x2 0x%x", 'x', f_imm8x2, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw10_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
SI f_imm8x2;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_imm8x2 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_imm8x2) = f_imm8x2;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw10_compact", "f_imm8x2 0x%x", 'x', f_imm8x2, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movw11_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw5_compact.f
UINT f_rm;
SI f_imm4x2;
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
f_imm4x2 = ((EXTRACT_MSB0_UINT (insn, 16, 12, 4)) << (1));
/* Record the fields for the semantic handler. */
FLD (f_imm4x2) = f_imm4x2;
FLD (f_rm) = f_rm;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movw11_compact", "f_imm4x2 0x%x", 'x', f_imm4x2, "f_rm 0x%x", 'x', f_rm, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_mova_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl10_compact.f
SI f_imm8x4;
f_imm8x4 = ((EXTRACT_MSB0_UINT (insn, 16, 8, 8)) << (2));
/* Record the fields for the semantic handler. */
FLD (f_imm8x4) = f_imm8x4;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_mova_compact", "f_imm8x4 0x%x", 'x', f_imm8x4, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movcal_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movcal_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movcol_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movcol_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movt_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movt_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movual_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movual_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_movual2_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_movual2_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_r0) = 0;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_mull_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_mull_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_negc_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_negc_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_nop_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_nop_compact", (char *) 0));
#undef FLD
return idesc;
}
extract_sfmt_pref_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_pref_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_rotcl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_rotcl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_rts_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
#define FLD(f) abuf->fields.sfmt_empty.f
/* Record the fields for the semantic handler. */
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_rts_compact", (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_shad_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movl12_compact.f
UINT f_rn;
UINT f_rm;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
f_rm = EXTRACT_MSB0_UINT (insn, 16, 8, 4);
/* Record the fields for the semantic handler. */
FLD (f_rm) = f_rm;
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_shad_compact", "f_rm 0x%x", 'x', f_rm, "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rm) = f_rm;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stc_gbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stc_gbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stc_vbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stc_vbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stcl_gbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stcl_gbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stcl_vbr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stcl_vbr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_sts_fpscr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_sts_fpscr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stsl_fpscr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stsl_fpscr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_sts_fpul_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_sts_fpul_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fpul) = 32;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stsl_fpul_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stsl_fpul_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_fpul) = 32;
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_sts_mach_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_sts_mach_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stsl_mach_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stsl_mach_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_sts_macl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_sts_macl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stsl_macl_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stsl_macl_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_sts_pr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_sts_pr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_stsl_pr_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_stsl_pr_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
FLD (out_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_tasb_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_movw10_compact.f
UINT f_rn;
f_rn = EXTRACT_MSB0_UINT (insn, 16, 4, 4);
/* Record the fields for the semantic handler. */
FLD (f_rn) = f_rn;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_tasb_compact", "f_rn 0x%x", 'x', f_rn, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_rn) = f_rn;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_trapa_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_trapa_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_tsti_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_tsti_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
extract_sfmt_tstb_compact:
{
const IDESC *idesc = &sh64_compact_insn_data[itype];
CGEN_INSN_WORD insn = entire_insn;
#define FLD(f) abuf->fields.sfmt_addi_compact.f
UINT f_imm8;
f_imm8 = EXTRACT_MSB0_UINT (insn, 16, 8, 8);
/* Record the fields for the semantic handler. */
FLD (f_imm8) = f_imm8;
TRACE_EXTRACT (current_cpu, abuf, (current_cpu, pc, "sfmt_tstb_compact", "f_imm8 0x%x", 'x', f_imm8, (char *) 0));
#if WITH_PROFILE_MODEL_P
/* Record the fields for profiling. */
if (PROFILE_MODEL_P (current_cpu))
{
FLD (in_r0) = 0;
}
#endif
#undef FLD
return idesc;
}
}
|