1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805
|
#define SGC
#define EXTER extern
/* h/gclincl.h. Generated from gclincl.h.in by configure. */
/* h/gclincl.h.in. Generated from configure.in by autoheader. */
/* define where the heap could begin. Normally should
be the smallest value returned by sbrk(). Underestimating
by 10-20 megabytes is not a problem. */
#define DBEGIN 0x8000000 /* where data begins */
/* the size of the page tables for gcl. Each page is PAGESIZE which
is usually 4K or 8K bytes. From 1 to 3 bytes per page are
preallocated in a table at compile time. this must be a power of 2 if
SGC is enabled. */
#define MAXPAGE (128*1024*(SIZEOF_LONG>>2)/(1<<(PAGEWIDTH-12)))
#define VSSIZE 128*1024
#define BDSSIZE 2*1024
#define IHSSIZE 4*1024
#define FRSSIZE 4*1024
#define HOLEPAGE (MAXPAGE/10)
/* check to see if getcwd exists
*/
#define HAVE_GETCWD 1
/* if we dont have USEGETCWD, we will use GETWD unless following defined
*/
#define HAVE_GETWD 1
/* no gettimeofday function */
/* #undef NO_GETTOD */
/* define if have <asm/signal.h> */
#define HAVE_ASM_SIGNAL_H 1
/* define if have <asm/sigcontext.h> */
#define HAVE_ASM_SIGCONTEXT_H 1
/* define if have struct sigcontext in one of above */
/* #undef HAVE_SIGCONTEXT */
/* define if have <sys/ioctl.h> */
#define HAVE_SYS_IOCTL_H 1
/* define if we can use the file nsocket.c */
#define HAVE_NSOCKET 1
#ifndef HAVE_ALLOCA
/* define this if you have alloca */
#define HAVE_ALLOCA 1
#endif
/* define if need alloca.h */
/* #undef NEED_ALLOCA_H */
#ifdef NEED_ALLOCA_H
#include <alloca.h>
#endif
/* define LISTEN_USE_FCNTL if we can check for input using fcntl */
#define LISTEN_USE_FCNTL 1
/* if signal.h alone contains the stuff necessary for sgc */
#define SIGNAL_H_HAS_SIGCONTEXT 1
/* define if the profil system call is not defined in libc */
/* #undef NO_PROFILE */
/* define if the _cleanup() function exists and should be called
before saving */
/* #define USE_CLEANUP */
/* define if BIG_ENDIAN or LITTLE_ENDIAN is defined by including
the standard includes */
/* #define ENDIAN_ALREADY_DEFINED */
/* define if SV_ONSTACK is defined in signal.h */
#define HAVE_SV_ONSTACK 1
/*
define to be a typical stack address. We use this to decide
whether we can use a cheap test for NULL_OR_ON_C_STACK, or whether
it has to be more complex..
*/
#define CSTACK_ADDRESS -1075718936
/* define if SIGSYS is defined in signal.h */
#define HAVE_SIGSYS 1
/* define if SIGEMT is defined in signal.h */
/* #undef HAVE_SIGEMT */
/* define if setenv is define */
#define HAVE_SETENV 1
/* define if putenv is define */
/* #undef HAVE_PUTENV */
/* define if long long int works to multiply to ints, */
#define HAVE_LONG_LONG 1
/* define if want to use GMP */
#define GMP 1
/* have a broken version of C compiler which makes bad code for -O4 */
/* #undef BROKEN_O4_OPT */
/* See if gettimeofday is declared in the <sys/time.h> header file. */
/* if not, set the GETTOD_NOT_DECLARED flag so that tclPort.h can */
/* declare it. */
#define GETTOD_NOT_DECLARED 1
/* #undef HAVE_BSDGETTIMEOFDAY */
/* #undef NO_UNAME */
/* FIONBIO vs. O_NONBLOCK for nonblocking I/O */
/* #undef USE_FIONBIO */
/* readline support */
#define HAVE_READLINE 1
/* bfd support */
/* #undef HAVE_LIBBFD */
/* #undef NEED_CONST */
#define HAVE_BFD_BOOLEAN
#ifdef HAVE_BFD_BOOLEAN
#define MY_BFD_BOOLEAN bfd_boolean
#define MY_BFD_FALSE FALSE
#define MY_BFD_TRUE TRUE
#else
#define MY_BFD_BOOLEAN boolean
#define MY_BFD_FALSE false
#define MY_BFD_TRUE true
#endif
/* isnormal check */
#define HAVE_ISNORMAL 1
/* #undef HAVE_IEEEFP */
#ifdef IN_NUM_CO
#ifdef HAVE_ISNORMAL
#define _GNU_SOURCE
#include <math.h>
#define ISNORMAL(a) isnormal(a)
#else
#ifdef HAVE_IEEEFP
#include <ieeefp.h>
#define ISNORMAL(a) (fpclass(a)>=FP_NZERO)
#else
#include <math.h>
#define ISNORMAL(a) ((sizeof (a) == sizeof (float)) ? \
gcl_isnormal_float(a) : \
gcl_isnormal_double(a))
#endif
#endif
#endif
#define HAVE_ISFINITE 1
/* #undef HAVE_FINITE */
#ifdef NEED_ISFINITE
#ifdef HAVE_ISFINITE
#define _GNU_SOURCE
#include <math.h>
#define ISFINITE(a) isfinite(a)
#else
#ifdef HAVE_FINITE
#include <math.h>
#include <ieeefp.h>
#define ISFINITE(a) finite(a)
#else
#error "No isfinite found"
#endif
#endif
#endif
#define HAVE_VALUES_H 1
#define HAVE_FLOAT_H 1
#ifdef IN_NUM_CO
#ifdef HAVE_VALUES_H
#include <values.h>
#endif
#ifdef HAVE_FLOAT_H
#include <float.h>
#endif
#endif
/* math.h for definitions in generated C code */
#define HAVE_MATH_H 1
#ifdef HAVE_MATH_H
#include <math.h>
#endif
#define LITTLE_END 1
#define PAGEWIDTH 12
/* #ifdef PAGEWIDTH */
/* #undef PAGESIZE */
/* #define PAGESIZE (1<<PAGEWIDTH) */
/* #endif */
#define SIZEOF_LONG 4
/* #undef USE_DLOPEN */
#define MP_LIMB_BYTES 4
/* #undef ANSI_COMMON_LISP */
/* #undef __SHORT_LIMB */
/* #undef __LONG_LONG_LIMB */
/* #undef HAVE_JAPI_H */
#define HAVE_XDR 1
/* #undef ENDIAN_ALREADY_DEFINED */
/* #undef USE_CLEANUP */
#define SIZEOF_CONTBLOCK 8
/* #undef GCL_GPROF */
#define HAVE_DECL_RL_COMPLETION_MATCHES 1
#define HAVE_RL_COMPENTRY_FUNC_T 1
#define HAVE_GNU_LD 1
#define CAN_UNRANDOMIZE_SBRK 1
#define HOST_CPU "I486"
#define HOST_KERNEL "LINUX"
#define HOST_SYSTEM "GNU"
/* #undef GCL_GPROF_START */
#define HZ 100
/* #undef ADDR_NO_RANDOMIZE */
/* #undef LEADING_UNDERSCORE */
#define HAVE_XGCL 1
/* #undef HAVE_SYS_SOCKIO_H */
/* #undef HAVE_MALLOC_MALLOC_H */
/* #undef HAVE_OBJC_MALLOC_H */
/* #undef HAVE_OUTPUT_BFD */
#define HAVE_BUILTIN_CLEAR_CACHE 1
/* Define to 1 if you have the <asm/sigcontext.h> header file. */
#define HAVE_ASM_SIGCONTEXT_H 1
/* Define to 1 if you have the <asm/signal.h> header file. */
#define HAVE_ASM_SIGNAL_H 1
/* Define to 1 if you have the <elf_abi.h> header file. */
/* #undef HAVE_ELF_ABI_H */
/* Define to 1 if you have the <elf.h> header file. */
#define HAVE_ELF_H 1
/* Have finite function */
/* #undef HAVE_FINITE */
/* Define to 1 if you have the <float.h> header file. */
#define HAVE_FLOAT_H 1
/* Define to 1 if you have the `getcwd' function. */
#define HAVE_GETCWD 1
/* Define to 1 if you have the `getwd' function. */
#define HAVE_GETWD 1
/* Have ieeefp fpclass function */
/* #undef HAVE_IEEEFP */
/* Define to 1 if you have the <inttypes.h> header file. */
/* #undef HAVE_INTTYPES_H */
/* Have isfinite function */
#define HAVE_ISFINITE 1
/* Have isnormal function */
#define HAVE_ISNORMAL 1
/* Define to 1 if you have the <japi.h> header file. */
/* #undef HAVE_JAPI_H */
/* memalign element present */
/* #undef HAVE_MALLOC_ZONE_MEMALIGN */
/* Define to 1 if you have the <math.h> header file. */
#define HAVE_MATH_H 1
/* Define to 1 if you have the <memory.h> header file. */
/* #undef HAVE_MEMORY_H */
/* Define to 1 if you have the <readline/readline.h> header file. */
#define HAVE_READLINE_READLINE_H 1
/* Define to 1 if you have the <rpc/rpc.h> header file. */
/* #undef HAVE_RPC_RPC_H */
/* Define to 1 if you have the <stdint.h> header file. */
/* #undef HAVE_STDINT_H */
/* Define to 1 if you have the <stdlib.h> header file. */
/* #undef HAVE_STDLIB_H */
/* Define to 1 if you have the <strings.h> header file. */
/* #undef HAVE_STRINGS_H */
/* Define to 1 if you have the <string.h> header file. */
/* #undef HAVE_STRING_H */
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1
/* Define to 1 if you have the <sys/sockio.h> header file. */
/* #undef HAVE_SYS_SOCKIO_H */
/* Define to 1 if you have the <sys/stat.h> header file. */
/* #undef HAVE_SYS_STAT_H */
/* Define to 1 if you have the <sys/types.h> header file. */
/* #undef HAVE_SYS_TYPES_H */
/* Define to 1 if you have the <unistd.h> header file. */
/* #undef HAVE_UNISTD_H */
/* Define to 1 if you have the <values.h> header file. */
#define HAVE_VALUES_H 1
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
#define PACKAGE_NAME ""
/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION ""
/* The size of `long', as computed by sizeof. */
#define SIZEOF_LONG 4
/* staticly linked images */
/* #undef STATIC_LINKING */
/* Define to 1 if you have the ANSI C header files. */
/* #undef STDC_HEADERS */
#include <stdarg.h>
#define _VA_LIST_DEFINED
#include <setjmp.h>
#include <stdio.h>
/* #define endp(obje) endp1(obje) */
#define STSET(type,x,i,val) do{SGC_TOUCH(x);STREF(type,x,i) = (val);} while(0)
#ifndef NEW_LISP
#define t_doublefloat t_longfloat
#endif
enum type {
t_cons,
t_start = 0,
t_fixnum,
t_bignum,
t_ratio,
t_shortfloat,
t_doublefloat,
t_complex,
t_character,
t_symbol,
t_package,
t_hashtable,
t_array,
t_vector,
t_string,
t_bitvector,
t_structure,
t_stream,
t_random,
t_readtable,
t_pathname,
t_cfun,
t_cclosure,
t_sfun,
t_gfun,
t_vfun,
t_afun,
t_closure,
t_cfdata,
t_spice,
t_end,
t_contiguous,
t_relocatable,
t_other
};
enum signals_allowed_values {
sig_none,
sig_normal,
sig_try_to_delay,
sig_safe,
sig_at_read,
sig_use_signals_allowed_value
};
#ifdef __SHORT_LIMB
typedef unsigned int mp_limb_t;
#else
#ifdef __LONG_LONG_LIMB
typedef unsigned long long int mp_limb_t;
#else
typedef unsigned long int mp_limb_t;
#endif
#endif
typedef mp_limb_t * mp_ptr;
typedef struct
{
int _mp_alloc; /* Number of *limbs* allocated and pointed
to by the _mp_d field. */
int _mp_size; /* abs(_mp_size) is the number of limbs the
last field points to. If _mp_size is
negative this is a negative number. */
mp_limb_t *_mp_d; /* Pointer to the limbs. */
} __mpz_struct;
typedef __mpz_struct MP_INT;
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
object.h
*/
/*
Some system constants.
*/
#define TRUE 1 /* boolean true value */
#define FALSE 0 /* boolean false value */
#define FIRSTWORD unsigned char t,flag; char s,m
#define NBPP 4 /* number of bytes per pointer */
#ifndef PAGEWIDTH
#define PAGEWIDTH 11 /* page width */
#endif
/* log2(PAGESIZE) */
#undef PAGESIZE
#define PAGESIZE (1 << PAGEWIDTH) /* page size in bytes */
#define CHCODELIM 256 /* character code limit */
/* ASCII character set */
#define CHFONTLIM 1 /* character font limit */
#define CHBITSLIM 1 /* character bits limit */
#define CHCODEFLEN 8 /* character code field length */
#define CHFONTFLEN 0 /* character font field length */
#define CHBITSFLEN 0 /* character bits field length */
#define PHTABSIZE 512 /* number of entries */
/* in the package hash table */
#define ARANKLIM 64 /* array rank limit */
#define RTABSIZE CHCODELIM
/* read table size */
#define CBMINSIZE 64 /* contiguous block minimal size */
#ifndef CHAR_SIZE
#define CHAR_SIZE 8 /* number of bits in a char */
#endif
#undef bool
typedef int bool;
typedef long fixnum;
typedef unsigned long ufixnum;
typedef float shortfloat;
typedef double longfloat;
typedef unsigned short fatchar;
#ifndef plong
#define plong int
#endif
#define SIGNED_CHAR(x) (((char ) -1) < (char )0 ? (char) x \
: (x >= (1<<(CHAR_SIZE-1)) ? \
x - (((int)(1<<(CHAR_SIZE-1))) << 1) \
: (char ) x))
/*
Definition of the type of LISP objects.
*/
typedef union lispunion *object;
typedef union int_object iobject;
union int_object {object o; fixnum i;};
/*
OBJect NULL value.
It should not coincide with any legal object value.
*/
#define OBJNULL ((object)NULL)
/*
Definition of each implementation type.
*/
struct fixnum_struct {
FIRSTWORD;
fixnum FIXVAL; /* fixnum value */
};
#define Mfix(obje) (obje)->FIX.FIXVAL
#define fix(x) Mfix(x)
#define SMALL_FIXNUM_LIMIT 1024
/* EXTER */
/* struct fixnum_struct small_fixnum_table[2*SMALL_FIXNUM_LIMIT]; */
/* #define small_fixnum(i) \ */
/* (object)(small_fixnum_table+SMALL_FIXNUM_LIMIT+(i)) */
struct shortfloat_struct {
FIRSTWORD;
shortfloat SFVAL; /* shortfloat value */
};
#define Msf(obje) (obje)->SF.SFVAL
#define sf(x) Msf(x)
struct longfloat_struct {
FIRSTWORD;
longfloat LFVAL; /* longfloat value */
};
#define Mlf(obje) (obje)->LF.LFVAL
#define lf(x) Mlf(x)
/* #ifdef _MP_H */
/* #else */
/* typedef struct */
/* { */
/* int _mp_alloc; Number of *limbs* allocated and pointed */
/* to by the _mp_d field. */
/* int _mp_size; abs(_mp_size) is the number of limbs the */
/* last field points to. If _mp_size is */
/* negative this is a negative number. */
/* void *_mp_d; Pointer to the limbs. */
/* } our_mpz_struct; */
/* #endif */
struct bignum {
FIRSTWORD;
#ifdef GMP
__mpz_struct big_mpz_t;
#else
plong *big_self; /* bignum body */
int big_length; /* bignum length */
#endif
};
struct ratio {
FIRSTWORD;
object rat_den; /* denominator */
/* must be an integer */
object rat_num; /* numerator */
/* must be an integer */
};
struct complex {
FIRSTWORD;
object cmp_real; /* real part */
/* must be a number */
object cmp_imag; /* imaginary part */
/* must be a number */
};
struct character {
FIRSTWORD;
unsigned short ch_code; /* code */
unsigned char ch_font; /* font */
unsigned char ch_bits; /* bits */
};
/* struct character character_table1[256+128]; */
/* EXTER */
/* union lispunion character_table1[256+128]; */
/* #define character_table (character_table1+128) */
/* #define code_char(c) (object)(character_table+(c)) */
/* #define char_code(obje) ((object)obje)->ch.ch_code */
/* #define char_font(obje) ((object)obje)->ch.ch_font */
/* #define char_bits(obje) ((object)obje)->ch.ch_bits */
enum stype { /* symbol type */
stp_ordinary, /* ordinary */
stp_constant, /* constant */
stp_special /* special */
};
#define Cnil ((object)&Cnil_body)
#define Ct ((object)&Ct_body)
#define sLnil Cnil
#define sLt Ct
#define NOT_SPECIAL ((void (*)())Cnil)
#define s_fillp st_fillp
#define s_self st_self
struct symbol {
FIRSTWORD;
object s_dbind; /* dynamic binding */
void (*s_sfdef)(); /* special form definition */
/* This field coincides with c_car */
char *s_self; /* print name */
/* These fields coincide with */
/* st_fillp and st_self. */
int s_fillp; /* print name length */
object s_gfdef; /* global function definition */
/* For a macro, */
/* its expansion function */
/* is to be stored. */
object s_plist; /* property list */
object s_hpack; /* home package */
/* Cnil for uninterned symbols */
short s_stype; /* symbol type */
/* of enum stype */
short s_mflag; /* macro flag */
};
EXTER
/* struct symbol Cnil_body, Ct_body; */
union lispunion Cnil_body, Ct_body;
struct package {
FIRSTWORD;
object p_name; /* package name */
/* a string */
object p_nicknames; /* nicknames */
/* list of strings */
object p_shadowings; /* shadowing symbol list */
object p_uselist; /* use-list of packages */
object p_usedbylist; /* used-by-list of packages */
object *p_internal; /* hashtable for internal symbols */
object *p_external; /* hashtable for external symbols */
int p_internal_size; /* size of internal hash table*/
int p_external_size; /* size of external hash table */
int p_internal_fp; /* [rough] number of symbols */
int p_external_fp; /* [rough] number of symbols */
struct package
*p_link; /* package link */
};
/*
The values returned by intern and find_symbol.
File_symbol may return 0.
*/
#define INTERNAL 1
#define EXTERNAL 2
#define INHERITED 3
/*
All the packages are linked through p_link.
*/
EXTER struct package *pack_pointer; /* package pointer */
struct cons {
FIRSTWORD;
object c_cdr; /* cdr */
object c_car; /* car */
};
enum httest { /* hash table key test function */
htt_eq, /* eq */
htt_eql, /* eql */
htt_equal /* equal */
};
struct htent { /* hash table entry */
object hte_key; /* key */
object hte_value; /* value */
};
struct hashtable { /* hash table header */
FIRSTWORD;
struct htent
*ht_self; /* pointer to the hash table */
object ht_rhsize; /* rehash size */
object ht_rhthresh; /* rehash threshold */
int ht_nent; /* number of entries */
int ht_size; /* hash table size */
short ht_test; /* key test function */
/* of enum httest */
};
enum aelttype { /* array element type */
aet_object, /* t */
aet_ch, /* string-char */
aet_bit, /* bit */
aet_fix, /* fixnum */
aet_sf, /* short-float */
aet_lf, /* plong-float */
aet_char, /* signed char */
aet_uchar, /* unsigned char */
aet_short, /* signed short */
aet_ushort, /* unsigned short */
aet_last
};
struct array { /* array header */
FIRSTWORD;
object a_displaced; /* displaced */
short a_rank; /* array rank */
short a_elttype; /* element type */
object *a_self; /* pointer to the array */
short a_adjustable; /* adjustable flag */
short a_offset; /* bitvector offset */
int a_dim; /* dimension */
int *a_dims; /* table of dimensions */
};
struct vector { /* vector header */
FIRSTWORD;
object v_displaced; /* displaced */
short v_hasfillp; /* has-fill-pointer flag */
short v_elttype; /* element type */
object *v_self; /* pointer to the vector */
int v_fillp; /* fill pointer */
/* For simple vectors, */
/* v_fillp is equal to v_dim. */
int v_dim; /* dimension */
short v_adjustable; /* adjustable flag */
short v_offset; /* not used */
};
struct string { /* string header */
FIRSTWORD;
object st_displaced; /* displaced */
short st_hasfillp; /* has-fill-pointer flag */
short st_adjustable; /* adjustable flag */
char *st_self; /* pointer to the string */
int st_fillp; /* fill pointer */
/* For simple strings, */
/* st_fillp is equal to st_dim. */
int st_dim; /* dimension */
/* string length */
};
struct ustring {
FIRSTWORD;
object ust_displaced;
short ust_hasfillp;
short ust_adjustable;
unsigned char *ust_self;
int ust_fillp;
int ust_dim;
};
#define USHORT_GCL(x,i) (((unsigned short *)(x)->ust.ust_self)[i])
#define SHORT_GCL(x,i) ((( short *)(x)->ust.ust_self)[i])
#define BV_OFFSET(x) ((type_of(x)==t_bitvector ? x->bv.bv_offset : \
type_of(x)== t_array ? x->a.a_offset : (abort(),0)))
#define SET_BV_OFFSET(x,val) ((type_of(x)==t_bitvector ? x->bv.bv_offset = val : \
type_of(x)== t_array ? x->a.a_offset=val : (abort(),0)))
struct bitvector { /* bitvector header */
FIRSTWORD;
object bv_displaced; /* displaced */
short bv_hasfillp; /* has-fill-pointer flag */
short bv_elttype; /* not used */
char *bv_self; /* pointer to the bitvector */
int bv_fillp; /* fill pointer */
/* For simple bitvectors, */
/* st_fillp is equal to st_dim. */
int bv_dim; /* dimension */
/* number of bits */
short bv_adjustable; /* adjustable flag */
short bv_offset; /* bitvector offset */
/* the position of the first bit */
/* in the first byte */
};
struct fixarray { /* fixnum array header */
FIRSTWORD;
object fixa_displaced; /* displaced */
short fixa_rank; /* array rank */
short fixa_elttype; /* element type */
fixnum *fixa_self; /* pointer to the array */
short fixa_adjustable;/* adjustable flag */
short fixa_offset; /* not used */
int fixa_dim; /* dimension */
int *fixa_dims; /* table of dimensions */
};
struct sfarray { /* short-float array header */
FIRSTWORD;
object sfa_displaced; /* displaced */
short sfa_rank; /* array rank */
short sfa_elttype; /* element type */
shortfloat
*sfa_self; /* pointer to the array */
short sfa_adjustable; /* adjustable flag */
short sfa_offset; /* not used */
int sfa_dim; /* dimension */
int *sfa_dims; /* table of dimensions */
};
struct lfarray { /* plong-float array header */
FIRSTWORD;
object lfa_displaced; /* displaced */
short lfa_rank; /* array rank */
short lfa_elttype; /* element type */
longfloat
*lfa_self; /* pointer to the array */
short lfa_adjustable; /* adjustable flag */
short lfa_offset; /* not used */
int lfa_dim; /* dimension */
int *lfa_dims; /* table of dimensions */
};
struct structure { /* structure header */
FIRSTWORD;
object str_def; /* structure definition (a structure) */
object *str_self; /* structure self */
};
struct s_data {object name;
fixnum length;
object raw;
object included;
object includes;
object staticp;
object print_function;
object slot_descriptions;
object slot_position;
fixnum size;
object has_holes;
};
#define S_DATA(x) ((struct s_data *)((x)->str.str_self))
#define SLOT_TYPE(def,i) (((S_DATA(def))->raw->ust.ust_self[i]))
#define SLOT_POS(def,i) USHORT_GCL(S_DATA(def)->slot_position,i)
#define STREF(type,x,i) (*((type *)(((char *)((x)->str.str_self))+(i))))
enum smmode { /* stream mode */
smm_input, /* input */
smm_output, /* output */
smm_io, /* input-output */
smm_probe, /* probe */
smm_synonym, /* synonym */
smm_broadcast, /* broadcast */
smm_concatenated, /* concatenated */
smm_two_way, /* two way */
smm_echo, /* echo */
smm_string_input, /* string input */
smm_string_output, /* string output */
smm_user_defined, /* for user defined */
smm_socket /* Socket stream */
};
/* for any stream that takes writec_char, directly (not two_way or echo)
ie. smm_output,smm_io, smm_string_output, smm_socket
*/
#define STREAM_FILE_COLUMN(str) ((str)->sm.sm_int1)
/* for smm_echo */
#define ECHO_STREAM_N_UNREAD(strm) ((strm)->sm.sm_int0)
/* file fd for socket */
#define SOCKET_STREAM_FD(strm) ((strm)->sm.sm_fd)
#define SOCKET_STREAM_BUFFER(strm) ((strm)->sm.sm_object1)
/* for smm_string_input */
#define STRING_INPUT_STREAM_NEXT(strm) ((strm)->sm.sm_int0)
#define STRING_INPUT_STREAM_END(strm) ((strm)->sm.sm_int1)
/* for smm_two_way and smm_echo */
#define STREAM_OUTPUT_STREAM(strm) ((strm)->sm.sm_object1)
#define STREAM_INPUT_STREAM(strm) ((strm)->sm.sm_object0)
/* for smm_string_{input,output} */
#define STRING_STREAM_STRING(strm) ((strm)->sm.sm_object0)
struct stream {
FIRSTWORD;
FILE *sm_fp; /* file pointer */
object sm_object0; /* some object */
object sm_object1; /* some object */
int sm_int0; /* some int */
int sm_int1; /* column for input or output, stream */
char *sm_buffer; /* ptr to BUFSIZE block of storage */
char sm_mode; /* stream mode */
unsigned char sm_flags; /* flags from gcl_sm_flags */
short sm_fd; /* stream fd */
};
/* flags */
#define GET_STREAM_FLAG(strm,name) ((strm)->sm.sm_flags & (1<<(name)))
#define SET_STREAM_FLAG(strm,name,val) {if (val) (strm)->sm.sm_flags |= (1<<(name)); else (strm)->sm.sm_flags &= ~(1<<(name));}
#define GCL_MODE_BLOCKING 1
#define GCL_MODE_NON_BLOCKING 0
#define GCL_TCP_ASYNC 1
enum gcl_sm_flags {
gcl_sm_blocking=1,
gcl_sm_tcp_async,
gcl_sm_input,
gcl_sm_output,
gcl_sm_had_error
};
#ifdef BSD
#ifdef SUN3
#define BASEFF (unsigned char *)0xffffffff
#else
#define BASEFF (char *)0xffffffff
#endif
#endif
#ifdef ATT
#define BASEFF (unsigned char *)0xffffffff
#endif
#ifdef E15
#define BASEFF (unsigned char *)0xffffffff
#endif
#ifdef MV
#endif
struct random {
FIRSTWORD;
unsigned rnd_value; /* random state value */
};
enum chattrib { /* character attribute */
cat_whitespace, /* whitespace */
cat_terminating, /* terminating macro */
cat_non_terminating, /* non-terminating macro */
cat_single_escape, /* single-escape */
cat_multiple_escape, /* multiple-escape */
cat_constituent /* constituent */
};
struct rtent { /* read table entry */
enum chattrib rte_chattrib; /* character attribute */
object rte_macro; /* macro function */
object *rte_dtab; /* pointer to the */
/* dispatch table */
/* NULL for */
/* non-dispatching */
/* macro character, or */
/* non-macro character */
};
struct readtable { /* read table */
FIRSTWORD;
struct rtent *rt_self; /* read table itself */
};
struct pathname {
FIRSTWORD;
object pn_host; /* host */
object pn_device; /* device */
object pn_directory; /* directory */
object pn_name; /* name */
object pn_type; /* type */
object pn_version; /* version */
};
struct cfun { /* compiled function header */
FIRSTWORD;
object cf_name; /* compiled function name */
void (*cf_self)(); /* entry address */
object cf_data; /* data the function uses */
/* for GBC */
};
struct cclosure { /* compiled closure header */
FIRSTWORD;
object cc_name; /* compiled closure name */
void (*cc_self)(); /* entry address */
object cc_env; /* environment */
object cc_data; /* data the closure uses */
/* for GBC */
int cc_envdim;
object *cc_turbo; /* turbo charger */
};
struct closure {
FIRSTWORD;
object cl_name; /* name */
object (*cl_self)(); /* C start address of code */
object cl_data; /* To object holding VV vector */
int cl_argd; /* description of args + number */
int cl_envdim; /* length of the environment vector */
object *cl_env; /* environment vector referenced by cl_self()*/
};
struct sfun {
FIRSTWORD;
object sfn_name; /* name */
object (*sfn_self)(); /* C start address of code */
object sfn_data; /* To object holding VV vector */
int sfn_argd; /* description of args + number */
};
struct vfun {
FIRSTWORD;
object vfn_name; /* name */
object (*vfn_self)(); /* C start address of code */
object vfn_data; /* To object holding VV data */
unsigned short vfn_minargs; /* Min args and where varargs start */
unsigned short vfn_maxargs; /* Max number of args */
};
struct cfdata {
FIRSTWORD;
char *cfd_start; /* beginning of contblock for fun */
int cfd_size; /* size of contblock */
int cfd_fillp; /* size of self */
object *cfd_self; /* body */
};
struct spice {
FIRSTWORD;
int spc_dummy;
};
/*
dummy type
*/
struct dummy {
FIRSTWORD;
};
/*
Definition of lispunion.
*/
union lispunion {
struct fixnum_struct
FIX; /* fixnum */
struct bignum big; /* bignum */
struct ratio rat; /* ratio */
struct shortfloat_struct
SF; /* short floating-point number */
struct longfloat_struct
LF; /* plong floating-point number */
struct complex cmp; /* complex number */
struct character
ch; /* character */
struct symbol s; /* symbol */
struct package p; /* package */
struct cons c; /* cons */
struct hashtable
ht; /* hash table */
struct array a; /* array */
struct vector v; /* vector */
struct string st; /* string */
struct ustring ust;
struct bitvector
bv; /* bit-vector */
struct structure
str; /* structure */
struct stream sm; /* stream */
struct random rnd; /* random-states */
struct readtable
rt; /* read table */
struct pathname pn; /* path name */
struct cfun cf; /* compiled function uses value stack] */
struct cclosure cc; /* compiled closure uses value stack */
struct closure cl; /* compiled closure uses c stack */
struct sfun sfn; /* simple function */
struct vfun vfn; /* function with variable number of args */
struct cfdata cfd; /* compiled fun data */
struct spice spc; /* spice */
struct dummy d; /* dummy */
struct fixarray fixa; /* fixnum array */
struct sfarray sfa; /* short-float array */
struct lfarray lfa; /* plong-float array */
};
/* struct character character_table1[256+128]; */
EXTER
union lispunion character_table1[256+128];
#define character_table (character_table1+128)
#define code_char(c) (object)(character_table+(c))
#define char_code(obje) ((object)obje)->ch.ch_code
#define char_font(obje) ((object)obje)->ch.ch_font
#define char_bits(obje) ((object)obje)->ch.ch_bits
EXTER
union lispunion small_fixnum_table[2*SMALL_FIXNUM_LIMIT];
#define small_fixnum(i) \
(object)(small_fixnum_table+SMALL_FIXNUM_LIMIT+(i))
#define address_int unsigned long
/*
The struct of free lists.
*/
struct freelist {
FIRSTWORD;
address_int f_link;
};
#ifndef INT_TO_ADDRESS
#define INT_TO_ADDRESS(x) ((object )(long )x)
#endif
#define F_LINK(x) ((struct freelist *)(long) x)->f_link
#define FL_LINK F_LINK
#define SET_LINK(x,val) F_LINK(x) = (address_int) (val)
#define OBJ_LINK(x) ((object) INT_TO_ADDRESS(F_LINK(x)))
#define FREE (-1) /* free object */
/*
Type_of.
*/
#define type_of(obje) ((enum type)(((object)(obje))->d.t))
/*
Storage manager for each type.
*/
struct typemanager {
enum type
tm_type; /* type */
short tm_size; /* element size in bytes */
short tm_nppage; /* number per page */
object tm_free; /* free list */
/* Note that it is of type object. */
long tm_nfree; /* number of free elements */
long tm_nused; /* number of elements used */
long tm_npage; /* number of pages */
long tm_maxpage; /* maximum number of pages */
char *tm_name; /* type name */
int tm_gbccount; /* GBC count */
object tm_alt_free; /* Alternate free list (swap with tm_free) */
long tm_alt_nfree; /* Alternate nfree (length of nfree) */
short tm_sgc; /* this type has at least this many
sgc pages */
short tm_sgc_minfree; /* number free on a page to qualify for
being an sgc page */
short tm_sgc_max; /* max on sgc pages */
short tm_min_grow; /* min amount to grow when growing */
short tm_max_grow; /* max amount to grow when growing */
short tm_growth_percent; /* percent to increase maxpages */
short tm_percent_free; /* percent which must be free after a gc for this type */
short tm_distinct; /* pages of this type are distinct */
float tm_adjgbccnt;
long tm_opt_maxpage;
};
/*
The table of type managers.
*/
EXTER struct typemanager tm_table[ 32 /* (int) t_relocatable */];
#define tm_of(t) (&(tm_table[(int)tm_table[(int)(t)].tm_type]))
/*
Contiguous block header.
*/
struct contblock { /* contiguous block header */
int cb_size; /* size in bytes */
struct contblock
*cb_link; /* contiguous block link */
};
/*
The pointer to the contiguous blocks.
*/
EXTER struct contblock *cb_pointer; /* contblock pointer */
/* SGC cont pages: After SGC_start, old_cb_pointer will be a linked
list of free blocks on non-SGC pages, and cb_pointer will be
likewise for SGC pages. CM 20030827*/
EXTER struct contblock *old_cb_pointer; /* old contblock pointer when in SGC */
/* SGC cont pages: FIXME -- at some point, enable runtime disabling of
SGC cont pages. Right now, the tm_sgc variable for type contiguous
will govern only the possible attempt to get new pages for SGC.
Contiguous pages normally allocated when SGC is on will always be
marked with SGC_PAGE_FLAG, as the current GBC algorithm always uses
sgc_contblock_sweep_phase in this case. */
/* #define SGC_CONT_ENABLED (sgc_enabled && tm_table[t_contiguous].tm_sgc) */
#define SGC_CONT_ENABLED (sgc_enabled)
/*
Variables for memory management.
*/
EXTER long ncb; /* number of contblocks */
/* int ncbpage; number of contblock pages */
#define ncbpage tm_table[t_contiguous].tm_npage
#define maxcbpage tm_table[t_contiguous].tm_maxpage
#define cbgbccount tm_table[t_contiguous].tm_gbccount
/* int maxcbpage; maximum number of contblock pages */
EXTER
long holepage; /* hole pages */
#define nrbpage tm_table[t_relocatable].tm_npage
#define rbgbccount tm_table[t_relocatable].tm_gbccount
/* int nrbpage; number of relblock pages */
EXTER
char *rb_start; /* relblock start */
EXTER char *rb_end; /* relblock end */
EXTER char *rb_limit; /* relblock limit */
EXTER char *rb_pointer; /* relblock pointer */
EXTER char *rb_start1; /* relblock start in copy space */
EXTER char *rb_pointer1; /* relblock pointer in copy space */
EXTER char *heap_end; /* heap end */
EXTER char *core_end; /* core end */
EXTER
char *tmp_alloc;
/* make f allocate enough extra, so that we can round
up, the address given to an even multiple. Special
case of size == 0 , in which case we just want an aligned
number in the address range
*/
#define ALLOC_ALIGNED(f, size,align) \
(align <= sizeof(plong) ? (char *)((f)(size)) : \
(tmp_alloc = (char *)((f)(size+(size ?(align)-1 : 0)))+(align)-1 , \
(char *)(align * (((unsigned long)tmp_alloc)/align))))
#define AR_ALLOC(f,n,type) (type *) \
(ALLOC_ALIGNED(f,(n)*sizeof(type),sizeof(type)))
/* FIXME Make all other page constants scale similarly by default. */
#ifndef HOLEPAGE
#define HOLEPAGE (MAXPAGE/10)
#endif
/* #define INIT_HOLEPAGE 150 */
/* #define INIT_NRBPAGE 50 */
/* #define RB_GETA 512 */
#define INIT_HOLEPAGE (6*HOLEPAGE/5)
#define INIT_NRBPAGE (INIT_HOLEPAGE/3)
#define RB_GETA (10*INIT_NRBPAGE)
#ifdef AV
#define STATIC register
#endif
#ifdef MV
#endif
#define TIME_ZONE (-9)
/* EXTER */
/* fixnum FIXtemp; */
/* For IEEEFLOAT, the double may have exponent in the second word
(little endian) or first word.*/
#if defined(I386) || defined(LITTLE_END)
#define HIND 1 /* (int) of double where the exponent and most signif is */
#define LIND 0 /* low part of a double */
#else /* big endian */
#define HIND 0
#define LIND 1
#endif
#ifndef VOL
#define VOL
#endif
#define isUpper(xxx) (((xxx)&0200) == 0 && isupper((int)xxx))
#define isLower(xxx) (((xxx)&0200) == 0 && islower((int)xxx))
#define isDigit(xxx) (((xxx)&0200) == 0 && isdigit((int)xxx))
enum ftype {f_object,f_fixnum};
EXTER
char *alloca_val;
/* ...xx|xx|xxxx|xxxx|
ret Narg */
/* a9a8a7a6a5a4a3a4a3a2a1a0rrrrnnnnnnnn
ai=argtype(i) ret nargs
*/
#define SFUN_NARGS(x) (x & 0xff) /* 8 bits */
#define RESTYPE(x) (x<<8) /* 3 bits */
/* set if the VFUN_NARGS = m ; has been set correctly */
#define VFUN_NARG_BIT (1 <<11)
#define ARGTYPE(i,x) ((x) <<(12+(i*2)))
#define ARGTYPE1(x) (1 | ARGTYPE(0,x))
#define ARGTYPE2(x,y) (2 | ARGTYPE(0,x) | ARGTYPE(1,y))
#define ARGTYPE3(x,y,z) (3 | ARGTYPE(0,x) | ARGTYPE(1,y) | ARGTYPE(2,z))
object make_si_sfun();
EXTER object MVloc[10];
/* Set new to be an (object *) whose [i]'th elmt is the
ith elmnt in a va_list
if
((vl[0] == va_arg(ap,object)) ||
(vl[1] == va_arg(ap,object)) || .. vl[n-1] == va_arg(ap,object))
you may set
#define DONT_COPY_VA_LIST
In recent versions of gcc, i think the builtin_alist stuff does not
allow setting this.
*/
#ifdef DONT_COPY_VA_LIST
#define COERCE_VA_LIST(new,vl,n) new = (object *) (vl)
#else
#define COERCE_VA_LIST(new,vl,n) \
object Xxvl[65]; \
{int i; \
new=Xxvl; \
if (n >= 65) FEerror("Too plong vl",0); \
for (i=0 ; i < (n); i++) new[i]=va_arg(vl,object);}
#endif
#ifdef DONT_COPY_VA_LIST
#error Cannot set DONT_COPY_VA_LIST in ANSI C
#else
#define COERCE_VA_LIST_NEW(new,fst,vl,n) \
object Xxvl[65]; \
{int i; \
new=Xxvl; \
if (n >= 65) FEerror("va_list too long",0); \
for (i=0 ; i < (n); i++) new[i]=i ? va_arg(vl,object) : fst;}
#endif
#define make_si_vfun(s,f,min,max) \
make_si_vfun1(s,f,min | (max << 8))
/* Number of args supplied to a variable arg t_vfun
Used by the C function to set optionals */
struct call_data {
object fun;
int argd;
int nvalues;
object values[50];
double double_return;
};
EXTER struct call_data fcall;
#define VFUN_NARGS fcall.argd
#define RETURN2(x,y) do{/* object _x = (void *) x; */\
fcall.values[2]=y;fcall.nvalues=2; \
return (x) ;} while(0)
#define RETURN1(x) do{fcall.nvalues=1; return (x) ;} while(0)
#define RETURN0 do{fcall.nvalues=0; return Cnil ;} while(0)
#define RV(x) (*_p++ = x)
#define RETURNI(n,val1,listvals) RETURN(n,int,val1,listvals)
#define RETURNO(n,val1,listvals) RETURN(n,object,val1,listvals)
/* eg: RETURN(3,object,val1,(RV(val2),RV(val3))) */
#define RETURN(n,typ,val1,listvals) \
do{typ _val1 = val1; object *_p=&fcall.values[1]; listvals; fcall.nvalues= n; return _val1;}while(0)
/* #define CALL(n,form) (VFUN_NARGS=n,form) */
/* we sometimes have to touch the header of arrays or structures
to make sure the page is writable */
#ifdef SGC
#define SGC_TOUCH(x) if ((x)->d.m) system_error(); (x)->d.m=0
#else
#define SGC_TOUCH(x)
#endif
object funcall_cfun(void(*)(),int,...);
object clear_compiler_properties();
EXTER object sSlambda_block_expanded;
# ifdef __GNUC__
# define assert(ex)\
{if (!(ex)){(void)fprintf(stderr, \
"Assertion failed: file \"%s\", line %d\n", __FILE__, __LINE__);exit(1);}}
# else
# define assert(ex)
# endif
#ifndef FIX_PATH_STRING
#define FIX_PATH_STRING(file) file
#endif
#define CHECK_INTERRUPT if (signals_pending) raise_pending_signals(sig_safe)
#define BEGIN_NO_INTERRUPT \
plong old_signals_allowed = signals_allowed; \
signals_allowed = 0
#define END_NO_INTERRUPT \
signals_allowed = old_signals_allowed
/* could add: if (signals_pending)
raise_pending_signals(sig_use_signals_allowed_value) */
#define END_NO_INTERRUPT_SAFE \
signals_allowed = old_signals_allowed; \
if (signals_pending) \
do{ if(signals_allowed ==0) /* should not get here*/abort(); \
raise_pending_signals(sig_safe)}while(0)
void raise_pending_signals();
EXTER unsigned plong signals_allowed, signals_pending ;
EXTER struct symbol Dotnil_body;
#define Dotnil ((object)&Dotnil_body)
#define endp(x) ({\
static union lispunion s_my_dot={.c={t_cons,0,0,0,Dotnil,Dotnil}}; \
object _x=(x);\
bool _b=FALSE;\
\
if (type_of(_x)==t_cons) {\
if (type_of(_x->c.c_cdr)!=t_cons && _x->c.c_cdr!=Cnil)\
s_my_dot.c.c_car=_x->c.c_cdr;\
else \
s_my_dot.c.c_car=Dotnil;\
} else {\
if (_x==s_my_dot.c.c_car)\
x=&s_my_dot;\
else {\
s_my_dot.c.c_car=Dotnil;\
if (_x==Cnil || _x==Dotnil)\
_b=TRUE;\
else\
FEwrong_type_argument(sLlist, _x);\
}\
}\
_b;\
})
#define endp_prop(a) (type_of(a)==t_cons ? FALSE : ((a)==Cnil ? TRUE : (FEwrong_type_argument(sLlist, (a)),FALSE)))
#define proper_list(a) (type_of(a)==t_cons || (a)==Cnil)
#define fix_dot(a) ((a) == Dotnil ? Cnil : (type_of(a)==t_cons && (a)->c.c_cdr==Dotnil ? (a)->c.c_car : (a)))
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
vs.h
value stack
*/
EXTER object *vs_org;
EXTER object *vs_limit; /* value stack limit */
EXTER object *vs_base; /* value stack base */
EXTER object *vs_top; /* value stack top */
#define vs_push(obje) (*vs_top++ = (obje))
#define vs_pop (*--vs_top)
#define vs_popp (--vs_top)
#define vs_head vs_top[-1]
#define vs_mark object *old_vs_top = vs_top
#define vs_reset vs_top = old_vs_top
#define vs_check if (vs_top >= vs_limit) \
vs_overflow()
#define vs_check_push(obje) \
(vs_top >= vs_limit ? \
(object)vs_overflow() : (*vs_top++ = (obje)))
#define check_arg(n) \
if (vs_top - vs_base != (n)) \
check_arg_failed(n)
#define CHECK_ARG_RANGE(n,m) if (VFUN_NARGS < n || VFUN_NARGS >m) \
check_arg_range(n,m)
#define MMcheck_arg(n) \
if (vs_top - vs_base < (n)) \
too_few_arguments(); \
else if (vs_top - vs_base > (n)) \
too_many_arguments()
#define vs_reserve(x) if(vs_base+(x) >= vs_limit) \
vs_overflow();
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
bds.h
bind stack
*/
struct bds_bd {
object bds_sym; /* symbol */
object bds_val; /* previous value of the symbol */
};
typedef struct bds_bd *bds_ptr;
EXTER bds_ptr bds_org;
EXTER bds_ptr bds_limit;
EXTER bds_ptr bds_top; /* bind stack top */
#ifdef KCLOVM
/* for multiprocessing */
EXTER struct bds_bd save_bind_stack[BDSSIZE + BDSGETA + BDSGETA];
EXTER bds_ptr bds_save_org;
EXTER bds_ptr bds_save_limit;
EXTER bds_ptr bds_save_top;
#endif
#define bds_check \
if (bds_top >= bds_limit) \
bds_overflow()
/* do this so that an interrupt in the middle will leave the VALID
part of the bds stack ie (<= bds_top) in a valid state, so
that a throw out will be ok */
#define bds_bind(sym, val) \
do {bds_ptr _b = bds_top+1; \
(_b)->bds_sym = (sym); \
_b->bds_val = ((object)sym)->s.s_dbind; \
((object)sym)->s.s_dbind = (val); bds_top=_b;} while (0)
#define bds_unwind1 \
((bds_top->bds_sym)->s.s_dbind = bds_top->bds_val, --bds_top)
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
frame.h
frame stack and non-local jump
*/
/* IHS Invocation History Stack */
typedef struct invocation_history {
object ihs_function;
object *ihs_base;
} *ihs_ptr;
EXTER ihs_ptr ihs_org;
EXTER ihs_ptr ihs_limit;
EXTER ihs_ptr ihs_top;
#define ihs_check \
if (ihs_top >= ihs_limit) \
ihs_overflow()
#define ihs_push(function) \
(++ihs_top)->ihs_function = (function); \
ihs_top->ihs_base = vs_base
#define ihs_push_base(function,base) \
(++ihs_top)->ihs_function = (function); \
ihs_top->ihs_base = base
#define ihs_pop() (ihs_top--)
#define make_nil_block() \
{ \
object x; \
\
lex_copy(); \
x = alloc_frame_id(); \
vs_push(x); \
lex_block_bind(Cnil, x); \
vs_popp; \
frs_push(FRS_CATCH, x); \
}
/* Frame Stack */
enum fr_class {
FRS_CATCH, /* for catch,block,tabbody */
FRS_CATCHALL, /* for catchall */
FRS_PROTECT /* for protect-all */
};
EXTER int in_signal_handler;
struct frame {
jmp_buf frs_jmpbuf;
object *frs_lex;
bds_ptr frs_bds_top;
char frs_class;
char frs_in_signal_handler;
object frs_val;
ihs_ptr frs_ihs;
};
typedef struct frame *frame_ptr;
#define alloc_frame_id() alloc_object(t_spice)
/*
frs_class | frs_value | frs_prev
----------+--------------------------------------+--------------
CATCH | frame-id, i.e. |
| throw-tag, |
| block-id (uninterned symbol), or | value of ihs_top
| tagbody-id (uninterned symbol) | when the frame
----------+--------------------------------------| was pushed
CATCHALL | NIL |
----------+--------------------------------------|
PROTECT | NIL |
----------------------------------------------------------------
*/
EXTER frame_ptr frs_org;
EXTER frame_ptr frs_limit;
EXTER frame_ptr frs_top; /* frame stack top */
#define frs_push(class, val) \
do { frame_ptr _frs_top = frs_top +1; \
if (_frs_top >= frs_limit) \
frs_overflow(); \
_frs_top->frs_lex = lex_env;\
_frs_top->frs_bds_top = bds_top; \
_frs_top->frs_class = (class); \
_frs_top->frs_in_signal_handler = in_signal_handler; \
_frs_top->frs_val = (val); \
_frs_top->frs_ihs = ihs_top; \
frs_top=_frs_top; \
setjmp(_frs_top->frs_jmpbuf); \
} while (0)
#define frs_pop() frs_top--
/* global variables used during non-local jump */
EXTER bool nlj_active; /* true during non-local jump */
EXTER frame_ptr nlj_fr; /* frame to return */
EXTER object nlj_tag; /* throw-tag, block-id, or */
/* (tagbody-id . label). */
/*
(c) Copyright Taiichi Yuasa and Masami Hagiya, 1984. All rights reserved.
Copying of this file is authorized to users who have executed the true and
proper "License Agreement for Kyoto Common LISP" with SIGLISP.
*/
/*
lex.h
lexical environment
*/
EXTER object *lex_env;
/*
VS
| |
|---------------|
lex_env ------> | lex-var | : lex_env[0]
|---------------|
| lex-fd | : lex_env[1]
|---------------|
| lex-tag | : lex_env[2]
|---------------|
| |
| |
| |
lex-var: (symbol value) ; for local binding
(.... or ....)
(symbol) ; for special binding
lex-fd: (fun-name 'FUNCTION' function)
(.... or ...)
(macro-name 'MACRO' expansion-function)
lex-tag: (tag 'TAG' frame-id)
(.... or ....)
(block-name 'BLOCK' frame-id)
where 'FUN' is the LISP object with pname FUN, etc.
*/
#define lex_copy() ihs_top->ihs_base = vs_top; \
vs_push(lex_env[0]); \
vs_push(lex_env[1]); \
vs_push(lex_env[2]); \
lex_env = vs_top - 3
#define lex_new() ihs_top->ihs_base = vs_top; \
lex_env = vs_top; \
vs_top[0] = vs_top[1] = vs_top[2] = Cnil; \
vs_top += 3
#define lex_var_sch(name) assoc_eq((name),lex_env[0])
#define lex_fd_sch(name) assoc_eq((name),lex_env[1])
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
eval.h
*/
/* C control stack */
#define CSSIZE 20000
#define CSGETA 4000
EXTER int *cs_org;
EXTER int *cs_limit;
/* we catch the segmentation fault and check to warn of c stack overflow */
#ifdef AV
#ifndef cs_check
#define cs_check(something) \
if ((int *)(&something) < cs_limit) \
cs_overflow()
#endif
#endif
#ifdef MV
#endif
/* bind template */
struct bind_temp {
object bt_var;
object bt_spp;
object bt_init;
object bt_aux;
};
#define check_symbol(x) \
if (type_of(x) != t_symbol) \
not_a_symbol(x)
#define check_var(x) \
if (type_of(x) != t_symbol || \
(enum stype)(x)->s.s_stype == stp_constant) \
not_a_variable(x)
#define eval_assign(to, form) \
{ \
object *old_top = vs_top; \
\
eval(form); \
to = vs_base[0]; \
vs_top = old_top; \
}
#define MMcall(x) \
ihs_check; \
ihs_push(x); \
(*(x)->cf.cf_self)(); \
ihs_pop()
#define MMccall(x, env_top) \
ihs_check; \
ihs_push(x); \
(*(x)->cc.cc_self)(env_top); \
ihs_pop()
#define MMcons(a,d) make_cons((a),(d))
#define MMcar(x) (x)->c.c_car
#define MMcdr(x) (x)->c.c_cdr
#define MMcaar(x) (x)->c.c_car->c.c_car
#define MMcadr(x) (x)->c.c_cdr->c.c_car
#define MMcdar(x) (x)->c.c_car->c.c_cdr
#define MMcddr(x) (x)->c.c_cdr->c.c_cdr
#define MMcaaar(x) (x)->c.c_car->c.c_car->c.c_car
#define MMcaadr(x) (x)->c.c_cdr->c.c_car->c.c_car
#define MMcadar(x) (x)->c.c_car->c.c_cdr->c.c_car
#define MMcaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car
#define MMcdaar(x) (x)->c.c_car->c.c_car->c.c_cdr
#define MMcdadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr
#define MMcddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr
#define MMcdddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr
#define MMcaaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_car
#define MMcaaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_car
#define MMcaadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_car
#define MMcaaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_car
#define MMcadaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_car
#define MMcadadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_car
#define MMcaddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_car
#define MMcadddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_car
#define MMcdaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_cdr
#define MMcdaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_cdr
#define MMcdadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_cdr
#define MMcdaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_cdr
#define MMcddaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_cdr
#define MMcddadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_cdr
#define MMcdddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_cdr
#define MMcddddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_cdr
#define MMnull(x) ((x)==Cnil)
/* the link_desc, is an INT which carries the call information
for all uses of that link. It tells whether fcall.nargs is
set before the call, whether the VFUN_FUN is set, (to pass in
a closure function) or if the number of values is set after the
call. It gives the min and max number of args and the result
type expected. It describes the arg types.
enum F_arg_flags
*/
/*
A link arg descriptor:
a6a5a4a3a2a1a0rrmmmmmmfffllllll
l = least number of args passed
m = max number of args passed
f = flags bits set according to F_arg_flags, There are F_end flag bits.
r = result type in F_arg_types
ai = i'th arg type in F_arg_types
*/
/* We allow 2 bits for encoding arg types and return type */
#define F_TYPE_WIDTH 2
#define F_MIN_ARGS(x) (x & MASK_RANGE(0,F_NARG_WIDTH))
#define F_NARGS(x) F_MIN_ARGS(x)
#define F_ARG_FLAGS_P(x,flag) (x & (1 << (F_NARG_WIDTH + flag)))
#define F_ARG_FLAGS(x) ((x >> F_NARG_WIDTH) & MASK_RANGE(0,F_end))
#define F_MAX_ARGS(x) ((x >> (F_NARG_WIDTH + F_end )) \
& MASK_RANGE(0,F_NARG_WIDTH))
#define BITS_PER_CHAR 8
#define MAX_ARGS 63
#define F_TYPES(x) (((x) >> F_START_TYPES_POS ) \
& MASK_RANGE(0, sizeof(int)*BITS_PER_CHAR - F_START_TYPES_POS))
#define F_RESULT_TYPE(x) (F_TYPES(x) & MASK_RANGE(0,F_TYPE_WIDTH))
#define F_ARG_LIMIT ((1<< F_NARG_WIDTH) -1)
/* make an argd slot
where flags and argtypes are already set up as fields
*/
#define F_ARGD(min,max,flags, argtypes) \
(min | ((flags | (max-min ? (1<<F_requires_nargs) : 0) \
<< F_NARG_WIDTH)) \
| (max << (F_NARG_WIDTH+F_end)) \
| (argtypes<< (2* F_NARG_WIDTH + F_end )))
#define ONE_VAL (1 << F_caller_sets_one_val)
#define CLOS (1 << F_requires_fun_passed)
#define VARARG (1 << F_requires_nargs)
/* the following may be used as an argument to DEFUN even in the case
of varargs, since the F_ARGD macro detects minargs<maxargs and sets this.*/
#define NONE 0
/* we dont want to define all these two letter macros... all the time */
#ifndef NO_DEFUN
#define OO (F_object | F_object << F_TYPE_WIDTH)
#define OI (F_object | F_int << F_TYPE_WIDTH)
#define OD (F_object | F_double_ptr << F_TYPE_WIDTH)
#define IO (F_int | F_object << F_TYPE_WIDTH)
#define II (F_int | F_int << F_TYPE_WIDTH)
#define ID (F_int | F_double_ptr << F_TYPE_WIDTH)
#define DO (F_double_ptr | F_object << F_TYPE_WIDTH)
#define DI (F_double_ptr | F_int << F_TYPE_WIDTH)
#define DD (F_double_ptr | F_double_ptr << F_TYPE_WIDTH)
#endif
#define ARGTYPES(a,b,c,d) \
(a | (b << (2* F_TYPE_WIDTH)) | (c << (4* F_TYPE_WIDTH)) | (d << (6*F_TYPE_WIDTH)))
#define PUSH_FIRST_VAL(x) int nvals = 1 ; object result = (x)
#define PUSH_VAL(x) if (nvals>=sizeof(fcall.values)/sizeof(*fcall.values) \
FEerror("Too many function call values"); \
else fcall.values[nvals++] = (x)
#define RETURN_VALS fcall.nvalues= nvals; return result;} 0
#define FUNCALL(n,form) (VFUN_NARGS=n,form)
/*
Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
This file is part of GNU Common Lisp, herein referred to as GCL
GCL is free software; you can redistribute it and/or modify it under
the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GCL is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with GCL; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef COM_LENG
#define COM_LENG
#endif
/* alloc.c */
char *alloc_page();
object alloc_object();
void *malloc(size_t);
void *realloc(void *,size_t);
/* void * memalign(size_t,size_t); */
void *alloc_contblock(size_t);
void *alloc_relblock(size_t);
/* object fSallocate_contiguous_pages(); */
/* object fSallocate_relocatable_pages(); */
/* array.c */
/* enum aelttype Iarray_element_type(); */
object fLrow_major_aref();
object fSaset1();
EXTER object sLarray_dimension_limit;
EXTER object sLarray_total_size_limit;
object fSmake_array1();
/* object fSmake_vector1(); */
/* assignment.c */
/* object setf(); */
/* backq.c */
EXTER int backq_level;
EXTER object sLlistA;
EXTER object sLappend;
EXTER object sLnconc;
/* bds.c */
/* big.c */
object make_integer_clear();
object stretch_big();
object copy_big();
object copy_to_big();
object big_minus();
object big_plus();
object big_times();
object normalize_big_to_object();
double big_to_double();
EXTER struct bignum big_fixnum1_body,big_fixnum2_body;
EXTER object big_fixnum1,big_fixnum2;
object maybe_replace_big();
/* bind.c */
EXTER object ANDoptional;
EXTER object ANDrest;
EXTER object ANDkey;
EXTER object ANDallow_other_keys;
EXTER object ANDaux;
EXTER object sKallow_other_keys;
object find_special();
object let_bind();
object letA_bind();
/* block.c */
/* cfun.c */
object make_cfun();
object MF();
/* object MM(); */
/* object make_function_internal(); */
/* object make_si_function_internal(); */
/* object make_special_form_internal(); */
object make_macro();
object make_cclosure_new();
/* character.d */
EXTER object STreturn;
EXTER object STspace;
EXTER object STrubout;
EXTER object STpage;
EXTER object STtab;
EXTER object STbackspace;
EXTER object STlinefeed;
EXTER object STnewline;
object coerce_to_character();
/* catch.c */
/* cmpaux.c */
char object_to_char();
char *object_to_string();
float object_to_float();
double object_to_double();
/* error.c */
EXTER object sKerror;
EXTER object sKwrong_type_argument;
EXTER object sKcatch;
EXTER object sKprotect;
EXTER object sKcatchall;
EXTER object sKtoo_few_arguments;
EXTER object sKtoo_many_arguments;
EXTER object sKunexpected_keyword;
EXTER object sKinvalid_form;
EXTER object sKunbound_variable;
EXTER object sKinvalid_variable;
EXTER object sKundefined_function;
EXTER object sKinvalid_function;
EXTER object sKpackage_error;
object wrong_type_argument();
EXTER object sSuniversal_error_handler;
/* eval.c */
EXTER object sLapply;
EXTER object sLfuncall;
object simple_lispcall();
object simple_lispcall_no_event();
object simple_symlispcall();
object simple_symlispcall_no_event();
EXTER object Vevalhook;
EXTER object Vapplyhook;
object ieval();
object ifuncall(object,int,...);
object ifuncall1();
object ifuncall2();
object ifuncall3();
object fcalln1(object,...);
#define fcalln ((object (*)())fcalln1)
object Ieval();
object Imacro_expand1();
/* unixfasl.c fasload.c */
/* file.d */
EXTER object sKabort;
EXTER object sKappend;
EXTER object sKcreate;
EXTER object sKdefault;
EXTER object sKdirection;
EXTER object sKelement_type;
EXTER object sKif_does_not_exist;
EXTER object sKif_exists;
EXTER object sKinput;
EXTER object sKio;
EXTER object sKnew_version;
EXTER object sKoutput;
EXTER object sKoverwrite;
EXTER object sKprint;
EXTER object sKprobe;
EXTER object sKrename;
EXTER object sKrename_and_delete;
EXTER object sKset_default_pathname;
EXTER object sKsupersede;
EXTER object sKverbose;
EXTER object sLAstandard_inputA;
EXTER object sLAstandard_outputA;
EXTER object sLAerror_outputA;
EXTER object sLAquery_ioA;
EXTER object sLAdebug_ioA;
EXTER object sLAterminal_ioA;
EXTER object sLAtrace_outputA;
EXTER object terminal_io;
EXTER object standard_io;
EXTER object sLAload_verboseA;
EXTER object FASL_string;
/* object stream_element_type(); */
object open_stream();
/* object make_two_way_stream(); */
/* object make_echo_stream(); */
object make_string_input_stream();
object make_string_output_stream();
/* object get_output_stream_string(); */
object read_fasl_data();
#ifdef UNIX
/* unixfsys.c */
FILE *backup_fopen();
#else
/* filesystem.c */
FILE *backup_fopen();
#endif
/* frame.c */
frame_ptr frs_sch();
frame_ptr frs_sch_catch();
/* gbc.c */
EXTER bool GBC_enable;
/* let.c */
/* lex.c */
object assoc_eq();
object lex_tag_sch();
object lex_block_sch();
/* list.d */
EXTER object sKtest;
EXTER object sKtest_not;
EXTER object sKkey;
EXTER object sKrev;
object car();
object cdr();
object kar();
object kdr();
object caar();
object cadr();
object cdar();
object cddr();
object caaar();
object caadr();
object cadar();
object caddr();
object cdaar();
object cdadr();
object cddar();
object cdddr();
object caaaar();
object caaadr();
object caadar();
object caaddr();
object cadaar();
object cadadr();
object caddar();
object cadddr();
object cdaaar();
object cdaadr();
object cdadar();
object cdaddr();
object cddaar();
object cddadr();
object cdddar();
object cddddr();
object nth();
object nthcdr();
object make_cons();
object list(int,...);
object listA(int,...);
object append();
object copy_list();
object make_list();
object nconc();
object sublis1();
/* macros.c */
EXTER object sLAmacroexpand_hookA;
EXTER object sSdefmacroA;
object macro_expand();
/* main.c */
EXTER char* system_directory;
EXTER int ARGC;
EXTER char **ARGV;
void error();
#ifdef UNIX
EXTER char **ENVP;
#endif
object vs_overflow(void);
EXTER object sSAsystem_directoryA;
#ifdef UNIX
EXTER char *kcl_self;
#endif
#if !defined(IN_MAIN) || !defined(ATT)
EXTER bool initflag,raw_image;
#endif
char *merge_system_directory();
EXTER object sLquote;
EXTER object sLlambda;
EXTER object sLlambda_block;
EXTER object sLlambda_closure;
EXTER object sLlambda_block_closure;
EXTER object sLfunction;
EXTER object sLmacro;
EXTER object sLtag;
EXTER object sLblock;
/* mapfun.c */
/* multival.c */
/* number.c */
EXTER object shortfloat_zero;
EXTER object longfloat_zero;
#define make_fixnum(a) ({fixnum _a=(a);((_a+SMALL_FIXNUM_LIMIT)&(-2*SMALL_FIXNUM_LIMIT))==0?small_fixnum(_a):make_fixnum1(_a);})
object make_fixnum1(long);
object make_ratio();
object make_shortfloat();
object make_longfloat();
object make_complex();
double number_to_double();
long fixint(object);
/* num_pred.c */
/* num_comp.c */
/* num_arith */
object bignum2();
object bignum3();
/* object number_to_complex(); */
object complex_plus();
object number_plus();
object number_negate();
object number_minus();
object number_times();
object number_divide();
object number_expt();
object integer_divide1();
object get_gcd();
object get_lcm();
object one_plus();
object one_minus();
object fixnum_add();
object fixnum_sub();
object new_bignum();
/* num_co.c */
object double_to_integer();
/* num_log.c */
object shift_integer();
/* package.d */
EXTER object lisp_package;
EXTER object user_package;
#ifdef ANSI_COMMON_LISP
EXTER object common_lisp_package;
#endif
EXTER object keyword_package;
EXTER object system_package;
EXTER object sLApackageA;
EXTER object sKinternal;
EXTER object sKexternal;
EXTER object sKinherited;
EXTER object sKnicknames;
EXTER object sKuse;
EXTER int intern_flag;
EXTER object uninterned_list;
/* object make_package(); */
/* object in_package(); */
/* object rename_package(); */
object find_package();
/* object coerce_to_package(); */
object current_package();
object intern();
object find_symbol();
/* pathname.d */
EXTER object Vdefault_pathname_defaults;
EXTER object sKwild;
EXTER object sKnewest;
EXTER object sKstart;
EXTER object sKend;
EXTER object sKjunk_allowed;
EXTER object sKhost;
EXTER object sKdevice;
EXTER object sKdirectory;
EXTER object sKname;
EXTER object sKtype;
EXTER object sKversion;
EXTER object sKdefaults;
EXTER object sKroot;
EXTER object sKcurrent;
EXTER object sKparent;
EXTER object sKper;
/* object parse_namestring(); */
object coerce_to_pathname();
/* object default_device(); */
object merge_pathnames();
object namestring();
object coerce_to_namestring();
/* prediate.c */
int eql(),equal(),eq();
/* print.d */
EXTER object sKupcase;
EXTER object sKdowncase;
EXTER object sKcapitalize;
EXTER object sKstream;
EXTER object sKreadably;
EXTER object sKescape;
EXTER object sKpretty;
EXTER object sKcircle;
EXTER object sKbase;
EXTER object sKradix;
EXTER object sKcase;
EXTER object sKgensym;
EXTER object sKlevel;
EXTER object sKlength;
EXTER object sKarray;
EXTER object sLAprint_readablyA;
EXTER object sLAprint_escapeA;
EXTER object sLAprint_prettyA;
EXTER object sLAprint_circleA;
EXTER object sLAprint_baseA;
EXTER object sLAprint_radixA;
EXTER object sLAprint_caseA;
EXTER object sLAprint_gensymA;
EXTER object sLAprint_levelA;
EXTER object sLAprint_lengthA;
EXTER object sLAprint_arrayA;
EXTER object *PRINTvs_top;
EXTER object *PRINTvs_limit;
EXTER object PRINTstream;
EXTER bool PRINTreadably;
EXTER bool PRINTescape;
EXTER bool PRINTpretty;
EXTER bool PRINTcircle;
EXTER int PRINTbase;
EXTER bool PRINTradix;
EXTER object PRINTcase;
EXTER bool PRINTgensym;
EXTER int PRINTlevel;
EXTER int PRINTlength;
EXTER bool PRINTarray;
EXTER void (*write_ch_fun)(int);
object princ();
object prin1();
object print();
object terpri();
EXTER object sSpretty_print_format;
EXTER int line_length;
/* Read.d */
EXTER object standard_readtable;
EXTER object Vreadtable;
EXTER object sLAread_default_float_formatA;
EXTER object sLAread_baseA;
EXTER object sLAread_suppressA;
EXTER object READtable;
EXTER object read_byte1();
EXTER int READdefault_float_format;
EXTER int READbase;
EXTER bool READsuppress;
EXTER object siSsharp_comma;
EXTER bool escape_flag;
EXTER object delimiting_char;
EXTER bool detect_eos_flag;
/* bool in_list_flag; */
EXTER bool dot_flag;
EXTER bool preserving_whitespace_flag;
EXTER object default_dispatch_macro;
EXTER object big_register_0;
EXTER int sharp_eq_context_max;
object read_char();
object read_char1(object,object);
object peek_char();
/* object read_object_recursive(); */
object read_object_non_recursive();
object standard_read_object_non_recursive();
object read_object();
/* object parse_number(); */
/* object parse_integer(); */
/* object copy_readtable(); */
/* object current_readtable(); */
/* object patch_sharp(); */
object read_fasl_vector();
/* fasdump.c */
EXTER object sharing_table;
/* reference.c */
object symbol_function();
/* sequence.d */
object alloc_simple_vector();
object alloc_simple_bitvector();
object elt();
object elt_set();
object reverse();
object nreverse();
/* structure.c */
EXTER object sSs_data;
object structure_ref();
object structure_set();
object structure_to_list();
/* string.d */
object alloc_simple_string();
object make_simple_string();
object copy_simple_string();
object coerce_to_string();
EXTER int string_sign, string_boundary;
/* symbol.d */
EXTER object string_register;
EXTER object gensym_prefix;
/* EXTER int gensym_counter; */
EXTER object sLgensym_counter;
EXTER object gentemp_prefix;
EXTER int gentemp_counter;
EXTER object token;
object make_symbol();
object make_ordinary();
object make_special();
object make_constant();
object make_si_ordinary();
object make_si_special();
object make_si_constant();
object make_keyword();
object symbol_value();
object symbol_name();
object getf();
object get();
object putf();
object putprop();
object sputprop();
object remprop();
object gensym(); /* to be deleted */
#ifdef UNIX
/* unixsys.c */
#else
/* sys.c */
#endif
#ifdef UNIX
/* unixtime.c */
object unix_time_to_universal_time();
#else
/* time.c */
#endif
/* toplevel.c */
EXTER object sLspecial,sLdeclare;
EXTER object sSvariable_documentation;
EXTER object sSfunction_documentation;
/* typespec.c */
EXTER object sLcommon,sLnull,sLcons,sLlist,sLsymbol,sLarray,sLvector,sLbit_vector,sLstring;
EXTER object sLsequence,sLsimple_array,sLsimple_vector,sLsimple_bit_vector,sLsimple_string;
EXTER object sLcompiled_function,sLpathname,sLcharacter,sLnumber,sLrational,sLfloat,sLstring_char;
EXTER object sLinteger,sLratio,sLshort_float,sLstandard_char,sLfixnum,sLpositive_fixnum, sLcomplex;
EXTER object sLsingle_float,sLpackage,sLbignum,sLrandom_state,sLdouble_float,sLstream,sLbit,sLreadtable;
EXTER object sLlong_float,sLhash_table,sLstructure,sLboolean;
#ifdef ANSI_COMMON_LISP
/* new ansi types */
EXTER object sLarithmetic_error,sLbase_char,sLbase_string,sLbroadcast_stream,sLbuilt_in_class;
EXTER object sLcell_error,sLclass,sLconcatenated_stream,sLcondition,sLcontrol_error,sLdivision_by_zero;
EXTER object sLecho_stream,sLend_of_file,sLerror,sLextended_char,sLfile_error,sLfile_stream;
EXTER object sLfloating_point_inexact,sLfloating_point_invalid_operation,sLfloating_point_overflow;
EXTER object sLfloating_point_underflow,sLgeneric_function,sLlogical_pathname,sLmethod,sLpackage_error;
EXTER object sLparse_error,sLprint_not_readable,sLprogram_error,sLreader_error,sLserious_condition;
EXTER object sLsimple_base_string,sLsimple_condition,sLsimple_type_error,sLsimple_warning,sLstandard_class;
EXTER object sLstandard_generic_function,sLstandard_method,sLstandard_object,sLstorage_condition;
EXTER object sLstream_error,sLstring_stream,sLstructure_class,sLstyle_warning,sLsynonym_stream;
EXTER object sLtwo_way_stream,sLtype_error,sLunbound_slot,sLunbound_variable,sLundefined_function,sLwarning;
EXTER object sLmethod_combination,sLstructure_object;
#endif
EXTER object sLsatisfies;
EXTER object sLmember;
EXTER object sLnot;
EXTER object sLor;
EXTER object sLand;
EXTER object sLvalues;
EXTER object sLmod;
EXTER object sLsigned_byte;
EXTER object sLunsigned_byte;
EXTER object sLsigned_char;
EXTER object sLunsigned_char;
EXTER object sLsigned_short;
EXTER object sLunsigned_short;
EXTER object sLA;
EXTER object sLplusp;
EXTER object TSor_symbol_string;
EXTER object TSor_string_symbol;
EXTER object TSor_symbol_string_package;
EXTER object TSnon_negative_integer;
EXTER object TSpositive_number;
EXTER object TSor_integer_float;
EXTER object TSor_rational_float;
#ifdef UNIX
EXTER object TSor_pathname_string_symbol;
#endif
EXTER object TSor_pathname_string_symbol_stream;
EXTER int interrupt_flag; /* console interupt flag */
EXTER int interrupt_enable; /* console interupt enable */
/* CMPtemp */
EXTER object CMPtemp;
EXTER object CMPtemp1;
EXTER object CMPtemp2;
EXTER object CMPtemp3;
EXTER object sLAlink_arrayA;
/* nfunlink.c */
object Icall_proc();
float Icall_proc_float();
/* object Icall_proc(); */
float Icall_proc_float();
object ImakeStructure();
object list_vector();
object list_vector_new();
object Iapply_ap();
object IisFboundp();
object IapplyVector();
object c_apply_n();
EXTER object sSPmemory;
EXTER object sSPinit;
object sLfset();
object MakeAfun();
extern object Cstd_key_defaults[];
extern object call_proc0();
/* extern object call_proc(); */
/* extern object call_vproc(); */
object fLrow_major_aref();
object Icheck_one_type();
/* utils.c */
object Iis_fixnum();
object Iapply_fun_n(object,int,int,...);
object Iapply_fun_n1(object (*)(),int,int,...);
object Iapply_fun_n2(object,int,int,...);
object Ifuncall_n(object,int,...);
object Ivs_values();
object Icheck_one_type();
object fSincorrect_type();
EXTER object fLbye (fixnum exitc);
EXTER object fLquit (fixnum exitc);
EXTER object sSAno_initA;
EXTER object fLidentity (object x0);
EXTER object fSgcl_compile_time (void);
EXTER object fSldb1 (fixnum a,fixnum b, fixnum c);
EXTER object fLlisp_implementation_version (void);
EXTER object sSAlisp_maxpagesA;
EXTER object sSAsystem_directoryA;
EXTER object sSAmultiply_stacksA;
EXTER object sStop_level;
EXTER object sSAcommand_argsA;
EXTER object sSAafter_gbc_hookA;
EXTER object sSAignore_maximum_pagesA;
EXTER object sSAoptimize_maximum_pagesA;
EXTER object sSAnotify_optimize_maximum_pagesA;
EXTER object fSallocated (object typ);
EXTER object fSreset_number_used (object typ);
EXTER object fSstaticp (object x);
EXTER object fSallocate_sgc (object type,fixnum min,fixnum max,fixnum free_percent);
EXTER object fSallocate_growth (object type,fixnum min,fixnum max,fixnum percent,fixnum percent_free);
EXTER object fSallocate_contiguous_pages (fixnum npages,...);
EXTER object fSallocated_contiguous_pages (void);
EXTER object fSmaximum_contiguous_pages (void);
EXTER object fSallocate_relocatable_pages (fixnum npages,...);
EXTER object fSallocate (object type,fixnum npages,...);
EXTER object fSallocated_relocatable_pages (void);
EXTER object fSget_hole_size (void);
EXTER object fSset_hole_size (fixnum npages,...);
EXTER object fLgbc (object x0);
EXTER object sSAnotify_gbcA;
EXTER object sSAgbc_messageA;
EXTER object sLcommon;
EXTER object sLnull;
EXTER object sLcons;
EXTER object sLlist;
EXTER object sLsymbol;
EXTER object sLarray;
EXTER object sLvector;
EXTER object sLbit_vector;
EXTER object sLstring;
EXTER object sLsequence;
EXTER object sLsimple_array;
EXTER object sLsimple_vector;
EXTER object sLsimple_bit_vector;
EXTER object sLsimple_string;
EXTER object sLfunction;
EXTER object sLcompiled_function;
EXTER object sLpathname;
EXTER object sLcharacter;
EXTER object sLnumber;
EXTER object sLrational;
EXTER object sLfloat;
EXTER object sLstring_char;
EXTER object sLinteger;
EXTER object sLratio;
EXTER object sLshort_float;
EXTER object sLstandard_char;
EXTER object sLboolean;
EXTER object sLfixnum;
EXTER object sLpositive_fixnum;
EXTER object sLcomplex;
EXTER object sLsingle_float;
EXTER object sLpackage;
EXTER object sLbignum;
EXTER object sLrandom_state;
EXTER object sLdouble_float;
EXTER object sLstream;
EXTER object sLbit;
EXTER object sLreadtable;
EXTER object sLlong_float;
EXTER object sLhash_table;
EXTER object sLkeyword;
EXTER object sLstructure;
EXTER object sLsatisfies;
EXTER object sLmember;
EXTER object sLnot;
EXTER object sLor;
EXTER object sLand;
EXTER object sLvalues;
EXTER object sLmod;
EXTER object sLsigned_byte;
EXTER object sLunsigned_byte;
EXTER object sLsigned_char;
EXTER object sLunsigned_char;
EXTER object sLsigned_short;
EXTER object sLunsigned_short;
EXTER object sLA;
EXTER object sLplusp;
EXTER object sSchar_size;
EXTER object sSshort_size;
EXTER object fLfuncall (object fun,...);
EXTER object fLapply (object fun,...);
EXTER object fLeval (object x0);
EXTER object fLconstantp (object x0);
EXTER object sSlambda_block_expanded;
EXTER object sSAbreak_pointsA;
EXTER object sSAbreak_stepA;
EXTER object fLmacroexpand (object form,...);
EXTER object sLfuncall;
EXTER object sLAmacroexpand_hookA;
EXTER object sSdefmacroA;
EXTER object sSAinhibit_macro_specialA;
EXTER object fLnull (object x0);
EXTER object fLnot (object x0);
EXTER object fLsymbolp (object x0);
EXTER object fLatom (object x0);
EXTER object fLconsp (object x0);
EXTER object fLlistp (object x0);
EXTER object fLnumberp (object x0);
EXTER object fLintegerp (object x0);
EXTER object fLrationalp (object x0);
EXTER object fLrealp (object x0);
EXTER object fLfloatp (object x0);
EXTER object fLcomplexp (object x0);
EXTER object fLcharacterp (object x0);
EXTER object fLstringp (object x0);
EXTER object fLbit_vector_p (object x0);
EXTER object fLvectorp (object x0);
EXTER object fLsimple_string_p (object x0);
EXTER object fLsimple_bit_vector_p (object x0);
EXTER object fLsimple_vector_p (object x0);
EXTER object fLarrayp (object x0);
EXTER object fLpackagep (object x0);
EXTER object fLfunctionp (object x0);
EXTER object fLcompiled_function_p (object x0);
EXTER object fLcommonp (object x0);
EXTER object fLeq (object x0,object x1);
EXTER object fLeql (object x0,object x1);
EXTER object fLequal (object x0,object x1);
EXTER object fLequalp (object x0,object x1);
EXTER object fScontains_sharp_comma (object x0);
EXTER object fSspicep (object x0);
EXTER object fSfixnump (object x0);
EXTER object fLset (object symbol,object value);
EXTER object fSfset (object sym,object function);
EXTER object fLmakunbound (object sym);
EXTER object fLfmakunbound (object sym);
EXTER object sSclear_compiler_properties;
EXTER object fSclear_compiler_properties (object x0,object x1);
EXTER object sLaref;
EXTER object sLcar;
EXTER object sLcdr;
EXTER object sLchar;
EXTER object sLdecf;
EXTER object sLelt;
EXTER object sLfill_pointer;
EXTER object sLget;
EXTER object sLgetf;
EXTER object sLgethash;
EXTER object sLincf;
EXTER object sLpop;
EXTER object sLpush;
EXTER object sLschar;
EXTER object sLsetf;
EXTER object sSsetf_lambda;
EXTER object sSstructure_access;
EXTER object sLsvref;
EXTER object sStraced;
EXTER object sLvector;
EXTER object sKallow_other_keys;
EXTER object fSerror_set (volatile object x0);
EXTER object sLgensym_counter;
EXTER object fSmc (object name,object address);
EXTER object fSmfsfun (object name,object address,object argd);
EXTER object fSmfvfun (object name,object address,object argd);
EXTER object fSmfvfun_key (object symbol,object address,object argd,object keys);
EXTER object fSmf (object name,object addr);
EXTER object fSmm (object name,object addr);
EXTER object fScompiled_function_name (object fun);
EXTER object fSturbo_closure (object funobj);
EXTER object fSspecialp (object sym);
EXTER object sSdebug;
EXTER object fSdefvar1 (object sym,object val,...);
EXTER object fSdebug (object sym,object val);
EXTER object fSsetvv (object index,object val);
EXTER object sSPmemory;
EXTER object sSPinit;
EXTER object fSinit_cmp_anon (void);
EXTER object fSfind_init_name (object namestring);
EXTER object sKexternal;
EXTER object sKinherited;
EXTER object sKinternal;
EXTER object sKnicknames;
EXTER object sKuse;
EXTER object sLApackageA;
EXTER object fSset_gmp_allocate_relocatable (object flag);
EXTER object fSallocate_bigger_fixnum_range (fixnum min,fixnum max);
EXTER object fScmod (object num);
EXTER object fScplus (object x0,object x1);
EXTER object fSctimes (object x0,object x1);
EXTER object fScdifference (object x0,object x1);
EXTER object fLnth (fixnum index,object list);
EXTER object fLfirst (object x);
EXTER object fLsecond (object x);
EXTER object fLthird (object x);
EXTER object fLfourth (object x);
EXTER object fLfifth (object x);
EXTER object fLsixth (object x);
EXTER object fLseventh (object x);
EXTER object fLeighth (object x);
EXTER object fLninth (object x);
EXTER object fLtenth (object x);
EXTER object fSnext_hash_table_entry (object table,object ind);
EXTER object fLhash_table_test (object table);
EXTER object fLhash_table_size (object table);
EXTER object sLarray_rank_limit;
EXTER object sLarray_dimension_limit;
EXTER object sLarray_total_size_limit;
EXTER object sLbit;
EXTER object fLaref (object x,fixnum i, ...);
EXTER object fLsvref (object x,ufixnum i);
EXTER object fLrow_major_aref (object x,fixnum i);
EXTER object fSaset1 (object x, fixnum i,object val);
EXTER object fSaset (object x,object ii,object y, ...);
EXTER object fSsvset (object x,fixnum i,object val);
EXTER object fSmake_vector1 (fixnum n,fixnum elt_type,object staticp,...);
EXTER object fSget_aelttype (object x);
EXTER object fSmake_vector (object x0,object x1,object x2,object x3,object x4,object x5,object x6,...);
EXTER object fSmake_array1 (fixnum elt_type,object staticp,object initial_element,object displaced_to,fixnum displaced_index_offset, object dimensions);
EXTER object fScopy_array_portion (object x,object y,fixnum i1,fixnum i2,object n1o);
EXTER object fSfill_pointer_set (object x,fixnum i);
EXTER object fLfill_pointer (object x);
EXTER object fLarray_has_fill_pointer_p (object x);
EXTER object fLarray_element_type (object x);
EXTER object fLadjustable_array_p (object x);
EXTER object fSdisplaced_array_p (object x);
EXTER object fLarray_rank (object x);
EXTER object fLarray_dimension (object x,fixnum i);
EXTER object fSreplace_array (object old,object new);
EXTER object fLarray_total_size (object x);
EXTER object fSaset_by_cursor (object array,object val,object cursor);
EXTER object sSAmatch_dataA;
EXTER object sSAcase_fold_searchA;
EXTER object fSmatch_beginning (fixnum i);
EXTER object fSmatch_end (fixnum i);
EXTER object fScompile_regexp (object p);
EXTER object fSstring_match (object pattern,object string,...);
EXTER object sSs_data;
EXTER object sLcompile;
EXTER object sKcompile_toplevel;
EXTER object sLdeclare;
EXTER object sLeval;
EXTER object sKexecute;
EXTER object sSfunction_documentation;
EXTER object sLload;
EXTER object sKload_toplevel;
EXTER object sLprogn;
EXTER object sLtypep;
EXTER object sLvalues;
EXTER object sSvariable_documentation;
EXTER object sLwarn;
EXTER object sSAallow_gzipped_fileA;
EXTER object sSAcollect_binary_modulesA;
EXTER object sSAbinary_modulesA;
EXTER object sKmyaddr;
EXTER object sKmyport;
EXTER object sKasync;
EXTER object sKhost;
EXTER object sKserver;
EXTER object sKdaemon;
EXTER object sKpersistent;
EXTER object sSsocket;
EXTER object sLAstandard_inputA;
EXTER object sLAstandard_outputA;
EXTER object sLAerror_outputA;
EXTER object sLAterminal_ioA;
EXTER object sLAquery_ioA;
EXTER object sLAdebug_ioA;
EXTER object sLAtrace_outputA;
EXTER object sSAignore_eof_on_terminal_ioA;
EXTER object sSAload_pathnameA;
EXTER object sLAload_verboseA;
EXTER object sKabort;
EXTER object sKappend;
EXTER object sKcreate;
EXTER object sKdefault;
EXTER object sKdirection;
EXTER object sKelement_type;
EXTER object sKerror;
EXTER object sKif_does_not_exist;
EXTER object sKif_exists;
EXTER object sKinput;
EXTER object sKio;
EXTER object sKnew_version;
EXTER object sKoutput;
EXTER object sKoverwrite;
EXTER object sKprint;
EXTER object sKprobe;
EXTER object sKrename;
EXTER object sKrename_and_delete;
EXTER object sKset_default_pathname;
EXTER object sKsupersede;
EXTER object sKverbose;
EXTER object sLAread_default_float_formatA;
EXTER object sLAread_baseA;
EXTER object sLAread_suppressA;
EXTER object sSY;
EXTER object sSYB;
EXTER object sSYZ;
EXTER object sLlistA;
EXTER object sLappend;
EXTER object sLnconc;
EXTER object sLapply;
EXTER object sLvector;
EXTER object sKupcase;
EXTER object sKdowncase;
EXTER object sKcapitalize;
EXTER object sKstream;
EXTER object sKescape;
EXTER object sKreadably;
EXTER object sKpretty;
EXTER object sKcircle;
EXTER object sKbase;
EXTER object sKradix;
EXTER object sKcase;
EXTER object sKgensym;
EXTER object sKlevel;
EXTER object sKlength;
EXTER object sKarray;
EXTER object sLAprint_escapeA;
EXTER object sLAprint_readablyA;
EXTER object sLAprint_prettyA;
EXTER object sLAprint_circleA;
EXTER object sLAprint_baseA;
EXTER object sLAprint_radixA;
EXTER object sLAprint_caseA;
EXTER object sLAprint_gensymA;
EXTER object sLAprint_levelA;
EXTER object sLAprint_lengthA;
EXTER object sLAprint_arrayA;
EXTER object sSAprint_packageA;
EXTER object sSAprint_structureA;
EXTER object sSpretty_print_format;
EXTER object sSAprint_nansA;
EXTER object fLformat (object strm, object control,...);
EXTER object sSAindent_formatted_outputA;
EXTER object sKdirectory;
EXTER object sKlink;
EXTER object sKfile;
EXTER object fSstat (object path);
EXTER object fSsetenv (object variable,object value);
EXTER object fLdelete_file (object path);
EXTER object fLerror (object fmt_string,...);
EXTER object fLspecific_error (object error_name,object fmt_string,...);
EXTER object fLspecific_correctable_error (object error_name,object fmt_string,...);
EXTER object fLcerror (object continue_fmt_string,object fmt_string,...);
EXTER object fSihs_top (void);
EXTER object fSihs_fun (object x0);
EXTER object fSihs_vs (object x0);
EXTER object fSfrs_top (void);
EXTER object fSfrs_vs (object x0);
EXTER object fSfrs_bds (object x0);
EXTER object fSfrs_class (object x0);
EXTER object fSfrs_tag (object x0);
EXTER object fSfrs_ihs (object x0);
EXTER object fSbds_top (void);
EXTER object fSbds_var (object x0);
EXTER object fSbds_val (object x0);
EXTER object fSvs_top (void);
EXTER object fSvs (object x0);
EXTER object fSsch_frs_base (object x0,object x1);
EXTER object fSinternal_super_go (object tag,object x1,object x2);
EXTER object sSuniversal_error_handler;
EXTER object fSuniversal_error_handler (object x0,object x1,object x2,object x3,object error_fmt_string);
EXTER object sSterminal_interrupt;
EXTER object sKwrong_type_argument;
EXTER object sKtoo_few_arguments;
EXTER object sKtoo_many_arguments;
EXTER object sKunexpected_keyword;
EXTER object sKinvalid_form;
EXTER object sKunbound_variable;
EXTER object sKinvalid_variable;
EXTER object sKundefined_function;
EXTER object sKinvalid_function;
EXTER object sKpackage_error;
EXTER object sKcatch;
EXTER object sKprotect;
EXTER object sKcatchall;
EXTER object fLget_universal_time (void);
EXTER object fSgettimeofday (void);
EXTER object fLget_internal_real_time (void);
EXTER object sSAdefault_time_zoneA;
EXTER object fSgetpid (void);
EXTER object sSAload_with_freadA;
EXTER object fSuse_fast_links (object flag,...);
EXTER object sScdefn;
EXTER object sLAlink_arrayA;
EXTER object fSprofile (object start_address,object scale);
EXTER object fSfunction_start (object funobj);
EXTER object fSset_up_combined (object first,...);
EXTER object fSdisplay_profile (object start_addr,object scal);
EXTER object fSarray_adress (object array);
EXTER object sSAprofile_arrayA;
EXTER object sSAinterrupt_enableA;
EXTER object sSsigusr1_interrupt;
EXTER object sSsigio_interrupt;
EXTER object sSsignal_safety_required (fixnum signo,fixnum safety);
EXTER object fSallow_signal (fixnum n);
EXTER object fSinitfun (object sym,object addr_ind,object argd,...);
EXTER object fSinitmacro (object first,...);
EXTER object fSset_key_struct (object key_struct_ind);
EXTER object fSinvoke (object x);
EXTER object fSopen_named_socket (fixnum port);
EXTER object fSclose_fd (fixnum fd);
EXTER object fSclose_sfd (object sfd);
EXTER object fSaccept_socket_connection (object named_socket);
EXTER object fShostname_to_hostid (object host);
EXTER object fSgethostname (void);
EXTER object fShostid_to_hostname (object host_id);
EXTER object fScheck_fd_for_input (fixnum fd,fixnum timeout);
EXTER object fSclear_connection (fixnum fd);
EXTER object fSconnection_state_fd (object sfd);
EXTER object fSour_write (object sfd,object buffer,fixnum nbytes);
EXTER object fSour_read_with_offset (object fd,object buffer,fixnum offset,fixnum nbytes,fixnum timeout);
EXTER object fSprint_to_string1 (object str,object x,object the_code);
EXTER object fSset_sigio_for_fd (fixnum fd);
EXTER object fSreset_string_input_stream (object strm,object string,fixnum start,fixnum end);
EXTER object fScheck_state_input (object osfd,fixnum timeout);
EXTER object fSclear_connection_state (object osfd);
EXTER object fSgetpeername (object sock);
EXTER object fSgetsockname (object sock);
EXTER object fSset_blocking (object sock,object setBlocking);
EXTER object sSAreadline_prefixA;
/* if already mp.h has been included skip */
#ifdef GMP
#define save_avma
#define restore_avma
#endif
#ifdef _MP_H
#ifdef GMP
#else /* no gmp */
typedef plong *GEN1;
/* if genpari.h not loaded */
#ifndef MAXBLOC
typedef plong *GEN;
GEN1 addii(),mulii(),mulsi(),powerii(),shifti(),stoi(),dvmdii(),subii();
int cmpii();
plong itos();
#define signe(x) (((GEN1)(x))[1]>>24)
#define lg(x) (((GEN1)(x))[0]&0xffff)
#define setlg(x,s) (((GEN1)(x))[0]=(((GEN1)(x))[0]&0xffff0000)+s)
#define lgef(x) (((GEN1)(x))[1]&0xffff)
#define setlgef(x,s) (((GEN1)(x))[1]=(((GEN1)(x))[1]&0xffff0000)+s)
#define our_ulong unsigned plong
#endif /* end MAXBLOC */
EXTER int in_saved_avma ;
EXTER unsigned plong avma;
EXTER GEN1 gzero;
EXTER GEN1 icopy_x;
/* #define DEBUG_AVMA */
#ifdef DEBUG_AVMA
#define save_avma long lvma = (in_saved_avma = 1, avma)
#define restore_avma avma = (in_saved_avma = 0, lvma)
#else
#define save_avma long lvma = avma
#define restore_avma avma = lvma
#endif
#endif /* NO GMP */
#endif /* _MP_H */
/* copy x to y, increasing space by factor of 2 */
object make_integer();
#define Mcar(x) (x)->c.c_car
#define Mcdr(x) (x)->c.c_cdr
#define Mcaar(x) (x)->c.c_car->c.c_car
#define Mcadr(x) (x)->c.c_cdr->c.c_car
#define Mcdar(x) (x)->c.c_car->c.c_cdr
#define Mcddr(x) (x)->c.c_cdr->c.c_cdr
#define Mcaaar(x) (x)->c.c_car->c.c_car->c.c_car
#define Mcaadr(x) (x)->c.c_cdr->c.c_car->c.c_car
#define Mcadar(x) (x)->c.c_car->c.c_cdr->c.c_car
#define Mcaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car
#define Mcdaar(x) (x)->c.c_car->c.c_car->c.c_cdr
#define Mcdadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr
#define Mcddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr
#define Mcdddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr
#define Mcaaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_car
#define Mcaaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_car
#define Mcaadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_car
#define Mcaaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_car
#define Mcadaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_car
#define Mcadadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_car
#define Mcaddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_car
#define Mcadddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_car
#define Mcdaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_cdr
#define Mcdaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_cdr
#define Mcdadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_cdr
#define Mcdaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_cdr
#define Mcddaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_cdr
#define Mcddadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_cdr
#define Mcdddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_cdr
#define Mcddddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_cdr
/* for cmp */
#define CMPcar(x) (x)->c.c_car
#define CMPcdr(x) (x)->c.c_cdr
#define CMPcaar(x) (x)->c.c_car->c.c_car
#define CMPcadr(x) (x)->c.c_cdr->c.c_car
#define CMPcdar(x) (x)->c.c_car->c.c_cdr
#define CMPcddr(x) (x)->c.c_cdr->c.c_cdr
#define CMPcaaar(x) (x)->c.c_car->c.c_car->c.c_car
#define CMPcaadr(x) (x)->c.c_cdr->c.c_car->c.c_car
#define CMPcadar(x) (x)->c.c_car->c.c_cdr->c.c_car
#define CMPcaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car
#define CMPcdaar(x) (x)->c.c_car->c.c_car->c.c_cdr
#define CMPcdadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr
#define CMPcddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr
#define CMPcdddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr
#define CMPcaaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_car
#define CMPcaaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_car
#define CMPcaadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_car
#define CMPcaaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_car
#define CMPcadaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_car
#define CMPcadadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_car
#define CMPcaddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_car
#define CMPcadddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_car
#define CMPcdaaar(x) (x)->c.c_car->c.c_car->c.c_car->c.c_cdr
#define CMPcdaadr(x) (x)->c.c_cdr->c.c_car->c.c_car->c.c_cdr
#define CMPcdadar(x) (x)->c.c_car->c.c_cdr->c.c_car->c.c_cdr
#define CMPcdaddr(x) (x)->c.c_cdr->c.c_cdr->c.c_car->c.c_cdr
#define CMPcddaar(x) (x)->c.c_car->c.c_car->c.c_cdr->c.c_cdr
#define CMPcddadr(x) (x)->c.c_cdr->c.c_car->c.c_cdr->c.c_cdr
#define CMPcdddar(x) (x)->c.c_car->c.c_cdr->c.c_cdr->c.c_cdr
#define CMPcddddr(x) (x)->c.c_cdr->c.c_cdr->c.c_cdr->c.c_cdr
#define CMPfuncall funcall
#define Creturn(v) return((vs_top=vs,(v)))
/* end for cmp*/
/* 2^6 is the limit on the number of args */
#define F_NARG_WIDTH 6
#define F_START_TYPES_POS (2* F_NARG_WIDTH + F_end )
enum F_arg_flags
{ F_requires_nargs, /* if set, then caller must store VFUN_NARGS with number
of args passed. F_ARGD is used to set up the argd,
and it sets this if minargs < maxargs. */
F_caller_sets_one_val, /* If set, then the CALLER will look after setting the
fcall.nvalues to 1, if necessary (eg the call is at the
end of a function, or if multiple-values-list invokes
the function.) If foo is proclaimed to return exactly
one value, then the CALLER might set this flag in the
link argd, or it might do it in the case we have (setq
x (foo)) or (values (foo)).
If this flag is not set, then the CALLED function is
responsible for setting the number of values in
fcall.nvalues, and also for always returning as C value
Cnil, in the case that it sets fcall.nvalues == 0. */
F_requires_fun_passed, /* if set, the caller must set VFUN_FUN to the
calling function. This is used by closures, but
could be used by other things i suppose. */
F_end /* 1 bigger than the largest flag */
};
enum F_arg_types
{ F_object,
F_int,
F_double_ptr,
F_shortfloat
};
/* Make a mask for bits i < j, masking j-i bits */
#define MASK_RANGE(i,j) ((~(~0 << (j-i)))<< i)
#define F_PLAIN(x) (((x) & MASK_RANGE( F_START_TYPES_POS,31)) == 0)
#define ARG_LIMIT 63
EXTER object MVloc[10];
#define TYPEP(x,t) (type_of(x) == (t))
#ifdef HAVE_ALLOCA
/* #ifndef alloca */
/* char *alloca(); */
/* #endif */
#include <stdlib.h>
EXTER char *alloca_val;
#define OUR_ALLOCA(n) alloca(n)
#define ALLOCA_FREE(n)
#define ALLOCA_CONS(n) (alloca_val=alloca((n)*sizeof(struct cons)))
#define ON_STACK_CONS(x,y) (alloca_val=alloca(sizeof(struct cons)), on_stack_cons(x,y))
#define ON_STACK_LIST on_stack_list
#define ON_STACK_LIST_VECTOR on_stack_list_vector
#define ON_STACK_LIST_VECTOR_NEW on_stack_list_vector_new
#define ON_STACK_MAKE_LIST on_stack_make_list
object on_stack_cons();
object on_stack_list(int,...);
/* object on_stack_list_vector(int,va_list); */
object on_stack_list_vector_new(int,object,va_list);
object on_stack_make_list();
#else /* no HAVE_ALLOCA */
#define OUR_ALLOCA(n) malloc(n)
#define ALLOCA_FREE(n) free(n)
#define ALLOCA_CONS(n) 0
#define ON_STACK_CONS(x,y) MMcons(x,y)
#define ON_STACK_LIST list
#define ON_STACK_LIST_VECTOR list_vector
#define ON_STACK_MAKE_LIST make_list
#endif
#ifndef KEYTYPE
#define KEYTYPE void *
#endif
#define Scons sLcons
#define aref1 fLrow_major_aref
#define aref fLrow_major_aref
/* #define aset1 fSaset1 */
#define aset aset1
#define siSPinit sSPinit
#define siSPmemory sSPmemory
#define siSdefmacroA sSdefmacroA
#define siSfunction_documentation sSfunction_documentation
#define siSlambda_block_expanded sSlambda_block_expanded
#define siSpretty_print_format sSpretty_print_format
#define IdoInit(x,y) do_init(y)
/* #define siSsharp_comma */
#define siSvariable_documentation sSvariable_documentation
#define EQ(x,y) ((x)==(y))
#define CMPmake_fixnum(x) make_fixnum(x)
object make_integer();
/* copy x to y, increasing space by factor of 2 */
#ifndef GMP
GEN otoi();
/*
object integ_temp;
#define otoi(x) (integ_temp = (x) , (type_of(integ_temp) == t_bignum \
? MP(integ_temp) :stoi(fix(integ_temp))))
*/
#define ISETQ_FIX(a,b,c) isetq_fix(a,c)
void isetq_fix();
#ifdef HAVE_ALLOCA
#define SETQ_II(var,alloc,val) \
do{GEN _xx =(val) ; \
int _n = replace_copy1(_xx,var); \
if(_n) var = replace_copy2(_xx,alloca(_n));}while(0)
#define SETQ_IO(var,alloc,val) {object _xx =(val) ; \
int _n = obj_replace_copy1(_xx,var); \
if(_n) var = obj_replace_copy2(_xx,alloca(_n));}
#define IDECL(a,b,c) our_ulong b[4];a =(b[0]=0x1010000 +4,b) ; object c
#else
GEN setq_io(),setq_ii();
#define SETQ_IO(x,alloc,val) (x)=setq_io(x,&alloc,val)
#define SETQ_II(x,alloc,val) (x)=setq_ii(x,&alloc,val)
#define IDECL(a,b,c) our_ulong b[4];a =(b[0]=0x1010000 +4,b);object c
#endif
#else
typedef MP_INT * GEN;
int obj_to_mpz(object,MP_INT *);
int obj_to_mpz1(object,MP_INT *,void *);
int mpz_to_mpz(MP_INT *,MP_INT *);
int mpz_to_mpz1(MP_INT *,MP_INT *,void *);
void isetq_fix(MP_INT *,int);
MP_INT * otoi(object x);
#ifndef HAVE_ALLOCA
#error Need alloca for GMP
#endif
/* Add fourth argument af to the SETQ macros to allow for malloc allocation */
/* inside setjmp frames, and faster alloca allocation otherwise.*/
/* FIXME, verify that IDECL need not be changed, improve logic behind malloc */
/* selection, e.g. closure boundaries. CM 20031201*/
#define IDECL(a,b,c) mp_limb_t *c=(mp_limb_t *)alloca(1*sizeof(mp_limb_t));MP_INT b={1,1,c}; a = &b
#define SETQ_IO(var,alloc,val,af) { object _xx = (val); \
int _n; \
if ((_n=obj_to_mpz(_xx,(var)))) {\
obj_to_mpz1(_xx,(var),af(_n));}}
#define SETQ_II(var,alloc,val,af) { MP_INT * _xx = (val); \
int _n; \
if ((_n=mpz_to_mpz(_xx,(var)))) {\
mpz_to_mpz1(_xx,(var),af(_n));}}
#define ISETQ_FIX(a,b,c) isetq_fix(a,c)
/* #define IDECL(a,b,c) MP_INT b; a = (mpz_init(&b),&b) ; object c */
/* #define SETQ_IO(var,alloc,val) { object _xx = (val); \ */
/* obj_to_mpz(_xx,(var));} */
/* #define SETQ_II(var,alloc,val) { MP_INT * _xx = (val); \ */
/* mpz_to_mpz(_xx,(var));} */
/* #define ISETQ_FIX(a,b,c) isetq_fix(a,c) */
#endif /* end no GMP */
#define cclosure_call funcall
#ifndef _REGEXP
#define _REGEXP 1
#define NSUBEXP 10
typedef struct regexp {
char *startp[NSUBEXP];
char *endp[NSUBEXP];
char regstart; /* Internal use only. */
char reganch; /* Internal use only. */
char *regmust; /* Internal use only. */
int regmlen; /* Internal use only. */
unsigned char regmaybe_boyer;
char program[1]; /* Unwarranted chumminess with compiler. */
} regexp;
#if __STDC__ == 1
#define _ANSI_ARGS_(x) x
#else
#define _ANSI_ARGS_(x) ()
#endif
/* extern regexp *regcomp _ANSI_ARGS_((char *exp)); */
/* extern int regexec _ANSI_ARGS_((regexp *prog, char *string, char *start,int length )); */
extern void regsub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
#ifndef regerror
extern void regerror _ANSI_ARGS_((char *msg));
#endif
#endif /* REGEXP */
/* alloc.c:89:OF */ extern char *alloc_page (long n); /* (n) int n; */
/* alloc.c:149:OF */ extern void add_page_to_freelist (char *p, struct typemanager *tm); /* (p, tm) char *p; struct typemanager *tm; */
/* alloc.c:196:OF */ extern object type_name (int t); /* (t) int t; */
/* alloc.c:213:OF */ extern object alloc_object (enum type t); /* (t) enum type t; */
/* alloc.c:296:OF */ extern object make_cons (object a, object d); /* (a, d) object a; object d; */
/* alloc.c:364:OF */ extern object on_stack_cons (object x, object y); /* (x, y) object x; object y; */
/* alloc.c:376:OF */ extern object fSallocated (object typ); /* (typ) object typ; */
/* alloc.c:401:OF */ extern object fSreset_number_used (object typ); /* (typ) object typ; */
/* alloc.c:480:OF */ extern void insert_contblock (char *p, int s); /* (p, s) char *p; int s; */
/* alloc.c:480:OF */ extern void insert_maybe_sgc_contblock (char *p, int s); /* (p, s) char *p; int s; */
/* alloc.c:611:OF */ extern void set_maxpage (void); /* () */
/* alloc.c:635:OF */ extern void gcl_init_alloc (void); /* () */
/* alloc.c:737:OF */ extern object fSstaticp (object x); /* (x) object x; */
/* alloc.c:822:OF */ extern object fSallocate_sgc (object type,fixnum min,fixnum max,fixnum free_percent); /* (type, min, max, free_percent) object type; int min; int max; int free_percent; */
/* alloc.c:846:OF */ extern object fSallocate_growth (object type,fixnum min,fixnum max,fixnum percent,fixnum percent_free); /* (type, min, max, percent, percent_free) object type; int min; int max; int percent; int percent_free; */
/* alloc.c:911:OF */ extern object fSallocated_contiguous_pages (void); /* () */
/* alloc.c:918:OF */ extern object fSmaximum_contiguous_pages (void); /* () */
/* alloc.c:958:OF */ extern object fSallocated_relocatable_pages (void); /* () */
/* alloc.c:965:OF */ extern object fSget_hole_size (void); /* () */
/* alloc.c:1000:OF */ extern void gcl_init_alloc_function (void); /* () */
/* alloc.c:1126:OF */ extern void free (void *ptr); /* (ptr) void *ptr; */
/* array.c:57:OF */ extern void Laref (void); /* () */
/* array.c:126:OF */ extern object fLsvref (object x, ufixnum i); /* (x, i) object x; unsigned int i; */
/* array.c:142:OF */ extern object fLrow_major_aref (object x,fixnum i); /* (x, i) object x; int i; */
/* array.c:190:OF */ extern object fSaset1 (object x,fixnum i, object val); /* (x, i, val) object x; int i; object val; */
/* array.c:262:OF */ extern void siLaset (void); /* () */
/* array.c:321:OF */ extern void siLsvset (void); /* () */
/* array.c:324:OF */ extern object fSsvset (object x,fixnum i, object val); /* (x, i, val) object x; int i; object val; */
/* array.c:461:OF */ extern object fSget_aelttype (object x); /* (x) object x; */
/* array.c:480:OF */ extern void siLmake_vector (void); /* () */
/* array.c:519:OF */ extern object fSmake_array1 (fixnum elt_type, object staticp, object initial_element, object displaced_to,fixnum displaced_index_offset, object dimensions); /* (elt_type, staticp, initial_element, displaced_to, displaced_index_offset, dimensions) int elt_type; object staticp; object initial_element; object displaced_to; int displaced_index_offset; object dimensions; */
/* array.c::OF */ extern object fSmake_vector1_1 (fixnum n,fixnum elt_type,object staticp);
/* array.c:738:OF */ extern void adjust_displaced (object x, long diff); /* (x, diff) object x; int diff; */
/* array.c:790:OF */ extern void gset (void *p1, void *val, int n, int typ); /* (p1, val, n, typ) char *p1; char *val; int n; int typ; */
/* array.c:831:OF */ extern object fScopy_array_portion (object x, object y,fixnum i1,fixnum i2, object n1); /* (x, y, i1, i2, n1) object x; object y; int i1; int i2; int n1; */
/* array.c:879:OF */ extern void array_allocself (object x, int staticp, object dflt); /* (x, staticp, dflt) object x; int staticp; object dflt; */
/* array.c:920:OF */ extern void siLfill_pointer_set (void); /* () */
/* array.c:923:OF */ extern object fSfill_pointer_set (object x,fixnum i); /* (x, i) object x; int i; */
/* array.c:944:OF */ extern void Lfill_pointer (void); /* () */
/* array.c:947:OF */ extern object fLfill_pointer (object x); /* (x) object x; */
/* array.c:965:OF */ extern object fLarray_has_fill_pointer_p (object x); /* (x) object x; */
/* array.c:986:OF */ extern void Larray_element_type (void); /* () */
/* array.c:989:OF */ extern object fLarray_element_type (object x); /* (x) object x; */
/* array.c:995:OF */ extern void Ladjustable_array_p (void); /* () */
/* array.c:998:OF */ extern object fLadjustable_array_p (object x); /* (x) object x; */
/* array.c:1002:OF */ extern void siLdisplaced_array_p (void); /* () */
/* array.c:1005:OF */ extern object fSdisplaced_array_p (object x); /* (x) object x; */
/* array.c:1010:OF */ extern void Larray_rank (void); /* () */
/* array.c:1013:OF */ extern object fLarray_rank (object x); /* (x) object x; */
/* array.c:1020:OF */ extern void Larray_dimension (void); /* () */
/* array.c:1023:OF */ extern object fLarray_dimension (object x,fixnum i); /* (x, i) object x; int i; */
/* array.c:1090:OF */ extern void siLreplace_array (void); /* () */
/* array.c:1093:OF */ extern object fSreplace_array (object old, object new); /* (old, new) object old; object new; */
/* array.c:1132:OF */ extern object fLarray_total_size (object x); /* (x) object x; */
/* array.c:1140:OF */ extern object fSaset_by_cursor (object array, object val, object cursor); /* (array, val, cursor) object array; object val; object cursor; */
/* array.c:1160:OF */ extern void gcl_init_array_function (void); /* () */
/* assignment.c:62:OF */ extern void setq (object sym, object val); /* (sym, val) object sym; object val; */
/* assignment.c:128:OF */ extern void Lset (void); /* () */
/* assignment.c:130:OF */ extern object fLset (object symbol, object value); /* (symbol, value) object symbol; object value; */
/* assignment.c:142:OF */ extern void siLfset (void); /* () */
/* assignment.c:144:OF */ extern object fSfset (object sym, object function); /* (sym, function) object sym; object function; */
/* assignment.c:214:OF */ extern object fLmakunbound (object sym); /* (sym) object sym; */
/* assignment.c:228:OF */ extern void Lfmakunbound (void); /* () */
/* assignment.c:230:OF */ extern object fLfmakunbound (object sym); /* (sym) object sym; */
/* assignment.c:547:OF */ extern object clear_compiler_properties (object sym, object code); /* (sym, code) object sym; object code; */
/* assignment.c:563:OF */ extern object fSclear_compiler_properties (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* assignment.c:591:OF */ extern void gcl_init_assignment (void); /* () */
/* backq.c:259:OF */ extern int backq_car (object x); /* (x) object x; */
/* backq.c:381:OF */ extern void gcl_init_backq (void); /* () */
/* bds.c:31:OF */ extern void bds_unwind (bds_ptr new_bds_top); /* (new_bds_top) bds_ptr new_bds_top; */
/* big.c:53:OF */ extern object fSset_gmp_allocate_relocatable (object flag); /* (flag) object flag; */
/* gmp_big.c:96:OF */ extern void gcl_init_big1 (void); /* () */
/* gmp_big.c:108:OF */ extern object new_bignum (void); /* () */
/* gmp_big.c:161:OF */ extern object make_integer (__mpz_struct *u); /* (u) __mpz_struct *u; */
/* gmp_big.c:207:OF */ extern int big_compare (object x, object y); /* (x, y) object x; object y; */
/* gmp_big.c:214:OF */ extern object normalize_big_to_object (object x); /* (x) object x; */
/* gmp_big.c:230:OF */ extern void add_int_big (int i, object x); /* (i, x) int i; object x; */
/* gmp_big.c:244:OF */ extern void mul_int_big (int i, object x); /* (i, x) int i; object x; */
/* gmp_big.c:289:OF */ extern object normalize_big (object x); /* (x) object x; */
/* gmp_big.c:302:OF */ extern object big_minus (object x); /* (x) object x; */
/* gmp_big.c:324:OF */ extern double big_to_double (object x); /* (x) object x; */
/* gmp_big.c:454:OF */ extern object maybe_replace_big (object x); /* (x) object x; */
/* gmp_big.c:472:OF */ extern object bignum2 (unsigned int h, unsigned int l); /* (h, l) unsigned int h; unsigned int l; */
/* gmp_big.c:482:OF */ extern void integer_quotient_remainder_1 (object x, object y, object *qp, object *rp); /* (x, y, qp, rp) object x; object y; object *qp; object *rp; */
/* gmp_big.c:502:OF */ extern object coerce_big_to_string (object x, int printbase); /* (x, printbase) object x; int printbase; */
/* gmp_big.c:521:OF */ extern void gcl_init_big (void); /* () */
/* big.c:72:OF */ extern int big_sign (object x); /* (x) object x; */
/* big.c:78:OF */ extern void set_big_sign (object x, int sign); /* (x, sign) object x; int sign; */
/* big.c:85:OF */ extern void zero_big (object x); /* (x) object x; */
/* bind.c:74:OF */ extern void lambda_bind (object *arg_top); /* (arg_top) object *arg_top; */
/* bind.c:564:OF */ extern void bind_var (object var, object val, object spp); /* (var, val, spp) object var; object val; object spp; */
/* bind.c:610:OF */ extern object find_special (object body, struct bind_temp *start, struct bind_temp *end); /* (body, start, end) object body; struct bind_temp *start; struct bind_temp *end; */
/* bind.c:670:OF */ extern object let_bind (object body, struct bind_temp *start, struct bind_temp *end); /* (body, start, end) object body; struct bind_temp *start; struct bind_temp *end; */
/* bind.c:688:OF */ extern object letA_bind (object body, struct bind_temp *start, struct bind_temp *end); /* (body, start, end) object body; struct bind_temp *start; struct bind_temp *end; */
/* bind.c:712:OF */ extern void parse_key (object *base, bool rest, bool allow_other_keys, register int n, ... );
/* bind.c:820:OF */ extern void check_other_key (object l, int n, ...);
struct key {short n,allow_other_keys;
iobject *defaults;
iobject keys[1];
};
/* bind.c:866:OF */ extern int parse_key_new_new (int n, object *base, struct key *keys, object first, va_list ap); /* (n, base, keys, ap) int n; object *base; struct key *keys; va_list ap; */
/* bind.c:916:OF */ extern int parse_key_rest_new (object rest, int n, object *base, struct key *keys, object first, va_list ap); /* (rest, n, base, keys, ap) object rest; int n; object *base; struct key *keys; va_list ap; */
/* bind.c:975:OF */ extern void set_key_struct (struct key *ks, object data); /* (ks, data) struct key *ks; object data; */
/* bind.c:995:OF */ extern void gcl_init_bind (void); /* () */
/* block.c:121:OF */ extern void gcl_init_block (void); /* () */
/* bsearch.c:5:OF */ extern void *bsearch (const void *key, const void *base, size_t nel, size_t keysize, int (*compar) (const void *,const void *)); /* (key, base, nel, keysize, compar) char *key; char *base; unsigned int nel; unsigned int keysize; int (*compar)(); */
#if defined (__MINGW32__)
/* bzero.c:3:OF */ /* extern void bzero (char *b, size_t length); */ /* (b, length) char *b; int length; */
#endif
/* catch.c:61:OF */ extern object fSerror_set (object x0); /* (x0) object x0; */
/* catch.c:166:OF */ extern void gcl_init_catch (void); /* () */
/* cfun.c:37:OF */ extern object make_cfun (void (*self)(), object name, object data, char *start, int size); /* (self, name, data, start, size) int (*self)(); object name; object data; char *start; int size; */
/* cfun.c:56:OF */ extern object make_sfun (object name, object (*self)(), int argd, object data); /* (name, self, argd, data) object name; int (*self)(); int argd; object data; */
/* cfun.c:91:OF */ extern object make_cclosure_new (void (*self)(), object name, object env, object data); /* (self, name, env, data) int (*self)(); object name; object env; object data; */
/* cfun.c:108:OF */ extern object make_cclosure (void (*self)(), object name, object env, object data, char *start, int size); /* (self, name, env, data, start, size) int (*self)(); object name; object env; object data; char *start; int size; */
/* cfun.c:124:OF */ extern object fSmc (object name, object address); /* (name, address) object name; object address; */
/* cfun.c:150:OF */ extern object fSmfsfun (object name, object address, object argd); /* (name, address, argd) object name; object address; object argd; */
/* cfun.c:174:OF */ extern object fSmfvfun (object name, object address, object argd); /* (name, address, argd) object name; object address; object argd; */
/* cfun.c:193:OF */ extern object fSmfvfun_key (object symbol, object address, object argd, object keys); /* (symbol, address, argd, keys) object symbol; object address; object argd; object keys; */
/* cfun.c:221:OF */ extern object fSmf (object name, object addr); /* (name, addr) object name; object addr; */
/* cfun.c:269:OF */ extern object fSmm (object name, object addr); /* (name, addr) object name; object addr; */
/* cfun.c:283:OF */ extern object make_function_internal (char *s, void(*f)()); /* (s, f) char *s; int (*f)(); */
/* cfun.c:299:OF */ extern object make_si_sfun_internal (char *s, object (*f)(), int argd); /* (s, f, argd) char *s; int (*f)(); int argd; */
/* cfun.c:322:OF */ extern object make_si_function_internal (char *s, void (*f) ()); /* (s, f) char *s; int (*f)(); */
/* cfun.c:341:OF */ extern object make_special_form_internal (char *s, void (*f)()); /* (s, f) char *s; int (*f)(); */
/* cfun.c:352:OF */ extern object fScompiled_function_name (object fun); /* (fun) object fun; */
/* cfun.c:371:OF */ extern void turbo_closure (object fun); /* (fun) object fun; */
/* cfun.c:392:OF */ extern object fSturbo_closure (object funobj); /* (funobj) object funobj; */
/* cfun.c:403:OF */ extern void gcl_init_cfun (void); /* () */
/* cmac.c:147:OF */ extern object fScmod (object num); /* (num) object num; */
/* cmac.c:156:OF */ extern object fScplus (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* cmac.c:165:OF */ extern object fSctimes (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* cmac.c:175:OF */ extern object fScdifference (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* cmac.c:191:OF */ extern void gcl_init_cmac (void); /* () */
/* cmpaux.c:33:OF */ extern void siLspecialp (void); /* () */
/* cmpaux.c:35:OF */ extern object fSspecialp (object sym); /* (sym) object sym; */
/* cmpaux.c:73:OF */ extern object fSdebug (object sym, object val); /* (sym, val) object sym; object val; */
/* cmpaux.c:82:OF */ extern object fSsetvv (object index, object val); /* (index, val) object index; object val; */
/* cmpaux.c:95:OF */ extern void gcl_init_cmpaux (void); /* () */
/* cmpaux.c:106:OF */ /* extern int ifloor (int x, int y); */ /* (x, y) int x; int y; */
/* cmpaux.c:124:OF */ /* extern int imod (int x, int y); */ /* (x, y) int x; int y; */
/* cmpaux.c:185:OF */ extern int object_to_int (object x); /* (x) object x; */
/* cmpaux.c:185:OF */ extern fixnum object_to_fixnum (object x); /* (x) object x; */
/* cmpaux.c:263:OF */ extern char *object_to_string (object x); /* (x) object x; */
typedef int (*FUNC)();
/* cmpaux.c:294:OF */ extern void call_init (int init_address, object memory, object fasl_vec, FUNC fptr); /* (init_address, memory, fasl_vec, fptr) int init_address; object memory; object fasl_vec; FUNC fptr; */
/* cmpaux.c:339:OF */ extern void do_init (object *statVV); /* (statVV) object *statVV; */
/* cmpaux.c:416:OF */ extern void gcl_init_or_load1 (void (*fn) (void), const char *file); /* (fn, file) int (*fn)(); char *file; */
/* conditional.c:200:OF */ extern void gcl_init_conditional (void); /* () */
/* error.c:38:OF */ extern void terminal_interrupt (int correctable); /* (correctable) int correctable; */
/* error.c:147:OF */ extern void Lerror (void); /* () */
/* error.c:164:OF */ extern void Lcerror (void); /* () */
/* error.c:184:OF */ extern void FEerror (char *s, int num, ... ); /* (s, num, arg1, arg2, arg3, arg4) char *s; int num; object arg1; object arg2; object arg3; object arg4; */
/* error.c:203:OF */ extern void FEwrong_type_argument (object type, object value); /* (type, value) object type; object value; */
/* error.c:210:OF */ extern void FEtoo_few_arguments (object *base, object *top); /* (base, top) object *base; object *top; */
/* error.c:219:OF */ extern void FEtoo_few_argumentsF (object args); /* (args) object args; */
/* error.c:227:OF */ extern void FEtoo_many_arguments (object *base, object *top); /* (base, top) object *base; object *top; */
/* error.c:234:OF */ extern void FEtoo_many_argumentsF (object args); /* (args) object args; */
/* error.c:247:OF */ extern void FEunexpected_keyword (object key); /* (key) object key; */
/* error.c:258:OF */ extern void FEinvalid_form (char *s, object form); /* (s, form) char *s; object form; */
/* error.c:266:OF */ extern void FEunbound_variable (object sym); /* (sym) object sym; */
/* error.c:273:OF */ extern void FEinvalid_variable (char *s, object obj); /* (s, obj) char *s; object obj; */
/* error.c:280:OF */ extern void FEundefined_function (object fname); /* (fname) object fname; */
/* error.c:287:OF */ extern void FEinvalid_function (object obj); /* (obj) object obj; */
/* error.c:297:OF */ extern object CEerror (char *error_str, char *cont_str, int num, object arg1, object arg2, object arg3, object arg4); /* (error_str, cont_str, num, arg1, arg2, arg3, arg4) char *error_str; char *cont_str; int num; object arg1; object arg2; object arg3; object arg4; */
/* error.c:330:OF */ extern object fSihs_top (void); /* () */
/* error.c:337:OF */ extern object fSihs_fun (object x0); /* (x0) object x0; */
/* error.c:346:OF */ extern object fSihs_vs (object x0); /* (x0) object x0; */
/* error.c:371:OF */ extern object fSfrs_top (void); /* () */
/* error.c:378:OF */ extern object fSfrs_vs (object x0); /* (x0) object x0; */
/* error.c:387:OF */ extern object fSfrs_bds (object x0); /* (x0) object x0; */
/* error.c:397:OF */ extern object fSfrs_class (object x0); /* (x0) object x0; */
/* error.c:413:OF */ extern object fSfrs_tag (object x0); /* (x0) object x0; */
/* error.c:422:OF */ extern object fSfrs_ihs (object x0); /* (x0) object x0; */
/* error.c:448:OF */ extern object fSbds_top (void); /* () */
/* error.c:455:OF */ extern object fSbds_var (object x0); /* (x0) object x0; */
/* error.c:464:OF */ extern object fSbds_val (object x0); /* (x0) object x0; */
/* error.c:487:OF */ extern object fSvs_top (void); /* () */
/* error.c:496:OF */ extern object fSvs (object x0); /* (x0) object x0; */
/* error.c:505:OF */ extern object fSsch_frs_base (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* error.c:523:OF */ extern object fSinternal_super_go (object tag, object x1, object x2); /* (tag, x1, x2) object tag; object x1; object x2; */
/* error.c:549:OF */ extern object fSuniversal_error_handler (object x0, object x1, object x2, object x3, object error_fmt_string); /* (x0, x1, x2, x3, error_fmt_string) object x0; object x1; object x2; object x3; object error_fmt_string; */
/* error.c:561:OF */ extern void check_arg_failed (int n); /* (n) int n; */
/* error.c:568:OF */ extern void too_few_arguments (void); /* () */
/* error.c:573:OF */ extern void too_many_arguments (void); /* () */
/* error.c:586:OF */ extern void ck_larg_exactly (int n, object x); /* (n, x) int n; object x; */
/* error.c:595:OF */ extern void invalid_macro_call (void); /* () */
/* error.c:618:OF */ extern object wrong_type_argument (object typ, object obj); /* (typ, obj) object typ; object obj; */
/* error.c:625:OF */ extern void illegal_declare (object form); /* (form) int form; */
/* error.c:635:OF */ extern void not_a_string_or_symbol (object x); /* (x) object x; */
/* error.c:641:OF */ extern void not_a_symbol (object obj); /* (obj) object obj; */
/* error.c:647:OF */ extern int not_a_variable (object obj); /* (obj) object obj; */
/* error.c:653:OF */ extern void illegal_index (object x, object i); /* (x, i) object x; object i; */
/* error.c:660:OF */ extern void check_socket (object x); /* (x) object x; */
/* error.c:670:OF */ extern void check_stream (object strm); /* (strm) object strm; */
/* error.c:697:OF */ extern void check_arg_range (int n, int m); /* (n, m) int n; int m; */
/* error.c:727:OF */ extern void gcl_init_error (void); /* () */
/* eval.c:143:OF */ extern void funcall (object fun); /* (fun) object fun; */
/* eval.c:375:OF */ extern void lispcall (object *funp, int narg); /* (funp, narg) object *funp; int narg; */
/* eval.c:461:OF */ extern void symlispcall (object sym, object *base, int narg); /* (sym, base, narg) object sym; object *base; int narg; */
/* eval.c:549:OF */ extern object simple_lispcall (object *funp, int narg); /* (funp, narg) object *funp; int narg; */
/* eval.c:645:OF */ extern object simple_symlispcall (object sym, object *base, int narg); /* (sym, base, narg) object sym; object *base; int narg; */
/* eval.c:739:OF */ extern void super_funcall (object fun); /* (fun) object fun; */
/* eval.c:752:OF */ extern void super_funcall_no_event (object fun); /* (fun) object fun; */
/* eval.c:936:OF */ extern object Ieval (object form); /* (form) object form; */
/* eval.c:944:OF */ extern void eval (object form); /* (form) object form; */
/* eval.c:1189:OF */ extern void Leval (void); /* () */
/* eval.c:1191:OF */ extern object fLeval (object x0); /* (x0) object x0; */
/* eval.c:1203:OF */ extern void Levalhook (void); /* () */
/* eval.c:1269:OF */ extern void Lconstantp (void); /* () */
/* eval.c:1271:OF */ extern object fLconstantp (object x0); /* (x0) object x0; */
/* eval.c:1293:OF */ extern object ieval (object x); /* (x) object x; */
/* eval.c:1309:OF */ extern object ifuncall1 (object fun, object arg1); /* (fun, arg1) object fun; object arg1; */
/* eval.c:1328:OF */ extern object ifuncall2 (object fun, object arg1, object arg2); /* (fun, arg1, arg2) object fun; object arg1; object arg2; */
/* eval.c:1348:OF */ extern object ifuncall3 (object fun, object arg1, object arg2, object arg3); /* (fun, arg1, arg2, arg3) object fun; object arg1; object arg2; object arg3; */
typedef void (*funcvoid)(void);
/* eval.c:1545:OF */ extern void gcl_init_eval (void); /* () */
/* fasdump.c:1465:OF */ extern object read_fasl_vector (object in); /* (in) object in; */
/* fat_string.c:29:OF */ extern object fSprofile (object start_address, object scale); /* (start_address, scale) object start_address; object scale; */
/* fat_string.c:46:OF */ extern object fSfunction_start (object funobj); /* (funobj) object funobj; */
/* fat_string.c:331:OF */ extern object fSdisplay_profile (object start_addr, object scal); /* (start_addr, scal) object start_addr; object scal; */
/* fat_string.c:394:OF */ extern object fSarray_adress (object array); /* (array) object array; */
/* fat_string.c:435:OF */ extern void gcl_init_fat_string (void); /* () */
/* sfasli.c::OF */ extern void gcl_init_sfasl (void); /* () */
/* format.c::OF */ extern object fLformat_1(object strm, object control,object x);
/* format.c:2084:OF */ extern void Lformat (void); /* () */
/* format.c:2171:OF */ extern void gcl_init_format (void); /* () */
/* frame.c:32:OF */ extern void unwind (frame_ptr fr, object tag); /* (fr, tag) frame_ptr fr; object tag; */
/* frame.c:58:OF */ extern frame_ptr frs_sch (object frame_id); /* (frame_id) object frame_id; */
/* frame.c:69:OF */ extern frame_ptr frs_sch_catch (object frame_id); /* (frame_id) object frame_id; */
/* funlink.c:19:OF */ extern void call_or_link (object sym, void **link); /* (sym, link) object sym; void **link; */
/* funlink.c:41:OF */ extern void call_or_link_closure (object sym, void **link, void **ptr); /* (sym, link, ptr) object sym; void **link; object *ptr; */
/* funlink.c:230:OF */ extern object c_apply_n (object (*fn)(), int n, object *x); /* (fn, n, x) long int (*fn)(); int n; object *x; */
/* funlink.c:696:OF */ extern object call_proc0 (object sym, void *link); /* (sym, link) object sym; void *link; */
/* funlink.c:784:OF */ extern int clear_stack (object *beg, object *limit); /* (beg, limit) object *beg; object *limit; */
/* funlink.c:821:OF */ extern void gcl_init_links (void); /* () */
/* gbc.c:151:OF */ extern void enter_mark_origin (object *p); /* (p) object *p; */
/* gbc.c:938:OF */ extern void GBC (enum type t); /* (t) enum type t; */
/* gbc.c:1326:OF */ extern object fLgbc (object x0); /* (x0) object x0; */
/* sgbc.c:924:OF */ extern int sgc_count_type (int t); /* (t) int t; */
/* sgbc.c:938:OF */ extern int sgc_start (void); /* () */
/* sgbc.c:1068:OF */ extern int sgc_quit (void); /* () */
/* sgbc.c:1131:OF */ extern void make_writable (unsigned long beg, unsigned long i); /* (beg, i) int beg; int i; */
#ifndef __MINGW32__
/* #include <signal.h> */
#endif
/* sgbc.c:1246:OF */ extern void memory_protect (int on); /* (on) int on; */
/* sgbc.c:1306:OF */ extern void perm_writable (char *p, long n); /* (p, n) char *p; int n; */
/* sgbc.c:1321:OF */ extern void system_error (void); /* () */
/* gbc.c:1357:OF */ extern void gcl_init_GBC (void); /* () */
/* gnumalloc.c:286:OF */ extern void malloc_init (char *start, void (*warnfun) (/* ??? */)); /* (start, warnfun) char *start; void (*warnfun)(); */
/* gnumalloc.c:301:OF */ extern int malloc_usable_size (char *mem); /* (mem) char *mem; */
/* gnumalloc.c:461:OF */ /* extern void *malloc (size_t n); */ /* (n) unsigned int n; */
/* gnumalloc.c:529:OF */ /* extern int free (char *mem); */ /* (mem) char *mem; */
/* gnumalloc.c:577:OF */ /* extern char *realloc (char *mem, register unsigned int n); */ /* (mem, n) char *mem; register unsigned int n; */
/* gnumalloc.c:639:OF */ /* extern char *memalign (unsigned int alignment, unsigned int size); */ /* (alignment, size) unsigned int alignment; unsigned int size; */
/* gnumalloc.c:737:OF */ extern int get_lim_data (void); /* () */
/* grab_defs.c:35:OF */ extern int read_some (char *buf, int n, int start_ch, int copy); /* (buf, n, start_ch, copy) char *buf; int n; int start_ch; int copy; */
/* grab_defs.c:71:OF */ /* extern int main (void); */ /* () */
/* iteration.c:457:OF */ extern void gcl_init_iteration (void); /* () */
/* let.c:29:OF */ extern void let_var_list (object var_list); /* (var_list) object var_list; */
/* let.c:321:OF */ extern void gcl_init_let (void); /* () */
/* lex.c:34:OF */ extern object assoc_eq (object key, object alist); /* (key, alist) object key; object alist; */
/* lex.c:47:OF */ extern void lex_fun_bind (object name, object fun); /* (name, fun) object name; object fun; */
/* lex.c:59:OF */ extern void lex_macro_bind (object name, object exp_fun); /* (name, exp_fun) object name; object exp_fun; */
/* lex.c:70:OF */ extern void lex_tag_bind (object tag, object id); /* (tag, id) object tag; object id; */
/* lex.c:82:OF */ extern void lex_block_bind (object name, object id); /* (name, id) object name; object id; */
/* lex.c:95:OF */ extern object lex_tag_sch (object tag); /* (tag) object tag; */
/* lex.c:110:OF */ extern object lex_block_sch (object name); /* (name) object name; */
/* lex.c:125:OF */ extern void gcl_init_lex (void); /* () */
/* littleXwin.c:32:OF */ /* extern Window open_window (void); */ /* () */
/* littleXwin.c:102:OF */ /* extern int close_window (Window the_window); */ /* (the_window) Window the_window; */
/* littleXwin.c:110:OF */ /* extern int draw_line (Window the_window, int x1, int y1, int x2, int y2); */ /* (the_window, x1, y1, x2, y2) Window the_window; int x1; int y1; int x2; int y2; */
/* littleXwin.c:119:OF */ /* extern int draw_arc (Window the_window, int x, int y, int width, int height, int angle1, int angle2); *//* (the_window, x, y, width, height, angle1, angle2) Window the_window; int x; int y; int width; int height; int angle1; int angle2; */
/* littleXwin.c:129:OF */ /* extern int fill_arc (Window the_window, int x, int y, int width, int height, int angle1, int angle2); */ /* (the_window, x, y, width, height, angle1, angle2) Window the_window; int x; int y; int width; int height; int angle1; int angle2; */
/* littleXwin.c:139:OF */ /* extern int clear_arc (Window the_window, int x, int y, int width, int height, int angle1, int angle2); *//* (the_window, x, y, width, height, angle1, angle2) Window the_window; int x; int y; int width; int height; int angle1; int angle2; */
/* littleXwin.c:149:OF */ /* extern int set_arc_mode (int pie_or_chord); */ /* (pie_or_chord) int pie_or_chord; */
/* littleXwin.c:162:OF */ /* extern int erase_line (Window the_window, int x1, int y1, int x2, int y2); *//* (the_window, x1, y1, x2, y2) Window the_window; int x1; int y1; int x2; int y2; */
/* littleXwin.c:171:OF */ /* extern int draw_text (Window the_window, char *string, int x, int y); */ /* (the_window, string, x, y) Window the_window; char *string; int x; int y; */
/* littleXwin.c:182:OF */ /* extern int erase_text (Window the_window, char *string, int x, int y); */ /* (the_window, string, x, y) Window the_window; char *string; int x; int y; */
/* littleXwin.c:193:OF */ /* extern int clear_window (Window the_window); */ /* (the_window) Window the_window; */
/* littleXwin.c:201:OF */ /* extern int resize_window (Window the_window, int width, int height); */ /* (the_window, width, height) Window the_window; int width; int height; */
/* littleXwin.c:210:OF */ /* extern int raise_window (Window the_window); */ /* (the_window) Window the_window; */
/* littleXwin.c:218:OF */ /* extern int use_font (char *font_name); */ /* (font_name) char *font_name; */
/* littleXwin.c:233:OF */ /* extern int set_background (Window the_window, char *color_string); */ /* (the_window, color_string) Window the_window; char *color_string; */
/* littleXwin.c:251:OF */ /* extern int set_foreground (char *color_string); */ /* (color_string) char *color_string; */
/* macros.c:139:OF */ extern object Imacro_expand1 (object exp_fun, object form); /* (exp_fun, form) object exp_fun; object form; */
/* macros.c:173:OF */ extern void Lmacroexpand (void); /* () */
/* macros.c:224:OF */ extern void Lmacroexpand_1 (void); /* () */
/* macros.c:265:OF */ extern object macro_expand (object form); /* (form) object form; */
/* macros.c:344:OF */ extern void gcl_init_macros (void); /* () */
/* main.c:111:OF */ extern int main (int argc, char **argv, char **envp); /* (argc, argv, envp) int argc; char **argv; char **envp; */
/* main.c:346:OF */ extern void install_segmentation_catcher (void); /* () */
/* main.c:359:OF */ extern void error (char *s); /* (s) char *s; */
/* main.c:519:OF */ extern object vs_overflow (void); /* () */
/* main.c:528:OF */ extern void bds_overflow (void); /* () */
/* main.c:537:OF */ extern void frs_overflow (void); /* () */
/* main.c:546:OF */ extern void ihs_overflow (void); /* () */
/* main.c:556:OF */ extern void segmentation_catcher (int); /* () */
/* main.c:587:OF */ extern void Lby (void); /* () */
/* main.c:607:OF */ extern void Lquit(void); /* () */
/* main.c:612:OF */ extern void Lexit(void); /* () */
/* main.c:619:OF */ extern int c_trace (void); /* () */
/* main.c:695:OF */ extern void siLreset_stack_limits (void); /* (arg) int arg; */
/* main.c:797:OF */ extern void Lidentity(void); /* () */
/* main.c:799:OF */ extern object fLidentity (object x0); /* (x0) object x0; */
/* main.c:805:OF */ extern void Llisp_implementation_version(void); /* () */
/* main.c:807:OF */ extern object fLlisp_implementation_version (void); /* () */
/* makefun.c:10:OF */ extern object MakeAfun (object (*addr)(object,object), unsigned int argd, object data); /* (addr, argd, data) int (*addr)(); unsigned int argd; object data; */
/* makefun.c:113:OF */ extern object fSset_key_struct (object key_struct_ind); /* (key_struct_ind) object key_struct_ind; */
/* makefun.c:122:OF */ extern void SI_makefun (char *strg, object (*fn) (/* ??? */), unsigned int argd); /* (strg, fn, argd) char *strg; object (*fn)(); unsigned int argd; */
/* makefun.c:131:OF */ extern void LISP_makefun (char *strg, object (*fn) (/* ??? */), unsigned int argd); /* (strg, fn, argd) char *strg; object (*fn)(); unsigned int argd; */
/* makefun.c:167:OF */ extern object fSinvoke (object x); /* (x) object x; */
/* mapfun.c:324:OF */ extern void gcl_init_mapfun (void); /* () */
/* multival.c:32:OF */ extern void Lvalues (void); /* () */
/* multival.c:37:OF */ extern void Lvalues_list (void); /* () */
/* multival.c:134:OF */ extern void gcl_init_multival (void); /* () */
/* nfunlink.c:190:OF */ extern object IapplyVector (object fun, int nargs, object *base); /* (fun, nargs, base) object fun; int nargs; object *base; */
/* nfunlink.c:269:OF */ extern void Iinvoke_c_function_from_value_stack (object (*f)(), int fargd); /* (f, fargd) object (*f)(); int fargd; */
/* nsocket.c:190:OF */ extern int CreateSocket (int port, char *host, int server, char *myaddr, int myport, int async); /* (port, host, server, myaddr, myport, async) int port; char *host; int server; char *myaddr; int myport; int async; */
/* nsocket.c:329:OF */ extern object fSgetpeername (object sock); /* (sock) object sock; */
/* nsocket.c:353:OF */ extern object fSgetsockname (object sock); /* (sock) object sock; */
/* nsocket.c:385:OF */ extern object fSset_blocking (object sock, object setBlocking); /* (sock, setBlocking) object sock; object setBlocking; */
/* nsocket.c:484:OF */ extern int getOneChar (FILE *fp); /* (fp) FILE *fp; */
/* nsocket.c:539:OF */ extern void ungetCharGclSocket (int c, object strm); /* (c, strm) int c; object strm; */
#ifndef __MINGW32__
/* nsocket.c:592:OF */ extern void tcpCloseSocket (int fd); /* (fd) int fd; */
/* nsocket.c:575:OF */ extern int TcpOutputProc (int fd, char *buf, int toWrite, int *errorCodePtr); /* (fd, buf, toWrite, errorCodePtr) int fd; char *buf; int toWrite; int *errorCodePtr; */
#endif
/* nsocket.c:619:OF */ extern int getCharGclSocket (object strm, object block); /* (strm, block) object strm; object block; */
/* num_arith.c:31:OF */ extern object fixnum_add (fixnum i, fixnum j); /* (i, j) int i; int j; */
/* num_arith.c:48:OF */ extern object fixnum_sub (fixnum i, fixnum j); /* (i, j) int i; int j; */
/* num_arith.c:100:OF */ extern object number_plus (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:246:OF */ extern object one_plus (object x); /* (x) object x; */
/* num_arith.c:292:OF */ extern object number_minus (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:438:OF */ extern object one_minus (object x); /* (x) object x; */
/* num_arith.c:478:OF */ extern object number_negate (object x); /* (x) object x; */
/* num_arith.c:520:OF */ extern object number_times (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:670:OF */ extern object number_divide (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:818:OF */ extern object integer_divide1 (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:828:OF */ extern object get_gcd (object x, object y); /* (x, y) object x; object y; */
/* num_arith.c:873:OF */ extern void Lplus (void); /* () */
/* num_arith.c:889:OF */ extern void Lminus (void); /* () */
/* num_arith.c:907:OF */ extern void Ltimes (void); /* () */
/* num_arith.c:923:OF */ extern void Ldivide (void); /* () */
/* num_arith.c:1029:OF */ extern void gcl_init_num_arith (void); /* () */
/* num_co.c:292:OF */ extern object double_to_integer (double d); /* (d) double d; */
/* num_co.c:372:OF */ extern void Lfloat (void); /* () */
/* num_co.c:424:OF */ extern void Lnumerator (void); /* () */
/* num_co.c:432:OF */ extern void Ldenominator (void); /* () */
/* num_co.c:442:OF */ extern void Lfloor (void); /* () */
/* num_co.c:563:OF */ extern void Lceiling (void); /* () */
/* num_co.c:684:OF */ extern void Ltruncate (void); /* () */
/* num_co.c:766:OF */ extern void Lround (void); /* () */
/* num_co.c:896:OF */ extern void Lmod (void); /* () */
/* num_co.c:987:OF */ extern void Lfloat_radix (void); /* () */
/* num_co.c:1089:OF */ extern void Linteger_decode_float (void); /* () */
/* num_co.c:1114:OF */ extern void Lcomplex (void); /* () */
/* num_co.c:1136:OF */ extern void Lrealpart (void); /* () */
/* num_co.c:1147:OF */ extern void Limagpart (void); /* () */
/* num_co.c:1185:OF */ extern void gcl_init_num_co (void); /* () */
/* num_comp.c:40:OF */ extern int number_compare (object x, object y); /* (x, y) object x; object y; */
/* num_comp.c:269:OF */ extern void Lmonotonically_increasing (void); /* () */
/* num_comp.c:271:OF */ extern void Lmonotonically_nondecreasing (void); /* () */
/* num_comp.c:272:OF */ extern void Lmonotonically_nonincreasing (void); /* () */
/* num_comp.c:292:OF */ extern void Lmin (void); /* () */
/* num_comp.c:309:OF */ extern void gcl_init_num_comp (void); /* () */
/* num_log.c:224:OF */ extern object shift_integer (object x, int w); /* (x, w) object x; int w; */
/* num_log.c:258:OF */ extern void Llogior (void); /* () */
/* num_log.c:279:OF */ extern void Llogxor (void); /* () */
/* num_log.c:299:OF */ extern void Llogand (void); /* () */
/* num_log.c:339:OF */ extern void Lboole (void); /* () */
/* num_log.c:380:OF */ extern void Llogbitp (void); /* () */
/* num_log.c:420:OF */ extern void Lash (void); /* () */
/* num_log.c:482:OF */ extern void Linteger_length (void); /* () */
/* num_log.c:549:OF */ extern void gcl_init_num_log (void); /* () */
/* num_log.c:585:OF */ extern void siLbit_array_op (void); /* () */
/* num_pred.c:31:OF */ extern int number_zerop (object x); /* (x) object x; */
/* num_pred.c:67:OF */ extern int number_plusp (object x); /* (x) object x; */
/* num_pred.c:107:OF */ extern int number_minusp (object x); /* (x) object x; */
/* num_pred.c:147:OF */ extern int number_oddp (object x); /* (x) object x; */
/* num_pred.c:161:OF */ extern int number_evenp (object x); /* (x) object x; */
/* num_pred.c:240:OF */ extern void gcl_init_num_pred (void); /* () */
/* num_rand.c:111:OF */ extern void Lrandom (void); /* () */
/* num_rand.c:151:OF */ extern void gcl_init_num_rand (void); /* () */
/* num_sfun.c:91:OF */ extern object number_expt (object x, object y); /* (x, y) object x; object y; */
/* num_sfun.c:453:OF */ extern void Lexp (void); /* () */
/* num_sfun.c:469:OF */ extern void Llog (void); /* () */
/* num_sfun.c:488:OF */ extern void Lsqrt (void); /* () */
/* num_sfun.c:495:OF */ extern void Lsin (void); /* () */
/* num_sfun.c:502:OF */ extern void Lcos (void); /* () */
/* num_sfun.c:516:OF */ extern void Latan (void); /* () */
/* num_sfun.c:535:OF */ extern void gcl_init_num_sfun (void); /* () */
/* number.c:35:OF */ extern long int fixint (object x); /* (x) object x; */
/* number.c:44:OF */ extern int fixnnint (object x); /* (x) object x; */
/* number.c:59:OF */ extern object fSallocate_bigger_fixnum_range (fixnum min,fixnum max); /* (min, max) int min; int max; */
/* number.c:81:OF */ extern object make_fixnum1 (long i); /* (i) int i; */
/* number.c:102:OF */ extern object make_ratio (object num, object den); /* (num, den) object num; object den; */
/* number.c:144:OF */ extern object make_shortfloat (double f); /* (f) double f; */
/* number.c:157:OF */ extern object make_longfloat (longfloat f); /* (f) longfloat f; */
/* number.c:170:OF */ extern object make_complex (object r, object i); /* (r, i) object r; object i; */
/* number.c:229:OF */ extern double number_to_double (object x); /* (x) object x; */
/* number.c:254:OF */ extern void gcl_init_number (void); /* () */
/* peculiar.c:14:OF */ /* extern int main (void); */ /* () */
/* predicate.c:35:OF */ extern object fLnot (object x0); /* (x0) object x0; */
/* predicate.c:46:OF */ extern void Lsymbolp (void); /* () */
/* predicate.c:48:OF */ extern object fLsymbolp (object x0); /* (x0) object x0; */
/* predicate.c:61:OF */ extern object fLatom (object x0); /* (x0) object x0; */
/* predicate.c:74:OF */ extern object fLconsp (object x0); /* (x0) object x0; */
/* predicate.c:87:OF */ extern object fLlistp (object x0); /* (x0) object x0; */
/* predicate.c:100:OF */ extern object fLnumberp (object x0); /* (x0) object x0; */
/* predicate.c:117:OF */ extern object fLintegerp (object x0); /* (x0) object x0; */
/* predicate.c:132:OF */ extern object fLrationalp (object x0); /* (x0) object x0; */
/* predicate.c:148:OF */ extern object fLrealp (object x0); /* (x0) object x0; */
/* predicate.c:164:OF */ extern object fLfloatp (object x0); /* (x0) object x0; */
/* predicate.c:176:OF */ extern void Lcomplexp (void); /* () */
/* predicate.c:178:OF */ extern object fLcomplexp (object x0); /* (x0) object x0; */
/* predicate.c:190:OF */ extern object fLcharacterp (object x0); /* (x0) object x0; */
/* predicate.c:202:OF */ extern object fLstringp (object x0); /* (x0) object x0; */
/* predicate.c:214:OF */ extern object fLbit_vector_p (object x0); /* (x0) object x0; */
/* predicate.c:226:OF */ extern object fLvectorp (object x0); /* (x0) object x0; */
/* predicate.c:238:OF */ extern void Lsimple_string_p (void); /* () */
/* predicate.c:240:OF */ extern object fLsimple_string_p (object x0); /* (x0) object x0; */
/* predicate.c:253:OF */ extern void Lsimple_bit_vector_p (void); /* () */
/* predicate.c:255:OF */ extern object fLsimple_bit_vector_p (object x0); /* (x0) object x0; */
/* predicate.c:268:OF */ extern void Lsimple_vector_p (void); /* () */
/* predicate.c:270:OF */ extern object fLsimple_vector_p (object x0); /* (x0) object x0; */
/* predicate.c:288:OF */ extern object fLarrayp (object x0); /* (x0) object x0; */
/* predicate.c:301:OF */ extern void Lpackagep (void); /* () */
/* predicate.c:303:OF */ extern object fLpackagep (object x0); /* (x0) object x0; */
/* predicate.c:313:OF */ extern void Lfunctionp (void); /* () */
/* predicate.c:315:OF */ extern object fLfunctionp (object x0); /* (x0) object x0; */
/* predicate.c:344:OF */ extern void Lcompiled_function_p (void); /* () */
/* predicate.c:346:OF */ extern object fLcompiled_function_p (object x0); /* (x0) object x0; */
/* predicate.c:367:OF */ extern object fLcommonp (object x0); /* (x0) object x0; */
/* predicate.c:379:OF */ extern object fLeq (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* predicate.c:393:OF */ extern int eql (object x, object y); /* (x, y) object x; object y; */
/* predicate.c:455:OF */ extern object fLeql (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* predicate.c:469:OF */ extern int equal (register object x, register object y); /* (x, y) register object x; register object y; */
/* predicate.c:543:OF */ extern object fLequal (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* predicate.c:557:OF */ extern bool equalp (object x, object y); /* (x, y) object x; object y; */
/* predicate.c:681:OF */ extern object fLequalp (object x0, object x1); /* (x0, x1) object x0; object x1; */
/* predicate.c:750:OF */ extern bool contains_sharp_comma (object x); /* (x) object x; */
/* predicate.c:797:OF */ extern object fScontains_sharp_comma (object x0); /* (x0) object x0; */
/* predicate.c:810:OF */ extern object fSspicep (object x0); /* (x0) object x0; */
/* predicate.c:822:OF */ extern object fSfixnump (object x0); /* (x0) object x0; */
/* predicate.c:833:OF */ extern void gcl_init_predicate_function (void); /* () */
/* prog.c:48:OF */ extern void Ftagbody (object body); /* (body) object body; */
/* prog.c:246:OF */ extern void Fprogn (object body); /* (body) object body; */
/* prog.c:303:OF */ extern void gcl_init_prog (void); /* () */
/* reference.c:32:OF */ extern void Lfboundp (void); /* () */
/* reference.c:49:OF */ extern object symbol_function (object sym); /* (sym) object sym; */
/* reference.c:69:OF */ extern void Lsymbol_function (void); /* () */
/* reference.c:143:OF */ extern void Lsymbol_value (void); /* () */
/* reference.c:156:OF */ extern void Lboundp (void); /* () */
/* reference.c:169:OF */ extern void Lmacro_function (void); /* () */
/* reference.c:180:OF */ extern void Lspecial_form_p (void); /* () */
/* reference.c:191:OF */ extern void gcl_init_reference (void); /* () */
/* #include "regexp.h" */
/* regexp.c:1588:OF */ extern void regerror (char *s); /* (s) char *s; */
/* regexpr.c:48:OF */ extern object fSmatch_beginning (fixnum i); /* (i) int i; */
/* regexpr.c:57:OF */ extern object fSmatch_end (fixnum i); /* (i) int i; */
/* save.c:17:OF */ extern void Lsave (void); /* () */
#include <unistd.h>
/* sbrk.c:9:OF */ /* extern void * sbrk (int n); */ /* (n) int n; */
/* strcspn.c:3:OF */ /* extern size_t strcspn (const char *s1, const char *s2); */ /* (s1, s2) char *s1; char *s2; */
/* structure.c:59:OF */ extern object structure_ref (object x, object name, int i); /* (x, name, i) object x; object name; int i; */
/* structure.c:107:OF */ extern object structure_set (object x, object name, int i, object v); /* (x, name, i, v) object x; object name; int i; object v; */
/* structure.c:164:OF */ extern object structure_to_list (object x); /* (x) object x; */
/* structure.c:188:OF */ extern void siLmake_structure (void); /* () */
/* structure.c:281:OF */ extern void siLstructure_set (void); /* () */
/* structure.c:326:OF */ extern void siLlist_nth (void); /* () */
/* structure.c:439:OF */ extern void gcl_init_structure_function (void); /* () */
/* toplevel.c:211:OF */ extern void gcl_init_toplevel (void); /* () */
/* typespec.c:38:OF */ extern void check_type_integer (object *p); /* (p) object *p; */
/* typespec.c:47:OF */ extern void check_type_non_negative_integer (object *p); /* (p) object *p; */
/* typespec.c:65:OF */ extern void check_type_rational (object *p); /* (p) object *p; */
/* typespec.c:75:OF */ extern void check_type_float (object *p); /* (p) object *p; */
/* typespec.c:94:OF */ extern void check_type_or_rational_float (object *p); /* (p) object *p; */
/* typespec.c:104:OF */ extern void check_type_number (object *p); /* (p) object *p; */
/* typespec.c:123:OF */ extern void check_type_character (object *p); /* (p) object *p; */
/* typespec.c:139:OF */ extern void check_type_symbol (object *p); /* (p) object *p; */
/* typespec.c:146:OF */ extern void check_type_or_symbol_string (object *p); /* (p) object *p; */
/* typespec.c:153:OF */ extern void check_type_or_string_symbol (object *p); /* (p) object *p; */
/* typespec.c:170:OF */ extern void check_type_package (object *p); /* (p) object *p; */
/* typespec.c:177:OF */ extern void check_type_string (object *p); /* (p) object *p; */
/* typespec.c:191:OF */ extern void check_type_cons (object *p); /* (p) object *p; */
/* typespec.c:198:OF */ extern void check_type_stream (object *p); /* (p) object *p; */
/* typespec.c:205:OF */ extern void check_type_readtable (object *p); /* (p) object *p; */
/* typespec.c:213:OF */ extern void check_type_or_Pathname_string_symbol (object *p); /* (p) object *p; */
/* typespec.c:225:OF */ extern void check_type_or_pathname_string_symbol_stream (object *p); /* (p) object *p; */
/* typespec.c:236:OF */ extern void check_type_random_state (object *p); /* (p) object *p; */
/* typespec.c:243:OF */ extern void check_type_hash_table (object *p); /* (p) object *p; */
/* typespec.c:250:OF */ extern void check_type_array (object *p); /* (p) object *p; */
/* typespec.c:284:OF */ extern void check_type (object x, int t); /* (x, t) object x; int t; */
/* typespec.c:294:OF */ extern void Ltype_of (void); /* () */
/* typespec.c:493:OF */ extern void gcl_init_typespec (void); /* () */
/* typespec.c:497:OF */ extern void gcl_init_typespec_function (void); /* () */
/* unexec-19.29.c:1016:OF */ extern int write_segment (int new, register char *ptr, register char *end); /* (new, ptr, end) int new; register char *ptr; register char *end; */
/* unexec.c:1016:OF */ extern int write_segment (int new, register char *ptr, register char *end); /* (new, ptr, end) int new; register char *ptr; register char *end; */
/* unexlin.c:808:OF */ extern int write_segment (int new, register char *ptr, register char *end); /* (new, ptr, end) int new; register char *ptr; register char *end; */
/* unixfasl.c:409:OF */ extern void gcl_init_unixfasl (void); /* () */
/* unixfsys.c:145:OF */ extern char *getwd (char *buffer); /* (buffer) char *buffer; */
/* unixfsys.c:209:OF */ extern void coerce_to_filename (object pathname, char *p); /* (pathname, p) object pathname; char *p; */
/* unixfsys.c:329:OF */ extern bool file_exists (object file); /* (file) object file; */
/* unixfsys.c:359:OF */ extern FILE *backup_fopen (char *filename, char *option); /* (filename, option) char *filename; char *option; */
/* unixfsys.c:359:OF */ extern FILE *fopen_not_dir (char *filename, char *option); /* (filename, option) char *filename; char *option; */
/* unixfsys.c:372:OF */ extern int file_len (FILE *fp); /* (fp) FILE *fp; */
/* unixfsys.c:382:OF */ extern object truename (object); /* () */
/* unixfsys.c:382:OF */ extern void Ltruename (void); /* () */
/* unixfsys.c:418:OF */ extern object fSsetenv (object variable, object value); /* (variable, value) object variable; object value; */
/* unixfsys.c:442:OF */ extern object fLdelete_file (object path); /* (path) object path; */
/* unixfsys.c:456:OF */ extern void Lprobe_file (void); /* () */
/* unixfsys.c:533:OF */ extern void Ldirectory (void); /* () */
/* unixfsys.c:777:OF */ extern void gcl_init_unixfsys (void); /* () */
/* unixsave.c:173:OF */ extern void gcl_init_unixsave (void); /* () */
/* unixsys.c:83:OF */ extern object fSgetpid (void); /* () */
/* unixsys.c:87:OF */ extern void gcl_init_unixsys (void); /* () */
/* unixtime.c:67:OF */ extern int runtime (void); /* () */
/* unixtime.c:82:OF */ extern object unix_time_to_universal_time (int i); /* (i) int i; */
/* unixtime.c:99:OF */ extern object fLget_universal_time (void); /* () */
/* unixtime.c:144:OF */ extern object fLget_internal_real_time (void); /* () */
/* unixtime.c:173:OF */ extern void gcl_init_unixtime (void); /* () */
/* user_init.c:2:OF */ extern object user_init (void); /* () */
/* user_init.c:2:OF */ extern int user_match (const char *,int n); /* () */
/* usig.c:49:OF */ extern void gcl_signal (int signo, void (*handler) (/* ??? */)); /* (signo, handler) int signo; void (*handler)(); */
/* usig.c:92:OF */ extern int unblock_signals (int n, int m); /* (n, m) int n; int m; */
/* usig.c:119:OF */ extern void unblock_sigusr_sigio (void); /* () */
/* usig.c:182:OF */ extern void install_default_signals (void); /* () */
/* usig2.c:142:OF */ extern void gcl_init_safety (void); /* () */
/* usig2.c:158:OF */ extern object sSsignal_safety_required (fixnum signo,fixnum safety); /* (signo, safety) int signo; int safety; */
#ifdef __MINGW32__
/* usig2.c:167:OF */ extern void main_signal_handler (int signo); /* (signo) int signo */
#else
/* usig2.c:167:OF */ extern void main_signal_handler (int signo, int a, int b); /* (signo, a, b) int signo; int a; int b; */
#endif
/* usig2.c:375:OF */ extern void raise_pending_signals (int cond); /* (cond) int cond; */
/* usig2.c:407:OF */ extern object fSallow_signal (fixnum n); /* (n) int n; */
/* utils.c:12:OF */ extern object IisSymbol (object f); /* (f) object f; */
/* utils.c:20:OF */ extern object IisFboundp (object f); /* (f) object f; */
/* utils.c:30:OF */ extern object IisArray (object f); /* (f) object f; */
/* utils.c:44:OF */ extern object Iis_fixnum (object f); /* (f) object f; */
/* utils.c:61:OF */ extern object Iapply_ap_new (object (*f) (/* ??? */), object first, va_list ap); /* (f, ap) object (*f)(); va_list ap; */
/* utils.c:178:OF */ extern object Icheck_one_type (object x, enum type t); /* (x, t) object x; enum type t; */
/* utils.c:189:OF */ extern object fSincorrect_type (object val, object type); /* (val, type) object val; object type; */
/* utils.c:202:OF */ extern object Ivs_values (void); /* () */
/* utils.c:227:OF */ extern char *lisp_copy_to_null_terminated (object string, char *buf, int n); /* (string, buf, n) object string; char *buf; int n; */
/* readline.d */
extern int readline_on;
void
gcl_init_readline_function(void);
/* sys_gcl.c */
void
gcl_init_init(void);
/* misc */
void
gcl_init_symbol(void);
void
gcl_init_package(void);
void
gcl_init_character(void);
void
gcl_init_read(void);
void
gcl_init_pathname(void);
void
gcl_init_print(void);
void
gcl_init_character_function(void);
void
gcl_init_file_function(void);
void
gcl_init_list_function(void);
void
gcl_init_package_function(void);
void
gcl_init_pathname_function(void);
void
gcl_init_print_function(void);
void
gcl_init_read_function(void);
void
gcl_init_sequence_function(void);
void
gcl_init_string_function(void);
void
gcl_init_symbol_function(void);
void
gcl_init_socket_function(void);
void
gcl_init_hash(void);
void
import(object,object);
void
export(object,object);
void
NewInit(void);
void
gcl_init_system(object);
void
set_up_string_register(char *);
bool
endp1(object);
void
stack_cons(void);
bool
char_equal(object,object);
bool
string_equal(object,object);
bool
string_eq(object,object);
bool
remf(object *,object);
bool
keywordp(object);
int
pack_hash(object);
void
load(const char *);
bool
member_eq(object,object);
void
delete_eq(object,object *);
int
length(object);
int
rl_getc_em(FILE *);
void
setupPRINTdefault(object);
void
write_str(char *);
void
write_object(object,int);
void
cleanupPRINT(void);
int
fasload(object);
int
readc_stream(object);
void
unreadc_stream(int,object);
void
end_of_stream(object);
bool
stream_at_end(object);
int
digitp(int,int);
bool
char_eq(object,object);
bool
listen_stream(object);
void
get_string_start_end(object,object,object,int *,int *);
int
file_column(object);
int
writec_stream(int,object);
int
digit_weight(int,int);
void
flush_stream(object);
void
writestr_stream(char *,object);
void
write_string(object,object);
void
edit_double(int, double, int *, char *, int *);
void
sethash(object,object,object);
int
file_position(object);
int
file_position_set(object, int);
void
princ_str(char *s, object);
void
close_stream(object);
void
build_symbol_table(void);
void
gcl_init_file(void);
object
aset1(object,fixnum,object);
void
dfprintf(FILE *,char *,...);
void
Lmake_list(void);
void
Llast(void);
void
Lgensym(void);
void
Lldiff(void);
void
Lintern(void);
void
Lgensym(void);
void
Lldiff(void);
void
Lgensym(void);
void
Lintern(void);
void
Lintern(void);
void
Lreconc(void);
void
Lmember(void);
void
Ladjoin(void);
void
Llist(void);
void
Lappend(void);
void
Lread(void);
void
Lread_char(void);
void
Lchar_eq(void);
void
Lwrite_char(void);
void
Lforce_output(void);
void
Lchar_neq(void);
void
Llist(void);
void
Lwrite(void);
void
Lfresh_line(void);
void
Lsymbol_package(void);
void
Lfind_package(void);
void
Lfind_symbol(void);
void
Lpackage_name(void);
void
Lsymbol_plist(void);
void
Lpackage_nicknames(void);
void
Lpackage_use_list(void);
void
Lpackage_used_by_list(void);
void
Lstandard_char_p(void);
void
Lstring_char_p(void);
void
Lchar_code(void);
void
Lchar_bits(void);
void
Lchar_font(void);
void
Lread_line(void);
void
siLpackage_internal(void);
void
siLpackage_external(void);
void
Llist_all_packages(void);
void
Lgensym(void);
void
Lread(void);
void
Lwrite(void);
void
Lstring_equal(void);
void
Lclose(void);
void
Lnamestring(void);
void
Lmake_echo_stream(void);
void
Lmake_broadcast_stream(void);
void
Lmake_two_way_stream(void);
void
Lbutlast(void);
void
Ladjoin(void);
void
Lstring_downcase(void);
void
Lmember(void);
void
Lgensym(void);
void
Llist_all_packages(void);
void
Lfind_symbol(void);
void
Lstring_equal(void);
void
Lfind_package(void);
void
siLpackage_internal(void);
void
siLpackage_external(void);
void
Lpackage_use_list(void);
void
Lreconc(void);
void
Lstandard_char_p(void);
void
Lstring_char_p(void);
void
Lcharacter(void);
void
Llength(void);
void
Lreconc(void);
void
Llength(void);
void
Lgensym(void);
void
Llist_length(void);
void
Lgensym(void);
void
Lbutlast(void);
void
Lnconc(void);
void
Lfind_package(void);
void
Lpackage_name(void);
void
Llist(void);
void
Lfresh_line(void);
void
Lread_char(void);
void
Lunread_char(void);
void
Lread_line(void);
void
Lread(void);
void
Lforce_output(void);
void
Lwrite(void);
void
Lmember(void);
void
siLpackage_internal(void);
void
siLpackage_external(void);
void
Lmake_pathname(void);
void
Lnamestring(void);
void
Lclose(void);
void
Lgensym(void);
void
Lfresh_line(void);
void
Llist(void);
void
Lread_char(void);
void
Lchar_eq(void);
void
Lfinish_output(void);
void
Lchar_neq(void);
void
Lwrite(void);
void
Lgensym(void);
void
Lmember(void);
void
Lappend(void);
void
Lcopy_tree(void);
void
Ladjoin(void);
void
Lgetf(void);
void
Lsubst(void);
void
Lsymbol_package(void);
void
Lcopy_list(void);
void
Lintern(void);
void
Lfind_package(void);
void
LlistA(void);
void
Llist(void);
void
Lgetf(void);
void
Lstreamp(void);
void
Lpeek_char(void);
void
Lread_char(void);
void
Lread_line(void);
void
Lset_macro_character(void);
void
Lclrhash(void);
void
siLhash_set(void);
void
Lgethash(void);
void
Lremhash(void);
void
Llist_all_packages(void);
void
Lintern(void);
void
Lunintern(void);
void
Lsubseq(void);
void
Lsymbol_package(void);
void
Lfind_package(void);
void
siLpackage_internal(void);
void
siLpackage_external(void);
void
Lread_char(void);
void
Lfile_length(void);
void
Lfile_position(void);
void
Lclose(void);
void
Lsubseq(void);
void
Lnamestring(void);
void
Lmerge_pathnames(void);
void
Lcopy_list(void);
void
Lread_line(void);
void
Lgensym(void);
void
Lcopy_list(void);
void
Lintern(void);
void
Lappend(void);
void
Lgensym(void);
void
Lcopy_list(void);
void
Lmember(void);
void
Lintern(void);
void
Lappend(void);
void
Lfind_package(void);
void
Lpackage_name(void);
void
Lpackage_nicknames(void);
void
Lpackage_use_list(void);
void
siLpackage_external(void);
void
siLpackage_internal(void);
void
Lsymbol_package(void);
void
Lappend(void);
void
Lgentemp(void);
void
Lgensym(void);
void
Lassoc(void);
void
Ladjoin(void);
void
Lstring_eq(void);
void
Lmember(void);
void
Lgethash(void);
void
Lfinish_output(void);
void
Lread(void);
void
Lmake_hash_table(void);
void
siLhash_set(void);
void
Lrevappend(void);
void
Lreconc(void);
void
Lcopy_list(void);
void
LlistA(void);
void
Lfind_package(void);
void
siLpackage_internal(void);
void
siLpackage_external(void);
void
princ_char(int,object);
void
Ldigit_char_p(void);
void
Lwrite_byte(void);
void
unlink_loaded_files(void);
void
FEpackage_error(object,const char *s);
int
system_time_zone_helper(void);
object
call_proc_new(object,void **,int,object,va_list);
object
call_vproc_new(object,void *,object,va_list);
void
funcall_with_catcher(object, object);
void
siLset_symbol_plist(void);
void
Lhash_table_p(void);
void
Lreadtablep(void);
int
fixnum_expt(int, int);
void
check_alist(object);
void
ck_larg_at_least(int,object);
void
vfun_wrong_number_of_args(object);
/* FIXME from lfun_list.lsp -- should be automatically generated */
void Lgensym(void);
void Lsubseq(void);
void Lminusp(void);
void Linteger_decode_float(void);
void Lminus(void);
void Lint_char(void);
void Lchar_int(void);
void Lall_different(void);
void Lcopy_seq(void);
void Lkeywordp(void);
void Lname_char(void);
void Lchar_name(void);
void Lrassoc_if(void);
void Lmake_list(void);
void Lhost_namestring(void);
void Lmake_echo_stream(void);
void Lnth(void);
void Lsin(void);
void Lnumerator(void);
void Larray_rank(void);
void Lcaar(void);
void Lboth_case_p(void);
void Lnull(void);
void Lrename_file(void);
void Lfile_author(void);
void Lstring_capitalize(void);
void Lmacroexpand(void);
void Lnconc(void);
void Lboole(void);
void Ltailp(void);
void Lconsp(void);
void Llistp(void);
void Lmapcan(void);
void Llength(void);
void Lrassoc(void);
void Lpprint(void);
void Lpathname_host(void);
void Lnsubst_if_not(void);
void Lfile_position(void);
void Lstring_l(void);
void Lreverse(void);
void Lstreamp(void);
void siLputprop(void);
void Lremprop(void);
void Lsymbol_package(void);
void Lnstring_upcase(void);
void Lstring_ge(void);
void Lrealpart(void);
void Lnbutlast(void);
void Larray_dimension(void);
void Lcdr(void);
void Leql(void);
void Llog(void);
void Ldirectory(void);
void Lstring_not_equal(void);
void Lshadowing_import(void);
void Lmapc(void);
void Lmapl(void);
void Lmakunbound(void);
void Lcons(void);
void Llist(void);
void Luse_package(void);
void Lfile_length(void);
void Lmake_symbol(void);
void Lstring_right_trim(void);
void Lenough_namestring(void);
void Lprint(void);
void Lcddaar(void);
void Lcdadar(void);
void Lcdaadr(void);
void Lcaddar(void);
void Lcadadr(void);
void Lcaaddr(void);
void Lset_macro_character(void);
void Lforce_output(void);
void Lnthcdr(void);
void Llogior(void);
void Lchar_downcase(void);
void Lstring_char_p(void);
void Lstream_element_type(void);
void Lpackage_used_by_list(void);
void Ldivide(void);
void Lmaphash(void);
void Lstring_eq(void);
void Lpairlis(void);
void Lsymbolp(void);
void Lchar_not_lessp(void);
void Lone_plus(void);
void Lby(void);
void Lnsubst_if(void);
void Lcopy_list(void);
void Ltan(void);
void Lset(void);
void Lfunctionp(void);
void Lwrite_byte(void);
void Llast(void);
void Lmake_string(void);
void Lcaaar(void);
void Llist_length(void);
void Lcdddr(void);
void Lprin1(void);
void Lprinc(void);
void Llower_case_p(void);
void Lchar_le(void);
void Lstring_equal(void);
void Lclear_output(void);
void CERROR(void);
void Lterpri(void);
void Lnsubst(void);
void Lunuse_package(void);
void Lstring_not_greaterp(void);
void Lstring_g(void);
void Lfinish_output(void);
void Lspecial_form_p(void);
void Lstringp(void);
void Lget_internal_run_time(void);
void Ltruncate(void);
void Lcode_char(void);
void Lchar_code(void);
void Lsimple_string_p(void);
void Lrevappend(void);
void Lhash_table_count(void);
void Lpackage_use_list(void);
void Lrem(void);
void Lmin(void);
void Lapplyhook(void);
void Lexp(void);
void Lchar_lessp(void);
void Lcdar(void);
void Lcadr(void);
void Llist_all_packages(void);
void Lcdr(void);
void Lcopy_symbol(void);
void Lacons(void);
void Ladjustable_array_p(void);
void Lsvref(void);
void Lapply(void);
void Ldecode_float(void);
void Lsubst_if_not(void);
void Lrplaca(void);
void Lsymbol_plist(void);
void Lwrite_string(void);
void Llogeqv(void);
void Lstring(void);
void Lstring_upcase(void);
void Lceiling(void);
void Lgethash(void);
void Ltype_of(void);
void Lbutlast(void);
void Lone_minus(void);
void Lmake_hash_table(void);
void Lstring_neq(void);
void Lmonotonically_nondecreasing(void);
void Lmake_broadcast_stream(void);
void Limagpart(void);
void Lintegerp(void);
void Lread_char(void);
void Lpeek_char(void);
void Lchar_font(void);
void Lstring_greaterp(void);
void Loutput_stream_p(void);
void Lash(void);
void Llcm(void);
void Lelt(void);
void Lcos(void);
void Lnstring_downcase(void);
void Lcopy_alist(void);
void Latan(void);
void Ldelete_file(void);
void Lfloat_radix(void);
void Lsymbol_name(void);
void Lclear_input(void);
void Lfind_symbol(void);
void Lchar_l(void);
void Lhash_table_p(void);
void Levenp(void);
void siLcmod(void);
void siLcplus(void);
void siLctimes(void);
void siLcdifference(void);
void Lzerop(void);
void Lcaaaar(void);
void Lchar_ge(void);
void Lcdddar(void);
void Lcddadr(void);
void Lcdaddr(void);
void Lcadddr(void);
void Lfill_pointer(void);
void Lmapcar(void);
void Lfloatp(void);
void Lshadow(void);
void Lmacroexpand_1(void);
void Lsxhash(void);
void Llisten(void);
void Larrayp(void);
void Lmake_pathname(void);
void Lpathname_type(void);
void Lfuncall(void);
void Lclrhash(void);
void Lgraphic_char_p(void);
void Lfboundp(void);
void Lnsublis(void);
void Lchar_not_equal(void);
void Lmacro_function(void);
void Lsubst_if(void);
void Lcomplexp(void);
void Lread_line(void);
void Lpathnamep(void);
void Lmax(void);
void Lin_package(void);
void Lreadtablep(void);
void Lfloat_sign(void);
void Lcharacterp(void);
void Lread(void);
void Lnamestring(void);
void Lunread_char(void);
void Lcdaar(void);
void Lcadar(void);
void Lcaadr(void);
void Lchar_eq(void);
void Lalpha_char_p(void);
void Lstring_trim(void);
void Lmake_package(void);
void Lclose(void);
void Ldenominator(void);
void Lfloat(void);
void Lcar(void);
void Lround(void);
void Lsubst(void);
void Lupper_case_p(void);
void Larray_element_type(void);
void Ladjoin(void);
void Llogand(void);
void Lmapcon(void);
void Lintern(void);
void Lvalues(void);
void Lexport(void);
void Ltimes(void);
void Lmonotonically_increasing(void);
void Lcomplex(void);
void Lset_syntax_from_char(void);
void Lchar_bit(void);
void Linteger_length(void);
void Lpackagep(void);
void Linput_stream_p(void);
void Lmonotonically_nonincreasing(void);
void Lpathname(void);
void Leq(void);
void Lmake_char(void);
void Lfile_namestring(void);
void Lcharacter(void);
void Lsymbol_function(void);
void Lconstantp(void);
void Lchar_equal(void);
void Ltree_equal(void);
void Lcddr(void);
void Lgetf(void);
void Lsave(void);
void Lmake_random_state(void);
void Lchar_not_greaterp(void);
void Lexpt(void);
void Lsqrt(void);
void Lscale_float(void);
void Lchar_g(void);
void Lldiff(void);
void Lassoc_if_not(void);
void Lbit_vector_p(void);
void Lnstring_capitalize(void);
void Lsymbol_value(void);
void Lrplacd(void);
void Lboundp(void);
void Lequalp(void);
void Lsimple_bit_vector_p(void);
void Lmember_if_not(void);
void Lmake_two_way_stream(void);
void Lparse_integer(void);
void Lplus(void);
void Lall_the_same(void);
void Lgentemp(void);
void Lrename_package(void);
void Lcommonp(void);
void Lnumberp(void);
void Lcopy_readtable(void);
void Lrandom_state_p(void);
void Ldirectory_namestring(void);
void Lstandard_char_p(void);
void Ltruename(void);
void Lidentity(void);
void Lnreverse(void);
void Lpathname_device(void);
void Lunintern(void);
void Lunexport(void);
void Lfloat_precision(void);
void Lstring_downcase(void);
void Lcar(void);
void Lconjugate(void);
void Lnull(void);
void Lread_char_no_hang(void);
void Lfresh_line(void);
void Lwrite_char(void);
void Lparse_namestring(void);
void Lstring_not_lessp(void);
void Lchar(void);
void Laref(void);
void Lpackage_nicknames(void);
void Lendp(void);
void Loddp(void);
void Lchar_upcase(void);
void LlistA(void);
void Lvalues_list(void);
void Lequal(void);
void Ldigit_char_p(void);
void ERROR(void);
void Lchar_neq(void);
void Lpathname_directory(void);
void Lcdaaar(void);
void Lcadaar(void);
void Lcaadar(void);
void Lcaaadr(void);
void Lcddddr(void);
void Lget_macro_character(void);
void Lformat(void);
void Lcompiled_function_p(void);
void Lsublis(void);
void Lpathname_name(void);
void Limport(void);
void Llogxor(void);
void Lrassoc_if_not(void);
void Lchar_greaterp(void);
void Lmake_synonym_stream(void);
void Lalphanumericp(void);
void Lremhash(void);
void Lreconc(void);
void Lmonotonically_decreasing(void);
void Llogbitp(void);
void Lmaplist(void);
void Lvectorp(void);
void Lassoc_if(void);
void Lget_properties(void);
void Lstring_le(void);
void Levalhook(void);
void Lfile_write_date(void);
void Llogcount(void);
void Lmerge_pathnames(void);
void Lmember_if(void);
void Lread_byte(void);
void Lsimple_vector_p(void);
void Lchar_bits(void);
void Lcopy_tree(void);
void Lgcd(void);
void Lby(void);
void Lget(void);
void Lmod(void);
void Ldigit_char(void);
void Lprobe_file(void);
void Lstring_left_trim(void);
void Lpathname_version(void);
void Lwrite_line(void);
void Leval(void);
void Latom(void);
void Lcddar(void);
void Lcdadr(void);
void Lcaddr(void);
void Lfmakunbound(void);
void Lsleep(void);
void Lpackage_name(void);
void Lfind_package(void);
void Lassoc(void);
void Lset_char_bit(void);
void Lfloor(void);
void Lwrite(void);
void Lplusp(void);
void Lfloat_digits(void);
void Lread_delimited_list(void);
void Lappend(void);
void Lmember(void);
void Lstring_lessp(void);
void Lrandom(void);
void siLspecialp(void);
void siLoutput_stream_string(void);
void siLstructurep(void);
void siLcopy_stream(void);
void siLinit_system(void);
void siLstring_to_object(void);
void siLreset_stack_limits(void);
void siLdisplaced_array_p(void);
void siLrplaca_nthcdr(void);
void siLlist_nth(void);
void siLmake_vector(void);
void siLaset(void);
void siLsvset(void);
void siLfill_pointer_set(void);
void siLreplace_array(void);
void siLfset(void);
void siLhash_set(void);
void Lboole(void);
void siLpackage_internal(void);
void siLpackage_external(void);
void siLelt_set(void);
void siLchar_set(void);
void siLmake_structure(void);
void siLstructure_name(void);
void siLstructure_ref(void);
void siLstructure_set(void);
void siLput_f(void);
void siLrem_f(void);
void siLset_symbol_plist(void);
void siLbit_array_op(void);
object
cmod(object);
object
ctimes(object,object);
object
cdifference(object,object);
object
cplus(object,object);
object
Icall_error_handler(object,object,int,...);
void *
gcl_gmp_alloc(size_t);
int
my_plt(const char *,unsigned long *);
int
parse_plt(void);
int
sgc_count_read_only_type(int);
int
gcl_isnormal_double(double);
int
gcl_isnormal_float(float);
object
find_init_name1(char *,unsigned);
#ifdef SGC
void
memprotect_test_reset(void);
#endif
#if defined (__MINGW32__)
int bcmp ( const void *s1, const void *s2, size_t n );
void bcopy ( const void *s1, void *s2, size_t n );
void bzero(void *b, size_t length);
int TcpOutputProc ( int fd, char *buf, int toWrite, int *errorCodePtr, int block );
void recreate_heap1 ( void );
void gcl_init_shared_memory ( void );
void fix_filename ( object pathname, char *filename1 );
void alarm ( int n );
void *sbrk ( unsigned long increment );
void sigemptyset( sigset_t *set);
void sigaddset ( sigset_t *set, int n);
int sigismember ( sigset_t *set, int n );
int sigprocmask ( int how, const sigset_t *set, sigset_t *oldset );
#endif
#ifdef GCL_GPROF
void
gprof_cleanup(void);
#endif
int
msystem(const char *);
void
assert_error(const char *,unsigned,const char *,const char *);
#ifdef _WIN32
void
detect_wine(void);
void
init_shared_memory(void);
void *
alloca(size_t);
object
find_init_string(const char *);
#endif
void *
get_mmap(FILE *,void **);
int
un_mmap(void *,void *);
object
fSuse_fast_links_2(object,object);
MP_INT *
otoi(object);
void
isetq_fix(MP_INT *,int);
int
mpz_to_mpz1(MP_INT *,MP_INT *,void *);
int
mpz_to_mpz(MP_INT *,MP_INT *);
int
obj_to_mpz1(object,MP_INT *,void *);
int
obj_to_mpz(object,MP_INT *);
#include "f-ol-syntax.h"
void init_code(){do_init((void *)VV);}
/* function definition for Q-MK_ANTIQUOT */
static void L1()
{register object *base=vs_base;
register object *sup=base+VM1; VC1
vs_check;
{object V1;
V1=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= make_cons(((object)VV[0]),(V1));
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for Q-MK_PRED */
static void L2()
{register object *base=vs_base;
register object *sup=base+VM2; VC2
vs_check;
{object V2;
object V3;
V2=(base[0]);
V3=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[4]= (V2);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk66)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+3)+1;
(void) (*Lnk67)();
vs_top=sup;
base[2]= vs_base[0];
base[4]= (V3);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk68)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk69)();
vs_top=sup;
if((vs_base[0])==Cnil){
goto T2;}
base[2]= listA(3,((object)VV[1]),(V2),(V3));
vs_top=(vs_base=base+2)+1;
return;
goto T2;
T2:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[3]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for ML-IS_PRED */
static void L3()
{register object *base=vs_base;
register object *sup=base+VM3; VC3
vs_check;
{object V4;
V4=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V4)))==(((object)VV[1]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_PRED */
static void L4()
{register object *base=vs_base;
register object *sup=base+VM4; VC4
vs_check;
{object V5;
V5=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V5)),((object)VV[1])))){
goto T11;}
base[1]= CMPcdr((V5));
vs_top=(vs_base=base+1)+1;
return;
goto T11;
T11:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[4]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_CONJ */
static void L5()
{register object *base=vs_base;
register object *sup=base+VM5; VC5
vs_check;
{object V6;
object V7;
V6=(base[0]);
V7=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= listA(3,((object)VV[5]),(V6),(V7));
vs_top=(vs_base=base+2)+1;
return;
}
}
/* function definition for ML-IS_CONJ */
static void L6()
{register object *base=vs_base;
register object *sup=base+VM6; VC6
vs_check;
{object V8;
V8=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V8)))==(((object)VV[5]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_CONJ */
static void L7()
{register object *base=vs_base;
register object *sup=base+VM7; VC7
vs_check;
{object V9;
V9=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V9)),((object)VV[5])))){
goto T15;}
base[1]= CMPcdr((V9));
vs_top=(vs_base=base+1)+1;
return;
goto T15;
T15:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[6]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_DISJ */
static void L8()
{register object *base=vs_base;
register object *sup=base+VM8; VC8
vs_check;
{object V10;
object V11;
V10=(base[0]);
V11=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= listA(3,((object)VV[7]),(V10),(V11));
vs_top=(vs_base=base+2)+1;
return;
}
}
/* function definition for ML-IS_DISJ */
static void L9()
{register object *base=vs_base;
register object *sup=base+VM9; VC9
vs_check;
{object V12;
V12=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V12)))==(((object)VV[7]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_DISJ */
static void L10()
{register object *base=vs_base;
register object *sup=base+VM10; VC10
vs_check;
{object V13;
V13=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V13)),((object)VV[7])))){
goto T19;}
base[1]= CMPcdr((V13));
vs_top=(vs_base=base+1)+1;
return;
goto T19;
T19:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[8]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_IMP */
static void L11()
{register object *base=vs_base;
register object *sup=base+VM11; VC11
vs_check;
{object V14;
object V15;
V14=(base[0]);
V15=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= listA(3,((object)VV[9]),(V14),(V15));
vs_top=(vs_base=base+2)+1;
return;
}
}
/* function definition for ML-IS_IMP */
static void L12()
{register object *base=vs_base;
register object *sup=base+VM12; VC12
vs_check;
{object V16;
V16=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V16)))==(((object)VV[9]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_IMP */
static void L13()
{register object *base=vs_base;
register object *sup=base+VM13; VC13
vs_check;
{object V17;
V17=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V17)),((object)VV[9])))){
goto T23;}
base[1]= CMPcdr((V17));
vs_top=(vs_base=base+1)+1;
return;
goto T23;
T23:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[10]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_NEG */
static void L14()
{register object *base=vs_base;
register object *sup=base+VM14; VC14
vs_check;
{object V18;
V18=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= listA(3,((object)VV[9]),(V18),(((object)VV[11])->s.s_dbind));
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for Q-MK_FORALL */
static void L15()
{register object *base=vs_base;
register object *sup=base+VM15; VC15
vs_check;
{object V19;
object V20;
V19=(base[0]);
V20=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V21;
base[2]= (V19);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk70)();
vs_top=sup;
V21= vs_base[0];
base[2]= (V21);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk71)();
vs_top=sup;
base[2]= (V21);
base[3]= (V20);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk72)();
return;}
}
}
/* function definition for ML-MK_FORALL */
static void L16()
{register object *base=vs_base;
register object *sup=base+VM16; VC16
vs_check;
{object V22;
object V23;
V22=(base[0]);
V23=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V22)))==(((object)VV[12])))){
goto T33;}
base[2]= listA(3,((object)VV[13]),(V22),(V23));
vs_top=(vs_base=base+2)+1;
return;
goto T33;
T33:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[14]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for ML-IS_FORALL */
static void L17()
{register object *base=vs_base;
register object *sup=base+VM17; VC17
vs_check;
{object V24;
V24=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V24)))==(((object)VV[13]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_FORALL */
static void L18()
{register object *base=vs_base;
register object *sup=base+VM18; VC18
vs_check;
{object V25;
V25=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V25)),((object)VV[13])))){
goto T37;}
base[1]= CMPcdr((V25));
vs_top=(vs_base=base+1)+1;
return;
goto T37;
T37:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[15]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_EXISTS */
static void L19()
{register object *base=vs_base;
register object *sup=base+VM19; VC19
vs_check;
{object V26;
object V27;
V26=(base[0]);
V27=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V28;
base[2]= (V26);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk70)();
vs_top=sup;
V28= vs_base[0];
base[2]= (V28);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk71)();
vs_top=sup;
base[2]= (V28);
base[3]= (V27);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk73)();
return;}
}
}
/* function definition for ML-MK_EXISTS */
static void L20()
{register object *base=vs_base;
register object *sup=base+VM20; VC20
vs_check;
{object V29;
object V30;
V29=(base[0]);
V30=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V29)))==(((object)VV[12])))){
goto T47;}
base[2]= listA(3,((object)VV[16]),(V29),(V30));
vs_top=(vs_base=base+2)+1;
return;
goto T47;
T47:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[17]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for ML-IS_EXISTS */
static void L21()
{register object *base=vs_base;
register object *sup=base+VM21; VC21
vs_check;
{object V31;
V31=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V31)))==(((object)VV[16]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_EXISTS */
static void L22()
{register object *base=vs_base;
register object *sup=base+VM22; VC22
vs_check;
{object V32;
V32=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V32)),((object)VV[16])))){
goto T51;}
base[1]= CMPcdr((V32));
vs_top=(vs_base=base+1)+1;
return;
goto T51;
T51:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[18]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_EQUIV */
static void L23()
{register object *VOL base=vs_base;
register object *VOL sup=base+VM23; VC23
vs_check;
{VOL object V33;
VOL object V34;
V33=(base[0]);
V34=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{VOL object V35;
frs_push(FRS_CATCH,((object)VV[2]));
if(nlj_active)
{nlj_active=FALSE;frs_pop();
vs_top=sup;
V35= vs_base[0];
goto T54;}
else{
base[2]= ((object)VV[19]);
base[4]= (V33);
base[5]= (V34);
vs_top=(vs_base=base+4)+2;
(void) (*Lnk74)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk75)();
vs_top=sup;
V36= vs_base[0];
V37= make_cons(V36,Cnil);
frs_pop();
V35= V37;}
goto T54;
T54:;
if(!(type_of((V35))!=t_cons)){
goto T62;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[20]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
goto T62;
T62:;
base[2]= CMPcar((V35));
vs_top=(vs_base=base+2)+1;
return;}
}
}
/* function definition for Q-MK_INEQUIV */
static void L24()
{register object *VOL base=vs_base;
register object *VOL sup=base+VM24; VC24
vs_check;
{VOL object V39;
VOL object V40;
V39=(base[0]);
V40=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{VOL object V41;
frs_push(FRS_CATCH,((object)VV[2]));
if(nlj_active)
{nlj_active=FALSE;frs_pop();
vs_top=sup;
V41= vs_base[0];
goto T65;}
else{
base[2]= ((object)VV[21]);
base[4]= (V39);
base[5]= (V40);
vs_top=(vs_base=base+4)+2;
(void) (*Lnk74)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk75)();
vs_top=sup;
V42= vs_base[0];
V43= make_cons(V42,Cnil);
frs_pop();
V41= V43;}
goto T65;
T65:;
if(!(type_of((V41))!=t_cons)){
goto T73;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[22]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
goto T73;
T73:;
base[2]= CMPcar((V41));
vs_top=(vs_base=base+2)+1;
return;}
}
}
/* function definition for Q-MK_VAR */
static void L25()
{register object *base=vs_base;
register object *sup=base+VM25; VC25
vs_check;
{object V45;
V45=(base[0]);
vs_top=sup;
goto TTL;
TTL:;{object V47;
base[1]= (V45);
base[2]= (((object)VV[23])->s.s_dbind);
vs_top=(vs_base=base+1)+2;
(void) (*Lnk76)();
vs_top=sup;
V47= vs_base[0];
if(V47==Cnil)goto T77;
V46= V47;
goto T76;
goto T77;
T77:;}
base[1]= (V45);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk77)();
vs_top=sup;
V46= vs_base[0];
goto T76;
T76:;
base[1]= listA(3,((object)VV[12]),(V45),V46);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for NEW-VAR-TYPE */
static void L26()
{register object *base=vs_base;
register object *sup=base+VM26; VC26
vs_check;
{object V48;
V48=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V49;
vs_base=vs_top;
(void) (*Lnk78)();
vs_top=sup;
V49= vs_base[0];
{object V50;
V50= make_cons((V48),(V49));
(((object)VV[23])->s.s_dbind)= make_cons((V50),(((object)VV[23])->s.s_dbind));}
base[1]= (V49);
vs_top=(vs_base=base+1)+1;
return;}
}
}
/* function definition for Q-FREE-VAR */
static void L27()
{register object *base=vs_base;
register object *sup=base+VM27; VC27
vs_check;
{object V51;
V51=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V51)))==(((object)VV[12])))){
goto T87;}
base[1]= CMPcadr((V51));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk77)();
return;
goto T87;
T87:;
base[1]= Cnil;
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for MK_REALVAR */
static void L28()
{register object *base=vs_base;
register object *sup=base+VM28; VC28
vs_check;
{object V52;
object V53;
V52=(base[0]);
V53=(base[1]);
vs_top=sup;
goto TTL;
TTL:;{object V54;
base[2]= (V53);
{object V55 =((V52))->s.s_plist;
object ind= ((object)VV[24]);
while(V55!=Cnil){
if(V55->c.c_car==ind){
base[3]= (V55->c.c_cdr->c.c_car);
goto T93;
}else V55=V55->c.c_cdr->c.c_cdr;}
base[3]= Cnil;}
goto T93;
T93:;
vs_top=(vs_base=base+2)+2;
(void) (*Lnk76)();
vs_top=sup;
V54= vs_base[0];
if(V54==Cnil)goto T90;
base[2]= V54;
vs_top=(vs_base=base+2)+1;
return;
goto T90;
T90:;}
base[2]= (V52);
V57= listA(3,((object)VV[12]),(V52),(V53));
base[3]= make_cons((V53),/* INLINE-ARGS */V57);
base[4]= ((object)VV[24]);
vs_top=(vs_base=base+2)+3;
(void) (*Lnk79)();
vs_top=sup;
V56= vs_base[0];
base[2]= CMPcdr(V56);
vs_top=(vs_base=base+2)+1;
return;
}
}
/* function definition for ML-GENVAR */
static void L29()
{register object *base=vs_base;
register object *sup=base+VM29; VC29
vs_check;
{object V58;
V58=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= ((object)VV[25]);
base[3]= ((object)VV[12]);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk80)();
vs_top=sup;
base[1]= vs_base[0];
base[2]= (V58);
vs_top=(vs_base=base+1)+2;
(void) (*Lnk81)();
return;
}
}
/* function definition for ML-IS_VAR */
static void L30()
{register object *base=vs_base;
register object *sup=base+VM30; VC30
vs_check;
{object V59;
V59=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V59)))==(((object)VV[12]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_VAR */
static void L31()
{register object *base=vs_base;
register object *sup=base+VM31; VC31
vs_check;
{object V60;
V60=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V60)),((object)VV[12])))){
goto T103;}
base[1]= CMPcdr((V60));
vs_top=(vs_base=base+1)+1;
return;
goto T103;
T103:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[26]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_CONST */
static void L32()
{register object *base=vs_base;
register object *sup=base+VM32; VC32
vs_check;
{object V61;
V61=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= (V61);
base[1]= simple_symlispcall(((object)VV[82]),base+2,1);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk67)();
vs_top=sup;
V62= vs_base[0];
base[1]= listA(3,((object)VV[27]),(V61),V62);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-MK_CONST */
static void L33()
{register object *base=vs_base;
register object *sup=base+VM33; VC33
vs_check;
{register object V63;
register object V64;
V63=(base[0]);
V64=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V65;
base[2]= (V64);
{object V66 =((V63))->s.s_plist;
object ind= ((object)VV[28]);
while(V66!=Cnil){
if(V66->c.c_car==ind){
base[3]= (V66->c.c_cdr->c.c_car);
goto T111;
}else V66=V66->c.c_cdr->c.c_cdr;}
base[3]= Cnil;}
goto T111;
T111:;
vs_top=(vs_base=base+2)+2;
(void) (*Lnk76)();
vs_top=sup;
V65= vs_base[0];
if(((V65))==Cnil){
goto T113;}
base[2]= (V65);
vs_top=(vs_base=base+2)+1;
return;
goto T113;
T113:;
base[2]= (V63);
if((simple_symlispcall(((object)VV[82]),base+2,1))==Cnil){
goto T116;}
base[2]= (V64);
base[5]= (V63);
base[4]= simple_symlispcall(((object)VV[82]),base+5,1);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk67)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk69)();
vs_top=sup;
if((vs_base[0])==Cnil){
goto T116;}
base[2]= (V63);
V68= listA(3,((object)VV[27]),(V63),(V64));
base[3]= make_cons((V64),/* INLINE-ARGS */V68);
base[4]= ((object)VV[28]);
vs_top=(vs_base=base+2)+3;
(void) (*Lnk79)();
vs_top=sup;
V67= vs_base[0];
base[2]= CMPcdr(V67);
vs_top=(vs_base=base+2)+1;
return;
goto T116;
T116:;
base[2]= (V63);
if((simple_symlispcall(((object)VV[82]),base+2,1))!=Cnil){
goto T130;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[29]);
base[3]= (V63);
base[4]= ((object)VV[30]);
vs_top=(vs_base=base+2)+3;
(void) (*Lnk83)();
unwind(fr,((object)VV[2]));}
goto T130;
T130:;
base[2]= (V64);
base[5]= (V63);
base[4]= simple_symlispcall(((object)VV[82]),base+5,1);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk67)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk69)();
vs_top=sup;
if((vs_base[0])!=Cnil){
goto T138;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[31]);
base[3]= (V63);
base[4]= ((object)VV[32]);
vs_top=(vs_base=base+2)+3;
(void) (*Lnk83)();
unwind(fr,((object)VV[2]));}
goto T138;
T138:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[33]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for ML-IS_CONST */
static void L34()
{register object *base=vs_base;
register object *sup=base+VM34; VC34
vs_check;
{object V69;
V69=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V69)))==(((object)VV[27]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_CONST */
static void L35()
{register object *base=vs_base;
register object *sup=base+VM35; VC35
vs_check;
{object V70;
V70=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V70)),((object)VV[27])))){
goto T150;}
base[1]= CMPcdr((V70));
vs_top=(vs_base=base+1)+1;
return;
goto T150;
T150:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[34]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_ABS */
static void L36()
{register object *base=vs_base;
register object *sup=base+VM36; VC36
vs_check;
{object V71;
object V72;
V71=(base[0]);
V72=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V73;
base[2]= (V71);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk70)();
vs_top=sup;
V73= vs_base[0];
base[2]= (V73);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk71)();
vs_top=sup;
base[2]= (V73);
base[3]= (V72);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk84)();
return;}
}
}
/* function definition for ML-MK_ABS */
static void L37()
{register object *base=vs_base;
register object *sup=base+VM37; VC37
vs_check;
{object V74;
object V75;
V74=(base[0]);
V75=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V74)))==(((object)VV[12])))){
goto T160;}
V76= make_cons((V74),(V75));
base[2]= (V74);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk68)();
vs_top=sup;
V77= vs_base[0];
base[2]= (V75);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk68)();
vs_top=sup;
V78= vs_base[0];
V79= list(2,V77,V78);
base[2]= listA(3,((object)VV[35]),/* INLINE-ARGS */V76,make_cons(((object)VV[36]),/* INLINE-ARGS */V79));
vs_top=(vs_base=base+2)+1;
return;
goto T160;
T160:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[37]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for ML-IS_ABS */
static void L38()
{register object *base=vs_base;
register object *sup=base+VM38; VC38
vs_check;
{object V80;
V80=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V80)))==(((object)VV[35]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_ABS */
static void L39()
{register object *base=vs_base;
register object *sup=base+VM39; VC39
vs_check;
{object V81;
V81=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V81)),((object)VV[35])))){
goto T169;}
V82= CMPcdr((V81));
goto T167;
goto T169;
T169:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[38]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
goto T167;
T167:;
base[1]= CMPcar(V82);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for PREP-TERM-FN */
static void L40()
{register object *base=vs_base;
register object *sup=base+VM40; VC40
vs_check;
{register object V83;
V83=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V84= CMPcar((V83));
if((V84!= ((object)VV[12])))goto T172;
V85= CMPcadr((V83));
base[1]= CMPcddr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk85)();
vs_top=sup;
V86= vs_base[0];
base[1]= listA(3,((object)VV[12]),/* INLINE-ARGS */V85,V86);
vs_top=(vs_base=base+1)+1;
return;
goto T172;
T172:;
if((V84!= ((object)VV[27])))goto T175;
V87= CMPcadr((V83));
base[1]= CMPcddr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk85)();
vs_top=sup;
V88= vs_base[0];
base[1]= listA(3,((object)VV[27]),/* INLINE-ARGS */V87,V88);
vs_top=(vs_base=base+1)+1;
return;
goto T175;
T175:;
if((V84!= ((object)VV[39])))goto T178;
base[1]= CMPcaadr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk86)();
vs_top=sup;
V89= vs_base[0];
base[1]= CMPcdadr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk86)();
vs_top=sup;
V90= vs_base[0];
V91= make_cons(V89,V90);
base[1]= CMPcddr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk85)();
vs_top=sup;
V92= vs_base[0];
base[1]= listA(3,((object)VV[39]),/* INLINE-ARGS */V91,V92);
vs_top=(vs_base=base+1)+1;
return;
goto T178;
T178:;
if((V84!= ((object)VV[35])))goto T185;
base[1]= CMPcaadr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk86)();
vs_top=sup;
V93= vs_base[0];
base[1]= CMPcdadr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk86)();
vs_top=sup;
V94= vs_base[0];
V95= make_cons(V93,V94);
base[1]= CMPcddr((V83));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk85)();
vs_top=sup;
V96= vs_base[0];
base[1]= listA(3,((object)VV[35]),/* INLINE-ARGS */V95,V96);
vs_top=(vs_base=base+1)+1;
return;
goto T185;
T185:;
if((V84!= ((object)VV[0])))goto T192;
V83= CMPcdr((V83));
goto TTL;
goto T192;
T192:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[40]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for PREP-TERM-FOR-PRINT */
static void L41()
{register object *base=vs_base;
register object *sup=base+VM41; VC41
vs_check;
bds_check;
{object V97;
V97=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V98;
base[1]= (V97);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk87)();
vs_top=sup;
V98= vs_base[0];
base[3]= (V98);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk88)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk89)();
vs_top=sup;
base[1]= vs_base[0];
bds_bind(((object)VV[41]),base[1]);
base[2]= (V98);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk86)();
bds_unwind1;
return;}
}
}
/* function definition for ADD-TERM-LINKS */
static void L42()
{register object *base=vs_base;
register object *sup=base+VM42; VC42
vs_check;
{register object V99;
V99=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V100= CMPcar((V99));
if((V100!= ((object)VV[12])))goto T202;
V101= CMPcadr((V99));
base[1]= CMPcddr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk90)();
vs_top=sup;
V102= vs_base[0];
base[1]= listA(3,((object)VV[12]),/* INLINE-ARGS */V101,V102);
vs_top=(vs_base=base+1)+1;
return;
goto T202;
T202:;
if((V100!= ((object)VV[27])))goto T205;
V103= CMPcadr((V99));
base[1]= CMPcddr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk90)();
vs_top=sup;
V104= vs_base[0];
base[1]= listA(3,((object)VV[27]),/* INLINE-ARGS */V103,V104);
vs_top=(vs_base=base+1)+1;
return;
goto T205;
T205:;
if((V100!= ((object)VV[39])))goto T208;
base[1]= CMPcaadr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk87)();
vs_top=sup;
V105= vs_base[0];
base[1]= CMPcdadr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk87)();
vs_top=sup;
V106= vs_base[0];
V107= make_cons(V105,V106);
base[1]= CMPcddr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk90)();
vs_top=sup;
V108= vs_base[0];
base[1]= listA(3,((object)VV[39]),/* INLINE-ARGS */V107,V108);
vs_top=(vs_base=base+1)+1;
return;
goto T208;
T208:;
if((V100!= ((object)VV[35])))goto T215;
base[1]= CMPcaadr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk87)();
vs_top=sup;
V109= vs_base[0];
base[1]= CMPcdadr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk87)();
vs_top=sup;
V110= vs_base[0];
V111= make_cons(V109,V110);
base[1]= CMPcddr((V99));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk90)();
vs_top=sup;
V112= vs_base[0];
base[1]= listA(3,((object)VV[35]),/* INLINE-ARGS */V111,V112);
vs_top=(vs_base=base+1)+1;
return;
goto T215;
T215:;
if((V100!= ((object)VV[0])))goto T222;
V99= CMPcdr((V99));
goto TTL;
goto T222;
T222:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[42]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for ADD-TYPE-LINKS */
static void L43()
{register object *base=vs_base;
register object *sup=base+VM43; VC43
vs_check;
{register object V113;
V113=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V114= CMPcar((V113));
if((V114!= ((object)VV[0])))goto T226;
base[1]= CMPcdr((V113));
vs_top=(vs_base=base+1)+1;
return;
goto T226;
T226:;
if((V114!= ((object)VV[47])))goto T227;
base[1]= (V113);
vs_top=(vs_base=base+1)+1;
return;
goto T227;
T227:;
if((V114!= ((object)VV[43])))goto T228;
{object V115= CMPcdr((V113));
if(!(type_of(V115)==t_fixnum||
type_of(V115)==t_bignum||
type_of(V115)==t_ratio||
type_of(V115)==t_shortfloat||
type_of(V115)==t_longfloat||
type_of(V115)==t_complex)){
goto T230;}}
base[1]= (V113);
vs_top=(vs_base=base+1)+1;
return;
goto T230;
T230:;
if((CMPcdr((V113)))!=Cnil){
goto T233;}
(((object)VV[44])->s.s_dbind)= number_plus((((object)VV[44])->s.s_dbind),small_fixnum(1));
base[1]= make_cons(((object)VV[43]),(((object)VV[44])->s.s_dbind));
vs_top=(vs_base=base+1)+1;
return;
goto T233;
T233:;
V113= CMPcdr((V113));
goto TTL;
goto T228;
T228:;
V116= CMPcar((V113));
{object V118;
object V119= CMPcdr((V113));
if(V119==Cnil){
V117= Cnil;
goto T238;}
base[1]=V118=MMcons(Cnil,Cnil);
goto T239;
T239:;
base[2]= (V119->c.c_car);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk90)();
vs_top=sup;
(V118->c.c_car)= vs_base[0];
if((V119=MMcdr(V119))==Cnil){
V117= base[1];
goto T238;}
V118=MMcdr(V118)=MMcons(Cnil,Cnil);
goto T239;}
goto T238;
T238:;
base[1]= make_cons(/* INLINE-ARGS */V116,V117);
vs_top=(vs_base=base+1)+1;
return;}
}
}
/* function definition for GET-TYPE-LINKS */
static void L44()
{register object *base=vs_base;
register object *sup=base+VM44; VC44
vs_check;
{register object V120;
V120=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V121= CMPcar((V120));
if((V121!= ((object)VV[0]))
&& (V121!= ((object)VV[47])))goto T242;
base[1]= Cnil;
vs_top=(vs_base=base+1)+1;
return;
goto T242;
T242:;
if((V121!= ((object)VV[43])))goto T243;
{object V122= CMPcdr((V120));
if(!(type_of(V122)==t_fixnum||
type_of(V122)==t_bignum||
type_of(V122)==t_ratio||
type_of(V122)==t_shortfloat||
type_of(V122)==t_longfloat||
type_of(V122)==t_complex)){
goto T245;}}
base[1]= make_cons(CMPcdr((V120)),Cnil);
vs_top=(vs_base=base+1)+1;
return;
goto T245;
T245:;
V120= CMPcdr((V120));
goto TTL;
goto T243;
T243:;
{object V123;
{object V124;
object V125= CMPcdr((V120));
if(V125==Cnil){
V123= Cnil;
goto T249;}
base[1]=V124=MMcons(Cnil,Cnil);
goto T250;
T250:;
base[2]= (V125->c.c_car);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk91)();
vs_top=sup;
(V124->c.c_car)= vs_base[0];
if((V125=MMcdr(V125))==Cnil){
V123= base[1];
goto T249;}
V124=MMcdr(V124)=MMcons(Cnil,Cnil);
goto T250;}
goto T249;
T249:;
vs_top=base+1;
while(V123!=Cnil)
{vs_push((V123)->c.c_car);V123=(V123)->c.c_cdr;}
vs_base=base+1;}
Lappend();
return;}
}
}
/* function definition for GET-TERM-LINKS */
static void L45()
{register object *base=vs_base;
register object *sup=base+VM45; VC45
vs_check;
{register object V126;
V126=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V127= CMPcar((V126));
if((V127!= ((object)VV[12])))goto T253;
base[1]= CMPcddr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk91)();
return;
goto T253;
T253:;
if((V127!= ((object)VV[27])))goto T255;
base[1]= CMPcddr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk91)();
return;
goto T255;
T255:;
if((V127!= ((object)VV[39])))goto T257;
base[1]= CMPcaadr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk88)();
vs_top=sup;
V128= vs_base[0];
base[1]= CMPcdadr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk88)();
vs_top=sup;
V129= vs_base[0];
base[1]= append(V128,V129);
vs_top=(vs_base=base+1)+1;
return;
goto T257;
T257:;
if((V127!= ((object)VV[35])))goto T262;
base[1]= CMPcaadr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk88)();
vs_top=sup;
V130= vs_base[0];
base[1]= CMPcdadr((V126));
vs_top=(vs_base=base+1)+1;
(void) (*Lnk88)();
vs_top=sup;
V131= vs_base[0];
base[1]= append(V130,V131);
vs_top=(vs_base=base+1)+1;
return;
goto T262;
T262:;
if((V127!= ((object)VV[0])))goto T267;
V126= CMPcdr((V126));
goto TTL;
goto T267;
T267:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[45]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for MAKE-LINK-NAMES */
static void L46()
{register object *base=vs_base;
register object *sup=base+VM46; VC46
vs_check;
{object V132;
V132=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{register object V133;
register object V134;
register object V135;
V133= Cnil;
V134= Cnil;
V135= Cnil;
if(((V132))!=Cnil){
goto T275;}
base[1]= make_cons(Cnil,Cnil);
vs_top=(vs_base=base+1)+1;
return;
goto T275;
T275:;
if(!(((long)length((V132)))==((long)1))){
goto T273;}
V136= make_cons(CMPcar((V132)),((object)VV[46]));
base[1]= make_cons(/* INLINE-ARGS */V136,Cnil);
vs_top=(vs_base=base+1)+1;
return;
goto T273;
T273:;
V135= small_fixnum(1);
V133= (V132);
V134= Cnil;
goto T272;
T272:;
if(((V133))!=Cnil){
goto T286;}
base[1]= (V134);
vs_top=(vs_base=base+1)+1;
return;
goto T286;
T286:;
{object V137;
{register object x= CMPcar((V133)),V138= (V134);
while(V138!=Cnil)
if(equal(x,V138->c.c_car->c.c_car) &&V138->c.c_car != Cnil){
V137= (V138->c.c_car);
goto T288;
}else V138=V138->c.c_cdr;
V137= Cnil;}
goto T288;
T288:;
if(((V137))==Cnil){
goto T290;}
goto T284;
goto T290;
T290:;
V139= CMPcar((V133));
base[1]= ((object)VV[46]);
base[2]= (V135);
vs_top=(vs_base=base+1)+2;
(void) (*Lnk83)();
vs_top=sup;
V140= vs_base[0];
V141= make_cons(/* INLINE-ARGS */V139,V140);
V134= make_cons(/* INLINE-ARGS */V141,(V134));
V135= one_plus((V135));}
goto T284;
T284:;
V133= CMPcdr((V133));
goto T272;}
}
}
/* function definition for PREP-TY-FN */
static void L47()
{register object *base=vs_base;
register object *sup=base+VM47; VC47
vs_check;
{register object V142;
V142=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V143= CMPcar((V142));
if((V143!= ((object)VV[0])))goto T301;
base[1]= CMPcdr((V142));
vs_top=(vs_base=base+1)+1;
return;
goto T301;
T301:;
if((V143!= ((object)VV[47])))goto T302;
base[1]= (V142);
vs_top=(vs_base=base+1)+1;
return;
goto T302;
T302:;
if((V143!= ((object)VV[43])))goto T303;
{object V144= CMPcdr((V142));
if(!(type_of(V144)==t_fixnum||
type_of(V144)==t_bignum||
type_of(V144)==t_ratio||
type_of(V144)==t_shortfloat||
type_of(V144)==t_longfloat||
type_of(V144)==t_complex)){
goto T305;}}
{register object x= CMPcdr((V142)),V146= (((object)VV[41])->s.s_dbind);
while(V146!=Cnil)
if(equal(x,V146->c.c_car->c.c_car) &&V146->c.c_car != Cnil){
V145= (V146->c.c_car);
goto T307;
}else V146=V146->c.c_cdr;
V145= Cnil;}
goto T307;
T307:;
base[1]= make_cons(((object)VV[47]),CMPcdr(V145));
vs_top=(vs_base=base+1)+1;
return;
goto T305;
T305:;
V142= CMPcdr((V142));
goto TTL;
goto T303;
T303:;
V147= CMPcar((V142));
{object V149;
object V150= CMPcdr((V142));
if(V150==Cnil){
V148= Cnil;
goto T310;}
base[1]=V149=MMcons(Cnil,Cnil);
goto T311;
T311:;
base[2]= (V150->c.c_car);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk85)();
vs_top=sup;
(V149->c.c_car)= vs_base[0];
if((V150=MMcdr(V150))==Cnil){
V148= base[1];
goto T310;}
V149=MMcdr(V149)=MMcons(Cnil,Cnil);
goto T311;}
goto T310;
T310:;
base[1]= make_cons(/* INLINE-ARGS */V147,V148);
vs_top=(vs_base=base+1)+1;
return;}
}
}
/* function definition for PREP-TY-FOR-PRINT */
static void L48()
{register object *base=vs_base;
register object *sup=base+VM48; VC48
vs_check;
bds_check;
{object V151;
V151=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V152;
base[1]= (V151);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk90)();
vs_top=sup;
V152= vs_base[0];
base[3]= (V152);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk91)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk89)();
vs_top=sup;
base[1]= vs_base[0];
bds_bind(((object)VV[41]),base[1]);
base[2]= (V152);
vs_top=(vs_base=base+2)+1;
(void) (*Lnk85)();
bds_unwind1;
return;}
}
}
/* function definition for PREP-TERM-TY */
static void L49()
{register object *base=vs_base;
register object *sup=base+VM49; VC49
vs_check;
{object V153;
V153=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V153)))==(((object)VV[0])))){
goto T321;}
base[1]= CMPcddr(CMPcdr((V153)));
vs_top=(vs_base=base+1)+1;
return;
goto T321;
T321:;
base[1]= CMPcddr((V153));
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for PRINT-MK_COMB-ERROR */
static void L50()
{register object *base=vs_base;
register object *sup=base+VM50; VC50
vs_check;
{object V154;
object V155;
V154=(base[0]);
V155=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[2]= ((object)VV[48]);
base[3]= small_fixnum(27);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk92)();
vs_top=sup;
base[2]= small_fixnum(2);
base[3]= small_fixnum(4);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk93)();
vs_top=sup;
base[3]= (V154);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk94)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk95)();
vs_top=sup;
vs_base=vs_top;
(void) (*Lnk96)();
vs_top=sup;
base[2]= ((object)VV[49]);
base[3]= small_fixnum(27);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk92)();
vs_top=sup;
base[2]= small_fixnum(2);
base[3]= small_fixnum(4);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk93)();
vs_top=sup;
base[4]= (V154);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk97)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+3)+1;
(void) (*Lnk98)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk99)();
vs_top=sup;
vs_base=vs_top;
(void) (*Lnk96)();
vs_top=sup;
base[2]= ((object)VV[50]);
base[3]= small_fixnum(27);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk92)();
vs_top=sup;
base[2]= small_fixnum(2);
base[3]= small_fixnum(4);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk93)();
vs_top=sup;
base[3]= (V155);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk94)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk95)();
vs_top=sup;
vs_base=vs_top;
(void) (*Lnk96)();
vs_top=sup;
base[2]= ((object)VV[51]);
base[3]= small_fixnum(27);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk92)();
vs_top=sup;
base[2]= small_fixnum(2);
base[3]= small_fixnum(4);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk93)();
vs_top=sup;
base[4]= (V155);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk97)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+3)+1;
(void) (*Lnk98)();
vs_top=sup;
base[2]= vs_base[0];
vs_top=(vs_base=base+2)+1;
(void) (*Lnk99)();
vs_top=sup;
vs_base=vs_top;
(void) (*Lnk96)();
vs_top=sup;
vs_base=vs_top;
(void) (*Lnk96)();
return;
}
}
/* function definition for Q-MK_COMB */
static void L51()
{register object *base=vs_base;
register object *sup=base+VM51; VC51
vs_check;
{object V156;
object V157;
V156=(base[0]);
V157=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V158;
vs_base=vs_top;
(void) (*Lnk78)();
vs_top=sup;
V158= vs_base[0];
base[3]= (V156);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk68)();
vs_top=sup;
base[2]= vs_base[0];
base[4]= (V157);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk68)();
vs_top=sup;
V159= vs_base[0];
V160= list(2,V159,(V158));
base[3]= make_cons(((object)VV[36]),/* INLINE-ARGS */V160);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk69)();
vs_top=sup;
if((vs_base[0])==Cnil){
goto T367;}
base[2]= listA(3,((object)VV[39]),make_cons((V156),(V157)),(V158));
vs_top=(vs_base=base+2)+1;
return;
goto T367;
T367:;
if(((((object)VV[52])->s.s_dbind))==Cnil){
goto T374;}
base[2]= (V156);
base[3]= (V157);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk100)();
vs_top=sup;
goto T374;
T374:;
{object V161;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[53]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
base[2]= (V161);
vs_top=(vs_base=base+2)+1;
return;}}
}
}
/* function definition for ML-MK_COMB */
static void L52()
{register object *VOL base=vs_base;
register object *VOL sup=base+VM52; VC52
vs_check;
{VOL object V162;
VOL object V163;
V162=(base[0]);
V163=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{VOL object V164;
VOL object V165;
VOL object V166;
{VOL object V167;
frs_push(FRS_CATCH,((object)VV[2]));
if(nlj_active)
{nlj_active=FALSE;frs_pop();
vs_top=sup;
V167= vs_base[0];
goto T382;}
else{
base[5]= CMPcddr((V162));
vs_top=(vs_base=base+5)+1;
(void) (*Lnk101)();
vs_top=sup;
V168= vs_base[0];
V169= make_cons(V168,Cnil);
frs_pop();
V167= V169;}
goto T382;
T382:;
if(!(type_of((V167))!=t_cons)){
goto T387;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[5]= ((object)VV[53]);
vs_top=(vs_base=base+5)+1;
unwind(fr,((object)VV[2]));}
goto T387;
T387:;
V164= CMPcar((V167));}
V165= CMPcar((V164));
V166= CMPcdr((V164));
if(!(((V165))==(((object)VV[36])))){
goto T393;}
if(!(equal(CMPcar((V166)),CMPcddr((V163))))){
goto T393;}
base[5]= listA(3,((object)VV[39]),make_cons((V162),(V163)),CMPcadr((V166)));
vs_top=(vs_base=base+5)+1;
return;
goto T393;
T393:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[5]= ((object)VV[53]);
vs_top=(vs_base=base+5)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for ML-IS_COMB */
static void L53()
{register object *base=vs_base;
register object *sup=base+VM53; VC53
vs_check;
{object V171;
V171=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V171)))==(((object)VV[39]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_COMB */
static void L54()
{register object *base=vs_base;
register object *sup=base+VM54; VC54
vs_check;
{object V172;
V172=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!(eql(CMPcar((V172)),((object)VV[39])))){
goto T400;}
V173= CMPcdr((V172));
goto T398;
goto T400;
T400:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[54]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
goto T398;
T398:;
base[1]= CMPcar(V173);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for Q-MK_TYPED */
static void L55()
{register object *base=vs_base;
register object *sup=base+VM55; VC55
vs_check;
{object V174;
object V175;
V174=(base[0]);
V175=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[3]= (V174);
vs_top=(vs_base=base+3)+1;
(void) (*Lnk68)();
vs_top=sup;
base[2]= vs_base[0];
base[4]= (V175);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk104)();
vs_top=sup;
base[3]= vs_base[0];
vs_top=(vs_base=base+2)+2;
(void) (*Lnk69)();
vs_top=sup;
if((vs_base[0])==Cnil){
goto T404;}
base[2]= (V174);
vs_top=(vs_base=base+2)+1;
return;
goto T404;
T404:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[55]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_PAIR */
static void L56()
{register object *base=vs_base;
register object *sup=base+VM56; VC56
vs_check;
{object V176;
object V177;
V176=(base[0]);
V177=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
base[4]= ((object)VV[56]);
vs_top=(vs_base=base+4)+1;
(void) (*Lnk105)();
vs_top=sup;
base[3]= vs_base[0];
base[4]= (V176);
vs_top=(vs_base=base+3)+2;
(void) (*Lnk106)();
vs_top=sup;
base[2]= vs_base[0];
base[3]= (V177);
vs_top=(vs_base=base+2)+2;
(void) (*Lnk106)();
return;
}
}
/* function definition for Q-MK_COND */
static void L57()
{register object *base=vs_base;
register object *sup=base+VM57; VC57
vs_check;
{object V178;
object V179;
object V180;
V178=(base[0]);
V179=(base[1]);
V180=(base[2]);
vs_top=sup;
goto TTL;
TTL:;
base[6]= ((object)VV[57]);
vs_top=(vs_base=base+6)+1;
(void) (*Lnk105)();
vs_top=sup;
base[5]= vs_base[0];
base[6]= (V178);
vs_top=(vs_base=base+5)+2;
(void) (*Lnk106)();
vs_top=sup;
base[4]= vs_base[0];
base[5]= (V179);
vs_top=(vs_base=base+4)+2;
(void) (*Lnk106)();
vs_top=sup;
base[3]= vs_base[0];
base[4]= (V180);
vs_top=(vs_base=base+3)+2;
(void) (*Lnk106)();
return;
}
}
/* function definition for Q-MK_VARTYPE */
static void L58()
{register object *base=vs_base;
register object *sup=base+VM58; VC58
vs_check;
{register object V181;
V181=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V182;
{object V183 =((V181))->s.s_plist;
object ind= ((object)VV[58]);
while(V183!=Cnil){
if(V183->c.c_car==ind){
V182= (V183->c.c_cdr->c.c_car);
goto T423;
}else V183=V183->c.c_cdr->c.c_cdr;}
V182= Cnil;}
goto T423;
T423:;
if(((V182))==Cnil){
goto T425;}
base[1]= (V182);
vs_top=(vs_base=base+1)+1;
return;
goto T425;
T425:;
base[1]= (V181);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk107)();
vs_top=sup;
V184= vs_base[0];
if(!(number_compare(CMPcar(V184),small_fixnum(42))==0)){
goto T428;}
V185= make_cons(((object)VV[47]),(V181));
base[1]= sputprop((V181),((object)VV[58]),/* INLINE-ARGS */V185);
vs_top=(vs_base=base+1)+1;
return;
goto T428;
T428:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[58]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}}
}
}
/* function definition for ML-IS_VARTYPE */
static void L59()
{register object *base=vs_base;
register object *sup=base+VM59; VC59
vs_check;
{object V186;
V186=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= ((CMPcar((V186)))==(((object)VV[47]))?Ct:Cnil);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_VARTYPE */
static void L60()
{register object *base=vs_base;
register object *sup=base+VM60; VC60
vs_check;
{object V187;
V187=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V187)))==(((object)VV[47])))){
goto T434;}
base[1]= CMPcdr((V187));
vs_top=(vs_base=base+1)+1;
return;
goto T434;
T434:;
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[59]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
}
}
/* function definition for Q-MK_TYPE */
static void L61()
{register object *base=vs_base;
register object *sup=base+VM61; VC61
vs_check;
{object V188;
object V189;
V188=(base[0]);
V189=(base[1]);
vs_top=sup;
goto TTL;
TTL:;
{object V191 =((V188))->s.s_plist;
object ind= ((object)VV[60]);
while(V191!=Cnil){
if(V191->c.c_car==ind){
V190= (V191->c.c_cdr->c.c_car);
goto T440;
}else V191=V191->c.c_cdr->c.c_cdr;}
V190= Cnil;}
goto T440;
T440:;
V192 = CMPmake_fixnum((long)length((V189)));
if(equal(V190,V192)){
goto T438;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[2]= ((object)VV[61]);
vs_top=(vs_base=base+2)+1;
unwind(fr,((object)VV[2]));}
goto T438;
T438:;
if(((V189))!=Cnil){
goto T443;}
{object V193 =((V188))->s.s_plist;
object ind= ((object)VV[62]);
while(V193!=Cnil){
if(V193->c.c_car==ind){
base[2]= (V193->c.c_cdr->c.c_car);
vs_top=(vs_base=base+2)+1;
return;
}else V193=V193->c.c_cdr->c.c_cdr;}
base[2]= Cnil;
vs_top=(vs_base=base+2)+1;
return;}
goto T443;
T443:;
base[2]= make_cons((V188),(V189));
vs_top=(vs_base=base+2)+1;
return;
}
}
/* function definition for ML-DEST_TYPE */
static void L62()
{register object *base=vs_base;
register object *sup=base+VM62; VC62
vs_check;
{object V194;
V194=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
if(!((CMPcar((V194)))==(((object)VV[47])))){
goto T446;}
{frame_ptr fr;
fr=frs_sch_catch(((object)VV[2]));
if(fr==NULL) FEerror("The tag ~s is undefined.",1,((object)VV[2]));
base[1]= ((object)VV[63]);
vs_top=(vs_base=base+1)+1;
unwind(fr,((object)VV[2]));}
goto T446;
T446:;
base[1]= (V194);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-TYPE_OF */
static void L63()
{register object *base=vs_base;
register object *sup=base+VM63; VC63
vs_check;
{object V195;
V195=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= CMPcddr((V195));
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for Q-TYPEOF */
static void L64()
{register object *base=vs_base;
register object *sup=base+VM64; VC64
vs_check;
{object V196;
V196=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= (V196);
vs_top=(vs_base=base+1)+1;
(void) (*Lnk70)();
vs_top=sup;
V197= vs_base[0];
base[1]= CMPcddr(V197);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for STRIP-ANTIQUOT */
static void L65()
{register object *base=vs_base;
register object *sup=base+VM65; VC65
vs_check;
{register object V198;
V198=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
goto T453;
T453:;
if(!((CMPcar((V198)))==(((object)VV[0])))){
goto T456;}
V198= CMPcdr((V198));
goto T453;
goto T456;
T456:;
goto T451;
goto T451;
goto T451;
T451:;
base[1]= (V198);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-THM_COUNT */
static void L66()
{register object *base=vs_base;
register object *sup=base+VM66; VC66
vs_check;
vs_top=sup;
goto TTL;
TTL:;
base[0]= (((object)VV[64])->s.s_dbind);
vs_top=(vs_base=base+0)+1;
return;
}
/* function definition for ML-MK_THM */
static void L67()
{register object *base=vs_base;
register object *sup=base+VM67; VC67
vs_check;
{object V199;
V199=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
(((object)VV[64])->s.s_dbind)= number_plus((((object)VV[64])->s.s_dbind),small_fixnum(1));
base[1]= (V199);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for ML-DEST_THM */
static void L68()
{register object *base=vs_base;
register object *sup=base+VM68; VC68
vs_check;
{object V200;
V200=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
base[1]= (V200);
vs_top=(vs_base=base+1)+1;
return;
}
}
/* function definition for PREDICATEP */
static void L69()
{register object *base=vs_base;
register object *sup=base+VM69; VC69
vs_check;
{object V201;
V201=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V202 =((V201))->s.s_plist;
object ind= ((object)VV[65]);
while(V202!=Cnil){
if(V202->c.c_car==ind){
base[1]= (V202->c.c_cdr->c.c_car);
vs_top=(vs_base=base+1)+1;
return;
}else V202=V202->c.c_cdr->c.c_cdr;}
base[1]= Cnil;
vs_top=(vs_base=base+1)+1;
return;}
}
}
/* function definition for CONSTP */
static void L70()
{register object *base=vs_base;
register object *sup=base+VM70; VC70
vs_check;
{object V203;
V203=(base[0]);
vs_top=sup;
goto TTL;
TTL:;
{object V204 =((V203))->s.s_plist;
object ind= ((object)VV[27]);
while(V204!=Cnil){
if(V204->c.c_car==ind){
base[1]= (V204->c.c_cdr->c.c_car);
vs_top=(vs_base=base+1)+1;
return;
}else V204=V204->c.c_cdr->c.c_cdr;}
base[1]= Cnil;
vs_top=(vs_base=base+1)+1;
return;}
}
}
static void LnkT107(){ call_or_link(((object)VV[107]),(void **)(void *)&Lnk107);} /* EXPLODEN */
static void LnkT106(){ call_or_link(((object)VV[106]),(void **)(void *)&Lnk106);} /* Q-MK_COMB */
static void LnkT105(){ call_or_link(((object)VV[105]),(void **)(void *)&Lnk105);} /* Q-MK_CONST */
static void LnkT104(){ call_or_link(((object)VV[104]),(void **)(void *)&Lnk104);} /* Q-MK_ANTIQUOT */
static object LnkTLI103(object first,...){object V1;va_list ap;va_start(ap,first);V1=call_proc_new(((object)VV[103]),(void **)(void *)&LnkLI103,1,first,ap);va_end(ap);return V1;} /* SECOND */
static object LnkTLI102(object first,...){object V1;va_list ap;va_start(ap,first);V1=call_proc_new(((object)VV[102]),(void **)(void *)&LnkLI102,1,first,ap);va_end(ap);return V1;} /* FIRST */
static void LnkT101(){ call_or_link(((object)VV[101]),(void **)(void *)&Lnk101);} /* ML-DEST_TYPE */
static void LnkT100(){ call_or_link(((object)VV[100]),(void **)(void *)&Lnk100);} /* PRINT-MK_COMB-ERROR */
static void LnkT99(){ call_or_link(((object)VV[99]),(void **)(void *)&Lnk99);} /* ML-PRINT_TYPE */
static void LnkT98(){ call_or_link(((object)VV[98]),(void **)(void *)&Lnk98);} /* PREP-TY-FOR-PRINT */
static void LnkT97(){ call_or_link(((object)VV[97]),(void **)(void *)&Lnk97);} /* PREP-TERM-TY */
static void LnkT96(){ call_or_link(((object)VV[96]),(void **)(void *)&Lnk96);} /* PNEWLINE */
static void LnkT95(){ call_or_link(((object)VV[95]),(void **)(void *)&Lnk95);} /* ML-PRINT_TERM */
static void LnkT94(){ call_or_link(((object)VV[94]),(void **)(void *)&Lnk94);} /* PREP-TERM-FOR-PRINT */
static void LnkT93(){ call_or_link(((object)VV[93]),(void **)(void *)&Lnk93);} /* PBREAK */
static void LnkT92(){ call_or_link(((object)VV[92]),(void **)(void *)&Lnk92);} /* PSTRINGLEN */
static void LnkT91(){ call_or_link(((object)VV[91]),(void **)(void *)&Lnk91);} /* GET-TYPE-LINKS */
static void LnkT90(){ call_or_link(((object)VV[90]),(void **)(void *)&Lnk90);} /* ADD-TYPE-LINKS */
static void LnkT89(){ call_or_link(((object)VV[89]),(void **)(void *)&Lnk89);} /* MAKE-LINK-NAMES */
static void LnkT88(){ call_or_link(((object)VV[88]),(void **)(void *)&Lnk88);} /* GET-TERM-LINKS */
static void LnkT87(){ call_or_link(((object)VV[87]),(void **)(void *)&Lnk87);} /* ADD-TERM-LINKS */
static void LnkT86(){ call_or_link(((object)VV[86]),(void **)(void *)&Lnk86);} /* PREP-TERM-FN */
static void LnkT85(){ call_or_link(((object)VV[85]),(void **)(void *)&Lnk85);} /* PREP-TY-FN */
static void LnkT84(){ call_or_link(((object)VV[84]),(void **)(void *)&Lnk84);} /* ML-MK_ABS */
static void LnkT83(){ call_or_link(((object)VV[83]),(void **)(void *)&Lnk83);} /* CONCAT */
static void LnkT81(){ call_or_link(((object)VV[81]),(void **)(void *)&Lnk81);} /* MK_REALVAR */
static void LnkT80(){ call_or_link(((object)VV[80]),(void **)(void *)&Lnk80);} /* UNIQUESYM */
static void LnkT79(){ call_or_link(((object)VV[79]),(void **)(void *)&Lnk79);} /* CONSPROP */
static void LnkT78(){ call_or_link(((object)VV[78]),(void **)(void *)&Lnk78);} /* GENLINK */
static void LnkT77(){ call_or_link(((object)VV[77]),(void **)(void *)&Lnk77);} /* NEW-VAR-TYPE */
static void LnkT76(){ call_or_link(((object)VV[76]),(void **)(void *)&Lnk76);} /* ASSOC1 */
static void LnkT75(){ call_or_link(((object)VV[75]),(void **)(void *)&Lnk75);} /* Q-MK_PRED */
static void LnkT74(){ call_or_link(((object)VV[74]),(void **)(void *)&Lnk74);} /* Q-MK_PAIR */
static void LnkT73(){ call_or_link(((object)VV[73]),(void **)(void *)&Lnk73);} /* ML-MK_EXISTS */
static void LnkT72(){ call_or_link(((object)VV[72]),(void **)(void *)&Lnk72);} /* ML-MK_FORALL */
static void LnkT71(){ call_or_link(((object)VV[71]),(void **)(void *)&Lnk71);} /* Q-FREE-VAR */
static void LnkT70(){ call_or_link(((object)VV[70]),(void **)(void *)&Lnk70);} /* STRIP-ANTIQUOT */
static void LnkT69(){ call_or_link(((object)VV[69]),(void **)(void *)&Lnk69);} /* UNIFY */
static void LnkT68(){ call_or_link(((object)VV[68]),(void **)(void *)&Lnk68);} /* Q-TYPEOF */
static void LnkT67(){ call_or_link(((object)VV[67]),(void **)(void *)&Lnk67);} /* OMUTANT */
static void LnkT66(){ call_or_link(((object)VV[66]),(void **)(void *)&Lnk66);} /* PREDICATEP */
|