1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351
|
/* File: "setup.c" */
/* Copyright (c) 1994-2019 by Marc Feeley, All Rights Reserved. */
/*
* This module contains the routines that setup the Scheme program for
* execution.
*/
#define ___INCLUDED_FROM_SETUP
#define ___VERSION 409003
#include "gambit.h"
#include "os_setup.h"
#include "os_base.h"
#include "os_files.h"
#include "os_dyn.h"
#include "os_thread.h"
#include "os_io.h"
#include "setup.h"
#include "mem.h"
#include "c_intf.h"
#include "actlog.h"
/*---------------------------------------------------------------------------*/
/*
* Global state structure.
*/
___EXP_DATA(___global_state_struct,___gstate0);
/*
* Global variables needed by this module.
*/
___NEED_GLO(___G__23__23_kernel_2d_handlers) /* from "_kernel.scm" */
___NEED_GLO(___G__23__23_dynamic_2d_env_2d_bind)
/*---------------------------------------------------------------------------*/
/*
* Interrupt handling.
*/
/*
* '___raise_interrupt_pstate (___ps, code)' is called when an
* interrupt has occured. At some later point in time, the Gambit
* kernel will cause the Scheme procedure ##interrupt-handler to be
* called with a single integer argument indicating which interrupt
* has been received. Interrupt codes are defined in "gambit.h".
* Currently, the following codes are defined:
*
* ___INTR_SYNC_OP a synchronous op. over all processors is requested
* ___INTR_TERMINATE a termination of the process is requested
* ___INTR_HEARTBEAT heartbeat time interval has elapsed
* ___INTR_USER user has interrupted the program (e.g. ctrl-C)
* ___INTR_GC a garbage collection has finished
* ___INTR_HIGH_LEVEL a Scheme-level interrupt is requested
*/
___EXP_FUNC(void,___raise_interrupt_pstate)
___P((___processor_state ___ps,
int code),
(___ps,
code)
___processor_state ___ps;
int code;)
{
/*
* Note: ___raise_interrupt_pstate may be called before the
* processor state is initialized. As a consequence, the
* interrupt(s) received before the initialization of the processor
* state will be ignored.
*/
#ifdef CALL_GC_FREQUENTLY
if (code != ___INTR_USER)
return;
#endif
if (___INTERRUPT_REQ(___ps->intr_flag[code] = ___FIX(1)<<code,
___ps->intr_mask))
{
___STACK_TRIP_ON();
___SHARED_MEMORY_BARRIER(); /* make sure write happens promptly */
___device_select_abort (___ps); /* abort ___device_select if waiting */
}
}
___EXP_FUNC(void,___raise_interrupt_vmstate)
___P((___virtual_machine_state ___vms,
int code),
(___vms,
code)
___virtual_machine_state ___vms;
int code;)
{
int i;
for (i=___vms->processor_count-1; i>=0; i--)
___raise_interrupt_pstate (___PSTATE_FROM_PROCESSOR_ID(i,___vms), code);
}
___EXP_FUNC(void,___raise_interrupt)
___P((int code),
(code)
int code;)
{
___virtual_machine_state ___vms = &___GSTATE->vmstate0;
#ifdef ___SINGLE_VM
___raise_interrupt_vmstate (___vms, code);
#else
#if 0
/* TODO: investigate why this deadlocks the process... probably recursive locking of mutex */
___MUTEX_LOCK(___GSTATE->vm_list_mut);
#endif
do
{
___vms = ___vms->prev;
___raise_interrupt_vmstate (___vms, code);
}
while (___vms != &___GSTATE->vmstate0);
#if 0
___MUTEX_UNLOCK(___GSTATE->vm_list_mut);
#endif
#endif
}
___EXP_FUNC(void,___begin_interrupt_service_pstate)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___STACK_TRIP_OFF();
}
___EXP_FUNC(___BOOL,___check_interrupt_pstate)
___P((___processor_state ___ps,
int code),
(___ps,
code)
___processor_state ___ps;
int code;)
{
if ((___ps->intr_flag[code] & ~___ps->intr_mask) != ___FIX(0))
{
___ps->intr_flag[code] = ___FIX(0);
return 1;
}
return 0;
}
___EXP_FUNC(void,___end_interrupt_service_pstate)
___P((___processor_state ___ps,
int code),
(___ps,
code)
___processor_state ___ps;
int code;)
{
if (___ps->intr_enabled != ___FIX(0))
{
#ifdef CALL_HANDLER_AT_EVERY_POLL
___STACK_TRIP_ON();
#else
while (code < ___NB_INTRS)
{
if ((___ps->intr_flag[code] & ___ps->intr_enabled & ~___ps->intr_mask) != ___FIX(0))
{
___STACK_TRIP_ON();
break;
}
code++;
}
#endif
}
}
___EXP_FUNC(void,___disable_interrupts_pstate)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
/* Disable all interrupts except ___INTR_SYNC_OP */
___ps->intr_enabled = ___FIX(1<<___INTR_SYNC_OP);
___begin_interrupt_service_pstate (___ps);
___end_interrupt_service_pstate (___ps, 0);
}
___EXP_FUNC(void,___enable_interrupts_pstate)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___ps->intr_enabled = ___FIX((1<<___NB_INTRS)-1);
___begin_interrupt_service_pstate (___ps);
___end_interrupt_service_pstate (___ps, 0);
}
___HIDDEN void setup_interrupts_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
int i;
/* Disable all interrupts except ___INTR_SYNC_OP */
___ps->intr_enabled = ___FIX(1<<___INTR_SYNC_OP);
/* Mask no interrupts */
___ps->intr_mask = ___FIX(0);
/* None of the interrupts are requested */
for (i=0; i<___NB_INTRS; i++)
___ps->intr_flag[i] = ___FIX(0);
___begin_interrupt_service_pstate (___ps);
___end_interrupt_service_pstate (___ps, 0);
}
___HIDDEN void setup_processor_scmobj_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
int i;
___SCMOBJ p = ___PROCESSOR_SCMOBJ(___ps);
___SUBTYPED_HEADER_SET(p, ___MAKE_HD((___PROCESSOR_SIZE<<___LWS),___sSTRUCTURE,___PERM));
for (i=0; i<___PROCESSOR_SIZE; i++)
___VECTORSET(p,___FIX(i),___FAL)
/*
* Setup primitive lock in locked state (the processor will be
* unlocked in _thread.scm).
*/
___VECTORSET(p,___FIX(___OBJ_LOCK1),___FIX(0))
___VECTORSET(p,___FIX(___OBJ_LOCK2),___FIX(0))
___PRIMITIVELOCK(p,___FIX(___OBJ_LOCK1),___FIX(___OBJ_LOCK2))
}
___HIDDEN void setup_vm_scmobj_vmstate
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
int i;
___SCMOBJ vm = ___VM_SCMOBJ(___vms);
___SUBTYPED_HEADER_SET(vm, ___MAKE_HD((___VM_SIZE<<___LWS),___sSTRUCTURE,___PERM));
for (i=0; i<___VM_SIZE; i++)
___VECTORSET(vm,___FIX(i),___FAL)
/*
* Setup primitive lock in locked state (the VM will be
* unlocked in _thread.scm).
*/
___VECTORSET(vm,___FIX(___OBJ_LOCK1),___FIX(0))
___VECTORSET(vm,___FIX(___OBJ_LOCK2),___FIX(0))
___PRIMITIVELOCK(vm,___FIX(___OBJ_LOCK1),___FIX(___OBJ_LOCK2))
}
/*---------------------------------------------------------------------------*/
/*
* Synchronous operations.
*/
#define WASTE_TIME() ___CPU_RELAX()
#define COMBINING_OP(op) ((op)&3)
#define COMBINING_AND 1
#define COMBINING_ADD 2
#define COMBINING_MAX 3
#define OP_MAKE(priority,combining) (((priority)<<2)+(combining))
#define OP_PROCESSOR_0_THROW_ERROR OP_MAKE( 0,0)
#define OP_SET_PROCESSOR_COUNT OP_MAKE( 1,0)
#define OP_VM_RESIZE OP_MAKE( 2,0)
#define OP_GARBAGE_COLLECT OP_MAKE( 3,COMBINING_ADD)
#define OP_FDSET_RESIZE OP_MAKE(10,COMBINING_MAX)
#define OP_ACTLOG_START OP_MAKE(61,0)
#define OP_ACTLOG_STOP OP_MAKE(62,0)
#define OP_NOOP OP_MAKE(63,0)
#define SYNC_WAITING -1
#define SYNC_INIT_MSG(var) var = SYNC_WAITING
#define SYNC_GET_MSG_SPIN_TIMEOUT 2000
#define SYNC_GET_MSG(expr) \
do { \
int loops_left = SYNC_GET_MSG_SPIN_TIMEOUT; \
while ((expr) == SYNC_WAITING) \
{ \
WASTE_TIME(); \
if (--loops_left == 0) \
{ \
loops_left = SYNC_GET_MSG_SPIN_TIMEOUT; \
___MUTEX_LOCK(___ps->sync_mut); \
if ((expr) == SYNC_WAITING) \
___sync_wait (___ps); \
___MUTEX_UNLOCK(___ps->sync_mut); \
} \
} \
} while (0)
#define SYNC_SEND_MSG(ps,field,val) \
do { \
___MUTEX_LOCK(ps->sync_mut); \
ps->field = val; \
___SHARED_MEMORY_BARRIER(); /* make sure write happens promptly */ \
___MUTEX_UNLOCK(ps->sync_mut); \
___CONDVAR_SIGNAL(ps->sync_cv); \
} while (0)
___HIDDEN void ___sync_wait
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
#ifndef ___SINGLE_THREADED_VMS
___ACTLOG_BEGIN_PS(sync_wait,gray);
___CONDVAR_WAIT(___ps->sync_cv, ___ps->sync_mut);
___ACTLOG_END_PS();
#endif
}
___HIDDEN int barrier_sync_op
___P((___PSD
___sync_op_struct *sop_ptr),
(___PSV
sop_ptr)
___PSDKR
___sync_op_struct *sop_ptr;)
{
#ifdef ___SINGLE_THREADED_VMS
return 0;
#else
___PSGET
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
int id = ___PROCESSOR_ID(___ps, ___vms); /* id of this processor */
int child_id1 = id*2+1; /* id of child 1 */
int child_id2 = id*2+2; /* id of child 2 */
int n = ___vms->processor_count; /* processor count */
___sync_op_struct sop = *sop_ptr;
int sid = id;
/*
* This function performs a barrier synchronization by imposing a
* tree structure on the set of processors in this Gambit VM.
*/
/*
* Check operations from children processors and self to
* determine the highest priority operation.
*/
if (child_id1 < n)
{
int sid1;
___sync_op_struct sop1;
SYNC_GET_MSG(sid1 = ___ps->sync_id1);
SYNC_INIT_MSG(___ps->sync_id1);
sop1 = ___ps->sync_op1;
if (sop1.op < sop.op)
{
sop = sop1;
sid = sid1;
}
else if (sop1.op == sop.op && COMBINING_OP(sop1.op))
{
switch (COMBINING_OP(sop1.op))
{
case COMBINING_AND:
sop1.arg[0] &= sop.arg[0];
break;
case COMBINING_ADD:
sop1.arg[0] += sop.arg[0];
break;
case COMBINING_MAX:
if (sop1.arg[0] < sop.arg[0]) sop1.arg[0] = sop.arg[0];
break;
}
sop = sop1;
sid = sid1;
}
if (child_id2 < n)
{
int sid2;
___sync_op_struct sop2;
SYNC_GET_MSG(sid2 = ___ps->sync_id2);
SYNC_INIT_MSG(___ps->sync_id2);
sop2 = ___ps->sync_op2;
if (sop2.op < sop.op)
{
sop = sop2;
sid = sid2;
}
else if (sop2.op == sop.op && COMBINING_OP(sop2.op))
{
switch (COMBINING_OP(sop2.op))
{
case COMBINING_AND:
sop2.arg[0] &= sop.arg[0];
break;
case COMBINING_ADD:
sop2.arg[0] += sop.arg[0];
break;
case COMBINING_MAX:
if (sop2.arg[0] < sop.arg[0]) sop2.arg[0] = sop.arg[0];
break;
}
sop = sop2;
sid = sid2;
}
}
}
/*
* Propagate highest priority operation to parent processor.
*/
if (id == 0)
{
/*
* Special case operation that sets processor_count because this
* information is used by the barrier_sync algorithm itself.
*/
if (sop.op == OP_SET_PROCESSOR_COUNT)
___vms->processor_count = sop.arg[0];
}
else
{
___processor_state parent = ___PSTATE_FROM_PROCESSOR_ID((id-1)>>1,___vms);
if (id & 1)
{
parent->sync_op1 = sop;
SYNC_SEND_MSG(parent, sync_id1, sid);
}
else
{
parent->sync_op2 = sop;
SYNC_SEND_MSG(parent, sync_id2, sid);
}
/*
* Wait for parent to reply with winning operation.
*/
SYNC_GET_MSG(sid = ___ps->sync_id0);
SYNC_INIT_MSG(___ps->sync_id0);
sop = ___ps->sync_op0;
}
/*
* Propagate winning operation to children processors.
*/
if (child_id1 < n)
{
___processor_state child1 = ___PSTATE_FROM_PROCESSOR_ID(child_id1,___vms);
child1->sync_op0 = sop;
SYNC_SEND_MSG(child1, sync_id0, sid);
if (child_id2 < n)
{
___processor_state child2 = ___PSTATE_FROM_PROCESSOR_ID(child_id2,___vms);
child2->sync_op0 = sop;
SYNC_SEND_MSG(child2, sync_id0, sid);
}
}
/*
* Return winning operation and id of originating processor.
*/
*sop_ptr = sop;
return sid;
#endif
}
void barrier_sync_noop
___P((___PSDNC),
(___PSVNC)
___PSDKR)
{
#ifndef ___SINGLE_THREADED_VMS
___PSGET
___sync_op_struct sop;
sop.op = OP_NOOP;
barrier_sync_op (___PSP &sop);
#endif
}
___SCMOBJ ___setup_pstate
___P((___processor_state ___ps,
___virtual_machine_state ___vms),
());
void ___cleanup_pstate
___P((___processor_state ___ps),
());
___SCMOBJ ___run
___P((___PSD
___SCMOBJ thunk),
());
void execute_sync_op_loop
___P((___PSD
___sync_op_struct *sop_ptr,
___BOOL first_iter),
());
void on_all_processors
___P((___PSD
___sync_op_struct *sop_ptr),
());
void ___run_and_throw_error_on_processor_0
___P((___PSD
___SCMOBJ thunk),
(___PSV
thunk)
___PSDKR
___SCMOBJ thunk;)
{
___PSGET
___SCMOBJ ___err;
___sync_op_struct sop;
/*
* Start the processor's execution by a call to thunk. This call
* will return when the processor's execution terminates, typically
* when the Gambit VM terminates normally or with an error.
*/
___err = ___run (___PSP thunk);
/*
* The error code must be sent to processor 0 because it is the one
* that must handle this error code (terminate the VM) and it has
* started the VM.
*/
sop.op = OP_PROCESSOR_0_THROW_ERROR;
sop.arg[0] = ___err;
on_all_processors (___PSP &sop);
/*
* Participate in future synchronous operations (this is needed
* because the cleanup and termination of a processor is done using
* a synchronous operation).
*/
for (;;)
service_sync_op (___PSPNC);
}
___HIDDEN void start_processor_execution
___P((___thread *self),
(self)
___thread *self;)
{
___processor_state ___ps = ___CAST(___processor_state,self->data_ptr);
___SCMOBJ thunk = self->data_scmobj;
___sync_op_struct sop;
/*
* Setup current OS thread so that it can find the processor state
* it is running.
*/
___thread_set_pstate (___ps);
/*
* Participate in the synchronous operation that initiated the
* resizing of the VM.
*/
sop.op = OP_NOOP;
execute_sync_op_loop (___PSP &sop, 0);
/*
* Start processor's execution by a call to thunk. The processor's
* termination code will be propagated to processor 0 which will
* call ___throw_error with this code, normally terminating the VM.
*/
___run_and_throw_error_on_processor_0 (___PSP thunk);
}
___EXP_FUNC(void,___throw_error)
___P((___PSD
___SCMOBJ err),
(___PSV
err)
___PSDKR
___SCMOBJ err;)
{
___PSGET
___THROW (err);
}
___EXP_FUNC(void,___propagate_error)
___P((___PSD
___SCMOBJ err),
(___PSV
err)
___PSDKR
___SCMOBJ err;)
{
___PSGET
if (err != ___FIX(___NO_ERR))
{
___throw_error (___PSP err);
}
}
___SCMOBJ ___vm_resize_pstate
___P((___processor_state ___ps,
___SCMOBJ thunk,
___WORD target_processor_count),
(___ps,
thunk,
target_processor_count)
___processor_state ___ps;
___SCMOBJ thunk;
___WORD target_processor_count;)
{
___SCMOBJ err = ___FIX(___NO_ERR);
#ifndef ___SINGLE_THREADED_VMS
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
int id = ___PROCESSOR_ID(___ps, ___vms); /* id of this processor */
___sync_op_struct sop;
int initial = ___vms->processor_count;
if (id == 0)
{
___vms->mem.target_processor_count_ = target_processor_count;
#ifdef ___ACTIVITY_LOG
if (target_processor_count > ___vms->actlog.max_processor_count)
___vms->actlog.max_processor_count = target_processor_count;
#endif
}
if (___vms->mem.the_msections_->nb_sections - ___vms->mem.nb_msections_assigned_ <
___MIN_NB_MSECTIONS_PER_PROCESSOR * (target_processor_count - initial))
{
if (___garbage_collect_pstate (___ps, 0))
{
/*
* A heap overflow occurred, indicating the VM has
* insufficient space to accomodate the target number of
* processors.
*/
if (id == 0)
___vms->mem.target_processor_count_ = initial;
return ___FIX(___HEAP_OVERFLOW_ERR);
}
}
if (id != 0)
{
/*
* Wait for processor 0 to set ___vms->processor_count.
*/
BARRIER();
/*
* Terminate current processor if it is no longer needed.
*/
if (id >= target_processor_count)
{
___cleanup_pstate (___ps);
___thread_exit (); /* this call does not return */
}
}
else
{
int i;
/* Setup processor state of each additional processor */
for (i=initial; i<target_processor_count; i++)
{
___processor_state ps = ___PSTATE_FROM_PROCESSOR_ID(i,___vms);
if ((err = ___setup_pstate (ps, ___vms))
!= ___FIX(___NO_ERR))
{
while (--i >= initial)
___cleanup_pstate (ps);
BARRIER();
return err;
}
}
/*
* Set processor_count synchronously.
*/
sop.op = OP_SET_PROCESSOR_COUNT;
sop.arg[0] = target_processor_count;
barrier_sync_op (___PSP &sop);
if (target_processor_count < initial)
{
/*
* Join processors that are reclaimed when number of
* processors shrinks.
*/
for (i=initial-1; i>=target_processor_count; i--)
{
___processor_state ps = ___PSTATE_FROM_PROCESSOR_ID(i,___vms);
___thread *t = &ps->os_thread;
___thread_join (t); /* ignore error */
}
}
else
{
/*
* Create new processors when number of processors grows.
*/
for (i=initial; i<target_processor_count; i++)
{
___processor_state ps = ___PSTATE_FROM_PROCESSOR_ID(i,___vms);
___thread *t = &ps->os_thread;
t->start_fn = start_processor_execution;
t->data_ptr = ___CAST(void*,ps);
t->data_scmobj = thunk;
if ((err = ___thread_create (t)) != ___FIX(___NO_ERR))
{
/* TODO: improve error handling */
static char *msgs[] = { "Could not create OS thread", NULL };
___fatal_error (msgs);
}
}
}
}
#endif
return err;
}
void execute_sync_op
___P((___PSD
___sync_op_struct *sop_ptr),
(___PSV
sop_ptr)
___PSDKR
___sync_op_struct *sop_ptr;)
{
___PSGET
switch (sop_ptr->op)
{
case OP_VM_RESIZE:
sop_ptr->arg[0] = ___vm_resize_pstate (___ps, sop_ptr->arg[0], sop_ptr->arg[1]);
break;
case OP_GARBAGE_COLLECT:
sop_ptr->arg[0] = ___garbage_collect_pstate (___ps, sop_ptr->arg[0]);
break;
#ifdef USE_FDSET_RESIZING
case OP_FDSET_RESIZE:
___fdset_resize_pstate (___ps, sop_ptr->arg[0]);
break;
#endif
case OP_ACTLOG_START:
___actlog_start_pstate (___ps);
break;
case OP_ACTLOG_STOP:
___actlog_stop_pstate (___ps);
break;
}
}
void execute_sync_op_loop
___P((___PSD
___sync_op_struct *sop_ptr,
___BOOL first_iter),
(___PSV
sop_ptr,
first_iter)
___PSDKR
___sync_op_struct *sop_ptr;
___BOOL first_iter;)
{
___PSGET
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
int id = ___PROCESSOR_ID(___ps,___vms); /* id of this processor */
___SCMOBJ ___err = ___FIX(___NO_ERR);
for (;;)
{
___sync_op_struct sop = *sop_ptr;
int winner_id = barrier_sync_op (___PSP &sop);
if (first_iter)
{
/*
* Reset ___INTR_SYNC_OP interrupt flag synchronously so that
* no interrupt is ignored (this would cause the barrier
* synchronization to get out of sync).
*/
___ps->intr_flag[___INTR_SYNC_OP] = ___FIX(0);
}
if (sop.op == OP_NOOP)
{
/*
* Stop looping when all operations performed, but
* must loop at least twice to reset ___INTR_SYNC_OP flag.
*/
if (!first_iter)
break;
}
else
{
if (sop.op == OP_PROCESSOR_0_THROW_ERROR)
{
if (___err == ___FIX(___NO_ERR))
___err = sop.arg[0];
}
else
execute_sync_op (___PSP &sop);
if (sop.op == sop_ptr->op &&
(winner_id == id || COMBINING_OP(sop.op)))
{
*sop_ptr = sop; /* return result */
sop_ptr->op = OP_NOOP; /* mark operation as executed */
}
}
first_iter = 0;
}
if (id == 0 && ___err != ___FIX(___NO_ERR))
___throw_error (___PSP ___err);
}
void service_sync_op
___P((___PSDNC),
(___PSVNC)
___PSDKR)
{
___PSGET
___sync_op_struct sop;
sop.op = OP_NOOP;
___ACTLOG_BEGIN(service_sync_op,_);
execute_sync_op_loop (___PSP &sop, 1);
___ACTLOG_END();
}
void on_all_processors
___P((___PSD
___sync_op_struct *sop_ptr),
(___PSV
sop_ptr)
___PSDKR
___sync_op_struct *sop_ptr;)
{
___PSGET
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
/* force processors to call service_sync_op */
___ACTLOG_BEGIN(on_all,_);
___raise_interrupt_vmstate (___vms, ___INTR_SYNC_OP);
execute_sync_op_loop (___PSP sop_ptr, 1);
___ACTLOG_END();
}
___EXP_FUNC(___SCMOBJ,___current_vm_resize)
___P((___PSD
___SCMOBJ thunk,
int target_processor_count),
(___PSV
thunk,
target_processor_count)
___PSDKR
___SCMOBJ thunk;
int target_processor_count;)
{
___PSGET
___sync_op_struct sop;
if (target_processor_count > ___MAX_PROCESSORS)
target_processor_count = ___MAX_PROCESSORS;
sop.op = OP_VM_RESIZE;
sop.arg[0] = thunk;
sop.arg[1] = target_processor_count;
on_all_processors (___PSP &sop);
return sop.arg[0];
}
___EXP_FUNC(___BOOL,___garbage_collect)
___P((___PSD
___SIZE_TS requested_words_still),
(___PSV
requested_words_still)
___PSDKR
___SIZE_TS requested_words_still;)
{
___PSGET
___sync_op_struct sop;
sop.op = OP_GARBAGE_COLLECT;
sop.arg[0] = requested_words_still;
on_all_processors (___PSP &sop);
return sop.arg[0] != 0;
}
#ifdef USE_FDSET_RESIZING
___EXP_FUNC(___BOOL, ___fdset_resize)
___P((int fd1,
int fd2),
(fd1,
fd2)
int fd1;
int fd2;)
{
___processor_state ___ps = ___PSTATE;
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
___sync_op_struct sop;
int newsize;
int maxfd = (fd2 > fd1) ? fd2 : fd1;
if (maxfd < ___vms->os.fdset.size)
return 1;
sop.op = OP_FDSET_RESIZE;
sop.arg[0] = maxfd;
on_all_processors (___PSP &sop);
return !___vms->os.fdset.overflow;
}
#endif
___EXP_FUNC(void,___actlog_start)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
#ifdef ___ACTIVITY_LOG
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
___sync_op_struct sop;
sop.op = OP_ACTLOG_START;
on_all_processors (___PSP &sop);
___vms->actlog.auto_dump = 0;
#endif
}
___EXP_FUNC(void,___actlog_stop)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
#ifdef ___ACTIVITY_LOG
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
___sync_op_struct sop;
sop.op = OP_ACTLOG_STOP;
on_all_processors (___PSP &sop);
___vms->actlog.auto_dump = 0;
#endif
}
/*---------------------------------------------------------------------------*/
/*
* Alignment of objects.
*/
___HIDDEN ___SCMOBJ *align
___P((___SCMOBJ *from,
___SIZE_TS words,
int need_64bit_alignment),
(from,
words,
need_64bit_alignment)
___SCMOBJ *from;
___SIZE_TS words;
int need_64bit_alignment;)
{
___SCMOBJ *to;
#if ___WS == 4
if (need_64bit_alignment) /* body must be aligned at 8 byte multiple */
to = ___ALIGNUP((from+___SUBTYPED_BODY), 8) - ___SUBTYPED_BODY;
else
#endif
to = ___ALIGNUP(from, ___WS);
if (from != to)
{
/* move object up */
int i;
for (i=words-1; i>=0; i--)
to[i] = from[i];
}
return to;
}
___HIDDEN ___SCMOBJ align_subtyped
___P((___SCMOBJ *ptr),
(ptr)
___SCMOBJ *ptr;)
{
___SCMOBJ head = ptr[0];
int subtype = ___HD_SUBTYPE(head);
int words = ___HD_WORDS(head);
return ___SUBTYPED_FROM_START(align (ptr,
words+___SUBTYPED_BODY,
subtype>=___sS64VECTOR));
}
/*---------------------------------------------------------------------------*/
/*
* Routines to setup a module for execution.
*/
___HIDDEN ___mod_or_lnk linker_to_mod_or_lnk
___P((___mod_or_lnk (*linker) (___global_state)),
(linker)
___mod_or_lnk (*linker) ();)
{
___mod_or_lnk mol = linker (___GSTATE);
if (mol->module.version != -1 && mol->module.kind == ___LINKFILE_KIND)
{
___linkinfo *p = mol->linkfile.linkertbl;
while (p->mol != 0)
{
p->mol = linker_to_mod_or_lnk
(___CAST(___mod_or_lnk (*) ___P((___global_state),()),p->mol));
p++;
}
}
return mol;
}
typedef struct fem_context
{
___processor_state ps;
int module_count;
___SCMOBJ program_descr;
___UTF_8STRING module_script_line;
___SCMOBJ flags;
} fem_context;
___HIDDEN ___SCMOBJ for_each_module
___P((fem_context *ctx,
___mod_or_lnk mol,
___SCMOBJ (*proc) (fem_context*, ___module_struct*)),
(ctx,
mol,
proc)
fem_context *ctx;
___mod_or_lnk mol;
___SCMOBJ (*proc) ();)
{
if (mol->module.kind == ___LINKFILE_KIND)
{
___linkinfo *p = mol->linkfile.linkertbl;
while (p->mol != 0)
{
___SCMOBJ e;
___SCMOBJ save = ctx->flags;
ctx->flags = p->flags;
e = for_each_module (ctx, p->mol, proc);
ctx->flags = save;
if (e != ___FIX(___NO_ERR))
return e;
p++;
}
return ___FIX(___NO_ERR);
}
else
{
return proc (ctx, ___CAST(___module_struct*,mol));
}
}
___HIDDEN void fixref
___P((___module_struct *module,
___SCMOBJ *p),
(module,
p)
___module_struct *module;
___SCMOBJ *p;)
{
___SCMOBJ v = *p;
int n = ___INT(v);
switch (___TYP(v))
{
case ___tMEM1:
if (n < 0)
*p = ___CAST(___SCMOBJ*,module->keytbl)[-1-n];
else if (n < module->subcount)
*p = ___CAST(___SCMOBJ*,module->subtbl)[n];
else
*p = ___SUBTYPED_FROM_BODY(&module->lbltbl[n-module->subcount].entry_or_descr);
break;
case ___tMEM2:
if (n < 0)
*p = ___CAST(___SCMOBJ*,module->symtbl)[-1-n];
else
*p = ___PAIR_FROM_START(&___CAST(___SCMOBJ*,module->cnstbl)[
n*(___PAIR_BODY+___PAIR_SIZE)]);
break;
}
}
___HIDDEN ___SCMOBJ make_global
___P((___processor_state ___ps,
___UTF_8STRING str,
int supply,
___glo_struct **glo),
(___ps,
str,
supply,
glo)
___processor_state ___ps;
___UTF_8STRING str;
int supply;
___glo_struct **glo;)
{
___glo_struct *g;
___SCMOBJ sym = ___make_symkey_from_UTF_8_string (str, ___sSYMBOL);
if (___FIXNUMP(sym))
return sym;
sym = ___make_global_var (sym);
if (___FIXNUMP(sym))
return sym;
g = ___GLOBALVARSTRUCT(sym);
if (___ps != NULL)
{
/*
* If the variable is supplied by the module, mark it specially
* so that it won't be flagged as an undefined variable.
*/
if (supply && ___GLOCELL(g->val) == ___UNB1)
___GLOCELL(g->val) = ___UNB2;
}
*glo = g;
return ___FIX(___NO_ERR);
}
___HIDDEN ___SCMOBJ setup_module_fixup
___P((fem_context *ctx,
___module_struct *module),
(ctx,
module)
fem_context *ctx;
___module_struct *module;)
{
int i, j;
int flags;
___FAKEWORD *glotbl;
int supcount;
___UTF_8STRING *glo_names;
___SCMOBJ *symtbl;
int symcount;
___UTF_8STRING *sym_names;
___SCMOBJ *keytbl;
int keycount;
___UTF_8STRING *key_names;
___SCMOBJ *lp;
___label_struct *lbltbl;
___label_struct *new_lbltbl;
int lblcount;
___SCMOBJ *ofdtbl;
int ofd_length;
___SCMOBJ *cnstbl;
int cnscount;
___SCMOBJ *subtbl;
int subcount;
/* TODO: make this phase atomic for when there are multiple VMs? */
lblcount = module->lblcount;
if (lblcount > 0)
ctx->module_count++;
flags = module->flags;
if (flags & ___SETUP_FIXUP_DONE)
return ___FIX(___NO_ERR);
module->flags = flags | ___SETUP_FIXUP_DONE;
glotbl = module->glotbl;
supcount = module->supcount;
glo_names = module->glo_names;
symtbl = ___CAST(___SCMOBJ*,module->symtbl);
symcount = module->symcount;
sym_names = module->sym_names;
keytbl = ___CAST(___SCMOBJ*,module->keytbl);
keycount = module->keycount;
key_names = module->key_names;
lp = module->lp;
lbltbl = module->lbltbl;
ofdtbl = module->ofdtbl;
ofd_length = module->ofd_length;
cnstbl = module->cnstbl;
cnscount = module->cnscount;
subtbl = ___CAST(___SCMOBJ*,module->subtbl);
subcount = module->subcount;
/*
* Check that the version of the compiler used to compile the module
* is compatible with the compiler used to compile the runtime
* system.
*/
if (module->version < ___VERSION)
return ___FIX(___MODULE_VERSION_TOO_OLD_ERR);
if (module->version > ___VERSION)
return ___FIX(___MODULE_VERSION_TOO_NEW_ERR);
/* Align label table */
if (lblcount > 0)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
new_lbltbl = ___alloc_mem_code (lblcount*___LABEL_SIZE*___WS);
memmove (new_lbltbl, lbltbl, lblcount*___LABEL_SIZE*___WS);
#else
new_lbltbl = ___CAST(___label_struct*,
align (___CAST(___SCMOBJ*,lbltbl),
lblcount*___LABEL_SIZE,
0));
#endif
module->lbltbl = new_lbltbl;
}
/* Align pair table */
cnstbl = align (cnstbl, (___PAIR_BODY+___PAIR_SIZE)*cnscount, 0);
module->cnstbl = cnstbl;
/* Setup module's global variable table */
if (glo_names != 0)
{
/*
* Create global variables in reverse order so that global
* variables bound to c-lambdas are created last.
*/
___processor_state ___ps = ctx->ps;
i = 0;
while (glo_names[i] != 0)
i++;
while (i-- > 0)
{
___glo_struct *glo = 0;
___SCMOBJ e = make_global (___ps, glo_names[i], i<supcount, &glo);
if (e != ___FIX(___NO_ERR))
return e;
glotbl[i] = ___CAST(___FAKEWORD,glo);
}
}
/* Setup module's symbol table */
if (sym_names != 0)
{
i = 0;
while (sym_names[i] != 0)
{
___SCMOBJ sym = ___make_symkey_from_UTF_8_string (sym_names[i], ___sSYMBOL);
if (___FIXNUMP(sym))
return sym;
symtbl[i] = sym;
i++;
}
}
else
{
for (i=symcount-1; i>=0; i--)
symtbl[i] = ___SUBTYPED_FROM_START(___ALIGNUP(symtbl[i], ___WS));
}
/* Setup module's keyword table */
if (key_names != 0)
{
i = 0;
while (key_names[i] != 0)
{
___SCMOBJ key = ___make_symkey_from_UTF_8_string (key_names[i], ___sKEYWORD);
if (___FIXNUMP(key))
return key;
keytbl[i] = key;
i++;
}
}
else
{
for (i=keycount-1; i>=0; i--)
keytbl[i] = ___SUBTYPED_FROM_START(___ALIGNUP(keytbl[i], ___WS));
}
/* Setup module's subtyped object table */
for (i=subcount-1; i>=0; i--)
subtbl[i] = align_subtyped (___CAST(___SCMOBJ*,subtbl[i]));
/* Fix reference in module's descriptor */
fixref (module, &module->moddescr);
/* Fix references in module's pair table */
for (i=cnscount-1; i>=0; i--)
{
fixref (module,
cnstbl
+ i*(___PAIR_BODY+___PAIR_SIZE)
+ (___PAIR_BODY+___PAIR_CAR));
fixref (module,
cnstbl
+ i*(___PAIR_BODY+___PAIR_SIZE)
+ (___PAIR_BODY+___PAIR_CDR));
}
/* Fix references in module's subtyped object table */
for (j=subcount-1; j>=0; j--)
{
___SCMOBJ *p = ___SUBTYPED_TO_START(subtbl[j]);
___SCMOBJ head = p[0];
int subtype = ___HD_SUBTYPE(head);
int words = ___HD_WORDS(head);
switch (subtype)
{
case ___sSYMBOL:
case ___sKEYWORD:
case ___sVECTOR:
case ___sSTRUCTURE:
case ___sRATNUM:
case ___sCPXNUM:
case ___sBOXVALUES:
p += ___SUBTYPED_BODY;
for (i=0; i<words; i++)
fixref (module, p+i);
}
}
/* Align module's out-of-line frame descriptor table */
ofdtbl = ___CAST(___SCMOBJ*,align (ofdtbl, ofd_length, 0));
/* Align module's label table */
if (lblcount > 0)
{
#ifdef ___SUPPORT_LABEL_VALUES
void **hlbl_ptr = 0;
#endif
___host current_host = 0;
___SCMOBJ *ofd_alloc;
ofd_alloc = ofdtbl;
for (i=0; i<lblcount; i++)
{
___SCMOBJ lbl = ___SUBTYPED_FROM_BODY(&new_lbltbl[i].entry_or_descr);
___SCMOBJ head = ___SUBTYPED_HEADER(lbl);
if (___TESTHEADERTAG(head,___sVECTOR))
{
/*
* Setup name returned by
* (##subprocedure-parent-name proc)
*/
___UTF_8STRING name =
___CAST(___UTF_8STRING, ___LABEL_NAME_GET(lbl));
if (name == 0)
___LABEL_NAME_SET(lbl, ___FAL);
else
{
/* TODO: the time needed to create these symbols dynamically dominates the module setup time... optimize by using the local symbol table... this may require changes to the linker */
___SCMOBJ sym =
___find_symkey_from_UTF_8_string (name, ___sSYMBOL);
if (___FIXNUMP(sym))
return sym;
if (sym == ___FAL)
return ___FIX(___UNKNOWN_ERR);
___LABEL_NAME_SET(lbl, sym);
}
/*
* Setup debugging information returned by
* (##subprocedure-parent-info proc)
*/
fixref (module, ___SUBTYPED_TO(lbl, ___LABEL_INFO));
#ifdef ___SUPPORT_LABEL_VALUES
if (hlbl_ptr != 0)
hlbl_ptr++; /* skip INTRO label */
#endif
}
else
{
#ifdef ___SUPPORT_LABEL_VALUES
if (flags & ___USES_INDIRECT_GOTO)
{
/*
* The module uses the indirect goto statement, so
* we must call the current C host function to get
* the table of goto labels used to initialize the
* label structures. This should be done once per C
* host function.
*/
if (___LABEL_HOST_GET(lbl) != current_host)
{
current_host = ___LABEL_HOST_GET(lbl);
hlbl_ptr = ___CAST(void**,current_host (0));
hlbl_ptr++; /* skip INTRO label */
}
___LABEL_HOST_LABEL_SET(lbl,
___CAST_VOIDSTAR_TO_FAKEVOIDSTAR(*hlbl_ptr++));
}
#endif
/*
* Return labels contain a GC map descriptor which has
* to be setup if it is out-of-line (which happens when
* the stack frame is large.
*/
if (head == ___MAKE_HD(0,___sRETURN,___PERM))
{
___SCMOBJ descr = ___LABEL_DESCR_GET(lbl);
if (___IFD_GCMAP(descr) == 0) /* out-of-line descriptor? */
{
int fs;
___LABEL_DESCR_SET(lbl, ___CAST(___SCMOBJ,ofd_alloc));
fs = ___OFD_FS(*ofd_alloc);
if (___IFD_KIND(descr) == ___RETI)
fs = ___RETI_CFS_TO_FS(fs);
ofd_alloc += 1 + ___CEILING_DIV(fs,___WORD_WIDTH);
}
}
else
___LABEL_ENTRY_SET(lbl, lbl);
#ifdef ___SUPPORT_LOWLEVEL_EXEC
___LABEL_LOWLEVEL_TRAMPOLINE_SETUP(___SUBTYPED_TO_BODY(lbl));
#endif
}
}
*lp = ___SUBTYPED_FROM_BODY(&new_lbltbl[0].entry_or_descr);
}
return ___FIX(___NO_ERR);
}
___HIDDEN ___SCMOBJ setup_module_collect_undef_globals
___P((fem_context *ctx,
___module_struct *module),
(ctx,
module)
fem_context *ctx;
___module_struct *module;)
{
___processor_state ___ps = ctx->ps;
___virtual_machine_state ___vms = ___VMSTATE_FROM_PSTATE(___ps);
___UTF_8STRING *glo_names = module->glo_names;
if (glo_names != 0)
{
___UTF_8STRING name = module->name;
___FAKEWORD *glotbl = module->glotbl;
int glocount = module->glocount;
int supcount = module->supcount;
int i;
for (i=supcount; i<glocount; i++)
{
/*
* If the global variable is undefined, add it to the list
* of undefined variables in the module descriptor.
*/
___glo_struct *glo = ___CAST(___glo_struct*,glotbl[i]);
if (___GLOCELL_IN_VM(___vms,glo->val) == ___UNB1)
{
___SCMOBJ err;
___SCMOBJ glo_name;
___SCMOBJ module_name;
___SCMOBJ pair1;
___SCMOBJ pair2;
if ((err = ___NONNULLUTF_8STRING_to_SCMOBJ
(NULL, /* allocate as permanent object */
glo_names[i],
&glo_name,
-1))
!= ___FIX(___NO_ERR))
return err;
if ((err = ___NONNULLUTF_8STRING_to_SCMOBJ
(NULL, /* allocate as permanent object */
name,
&module_name,
-1))
!= ___FIX(___NO_ERR))
return err;
pair1 = ___make_pair (NULL, /* allocate as permanent object */
glo_name,
module_name);
if (___FIXNUMP(pair1))
return pair1;
pair2 = ___make_pair (NULL, /* allocate as permanent object */
pair1,
___FIELD(ctx->program_descr,1));
if (___FIXNUMP(pair2))
return pair2;
___FIELD(ctx->program_descr,1) = pair2;
}
}
}
return ___FIX(___NO_ERR);
}
___HIDDEN ___SCMOBJ setup_module_collect_moddescrs
___P((fem_context *ctx,
___module_struct *module),
(ctx,
module)
fem_context *ctx;
___module_struct *module;)
{
if (module->lblcount > 0)
{
___SCMOBJ err;
___SCMOBJ descr = module->moddescr;
if (ctx->flags != ___FAL) /* override compiler flags */
___FIELD(descr,2) = ctx->flags;
if ((err = ___NONNULLPOINTER_to_SCMOBJ
(NULL, /* allocate as permanent object */
___CAST(void*,module),
___FAL,
NULL,
&___FIELD(descr,4),
___RETURN_POS))
!= ___FIX(___NO_ERR))
return err;
___FIELD(___FIELD(ctx->program_descr,0),ctx->module_count) = descr;
ctx->module_count++;
}
return module->setup_mod ();
}
___HIDDEN ___SCMOBJ get_script_line_proc
___P((fem_context *ctx,
___module_struct *module),
(ctx,
module)
fem_context *ctx;
___module_struct *module;)
{
if (module->script_line != 0)
ctx->module_script_line = module->script_line;
return ___FIX(___NO_ERR);
}
___HIDDEN ___UTF_8STRING get_script_line
___P((___mod_or_lnk mol),
(mol)
___mod_or_lnk mol;)
{
fem_context fem_ctx;
fem_context *ctx = &fem_ctx;
ctx->module_script_line = 0;
if (for_each_module (ctx, mol, get_script_line_proc) == ___FIX(___NO_ERR))
return ctx->module_script_line;
return 0;
}
___HIDDEN ___SCMOBJ setup_modules
___P((___processor_state ___ps,
___mod_or_lnk mol),
(___ps,
mol)
___processor_state ___ps;
___mod_or_lnk mol;)
{
___SCMOBJ result;
___SCMOBJ script_line;
fem_context fem_ctx;
fem_context *ctx = &fem_ctx;
/* Create program descriptor */
if (___FIXNUMP(result = ___make_vector (NULL, 3, ___NUL)))
return result;
ctx->ps = ___ps;
ctx->module_count = 0;
ctx->program_descr = result;
/* Fixup objects and tables in all the modules and count modules */
if ((result = for_each_module (ctx,
mol,
setup_module_fixup))
!= ___FIX(___NO_ERR))
return result;
if (___ps != NULL)
{
/* Collect undefined globals */
if ((result = for_each_module (ctx,
mol,
setup_module_collect_undef_globals))
!= ___FIX(___NO_ERR))
return result;
}
/* Create vector of module descriptors */
if (___FIXNUMP(result = ___make_vector (NULL, ctx->module_count, ___FAL)))
return result;
___FIELD(ctx->program_descr,0) = result;
ctx->module_count = 0;
ctx->flags = ___FAL; /* default to compiler flags */
if ((result = for_each_module (ctx,
mol,
setup_module_collect_moddescrs))
!= ___FIX(___NO_ERR))
return result;
if ((result = ___UTF_8STRING_to_SCMOBJ
(NULL, /* allocate as permanent object */
get_script_line (mol),
&script_line,
-1))
!= ___FIX(___NO_ERR))
return result;
___FIELD(ctx->program_descr,2) = script_line;
return ctx->program_descr;
}
___SCMOBJ ___os_load_object_file
___P((___SCMOBJ path,
___SCMOBJ linkername),
(path,
linkername)
___SCMOBJ path;
___SCMOBJ linkername;)
{
___SCMOBJ result;
void *linker;
___mod_or_lnk mol;
if ((result = ___dynamic_load (path, linkername, &linker)) == ___FIX(___NO_ERR))
{
mol = linker_to_mod_or_lnk
(___CAST(___mod_or_lnk (*) ___P((___global_state),()),
linker));
if (mol->linkfile.version == -1) /* was it already setup? */
result = ___FIX(___MODULE_ALREADY_LOADED_ERR);
else
{
result = setup_modules (___PSTATE, mol);
mol->linkfile.version = -1; /* mark link file as 'setup' */
}
}
return result;
}
/*---------------------------------------------------------------------------*/
/*
* Character operations.
*/
___EXP_FUNC(___BOOL,___iswalpha)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return iswalpha (x);
#else
return (x >= 97 && x <= 122) || (x >= 65 && x <= 90);
#endif
}
___EXP_FUNC(___BOOL,___iswdigit)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return iswdigit (x);
#else
return x>= 48 && x <= 57;
#endif
}
___EXP_FUNC(___BOOL,___iswspace)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return iswspace (x);
#else
return (x >= 9 && x <= 13) || (x == 32);
#endif
}
___EXP_FUNC(___BOOL,___iswupper)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return iswupper (x);
#else
return x >= 65 && x <= 90;
#endif
}
___EXP_FUNC(___BOOL,___iswlower)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return iswlower (x);
#else
return x >= 97 && x <= 122;
#endif
}
___EXP_FUNC(___UCS_4,___towupper)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return towupper (x);
#else
return (x >= 97 && x <= 122) ? x-32 : x;
#endif
}
___EXP_FUNC(___UCS_4,___towlower)
___P((___UCS_4 x),
(x)
___UCS_4 x;)
{
#ifdef USE_wctype
return towlower (x);
#else
return (x >= 65 && x <= 90) ? x+32 : x;
#endif
}
#define STRING_COLLATE_BUF_LENGTH 1000
___EXP_FUNC(___SCMOBJ,___string_collate)
___P((___SCMOBJ str1,
___SCMOBJ str2),
(str1,
str2)
___SCMOBJ str1;
___SCMOBJ str2;)
{
int len1 = ___INT(___STRINGLENGTH(str1));
int len2 = ___INT(___STRINGLENGTH(str2));
#ifdef USE_wchar
wchar_t buf[STRING_COLLATE_BUF_LENGTH];
wchar_t *b1;
wchar_t *b2;
wchar_t *s1;
wchar_t *s2;
wchar_t *p;
int i;
int result;
if (len1 + len2 + 2 > STRING_COLLATE_BUF_LENGTH)
{
b1 = ___CAST(wchar_t*,___ALLOC_MEM(len1 + 1));
if (b1 == 0)
return ___FIX(___HEAP_OVERFLOW_ERR);
p = b1;
for (i=0; i<len1; i++)
*p++ = ___INT(___STRINGREF(str1,___FIX(i)));
*p = '\0';
b2 = ___CAST(wchar_t*,___ALLOC_MEM(len1 + 1));
if (b2 == 0)
{
___FREE_MEM(b1);
return ___FIX(___HEAP_OVERFLOW_ERR);
}
p = b2;
for (i=0; i<len2; i++)
*p++ = ___INT(___STRINGREF(str2,___FIX(i)));
*p = '\0';
}
else
{
p = buf;
b1 = p;
for (i=0; i<len1; i++)
*p++ = ___INT(___STRINGREF(str1,___FIX(i)));
*p++ = '\0';
b2 = p;
for (i=0; i<len2; i++)
*p++ = ___INT(___STRINGREF(str2,___FIX(i)));
*p++ = '\0';
}
result = 0;
s1 = b1;
s2 = b2;
while (len1 > 0 && len2 > 0 && result == 0)
{
int l1;
int l2;
result = wcscoll (s1, s2);
l1 = wcslen (s1) + 1;
l2 = wcslen (s2) + 1;
s1 += l1;
s2 += l2;
len1 -= l1;
len2 -= l2;
}
if (len1 + len2 + 2 > STRING_COLLATE_BUF_LENGTH)
{
___FREE_MEM(b1);
___FREE_MEM(b2);
}
if (result < 0)
return ___FIX(0);
if (result > 0)
return ___FIX(2);
if (len1 < len2)
return ___FIX(0);
if (len1 > len2)
return ___FIX(2);
return ___FIX(1);
#else
int n;
int i;
n = len1;
if (len2 < n)
n = len2;
for (i=0; i<n; i++)
{
___SCMOBJ c1 = ___STRINGREF(str1,___FIX(i));
___SCMOBJ c2 = ___STRINGREF(str2,___FIX(i));
if (___CHARLTP(c1,c2))
return ___FIX(0);
if (___CHARGTP(c1,c2))
return ___FIX(2);
}
if (len1 < len2)
return ___FIX(0);
if (len1 > len2)
return ___FIX(2);
return ___FIX(1);
#endif
}
___EXP_FUNC(___SCMOBJ,___string_collate_ci)
___P((___SCMOBJ str1,
___SCMOBJ str2),
(str1,
str2)
___SCMOBJ str1;
___SCMOBJ str2;)
{
int len1 = ___INT(___STRINGLENGTH(str1));
int len2 = ___INT(___STRINGLENGTH(str2));
#ifdef USE_wchar
return ___FIX(0);
#else
int n;
int i;
n = len1;
if (len2 < n)
n = len2;
for (i=0; i<n; i++)
{
___UCS_4 c1 = ___INT(___STRINGREF(str1,___FIX(i)));
___UCS_4 c2 = ___INT(___STRINGREF(str2,___FIX(i)));
if (c1 >= 65 && c1 <= 90)
c1 += 32;
if (c2 >= 65 && c2 <= 90)
c2 += 32;
if (c1 < c2)
return ___FIX(0);
if (c1 > c2)
return ___FIX(2);
}
if (len1 < len2)
return ___FIX(0);
if (len1 > len2)
return ___FIX(2);
return ___FIX(1);
#endif
}
/*---------------------------------------------------------------------------*/
/*
* Numerical library routines.
*/
#ifdef ___BIG_ENDIAN
#define F64_HI8 0
#define F64_HI16 0
#define F64_HI32 0
#define F64_LO32 1
#else
#define F64_HI8 7
#define F64_HI16 3
#define F64_HI32 1
#define F64_LO32 0
#endif
typedef union
{
___U16 u16[4];
___U32 u32[2];
___U64 u64;
___F64 f64;
} f64_parts;
___EXP_FUNC(double,___copysign)
___P((double x,
double y),
(x,
y)
double x;
double y;)
{
___STORE_U8(&x,
F64_HI8,
(___FETCH_U8(&x,F64_HI8)&0x7f)|(___FETCH_U8(&y,F64_HI8)&0x80));
return x;
}
___EXP_FUNC(___BOOL,___isfinite)
___P((double x),
(x)
double x;)
{
#ifdef ___CRAY_FP_FORMAT
return 1;
#else
f64_parts y;
y.f64 = x;
return ((y.u16[F64_HI16] ^ 0x7ff0) & 0x7fff) >= 0x10;
#endif
}
___EXP_FUNC(___BOOL,___isnan)
___P((double x),
(x)
double x;)
{
#ifdef ___CRAY_FP_FORMAT
return 0;
#else
___UM32 tmp;
f64_parts y;
y.f64 = x;
tmp = (y.u32[F64_HI32] ^ 0x7ff00000) & 0x7fffffff;
return tmp < 0x100000 && (tmp | y.u32[F64_LO32]) != 0;
#endif
}
___EXP_FUNC(double,___trunc)
___P((double x),
(x)
double x;)
{
double f = floor (x);
if (x < 0.0 && x != f)
return f + 1.0;
else
return f;
}
___EXP_FUNC(double,___round)
___P((double x),
(x)
double x;)
{
double f, i, t;
if (x < 0.0)
{
f = modf (-x, &i);
if (f > 0.5 || (f == 0.5 && modf (i*0.5, &t) != 0.0))
return -(i+1.0);
else
return -i;
}
else if (x == 0.0) /* so that round (-0.0) = -0.0 */
return x;
else
{
f = modf (x, &i);
if (f > 0.5 || (f == 0.5 && modf (i*0.5, &t) != 0.0))
return i+1.0;
else
return i;
}
}
#ifdef ___DEFINE_SCALBN
___EXP_FUNC(double,___scalbn)
___P((double x,
int n),
(x,
n)
double x;
int n;)
{
#ifdef ___HAVE_GOOD_SCALBN
return scalbn (x, n);
#else
return ldexp (x, n);
#endif
}
#endif
#ifdef ___DEFINE_ILOGB
___EXP_FUNC(int,___ilogb)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_ILOGB
return ilogb (x);
#else
if (___isfinite (x))
{
if (x == 0.0)
return INT_MIN;
else
{
int e;
frexp (x, &e);
return e-1;
}
}
else if (___isnan (x))
return INT_MIN; /* x == NaN */
else
return INT_MAX; /* x == +inf or x == -inf */
#endif
}
#endif
#ifdef ___DEFINE_EXPM1
___EXP_FUNC(double,___expm1)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_EXPM1
return expm1 (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return exp (x) - 1.0;
#else
/* TODO: replace with more accurate algorithm */
return exp (x) - 1.0;
#endif
#endif
}
#endif
#ifdef ___DEFINE_LOG1P
___EXP_FUNC(double,___log1p)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_LOG1P
return log1p (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return log (x + 1.0);
#else
/* TODO: replace with more accurate algorithm */
return log (x + 1.0);
#endif
#endif
}
#endif
#ifdef ___DEFINE_SINH
___EXP_FUNC(double,___sinh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_SINH
return sinh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return (exp (x) - exp (-x)) / 2.0;
#else
/* TODO: replace with more accurate algorithm */
return (exp (x) - exp (-x)) / 2.0;
#endif
#endif
}
#endif
#ifdef ___DEFINE_COSH
___EXP_FUNC(double,___cosh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_COSH
return cosh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return (exp (x) + exp (-x)) / 2.0;
#else
/* TODO: replace with more accurate algorithm */
return (exp (x) + exp (-x)) / 2.0;
#endif
#endif
}
#endif
#ifdef ___DEFINE_TANH
___EXP_FUNC(double,___tanh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_TANH
return tanh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
double t = exp (2.0*x);
return (t - 1.0) / (t + 1.0);
#else
/* TODO: replace with more accurate algorithm */
double t = exp (2.0*x);
return (t - 1.0) / (t + 1.0);
#endif
#endif
}
#endif
#ifdef ___DEFINE_ASINH
___EXP_FUNC(double,___asinh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_ASINH
return asinh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return log (x + sqrt (x*x + 1.0));
#else
/* TODO: replace with more accurate algorithm */
return log (x + sqrt (x*x + 1.0));
#endif
#endif
}
#endif
#ifdef ___DEFINE_ACOSH
___EXP_FUNC(double,___acosh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_ACOSH
return acosh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return log (x + sqrt (x - 1.0) * sqrt (x + 1.0));
#else
/* TODO: replace with more accurate algorithm */
return log (x + sqrt (x - 1.0) * sqrt (x + 1.0));
#endif
#endif
}
#endif
#ifdef ___DEFINE_ATANH
___EXP_FUNC(double,___atanh)
___P((double x),
(x)
double x;)
{
#ifdef ___HAVE_GOOD_ATANH
return atanh (x);
#else
#ifdef ___USE_NAIVE_MATH_ALGO
return (log (1.0 + x) - log (1.0 - x)) / 2.0;
#else
/* TODO: replace with more accurate algorithm */
return (log (1.0 + x) - log (1.0 - x)) / 2.0;
#endif
#endif
}
#endif
#ifdef ___DEFINE_ATAN2
___EXP_FUNC(double,___atan2)
___P((double y,
double x),
(y,
x)
double y;
double x;)
{
#ifdef ___HAVE_GOOD_ATAN2
return atan2 (y, x);
#else
if (___isnan (x))
return x;
else if (___isnan (y))
return y;
else if (y == 0.0)
{
if (___copysign (1.0, y) > 0.0)
{
if (___copysign (1.0, x) > 0.0)
return 0.0;
else
return 3.141592653589793; /* from "header.scm" */
}
else
{
if (___copysign (1.0, x) > 0.0)
return -0.0;
else
return -3.141592653589793; /* from "header.scm" */
}
}
else if (___isfinite (x) || ___isfinite (y))
return atan2 (y, x);
else
return ___copysign (x/y, x*y); /* returns NAN with appropriate sign */
#endif
}
#endif
#ifdef ___DEFINE_POW
___EXP_FUNC(double,___pow)
___P((double x,
double y),
(x,
y)
double x;
double y;)
{
#ifdef ___HAVE_GOOD_POW
return pow (x, y);
#else
if (y == 0.0)
return 1.0;
else if (___isnan (x))
return x;
else if (___isnan (y))
return y;
else
return pow (x, y);
#endif
}
#endif
___EXP_FUNC(___SCMOBJ,___F64_to_STRING)
___P((___PSD
double x),
(___PSV
x)
___PSDKR
double x;)
{
___PSGET
#ifdef USE_snprintf
#ifdef DBL_DECIMAL_DIG
#define NDIG DBL_DECIMAL_DIG
#else
#ifdef __DBL_DECIMAL_DIG__
#define NDIG __DBL_DECIMAL_DIG__
#else
#define NDIG (DBL_DIG + 2)
#endif
#endif
char buf[NDIG+8]; /* +8 to account for sign, period, e, +/-, 3 digit exponent and nul char */
___WORD len = 0;
___WORD i;
___D_HEAP
snprintf (buf, NDIG+8, "%.*g", NDIG, x);
while (buf[len] != '\0') len++;
___R_HEAP
___BEGIN_ALLOC_STRING(len)
for (i=0; i<len; i++)
___ADD_STRING_ELEM(i,___CHR(buf[i]))
___END_ALLOC_STRING(len)
___W_HEAP
return ___GET_STRING(len);
#else
___D_HEAP
___R_HEAP
___BEGIN_ALLOC_STRING(0)
___END_ALLOC_STRING(0)
___W_HEAP
return ___GET_STRING(0);
#endif
}
/*---------------------------------------------------------------------------*/
/*
* Initialization of symbol and keyword tables, and global variables.
*/
___HIDDEN void init_symkey_glo1
___P((___mod_or_lnk mol),
(mol)
___mod_or_lnk mol;)
{
if (mol->module.kind == ___LINKFILE_KIND)
{
___linkinfo *p1 = mol->linkfile.linkertbl;
___FAKEWORD *p2 = mol->linkfile.sym_list;
while (p1->mol != 0)
{
init_symkey_glo1 (p1->mol);
p1++;
}
while (p2 != 0)
{
___SCMOBJ *sym_ptr;
___glo_struct *glo;
sym_ptr = ___CAST(___SCMOBJ*,p2);
p2 = ___CAST(___FAKEWORD*,sym_ptr[0]);
glo = ___CAST(___glo_struct*,sym_ptr[___SUBTYPED_BODY+___SYMBOL_GLOBAL]);
sym_ptr[___SUBTYPED_BODY+___SYMKEY_HASH] = glo->prm; /* move symbol's hash value */
}
}
}
___HIDDEN void init_symkey_glo2
___P((___mod_or_lnk mol),
(mol)
___mod_or_lnk mol;)
{
if (mol->module.kind == ___LINKFILE_KIND)
{
___linkinfo *p1 = mol->linkfile.linkertbl;
___FAKEWORD *p2 = mol->linkfile.sym_list;
___FAKEWORD *p3 = mol->linkfile.key_list;
while (p1->mol != 0)
{
init_symkey_glo2 (p1->mol);
p1++;
}
while (p2 != 0)
{
___SCMOBJ sym;
___SCMOBJ str;
___SCMOBJ *sym_ptr;
___glo_struct *glo;
sym_ptr = ___CAST(___SCMOBJ*,p2);
p2 = ___CAST(___FAKEWORD*,sym_ptr[0]);
str = align_subtyped (___CAST(___SCMOBJ*,sym_ptr[___SUBTYPED_BODY+___SYMKEY_NAME]));
glo = ___CAST(___glo_struct*,sym_ptr[___SUBTYPED_BODY+___SYMBOL_GLOBAL]);
#ifndef ___SINGLE_VM
glo->val = ___GSTATE->mem.glo_list.count;
#endif
___glo_list_add (glo);
sym_ptr[0] = ___MAKE_HD((___SYMBOL_SIZE<<___LWS),___sSYMBOL,___PERM);
sym = align_subtyped (sym_ptr);
___FIELD(sym,___SYMKEY_NAME) = str;
___FIELD(sym,___SYMBOL_GLOBAL) = ___CAST(___SCMOBJ,glo);
___intern_symkey (sym);
}
while (p3 != 0)
{
___SCMOBJ key, str;
___SCMOBJ *key_ptr;
key_ptr = ___CAST(___SCMOBJ*,p3);
p3 = ___CAST(___FAKEWORD*,key_ptr[0]);
str = align_subtyped (___CAST(___SCMOBJ*,key_ptr[___SUBTYPED_BODY+___SYMKEY_NAME]));
key_ptr[0] = ___MAKE_HD((___KEYWORD_SIZE<<___LWS),___sKEYWORD,___PERM);
key = align_subtyped (key_ptr);
___FIELD(key,___SYMKEY_NAME) = str;
___FIELD(key,___SYMKEY_HASH) = ___hash_scheme_string (str);
___intern_symkey (key);
}
}
}
/*---------------------------------------------------------------------------*/
/*
* C to Scheme call handler.
*/
#ifdef EMSCRIPTEN
/*
* The trampoline function must not be inlined into the ___call
* function when using emscripten because the fact that ___call uses
* setjmp will slow down the indirect calls.
*/
__attribute__((noinline))
#endif
void ___trampoline
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___SCMOBJ ___pc = ___ps->pc;
for (;;)
{
#define CALL_STEP ___pc = ___LABEL_HOST_GET(___pc)(___ps)
CALL_STEP;
CALL_STEP;
CALL_STEP;
CALL_STEP;
CALL_STEP;
CALL_STEP;
CALL_STEP;
CALL_STEP;
}
}
___EXP_FUNC(___SCMOBJ,___call)
___P((___PSD
___WORD nargs,
___SCMOBJ proc,
___SCMOBJ stack_marker),
(___PSV
nargs,
proc,
stack_marker)
___PSDKR
___WORD nargs;
___SCMOBJ proc;
___SCMOBJ stack_marker;)
{
___PSGET
___SCMOBJ ___err;
___D_FP
/*
* The C function which has called ___call() has put the arguments
* of the Scheme procedure on the stack above ___fp as shown in the
* 'on entry' picture below. The free space under arg1 is for a
* continuation frame that performs the return of control from
* Scheme to C. This frame is set up by ___call() before the
* destination Scheme procedure is invoked. The frame is accessed
* by the return_to_c handler (in "_kernel.scm") which is invoked
* when the called procedure returns. The frame contains a heap
* allocated 'stack marker', allocated by the caller, which
* indicates the destination Scheme procedure and if it is still possible
* to return to the caller (i.e. its activation frame is still on
* the C stack). The caller will store #f in the stack marker so
* that any subsequent attempt to return to that invocation of the
* caller will be detected and trigger an error.
*
*
* ON ENTRY: JUST BEFORE JUMPING TO THE SCHEME PROCEDURE:
*
* STACK STACK HEAP
* | ^ | | ^ |
* | | | | | |
* | | | |
* | | | |
* | arg N | | arg N |
* | ... | ___fp -->| ... |
* | arg 1 | | arg 1 |
* +------------+ +------------+
* | RESERVED | | RESERVED | stack marker
* | <PADDING> | | <PADDING> | +------------+
* | undefined | | ---------->| HEAD |
* | undefined | | return adr | | procedure |
* +------------+ +------------+ +------------+
* ___fp -->| RESERVED | | RESERVED |
* | ... | | ... |
* +------------+ +------------+
* | | | |
*/
___LD_ARG_REGS /* declare and load GVM argument registers from ___ps */
___SET_FP(___PSFP)
___fp[-1] = ___PSR0; /* create a frame with the same format as the */
___fp[-2] = stack_marker; /* one created for the return to C handler */
/* in "_kernel.scm" */
___fp -= ___FRAME_SPACE(2) + nargs; /* move ___fp to point to last arg */
___POP_ARGS_IN_REGS(nargs) /* load arguments into appropriate registers */
___ST_ARG_REGS /* write back GVM argument registers to ___ps */
___PSR0 = ___GSTATE->handler_return_to_c;
___ps->fp = ___fp;
___ps->na = nargs;
___ps->pc = ___LABEL_ENTRY_GET(proc);
___PSSELF = proc;
___BEGIN_TRY
___trampoline (___ps);
___END_TRY
if (___err != ___FIX(___UNWIND_C_STACK) ||
stack_marker != ___ps->fp[___FRAME_SPACE(2)-2]) /*need more unwinding?*/
___throw_error (___PSP ___err);
___ps->fp += ___FRAME_SPACE(2);
___PSR0 = ___ps->fp[-1];
return ___FIX(___NO_ERR);
}
___EXP_FUNC(___SCMOBJ,___run)
___P((___PSD
___SCMOBJ thunk),
(___PSV
thunk)
___PSDKR
___SCMOBJ thunk;)
{
___PSGET
___SCMOBJ ___err;
___SCMOBJ marker;
___ps->r[0] = ___GSTATE->handler_break;
___BEGIN_TRY
if ((___err = ___make_sfun_stack_marker (___ps, &marker, thunk))
== ___FIX(___NO_ERR))
{
___err = ___call (___PSP 0, ___FIELD(marker,0), marker);
___kill_sfun_stack_marker (marker);
}
___END_TRY
return ___err;
}
#ifdef ___SUPPORT_LOWLEVEL_EXEC
___EXP_FUNC(___WORD,___lowlevel_exec)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
#ifdef __GNUC__
#ifdef ___CPU_x86
#ifdef ___CPU_x86_32
#define reg_R0 "edi"
#define reg_R1 "eax"
#define reg_R2 "ebx"
#define reg_R3 "edx"
#define reg_R4 "esi"
#define reg_PS "ecx"
#define reg_FP "esp"
#define reg_HP "ebp"
#define reg_TMP reg_R1
#define reg_SP "esp"
#define PS_FIELD(field) field "*4(%%" reg_PS ")"
/*
GVM ___________________C_ABI___________________
r1 eax return value
r2 ebx CS
ps ecx
r3 edx
sp esp CS stack pointer
hp ebp CS optionally used as frame pointer
r4 esi CS
r0 edi CS
*/
#endif
#ifdef ___CPU_x86_64
#define reg_R0 "rdi"
#define reg_R1 "rax"
#define reg_R2 "rbx"
#define reg_R3 "rdx"
#define reg_R4 "rsi"
#define reg_PS "rcx"
#define reg_FP "rsp"
#define reg_HP "rbp"
#define reg_TMP reg_R1
#define reg_SP "rsp"
#define PS_FIELD(field) field "*8(%%" reg_PS ")"
/*
GVM ___________________C_ABI___________________
r1 rax return value 1
r2 rbx CS
ps rcx argument 4 to functions
r3 rdx argument 3 to functions; return value 2
sp rsp CS stack pointer
hp rbp CS optionally used as frame pointer
r4 rsi argument 2 to functions
r0 rdi argument 1 to functions
r8 argument 5 to functions
r9 argument 6 to functions
r10 static chain pointer of function
r11 temporary register
r12 CS
r13 CS
r14 CS
r15 CS optionally used as GOT base pointer
*/
#endif
#define PS_FP PS_FIELD("2")
#define PS_HP PS_FIELD("6")
#define PS_R(n) PS_FIELD("(" n "+7)")
#define PS_PC PS_FIELD("(0+5+7)")
#define PS_NA PS_FIELD("(1+5+7)")
__asm__ __volatile__ (
"mov %0, %%" reg_PS "\n\t"
#ifdef ___CPU_x86_64
/* account for red zone */
"add $-128, %%" reg_SP "\n\t"
#endif
/* save callee-save registers */
"push %%" reg_R0 "\n\t"
"push %%" reg_R1 "\n\t"
"push %%" reg_R2 "\n\t"
"push %%" reg_R3 "\n\t"
"push %%" reg_R4 "\n\t"
/* "push %%" reg_PS "\n\t" */
/* "push %%" reg_FP "\n\t" */
"push %%" reg_HP "\n\t"
/* setup handler for returning from lowlevel code */
#ifdef ___CPU_x86_32
"mov $return_from_lowlevel, %%" reg_TMP "\n\t"
#endif
#ifdef ___CPU_x86_64
"lea return_from_lowlevel(%%rip), %%" reg_TMP "\n\t"
#endif
"mov %%" reg_TMP ", " PS_FIELD("-1") "\n\t"
"mov %%" reg_SP ", " PS_FIELD("-2") "\n\t"
/* setup frame pointer and heap pointer registers */
"mov " PS_FP ", %%" reg_FP "\n\t"
"mov " PS_HP ", %%" reg_HP "\n\t"
/* setup self register */
"mov " PS_R("4") ", %%" reg_R4 "\n\t"
"mov " PS_PC ", %%" reg_TMP "\n\t"
#ifdef ___CPU_x86_32
"cmpl $1048576,-1-2*4(%%" reg_TMP ")\n\t"
"jl setup_other_registers\n\t"
"add $5, %%" reg_R4 "\n\t"
"push %%" reg_R4 "\n\t"
"add $-5, %%" reg_R4 "\n\t"
#endif
#ifdef ___CPU_x86_64
"cmpl $1048576,-1-2*8(%%" reg_TMP ")\n\t"
"jl setup_other_registers\n\t"
"add $3, %%" reg_R4 "\n\t"
"push %%" reg_R4 "\n\t"
"add $-3, %%" reg_R4 "\n\t"
#endif
"\n"
"setup_other_registers:\n\t"
/* setup lowlevel registers from ___ps->r[...] */
"mov " PS_R("0") ", %%" reg_R0 "\n\t"
"mov " PS_R("1") ", %%" reg_R1 "\n\t"
"mov " PS_R("2") ", %%" reg_R2 "\n\t"
"mov " PS_R("3") ", %%" reg_R3 "\n\t"
/*
* set flags according to ___ps->na and jump to lowlevel code at
* ___ps->pc
*/
"cmpl $0, " PS_NA "\n\t"
"je nargs_0\n\t"
"cmpl $1, " PS_NA "\n\t"
"je nargs_1\n\t"
"cmpl $2, " PS_NA "\n\t"
"je nargs_2\n\t"
"cmpl $3, " PS_NA "\n\t"
"je nargs_3\n\t"
"cmpl $4, " PS_NA "\n\t"
"je nargs_4\n\t"
"\n"
"nargs_in_ps_na:\n\t"
/* set flags so these jumps succeed: jae jne jle jno jp ja jl js */
"cmp $0, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"nargs_0:\n\t"
/* set flags so these jumps succeed: jb jne jle jno jp jbe jl js */
"cmp $-3, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"nargs_1:\n\t"
/* set flags so these jumps succeed: jae je jle jno jp jbe jge jns */
"cmp %%cl, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"nargs_2:\n\t"
/* set flags so these jumps succeed: jae jne jg jno jp ja jge jns */
"cmp $-123, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"nargs_3:\n\t"
/* set flags so these jumps succeed: jae jne jle jo jp ja jl jns */
"cmp $10, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"nargs_4:\n\t"
/* set flags so these jumps succeed: jae jne jle jno jnp ja jl js */
"cmp $2, %%cl\n\t"
"jmp *" PS_PC "\n\t"
"\n"
"return_from_lowlevel:"
"\n\t"
/* recover ___ps->na from flags */
"jae nargs_not_0\n\t"
"movl $0, " PS_NA "\n\t"
"jmp nargs_done\n"
"nargs_not_0:\n\t"
"jne nargs_not_0_or_1\n\t"
"movl $1, " PS_NA "\n\t"
"jmp nargs_done\n"
"nargs_not_0_or_1:\n\t"
"jle nargs_not_0_or_1_or_2\n\t"
"movl $2, " PS_NA "\n\t"
"jmp nargs_done\n"
"nargs_not_0_or_1_or_2:\n\t"
"jno nargs_not_0_or_1_or_2_or_3\n\t"
"movl $3, " PS_NA "\n\t"
"jmp nargs_done\n"
"nargs_not_0_or_1_or_2_or_3:\n\t"
"jp nargs_done\n\t"
"movl $4, " PS_NA "\n\t"
"\n"
"nargs_done:\n\t"
/* save lowlevel registers to ___ps->r[...] */
"mov %%" reg_R0 ", " PS_R("0") "\n\t"
"mov %%" reg_R1 ", " PS_R("1") "\n\t"
"mov %%" reg_R2 ", " PS_R("2") "\n\t"
"mov %%" reg_R3 ", " PS_R("3") "\n\t"
/* recover the destination control point in ___ps->pc */
"pop %%" reg_TMP "\n\t"
"add $-3, %%" reg_TMP "\n\t"
"mov %%" reg_TMP ", " PS_PC "\n\t"
#ifdef ___CPU_x86_32
"cmpl $1048576,-1-2*4(%%" reg_TMP ")\n\t"
"jl store_self_register\n\t"
"pop %%" reg_R4 "\n\t"
"add $-3, %%" reg_R4 "\n\t"
#endif
#ifdef ___CPU_x86_64
"cmpl $1048576,-1-2*8(%%" reg_TMP ")\n\t"
"jl store_self_register\n\t"
"pop %%" reg_R4 "\n\t"
"add $-6, %%" reg_R4 "\n\t"
#endif
"\n"
"store_self_register:\n\t"
"mov %%" reg_R4 ", " PS_R("4") "\n\t"
/* save frame pointer and heap pointer registers */
"mov %%" reg_FP ", " PS_FP "\n\t"
"mov %%" reg_HP ", " PS_HP "\n\t"
/* restore callee-save registers */
"mov " PS_FIELD("-2") ", %%" reg_SP "\n\t"
"pop %%" reg_HP "\n\t"
/* "pop %%" reg_FP "\n\t" */
/* "pop %%" reg_PS "\n\t" */
"pop %%" reg_R4 "\n\t"
"pop %%" reg_R3 "\n\t"
"pop %%" reg_R2 "\n\t"
"pop %%" reg_R1 "\n\t"
"pop %%" reg_R0 "\n\t"
#ifdef ___CPU_x86_64
/* account for red zone */
"add $128, %%" reg_SP "\n\t"
#endif
: /* no outputs */
: /* inputs */
"m" (___ps)
: /* clobbers */
"%" reg_PS,
"%" reg_TMP
);
#endif
#endif
return ___ps->pc;
}
#endif
___SCMOBJ ___machine_code_block_fixup
___P((___processor_state ___ps,
void *mcb,
___SCMOBJ fixup_locs,
___SCMOBJ fixup_objs),
(___ps,
mcb,
fixup_locs,
fixup_objs)
___processor_state ___ps;
void *mcb;
___SCMOBJ fixup_locs;
___SCMOBJ fixup_objs;)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
___WORD code = ___CAST(___WORD,mcb);
___U8 *ptr = ___CAST(___U8*,___BODY_AS(fixup_locs,___tSUBTYPED));
___WORD pos = 0;
___U8 loc;
___WORD val = ___FAL;
while ((loc = *ptr++) != 0)
{
if (loc == 1)
pos += 127;
else
{
___WORD fixup_pos = pos + (loc>>1) - 1;
___WORD x = (loc&1)
? *___CAST(___WORD*,code+fixup_pos)
: *___CAST(___S32*,code+fixup_pos);
int op = x & 0xff;
___WORD arg = x >> 8;
switch (op)
{
case 0:
val = arg;
break;
case 1:
val = code + fixup_pos + arg;
break;
case 2:
val = ___VECTORREF(fixup_objs, ___FIX(arg));
break;
case 3:
val = ___VECTORREF(fixup_objs, ___FIX(arg));
val = ___make_global_var (val);
val = ___CAST(___WORD, &___GLOBALVARREF(val));
break;
case 4:
val = ___VECTORREF(fixup_objs, ___FIX(arg));
val = ___make_global_var (val);
val = ___CAST(___WORD, &___GLOBALVARPRIMREF(val));
break;
case 5:
switch (arg)
{
case 0:
val = ___CAST(___WORD, ___lowlevel_exec);
break;
}
break;
}
if (loc&1)
{
*___CAST(___WORD*,code+fixup_pos) = val;
pos = fixup_pos + sizeof(___WORD);
}
else
{
*___CAST(___S32*,code+fixup_pos) = val;
pos = fixup_pos + sizeof(___S32);
}
}
}
return val;
#else
return ___FAL;
#endif
}
/*
* In the following functions, proc points to a label structure
* (___label_struct) that was either created by the C backend or the
* CPU backend. If the host field of the label structure is equal to
* ___lowlevel_exec then it was created by the CPU backend and the
* word just before the host field is a pointer to the parent intro
* structure.
*/
#define ___LOWLEVEL_LABEL(lbl) \
(___LABEL_HOST_GET(lbl) == ___lowlevel_exec)
#define ___LOWLEVEL_LABEL_PARENT_GET(lbl) *___SUBTYPED_TO(lbl,___LABEL_HOST-1)
#define ___LOWLEVEL_LABEL_NEXT_GET(lbl) *___SUBTYPED_TO(lbl,___LABEL_HOST-2)
#define ___LOWLEVEL_LABEL_NBLBLS_GET(lbl) *___SUBTYPED_TO(lbl,___LABEL_HOST-3)
#define ___LOWLEVEL_LABEL_INFO_GET(lbl) *___SUBTYPED_TO(lbl,___LABEL_HOST-4)
#define ___LOWLEVEL_LABEL_NAME_GET(lbl) *___SUBTYPED_TO(lbl,___LABEL_HOST-5)
___HIDDEN ___SCMOBJ ___subprocedure_parent_intro
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
___SCMOBJ probe = proc;
do
{
probe -= ___LABEL_SIZE * ___WS;
} while (!___TESTSUBTYPETAG(probe, ___sVECTOR));
return probe;
}
___SCMOBJ ___make_subprocedure
___P((___SCMOBJ proc,
___SCMOBJ id),
(proc,
id)
___SCMOBJ proc;
___SCMOBJ id;)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
if (___LOWLEVEL_LABEL(proc))
{
___SCMOBJ probe = ___LOWLEVEL_LABEL_PARENT_GET(proc);
if (___FIXLT(id, ___FIX(0)) ||
___FIXGE(id, ___LOWLEVEL_LABEL_NBLBLS_GET(probe)))
return ___FAL;
while (___FIXGT(id, ___FIX(0)))
{
probe = ___LOWLEVEL_LABEL_NEXT_GET(probe);
id = ___FIXSUB(id, ___FIX(1));
}
return probe;
}
#endif
{
___SCMOBJ intro = ___subprocedure_parent_intro (proc);
if (___FIXLT(id, ___FIX(0)) ||
___FIXGE(id, ___FIX(___HD_FIELDS(___SUBTYPED_HEADER(intro)))))
return ___FAL;
return intro + (___INT(id)+1) * ___LABEL_SIZE * ___WS;
}
}
___SCMOBJ ___subprocedure_id
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
if (___LOWLEVEL_LABEL(proc))
{
___SCMOBJ probe = ___LOWLEVEL_LABEL_PARENT_GET(proc);
___SCMOBJ id = ___FIX(0);
while (!___EQP(proc, probe))
{
probe = ___LOWLEVEL_LABEL_NEXT_GET(probe);
id = ___FIXADD(id, ___FIX(1));
}
return id;
}
#endif
return ___FIX((proc - ___subprocedure_parent_intro (proc)) / (___LABEL_SIZE * ___WS) - 1);
}
___SCMOBJ ___subprocedure_parent
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
return ___make_subprocedure (proc, ___FIX(0));
}
___SCMOBJ ___subprocedure_parent_info
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
if (___LOWLEVEL_LABEL(proc))
return ___LOWLEVEL_LABEL_INFO_GET(___LOWLEVEL_LABEL_PARENT_GET(proc));
#endif
return ___LABEL_INFO_GET(___subprocedure_parent_intro (proc));
}
___SCMOBJ ___subprocedure_parent_name
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
#ifdef ___SUPPORT_LOWLEVEL_EXEC
if (___LOWLEVEL_LABEL(proc))
return ___LOWLEVEL_LABEL_NAME_GET(___LOWLEVEL_LABEL_PARENT_GET(proc));
#endif
return ___LABEL_NAME_GET(___subprocedure_parent_intro (proc));
}
___SCMOBJ ___subprocedure_nb_parameters
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
return ___FIX(___PRD_NBPARMS(___SUBTYPED_HEADER(proc)));
}
___SCMOBJ ___subprocedure_nb_closed
___P((___SCMOBJ proc),
(proc)
___SCMOBJ proc;)
{
return ___FIX(___PRD_NBCLOSED(___SUBTYPED_HEADER(proc)));
}
#ifdef ___USE_print_source_location
void ___print_source_location
___P((___source_location *loc),
(loc)
___source_location *loc;)
{
___printf ("%s:%d:", loc->file, loc->line);
}
#endif
#ifdef ___DEBUG_CTRL_FLOW_HISTORY
void ___print_ctrl_flow_history_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
int i;
for (i=0; i<___CTRL_FLOW_HISTORY_LENGTH; i++)
{
___source_location *loc =
&___ps->ctrl_flow_history[(___ps->ctrl_flow_history_index+i) %
___CTRL_FLOW_HISTORY_LENGTH];
if (loc->line > 0)
{
___print_source_location (loc);
___printf ("\n");
}
}
}
void ___print_ctrl_flow_history_vmstate
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
int i;
___printf ("Most recent control-flow history:\n");
for (i=0; i<___vms->processor_count; i++)
{
___printf ("\nP%d:\n", i);
___print_ctrl_flow_history_pstate (___PSTATE_FROM_PROCESSOR_ID(i,___vms));
}
}
void ___print_ctrl_flow_history ___PVOID
{
___print_ctrl_flow_history_vmstate (___VMSTATE);
}
void ___print_ctrl_flow_last_seen_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___source_location *loc =
&___ps->ctrl_flow_history[(___ps->ctrl_flow_history_index+___CTRL_FLOW_HISTORY_LENGTH-1) %
___CTRL_FLOW_HISTORY_LENGTH];
if (loc->line > 0)
___print_source_location (loc);
else
___printf ("unknown");
___printf ("\n");
}
void ___print_ctrl_flow_last_seen_vmstate
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
int i;
___printf ("Control-flow last seen:\n");
for (i=0; i<___vms->processor_count; i++)
{
___printf ("P%d: ", i);
___print_ctrl_flow_last_seen_pstate (___PSTATE_FROM_PROCESSOR_ID(i,___vms));
}
}
void ___print_ctrl_flow_last_seen ___PVOID
{
___print_ctrl_flow_last_seen_vmstate (___VMSTATE);
}
#endif
#ifdef ___DEBUG_HOST_CHANGES
___EXP_FUNC(void,___register_host_entry)
___P((___PSD
___WORD start,
char *module_name,
char *file,
int line),
(___PSV
start,
module_name,
file,
line)
___PSDKR
___WORD start;
char *module_name;
char *file;
int line;)
{
___PSGET
___SCMOBJ sym;
___source_location loc;
loc.file = file;
loc.line = line;
___print_source_location (&loc);
___printf (" ");
if ((sym = ___find_global_var_bound_to (___ps->pc)) != ___NUL ||
(sym = ___find_global_var_bound_to (start)) != ___NUL)
{
___SCMOBJ name = ___FIELD(sym,___SYMKEY_NAME);
int i;
for (i=0; i<___INT(___STRINGLENGTH(name)); i++)
___printf ("%c", ___INT(___STRINGREF(name,___FIX(i))));
}
else
{
___printf ("|%s| host=0x%08x", module_name, start);
}
if (start == ___ps->pc)
___printf ("\n");
else
___printf (" (subprocedure %d)\n",
___CAST(___label_struct*,___ps->pc) -
___CAST(___label_struct*,start));
}
#endif
/*---------------------------------------------------------------------------*/
/*
* Setup program and execute it.
*/
___HIDDEN void cleanup_os_and_mem_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___cleanup_mem_pstate (___ps);
___cleanup_os_pstate (___ps);
}
___HIDDEN ___SCMOBJ setup_os_and_mem_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
___SCMOBJ err;
if ((err = ___setup_os_pstate (___ps)) == ___FIX(___NO_ERR))
{
if ((err = ___setup_mem_pstate (___ps)) != ___FIX(___NO_ERR))
___cleanup_os_pstate (___ps);
}
return err;
}
___HIDDEN void cleanup_os_and_mem_vmstate
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
___cleanup_mem_vmstate (___vms);
___cleanup_os_vmstate (___vms);
}
___HIDDEN ___SCMOBJ setup_os_and_mem_vmstate
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
___SCMOBJ err;
if ((err = ___setup_os_vmstate (___vms)) == ___FIX(___NO_ERR))
{
if ((err = ___setup_mem_vmstate (___vms)) != ___FIX(___NO_ERR))
___cleanup_os_vmstate (___vms);
}
return err;
}
___HIDDEN void cleanup_os_and_mem ___PVOID
{
___cleanup_mem ();
___cleanup_os ();
}
___HIDDEN ___SCMOBJ setup_os_and_mem ___PVOID
{
___SCMOBJ err;
if ((err = ___setup_os ()) == ___FIX(___NO_ERR))
{
if ((err = ___setup_mem ()) != ___FIX(___NO_ERR))
___cleanup_os ();
}
return err;
}
#ifndef ___SINGLE_THREADED_VMS
___HIDDEN void setup_sync_op_pstate
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
SYNC_INIT_MSG(___ps->sync_id0);
SYNC_INIT_MSG(___ps->sync_id1);
SYNC_INIT_MSG(___ps->sync_id2);
___MUTEX_INIT(___ps->sync_mut);
___CONDVAR_INIT(___ps->sync_cv);
}
#endif
___EXP_FUNC(void,___cleanup_pstate)
___P((___processor_state ___ps),
(___ps)
___processor_state ___ps;)
{
cleanup_os_and_mem_pstate (___ps);
}
___EXP_FUNC(___SCMOBJ,___setup_pstate)
___P((___processor_state ___ps,
___virtual_machine_state ___vms),
(___ps,
___vms)
___processor_state ___ps;
___virtual_machine_state ___vms;)
{
___SCMOBJ err;
int i;
/*
* Processors need to know in which VM they are.
*/
#ifndef ___SINGLE_THREADED_VMS
___ps->vmstate = ___vms;
#endif
/*
* Setup processor's OS specific structures and memory management.
*/
if ((err = setup_os_and_mem_pstate (___ps)) != ___FIX(___NO_ERR))
return err;
___ACTLOG_PS(run,green);
/*
* Setup Scheme processor object of this processor.
*/
setup_processor_scmobj_pstate (___ps);
/*
* Setup registers.
*/
for (i=0; i<sizeof(___ps->r)/sizeof(*___ps->r); i++)
___ps->r[i] = ___VOID;
for (i=0; i<sizeof(___ps->saved)/sizeof(*___ps->saved); i++)
___ps->saved[i] = ___VOID;
/*
* Copy handlers from global state to processor state.
*/
___ps->handler_sfun_conv_error = ___GSTATE->handler_sfun_conv_error;
___ps->handler_cfun_conv_error = ___GSTATE->handler_cfun_conv_error;
___ps->handler_stack_limit = ___GSTATE->handler_stack_limit;
___ps->handler_heap_limit = ___GSTATE->handler_heap_limit;
___ps->handler_not_proc = ___GSTATE->handler_not_proc;
___ps->handler_not_proc_glo = ___GSTATE->handler_not_proc_glo;
___ps->handler_wrong_nargs = ___GSTATE->handler_wrong_nargs;
___ps->handler_get_rest = ___GSTATE->handler_get_rest;
___ps->handler_get_key = ___GSTATE->handler_get_key;
___ps->handler_get_key_rest = ___GSTATE->handler_get_key_rest;
___ps->handler_force = ___GSTATE->handler_force;
___ps->handler_return_to_c = ___GSTATE->handler_return_to_c;
___ps->handler_break = ___GSTATE->handler_break;
___ps->internal_return = ___GSTATE->internal_return;
___ps->dynamic_env_bind_return = ___GSTATE->dynamic_env_bind_return;
/*
* Setup exception handling.
*/
#ifdef ___USE_SETJMP
___ps->catcher = 0;
#endif
/*
* Setup interrupt system of this processor.
*/
setup_interrupts_pstate (___ps);
/*
* Setup synchronous operation system.
*/
#ifndef ___SINGLE_THREADED_VMS
setup_sync_op_pstate (___ps);
#endif
return ___FIX(___NO_ERR);
}
___EXP_FUNC(void,___cleanup_vmstate)
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
___cleanup_mem_vmstate (___vms);
___cleanup_actlog_vmstate (___vms);
}
___EXP_FUNC(___SCMOBJ,___setup_vmstate)
___P((___virtual_machine_state ___vms),
(___vms)
___virtual_machine_state ___vms;)
{
___SCMOBJ err;
/*
* Virtual machine starts off with a single processor.
*/
___vms->processor_count = 1;
___vms->mem.target_processor_count_ = 1;
/*
* Setup ticket lock debugging.
*/
#ifdef ___DEBUG_TICKETLOCK
___vms->ticketlock_history_index = 0;
#endif
/*
* Setup Scheme VM object.
*/
setup_vm_scmobj_vmstate (___vms);
/*
* Setup virtual machine's activity log.
*/
if ((err = ___setup_actlog_vmstate (___vms)) != ___FIX(___NO_ERR))
return err;
/*
* Setup virtual machine's OS specific structures and memory management.
*/
setup_os_and_mem_vmstate (___vms);
/*
* Setup the main processor of the virtual machine.
*/
return ___setup_pstate (___PSTATE_FROM_PROCESSOR_ID(0,___vms), ___vms);
}
___EXP_FUNC(void,___cleanup) ___PVOID
{
___processor_state ___ps = ___PSTATE;
/*
* Only do cleanup once after successful setup.
*/
if (___GSTATE->setup_state != 1)
return;
___GSTATE->setup_state = 2;
___cleanup_all_interrupt_handling ();
#ifndef ___SINGLE_THREADED_VMS
/*
* Shutdown processors of this VM except for processor 0.
*/
___current_vm_resize (___PSP ___FAL, 1);
#endif
___cleanup_pstate (___ps);
#ifdef ___SINGLE_VM
___cleanup_vmstate (&___GSTATE->vmstate0);
#else
___MUTEX_LOCK(___GSTATE->vm_list_mut);
{
___virtual_machine_state ___vms = &___GSTATE->vmstate0;
do
{
___vms = ___vms->prev;
___cleanup_vmstate (___vms);
}
while (___vms != &___GSTATE->vmstate0);
}
___MUTEX_DESTROY(___GSTATE->vm_list_mut);
#endif
cleanup_os_and_mem ();
}
___EXP_FUNC(void,___cleanup_and_exit_process)
___P((int status),
(status)
int status;)
{
___cleanup ();
___exit_process (status);
}
___EXP_FUNC(void,___setup_params_reset)
___P((___setup_params_struct *setup_params),
(setup_params)
___setup_params_struct *setup_params;)
{
setup_params->version = 0;
setup_params->argv = setup_params->reset_argv;
setup_params->min_heap = 0;
setup_params->max_heap = 0;
setup_params->live_percent = 0;
#ifdef ___SINGLE_THREADED_VMS
setup_params->parallelism_level = 1;
#else
setup_params->parallelism_level = 0;
#endif
setup_params->adjust_heap_hook = 0;
setup_params->display_error = 0;
setup_params->fatal_error = 0;
setup_params->standard_level = 0;
setup_params->debug_settings = 0;
setup_params->file_settings = 0;
setup_params->terminal_settings = 0;
setup_params->stdio_settings = 0;
setup_params->gambitdir = 0;
setup_params->gambitdir_map = 0;
setup_params->remote_dbg_addr = 0;
setup_params->rpc_server_addr = 0;
setup_params->linker = 0;
setup_params->reset_argv0[0] = 0;
setup_params->reset_argv[0] = setup_params->reset_argv0;
setup_params->reset_argv[1] = 0;
}
___EXP_FUNC(___SIZE_T,___get_min_heap) ___PVOID
{
return ___GSTATE->setup_params.min_heap;
}
___EXP_FUNC(void,___set_min_heap)
___P((___SIZE_T bytes),
(bytes)
___SIZE_T bytes;)
{
___GSTATE->setup_params.min_heap = bytes;
}
___EXP_FUNC(___SIZE_T,___get_max_heap) ___PVOID
{
return ___GSTATE->setup_params.max_heap;
}
___EXP_FUNC(void,___set_max_heap)
___P((___SIZE_T bytes),
(bytes)
___SIZE_T bytes;)
{
___GSTATE->setup_params.max_heap = bytes;
}
___EXP_FUNC(int,___get_live_percent) ___PVOID
{
return ___GSTATE->setup_params.live_percent;
}
___EXP_FUNC(void,___set_live_percent)
___P((int percent),
(percent)
int percent;)
{
___GSTATE->setup_params.live_percent = percent;
}
___EXP_FUNC(int,___get_parallelism_level) ___PVOID
{
return ___GSTATE->setup_params.parallelism_level;
}
___EXP_FUNC(void,___set_parallelism_level)
___P((int level),
(level)
int level;)
{
___GSTATE->setup_params.parallelism_level = level;
}
___EXP_FUNC(int,___get_standard_level) ___PVOID
{
return ___GSTATE->setup_params.standard_level;
}
___EXP_FUNC(void,___set_standard_level)
___P((int level),
(level)
int level;)
{
___GSTATE->setup_params.standard_level = level;
}
___EXP_FUNC(void,___set_gambitdir)
___P((___UCS_2STRING gambitdir),
(gambitdir)
___UCS_2STRING gambitdir;)
{
___GSTATE->setup_params.gambitdir = gambitdir;
}
___EXP_FUNC(int,___set_debug_settings)
___P((int mask,
int new_settings),
(mask,
new_settings)
int mask;
int new_settings;)
{
int old_settings = ___GSTATE->setup_params.debug_settings;
___GSTATE->setup_params.debug_settings =
(old_settings & ~mask) | (new_settings & mask);
return old_settings;
}
___EXP_FUNC(___program_startup_info_struct*,___get_program_startup_info)
___PVOID
{
return &___program_startup_info;
}
___HIDDEN ___SCMOBJ setup_command_line_arguments ___PVOID
{
___UCS_2STRING *argv = ___GSTATE->setup_params.argv;
if (argv[0] == 0) /* use dummy program name if none supplied */
argv = ___GSTATE->setup_params.reset_argv;
#define ___COMMAND_LINE_CE_SELECT(ISO_8859_1,UTF_8,UCS_2,UCS_4,wchar,native) UCS_2
CANONICALIZE_PATH(___UCS_2STRING, argv[0]);
return ___NONNULLSTRINGLIST_to_SCMOBJ
(NULL, /* allocate as permanent object */
argv,
&___GSTATE->command_line,
-1,
___CE(___COMMAND_LINE_CE_SELECT));
}
___HIDDEN void setup_kernel_handlers ___PVOID
{
___SCMOBJ ___start;
#define ___PH_LBL0 1
/*
* The label numbers must match those in the procedure
* "##kernel-handlers" in the file "_kernel.scm".
*/
___start = ___PRMCELL(___G__23__23_kernel_2d_handlers.prm);
___GSTATE->handler_sfun_conv_error = ___LBL(0);
___GSTATE->handler_cfun_conv_error = ___LBL(1);
___GSTATE->handler_stack_limit = ___LBL(2);
___GSTATE->handler_heap_limit = ___LBL(3);
___GSTATE->handler_not_proc = ___LBL(4);
___GSTATE->handler_not_proc_glo = ___LBL(5);
___GSTATE->handler_wrong_nargs = ___LBL(6);
___GSTATE->handler_get_rest = ___LBL(7);
___GSTATE->handler_get_key = ___LBL(8);
___GSTATE->handler_get_key_rest = ___LBL(9);
___GSTATE->handler_force = ___LBL(10);
___GSTATE->handler_return_to_c = ___LBL(11);
___GSTATE->handler_break = ___LBL(12);
___GSTATE->internal_return = ___LBL(13);
/*
* The label numbers must match those in the procedure
* "##dynamic-env-bind" in the file "_kernel.scm".
*/
___start = ___PRMCELL(___G__23__23_dynamic_2d_env_2d_bind.prm);
___GSTATE->dynamic_env_bind_return = ___LBL(1);
#undef ___PH_LBL0
}
___HIDDEN void setup_dynamic_linking ___PVOID
{
/*
* Setup global state to avoid problems on systems that don't
* support the dynamic loading of files that import functions.
*/
#ifndef ___CAN_IMPORT_CLIB_DYNAMICALLY
___GSTATE->fabs = fabs;
___GSTATE->floor = floor;
___GSTATE->ceil = ceil;
#ifndef ___DEFINE_SCALBN
___GSTATE->scalbn= scalbn;
#endif
#ifndef ___DEFINE_ILOGB
___GSTATE->ilogb = ilogb;
#endif
___GSTATE->exp = exp;
#ifndef ___DEFINE_EXPM1
___GSTATE->expm1 = expm1;
#endif
___GSTATE->log = log;
#ifndef ___DEFINE_LOG1P
___GSTATE->log1p = log1p;
#endif
___GSTATE->sin = sin;
___GSTATE->cos = cos;
___GSTATE->tan = tan;
___GSTATE->asin = asin;
___GSTATE->acos = acos;
___GSTATE->atan = atan;
#ifndef ___DEFINE_SINH
___GSTATE->sinh = sinh;
#endif
#ifndef ___DEFINE_COSH
___GSTATE->cosh = cosh;
#endif
#ifndef ___DEFINE_TANH
___GSTATE->tanh = tanh;
#endif
#ifndef ___DEFINE_ASINH
___GSTATE->asinh = asinh;
#endif
#ifndef ___DEFINE_ACOSH
___GSTATE->acosh = acosh;
#endif
#ifndef ___DEFINE_ATANH
___GSTATE->atanh = atanh;
#endif
#ifndef ___DEFINE_ATAN2
___GSTATE->atan2 = atan2;
#endif
#ifndef ___DEFINE_POW
___GSTATE->pow = pow;
#endif
___GSTATE->sqrt = sqrt;
#endif
#ifdef ___USE_SETJMP
#ifndef ___CAN_IMPORT_SETJMP_DYNAMICALLY
___GSTATE->setjmp = setjmp;
#endif
#endif
#ifndef ___CAN_IMPORT_DYNAMICALLY
___GSTATE->___iswalpha
= ___iswalpha;
___GSTATE->___iswdigit
= ___iswdigit;
___GSTATE->___iswspace
= ___iswspace;
___GSTATE->___iswupper
= ___iswupper;
___GSTATE->___iswlower
= ___iswlower;
___GSTATE->___towupper
= ___towupper;
___GSTATE->___towlower
= ___towlower;
___GSTATE->___string_collate
= ___string_collate;
___GSTATE->___string_collate_ci
= ___string_collate_ci;
___GSTATE->___copysign
= ___copysign;
___GSTATE->___isfinite
= ___isfinite;
___GSTATE->___isnan
= ___isnan;
___GSTATE->___trunc
= ___trunc;
___GSTATE->___round
= ___round;
#ifdef ___DEFINE_SCALBN
___GSTATE->___scalbn
= ___scalbn;
#endif
#ifdef ___DEFINE_ILOGB
___GSTATE->___ilogb
= ___ilogb;
#endif
#ifdef ___DEFINE_EXPM1
___GSTATE->___expm1
= ___expm1;
#endif
#ifdef ___DEFINE_LOG1P
___GSTATE->___log1p
= ___log1p;
#endif
#ifdef ___DEFINE_SINH
___GSTATE->___sinh
= ___sinh;
#endif
#ifdef ___DEFINE_COSH
___GSTATE->___cosh
= ___cosh;
#endif
#ifdef ___DEFINE_TANH
___GSTATE->___tanh
= ___tanh;
#endif
#ifdef ___DEFINE_ASINH
___GSTATE->___asinh
= ___asinh;
#endif
#ifdef ___DEFINE_ACOSH
___GSTATE->___acosh
= ___acosh;
#endif
#ifdef ___DEFINE_ATANH
___GSTATE->___atanh
= ___atanh;
#endif
#ifdef ___DEFINE_ATAN2
___GSTATE->___atan2
= ___atan2;
#endif
#ifdef ___DEFINE_POW
___GSTATE->___pow
= ___pow;
#endif
___GSTATE->___F64_to_STRING
= ___F64_to_STRING;
___GSTATE->___S64_from_SM32_fn
= ___S64_from_SM32_fn;
___GSTATE->___S64_from_SM32_UM32_fn
= ___S64_from_SM32_UM32_fn;
___GSTATE->___S64_from_LONGLONG_fn
= ___S64_from_LONGLONG_fn;
___GSTATE->___S64_to_LONGLONG_fn
= ___S64_to_LONGLONG_fn;
___GSTATE->___S64_fits_in_width_fn
= ___S64_fits_in_width_fn;
___GSTATE->___U64_from_UM32_fn
= ___U64_from_UM32_fn;
___GSTATE->___U64_from_UM32_UM32_fn
= ___U64_from_UM32_UM32_fn;
___GSTATE->___U64_from_ULONGLONG_fn
= ___U64_from_ULONGLONG_fn;
___GSTATE->___U64_to_ULONGLONG_fn
= ___U64_to_ULONGLONG_fn;
___GSTATE->___U64_fits_in_width_fn
= ___U64_fits_in_width_fn;
___GSTATE->___U64_mul_UM32_UM32_fn
= ___U64_mul_UM32_UM32_fn;
___GSTATE->___U64_add_U64_U64_fn
= ___U64_add_U64_U64_fn;
___GSTATE->___SCMOBJ_to_S8
= ___SCMOBJ_to_S8;
___GSTATE->___SCMOBJ_to_U8
= ___SCMOBJ_to_U8;
___GSTATE->___SCMOBJ_to_S16
= ___SCMOBJ_to_S16;
___GSTATE->___SCMOBJ_to_U16
= ___SCMOBJ_to_U16;
___GSTATE->___SCMOBJ_to_S32
= ___SCMOBJ_to_S32;
___GSTATE->___SCMOBJ_to_U32
= ___SCMOBJ_to_U32;
___GSTATE->___SCMOBJ_to_S64
= ___SCMOBJ_to_S64;
___GSTATE->___SCMOBJ_to_U64
= ___SCMOBJ_to_U64;
___GSTATE->___SCMOBJ_to_F32
= ___SCMOBJ_to_F32;
___GSTATE->___SCMOBJ_to_F64
= ___SCMOBJ_to_F64;
___GSTATE->___SCMOBJ_to_CHAR
= ___SCMOBJ_to_CHAR;
___GSTATE->___SCMOBJ_to_SCHAR
= ___SCMOBJ_to_SCHAR;
___GSTATE->___SCMOBJ_to_UCHAR
= ___SCMOBJ_to_UCHAR;
___GSTATE->___SCMOBJ_to_ISO_8859_1
= ___SCMOBJ_to_ISO_8859_1;
___GSTATE->___SCMOBJ_to_UCS_2
= ___SCMOBJ_to_UCS_2;
___GSTATE->___SCMOBJ_to_UCS_4
= ___SCMOBJ_to_UCS_4;
___GSTATE->___SCMOBJ_to_WCHAR
= ___SCMOBJ_to_WCHAR;
___GSTATE->___SCMOBJ_to_SIZE_T
= ___SCMOBJ_to_SIZE_T;
___GSTATE->___SCMOBJ_to_SSIZE_T
= ___SCMOBJ_to_SSIZE_T;
___GSTATE->___SCMOBJ_to_PTRDIFF_T
= ___SCMOBJ_to_PTRDIFF_T;
___GSTATE->___SCMOBJ_to_SHORT
= ___SCMOBJ_to_SHORT;
___GSTATE->___SCMOBJ_to_USHORT
= ___SCMOBJ_to_USHORT;
___GSTATE->___SCMOBJ_to_INT
= ___SCMOBJ_to_INT;
___GSTATE->___SCMOBJ_to_UINT
= ___SCMOBJ_to_UINT;
___GSTATE->___SCMOBJ_to_LONG
= ___SCMOBJ_to_LONG;
___GSTATE->___SCMOBJ_to_ULONG
= ___SCMOBJ_to_ULONG;
___GSTATE->___SCMOBJ_to_LONGLONG
= ___SCMOBJ_to_LONGLONG;
___GSTATE->___SCMOBJ_to_ULONGLONG
= ___SCMOBJ_to_ULONGLONG;
___GSTATE->___SCMOBJ_to_FLOAT
= ___SCMOBJ_to_FLOAT;
___GSTATE->___SCMOBJ_to_DOUBLE
= ___SCMOBJ_to_DOUBLE;
___GSTATE->___SCMOBJ_to_STRUCT
= ___SCMOBJ_to_STRUCT;
___GSTATE->___SCMOBJ_to_UNION
= ___SCMOBJ_to_UNION;
___GSTATE->___SCMOBJ_to_TYPE
= ___SCMOBJ_to_TYPE;
___GSTATE->___SCMOBJ_to_POINTER
= ___SCMOBJ_to_POINTER;
___GSTATE->___SCMOBJ_to_NONNULLPOINTER
= ___SCMOBJ_to_NONNULLPOINTER;
___GSTATE->___SCMOBJ_to_FUNCTION
= ___SCMOBJ_to_FUNCTION;
___GSTATE->___SCMOBJ_to_NONNULLFUNCTION
= ___SCMOBJ_to_NONNULLFUNCTION;
___GSTATE->___SCMOBJ_to_BOOL
= ___SCMOBJ_to_BOOL;
___GSTATE->___SCMOBJ_to_STRING
= ___SCMOBJ_to_STRING;
___GSTATE->___SCMOBJ_to_NONNULLSTRING
= ___SCMOBJ_to_NONNULLSTRING;
___GSTATE->___SCMOBJ_to_NONNULLSTRINGLIST
= ___SCMOBJ_to_NONNULLSTRINGLIST;
___GSTATE->___SCMOBJ_to_CHARSTRING
= ___SCMOBJ_to_CHARSTRING;
___GSTATE->___SCMOBJ_to_NONNULLCHARSTRING
= ___SCMOBJ_to_NONNULLCHARSTRING;
___GSTATE->___SCMOBJ_to_NONNULLCHARSTRINGLIST
= ___SCMOBJ_to_NONNULLCHARSTRINGLIST;
___GSTATE->___SCMOBJ_to_ISO_8859_1STRING
= ___SCMOBJ_to_ISO_8859_1STRING;
___GSTATE->___SCMOBJ_to_NONNULLISO_8859_1STRING
= ___SCMOBJ_to_NONNULLISO_8859_1STRING;
___GSTATE->___SCMOBJ_to_NONNULLISO_8859_1STRINGLIST
= ___SCMOBJ_to_NONNULLISO_8859_1STRINGLIST;
___GSTATE->___SCMOBJ_to_UTF_8STRING
= ___SCMOBJ_to_UTF_8STRING;
___GSTATE->___SCMOBJ_to_NONNULLUTF_8STRING
= ___SCMOBJ_to_NONNULLUTF_8STRING;
___GSTATE->___SCMOBJ_to_NONNULLUTF_8STRINGLIST
= ___SCMOBJ_to_NONNULLUTF_8STRINGLIST;
___GSTATE->___SCMOBJ_to_UTF_16STRING
= ___SCMOBJ_to_UTF_16STRING;
___GSTATE->___SCMOBJ_to_NONNULLUTF_16STRING
= ___SCMOBJ_to_NONNULLUTF_16STRING;
___GSTATE->___SCMOBJ_to_NONNULLUTF_16STRINGLIST
= ___SCMOBJ_to_NONNULLUTF_16STRINGLIST;
___GSTATE->___SCMOBJ_to_UCS_2STRING
= ___SCMOBJ_to_UCS_2STRING;
___GSTATE->___SCMOBJ_to_NONNULLUCS_2STRING
= ___SCMOBJ_to_NONNULLUCS_2STRING;
___GSTATE->___SCMOBJ_to_NONNULLUCS_2STRINGLIST
= ___SCMOBJ_to_NONNULLUCS_2STRINGLIST;
___GSTATE->___SCMOBJ_to_UCS_4STRING
= ___SCMOBJ_to_UCS_4STRING;
___GSTATE->___SCMOBJ_to_NONNULLUCS_4STRING
= ___SCMOBJ_to_NONNULLUCS_4STRING;
___GSTATE->___SCMOBJ_to_NONNULLUCS_4STRINGLIST
= ___SCMOBJ_to_NONNULLUCS_4STRINGLIST;
___GSTATE->___SCMOBJ_to_WCHARSTRING
= ___SCMOBJ_to_WCHARSTRING;
___GSTATE->___SCMOBJ_to_NONNULLWCHARSTRING
= ___SCMOBJ_to_NONNULLWCHARSTRING;
___GSTATE->___SCMOBJ_to_NONNULLWCHARSTRINGLIST
= ___SCMOBJ_to_NONNULLWCHARSTRINGLIST;
___GSTATE->___SCMOBJ_to_VARIANT
= ___SCMOBJ_to_VARIANT;
___GSTATE->___release_foreign
= ___release_foreign;
___GSTATE->___release_pointer
= ___release_pointer;
___GSTATE->___release_function
= ___release_function;
___GSTATE->___addref_function
= ___addref_function;
___GSTATE->___release_string
= ___release_string;
___GSTATE->___addref_string
= ___addref_string;
___GSTATE->___release_string_list
= ___release_string_list;
___GSTATE->___addref_string_list
= ___addref_string_list;
___GSTATE->___release_variant
= ___release_variant;
___GSTATE->___addref_variant
= ___addref_variant;
___GSTATE->___S8_to_SCMOBJ
= ___S8_to_SCMOBJ;
___GSTATE->___U8_to_SCMOBJ
= ___U8_to_SCMOBJ;
___GSTATE->___S16_to_SCMOBJ
= ___S16_to_SCMOBJ;
___GSTATE->___U16_to_SCMOBJ
= ___U16_to_SCMOBJ;
___GSTATE->___S32_to_SCMOBJ
= ___S32_to_SCMOBJ;
___GSTATE->___U32_to_SCMOBJ
= ___U32_to_SCMOBJ;
___GSTATE->___S64_to_SCMOBJ
= ___S64_to_SCMOBJ;
___GSTATE->___U64_to_SCMOBJ
= ___U64_to_SCMOBJ;
___GSTATE->___F32_to_SCMOBJ
= ___F32_to_SCMOBJ;
___GSTATE->___F64_to_SCMOBJ
= ___F64_to_SCMOBJ;
___GSTATE->___CHAR_to_SCMOBJ
= ___CHAR_to_SCMOBJ;
___GSTATE->___SCHAR_to_SCMOBJ
= ___SCHAR_to_SCMOBJ;
___GSTATE->___UCHAR_to_SCMOBJ
= ___UCHAR_to_SCMOBJ;
___GSTATE->___ISO_8859_1_to_SCMOBJ
= ___ISO_8859_1_to_SCMOBJ;
___GSTATE->___UCS_2_to_SCMOBJ
= ___UCS_2_to_SCMOBJ;
___GSTATE->___UCS_4_to_SCMOBJ
= ___UCS_4_to_SCMOBJ;
___GSTATE->___WCHAR_to_SCMOBJ
= ___WCHAR_to_SCMOBJ;
___GSTATE->___SIZE_T_to_SCMOBJ
= ___SIZE_T_to_SCMOBJ;
___GSTATE->___SSIZE_T_to_SCMOBJ
= ___SSIZE_T_to_SCMOBJ;
___GSTATE->___PTRDIFF_T_to_SCMOBJ
= ___PTRDIFF_T_to_SCMOBJ;
___GSTATE->___SHORT_to_SCMOBJ
= ___SHORT_to_SCMOBJ;
___GSTATE->___USHORT_to_SCMOBJ
= ___USHORT_to_SCMOBJ;
___GSTATE->___INT_to_SCMOBJ
= ___INT_to_SCMOBJ;
___GSTATE->___UINT_to_SCMOBJ
= ___UINT_to_SCMOBJ;
___GSTATE->___LONG_to_SCMOBJ
= ___LONG_to_SCMOBJ;
___GSTATE->___ULONG_to_SCMOBJ
= ___ULONG_to_SCMOBJ;
___GSTATE->___LONGLONG_to_SCMOBJ
= ___LONGLONG_to_SCMOBJ;
___GSTATE->___ULONGLONG_to_SCMOBJ
= ___ULONGLONG_to_SCMOBJ;
___GSTATE->___FLOAT_to_SCMOBJ
= ___FLOAT_to_SCMOBJ;
___GSTATE->___DOUBLE_to_SCMOBJ
= ___DOUBLE_to_SCMOBJ;
___GSTATE->___STRUCT_to_SCMOBJ
= ___STRUCT_to_SCMOBJ;
___GSTATE->___UNION_to_SCMOBJ
= ___UNION_to_SCMOBJ;
___GSTATE->___TYPE_to_SCMOBJ
= ___TYPE_to_SCMOBJ;
___GSTATE->___POINTER_to_SCMOBJ
= ___POINTER_to_SCMOBJ;
___GSTATE->___NONNULLPOINTER_to_SCMOBJ
= ___NONNULLPOINTER_to_SCMOBJ;
___GSTATE->___FUNCTION_to_SCMOBJ
= ___FUNCTION_to_SCMOBJ;
___GSTATE->___NONNULLFUNCTION_to_SCMOBJ
= ___NONNULLFUNCTION_to_SCMOBJ;
___GSTATE->___BOOL_to_SCMOBJ
= ___BOOL_to_SCMOBJ;
___GSTATE->___STRING_to_SCMOBJ
= ___STRING_to_SCMOBJ;
___GSTATE->___NONNULLSTRING_to_SCMOBJ
= ___NONNULLSTRING_to_SCMOBJ;
___GSTATE->___NONNULLSTRINGLIST_to_SCMOBJ
= ___NONNULLSTRINGLIST_to_SCMOBJ;
___GSTATE->___CHARSTRING_to_SCMOBJ
= ___CHARSTRING_to_SCMOBJ;
___GSTATE->___NONNULLCHARSTRING_to_SCMOBJ
= ___NONNULLCHARSTRING_to_SCMOBJ;
___GSTATE->___NONNULLCHARSTRINGLIST_to_SCMOBJ
= ___NONNULLCHARSTRINGLIST_to_SCMOBJ;
___GSTATE->___ISO_8859_1STRING_to_SCMOBJ
= ___ISO_8859_1STRING_to_SCMOBJ;
___GSTATE->___NONNULLISO_8859_1STRING_to_SCMOBJ
= ___NONNULLISO_8859_1STRING_to_SCMOBJ;
___GSTATE->___NONNULLISO_8859_1STRINGLIST_to_SCMOBJ
= ___NONNULLISO_8859_1STRINGLIST_to_SCMOBJ;
___GSTATE->___UTF_8STRING_to_SCMOBJ
= ___UTF_8STRING_to_SCMOBJ;
___GSTATE->___NONNULLUTF_8STRING_to_SCMOBJ
= ___NONNULLUTF_8STRING_to_SCMOBJ;
___GSTATE->___NONNULLUTF_8STRINGLIST_to_SCMOBJ
= ___NONNULLUTF_8STRINGLIST_to_SCMOBJ;
___GSTATE->___UTF_16STRING_to_SCMOBJ
= ___UTF_16STRING_to_SCMOBJ;
___GSTATE->___NONNULLUTF_16STRING_to_SCMOBJ
= ___NONNULLUTF_16STRING_to_SCMOBJ;
___GSTATE->___NONNULLUTF_16STRINGLIST_to_SCMOBJ
= ___NONNULLUTF_16STRINGLIST_to_SCMOBJ;
___GSTATE->___UCS_2STRING_to_SCMOBJ
= ___UCS_2STRING_to_SCMOBJ;
___GSTATE->___NONNULLUCS_2STRING_to_SCMOBJ
= ___NONNULLUCS_2STRING_to_SCMOBJ;
___GSTATE->___NONNULLUCS_2STRINGLIST_to_SCMOBJ
= ___NONNULLUCS_2STRINGLIST_to_SCMOBJ;
___GSTATE->___UCS_4STRING_to_SCMOBJ
= ___UCS_4STRING_to_SCMOBJ;
___GSTATE->___NONNULLUCS_4STRING_to_SCMOBJ
= ___NONNULLUCS_4STRING_to_SCMOBJ;
___GSTATE->___NONNULLUCS_4STRINGLIST_to_SCMOBJ
= ___NONNULLUCS_4STRINGLIST_to_SCMOBJ;
___GSTATE->___WCHARSTRING_to_SCMOBJ
= ___WCHARSTRING_to_SCMOBJ;
___GSTATE->___NONNULLWCHARSTRING_to_SCMOBJ
= ___NONNULLWCHARSTRING_to_SCMOBJ;
___GSTATE->___NONNULLWCHARSTRINGLIST_to_SCMOBJ
= ___NONNULLWCHARSTRINGLIST_to_SCMOBJ;
___GSTATE->___VARIANT_to_SCMOBJ
= ___VARIANT_to_SCMOBJ;
___GSTATE->___STRING_to_UCS_2STRING
= ___STRING_to_UCS_2STRING;
___GSTATE->___free_UCS_2STRING
= ___free_UCS_2STRING;
___GSTATE->___NONNULLSTRINGLIST_to_NONNULLUCS_2STRINGLIST
= ___NONNULLSTRINGLIST_to_NONNULLUCS_2STRINGLIST;
___GSTATE->___free_NONNULLUCS_2STRINGLIST
= ___free_NONNULLUCS_2STRINGLIST;
___GSTATE->___make_sfun_stack_marker
= ___make_sfun_stack_marker;
___GSTATE->___kill_sfun_stack_marker
= ___kill_sfun_stack_marker;
___GSTATE->___alloc_rc
= ___alloc_rc;
___GSTATE->___release_rc
= ___release_rc;
___GSTATE->___addref_rc
= ___addref_rc;
___GSTATE->___data_rc
= ___data_rc;
___GSTATE->___set_data_rc
= ___set_data_rc;
___GSTATE->___alloc_scmobj
= ___alloc_scmobj;
___GSTATE->___release_scmobj
= ___release_scmobj;
___GSTATE->___make_pair
= ___make_pair;
___GSTATE->___make_vector
= ___make_vector;
___GSTATE->___still_obj_refcount_inc
= ___still_obj_refcount_inc;
___GSTATE->___still_obj_refcount_dec
= ___still_obj_refcount_dec;
___GSTATE->___gc_hash_table_ref
= ___gc_hash_table_ref;
___GSTATE->___gc_hash_table_set
= ___gc_hash_table_set;
___GSTATE->___gc_hash_table_union_find
= ___gc_hash_table_union_find;
___GSTATE->___gc_hash_table_rehash
= ___gc_hash_table_rehash;
___GSTATE->___cleanup
= ___cleanup;
___GSTATE->___cleanup_and_exit_process
= ___cleanup_and_exit_process;
___GSTATE->___current_vm_resize
= ___current_vm_resize;
___GSTATE->___garbage_collect
= ___garbage_collect;
___GSTATE->___setup_vmstate
= ___setup_vmstate;
___GSTATE->___cleanup_vmstate
= ___cleanup_vmstate;
___GSTATE->___setup_pstate
= ___setup_pstate;
___GSTATE->___cleanup_pstate
= ___cleanup_pstate;
___GSTATE->___get_min_heap
= ___get_min_heap;
___GSTATE->___set_min_heap
= ___set_min_heap;
___GSTATE->___get_max_heap
= ___get_max_heap;
___GSTATE->___set_max_heap
= ___set_max_heap;
___GSTATE->___get_live_percent
= ___get_live_percent;
___GSTATE->___set_live_percent
= ___set_live_percent;
___GSTATE->___get_parallelism_level
= ___get_parallelism_level;
___GSTATE->___set_parallelism_level
= ___set_parallelism_level;
___GSTATE->___get_standard_level
= ___get_standard_level;
___GSTATE->___set_standard_level
= ___set_standard_level;
___GSTATE->___set_debug_settings
= ___set_debug_settings;
___GSTATE->___get_program_startup_info
= ___get_program_startup_info;
___GSTATE->___call
= ___call;
___GSTATE->___run
= ___run;
#ifdef ___SUPPORT_LOWLEVEL_EXEC
___GSTATE->___lowlevel_exec
= ___lowlevel_exec;
#endif
___GSTATE->___machine_code_block_fixup
= ___machine_code_block_fixup;
___GSTATE->___throw_error
= ___throw_error;
___GSTATE->___propagate_error
= ___propagate_error;
#ifdef ___DEBUG_HOST_CHANGES
___GSTATE->___register_host_entry
= ___register_host_entry;
#endif
#ifdef ___ACTIVITY_LOG
___GSTATE->___actlog_add_pstate
= ___actlog_add_pstate;
___GSTATE->___actlog_begin_pstate
= ___actlog_begin_pstate;
___GSTATE->___actlog_end_pstate
= ___actlog_end_pstate;
___GSTATE->___actlog_start
= ___actlog_start;
___GSTATE->___actlog_stop
= ___actlog_stop;
___GSTATE->___actlog_dump
= ___actlog_dump;
#endif
___GSTATE->___raise_interrupt_pstate
= ___raise_interrupt_pstate;
___GSTATE->___raise_interrupt_vmstate
= ___raise_interrupt_vmstate;
___GSTATE->___raise_interrupt
= ___raise_interrupt;
___GSTATE->___begin_interrupt_service_pstate
= ___begin_interrupt_service_pstate;
___GSTATE->___check_interrupt_pstate
= ___check_interrupt_pstate;
___GSTATE->___end_interrupt_service_pstate
= ___end_interrupt_service_pstate;
___GSTATE->___disable_interrupts_pstate
= ___disable_interrupts_pstate;
___GSTATE->___enable_interrupts_pstate
= ___enable_interrupts_pstate;
___GSTATE->___mask_all_interrupts_begin
= ___mask_all_interrupts_begin;
___GSTATE->___mask_all_interrupts_end
= ___mask_all_interrupts_end;
___GSTATE->___mask_user_interrupts_begin
= ___mask_user_interrupts_begin;
___GSTATE->___mask_user_interrupts_end
= ___mask_user_interrupts_end;
___GSTATE->___mask_heartbeat_interrupts_begin
= ___mask_heartbeat_interrupts_begin;
___GSTATE->___mask_heartbeat_interrupts_end
= ___mask_heartbeat_interrupts_end;
___GSTATE->___mask_child_interrupts_begin
= ___mask_child_interrupts_begin;
___GSTATE->___mask_child_interrupts_end
= ___mask_child_interrupts_end;
___GSTATE->___alloc_mem
= ___alloc_mem;
___GSTATE->___free_mem
= ___free_mem;
___GSTATE->___alloc_mem_code
= ___alloc_mem_code;
___GSTATE->___free_mem_code
= ___free_mem_code;
#ifdef ___USE_emulated_sync
___GSTATE->___emulated_compare_and_swap_word
= ___emulated_compare_and_swap_word;
___GSTATE->___emulated_fetch_and_add_word
= ___emulated_fetch_and_add_word;
___GSTATE->___emulated_fetch_and_clear_word
= ___emulated_fetch_and_clear_word;
#endif
#ifdef ___DEFINE_THREAD_LOCAL_STORAGE_GETTER_SETTER
___GSTATE->___get_tls_ptr
= ___get_tls_ptr;
___GSTATE->___set_tls_ptr
= ___set_tls_ptr;
#endif
#endif
}
___EXP_FUNC(___SCMOBJ,___setup)
___P((___setup_params_struct *setup_params),
(setup_params)
___setup_params_struct *setup_params;)
{
___SCMOBJ err;
___virtual_machine_state ___vms = &___GSTATE->vmstate0;
___processor_state ___ps = ___PSTATE_FROM_PROCESSOR_ID(0,___vms);
___SCMOBJ module_descrs;
___mod_or_lnk mol;
/*
* Check for valid setup_params structure.
*/
if (setup_params == 0 ||
setup_params->version != ___VERSION)
return ___FIX(___UNKNOWN_ERR);
/*
* Remember setup parameters.
*/
___GSTATE->setup_params = *setup_params;
/*
* Disallow cleanup, in case setup fails.
*/
___GSTATE->setup_state = 2;
/*
* Setup virtual machine circular list.
*/
#ifndef ___SINGLE_VM
___MUTEX_INIT(___GSTATE->vm_list_mut);
___vms->prev = ___vms;
___vms->next = ___vms;
#endif
/*
* Setup support for dynamic linking.
*/
setup_dynamic_linking ();
/*
* Setup the operating system and memory management modules.
*/
if ((err = setup_os_and_mem ()) != ___FIX(___NO_ERR))
return err;
/*
* Allow cleanup.
*/
___GSTATE->setup_state = 1;
/*
* Setup program's linker structure.
*/
mol = linker_to_mod_or_lnk (___GSTATE->setup_params.linker);
/*
* Initialize symbol table, keyword table, global variables
* and primitives.
*/
init_symkey_glo1 (mol);
init_symkey_glo2 (mol);
do
{
/*
* Setup each module.
*/
err = setup_modules (NULL, mol);
if (___FIXNUMP(err))
break;
___GSTATE->program_descr = err;
/*
* Setup kernel handlers.
*/
setup_kernel_handlers ();
/*
* Create list of command line arguments (for ##command-line).
*/
if ((err = setup_command_line_arguments ())
!= ___FIX(___NO_ERR))
break;
/*
* Setup the main virtual machine.
*/
if ((err = ___setup_vmstate (___vms))
!= ___FIX(___NO_ERR))
break;
#ifndef ___SINGLE_THREADED_VMS
/*
* Associate the current OS thread with the processor state
* it is running.
*/
if ((err = ___thread_init_from_self (&___ps->os_thread))
!= ___FIX(___NO_ERR))
break;
#endif
/*
* Setup current OS thread so that it can find the processor state
* it is running.
*/
___thread_set_pstate (___ps);
/*
* By convention, the main module is the last one in the module
* descriptors.
*/
module_descrs = ___FIELD(___GSTATE->program_descr,0);
___vms->main_module_id =
___FIELD(___FIELD(module_descrs,
___INT(___VECTORLENGTH(module_descrs))-1),
0);
/*
* Start virtual machine execution by loading _kernel module.
*/
err = ___run (___PSP
___FIELD(___FIELD(___FIELD(___GSTATE->program_descr,0),0),1));
} while (0);
/*
* Cleanup if there are any errors.
*/
if (err != ___FIX(___NO_ERR))
___cleanup ();
return err;
}
/*---------------------------------------------------------------------------*/
|