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
|
{
Copyright (c) 1998-2013 by the FPC Development Team
Dumps the contents of a FPC unit file (PPU File)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************}
program ppudump;
{$i fpcdefs.inc}
{$H+}
{$packenum 1}
{$define IN_PPUDUMP}
uses
{ do NOT add symconst or globtype to make merging easier }
{ do include symconst and globtype now before splitting 2.5 PM 2011-06-15 }
cutils,
SysUtils,
constexp,
symconst,
ppu,
entfile,
systems,
cpuinfo,
globals,
globtype,
widestr,
tokens,
version,
ppuout,
ppujson,
ppuxml;
const
Title = 'PPU-Analyser';
Copyright = 'Copyright (c) 1998-2013 by the Free Pascal Development Team';
{ verbosity }
v_none = $0;
v_header = $1;
v_defs = $2;
v_syms = $4;
v_interface = $8;
v_implementation = $10;
// v_browser = $20;
v_all = $ff;
{ not needed anymore $i systems.inc }
{ List of all supported cpus }
const
CpuTxt : array[tsystemcpu] of string[16]=
(
{ 0 } 'none',
{ 1 } 'i386',
{ 2 } 'm68k',
{ 3 } 'alpha (obsolete)',
{ 4 } 'powerpc',
{ 5 } 'sparc',
{ 6 } 'vis (obsolete)',
{ 7 } 'ia64 (obsolete)',
{ 8 } 'x86_64',
{ 9 } 'mipseb',
{ 10 } 'arm',
{ 11 } 'powerpc64',
{ 12 } 'avr',
{ 13 } 'mipsel',
{ 14 } 'jvm',
{ 15 } 'i8086',
{ 16 } 'aarch64',
{ 17 } 'wasm',
{ 18 } 'sparc64'
);
CpuHasController : array[tsystemcpu] of boolean =
(
{ 0 } false {'none'},
{ 1 } false {'i386'},
{ 2 } false {'m68k'},
{ 3 } false {'alpha (obsolete)'},
{ 4 } false {'powerpc'},
{ 5 } false {'sparc'},
{ 6 } false {'vis (obsolete)'},
{ 7 } false {'ia64 (obsolete)'},
{ 8 } false {'x86_64'},
{ 9 } false {'mipseb'},
{ 10 } true {'arm'},
{ 11 } false {'powerpc64'},
{ 12 } true {'avr'},
{ 13 } true {'mipsel'},
{ 14 } false {'jvm'},
{ 15 } false {'i8086'},
{ 16 } false {'aarch64'},
{ 17 } false {'wasm'},
{ 18 } false {'sparc64'}
);
{ List of all supported system-cpu couples }
const
Targets : array[tsystem] of string[26]=(
{ 0 } 'none',
{ 1 } 'GO32V1 (obsolete)',
{ 2 } 'GO32V2',
{ 3 } 'Linux-i386',
{ 4 } 'OS/2',
{ 5 } 'Win32',
{ 6 } 'FreeBSD-i386',
{ 7 } 'Amiga',
{ 8 } 'Atari',
{ 9 } 'MacOSClassic-m68k',
{ 10 } 'Linux-m68k',
{ 11 } 'PalmOS-m68k',
{ 12 } 'Linux-alpha (obsolete)',
{ 13 } 'Linux-ppc',
{ 14 } 'MacOSClassic-ppc',
{ 15 } 'Solaris-i386',
{ 16 } 'BeOS-i386',
{ 17 } 'NetBSD-i386',
{ 18 } 'NetBSD-m68k',
{ 19 } 'Netware-i386-clib',
{ 20 } 'Qnx-i386',
{ 21 } 'WDOSX-i386',
{ 22 } 'Solaris-sparc',
{ 23 } 'Linux-sparc',
{ 24 } 'OpenBSD-i386',
{ 25 } 'OpenBSD-m68k (obsolete)',
{ 26 } 'Linux-x86-64',
{ 27 } 'Darwin-ppc',
{ 28 } 'OS/2 via EMX',
{ 29 } 'NetBSD-powerpc',
{ 30 } 'OpenBSD-powerpc',
{ 31 } 'Linux-arm',
{ 32 } 'Watcom-i386',
{ 33 } 'MorphOS-powerpc',
{ 34 } 'FreeBSD-x86-64',
{ 35 } 'Netware-i386-libc',
{ 36 } 'Amiga-PowerPC',
{ 37 } 'Win64-x64',
{ 38 } 'WinCE-ARM',
{ 39 } 'Win64-iA64 (obsolete)',
{ 40 } 'WinCE-i386',
{ 41 } 'Linux-x64',
{ 42 } 'GBA-arm',
{ 43 } 'Linux-powerpc64',
{ 44 } 'Darwin-i386',
{ 45 } 'PalmOS-arm',
{ 46 } 'Darwin-powerpc64',
{ 47 } 'NDS-arm',
{ 48 } 'Embedded-i386',
{ 49 } 'Embedded-m68k',
{ 50 } 'Embedded-alpha (obsolete)',
{ 51 } 'Embedded-powerpc',
{ 52 } 'Embedded-sparc',
{ 53 } 'Embedded-vm (obsolete)',
{ 54 } 'Embedded-iA64 (obsolete)',
{ 55 } 'Embedded-x64',
{ 56 } 'Embedded-mips',
{ 57 } 'Embedded-arm',
{ 58 } 'Embedded-powerpc64',
{ 59 } 'Symbian-i386',
{ 60 } 'Symbian-arm',
{ 61 } 'Darwin-x64',
{ 62 } 'Embedded-avr',
{ 63 } 'Haiku-i386',
{ 64 } 'iOS-ARM',
{ 65 } 'Solaris-x86-64',
{ 66 } 'Linux-MIPS',
{ 67 } 'Linux-MIPSel',
{ 68 } 'NativeNT-i386',
{ 69 } 'iPhoneSim-i386',
{ 70 } 'Wii-powerpc',
{ 71 } 'OpenBSD-x86-64',
{ 72 } 'NetBSD-x86-64',
{ 73 } 'AIX-powerpc',
{ 74 } 'AIX-powerpc64',
{ 75 } 'Java-JVM',
{ 76 } 'Android-JVM',
{ 77 } 'Android-arm',
{ 78 } 'Android-i386',
{ 79 } 'MSDOS-i8086',
{ 80 } 'Android-MIPSel',
{ 81 } 'Embedded-mipseb',
{ 82 } 'Embedded-mipsel',
{ 83 } 'AROS-i386',
{ 84 } 'AROS-x86-64',
{ 85 } 'DragonFly-x86-64',
{ 86 } 'iOS-AArch64',
{ 87 } 'iPhoneSim-x86-64',
{ 88 } 'Linux-AArch64',
{ 89 } 'Win16',
{ 90 } 'Embedded-i8086',
{ 91 } 'AROS-arm',
{ 92 } 'WebAssembly-wasm',
{ 93 } 'Linux-sparc64',
{ 94 } 'Solaris-sparc64',
{ 95 } 'NetBSD-arm',
{ 96 } 'Linux-RiscV32',
{ 97 } 'Linux-RiscV64',
{ 98 } 'Embedded-RiscV32',
{ 99 } 'Embedded-RiscV64',
{ 100 } 'Android-AArch64',
{ 101 } 'Android-x86-64',
{ 102 } 'Haiku-x86-64',
{ 111 } 'Darwin-AArch64'
);
const
{ in widestr, we have the following definition
type
tcompilerwidechar = word;
thus widecharsize seems to always be 2 bytes }
widecharsize : longint = 2;
cpu : tsystemcpu = cpu_no;
{ This type is defined in scanner.pas unit }
type
tspecialgenerictoken = (
ST_LOADSETTINGS,
ST_LINE,
ST_COLUMN,
ST_FILEINDEX,
ST_LOADMESSAGES,
ST_INVALID);
type
tcpu_i386 = (
cpu_variant_i386_none,
cpu_variant_386,
cpu_variant_486,
cpu_variant_Pentium,
cpu_variant_Pentium2,
cpu_variant_Pentium3,
cpu_variant_Pentium4,
cpu_variant_PentiumM,
cpu_variant_core_i,
cpu_variant_core_avx,
cpu_variant_core_avx2);
tcpu_m68k = (
cpu_variant_m68k_none,
cpu_variant_MC68000,
cpu_variant_MC68020,
cpu_variant_MC68040,
cpu_variant_MC68060,
cpu_variant_isa_a,
cpu_variant_isa_a_p,
cpu_variant_isa_b,
cpu_variant_isa_c,
cpu_variant_cfv4e
);
tcpu_powerpc = (
cpu_variant_powerpc_none,
cpu_variant_ppc604,
cpu_variant_ppc750,
cpu_variant_ppc7400,
cpu_variant_ppc970
);
tcpu_sparc = (
cpu_variant_sparc_none,
cpu_variant_SPARC_V7,
cpu_variant_SPARC_V8,
cpu_variant_SPARC_V9
);
tcpu_x86_64 = (
cpu_variant_x86_64_none,
cpu_variant_athlon64,
cpu_variant_x86_64_core_i,
cpu_variant_x86_64_core_avx,
cpu_variant_x86_64_core_avx2
);
tcpu_mipseb = (
cpu_variant_mipseb_none,
cpu_variant_mips1,
cpu_variant_mips2,
cpu_variant_mips3,
cpu_variant_mips4,
cpu_variant_mips5,
cpu_variant_mips32,
cpu_variant_mips32r2,
cpu_variant_pic32mx
);
tcpu_arm = (
cpu_variant_arm_none,
cpu_variant_armv3,
cpu_variant_armv4,
cpu_variant_armv4t,
cpu_variant_armv5,
cpu_variant_armv5t,
cpu_variant_armv5te,
cpu_variant_armv5tej,
cpu_variant_armv6,
cpu_variant_armv6k,
cpu_variant_armv6t2,
cpu_variant_armv6z,
cpu_variant_armv6m,
cpu_variant_armv7,
cpu_variant_armv7a,
cpu_variant_armv7r,
cpu_variant_armv7m,
cpu_variant_armv7em
);
tcpu_powerpc64 = (
cpu_variant_powerpc64_none,
cpu_variant_powerpc64_ppc970
);
tcpu_avr = (
cpu_variant_avr_none,
cpu_variant_avr1,
cpu_variant_avr2,
cpu_variant_avr25,
cpu_variant_avr3,
cpu_variant_avr31,
cpu_variant_avr35,
cpu_variant_avr4,
cpu_variant_avr5,
cpu_variant_avr51,
cpu_variant_avr6
);
tcpu_mipsel = tcpu_mipseb;
tcpu_jvm = (
cpu_variant_jvm_none,
{ jvm, same as cpu_none }
cpu_variant_jvm,
{ jvm byte code to be translated into Dalvik bytecode: more type-
sensitive }
cpu_variant_dalvik
);
tcpu_i8086 = (
cpu_variant_i8086_none,
cpu_variant_8086,
cpu_variant_186,
cpu_variant_286,
cpu_variant_i8086_386,
cpu_variant_i8086_486,
cpu_variant_i8086_Pentium,
cpu_variant_i8086_Pentium2,
cpu_variant_i8086_Pentium3,
cpu_variant_i8086_Pentium4,
cpu_variant_i8086_PentiumM
);
tcpu_aarch64 = (
cpu_variant_aarch64_none,
cpu_variant_armv8
);
tcpu_wasm = (
cpu_variant_wasm_none);
tcpu_sparc64 = (
cpu_variant_sparc64_none,
cpu_variant_SPARC64_V9
);
tcpu_type = record
case tsystemcpu of
cpu_no: { 0 }
();
cpu_i386: { 1 }
(cpu_i386 : tcpu_i386;);
cpu_m68k: { 2 }
(cpu_m68k : tcpu_m68k;);
obsolete_cpu_alpha: { 3 }
();
cpu_powerpc: { 4 }
(cpu_powerpc : tcpu_powerpc;);
cpu_sparc: { 5 }
(cpu_sparc : tcpu_sparc;);
obsolete_cpu_vm: { 6 }
();
obsolete_cpu_ia64: { 7 }
();
cpu_x86_64: { 8 }
(cpu_x86_64 : tcpu_x86_64;);
cpu_mipseb: { 9 }
(cpu_mipseb : tcpu_mipseb;);
cpu_arm: { 10 }
(cpu_arm : tcpu_arm;);
cpu_powerpc64: { 11 }
(cpu_powerpc64 : tcpu_powerpc64;);
cpu_avr: { 12 }
(cpu_avr : tcpu_avr;);
cpu_mipsel: { 13 }
(cpu_mipsel : tcpu_mipsel;);
cpu_jvm: { 14 }
(cpu_jvm : tcpu_jvm;);
cpu_i8086: { 15 }
(cpu_i8086 : tcpu_i8086;);
cpu_aarch64: { 16 }
(cpu_aarch64 : tcpu_aarch64;);
cpu_wasm: { 17 }
(cpu_wasm : tcpu_wasm;);
cpu_sparc64: { 18 }
(cpu_sparc64 : tcpu_sparc64;);
end;
TPpuModuleDef = class(TPpuUnitDef)
// ModuleFlags: tmoduleflags; { not yet merged }
end;
type
tppudumpfile = class(tppufile)
protected
procedure RaiseAssertion(Code: Longint); override;
end;
var
ppufile : tppudumpfile;
ppuversion : dword;
space : string;
verbose : longint;
derefdata : pbyte;
derefdatalen : longint;
pout: TPpuOutput;
nostdout: boolean;
UnitList: TPpuContainerDef;
CurUnit: TPpuUnitDef;
SkipVersionCheck: boolean;
var
{ needed during tobjectdef parsing... }
current_defoptions : tdefoptions;
current_objectoptions : tobjectoptions;
current_symtable_options : tsymtableoptions;
{****************************************************************************
Helper Routines
****************************************************************************}
{****************************************************************************
Routine to read 80-bit reals
****************************************************************************
}
{$PUSH}
{$WARN 6018 OFF} { Turn off unreachable code warning }
{ On platforms with sizeof(ext) <> 10 the code below will cause an unreachable
code warning, which will cause compilation failures with -Sew (KB) }
type
TSplit80bitReal = packed record
case byte of
0: (bytes: Array[0..9] of byte);
1: (words: Array[0..4] of word);
{$ifdef FPC_LITTLE_ENDIAN}
2: (cards: Array[0..1] of cardinal; w: word);
{$else not FPC_LITTLE_ENDIAN}
2: (w:word; cards: Array[0..1] of cardinal);
{$endif not FPC_LITTLE_ENDIAN}
end;
const
maxDigits = 17;
function Real80bitToStr(var e : TSplit80bitReal;var ext : extended) : string;
var
Temp : string;
new : TSplit80bitReal;
fraczero, expmaximal, sign, outside_double : boolean;
exp : smallint;
d : double;
i : longint;
mantval : qword;
begin
if ppufile.change_endian then
begin
for i:=0 to 9 do
new.bytes[i]:=e.bytes[9-i];
e:=new;
end;
if sizeof(ext)=10 then
begin
ext:=pextended(@e)^;
str(ext,result);
exit;
end;
{ extended, format (MSB): 1 Sign bit, 15 bit exponent, 64 bit mantissa }
sign := (e.w and $8000) <> 0;
expMaximal := (e.w and $7fff) = 32767;
exp:=(e.w and $7fff) - 16383 - 63;
fraczero := (e.cards[0] = 0) and
((e.cards[1] and $7fffffff) = 0);
{$ifdef FPC_LITTLE_ENDIAN}
mantval := qword(e.cards[0]) or (qword(e.cards[1]) shl 32);
{$else not FPC_LITTLE_ENDIAN}
mantval := (qword(e.cards[0]) shl 32) or qword(e.cards[1]);
{$endif not FPC_LITTLE_ENDIAN}
if expMaximal then
if fraczero then
if sign then
temp := '-Inf'
else temp := '+Inf'
else temp := 'Nan'
else
begin
d:=double(mantval);
if sign then
d:=-d;
outside_double:=false;
Try
if exp > 0 then
begin
for i:=1 to exp do
d:=d *2.0;
end
else if exp < 0 then
begin
for i:=1 to -exp do
d:=d /2.0;
end;
Except
outside_double:=true;
end;
if (mantval<>0) and (d=0.0) then
outside_double:=true;
if outside_double then
begin
Temp:='Extended value outside double bound';
ext:=0.0;
end
else
begin
ext:=d;
system.str(d,temp);
end;
end;
result:=temp;
end;
{$POP}
const has_errors : boolean = false;
has_warnings : boolean = false;
has_more_infos : boolean = false;
procedure SetHasErrors;
begin
has_errors:=true;
end;
Procedure WriteError(const S : string);
Begin
system.Writeln(StdErr, S);
SetHasErrors;
End;
procedure StrAppend(var st : string; const st2 : string);
begin
st:=st+st2;
end;
procedure tppudumpfile.RaiseAssertion(Code: Longint);
begin
WriteError('Internal Error ' + ToStr(Code));
inherited RaiseAssertion(Code);
end;
Procedure WriteWarning(const S : string);
var
ss: string;
Begin
ss:='!! Warning: ' + S;
if nostdout then
system.Writeln(StdErr, ss)
else
system.Writeln(ss);
has_warnings:=true;
End;
procedure Write(const s: string);
begin
if nostdout then exit;
system.write(s);
end;
procedure Write(const params: array of const);
var
i: integer;
{ Last vtType define in rtl/inc/objpash.inc }
const
max_vttype = vtUnicodeString;
begin
if nostdout then exit;
for i:=Low(params) to High(params) do
{ All vtType in
vtInteger = 0;
vtBoolean = 1;
vtChar = 2;
vtExtended = 3;
vtString = 4;
vtPointer = 5;
vtPChar = 6;
vtObject = 7;
vtClass = 8;
vtWideChar = 9;
vtPWideChar = 10;
vtAnsiString32 = 11; called vtAnsiString in objpas unit
vtCurrency = 12;
vtVariant = 13;
vtInterface = 14;
vtWideString = 15;
vtInt64 = 16;
vtQWord = 17;
vtUnicodeString = 18;
// vtAnsiString16 = 19; not yet used
// vtAnsiString64 = 20; not yet used
}
with TVarRec(params[i]) do
case VType of
vtInteger: system.write(VInteger);
vtBoolean: system.write(VBoolean);
vtChar: system.write(VChar);
vtExtended: system.write(VExtended^);
vtString: system.write(VString^);
vtPointer:
begin
{ Not sure the display will be correct
if sizeof pointer is not native }
WriteWarning('Pointer constant');
end;
vtPChar: system.write(VPChar);
vtObject:
begin
{ Not sure the display will be correct
if sizeof pointer is not native }
WriteWarning('Object constant');
end;
vtClass:
begin
{ Not sure the display will be correct
if sizeof pointer is not native }
WriteWarning('Class constant');
end;
vtWideChar: system.write(VWideChar);
vtPWideChar:
begin
WriteWarning('PWideChar constant');
end;
vtAnsiString: system.write(ansistring(VAnsiString));
vtCurrency : system.write(VCurrency^);
vtVariant :
begin
{ Not sure the display will be correct
if sizeof pointer is not native }
WriteWarning('Variant constant');
end;
vtInterface :
begin
{ Not sure the display will be correct
if sizeof pointer is not native }
WriteWarning('Interface constant');
end;
vtWideString : system.write(widestring(VWideString));
vtInt64: system.write(VInt64^);
vtQWord: system.write(VQWord^);
vtUnicodeString : system.write(unicodestring(VUnicodeString));
else
begin
system.writeln;
system.writeln('Unsupported var type: ', VType);
Halt(10);
end;
end;
end;
procedure Writeln(const s: string = '');
begin
if nostdout then exit;
system.writeln(s);
end;
procedure Writeln(const params: array of const);
begin
if nostdout then exit;
Write(params);
system.writeln;
end;
Procedure HasMoreInfos;
begin
Writeln('!! Entry has more information stored');
has_more_infos:=true;
end;
function Unknown(const st : string; val :longint) : string;
Begin
Unknown:='<!! Unknown'+st+' value '+tostr(val)+'>';
SetHasErrors;
end;
function ToStr(w:longint):String;
begin
Str(w,ToStr);
end;
Function Target2Str(w:longint):string;
begin
if w<=ord(high(tsystem)) then
Target2Str:=Targets[tsystem(w)]
else
Target2Str:=Unknown('target',w);
end;
Function Cpu2Str(w:longint):string;
begin
if w<=ord(high(tsystemcpu)) then
begin
cpu:=tsystemcpu(w);
Cpu2Str:=CpuTxt[cpu];
end
else
Cpu2Str:=Unknown('cpu',w);
end;
Function Varspez2Str(w:longint):string;
const
{ in symconst unit
tvarspez = (vs_value,vs_const,vs_var,vs_out,vs_constref); }
varspezstr : array[tvarspez] of string[8]=('Value','Const','Var','Out','ConstRef','Final');
begin
if w<=ord(high(varspezstr)) then
Varspez2Str:=varspezstr[tvarspez(w)]
else
Varspez2Str:=Unknown('varspez',w);
end;
Function VarRegable2Str(w:longint):string;
{ tvarregable type is defined in symconst unit }
const
varregableStr : array[tvarregable] of string[6]=('None','IntReg','FPUReg','MMReg','Addr');
begin
if w<=ord(high(varregablestr)) then
Varregable2Str:=varregablestr[tvarregable(w)]
else
Varregable2Str:=Unknown('regable',w);
end;
Function Visibility2Str(w:longint):string;
const
{ tvisibility type is defined in symconst unit }
visibilityName : array[tvisibility] of string[16] = (
'hidden','strict private','private','strict protected','protected',
'public','published','<none>'
);
begin
if w<=ord(high(visibilityName)) then
result:=visibilityName[tvisibility(w)]
else
result:=Unknown('visibility',w);
end;
Function IntfEntryType2Str(w:longint):string;
const
{ tinterfaceentrytype type is defined in symconst unit }
Name : array[tinterfaceentrytype] of string = (
'standard','virtual method result','static method result','field value','virtual method class',
'static method class','field value class'
);
begin
if w<=ord(high(Name)) then
result:=Name[tinterfaceentrytype(w)]
else
result:=Unknown('entry type',w);
end;
function PPUFlags2Str(flags:dword):string;
type
tflagopt=record
mask : dword;
str : string[30];
end;
const
flagopts=32;
flagopt : array[1..flagopts] of tflagopt=(
(mask: $1 ;str:'init'),
(mask: $2 ;str:'final'),
(mask: $4 ;str:'big_endian'),
(mask: $8 ;str:'dbx'),
// (mask: $10 ;str:'browser'),
(mask: $20 ;str:'in_library'),
(mask: $40 ;str:'smart_linked'),
(mask: $80 ;str:'static_linked'),
(mask: $100 ;str:'shared_linked'),
(mask: $200 ;str:'uses_checkpointer'),
(mask: $400 ;str:'no_link'),
(mask: $800 ;str:'has_resources'),
(mask: $1000 ;str:'little_endian'),
(mask: $2000 ;str:'release'),
(mask: $4000 ;str:'local_threadvars'),
(mask: $8000 ;str:'fpu_emulation_on'),
(mask: $210000 ;str:'has_debug_info'),
(mask: $10000 ;str:'stabs_debug_info'),
(mask: $200000 ;str:'dwarf_debug_info'),
(mask: $20000 ;str:'local_symtable'),
(mask: $40000 ;str:'uses_variants'),
(mask: $80000 ;str:'has_resourcefiles'),
(mask: $100000 ;str:'has_exports'),
(mask: $400000 ;str:'has_wideinits'),
(mask: $800000 ;str:'has_classinits'),
(mask: $1000000 ;str:'has_resstrinits'),
(mask: $2000000 ;str:'i8086_far_code'),
(mask: $4000000 ;str:'i8086_far_data'),
(mask: $8000000 ;str:'i8086_huge_data'),
(mask: $10000000;str:'i8086_cs_equals_ds'),
(mask: $20000000;str:'package_deny'),
(mask: $40000000;str:'package_weak'),
(mask: dword($80000000);str:'i8086_ss_equals_ds')
);
var
i : longint;
ntflags : dword;
first : boolean;
s : string;
begin
s:='';
ntflags:=flags;
if flags<>0 then
begin
first:=true;
for i:=1to flagopts do
if (flags and flagopt[i].mask)<>0 then
begin
if first then
first:=false
else
s:=s+', ';
s:=s+flagopt[i].str;
ntflags:=ntflags and (not flagopt[i].mask);
end;
end
else
s:='none';
if ntflags<>0 then
begin
s:=s+' unknown '+hexstr(ntflags,8);
SetHasErrors;
end;
PPUFlags2Str:=s;
end;
Function L0(l:longint):string;
{
return the string of value l, if l<10 then insert a zero, so
the string is always at least 2 chars '01','02',etc
}
var
s : string;
begin
Str(l,s);
if l<10 then
s:='0'+s;
L0:=s;
end;
function filetimestring( t : longint) : string;
{
convert dos datetime t to a string YY/MM/DD HH:MM:SS
}
var
DT : TDateTime;
hsec : word;
Year,Month,Day: Word;
hour,min,sec : word;
begin
if t=-1 then
begin
Result := 'Not Found';
SetHasErrors;
exit;
end;
DT := FileDateToDateTime(t);
DecodeTime(DT,hour,min,sec,hsec);
DecodeDate(DT,year,month,day);
Result := L0(Year)+'/'+L0(Month)+'/'+L0(Day)+' '+L0(Hour)+':'+L0(min)+':'+L0(sec);
end;
{****************************************************************************
Read Routines
****************************************************************************}
function readmanagementoperatoroptions(const space : string;const name : string):tmanagementoperators;forward;
procedure readrecsymtableoptions;
var
usefieldalignment : shortint;
begin
if ppufile.readentry<>ibrecsymtableoptions then
begin
SetHasErrors;
exit;
end;
writeln([space,' recordalignment: ',shortint(ppufile.getbyte)]);
usefieldalignment:=shortint(ppufile.getbyte);
writeln([space,' usefieldalignment: ',usefieldalignment]);
writeln([space,' recordalignmin: ',shortint(ppufile.getbyte)]);
if (usefieldalignment=C_alignment) then
writeln([space,' fieldalignment: ',shortint(ppufile.getbyte)]);
readmanagementoperatoroptions(space,'Fields have MOPs');
end;
function readsymtableoptions(const s: string) : tsymtableoptions;
type
tsymtblopt=record
mask : tsymtableoption;
str : string[30];
end;
const
symtblopts=ord(high(tsymtableoption)) + 1;
symtblopt : array[1..symtblopts] of tsymtblopt=(
(mask:sto_has_helper; str:'Has helper'),
(mask:sto_has_generic; str:'Has generic'),
(mask:sto_has_operator; str:'Has operator'),
(mask:sto_needs_init_final;str:'Needs init final table'),
(mask:sto_has_non_trivial_init;str:'Has non trivial init')
);
var
options : tsymtableoptions;
first : boolean;
i : integer;
begin
if ppufile.readentry<>ibsymtableoptions then
begin
SetHasErrors;
exit;
end;
ppufile.getsmallset(options);
if space<>'' then
writeln([space,'------ ',s,' ------']);
write([space,'Symtable options: ']);
if options<>[] then
begin
first:=true;
for i:=1 to symtblopts do
if (symtblopt[i].mask in options) then
begin
if first then
first:=false
else
write(', ');
write(symtblopt[i].str);
end;
end
else
write('none');
writeln;
readsymtableoptions:=options;
end;
procedure readdefinitions(const s:string; ParentDef: TPpuContainerDef); forward;
procedure readsymbols(const s:string; ParentDef: TPpuContainerDef = nil); forward;
procedure readsymtable(const s: string; ParentDef: TPpuContainerDef = nil);
var
stored_symtable_options : tsymtableoptions;
begin
stored_symtable_options:=current_symtable_options;
current_symtable_options:=readsymtableoptions(s);
readdefinitions(s, ParentDef);
readsymbols(s, ParentDef);
current_symtable_options:=stored_symtable_options;
end;
procedure readrecordsymtable(const s: string; ParentDef: TPpuContainerDef = nil);
begin
readrecsymtableoptions;
readsymtable(s, ParentDef);
end;
Procedure ReadLinkContainer(const prefix:string);
{
Read a serie of strings and write to the screen starting every line
with prefix
}
function maskstr(m:longint):string;
{ link options are in globtype unit
const
link_none = $0;
link_always = $1;
link_static = $2;
link_smart = $4;
link_shared = $8; }
var
s : string;
begin
s:='';
if (m and link_always)<>0 then
s:=s+'always ';
if (m and link_static)<>0 then
s:=s+'static ';
if (m and link_smart)<>0 then
s:=s+'smart ';
if (m and link_shared)<>0 then
s:=s+'shared ';
maskstr:=s;
end;
var
s : string;
m : longint;
begin
while not ppufile.endofentry do
begin
s:=ppufile.getstring;
m:=ppufile.getlongint;
WriteLn([prefix,s,' (',maskstr(m),')']);
end;
end;
Procedure ReadContainer(const prefix:string);
{
Read a series of strings and write to the screen starting every line
with prefix
}
begin
while not ppufile.endofentry do
WriteLn([prefix,ppufile.getstring]);
end;
procedure ReadLoadUnit;
var
ucrc,uintfcrc, indcrc : cardinal;
un: TPpuUnitDef;
begin
while not ppufile.EndOfEntry do
begin
un:=TPpuUnitDef.Create(CurUnit.UsedUnits);
un.Name:=ppufile.getstring;
write(['Uses unit: ',un.Name]);
ucrc:=cardinal(ppufile.getlongint);
uintfcrc:=cardinal(ppufile.getlongint);
indcrc:=cardinal(ppufile.getlongint);
writeln([' (Crc: ',hexstr(ucrc,8),', IntfcCrc: ',hexstr(uintfcrc,8),', IndCrc: ',hexstr(indcrc,8),')']);
un.Crc:=ucrc;
un.IntfCrc:=uintfcrc;
end;
end;
Procedure ReadDerefmap;
var
i,mapsize : longint;
s: string;
begin
mapsize:=ppufile.getlongint;
writeln(['DerefMapsize: ',mapsize]);
SetLength(CurUnit.RefUnits, mapsize);
for i:=0 to mapsize-1 do
begin
s:=ppufile.getstring;
writeln(['DerefMap[',i,'] = ',s]);
CurUnit.RefUnits[i]:=LowerCase(s);
end;
end;
Procedure ReadImportSymbols;
var
extlibname : string;
j,
extsymcnt : longint;
extsymname : string;
extsymmangledname : string;
extsymordnr : longint;
extsymisvar : boolean;
begin
while not ppufile.endofentry do
begin
extlibname:=ppufile.getstring;
extsymcnt:=ppufile.getlongint;
writeln(['External Library: ',extlibname,' (',extsymcnt,' imports)']);
for j:=0 to extsymcnt-1 do
begin
extsymname:=ppufile.getstring;
if ppuversion>130 then
extsymmangledname:=ppufile.getstring
else
extsymmangledname:=extsymname;
extsymordnr:=ppufile.getlongint;
extsymisvar:=ppufile.getbyte<>0;
writeln([' ',extsymname,' as ',extsymmangledname,
'(OrdNr: ',extsymordnr,' IsVar: ',extsymisvar,')']);
end;
end;
end;
Procedure ReadDerefdata;
begin
derefdatalen:=ppufile.entrysize;
if derefdatalen=0 then
begin
Writeln(['No Derefdata length=0']);
derefdata:=nil;
exit;
end;
Writeln(['Derefdata length: ',derefdatalen]);
derefdata:=allocmem(derefdatalen);
ppufile.getdata(derefdata^,derefdatalen);
end;
Procedure FreeDerefdata;
begin
if assigned(derefdata) then
begin
FreeMem(derefdata);
derefdata:=nil;
derefdatalen:=0;
end;
end;
Procedure ReadWpoFileInfo;
begin
Writeln(['Compiled with input whole-program optimisation from ',ppufile.getstring,' ',filetimestring(ppufile.getlongint)]);
end;
Procedure ReadAsmSymbols;
const
unitasmlisttype: array[tunitasmlisttype] of string[6]=(
'PUBLIC',
'EXTERN'
);
type
{ Copied from aasmbase.pas }
TAsmsymbind=(
AB_NONE,AB_EXTERNAL,AB_COMMON,AB_LOCAL,AB_GLOBAL,AB_WEAK_EXTERNAL,
{ global in the current program/library, but not visible outside it }
AB_PRIVATE_EXTERN,AB_LAZY,AB_IMPORT,
{ a symbol that's internal to the compiler and used as a temp }
AB_TEMP,
{ a global symbol that points to another global symbol and is only used
to allow indirect loading in case of packages and indirect imports }
AB_INDIRECT,AB_EXTERNAL_INDIRECT);
TAsmsymtype=(
AT_NONE,AT_FUNCTION,AT_DATA,AT_SECTION,AT_LABEL,
{
the address of this code label is taken somewhere in the code
so it must be taken care of it when creating pic
}
AT_ADDR,
{ Label for debug or other non-program information }
AT_METADATA,
{ label for data that must always be accessed indirectly, because it
is handled explcitely in the system unit or (e.g. RTTI and threadvar
tables) -- never seen in an assembler/assembler writer, always
changed to AT_DATA }
AT_DATA_FORCEINDIRECT,
{ don't generate an implicit indirect symbol as that might be provided
by other means (e.g. the typed const builder) to ensure a correct
section name }
AT_DATA_NOINDIRECT,
{ Thread-local symbol (ELF targets) }
AT_TLS,
{ GNU indirect function (ELF targets) }
AT_GNU_IFUNC
);
var
s,
bindstr,
typestr : string;
i : longint;
t: tunitasmlisttype;
begin
writeln([space,'Assembler Symbols']);
writeln([space,'-----------------']);
t:=tunitasmlisttype(ppufile.getbyte);
if (t>=Low(tunitasmlisttype)) and (t<=High(tunitasmlisttype)) then
typestr:=unitasmlisttype[t]
else
typestr:='UNKNOWN';
writeln([space,'Type: ',typestr]);
writeln([space,'Count: ',ppufile.getlongint]);
i:=0;
while (not ppufile.endofentry) and (not ppufile.error) do
begin
s:=ppufile.getstring;
case tasmsymbind(ppufile.getbyte) of
AB_EXTERNAL :
bindstr:='External';
AB_COMMON :
bindstr:='Common';
AB_LOCAL :
bindstr:='Local';
AB_GLOBAL :
bindstr:='Global';
AB_WEAK_EXTERNAL :
bindstr:='Weak external';
AB_PRIVATE_EXTERN :
bindstr:='Private extern';
AB_LAZY :
bindstr:='Lazy';
AB_IMPORT :
bindstr:='Import';
AB_TEMP :
bindstr:='Temp';
AB_INDIRECT :
bindstr:='Indirect';
AB_EXTERNAL_INDIRECT :
bindstr:='Indirect external';
else
begin
bindstr:='<Error !!>';
SetHasErrors;
end;
end;
case tasmsymtype(ppufile.getbyte) of
AT_FUNCTION :
typestr:='Function';
AT_DATA :
typestr:='Data';
AT_SECTION :
typestr:='Section';
AT_LABEL :
typestr:='Label';
AT_ADDR :
typestr:='Label (with address taken)';
AT_METADATA :
typestr:='Metadata';
{ this shouldn't appear in a PPU }
AT_DATA_FORCEINDIRECT :
typestr:='Data (ForceIndirect)';
{ this shouldn't appear in a PPU }
AT_DATA_NOINDIRECT:
typestr:='Data (NoIndirect)';
AT_TLS :
typestr:='TLS';
AT_GNU_IFUNC :
typestr:='GNU IFUNC';
else
begin
typestr:='<Error !!>';
SetHasErrors;
end;
end;
Writeln([space,' ',i,' : ',s,' [',bindstr,',',typestr,']']);
inc(i);
end;
writeln([space]);
end;
function getexprint:Tconstexprint;
begin
getexprint.overflow:=false;
getexprint.signed:=ppufile.getboolean;
getexprint.svalue:=ppufile.getint64;
end;
Procedure ReadPosInfo(Def: TPpuDef = nil);
var
info : byte;
fileindex,line,column : longint;
begin
with ppufile do
begin
fileindex:=0;
line:=0;
column:=0;
{
info byte layout in bits:
0-1 - amount of bytes for fileindex
2-3 - amount of bytes for line
4-5 - amount of bytes for column
}
info:=getbyte;
case (info and $03) of
0 : fileindex:=getbyte;
1 : fileindex:=getword;
2 : fileindex:=(getbyte shl 16) or getword;
3 : fileindex:=getlongint;
end;
case ((info shr 2) and $03) of
0 : line:=getbyte;
1 : line:=getword;
2 : line:=(getbyte shl 16) or getword;
3 : line:=getlongint;
end;
case ((info shr 4) and $03) of
0 : column:=getbyte;
1 : column:=getword;
2 : column:=(getbyte shl 16) or getword;
3 : column:=getlongint;
end;
Writeln([fileindex,' (',line,',',column,')']);
if Def <> nil then
begin
Def.FilePos.FileIndex:=fileindex;
Def.FilePos.Line:=line;
Def.FilePos.Col:=column;
end;
end;
end;
procedure readderef(const derefspace: string; Ref: TPpuRef = nil);
var
b : tdereftype;
first : boolean;
idx : longint;
i,n : byte;
pdata : pbyte;
begin
if not assigned(derefdata) then
exit;
first:=true;
idx:=ppufile.getlongint;
if idx = -1 then
begin
writeln('Nil');
exit;
end;
if (idx>derefdatalen) then
begin
WriteError('!! Error: Deref idx '+IntToStr(idx)+' > '+IntToStr(derefdatalen));
exit;
end;
write([derefspace,'(',idx,') ']);
pdata:=@derefdata[idx];
i:=0;
n:=pdata[i];
inc(i);
if n<1 then
begin
WriteError('!! Error: Deref len < 1');
exit;
end;
while (i<=n) do
begin
if not first then
write(', ')
else
first:=false;
b:=tdereftype(pdata[i]);
inc(i);
case b of
deref_nil :
write('Nil');
deref_symid :
begin
idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
inc(i,4);
write(['SymId ',idx]);
if Ref <> nil then
Ref.Id:=idx;
end;
deref_defid :
begin
idx:=pdata[i] shl 24 or pdata[i+1] shl 16 or pdata[i+2] shl 8 or pdata[i+3];
inc(i,4);
write(['DefId ',idx]);
if Ref <> nil then
Ref.Id:=idx;
end;
deref_unit :
begin
idx:=pdata[i] shl 8 or pdata[i+1];
inc(i,2);
write(['Unit ',idx]);
if Ref <> nil then
Ref.UnitIndex:=idx;
end;
else
begin
WriteError('!! unsupported dereftyp: '+IntToStr(ord(b)));
break;
end;
end;
end;
writeln;
end;
Procedure ReadUnitImportSyms;
var
c,i : longint;
begin
writeln([space,'Imported Symbols']);
writeln([space,'----------------']);
c:=ppufile.getlongint;
for i:=0 to c-1 do
readderef(space);
writeln([space]);
end;
procedure readpropaccesslist(const s:string; Ref: TPpuRef = nil);
{ type tsltype is in symconst unit }
const
slstr : array[tsltype] of string[12] = (
'',
'load',
'call',
'subscript',
'vec',
'typeconv',
'absolutetype'
);
var
sl : tsltype;
begin
readderef('',Ref);
repeat
sl:=tsltype(ppufile.getbyte);
if sl=sl_none then
break;
write([s,'(',slstr[sl],') ']);
case sl of
sl_call,
sl_load,
sl_subscript :
if (Ref <> nil) and (Ref.IsNull) then
begin
readderef('',Ref);
Ref.IsSymId:=True;
end
else
readderef('');
sl_absolutetype,
sl_typeconv :
readderef('');
sl_vec :
begin
writeln([ppufile.getlongint]);
readderef('');
end;
end;
until false;
end;
(*
talignmentinfo = packed record
procalign,
loopalign,
jumpalign,
constalignmin,
constalignmax,
varalignmin,
varalignmax,
localalignmin,
localalignmax,
recordalignmin,
recordalignmax,
maxCrecordalign : longint;
end;
tsettings = packed record
alignment : talignmentinfo;
globalswitches : tglobalswitches;
moduleswitches : tmoduleswitches;
localswitches : tlocalswitches;
modeswitches : tmodeswitches;
optimizerswitches : toptimizerswitches;
{ generate information necessary to perform these wpo's during a subsequent compilation }
genwpoptimizerswitches: twpoptimizerswitches;
{ perform these wpo's using information generated during a previous compilation }
dowpoptimizerswitches: twpoptimizerswitches;
debugswitches : tdebugswitches;
{ 0: old behaviour for sets <=256 elements
>0: round to this size }
setalloc,
packenum : shortint;
packrecords : shortint;
maxfpuregisters : shortint;
cputype,
optimizecputype : tcputype;
fputype : tfputype;
asmmode : tasmmode;
interfacetype : tinterfacetypes;
defproccall : tproccalloption;
sourcecodepage : tcodepagestring;
minfpconstprec : tfloattype;
disabledircache : boolean;
{ CPU targets with microcontroller support can add a controller specific unit }
controllertype : tcontrollertype;
{ WARNING: this pointer cannot be written as such in record token }
pmessage : pmessagestaterecord;
end;
*)
procedure readprocinfooptions(space : string);
(*
tprocinfoflag=(
{ procedure has at least one assembler block }
pi_has_assembler_block,
{ procedure does a call }
pi_do_call,
{ procedure has a try statement = no register optimization }
pi_uses_exceptions,
{ procedure is declared as @var(assembler), don't optimize}
pi_is_assembler,
{ procedure contains data which needs to be finalized }
pi_needs_implicit_finally,
{ procedure has the implicit try..finally generated }
pi_has_implicit_finally,
{ procedure uses fpu}
pi_uses_fpu,
{ procedure uses GOT for PIC code }
pi_needs_got,
{ references var/proc/type/const in static symtable,
i.e. not allowed for inlining from other units }
pi_uses_static_symtable,
{ set if the procedure has to push parameters onto the stack }
pi_has_stackparameter,
{ set if the procedure has at least one label }
pi_has_label,
{ calls itself recursive }
pi_is_recursive,
{ stack frame optimization not possible (only on x86 probably) }
pi_needs_stackframe,
{ set if the procedure has at least one register saved on the stack }
pi_has_saved_regs,
{ dfa was generated for this proc }
pi_dfaavailable,
{ subroutine contains interprocedural used labels }
pi_has_interproclabel,
{ subroutine contains interprocedural gotos }
pi_has_global_goto
); *)
type
tprocinfoopt=record
mask : tprocinfoflag;
str : string[81];
end;
const
procinfoopts=ord(high(tprocinfoflag)) - ord(low(tprocinfoflag));
procinfoopt : array[0..procinfoopts] of tprocinfoopt=(
(mask:pi_has_assembler_block;
str:' has at least one assembler block'),
(mask:pi_do_call;
str:' does a call'),
(mask:pi_uses_exceptions;
str:' has a try statement = no register optimization '),
(mask:pi_is_assembler;
str:' is declared as @var(assembler), don''t optimize'),
(mask:pi_needs_implicit_finally;
str:' contains data which needs to be finalized '),
(mask:pi_has_implicit_finally;
str:' has the implicit try..finally generated '),
(mask:pi_uses_fpu;
str:' uses fpu'),
(mask:pi_needs_got;
str:' uses GOT for PIC code '),
(mask:pi_uses_static_symtable;
str:' references var/proc/type/const in static symtable'),
(mask:pi_has_stackparameter;
str:' set if the procedure has to push parameters onto the stack '),
(mask:pi_has_label;
str:' set if the procedure has at least one label '),
(mask:pi_is_recursive;
str:' calls itself recursive '),
(mask:pi_needs_stackframe;
str:' stack frame optimization not possible (only on x86 probably) '),
(mask:pi_has_saved_regs;
str:' set if the procedure has at least one register saved on the stack '),
(mask:pi_dfaavailable;
str:' dfa was generated for this proc '),
(mask:pi_has_interproclabel;
str:' subroutine contains interprocedural used labels '),
(mask:pi_has_unwind_info;
str:' unwinding info was generated for this proc '),
(mask:pi_has_global_goto;
str:' subroutine contains interprocedural goto '),
(mask:pi_has_inherited;
str:' subroutine contains inherited call '),
(mask:pi_has_nested_exit;
str:' subroutine contains a nested subroutine which calls the exit of the current one '),
(mask:pi_has_stack_allocs;
str:' allocates memory on stack, so stack may be unbalanced on exit '),
(mask:pi_estimatestacksize;
str:' stack size is estimated before subroutine is compiled '),
(mask:pi_calls_c_varargs;
str:' calls function with C-style varargs '),
(mask:pi_has_open_array_parameter;
str:' has open array parameter ')
);
var
procinfooptions : tprocinfoflags;
i : longint;
first : boolean;
begin
ppufile.getsmallset(procinfooptions);
if procinfooptions<>[] then
begin
first:=true;
for i:=0 to procinfoopts do
if (procinfoopt[i].mask in procinfooptions) then
begin
if first then
first:=false
else
write(', ');
write(procinfoopt[i].str);
end;
end;
writeln;
end;
procedure readsymoptions(space : string; Def: TPpuDef = nil);
type
tsymopt=record
mask : tsymoption;
str : string[30];
end;
const
symopts=ord(high(tsymoption)) - ord(low(tsymoption));
{ sp_none = 0 corresponds to nothing }
symopt : array[1..symopts] of tsymopt=(
(mask:sp_static; str:'Static'),
(mask:sp_hint_deprecated; str:'Hint Deprecated'),
(mask:sp_hint_platform; str:'Hint Platform'),
(mask:sp_hint_library; str:'Hint Library'),
(mask:sp_hint_unimplemented; str:'Hint Unimplemented'),
(mask:sp_hint_experimental; str:'Hint Experimental'),
(mask:sp_has_overloaded; str:'Has overloaded'),
(mask:sp_internal; str:'Internal'),
(mask:sp_implicitrename; str:'Implicit Rename'),
(mask:sp_generic_para; str:'Generic Parameter'),
(mask:sp_has_deprecated_msg; str:'Has Deprecated Message'),
(mask:sp_generic_dummy; str:'Generic Dummy'),
(mask:sp_explicitrename; str:'Explicit Rename')
);
var
symoptions : tsymoptions;
i : longint;
first : boolean;
begin
ppufile.getsmallset(symoptions);
if symoptions<>[] then
begin
if Def <> nil then
if sp_internal in symoptions then
Def.Visibility:=dvHidden;
first:=true;
for i:=1to symopts do
if (symopt[i].mask in symoptions) then
begin
if first then
first:=false
else
write(', ');
write(symopt[i].str);
end;
end;
writeln;
if sp_has_deprecated_msg in symoptions then
writeln([space,'Deprecated : ', ppufile.getstring]);
end;
procedure readvisibility(Def: TPpuDef = nil);
var
i: byte;
begin
i:=ppufile.getbyte;
if Def <> nil then
case tvisibility(i) of
vis_public: Def.Visibility:=dvPublic;
vis_published: Def.Visibility:=dvPublished;
vis_protected, vis_strictprotected: Def.Visibility:=dvProtected;
else Def.Visibility:=dvPrivate;
end;
writeln(Visibility2Str(i));
end;
procedure readcommonsym(const s:string; Def: TPpuDef = nil);
var
i: integer;
n: string;
begin
n:=ppufile.getstring;
if Def <> nil then
Def.Name:=n;
i:=ppufile.getlongint;
if Def <> nil then
Def.SetSymId(i);
writeln([space,'** Symbol Id ',i,' **']);
writeln([space,s,n]);
write ([space,' File Pos : ']);
readposinfo(Def);
write ([space,' Visibility : ']);
readvisibility(Def);
write ([space,' SymOptions : ']);
readsymoptions(space+' ',Def);
end;
procedure readcgpara(const space:string);
{ this is originally in cgbase.pas }
type
TCGLoc=(LOC_INVALID, LOC_VOID, LOC_CONSTANT, LOC_JUMP, LOC_FLAGS,
LOC_REGISTER, LOC_CREGISTER, LOC_FPUREGISTER, LOC_CFPUREGISTER,
LOC_MMXREGISTER, LOC_CMMXREGISTER, LOC_MMREGISTER, LOC_CMMREGISTER,
LOC_SUBSETREG, LOC_CSUBSETREG, LOC_SUBSETREF, LOC_CSUBSETREF,
LOC_CREFERENCE, LOC_REFERENCE);
const
tcgloc2str : array[TCGLoc] of string[12] = (
'LOC_INVALID', 'LOC_VOID', 'LOC_CONST', 'LOC_JUMP', 'LOC_FLAGS',
'LOC_REG', 'LOC_CREG', 'LOC_FPUREG', 'LOC_CFPUREG',
'LOC_MMXREG', 'LOC_CMMXREG', 'LOC_MMREG', 'LOC_CMMREG',
'LOC_SSETREG', 'LOC_CSSETREG', 'LOC_SSETREF', 'LOC_CSSETREF',
'LOC_CREF', 'LOC_REF');
var
i: byte;
ii: longint;
np: byte;
loc: tcgloc;
begin
i:=ppufile.getbyte;
writeln([space,' Alignment : ',i]);
i:=ppufile.getbyte;
writeln([space,' Size : ',i]);
ii:=ppufile.getaint;
writeln([space,' IntSize : ',ii]);
readderef(space+' ');
np:=ppufile.getbyte;
writeln([space,' NumParaloc : ',np]);
while np > 0 do
begin
i:=ppufile.getbyte;
writeln([space,' Paraloc Size : ',i]);
loc:=tcgloc(ppufile.getbyte);
if loc > high(tcgloc) then
begin
WriteError('!! Location is out of range! '+IntToStr(ord(loc)));
loc:=LOC_INVALID;
end;
writeln([space,' Paraloc Loc : (',ord(loc),') ',tcgloc2str[loc]]);
case loc of
LOC_REFERENCE:
begin
writeln([space,' RegIndex : $',hexstr(ppufile.getdword,8)]);
writeln([space,' Offset : ',ppufile.getaint]);
end;
LOC_FPUREGISTER,
LOC_CFPUREGISTER,
LOC_MMREGISTER,
LOC_CMMREGISTER,
LOC_REGISTER,
LOC_CREGISTER :
begin
writeln([space,' ShiftVal : ',ppufile.getbyte]);
writeln([space,' Register : $',hexstr(ppufile.getdword,8)]);
end;
LOC_VOID:
begin end
else
WriteError('!! Invalid location error')
end;
dec(np);
end;
end;
procedure displaytokenbuffer(tokenbuf : pbyte;tokenbufsize : longint);
type
ptoken=^ttoken;
pmsgstate =^tmsgstate;
var
tbi : longint;
state : tmsgstate;
prev_settings, new_settings : Tsettings;
nb, msgvalue, mesgnb : longint;
function readtoken: ttoken;
var
b,b2 : byte;
begin
b:=tokenbuf[tbi];
inc(tbi);
if (b and $80)<>0 then
begin
b2:=tokenbuf[tbi];
inc(tbi);
result:=ttoken(((b and $7f) shl 8) or b2);
end
else
result:=ttoken(b);
end;
function gettokenbufdword : dword;
var
var32 : dword;
begin
var32:=unaligned(pdword(@tokenbuf[tbi])^);
inc(tbi,sizeof(dword));
if ppufile.change_endian then
var32:=swapendian(var32);
result:=var32;
end;
function gettokenbufword : word;
var
var16 : word;
begin
var16:=unaligned(pword(@tokenbuf[tbi])^);
inc(tbi,sizeof(word));
if ppufile.change_endian then
var16:=swapendian(var16);
result:=var16;
end;
function gettokenbuflongint : longint;
var
var32 : longint;
begin
var32:=unaligned(plongint(@tokenbuf[tbi])^);
inc(tbi,sizeof(longint));
if ppufile.change_endian then
var32:=swapendian(var32);
result:=var32;
end;
function gettokenbufshortint : shortint;
var
var8 : shortint;
begin
var8:=pshortint(@tokenbuf[tbi])^;
inc(tbi,sizeof(shortint));
result:=var8;
end;
procedure tokenreadset(var b;size : longint);
var
i : longint;
begin
move(tokenbuf[tbi],b,size);
inc(tbi,size);
if ppufile.change_endian then
for i:=0 to size-1 do
Pbyte(@b)[i]:=reverse_byte(Pbyte(@b)[i]);
end;
function gettokenbufbyte : byte;
begin
result:=pbyte(@tokenbuf[tbi])^;
inc(tbi);
end;
function tokenreadenum(size : longint) : longword;
begin
if size=1 then
result:=gettokenbufbyte
else if size=2 then
result:=gettokenbufword
else if size=4 then
result:=gettokenbufdword;
end;
function gettokenbufsizeint : int64;
var
var64 : int64;
var32 : longint;
var16 : smallint;
begin
if CpuAddrBitSize[cpu]=64 then
begin
var64:=unaligned(pint64(@tokenbuf[tbi])^);
inc(tbi,sizeof(int64));
if ppufile.change_endian then
var64:=swapendian(var64);
result:=var64;
end
else if CpuAddrBitSize[cpu]=32 then
begin
var32:=unaligned(plongint(@tokenbuf[tbi])^);
inc(tbi,sizeof(longint));
if ppufile.change_endian then
var32:=swapendian(var32);
result:=var32;
end
else if CpuAddrBitSize[cpu]=16 then
begin
{ ASizeInt is still a longint, see globtype.pas unit }
var32:=unaligned(plongint(@tokenbuf[tbi])^);
inc(tbi,sizeof(longint));
if ppufile.change_endian then
var32:=swapendian(var32);
result:=var32;
end
else
begin
WriteError('Wrong CpuAddrBitSize');
result:=0;
end;
end;
procedure tokenreadsettings(var asettings : tsettings; expected_size : asizeint);
{ This procedure
needs to be changed whenever
globals.tsettings type is changed,
the problem is that no error will appear
before tests with generics are tested. PM }
var
startpos, endpos : longword;
begin
{ WARNING all those fields need to be in the correct
order otherwise cross_endian PPU reading will fail }
startpos:=tbi;
with asettings do
begin
alignment.procalign:=gettokenbuflongint;
alignment.loopalign:=gettokenbuflongint;
alignment.jumpalign:=gettokenbuflongint;
alignment.constalignmin:=gettokenbuflongint;
alignment.constalignmax:=gettokenbuflongint;
alignment.varalignmin:=gettokenbuflongint;
alignment.varalignmax:=gettokenbuflongint;
alignment.localalignmin:=gettokenbuflongint;
alignment.localalignmax:=gettokenbuflongint;
alignment.recordalignmin:=gettokenbuflongint;
alignment.recordalignmax:=gettokenbuflongint;
alignment.maxCrecordalign:=gettokenbuflongint;
tokenreadset(globalswitches,sizeof(globalswitches));
tokenreadset(targetswitches,sizeof(targetswitches));
tokenreadset(moduleswitches,sizeof(moduleswitches));
tokenreadset(localswitches,sizeof(localswitches));
tokenreadset(modeswitches,sizeof(modeswitches));
tokenreadset(optimizerswitches,sizeof(optimizerswitches));
tokenreadset(genwpoptimizerswitches,sizeof(genwpoptimizerswitches));
tokenreadset(dowpoptimizerswitches,sizeof(dowpoptimizerswitches));
tokenreadset(debugswitches,sizeof(debugswitches));
{ 0: old behaviour for sets <=256 elements
>0: round to this size }
setalloc:=gettokenbufshortint;
packenum:=gettokenbufshortint;
packrecords:=gettokenbufshortint;
maxfpuregisters:=gettokenbufshortint;
cputype:=tcputype(tokenreadenum(sizeof(tcputype)));
optimizecputype:=tcputype(tokenreadenum(sizeof(tcputype)));
fputype:=tfputype(tokenreadenum(sizeof(tfputype)));
asmmode:=tasmmode(tokenreadenum(sizeof(tasmmode)));
interfacetype:=tinterfacetypes(tokenreadenum(sizeof(tinterfacetypes)));
defproccall:=tproccalloption(tokenreadenum(sizeof(tproccalloption)));
{ tstringencoding is word type,
thus this should be OK here }
sourcecodepage:=tstringEncoding(gettokenbufword);
minfpconstprec:=tfloattype(tokenreadenum(sizeof(tfloattype)));
disabledircache:=boolean(gettokenbufbyte);
{ TH: Since the field was conditional originally, it was not stored in PPUs. }
{ While adding ControllerSupport constant, I decided not to store ct_none }
{ on targets not supporting controllers, but this might be changed here and }
{ in tokenwritesettings in the future to unify the PPU structure and handling }
{ of this field in the compiler. }
{$PUSH}
{$WARN 6018 OFF} (* Unreachable code due to compile time evaluation *)
if CpuHasController[cpu] then
controllertype:=tcontrollertype(tokenreadenum(sizeof(tcontrollertype)))
else
ControllerType:=ct_none;
{$POP}
endpos:=tbi;
if endpos-startpos<>expected_size then
Writeln(['Wrong size of Settings read-in: ',expected_size,' expected, but got ',endpos-startpos]);
end;
end;
procedure dump_new_settings;
(* tsettings = record
alignment : talignmentinfo;
globalswitches : tglobalswitches;
targetswitches : ttargetswitches;
moduleswitches : tmoduleswitches;
localswitches : tlocalswitches;
modeswitches : tmodeswitches;
optimizerswitches : toptimizerswitches;
{ generate information necessary to perform these wpo's during a subsequent compilation }
genwpoptimizerswitches: twpoptimizerswitches;
{ perform these wpo's using information generated during a previous compilation }
dowpoptimizerswitches: twpoptimizerswitches;
debugswitches : tdebugswitches;
{ 0: old behaviour for sets <=256 elements
>0: round to this size }
setalloc,
packenum : shortint;
packrecords : shortint;
maxfpuregisters : shortint;
cputype,
optimizecputype,
asmcputype : tcputype;
fputype : tfputype;
asmmode : tasmmode;
interfacetype : tinterfacetypes;
defproccall : tproccalloption;
sourcecodepage : tstringencoding;
minfpconstprec : tfloattype;
disabledircache : boolean;
tlsmodel : ttlsmodel;
{$if defined(i8086)}
x86memorymodel : tx86memorymodel;
{$endif defined(i8086)}
{$if defined(ARM)}
instructionset : tinstructionset;
{$endif defined(ARM)}
{$if defined(LLVM) and not defined(GENERIC_CPU)}
llvmversion: tllvmversion;
{$endif defined(LLVM) and not defined(GENERIC_CPU)}
{ CPU targets with microcontroller support can add a controller specific unit }
controllertype : tcontrollertype;
{ WARNING: this pointer cannot be written as such in record token }
pmessage : pmessagestaterecord;
end; *)
const
targetswitchname : array[ttargetswitch] of string[30] =
{ global target-specific switches }
('Target None', {ts_none}
{ generate code that results in smaller TOCs than normal (AIX) }
'Small TOC', {ts_small_toc}
{ for the JVM target: generate integer array initializations via string
constants in order to reduce the generated code size (Java routines
are limited to 64kb of bytecode) }
'JVM compact int array init', {ts_compact_int_array_init}
{ for the JVM target: intialize enum fields in constructors with the
enum class instance corresponding to ordinal value 0 (not done by
default because this initialization can only be performed after the
inherited constructors have run, and if they call a virtual method
of the current class, then this virtual method may already have
initialized that field with another value and the constructor
initialization will result in data loss }
'JVM enum field init', {ts_jvm_enum_field_init}
{ when automatically generating getters/setters for properties, use
these strings as prefixes for the generated getters/setter names }
'Auto getter prefix', {ts_auto_getter_prefix}
'Auto setter prefix', {ts_auto_setter_predix}
'Thumb interworking', {ts_thumb_interworking,}
{ lowercase the first character of routine names, used to generate
names that are compliant with Java coding standards from code
written according to Delphi coding standards }
'LowerCase proc start', {ts_lowercase_proc_start,}
{ initialise local variables on the JVM target so you won't get
accidental uses of uninitialised values }
'Init locals', {ts_init_locals}
{ emit a CLD instruction before using the x86 string instructions }
'Emit CLD instruction', {ts_cld}
{ increment BP before pushing it in the function prologue and decrement
it after popping it in the function epilogue, iff the function is
going to terminate with a far ret. Thus, the BP value pushed on the
stack becomes odd if the function is far and even if the function is
near. This allows walking the BP chain on the stack and e.g.
obtaining a stack trace even if the program uses a mixture of near
and far calls. This is also required for Win16 real mode, because it
allows Windows to move code segments around (in order to defragment
memory) and then walk through the stacks of all running programs and
update the segment values of the segment that has moved. }
'Use odd BP for far procs' {ts_x86_far_procs_push_odd_bp}
);
moduleswitchname : array[tmoduleswitch] of string[40] =
('Module None', {cs_modulenone,}
{ parser }
'Floating Point Emulation',{ cs_fp_emulation}
'Extended syntax', {cs_extsyntax}
'Open string', {cs_openstring}
{ support }
'Goto allowed', {cs_support_goto}
'Macro support', {cs_support_macro}
'C operator support', {cs_support_c_operators}
{ generation }
'Profile', {cs_profile}
'Debug information', {cs_debuginfo}
'Compilation of System unit', {cs_compilesystem}
'Line information', {cs_lineinfo}
'Implicit exceptions', {cs_implicit_exceptions}
'Explicit CodePage', {cs_explicit_codepage}
'System CodePage', {cs_system_codepage}
{ linking }
'Create smart units', {cs_create_smart}
'Create dynamic', {cs_create_dynamic}
'Create PIC code', {cs_create_pic}
{ browser switches are back }
'Browser', {cs_browser}
'Local Browser', {cs_local_browser}
{ target specific }
'Executable Stack', {cs_executable_stack}
{ i8086 specific }
'Hude code', {cs_huge_code}
'Win16 smart callbacks', {cs_win16_smartcallbacks}
{ Record usage of checkpointer experimental feature }
'CheckPointer used' {cs_checkpointer_called}
);
globalswitchname : array[tglobalswitch] of string[50] =
('Global None',{cs_globalnone}
{ parameter switches }
'Check unit name', {cs_check_unit_name}
'Constructor name', {cs_constructor_name}
'Support exceptions',{cs_support_exceptions}
'Support Objective-C pas',{ cs_support_c_objectivepas}
'Transparent file names', {cs_transparent_file_names}
{ units }
'Load Objpas Unit', {cs_load_objpas_unit}
'Load GPC unit', {cs_load_gpc_unit}
'Load FPCKylix unit', {cs_load_fpcylix_unit}
'Support Vectors', {cs_support_vectors}
{ debuginfo }
'Use HeapTRc unit', {cs_use_heaptrc}
'Use line information', {cs_use_lineinfo}
'Use GDB Valgrind', {cs_gdb_valgrind}
'No regalloc', {cs_no_regalloc}
'Stabs preserve cases', {cs_stabs_preservecase}
{ assembling }
'Leave assembler file', {cs_asm_leave}
'Use external assembler', {cs_asm_extern}
'Use pipes to call assembler', {cs_asm_pipe}
'Add source infos into assembler files', {cs_asm_source}
'Add register allocation into assembler files', {cs_asm_regalloc}
'Add temporary allocation into assmebler files', {cs_asm_tempalloc}
'Add node information into assembler files', {cs_asm_nodes}
'Adapt assembler call to GNU version <= 2.25', {cs_asm_pre_binutils_2_25}
{ linking }
'Skip linking stage', {cs_link_nolink}
'Link static', {cs_link_static}
'Link smart', {cs_link_smart}
'Link shared', {cs_link_shared}
'Link deffile', {cs_link_deffile}
'Strip after linking', {cs_link_strip}
'Use linker static flag',{cs_link_staticflag}
'Link on target OS',{cs_link_on_target}
'Use external linker', {cs_link_extern}
'Link opt vtable', {cs_link_opt_vtable}
'Link opt used sections', {cs_link_opt_used_sections}
'Link debug to separate file',{cs_link_separate_dbg_file}
'Create linker map', {cs_link_map}
'Link to pthread', {cs_link_pthread}
'Link no default lib order', {cs_link_no_default_lib_order}
'Link using native linker', {cs_link_native}
'Link for GNU linker version <=2.19', {cs_link_pre_binutils_2_19}
'Link using vlink' {cs_link_vlink}
);
localswitchname : array[tlocalswitch] of string[50] =
{ Switches which can be changed locally }
('Local None', {cs_localnone}
{ codegen }
'Check overflow', {cs_check_overflow}
'Check range', {cs_check_range}
'Check object error', {cs_check_object}
'Check I/O error', {cs_check_io}
'Check stack', {cs_check_stack}
'Check pointer', {cs_checkpointer}
'Check ordinal size', {cs_check_ordinal_size}
'Generate stackframes', {cs_generate_stackframes}
'Do assertions', {cs_do_assertion}
'Generate RTTI', {cs_generate_rtti}
'Full boolean evaluaion', {cs_full_boolean_eval}
'Typed constant are writable', {cs_typed_const_writable}
'Allow calcuation on enum types', {cs_allow_enum_calc}
'Do inline', {cs_do_inline}
'Add FWAIT instruction for FPU 8087', {cs_fpu_fwait}
'IEEE errors', {cs_ieee_errors}
'Check low address loading', {cs_check_low_addr_load}
'Imported data', {cs_imported_data}
'Excess precision', {cs_excessprecision}
'Check fpu exceptions', {cs_check_fpu_exceptions}
// 'Check all case coverage', {cs_check_all_case_coverage} {not yet merged}
{ mmx }
'Allow MMX instructions', {cs_mmx}
'Use MMX saturation', {cs_mmx_saturation}
{ parser }
'Use typed addresses', {cs_typed_addresses}
'Use strict var strings', {cs_strict_var_strings}
'Use reference counted strings', {cs_refcountedstrings}
'Use bit-packing', {cs_bitpacking}
'Use var property setter', {cs_varpropsetter}
'Use scoped enums',{cs_scopedenums}
'Use pointer math', {cs_pointermath}
{ macpas specific}
'MACPAS exteranl variable', {cs_external_var}
'MACPAS externally visible', {cs_externally_visible}
{ jvm specific }
'JVM check var copyout', {cs_check_var_copyout}
'Zero based strings', {cs_zerobasedstrings}
{ i8086 specific }
'i8086 force FAR calls', {cs_force_far_calls}
'i8086 huge pointer arithmetic', {cs_hugeptr_arithmetic_normalization}
'i8086 huge pointer comparison' {cs_hugeptr_comparison_normalization}
);
{ Switches which can be changed by a mode (fpc,tp7,delphi) }
modeswitchname : array[tmodeswitch] of string[50] =
('m_none',
{ generic }
'm_fpc','m_objfpc','m_delphi','m_tp7','m_mac','m_iso','m_extpas',
{$ifdef gpc_mode}'m_gpc',{$endif}
{ more specific }
'm_class', { delphi class model }
'm_objpas', { load objpas unit }
'm_result', { result in functions }
'm_string_pchar', { pchar 2 string conversion }
'm_cvar_support', { cvar variable directive }
'm_nested_comment', { nested comments }
'm_tp_procvar', { tp style procvars (no @ needed) }
'm_mac_procvar', { macpas style procvars }
'm_repeat_forward', { repeating forward declarations is needed }
'm_pointer_2_procedure', { allows the assignement of pointers to
procedure variables }
'm_autoderef', { does auto dereferencing of struct. vars }
'm_initfinal', { initialization/finalization for units }
'm_default_ansistring', { ansistring turned on by default }
'm_out', { support the calling convention OUT }
'm_default_para', { support default parameters }
'm_hintdirective', { support hint directives }
'm_duplicate_names', { allow locals/paras to have duplicate names of globals }
'm_property', { allow properties }
'm_default_inline', { allow inline proc directive }
'm_except', { allow exception-related keywords }
'm_objectivec1', { support interfacing with Objective-C (1.0) }
'm_objectivec2', { support interfacing with Objective-C (2.0) }
'm_nested_procvars', { support nested procedural variables }
'm_non_local_goto', { support non local gotos (like iso pascal) }
'm_advanced_records', { advanced record syntax with visibility sections, methods and properties }
'm_isolike_unary_minus', { unary minus like in iso pascal: same precedence level as binary minus/plus }
'm_systemcodepage', { use system codepage as compiler codepage by default, emit ansistrings with system codepage }
'm_final_fields', { allows declaring fields as "final", which means they must be initialised
in the (class) constructor and are constant from then on (same as final
fields in Java) }
'm_default_unicodestring', { makes the default string type in $h+ mode unicodestring rather than
ansistring; similarly, char becomes unicodechar rather than ansichar }
'm_type_helpers', { allows the declaration of "type helper" for all supported types
(primitive types, records, classes, interfaces) }
'm_blocks', { support for http://en.wikipedia.org/wiki/Blocks_(C_language_extension) }
'm_isolike_io', { I/O as it required by an ISO compatible compiler }
'm_isolike_program_para',{ program parameters as it required by an ISO compatible compiler }
'm_isolike_mod', { mod operation as it is required by an iso compatible compiler }
'm_array_operators' { use Delphi compatible array operators instead of custom ones ("+") }
// 'm_multi_helpers', { helpers can appear in multiple scopes simultaneously } {not yet merged}
// 'm_array2dynarray', { regular arrays can be implicitly converted to dynamic arrays } {not yet merged}
// 'm_prefixed_attributes' { enable attributes that are defined before the type they belong to } {not yet merged}
);
{ optimizer }
optimizerswitchname : array[toptimizerswitch] of string[50] =
('cs_opt_none',
'cs_opt_level1',
'cs_opt_level2',
'cs_opt_level3',
'cs_opt_level4',
'cs_opt_regvar',
'cs_opt_uncertain',
'cs_opt_size',
'cs_opt_stackframe',
'cs_opt_peephole',
'cs_opt_loopunroll',
'cs_opt_tailrecursion',
'cs_opt_nodecse',
'cs_opt_nodedfa',
'cs_opt_loopstrength',
'cs_opt_scheduler',
'cs_opt_autoinline',
'cs_useebp',
'cs_userbp',
'cs_opt_reorder_fields',
'cs_opt_fastmath',
{ Allow removing expressions whose result is not used, even when this
can change program behaviour (range check errors disappear',
access violations due to invalid pointer derefences disappear, ...).
Note: it does not (and must not) remove expressions that have
explicit side-effects, only implicit side-effects (like the ones
mentioned before) can disappear.
}
'cs_opt_dead_values',
{ compiler checks for empty procedures/methods and removes calls to them if possible }
'cs_opt_remove_emtpy_proc',
'cs_opt_constant_propagate',
'cs_opt_dead_store_eliminate',
'cs_opt_forcenostackframe',
'cs_opt_use_load_modify_store'
);
var
globalswitch : tglobalswitch;
targetswitch : ttargetswitch;
moduleswitch : tmoduleswitch;
localswitch : tlocalswitch;
modeswitch : tmodeswitch;
optimizerswitch : toptimizerswitch;
globalswitches : tglobalswitches;
targetswitches : ttargetswitches;
moduleswitches : tmoduleswitches;
localswitches : tlocalswitches;
modeswitches : tmodeswitches;
optimizerswitches : toptimizerswitches;
begin
{alignment : talignmentinfo;}
{talignmentinfo = packed record}
writeln('Procedure alignment: '+tostr(new_settings.alignment.procalign));
writeln('Loop alignment: '+tostr(new_settings.alignment.loopalign));
{ alignment for labels after unconditional jumps, this must be a power of two }
writeln('Jump alignment: '+tostr(new_settings.alignment.jumpalign));
{ max. alignment for labels after unconditional jumps:
the compiler tries to align jumpalign, however, to do so it inserts at maximum jumpalignskipmax bytes or uses
the next smaller power of two of jumpalign }
// writeln('Jump skip max alignment: '+tostr(new_settings.alignment.jumpalignskipmax)); {not yet merged}
{ alignment for labels where two flows of the program flow coalesce, this must be a power of two }
// writeln('Coalescence alignment: '+tostr(new_settings.alignment.coalescealign)); {not yet merged}
{ max. alignment for labels where two flows of the program flow coalesce
the compiler tries to align to coalescealign, however, to do so it inserts at maximum coalescealignskipmax bytes or uses
the next smaller power of two of coalescealign }
// writeln('Coalescence skip max alignment: '+tostr(new_settings.alignment.coalescealignskipmax)); {not yet merged}
writeln('Const min alignment: '+tostr(new_settings.alignment.constalignmin));
writeln('Const max alignment: '+tostr(new_settings.alignment.constalignmax));
writeln('Var min alignment: '+tostr(new_settings.alignment.varalignmin));
writeln('Var max alignment: '+tostr(new_settings.alignment.varalignmax));
writeln('Local min alignment: '+tostr(new_settings.alignment.localalignmin));
writeln('Local max alignment: '+tostr(new_settings.alignment.localalignmax));
writeln('Min record alignment: '+tostr(new_settings.alignment.recordalignmin));
writeln('Max record alignment: '+tostr(new_settings.alignment.recordalignmax));
writeln('Max C record alignment: '+tostr(new_settings.alignment.maxCrecordalign));
globalswitches:=new_settings.globalswitches;
for globalswitch:=low(tglobalswitch) to high(tglobalswitch) do
if globalswitch in globalswitches then
begin
writeln('global switch: '+globalswitchname[globalswitch]);
exclude(globalswitches,globalswitch);
end;
if (globalswitches <> []) then
writeln('Unknown global switch');
targetswitches:=new_settings.targetswitches;
for targetswitch:=low(ttargetswitch) to high(ttargetswitch) do
if targetswitch in targetswitches then
begin
writeln('target switch: '+targetswitchname[targetswitch]);
exclude(targetswitches,targetswitch);
end;
if (targetswitches <> []) then
writeln('Unknown target switch');
moduleswitches:=new_settings.moduleswitches;
for moduleswitch:=low(tmoduleswitch) to high(tmoduleswitch) do
if moduleswitch in moduleswitches then
begin
writeln('module switch: '+moduleswitchname[moduleswitch]);
exclude(moduleswitches,moduleswitch);
end;
if (moduleswitches <> []) then
writeln('Unknown module switch');
localswitches:=new_settings.localswitches;
for localswitch:=low(tlocalswitch) to high(tlocalswitch) do
if localswitch in localswitches then
begin
writeln('local switch: '+localswitchname[localswitch]);
exclude(localswitches,localswitch);
end;
if (localswitches <> []) then
writeln('Unknown local switch');
modeswitches:=new_settings.modeswitches;
for modeswitch:=low(tmodeswitch) to high(tmodeswitch) do
if modeswitch in modeswitches then
begin
writeln(['mode switch: ',modeswitchname[modeswitch]]);
exclude(modeswitches,modeswitch);
end;
if (modeswitches <> []) then
writeln('Unknown mode switch');
optimizerswitches:=new_settings.optimizerswitches;
for optimizerswitch:=low(toptimizerswitch) to high(toptimizerswitch) do
if optimizerswitch in optimizerswitches then
begin
writeln(['optimizer switch: ',optimizerswitchname[optimizerswitch]]);
exclude(optimizerswitches,optimizerswitch);
end;
if (optimizerswitches <> []) then
writeln('Unknown optimizer switch');
writeln(['Set allocation size ',new_settings.setalloc]);
writeln(['Pack enums ',new_settings.packenum]);
writeln(['Pack records ',new_settings.packrecords]);
writeln(['Max FPU registers ',new_settings.maxfpuregisters]);
writeln(['CPU type ',new_settings.cputype]);
writeln(['CPU optimize type ',new_settings.optimizecputype]);
writeln(['FPU type ',new_settings.fputype]);
writeln(['ASM mode ',new_settings.asmmode]);
end;
var
linestr,genstr : string;
token : ttoken;
copy_size, stbi, last_col, new_col : longint;
last_line,new_line : dword;
len : sizeint;
wstring : widestring;
astring : ansistring;
begin
tbi:=0;
last_line:=0;
last_col:=0;
linestr:='';
genstr:='';
fillchar(new_settings,sizeof(new_settings),#0);
fillchar(prev_settings,sizeof(prev_settings),#0);
write([space,' Tokens: ']);
while tbi<tokenbufsize do
begin
token:=readtoken;
if token<>_GENERICSPECIALTOKEN then
begin
if token <= high(ttoken) then
begin
write(arraytokeninfo[token].str);
if not (token in [_CWCHAR, _CWSTRING, _CSTRING, _CCHAR,
_INTCONST,_REALNUMBER, _ID]) then
StrAppend(linestr,lowercase(arraytokeninfo[token].str));
end
else
begin
HasMoreInfos;
write('Error in Token List');
break;
end;
{idtoken:=}readtoken;
end;
case token of
_CWCHAR,
_CWSTRING :
begin
len:=gettokenbufsizeint;
setlength(wstring,len);
move(tokenbuf[tbi],wstring[1],len*2);
write([' ''',wstring,'''']);
StrAppend(linestr,' ''');
StrAppend(linestr,wstring);
StrAppend(linestr,'''');
inc(tbi,len*2);
end;
_CSTRING:
begin
len:=gettokenbufsizeint;
setlength(astring,len);
if len>0 then
move(tokenbuf[tbi],astring[1],len);
write([' ''',astring,'''']);
StrAppend(linestr,' ''');
StrAppend(linestr,astring);
StrAppend(linestr,'''');
inc(tbi,len);
end;
_CCHAR:
begin
write([' ''',unaligned(pshortstring(@tokenbuf[tbi])^),'''']);
StrAppend(linestr,' ''');
StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
StrAppend(linestr,'''');
inc(tbi,tokenbuf[tbi]+1);
end;
_INTCONST,
_REALNUMBER :
begin
write([' ',unaligned(pshortstring(@tokenbuf[tbi])^)]);
StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
inc(tbi,tokenbuf[tbi]+1);
end;
_ID :
begin
write([' ',unaligned(pshortstring(@tokenbuf[tbi])^)]);
StrAppend(linestr,unaligned(pshortstring(@tokenbuf[tbi])^));
inc(tbi,tokenbuf[tbi]+1);
end;
_GENERICSPECIALTOKEN:
begin
{ Short version of column change,
byte or $80 used }
if (tokenbuf[tbi] and $80)<>0 then
begin
new_col:=tokenbuf[tbi] and $7f;
write(['Col: ',new_col]);
if length(linestr)<new_col-1 then
StrAppend(linestr,StringOfChar(' ',new_col - 1 - length(linestr)));
inc(tbi);
last_col:=new_col;
end
else
case tspecialgenerictoken(tokenbuf[tbi]) of
ST_LOADSETTINGS:
begin
inc(tbi);
write([space,'Settings: ']);
fillchar(new_settings,sizeof(new_settings),#0);
{ This does not load pmessage pointer }
new_settings.pmessage:=nil;
{ TSettings size depends in target...
We first read the size of the copied part }
{ Still not cross endian ready :( }
copy_size:=gettokenbufsizeint;
stbi:=tbi;
tokenreadsettings(new_settings, copy_size);
tbi:=stbi+copy_size;
if CompareByte(new_settings,prev_settings,sizeof(new_settings))<>0 then
begin
dump_new_settings;
writeln;
end
else
begin
writeln('Unchanged');
end;
prev_settings:=new_settings;
end;
ST_LOADMESSAGES:
begin
inc(tbi);
mesgnb:=tokenbuf[tbi];
writeln([space,mesgnb,' messages: ']);
inc(tbi);
for nb:=1 to mesgnb do
begin
msgvalue:=gettokenbufsizeint;
//inc(tbi,sizeof(sizeint));
state:=tmsgstate(gettokenbufsizeint);
writeln(['#',msgvalue,' ',state]);
end;
end;
ST_LINE:
begin
inc(tbi);
new_line:=gettokenbufdword;
if (new_line<>last_line) then
begin
StrAppend(genstr,linestr+LineEnding);
linestr:='';
end;
writeln(['Line: ',new_line]);
last_line:=new_line;
end;
ST_COLUMN:
begin
inc(tbi);
new_col:=gettokenbufword;
write(['Col: ',new_col]);
if length(linestr)<new_col - 1 then
StrAppend(linestr,StringOfChar(' ',new_col - 1 - length(linestr)));
last_col:=new_col;
end;
ST_FILEINDEX:
begin
inc(tbi);
StrAppend(genstr,linestr+LineEnding);
linestr:='';
write(['File: ',gettokenbufword]);
end;
else
begin
HasMoreInfos;
write('Error in Token List');
break;
end;
end;
end;
else ; { empty else to avoid warning }
end;
if tbi<tokenbufsize then
write(',');
end;
writeln;
StrAppend(genstr,linestr);
writeln(['##',genstr,'##']);
end;
procedure readcommondef(const s:string; out defoptions: tdefoptions; Def: TPpuDef = nil);
type
tdefopt=record
mask : tdefoption;
str : string[30];
end;
tdefstateinfo=record
mask : tdefstate;
str : string[30];
end;
tgenconstrflag=record
mask : tgenericconstraintflag;
str : string[30];
end;
const
defopt : array[1..ord(high(tdefoption))] of tdefopt=(
(mask:df_unique; str:'Unique Type'),
(mask:df_generic; str:'Generic'),
(mask:df_specialization; str:'Specialization'),
(mask:df_copied_def; str:'Copied Typedef'),
(mask:df_genconstraint; str:'Generic Constraint'),
{ this should never happen for defs stored to a ppu file }
(mask:df_not_registered_no_free; str:'Unregistered/No free (invalid)'),
(mask:df_llvm_no_struct_packing; str:'LLVM unpacked struct'),
(mask:df_internal; str:'Internal')
);
defstate : array[1..ord(high(tdefstate))] of tdefstateinfo=(
(mask:ds_vmt_written; str:'VMT Written'),
(mask:ds_rtti_table_used; str:'RTTITable Used'),
(mask:ds_init_table_used; str:'InitTable Used'),
(mask:ds_rtti_table_written; str:'RTTITable Written'),
(mask:ds_init_table_written; str:'InitTable Written'),
(mask:ds_dwarf_dbg_info_used; str:'Dwarf DbgInfo Used'),
(mask:ds_dwarf_dbg_info_written;str:'Dwarf DbgInfo Written')
);
genconstrflag : array[1..ord(high(tgenericconstraintflag))] of tgenconstrflag=(
(mask:gcf_constructor; str:'Constructor'),
(mask:gcf_class; str:'Class'),
(mask:gcf_record; str:'Record')
);
var
defstates : tdefstates;
i, nb, len : longint;
first : boolean;
min_size, tokenbufsize : longint;
tokenbuf : pbyte;
genconstr : tgenericconstraintflags;
begin
i:=ppufile.getlongint;
if Def <> nil then
Def.Id:=i;
writeln([space,'** Definition Id ',i,' **']);
writeln([space,s]);
write ([space,' Type symbol : ']);
if Def <> nil then
readderef('', Def.Ref)
else
readderef('');
write ([space,' DefOptions : ']);
ppufile.getsmallset(defoptions);
if defoptions<>[] then
begin
first:=true;
for i:=1to high(defopt) do
if (defopt[i].mask in defoptions) then
begin
if first then
first:=false
else
write(', ');
write(defopt[i].str);
end;
end;
writeln;
write ([space,' DefStates : ']);
ppufile.getsmallset(defstates);
if defstates<>[] then
begin
first:=true;
for i:=1 to high(defstate) do
if (defstate[i].mask in defstates) then
begin
if first then
first:=false
else
write(', ');
write(defstate[i].str);
end;
end;
writeln;
if df_genconstraint in defoptions then
begin
ppufile.getsmallset(genconstr);
write ([space,' GenConstraints : ']);
if genconstr<>[] then
begin
first:=true;
for i:=1 to high(genconstrflag) do
if (genconstrflag[i].mask in genconstr) then
begin
if first then
first:=false
else
write(', ');
write(genconstrflag[i].str);
end;
end;
writeln;
len:=ppufile.getlongint;
if len>0 then
begin
space:=' '+space;
writeln([space,'------ constraint defs begin ------']);
for i:=0 to len-1 do
begin
writeln([space,'------ constraint def ',i,' ------']);
readderef(space);
end;
writeln([space,'------ constraint defs end ------']);
delete(space,1,4);
end;
end;
if [df_generic,df_specialization]*defoptions<>[] then
begin
nb:=ppufile.getlongint;
writeln([space,'has ',nb,' parameters']);
if nb>0 then
begin
for i:=0 to nb-1 do
begin
writeln([space,'parameter ',i,': ',ppufile.getstring]);
readderef(space);
end;
end;
end;
if df_generic in defoptions then
begin
tokenbufsize:=ppufile.getlongint;
writeln([space,' Tokenbuffer size : ',tokenbufsize]);
tokenbuf:=allocmem(tokenbufsize);
ppufile.getdata(tokenbuf^,tokenbufsize);
displaytokenbuffer(tokenbuf,tokenbufsize);
freemem(tokenbuf);
end;
if df_specialization in defoptions then
begin
write ([space,' Orig. GenericDef : ']);
readderef('');
end;
current_defoptions:=defoptions;
end;
{ Read abstract procdef and return if inline procdef }
{ type tproccalloption is in globtype unit }
{ type tproctypeoption is in globtype unit }
{ type tprocoption is in globtype unit }
procedure read_abstract_proc_def(var proccalloption:tproccalloption;var procoptions:tprocoptions; ProcDef: TPpuProcDef);
type
tproccallopt=record
mask : tproccalloption;
str : string[30];
end;
tproctypeopt=record
mask : tproctypeoption;
str : string[30];
end;
tprocopt=record
mask : tprocoption;
str : string[31];
end;
const
{proccalloptionStr is also in globtype unit }
proctypeopt : array[1..ord(high(tproctypeoption))] of tproctypeopt=(
(mask:potype_proginit; str:'ProgInit'),
(mask:potype_unitinit; str:'UnitInit'),
(mask:potype_unitfinalize; str:'UnitFinalize'),
(mask:potype_constructor; str:'Constructor'),
(mask:potype_destructor; str:'Destructor'),
(mask:potype_operator; str:'Operator'),
(mask:potype_procedure; str:'Procedure'),
(mask:potype_function; str:'Function'),
(mask:potype_class_constructor; str:'Class Constructor'),
(mask:potype_class_destructor; str:'Class Destructor'),
{ Dispinterface property accessors }
(mask:potype_propgetter; str:'Property Getter'),
(mask:potype_propsetter; str:'Property Setter'),
(mask:potype_exceptfilter; str:'SEH filter'),
(mask:potype_mainstub; str:'main stub'),
(mask:potype_pkgstub; str:'package stub')
);
procopt : array[1..ord(high(tprocoption))] of tprocopt=(
(mask:po_classmethod; str:'ClassMethod'),
(mask:po_virtualmethod; str:'VirtualMethod'),
(mask:po_abstractmethod; str:'AbstractMethod'),
(mask:po_finalmethod; str:'FinalMethod'),
(mask:po_staticmethod; str:'StaticMethod'),
(mask:po_overridingmethod;str:'OverridingMethod'),
(mask:po_methodpointer; str:'MethodPointer'),
(mask:po_interrupt; str:'Interrupt'),
(mask:po_iocheck; str:'IOCheck'),
(mask:po_assembler; str:'Assembler'),
(mask:po_msgstr; str:'MsgStr'),
(mask:po_msgint; str:'MsgInt'),
(mask:po_exports; str:'Exports'),
(mask:po_external; str:'External'),
(mask:po_overload; str:'Overload'),
(mask:po_varargs; str:'VarArgs'),
(mask:po_internconst; str:'InternConst'),
(mask:po_addressonly; str:'AddressOnly'),
(mask:po_public; str:'Public'),
(mask:po_hascallingconvention;str:'HasCallingConvention'),
(mask:po_reintroduce; str:'ReIntroduce'),
(mask:po_explicitparaloc; str:'ExplicitParaloc'),
(mask:po_nostackframe; str:'NoStackFrame'),
(mask:po_has_mangledname; str:'HasMangledName'),
(mask:po_has_public_name; str:'HasPublicName'),
(mask:po_forward; str:'Forward'),
(mask:po_global; str:'Global'),
(mask:po_syscall; str:'Syscall'),
(mask:po_syscall_legacy; str:'SyscallLegacy'),
(mask:po_syscall_basenone;str:'SyscallBaseNone'),
(mask:po_syscall_basefirst;str:'SyscallBaseFirst'),
(mask:po_syscall_baselast;str:'SyscallBaseLast'),
(mask:po_syscall_basereg; str:'SyscallBaseReg'),
(mask:po_syscall_has_libsym; str:'Has LibSym'),
(mask:po_syscall_has_importnr; str:'Uses ImportNr'),
(mask:po_inline; str:'Inline'),
(mask:po_compilerproc; str:'CompilerProc'),
(mask:po_has_importdll; str:'HasImportDLL'),
(mask:po_has_importname; str:'HasImportName'),
(mask:po_kylixlocal; str:'KylixLocal'),
(mask:po_dispid; str:'DispId'),
(mask:po_weakexternal; str:'WeakExternal'),
(mask:po_objc; str:'ObjC'),
(mask:po_enumerator_movenext; str:'EnumeratorMoveNext'),
(mask:po_optional; str: 'Optional'),
(mask:po_delphi_nested_cc;str: 'Delphi-style nested frameptr'),
(mask:po_java_nonvirtual; str: 'Java non-virtual method'),
(mask:po_ignore_for_overload_resolution;str: 'Ignored for overload resolution'),
(mask:po_rtlproc; str: 'RTL procedure'),
(mask:po_auto_raised_visibility; str: 'Visibility raised by compiler'),
(mask:po_far; str: 'Far'),
(mask:po_hasnearfarcallmodel; str: 'Near/Far explicit'),
(mask:po_noreturn; str: 'No return'),
(mask:po_is_function_ref; str: 'Function reference'),
(mask:po_is_block; str: 'C "Block"'),
(mask:po_is_auto_getter; str: 'Automatically generated getter'),
(mask:po_is_auto_setter; str: 'Automatically generated setter'),
(mask:po_objc_related_result_type; str: 'Objective-C related result type')
);
var
proctypeoption : tproctypeoption;
i : longint;
first : boolean;
begin
write([space,' Return type : ']);
readderef('', ProcDef.ReturnType);
proctypeoption:=tproctypeoption(ppufile.getbyte);
case proctypeoption of
potype_function: Include(ProcDef.Options, poFunction);
potype_procedure: Include(ProcDef.Options, poProcedure);
potype_constructor: Include(ProcDef.Options, poConstructor);
potype_destructor: Include(ProcDef.Options, poDestructor);
potype_operator: Include(ProcDef.Options, poOperator);
end;
write([space,' TypeOption : ']);
first:=true;
for i:=1 to high(proctypeopt) do
if (proctypeopt[i].mask=proctypeoption) then
begin
if first then
first:=false
else
write(', ');
write(proctypeopt[i].str);
end;
writeln;
proccalloption:=tproccalloption(ppufile.getbyte);
writeln([space,' CallOption : ',proccalloptionStr[proccalloption]]);
ppufile.getnormalset(procoptions);
if procoptions<>[] then
begin
if po_classmethod in procoptions then Include(ProcDef.Options, poClassMethod);
if po_virtualmethod in procoptions then Include(ProcDef.Options, poVirtual);
if po_abstractmethod in procoptions then Include(ProcDef.Options, poAbstract);
if po_overridingmethod in procoptions then Include(ProcDef.Options, poOverriding);
if po_overload in procoptions then Include(ProcDef.Options, poOverload);
if po_inline in procoptions then Include(ProcDef.Options, poInline);
if (po_methodpointer in procoptions) and (ProcDef.DefType = dtProcType) then
TPpuProcTypeDef(ProcDef).MethodPtr:=True;
write([space,' Options : ']);
first:=true;
for i:=1 to high(procopt) do
if (procopt[i].mask in procoptions) then
begin
if first then
first:=false
else
write(', ');
write(procopt[i].str);
end;
writeln;
end;
if (po_explicitparaloc in procoptions) then
begin
readcgpara(space);
end;
end;
{ type tvaroption is in unit symconst }
{ register variable }
{ type tvarregable is in unit symconst }
procedure readabstractvarsym(const s:string;var varoptions:tvaroptions; VarDef: TPpuVarDef = nil);
type
tvaropt=record
mask : tvaroption;
str : string[30];
end;
const
varopt : array[1..ord(high(tvaroption))] of tvaropt=(
(mask:vo_is_external; str:'External'),
(mask:vo_is_dll_var; str:'DLLVar'),
(mask:vo_is_thread_var; str:'ThreadVar'),
(mask:vo_has_local_copy; str:'HasLocalCopy'),
(mask:vo_is_const; str:'Constant'),
(mask:vo_is_public; str:'Public'),
(mask:vo_is_high_para; str:'HighValue'),
(mask:vo_is_funcret; str:'Funcret'),
(mask:vo_is_self; str:'Self'),
(mask:vo_is_vmt; str:'VMT'),
(mask:vo_is_result; str:'Result'),
(mask:vo_is_parentfp; str:'ParentFP'),
(mask:vo_is_loop_counter; str:'LoopCounter'),
(mask:vo_is_hidden_para; str:'Hidden'),
(mask:vo_has_explicit_paraloc;str:'ExplicitParaloc'),
(mask:vo_is_syscall_lib; str:'SysCallLib'),
(mask:vo_has_mangledname; str:'HasMangledName'),
(mask:vo_is_typed_const; str:'TypedConst'),
(mask:vo_is_range_check; str:'RangeCheckSwitch'),
(mask:vo_is_overflow_check; str:'OverflowCheckSwitch'),
(mask:vo_is_typinfo_para; str:'TypeInfo'),
(mask:vo_is_msgsel;str:'MsgSel'),
(mask:vo_is_weak_external;str:'WeakExternal'),
(mask:vo_is_first_field;str:'IsFirstField'),
(mask:vo_volatile; str:'Volatile'),
(mask:vo_has_section; str:'HasSection'),
(mask:vo_force_finalize; str:'ForceFinalize'),
(mask:vo_is_default_var; str:'DefaultIntrinsicVar'),
(mask:vo_is_far; str:'IsFar')
);
var
i : longint;
first : boolean;
begin
readcommonsym(s, VarDef);
i:=ppufile.getbyte;
if (VarDef <> nil) and (VarDef.DefType = dtParam) then
with TPpuParamDef(VarDef) do
case tvarspez(i) of
vs_value: Spez:=psValue;
vs_var: Spez:=psVar;
vs_out: Spez:=psOut;
vs_const: Spez:=psConst;
vs_constref: Spez:=psConstRef;
end;
writeln([space,' Spez : ',Varspez2Str(i)]);
writeln([space,' Regable : ',Varregable2Str(ppufile.getbyte)]);
writeln([space,' Addr Taken : ',(ppufile.getbyte<>0)]);
writeln([space,'Escaped Scope : ',(ppufile.getbyte<>0)]);
write ([space,' Var Type : ']);
if VarDef <> nil then
readderef('',VarDef.VarType)
else
readderef('');
ppufile.getsmallset(varoptions);
if varoptions<>[] then
begin
if (VarDef <> nil) and (VarDef.DefType = dtParam) and (vo_is_hidden_para in varoptions) then
TPpuParamDef(VarDef).Spez:=psHidden;
write([space,' Options : ']);
first:=true;
for i:=1 to high(varopt) do
if (varopt[i].mask in varoptions) then
begin
if first then
first:=false
else
write(', ');
write(varopt[i].str);
end;
writeln;
end;
end;
procedure readobjectdefoptions(ObjDef: TPpuObjectDef = nil);
type
tsymopt=record
mask : tobjectoption;
str : string[30];
end;
const
symopt : array[1..ord(high(tobjectoption))] of tsymopt=(
(mask:oo_is_forward; str:'IsForward'),
(mask:oo_is_abstract; str:'IsAbstract'),
(mask:oo_is_sealed; str:'IsSealed'),
(mask:oo_has_virtual; str:'HasVirtual'),
(mask:oo_has_private; str:'HasPrivate'),
(mask:oo_has_protected; str:'HasProtected'),
(mask:oo_has_strictprivate; str:'HasStrictPrivate'),
(mask:oo_has_strictprotected;str:'HasStrictProtected'),
(mask:oo_has_constructor; str:'HasConstructor'),
(mask:oo_has_destructor; str:'HasDestructor'),
(mask:oo_has_vmt; str:'HasVMT'),
(mask:oo_has_msgstr; str:'HasMsgStr'),
(mask:oo_has_msgint; str:'HasMsgInt'),
(mask:oo_can_have_published; str:'CanHavePublished'),
(mask:oo_has_default_property;str:'HasDefaultProperty'),
(mask:oo_has_valid_guid; str:'HasValidGUID'),
(mask:oo_has_enumerator_movenext; str:'HasEnumeratorMoveNext'),
(mask:oo_has_enumerator_current; str:'HasEnumeratorCurrent'),
(mask:oo_is_external; str:'External'),
(mask:oo_is_formal; str:'Formal'),
(mask:oo_is_classhelper; str:'Class Helper/Category'),
(mask:oo_has_class_constructor; str:'HasClassConstructor'),
(mask:oo_has_class_destructor; str:'HasClassDestructor'),
(mask:oo_is_enum_class; str:'JvmEnumClass'),
(mask:oo_has_new_destructor; str:'HasNewDestructor')
);
var
i : longint;
first : boolean;
begin
ppufile.getsmallset(current_objectoptions);
if current_objectoptions<>[] then
begin
if ObjDef <> nil then
begin
if oo_is_abstract in current_objectoptions then
Include(ObjDef.Options, ooIsAbstract);
end;
first:=true;
for i:=1 to high(symopt) do
if (symopt[i].mask in current_objectoptions) then
begin
if first then
first:=false
else
write(', ');
write(symopt[i].str);
end;
end;
writeln;
end;
procedure readprocimploptions(const space: string; out implprocoptions: timplprocoptions);
type
tpiopt=record
mask : timplprocoption;
str : string[30];
end;
const
piopt : array[low(timplprocoption)..high(timplprocoption)] of tpiopt=(
(mask:pio_empty; str:'IsEmpty'),
(mask:pio_has_inlininginfo; str:'HasInliningInfo'),
(mask:pio_inline_not_possible; str:'InlineNotPossible'),
(mask:pio_nested_access; str:'NestedAccess'),
(mask:pio_thunk; str:'Thunk'),
(mask:pio_fastmath; str:'FastMath'),
(mask:pio_inline_forbidden; str:'InlineForbidden')
);
var
i: timplprocoption;
first: boolean;
begin
ppufile.getsmallset(implprocoptions);
if implprocoptions<>[] then
begin
first:=true;
write([space,' Options : ']);
for i:=low(piopt) to high(piopt) do
begin
if i in implprocoptions then
begin
if first then
first:=false
else
write(', ');
write(piopt[i].str);
end;
end;
writeln;
end;
end;
procedure readarraydefoptions(ArrayDef: TPpuArrayDef);
{ type tarraydefoption is in unit symconst }
const
symopt : array[tarraydefoption] of string = (
{ ado_IsConvertedPointer } 'ConvertedPointer',
{ ado_IsDynamicArray } 'IsDynamicArray',
{ ado_IsVariant } 'IsVariant',
{ ado_IsConstructor } 'IsConstructor',
{ ado_IsArrayOfConst } 'ArrayOfConst',
{ ado_IsConstString } 'ConstString',
{ ado_IsBitPacked } 'BitPacked'
);
var
symoptions: tarraydefoptions;
i: tarraydefoption;
first: boolean;
begin
ppufile.getsmallset(symoptions);
if symoptions<>[] then
begin
if ado_IsDynamicArray in symoptions then Include(ArrayDef.Options, aoDynamic);
first:=true;
for i:=Low(symopt) to high(symopt) do
if (i in symoptions) then
begin
if first then
first:=false
else
write(', ');
write(symopt[i]);
end;
end;
writeln;
end;
(* options for properties
tpropertyoption=(ppo_none,
ppo_indexed,
ppo_defaultproperty,
ppo_stored,
ppo_hasparameters,
ppo_implements,
ppo_enumerator_current,
ppo_overrides,
ppo_dispid_write { no longer used }
);
tpropertyoptions=set of tpropertyoption;
*)
function readpropertyoptions:tpropertyoptions;
{ type tarraydefoption is in unit symconst }
type
tpropopt=record
mask : tpropertyoption;
str : string[30];
end;
const
symopt : array[1..ord(high(tpropertyoption))] of tpropopt=(
(mask:ppo_indexed;str:'indexed'),
(mask:ppo_defaultproperty;str:'default'),
(mask:ppo_stored;str:'stored'),
(mask:ppo_hasparameters;str:'has parameters'),
(mask:ppo_implements;str:'implements'),
(mask:ppo_enumerator_current;str:'enumerator current'),
(mask:ppo_overrides;str:'overrides'),
(mask:ppo_dispid_write;str:'dispid write') { no longer used }
);
var
i : longint;
first : boolean;
begin
ppufile.getsmallset(result);
if result<>[] then
begin
first:=true;
for i:=1 to high(symopt) do
if (symopt[i].mask in result) then
begin
if first then
first:=false
else
write(', ');
write(symopt[i].str);
end;
end;
writeln;
end;
function readmanagementoperatoroptions(const space : string;const name : string):tmanagementoperators;
{ type is in unit symconst }
{ Management operator options
tmanagementoperator=(
mop_none,
mop_initialize,
mop_finalize,
mop_addref,
mop_copy);
}
type
tmopopt=record
mask : tmanagementoperator;
str : string[10];
end;
const
managementoperatoropt : array[1..ord(high(tmanagementoperator))] of tmopopt=(
(mask:mop_initialize;str:'initialize'),
(mask:mop_finalize;str:'finalize'),
(mask:mop_addref;str:'addref'),
(mask:mop_copy;str:'copy')
);
var
i : longint;
first : boolean;
begin
ppufile.getsmallset(result);
if result<>[] then
begin
first:=true;
for i:=1 to high(managementoperatoropt) do
if (managementoperatoropt[i].mask in result) then
begin
if first then
begin
write(space);
write(name);
write(': ');
first:=false;
end
else
write(', ');
write(managementoperatoropt[i].str);
end;
if not first then
writeln;
end;
end;
procedure readnodetree;
var
l : longint;
p : pointer;
begin
with ppufile do
begin
if space<>'' then
Writeln([space,'------ nodetree ------']);
if readentry=ibnodetree then
begin
l:=entrysize;
Writeln([space,'Tree size : ',l]);
{ Read data to prevent error that entry is not completly read }
getmem(p,l);
getdata(p^,l);
freemem(p);
end
else
begin
WriteError('!! ibnodetree not found');
end;
end;
end;
procedure ReadCreatedObjTypes;
var
i,j,
len,
bssize: longint;
bs: pbyte;
begin
if ppufile.readentry<>ibcreatedobjtypes then
begin
WriteError('!! ibcreatedobjtypes entry not found');
ppufile.skipdata(ppufile.entrysize);
exit
end;
writeln;
writeln([space,'WPO info']);
writeln([space,'--------']);
len:=ppufile.getlongint;
writeln([space,'** Instantiated Object/Class types: ',len,' **']);
space:=space+' ';
for i:=0 to len-1 do
readderef(space);
setlength(space,length(space)-2);
len:=ppufile.getlongint;
writeln([space,'** Instantiated ClassRef types: ',len,' **']);
space:=space+' ';
for i:=0 to len-1 do
readderef(space);
setlength(space,length(space)-2);
len:=ppufile.getlongint;
writeln([space,'** Possibly instantiated ClassRef types : ',len,' **']);
space:=space+' ';
for i:=0 to len-1 do
readderef(space);
setlength(space,length(space)-2);
len:=ppufile.getlongint;
writeln([space,'** Class types with called virtual methods info : ',len,' **']);
space:=space+' ';
for i:=0 to len-1 do
begin
write([space,'Class def : ']);
readderef('');
write([space+' ','Called vmtentries : ']);
bssize:=ppufile.getlongint;
getmem(bs,bssize);
ppufile.readdata(bs^,bssize);
for j:=0 to bssize*8-1 do
if (((bs+j shr 3)^ shr (j and 7)) and 1) <> 0 then
write([j,', ']);
writeln;
freemem(bs);
end;
setlength(space,length(space)-2);
end;
{****************************************************************************
Read Symbols Part
****************************************************************************}
procedure readsymbols(const s:string; ParentDef: TPpuContainerDef = nil);
function _finddef(symdef: TPpuDef): TPpuDef;
begin
Result:=nil;
if symdef.Ref.IsCurUnit then
begin;
Result:=CurUnit.FindById(symdef.Ref.Id);
if (Result <> nil) and (Result.Ref.Id = symdef.Id) then
begin
Result.Name:=symdef.Name;
Result.FilePos:=symdef.FilePos;
end
else
Result:=nil;
end;
end;
type
pguid = ^tguid;
tguid = packed record
D1: LongWord;
D2: Word;
D3: Word;
D4: array[0..7] of Byte;
end;
var
b : byte;
pc : pchar;
ch : dword;
startnewline : boolean;
i,j,len : longint;
prettyname, ss : ansistring;
ws: widestring;
guid : tguid;
realvalue : ppureal;
doublevalue : double;
singlevalue : single;
realstr : shortstring;
extended : TSplit80bitReal;
pw : pcompilerwidestring;
varoptions : tvaroptions;
propoptions : tpropertyoptions;
iexp: Tconstexprint;
def: TPpuDef;
constdef: TPpuConstDef absolute def;
begin
with ppufile do
begin
if space<>'' then
Writeln([space,'------ ',s,' ------']);
if readentry=ibstartsyms then
begin
Writeln([space,'Symtable count: ',getlongint]);
end
else
Writeln('!! ibstartsym not found');
repeat
def:=nil;
b:=readentry;
case b of
ibunitsym :
readcommonsym('Unit symbol ');
ibnamespacesym :
begin
readcommonsym('NameSpace symbol ');
write([space,' Hidden Unit : ']);
readderef('');
end;
iblabelsym :
readcommonsym('Label symbol ');
ibtypesym :
begin
def:=TPpuTypeRef.Create(nil);
readcommonsym('Type symbol ',def);
write([space,' Result Type : ']);
readderef('', def.Ref);
if _finddef(def) = nil then
def.Parent:=ParentDef;
prettyname:=getansistring;
if prettyname<>'' then
begin
write([space,' Pretty Name : ']);
Writeln(prettyname);
end;
end;
ibprocsym :
begin
def:=TPpuDef.Create(nil);
readcommonsym('Procedure symbol ', def);
len:=ppufile.getword;
for i:=1 to len do
begin
write([space,' Definition : ']);
readderef('', def.Ref);
_finddef(def);
end;
end;
ibconstsym :
begin
constdef:=TPpuConstDef.Create(ParentDef);
readcommonsym('Constant symbol ',constdef);
b:=getbyte;
case tconsttyp(b) of
constord :
begin
write ([space,' OrdinalType : ']);
readderef('',constdef.TypeRef);
iexp:=getexprint;
constdef.ConstType:=ctInt;
constdef.VInt:=iexp.svalue;
writeln([space,' Value : ',constexp.tostr(iexp)]);
end;
constpointer :
begin
write ([space,' PointerType : ']);
readderef('',constdef.TypeRef);
constdef.ConstType:=ctInt;
constdef.VInt:=int64(getptruint);
writeln([space,' Value : ',constdef.VInt])
end;
conststring,
constresourcestring :
begin
write ([space,' StringType : ']);
readderef('',constdef.TypeRef);
len:=getlongint;
getmem(pc,len+1);
getdata(pc^,len);
(pc+len)^:= #0;
writeln([space,' Length : ',len]);
writeln([space,' Value : "',pc,'"']);
constdef.ConstType:=ctStr;
SetString(constdef.VStr, pc, len);
constdef.VStr:=UTF8Encode(constdef.VStr);
freemem(pc,len+1);
end;
constreal :
begin
constdef.ConstType:=ctFloat;
write ([space,' RealType : ']);
readderef('',constdef.TypeRef);
write([space,' Value : ']);
if entryleft=sizeof(ppureal) then
begin
realvalue:=getrealsize(sizeof(ppureal));
constdef.VFloat:=realvalue;
system.str(realvalue,realstr);
writeln([realstr]);
end
else if entryleft=sizeof(double) then
begin
doublevalue:=getrealsize(sizeof(double));
constdef.VFloat:=doublevalue;
system.str(doublevalue,realstr);
writeln([realstr]);
end
else if entryleft=sizeof(single) then
begin
singlevalue:=getrealsize(sizeof(single));
constdef.VFloat:=singlevalue;
system.str(singlevalue,realstr);
writeln([realstr]);
end
else if entryleft=10 then
begin
getdata(extended,entryleft);
ss:=Real80bitToStr(extended,constdef.VFloat);
writeln(ss);
end
else
begin
realvalue:=0.0;
WriteError('Error reading real value');
end;
end;
constset :
begin
constdef.ConstType:=ctSet;
write ([space,' Set Type : ']);
readderef('',constdef.TypeRef);
for i:=1to 4 do
begin
write ([space,' Value : ']);
for j:=1to 8 do
begin
if j>1 then
write(',');
b:=getbyte;
write(hexstr(b,2));
constdef.VSet[i*j-1]:=b;
end;
writeln;
end;
end;
constnil:
begin
write([space,' NIL pointer :']);
readderef('',constdef.TypeRef);
constdef.ConstType:=ctPtr;
constdef.VInt:=0;
end;
constwstring :
begin
initwidestring(pw);
setlengthwidestring(pw,getlongint);
if widecharsize=2 then
{ don't use getdata, because the compilerwidechars may have to
be byteswapped
}
begin
for i:=0 to pw^.len-1 do
pw^.data[i]:=ppufile.getword;
SetString(ws, PWideChar(pw^.data), pw^.len);
constdef.VStr:=UTF8Encode(ws);
constdef.ConstType:=ctStr;
end
else if widecharsize=4 then
begin
for i:=0 to pw^.len-1 do
pw^.data[i]:=cardinal(ppufile.getlongint);
end
else
begin
WriteError('Unsupported tcompilerwidechar size');
end;
Write([space,'Wide string type']);
startnewline:=true;
for i:=0 to pw^.len-1 do
begin
if startnewline then
begin
writeln;
write(space);
startnewline:=false;
end;
ch:=pw^.data[i];
if widecharsize=2 then
write(hexstr(ch,4))
else
write(hexstr(ch,8));
if ((i + 1) mod 8)= 0 then
startnewline:=true
else
if i <> pw^.len-1 then
write(', ');
end;
donewidestring(pw);
Writeln;
end;
constguid:
begin
write ([space,' IntfType : ']);
readderef('',constdef.TypeRef);
getdata(guid,sizeof(guid));
write ([space,' IID String: {',hexstr(guid.d1,8),'-',hexstr(guid.d2,4),'-',hexstr(guid.d3,4),'-']);
for i:=0 to 7 do
begin
write(hexstr(guid.d4[i],2));
if i=1 then write('-');
end;
writeln('}');
end
else
Writeln (['!! Invalid unit format : Invalid const type encountered: ',b]);
end;
end;
ibabsolutevarsym :
begin
def:=TPpuVarDef.Create(ParentDef);
readabstractvarsym('Absolute variable symbol ',varoptions,TPpuVarDef(def));
Write ([space,' Relocated to ']);
b:=getbyte;
case absolutetyp(b) of
tovar :
readpropaccesslist(space+' Sym : ');
toasm :
Writeln(['Assembler name : ',getstring]);
toaddr :
begin
Write(['Address : ',getpuint]);
if tsystemcpu(ppufile.header.common.cpu)=cpu_i386 then
Write([' (Far: ',getbyte<>0,')']);
if tsystemcpu(ppufile.header.common.cpu)=cpu_i8086 then
if getbyte<>0 then
Write([' (Far: TRUE, Segment=',getaword,')'])
else
Write([' (Far: FALSE)']);
Writeln;
end;
else
Writeln (['!! Invalid unit format : Invalid absolute type encountered: ',b]);
end;
end;
ibfieldvarsym :
begin
def:=TPpuFieldDef.Create(ParentDef);
readabstractvarsym('Field Variable symbol ',varoptions,TPpuVarDef(def));
writeln([space,' Address : ',getasizeint]);
if vo_has_mangledname in varoptions then
writeln([space,' Mangled name : ',getstring]);
end;
ibstaticvarsym :
begin
def:=TPpuVarDef.Create(ParentDef);
readabstractvarsym('Global Variable symbol ',varoptions,TPpuVarDef(def));
write ([space,' DefaultConst : ']);
readderef('');
if (vo_has_mangledname in varoptions) then
if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
writeln([space,'AMangledname : ',getansistring])
else
writeln([space,'SMangledname : ',getstring]);
if vo_has_section in varoptions then
writeln(['Section name:',ppufile.getansistring]);
write ([space,' FieldVarSymDeref: ']);
readderef('');
end;
iblocalvarsym :
begin
readabstractvarsym('Local Variable symbol ',varoptions);
write ([space,' DefaultConst : ']);
readderef('');
end;
ibparavarsym :
begin
def:=TPpuParamDef.Create(ParentDef);
readabstractvarsym('Parameter Variable symbol ',varoptions,TPpuVarDef(def));
write ([space,' DefaultConst : ']);
readderef('',TPpuParamDef(def).DefaultValue);
writeln([space,' ParaNr : ',getword]);
writeln([space,' Univ : ',getboolean]);
writeln([space,' VarState : ',getbyte]);
writeln([space,' Refs : ',getbyte]);
if (vo_has_explicit_paraloc in varoptions) then
begin
readcgpara(space+' ');
end;
end;
ibenumsym :
begin
def:=TPpuConstDef.Create(nil);
readcommonsym('Enumeration symbol ',def);
write ([space,' Definition : ']);
readderef('');
TPpuConstDef(def).ConstType:=ctInt;
TPpuConstDef(def).VInt:=getlongint;
writeln([space,' Value : ',TPpuConstDef(def).VInt]);
if (ParentDef <> nil) and (ParentDef.DefType = dtEnum) then
def.Parent:=ParentDef;
end;
ibsyssym :
begin
readcommonsym('Internal system symbol ');
writeln([space,' Internal Nr : ',getlongint]);
end;
ibmacrosym :
begin
readcommonsym('Macro symbol ');
writeln([space,' Defined: ',getboolean]);
writeln([space,' Compiler var: ',getboolean]);
len:=getlongint;
writeln([space,' Value length: ',len]);
if len > 0 then
begin
getmem(pc,len+1);
getdata(pc^,len);
(pc+len)^:= #0;
writeln([space,' Value: "',pc,'"']);
freemem(pc,len+1);
end;
end;
ibpropertysym :
begin
def:=TPpuPropDef.Create(ParentDef);
readcommonsym('Property ',def);
write ([space,' Prop Options : ']);
propoptions:=readpropertyoptions;
if ppo_overrides in propoptions then
begin
write ([space,' OverrideProp : ']);
readderef('');
end;
if ppo_defaultproperty in propoptions then
Include(TPpuPropDef(def).Options, poDefault);
write ([space,' Prop Type : ']);
readderef('',TPpuPropDef(def).PropType);
writeln([space,' Index : ',getlongint]);
writeln([space,' Default : ',getlongint]);
write ([space,' Index Type : ']);
readderef('');
{ palt_none }
write ([space,' Noneaccess : ']);
readpropaccesslist('');
write ([space,' Readaccess : ']);
readpropaccesslist(space+' Sym: ',TPpuPropDef(def).Getter);
write ([space,' Writeaccess : ']);
readpropaccesslist(space+' Sym: ',TPpuPropDef(def).Setter);
write ([space,' Storedaccess : ']);
readpropaccesslist(space+' Sym: ');
if [ppo_hasparameters,ppo_overrides]*propoptions=[ppo_hasparameters] then
begin
space:=' '+space;
readsymtable('parast',TPpuPropDef(def));
delete(space,1,4);
end;
end;
iberror :
begin
WriteError('!! Error in PPU');
exit;
end;
ibendsyms :
break;
else
begin
WriteError('!! Skipping unsupported PPU Entry in Symbols: '+IntToStr(b));
end;
end;
if (def <> nil) and (def.Parent = nil) then
def.Free;
if not EndOfEntry then
HasMoreInfos;
until false;
end;
end;
{****************************************************************************
Read defintions Part
****************************************************************************}
procedure readdefinitions(const s:string; ParentDef: TPpuContainerDef);
{ type tordtype is in symconst unit }
{
uvoid,
u8bit,u16bit,u32bit,u64bit,u128bit,
s8bit,s16bit,s32bit,s64bit,s128bit,
bool8bit,bool16bit,bool32bit,bool64bit,
uchar,uwidechar,scurrency
); }
{ type tobjecttyp is in symconst unit }
{ type tvarianttype is in symconst unit }
{ type thelpertype is in symconst unit }
var
b : byte;
otb : byte; { Object Type byte, needed later again }
l,j,tokenbufsize : longint;
tokenbuf : pbyte;
calloption : tproccalloption;
procoptions : tprocoptions;
implprocoptions: timplprocoptions;
defoptions: tdefoptions;
iexpr: Tconstexprint;
def: TPpuDef;
objdef: TPpuObjectDef absolute def;
arrdef: TPpuArrayDef absolute def;
enumdef: TPpuEnumDef absolute def;
setdef: TPpuSetDef absolute def;
orddef: TPpuOrdDef absolute def;
floatdef: TPpuFloatDef absolute def;
strdef: TPpuStringDef absolute def;
filedef: TPpuFileDef absolute def;
begin
with ppufile do
begin
if space<>'' then
Writeln([space,'------ ',s,' ------']);
if readentry<>ibstartdefs then
Writeln('!! ibstartdefs not found');
repeat
def:=nil;
b:=readentry;
case b of
ibpointerdef :
begin
def:=TPpuPointerDef.Create(ParentDef);
readcommondef('Pointer definition',defoptions,def);
write ([space,' Pointed Type : ']);
readderef('',TPpuPointerDef(def).Ptr);
writeln([space,' Has Pointer Math : ',(getbyte<>0)]);
if tsystemcpu(ppufile.header.common.cpu) in [cpu_i8086,cpu_i386,cpu_x86_64] then
begin
write([space,' X86 Pointer Type : ']);
b:=getbyte;
case tx86pointertyp(b) of
x86pt_near: writeln('Near');
x86pt_near_cs: writeln('Near ''CS''');
x86pt_near_ds: writeln('Near ''DS''');
x86pt_near_ss: writeln('Near ''SS''');
x86pt_near_es: writeln('Near ''ES''');
x86pt_near_fs: writeln('Near ''FS''');
x86pt_near_gs: writeln('Near ''GS''');
x86pt_far: writeln('Far');
x86pt_huge: writeln('Huge');
else
WriteWarning('Invalid x86 pointer type: ' + IntToStr(b));
end;
end;
end;
iborddef :
begin
orddef:=TPpuOrdDef.Create(ParentDef);
readcommondef('Ordinal definition',defoptions,orddef);
write ([space,' Base type : ']);
b:=getbyte;
case tordtype(b) of
uvoid:
begin
writeln('uvoid');
orddef.OrdType:=otVoid;
end;
u8bit:
begin
writeln('u8bit');
orddef.OrdType:=otUInt;
orddef.Size:=1;
end;
u16bit:
begin
writeln('u16bit');
orddef.OrdType:=otUInt;
orddef.Size:=2;
end;
u32bit:
begin
writeln('u32bit');
orddef.OrdType:=otUInt;
orddef.Size:=4;
end;
u64bit:
begin
writeln('u64bit');
orddef.OrdType:=otUInt;
orddef.Size:=8;
end;
u128bit:
begin
writeln('u128bit');
orddef.OrdType:=otUInt;
orddef.Size:=16;
end;
s8bit:
begin
writeln('s8bit');
orddef.OrdType:=otSInt;
orddef.Size:=1;
end;
s16bit:
begin
writeln('s16bit');
orddef.OrdType:=otSInt;
orddef.Size:=2;
end;
s32bit:
begin
writeln('s32bit');
orddef.OrdType:=otSInt;
orddef.Size:=4;
end;
s64bit:
begin
writeln('s64bit');
orddef.OrdType:=otSInt;
orddef.Size:=8;
end;
s128bit:
begin
writeln('s128bit');
orddef.OrdType:=otSInt;
orddef.Size:=16;
end;
pasbool1:
begin
writeln('pasbool1');
orddef.OrdType:=otPasBool;
orddef.Size:=1;
end;
pasbool8:
begin
writeln('pasbool8');
orddef.OrdType:=otPasBool;
orddef.Size:=1;
end;
pasbool16:
begin
writeln('pasbool16');
orddef.OrdType:=otPasBool;
orddef.Size:=2;
end;
pasbool32:
begin
writeln('pasbool32');
orddef.OrdType:=otPasBool;
orddef.Size:=4;
end;
pasbool64:
begin
writeln('pasbool64');
orddef.OrdType:=otPasBool;
orddef.Size:=8;
end;
bool8bit:
begin
writeln('bool8bit');
orddef.OrdType:=otBool;
orddef.Size:=1;
end;
bool16bit:
begin
writeln('bool16bit');
orddef.OrdType:=otBool;
orddef.Size:=2;
end;
bool32bit:
begin
writeln('bool32bit');
orddef.OrdType:=otBool;
orddef.Size:=4;
end;
bool64bit:
begin
writeln('bool64bit');
orddef.OrdType:=otBool;
orddef.Size:=8;
end;
uchar:
begin
writeln('uchar');
orddef.OrdType:=otChar;
orddef.Size:=1;
end;
uwidechar:
begin
writeln('uwidechar');
orddef.OrdType:=otChar;
orddef.Size:=2;
end;
scurrency:
begin
writeln('scurrency');
orddef.OrdType:=otCurrency;
orddef.Size:=8;
end;
else
WriteWarning('Invalid base type: ' + IntToStr(b));
end;
iexpr:=getexprint;
orddef.RangeLow:=iexpr.svalue;
write([space,' Range : ',constexp.tostr(iexpr)]);
iexpr:=getexprint;
orddef.RangeHigh:=iexpr.svalue;
writeln([' to ',constexp.tostr(iexpr)]);
end;
ibfloatdef :
begin
floatdef:=TPpuFloatDef.Create(ParentDef);
readcommondef('Float definition',defoptions,floatdef);
write ([space,' Float type : ']);
b:=getbyte;
case b of
ftSingle:
begin
writeln('Single');
floatdef.FloatType:=pftSingle;
end;
ftDouble:
begin
writeln('Double');
floatdef.FloatType:=pftDouble;
end;
ftExtended:
begin
writeln('Extended');
floatdef.FloatType:=pftExtended;
end;
ftComp:
begin
writeln('Comp');
floatdef.FloatType:=pftComp;
end;
ftCurr:
begin
writeln('Currency');
floatdef.FloatType:=pftCurrency;
end;
ftFloat128:
begin
writeln('Float128');
floatdef.FloatType:=pftFloat128;
end;
else
WriteWarning('Invalid float type: ' + IntToStr(b));
end;
end;
ibarraydef :
begin
arrdef:=TPpuArrayDef.Create(ParentDef);
readcommondef('Array definition',defoptions,arrdef);
write ([space,' Element type : ']);
readderef('',arrdef.ElType);
write ([space,' Range Type : ']);
readderef('',arrdef.RangeType);
arrdef.RangeLow:=getasizeint;
arrdef.RangeHigh:=getasizeint;
writeln([space,' Range : ',arrdef.RangeLow,' to ',arrdef.RangeHigh]);
write ([space,' Options : ']);
readarraydefoptions(arrdef);
if tsystemcpu(ppufile.header.common.cpu)=cpu_i8086 then
writeln([space,' Huge : ',(getbyte<>0)]);
readsymtable('symbols', arrdef);
end;
ibprocdef :
begin
def:=TPpuProcDef.Create(ParentDef);
readcommondef('Procedure definition',defoptions,def);
read_abstract_proc_def(calloption,procoptions,TPpuProcDef(def));
if (po_has_mangledname in procoptions) then
if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
writeln([space,' Mangled name : ',getansistring])
else
writeln([space,' Mangled name : ',getstring]);
writeln([space,' Number : ',getword]);
writeln([space,' Level : ',getbyte]);
write ([space,' Class : ']);
readderef('');
write ([space,' Procsym : ']);
readderef('', def.Ref);
write ([space,' File Pos : ']);
readposinfo(def);
write ([space,' Visibility : ']);
readvisibility(def);
write ([space,' SymOptions : ']);
readsymoptions(space+' ');
if (po_has_importdll in procoptions) then
writeln([space,' Import DLL : ',getstring]);
if (po_has_importname in procoptions) then
writeln([space,' Import Name : ',getstring]);
writeln([space,' Import Nr : ',getword]);
if (po_msgint in procoptions) then
writeln([space,' MsgInt : ',getlongint]);
if (po_msgstr in procoptions) then
writeln([space,' MsgStr : ',getstring]);
if (po_dispid in procoptions) then
writeln([space,' DispID: ',ppufile.getlongint]);
readprocimploptions(space,implprocoptions);
if (pio_has_inlininginfo in implprocoptions) then
begin
write ([space,' FuncretSym : ']);
readderef('');
readprocinfooptions(space);
end;
b:=ppufile.getbyte;
if b<>0 then
begin
write ([space,' Alias names : ']);
for j:=1 to b do
begin
write(ppufile.getstring);
if j<b then
write(', ');
end;
writeln;
end;
tokenbufsize:=ppufile.getlongint;
if tokenbufsize<>0 then
begin
space:=space + ' ';
write ([space,'Declaration token buffer : size = ',tokenbufsize]);
tokenbuf:=allocmem(tokenbufsize);
ppufile.getdata(tokenbuf^,tokenbufsize);
displaytokenbuffer(tokenbuf,tokenbufsize);
freemem(tokenbuf);
delete(space,1,4);
end;
if po_syscall_has_libsym in procoptions then
begin
{ library symbol for AmigaOS/MorphOS/AROS }
write ([space,' Library symbol : ']);
readderef('');
end;
if not EndOfEntry then
HasMoreInfos;
space:=' '+space;
{ parast }
readsymtable('parast', TPpuProcDef(def));
{ localst }
if (pio_has_inlininginfo in implprocoptions) then
readsymtable('inline localst');
//else if (df_generic in defoptions) then
// readsymtable('generic localst'); { not yet merged }
if (pio_has_inlininginfo in implprocoptions) then
readnodetree;
delete(space,1,4);
end;
ibprocvardef :
begin
def:=TPpuProcTypeDef.Create(ParentDef);
readcommondef('Procedural type (ProcVar) definition',defoptions,def);
read_abstract_proc_def(calloption,procoptions, TPpuProcDef(def));
writeln([space,' Symtable level :',ppufile.getbyte]);
if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
readderef('');
if not EndOfEntry then
HasMoreInfos;
space:=' '+space;
{ parast }
readsymtable('parast',TPpuProcDef(def));
delete(space,1,4);
end;
ibshortstringdef :
begin
strdef:=TPpuStringDef.Create(ParentDef);
strdef.StrType:=stShort;
readcommondef('ShortString definition',defoptions,strdef);
strdef.Len:=getbyte;
writeln([space,' Length : ',strdef.Len]);
end;
ibwidestringdef :
begin
strdef:=TPpuStringDef.Create(ParentDef);
strdef.StrType:=stWide;
readcommondef('WideString definition',defoptions,strdef);
strdef.Len:=getasizeint;
writeln([space,' Length : ',strdef.Len]);
end;
ibunicodestringdef :
begin
strdef:=TPpuStringDef.Create(ParentDef);
strdef.StrType:=stUnicode;
readcommondef('UnicodeString definition',defoptions,strdef);
strdef.Len:=getasizeint;
writeln([space,' Length : ',strdef.Len]);
writeln([space,' Encoding : ',getword]);
end;
ibansistringdef :
begin
strdef:=TPpuStringDef.Create(ParentDef);
strdef.StrType:=stAnsi;
readcommondef('AnsiString definition',defoptions,strdef);
strdef.Len:=getasizeint;
writeln([space,' Length : ',strdef.Len]);
writeln([space,' Encoding : ',getword]);
end;
iblongstringdef :
begin
strdef:=TPpuStringDef.Create(ParentDef);
strdef.StrType:=stLong;
readcommondef('Longstring definition',defoptions,strdef);
strdef.Len:=getasizeint;
writeln([space,' Length : ',strdef.Len]);
end;
ibrecorddef :
begin
objdef:=TPpuRecordDef.Create(ParentDef);
readcommondef('Record definition',defoptions, objdef);
def.Name:=getstring;
writeln([space,' Name of Record : ',objdef.Name]);
writeln([space,' Import lib/pkg : ',getstring]);
write ([space,' Options : ']);
readobjectdefoptions(objdef);
if (df_copied_def in defoptions) then
begin
Include(TPpuRecordDef(def).Options, ooCopied);
write([space,' Copied from : ']);
readderef('',objdef.Ancestor);
end
else
begin
writeln([space,' FieldAlign : ',shortint(getbyte)]);
writeln([space,' RecordAlign : ',shortint(getbyte)]);
writeln([space,' PadAlign : ',shortint(getbyte)]);
writeln([space,'UseFieldAlignment : ',shortint(getbyte)]);
writeln([space,' RecordAlignMin : ',shortint(getbyte)]);
objdef.Size:=getasizeint;
writeln([space,' DataSize : ',objdef.Size]);
writeln([space,' PaddingSize : ',getword]);
readmanagementoperatoroptions(space,'Management operators');
end;
{read the record definitions and symbols}
if not(df_copied_def in current_defoptions) then
begin
space:=' '+space;
readrecordsymtable('fields',TPpuRecordDef(def));
Delete(space,1,4);
end;
if not EndOfEntry then
HasMoreInfos;
end;
ibobjectdef :
begin
objdef:=TPpuObjectDef.Create(ParentDef);
readcommondef('Object/Class definition',defoptions,objdef);
objdef.Name:=getstring;
writeln([space,' Name of Class : ',objdef.Name]);
writeln([space,' Import lib/pkg : ',getstring]);
write ([space,' Options : ']);
readobjectdefoptions(objdef);
otb:=getbyte;
write ([space,' Type : ']);
case tobjecttyp(otb) of
odt_class : writeln('class');
odt_object : writeln('object');
odt_interfacecom : writeln('interfacecom');
odt_interfacecorba : writeln('interfacecorba');
odt_cppclass : writeln('cppclass');
odt_dispinterface : writeln('dispinterface');
odt_objcclass : writeln('objcclass');
odt_objcprotocol : writeln('objcprotocol');
odt_helper : writeln('helper');
odt_objccategory : writeln('objccategory');
odt_javaclass : writeln('Java class');
odt_interfacejava : writeln('Java interface');
else WriteWarning('Invalid object type: ' + IntToStr(b));
end;
case tobjecttyp(otb) of
odt_class, odt_cppclass, odt_objcclass, odt_javaclass:
objdef.ObjType:=otClass;
odt_object:
objdef.ObjType:=otObject;
odt_interfacecom, odt_interfacecorba, odt_interfacejava, odt_dispinterface:
objdef.ObjType:=otInterface;
odt_helper:
objdef.ObjType:=otHelper;
end;
b:=getbyte;
write ([space,' Helper Type : ']);
case thelpertype(b) of
ht_none : writeln('none');
ht_class : writeln('class helper');
ht_record : writeln('record helper');
ht_type : writeln('type helper');
else WriteWarning('Invalid helper type: ' + IntToStr(b));
end;
writeln([space,' External name : ',getstring]);
objdef.Size:=getasizeint;
writeln([space,' DataSize : ',objdef.Size]);
writeln([space,' PaddingSize : ',getword]);
writeln([space,' FieldAlign : ',shortint(getbyte)]);
writeln([space,' RecordAlign : ',shortint(getbyte)]);
writeln([space,' RecordAlignMin : ',shortint(getbyte)]);
write ([space, ' VmtField : ']);
readderef('',nil);
write ([space, ' Ancestor Class : ']);
readderef('',objdef.Ancestor);
if tobjecttyp(otb) in [odt_interfacecom,odt_interfacecorba,odt_dispinterface] then
begin
{ IIDGUID }
for j:=1to 16 do
getbyte;
objdef.IID:=getstring;
writeln([space,' IID String : ',objdef.IID]);
end;
l:=getlongint;
if l > 0 then
objdef.Options:=objdef.Options + [ooAbstractMethods];
writeln([space,' Abstract methods : ',l]);
if tobjecttyp(otb)=odt_helper then
begin
write([space,' Helper parent : ']);
readderef('',objdef.HelperParent);
end;
l:=getlongint;
writeln([space,' VMT entries: ',l]);
for j:=1 to l do
begin
write([space,' ']);
readderef('');
write([space,' Visibility: ']);
readvisibility;
end;
if tobjecttyp(otb) in [odt_class,odt_objcclass,odt_objcprotocol,odt_javaclass,odt_interfacejava] then
begin
l:=getlongint;
writeln([space,' Impl Intf Count : ',l]);
for j:=1 to l do
begin
write ([space,' - Definition : ']);
readderef('');
write ([space,' - Getter Def : ']);
readderef('');
writeln([space,' IOffset : ',getlongint]);
writeln([space,' Entry type : ',IntfEntryType2Str(getbyte)]);
end;
end;
if df_copied_def in current_defoptions then
begin
Include(objdef.Options, ooCopied);
writeln(' Copy of def: ');
readderef('',objdef.Ancestor);
end
else
begin
{read the record definitions and symbols}
space:=' '+space;
readrecordsymtable('fields',objdef);
Delete(space,1,4);
end;
if not EndOfEntry then
HasMoreInfos;
end;
ibfiledef :
begin
filedef:=TPpuFileDef.Create(ParentDef);
ReadCommonDef('File definition',defoptions,filedef);
write ([space,' Type : ']);
case getbyte of
0 : begin
writeln('Text');
filedef.FileType:=ftText;
end;
1 : begin
writeln('Typed');
filedef.FileType:=ftTyped;
write ([space,' File of Type : ']);
readderef('',filedef.TypeRef);
end;
2 : begin
writeln('Untyped');
filedef.FileType:=ftUntyped;
end;
end;
end;
ibformaldef :
begin
def:=TPpuFormalDef.Create(ParentDef);
readcommondef('Generic definition (void-typ)',defoptions,def);
TPpuFormalDef(def).IsTyped:=(getbyte<>0);
writeln([space,' Is Typed : ',TPpuFormalDef(def).IsTyped]);
end;
ibundefineddef :
begin
def:=TPpuUndefinedDef.Create(ParentDef);
readcommondef('Undefined definition (generic parameter)',defoptions,def);
end;
ibenumdef :
begin
enumdef:=TPpuEnumDef.Create(ParentDef);
readcommondef('Enumeration type definition',defoptions,enumdef);
enumdef.ElLow:=getaint;
writeln([space,' Smallest element : ',enumdef.ElLow]);
enumdef.ElHigh:=getaint;
writeln([space,' Largest element : ',enumdef.ElHigh]);
enumdef.Size:=byte(getaint);
writeln([space,' Size : ',enumdef.Size]);
if df_copied_def in defoptions then
begin
write([space,'Base enumeration type : ']);
readderef('',enumdef.CopyFrom);
end
else
begin
space:=' '+space;
readsymtable('elements',enumdef);
delete(space,1,4);
end;
if tsystemcpu(ppufile.header.common.cpu)=cpu_jvm then
begin
write([space,' Class def : ']);
readderef('');
end;
end;
ibclassrefdef :
begin
def:=TPpuClassRefDef.Create(ParentDef);
readcommondef('Class reference definition',defoptions,def);
write ([space,' Pointed Type : ']);
readderef('',TPpuClassRefDef(def).ClassRef);
end;
ibsetdef :
begin
setdef:=TPpuSetDef.Create(ParentDef);
readcommondef('Set definition',defoptions,setdef);
write ([space,' Element type : ']);
readderef('',setdef.ElType);
setdef.Size:=getasizeint;
writeln([space,' Size : ',setdef.Size]);
setdef.SetBase:=getasizeint;
writeln([space,' Set Base : ',setdef.SetBase]);
setdef.SetMax:=getasizeint;
writeln([space,' Set Max : ',setdef.SetMax]);
end;
ibvariantdef :
begin
def:=TPpuVariantDef.Create(ParentDef);
readcommondef('Variant definition',defoptions,def);
write ([space,' Varianttype : ']);
b:=getbyte;
case tvarianttype(b) of
vt_normalvariant :
writeln('Normal');
vt_olevariant :
begin
TPpuVariantDef(def).IsOLE:=True;
writeln('OLE');
end
else
WriteWarning('Invalid varianttype: ' + IntToStr(b));
end;
end;
iberror :
begin
WriteError('!! Error in PPU');
exit;
end;
ibenddefs :
break;
else
begin
WriteError('!! Skipping unsupported PPU Entry in definitions: '+IntToStr(b));
end;
end;
if (def <> nil) and (def.Parent = nil) then
def.Free;
if not EndOfEntry then
HasMoreInfos;
until false;
end;
end;
procedure readmoduleoptions(space : string);
type
{ tmoduleoption type is in unit fmodule }
tmoduleoption = (mo_none,
mo_hint_deprecated,
mo_hint_platform,
mo_hint_library,
mo_hint_unimplemented,
mo_hint_experimental,
mo_has_deprecated_msg
);
tmoduleoptions = set of tmoduleoption;
tmoduleopt=record
mask : tmoduleoption;
str : string[30];
end;
const
moduleopts=ord(high(tmoduleoption));
moduleopt : array[1..moduleopts] of tmoduleopt=(
(mask:mo_hint_deprecated; str:'Hint Deprecated'),
(mask:mo_hint_platform; str:'Hint Platform'),
(mask:mo_hint_library; str:'Hint Library'),
(mask:mo_hint_unimplemented; str:'Hint Unimplemented'),
(mask:mo_hint_experimental; str:'Hint Experimental'),
(mask:mo_has_deprecated_msg; str:'Has Deprecated Message')
);
var
moduleoptions : tmoduleoptions;
i : longint;
first : boolean;
begin
ppufile.getsmallset(moduleoptions);
if moduleoptions<>[] then
begin
first:=true;
for i:=1to moduleopts do
if (moduleopt[i].mask in moduleoptions) then
begin
if first then
first:=false
else
write(', ');
write(moduleopt[i].str);
end;
end;
writeln;
if mo_has_deprecated_msg in moduleoptions then
writeln([space,'Deprecated : ', ppufile.getstring]);
end;
{****************************************************************************
Read General Part
****************************************************************************}
procedure readinterface(silent : boolean);
var
b : byte;
sourcenumber, i : longint;
feature : tfeature;
features : tfeatures;
s : string;
begin
with ppufile do
begin
repeat
b:=readentry;
case b of
ibmodulename :
begin
CurUnit.Name:=getstring;
if not silent then
Writeln(['Module Name: ',CurUnit.Name]);
end;
ibfeatures :
begin
getsmallset(features);
Writeln('Features: ');
for feature:=low(tfeatures) to high(tfeature) do
if feature in features then
begin
str(feature,s);
s:=copy(s,3,255);
writeln([s]);
end;
end;
ibmoduleoptions:
if not silent then
readmoduleoptions(' ');
ibsourcefiles :
begin
sourcenumber:=1;
if not silent then
while not EndOfEntry do
begin
with TPpuSrcFile.Create(CurUnit.SourceFiles) do begin
Name:=getstring;
i:=getlongint;
if i >= 0 then
FileTime:=FileDateToDateTime(i);
Writeln(['Source file ',sourcenumber,' : ',Name,' ',filetimestring(i)]);
end;
inc(sourcenumber);
end;
end;
{$IFDEF MACRO_DIFF_HINT}
ibusedmacros :
begin
if not silent then
while not EndOfEntry do
begin
Write('Conditional ',getstring);
if getboolean then
write(' defined at startup')
else
write(' not defined at startup');
if getboolean then
writeln(' was used')
else
writeln;
end;
end;
{$ENDIF}
ibloadunit :
if not silent then
ReadLoadUnit;
iblinkunitofiles :
if not silent then
ReadLinkContainer('Link unit object file: ');
iblinkunitstaticlibs :
if not silent then
ReadLinkContainer('Link unit static lib: ');
iblinkunitsharedlibs :
if not silent then
ReadLinkContainer('Link unit shared lib: ');
iblinkotherofiles :
if not silent then
ReadLinkContainer('Link other object file: ');
iblinkotherstaticlibs :
if not silent then
ReadLinkContainer('Link other static lib: ');
iblinkothersharedlibs :
if not silent then
ReadLinkContainer('Link other shared lib: ');
iblinkotherframeworks:
if not silent then
ReadLinkContainer('Link framework: ');
ibjvmnamespace:
Writeln('JVM name space: '+getString);
ibmainname:
if not silent then
Writeln(['Specified main program symbol name: ',getstring]);
ibImportSymbols :
if not silent then
ReadImportSymbols;
ibderefdata :
ReadDerefData;
ibderefmap :
ReadDerefMap;
ibwpofile :
if not silent then
ReadWpoFileInfo;
ibresources :
if not silent then
ReadContainer('Resource file: ');
iborderedsymbols:
if not silent then
ReadContainer('Ordered symbol: ');
iberror :
begin
WriteError('Error in PPU');
exit;
end;
ibendinterface :
break;
else
begin
WriteError('!! Skipping unsupported PPU Entry in General Part: '+IntToStr(b));
end;
end;
until false;
end;
end;
{****************************************************************************
Read Implementation Part
****************************************************************************}
procedure readimplementation;
var
b : byte;
begin
with ppufile do
begin
repeat
b:=readentry;
case b of
ibasmsymbols :
ReadAsmSymbols;
ibloadunit :
ReadLoadUnit;
ibunitimportsyms :
ReadUnitImportSyms;
iberror :
begin
WriteError('Error in PPU');
exit;
end;
ibendimplementation :
break;
else
begin
WriteError('!! Skipping unsupported PPU Entry in Implementation: '+IntToStr(b));
end;
end;
until false;
end;
end;
procedure dofile (filename : string);
begin
{ reset }
space:='';
{ fix filename }
if pos('.',filename)=0 then
filename:=filename+'.ppu';
ppufile:=tppudumpfile.create(filename);
if not ppufile.openfile then
begin
WriteError('IO-Error when opening : '+filename+', Skipping');
exit;
end;
{ PPU File is open, check for PPU Id }
if not ppufile.CheckPPUID then
begin
WriteError(Filename+' : Not a valid PPU file, Skipping');
exit;
end;
{ Check PPU Version }
ppuversion:=ppufile.getversion;
Writeln(['Analyzing ',filename,' (v',PPUVersion,')']);
if PPUVersion<16 then
begin
WriteError(Filename+' : Old PPU Formats (<v16) are not supported, Skipping');
exit;
end;
if not SkipVersionCheck and (PPUVersion <> CurrentPPUVersion) then
begin
WriteError(Format('Unsupported PPU version %d. Expecting PPU version %d.', [PPUVersion, CurrentPPUVersion]));
exit;
end;
CurUnit:=TPpuUnitDef.Create(UnitList);
CurUnit.Version:=ppuversion;
{ Write PPU Header Information }
if (verbose and v_header)<>0 then
begin
Writeln;
Writeln('Header');
Writeln('-------');
with ppufile.header do
begin
Writeln(['Compiler version : ',ppufile.header.common.compiler shr 14,'.',
(ppufile.header.common.compiler shr 7) and $7f,'.',
ppufile.header.common.compiler and $7f]);
WriteLn(['Target processor : ',Cpu2Str(common.cpu)]);
WriteLn(['Target operating system : ',Target2Str(common.target)]);
Writeln(['Unit flags : ',PPUFlags2Str(common.flags)]);
Writeln(['FileSize (w/o header) : ',common.size]);
Writeln(['Checksum : ',hexstr(checksum,8)]);
Writeln(['Interface Checksum : ',hexstr(interface_checksum,8)]);
Writeln(['Indirect Checksum : ',hexstr(indirect_checksum,8)]);
Writeln(['Definitions stored : ',tostr(deflistsize)]);
Writeln(['Symbols stored : ',tostr(symlistsize)]);
end;
end;
with ppufile.header do
begin
CurUnit.Crc:=checksum;
CurUnit.IntfCrc:=interface_checksum;
CurUnit.TargetCPU:=Cpu2Str(common.cpu);
CurUnit.TargetOS:=Target2Str(common.target);
end;
{read the general stuff}
if (verbose and v_interface)<>0 then
begin
Writeln;
Writeln('Interface section');
Writeln('------------------');
readinterface(false);
end
{ We need derefdata from Interface }
else if verbose and (v_defs or v_syms or v_implementation)<>0 then
readinterface(true)
else
ppufile.skipuntilentry(ibendinterface);
Writeln;
Writeln('Interface symtable');
Writeln('----------------------');
readsymtableoptions('interface');
{read the definitions}
if (verbose and v_defs)<>0 then
begin
Writeln;
Writeln('Interface definitions');
Writeln('----------------------');
readdefinitions('interface', CurUnit);
end
else
ppufile.skipuntilentry(ibenddefs);
{read the symbols}
if (verbose and v_syms)<>0 then
begin
Writeln;
Writeln('Interface Symbols');
Writeln('------------------');
readsymbols('interface',CurUnit);
end
else
ppufile.skipuntilentry(ibendsyms);
{read the macro symbols}
if (verbose and v_syms)<>0 then
begin
Writeln;
Writeln('Interface Macro Symbols');
Writeln('-----------------------');
end;
if ppufile.readentry<>ibexportedmacros then
begin
WriteError('!! Error in PPU');
exit;
end;
if ppufile.getboolean then
begin
readsymtableoptions('interface macro');
{skip the definition section for macros (since they are never used) }
ppufile.skipuntilentry(ibenddefs);
{read the macro symbols}
if (verbose and v_syms)<>0 then
readsymbols('interface macro')
else
ppufile.skipuntilentry(ibendsyms);
end
else
Writeln('(no exported macros)');
{read the implementation stuff}
if (verbose and v_implementation)<>0 then
begin
Writeln;
Writeln('Implementation section');
Writeln('-----------------------');
readimplementation;
end
else
ppufile.skipuntilentry(ibendimplementation);
{read the static symtable}
Writeln;
Writeln('Implementation symtable');
Writeln('----------------------');
readsymtableoptions('implementation');
if (ppufile.header.common.flags and uf_local_symtable)<>0 then
begin
if (verbose and v_defs)<>0 then
begin
Writeln;
Writeln('Static definitions');
Writeln('----------------------');
readdefinitions('implementation', nil);
end
else
ppufile.skipuntilentry(ibenddefs);
{read the symbols}
if (verbose and v_syms)<>0 then
begin
Writeln;
Writeln('Static Symbols');
Writeln('------------------');
readsymbols('implementation');
end
else
ppufile.skipuntilentry(ibendsyms);
end;
ReadCreatedObjTypes;
FreeDerefdata;
{shutdown ppufile}
ppufile.closefile;
ppufile.free;
Writeln;
end;
procedure WriteLogo;
begin
writeln(Title+' Version '+version_string);
writeln(Copyright);
writeln;
end;
procedure help;
begin
WriteLogo;
writeln('usage: ppudump [options] <filename1> <filename2>...');
writeln;
writeln('[options] can be:');
writeln(' -F<format> Set output format to <format>');
writeln(' t - text format (default)');
writeln(' j - JSON format');
writeln(' x - XML format');
writeln(' -M Exit with ExitCode=2 if more information is available');
writeln(' -S Skip PPU version check. May lead to reading errors');
writeln(' -V<verbose> Set verbosity to <verbose>');
writeln(' H - Show header info');
writeln(' I - Show interface');
writeln(' M - Show implementation');
writeln(' S - Show interface symbols');
writeln(' D - Show interface definitions');
writeln(' A - Show all');
writeln(' -h, -? This helpscreen');
halt;
end;
var
startpara,
nrfile,i : longint;
para : string;
const
error_on_more : boolean = false;
begin
if paramcount<1 then
help;
{ turn verbose on by default }
verbose:=v_all;
{ read options }
startpara:=1;
while copy(paramstr(startpara),1,1)='-' do
begin
para:=paramstr(startpara);
case upcase(para[2]) of
'F' : begin
FreeAndNil(pout);
if Length(para) > 2 then
case upcase(para[3]) of
'T':
nostdout:=False;
'J':
begin
nostdout:=True;
pout:=TPpuJsonOutput.Create(StdOutputHandle);
end;
'X':
begin
nostdout:=True;
pout:=TPpuXmlOutput.Create(StdOutputHandle);
end;
else
begin
WriteError('Invalid output format: ' + para[3]);
Halt(1);
end;
end;
end;
'M' : error_on_more:=true;
'S' : SkipVersionCheck:=True;
'V' : begin
verbose:=0;
for i:=3 to length(para) do
case upcase(para[i]) of
'H' : verbose:=verbose or v_header;
'I' : verbose:=verbose or v_interface;
'M' : verbose:=verbose or v_implementation;
'D' : verbose:=verbose or v_defs;
'S' : verbose:=verbose or v_syms;
'A' : verbose:=verbose or v_all;
end;
end;
'H' : help;
'?' : help;
else
begin
WriteError('Invalid option: ' + para);
Halt(1);
end;
end;
inc(startpara);
end;
if not nostdout then
WriteLogo;
UnitList:=TPpuContainerDef.Create(nil);
try
UnitList.ItemsName:='';
{ process files }
for nrfile:=startpara to paramcount do
dofile (paramstr(nrfile));
if not has_errors and (pout <> nil) then
begin
pout.Init;
UnitList.Write(pout);
pout.Done;
end;
finally
UnitList.Free;
pout.Free;
end;
if has_errors then
Halt(1);
if error_on_more and
(has_more_infos or has_warnings) then
Halt(2);
end.
|