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
|
# 07jun12abu
# (c) Software Lab. Alexander Burger
(code 'Code)
initCode
### Global return labels ###
(code 'Ret 0)
ret
(code 'Retc 0)
setc
ret
(code 'Retnc 0)
clrc
ret
(code 'Retz 0)
setz
ret
(code 'Retnz 0)
clrz
ret
(code 'RetNil 0)
ld E Nil
ret
(code 'RetT 0)
ld E TSym
ret
(code 'RetE_E 0)
ld E (E) # Get value or CAR
ret
### Main entry point ###
(code 'main)
initMain
ld (AV0) X # Save command
ld (AV) Y # and argument vector
# Check debug mode
ld C (Z) # Last argument
ld B (C) # First byte
cmp B (char "+") # Single plus?
if eq # Yes
nul (C 1)
if z # Yes
ld (Dbg) TSym # Set '*Dbg'
ld (Z) 0 # Clear last argument
end
end
# Locate home directory
ld Y (Y) # First argument
null Y # Any?
if nz # Yes
ld B (Y) # First byte
cmp B (char "-") # Dash?
if ne # No
ld Z Y # Keep in Y
ld B (char "/") # Contains a slash?
slen C Y # String length in C
memb Z C
if eq # Yes
do
memb Z C # Find last one
until ne
ld A Z
sub A 2 # "./lib.l"?
cmp A Y # Last slash is second byte?
jne 10 # No
ld B (Y) # First byte is "."?
cmp B (char ".")
if ne # No
10 sub Z Y # Length
ld C Z # Keep in Z
inc C # Space for null byte
call allocC_A
ld (Home) A # Set 'Home'
movn (A) (Y) Z # Copy path including "/"
add Z (Home) # Pointer to null byte
set (Z) 0 # Clear it
end
end
end
end
# Initialize globals
cc getpid() # PID in A
shl A 4 # Make short number
or A CNT
ld (Pid) A
ld (Stack0) S # Save top level stack pointer
ld (StkLimit) 0 # Initially without stack limit
ld L 0 # Init link register
call heapAlloc # Allocate initial heap
ld E Nil # Init internal symbols
lea Z (E VI) # Skip padding and 'pico' cell
do
ld X (E TAIL) # Get name
ld Y Pico # From initial symbol namespace
call internEXY_FE # Store to internals
ld E Z
cnt (Z TAIL) # Short name?
if nz # Yes
add Z II # Next symbol
else
add Z IV
end
cmp E SymTabEnd
until gt
ld (Get_A) getStdin_A
ld A 0 # Standard input
call initInFileA_A # Create input file
ld (InFile) A # Set to default InFile
ld (PutB) putStdoutB
ld A 2 # Standard error
call initOutFileA_A # Create output file
ld A 1 # Standard output
call initOutFileA_A # Create output file
ld (OutFile) A # Set to default OutFile
cc tcgetattr(0 OrgTermio) # Save terminal I/O
not B
ld (Tio) B # and flag
sub S (%% SIGSET_T) # Create signal mask structure
cc sigfillset(S) # Set all signals to unblocked
cc sigprocmask(SIG_UNBLOCK S 0)
add S (%% SIGSET_T) # Drop mask structure
ld E sig # Install standard signal handler
ld C SIGHUP
call iSignalCE # for SIGHUP
ld C SIGUSR1
call iSignalCE # for SIGUSR1
ld C SIGUSR2
call iSignalCE # for SIGUSR2
ld C SIGALRM
call iSignalCE # for SIGALRM
ld C SIGTERM
call iSignalCE # for SIGTERM
ld C SIGIO
call iSignalCE # for SIGIO
ld E sigTerm # Install terminating signal handler for SIGINT
ld C SIGINT
call iSignalCE
cc signal(SIGCHLD sigChld) # Install child signal handler for SIGCHLD
cc signal(SIGPIPE SIG_IGN) # Ignore signals
cc signal(SIGTTIN SIG_IGN)
cc signal(SIGTTOU SIG_IGN)
cc gettimeofday(Buf 0) # Get time
ld A (Buf) # tv_sec
mul 1000000 # Convert to microseconds
add A (Buf I) # tv_usec
ld (USec) A # Store
ld X 0 # Runtime expression
call loadAllX_E # Load arguments
ld E sig # Install standard signal handler for SIGINT
ld C SIGINT
set (Repl) 1 # Set REPL flag
call iSignalCE
(code 'restart)
ld B (char ":") # Prompt
ld E Nil # REPL
ld X 0 # Runtime expression
call loadBEX_E
jmp restart
# Load all remaining arguments
(code 'loadAllX_E)
do
ld E ((AV)) # Command line vector
null E # Next string pointer?
jz retNil # No
ld B (E) # Single-dash argument?
cmp B (char "-")
if eq
nul (E 1)
jz retNil # Yes
end
add (AV) I # Increment vector pointer
call mkStrE_E # Make transient symbol
ld B 0 # Prompt
call loadBEX_E
loop
# Give up
(code 'giveupX)
ld A (Pid) # Get PID
shr A 4
cc fprintf((stderr) Giveup A X)
ld E 1
jmp finishE
(code 'execErrS)
cc fprintf((stderr) ExecErr (S))
cc exit(127)
# Install interrupting signal
(code 'iSignalCE)
sub S (%% (* 2 SIGACTION)) # 'sigaction' and 'oldact'
ld (S SA_HANDLER) E # Function pointer
cc sigemptyset(&(S SA_MASK))
ld (S SA_FLAGS) 0
cc sigaction(C S &(S SIGACTION)) # Install handler
add S (%% (* 2 SIGACTION))
ret
# Allocate memory
(code 'allocC_A 0)
cc malloc(C) # Allocate memory of size C
null A # OK?
jz NoMemory # No
ret
(code 'allocAE_A 0)
cc realloc(A E) # Reallocate pointer in A to size E
null A # OK?
jnz Ret # Return
: NoMemory
ld X AllocErr # No memory
jmp giveupX
# Allocate cell heap
(code 'heapAlloc 0) # AEX
ld A 0 # NULL pointer
ld E (+ HEAP I) # Heap allocation size
call allocAE_A
ld E A # Heap pointer
ld (A HEAP) (Heaps) # Set heap link
ld (Heaps) A
add A (- HEAP 16) # A on last cell in chunk
ld X (Avail) # Initialize free list
do
ld (A) X # Link avail
ld X A
sub A 16
cmp A E # Done?
until lt # Yes
ld (Avail) X # Set new Avail
ret
# Signal handler
(code 'sighandler0)
push E
ld E 0
call sighandlerE
pop E
ret
(code 'sighandlerX)
push E
ld E X
call sighandlerE
pop E
ret
(code 'sighandlerE)
null (EnvProtect) # Protected?
if z # No
ld (EnvProtect) 1
push A
push C
do
null (Signal (* I SIGIO)) # Test signals
if nz
dec (Signal) # Decrement signal counters
dec (Signal (* I SIGIO))
ld E (Sigio) # Run 'Sigio'
call execE
else
null (Signal (* I SIGUSR1))
if nz
dec (Signal)
dec (Signal (* I SIGUSR1))
ld E (Sig1) # Run 'Sig1'
call execE
else
null (Signal (* I SIGUSR2))
if nz
dec (Signal)
dec (Signal (* I SIGUSR2))
ld E (Sig2) # Run 'Sig2'
call execE
else
null (Signal (* I SIGALRM))
if nz
dec (Signal)
dec (Signal (* I SIGALRM))
ld E (Alarm) # Run 'Alarm'
call execE
else
null (Signal (* I SIGINT))
if nz
dec (Signal)
dec (Signal (* I SIGINT))
nul (PRepl) # Child of REPL process?
if z # No
null E # Runtime expression?
ldz E Nil # No: Default to NIL
call brkLoadE_E # Enter debug breakpoint
end
else
null (Signal (* I SIGHUP))
if nz
dec (Signal)
dec (Signal (* I SIGHUP))
ld E (Hup) # Run 'Hup'
call execE
else
null (Signal (* I SIGTERM))
if nz
push X
ld X (Child) # Iterate children
ld C (Children) # Count
ld E 0 # Flag
do
sub C VI # More?
while ge # Yes
null (X) # 'pid'?
if nz # Yes
cc kill((X) SIGTERM) # Try to terminate
nul4 # OK?
ldz E 1 # Yes: Set flag
end
add X VI # Increment by sizeof(child)
loop
pop X
null E # Still terminated any child?
if z # No
ld (Signal) 0
ld E 0 # Exit OK
jmp byeE
end
end
end
end
end
end
end
end
null (Signal) # More signals?
until z # No
pop C
pop A
ld (EnvProtect) 0
end
ret
(code 'sig)
begin # Signal number in A
null (TtyPid) # Kill terminal process?
if nz # Yes
cc kill((TtyPid) A)
else
shl A 3 # Signal index
inc (A Signal)
inc (Signal)
end
return
(code 'sigTerm)
begin # Ignore signal number
null (TtyPid) # Kill terminal process?
if nz # Yes
cc kill((TtyPid) SIGTERM)
else
inc (Signal (* I SIGTERM))
inc (Signal)
end
return
(code 'sigChld)
begin # Ignore signal number
call errno_A # Save 'errno'
push A
sub S I # 'stat'
do
cc waitpid(0 S WNOHANG) # Wait for child
nul4 # Pid greater zero?
while nsz # Yes
ld C A # Keep Pid
call wifsignaledS_F # WIFSIGNALED(S)?
if nz # Yes
call wtermsigS_A # Get signal number WTERMSIG(S)
cc fprintf((stderr) PidSigMsg C A)
end
loop
add S I # Drop 'stat'
pop C # Restore 'errno'
call errnoC
return
(code 'tcSetC)
null (Termio) # In raw mode?
if nz # Yes
do
cc tcsetattr(0 TCSADRAIN C) # Set terminal I/O
nul4 # OK?
while nz # No
call errno_A
cmp A EINTR # Interrupted?
until ne # No
end
ret
(code 'sigTermStop)
begin # Ignore signal number
ld C OrgTermio # Set original terminal I/O
call tcSetC
sub S (%% SIGSET_T) # Create mask structure
cc sigemptyset(S) # Init to empty signal set
cc sigaddset(S SIGTSTP) # Add stop signal
cc sigprocmask(SIG_UNBLOCK S 0) # Remove blocked signals
add S (%% SIGSET_T) # Drop mask structure
cc signal(SIGTSTP SIG_DFL)
cc raise(SIGTSTP)
cc signal(SIGTSTP sigTermStop)
ld C (Termio)
call tcSetC
return
(code 'setRaw 0)
nul (Tio) # Terminal I/O?
if nz # Yes
null (Termio) # Already in raw mode?
if z # No
ld C TERMIOS # Allocate space for termio structure
call allocC_A
ld (Termio) A # Save it
ld C A # Pointer in C
movn (C) (OrgTermio) TERMIOS # Copy original termio structure
ld A 0 # Clear c_iflag
st4 (C C_IFLAG)
ld A ISIG # ISIG in c_lflag
st4 (C C_LFLAG)
set (C (+ C_CC VMIN)) 1
set (C (+ C_CC VTIME)) 0
call tcSetC # Set terminal I/O
cc signal(SIGTSTP SIG_IGN) # Ignore stop signals
cmp A SIG_DFL # Not set yet?
if eq # Yes
cc signal(SIGTSTP sigTermStop) # Handle stop signals
end
end
end
ret
(code 'setCooked 0)
ld C OrgTermio # Set original terminal I/O
call tcSetC
cc free((Termio)) # Clear Termio
ld (Termio) 0
ret
# (raw ['flg]) -> flg
(code 'doRaw 2)
ld E (E CDR) # Arg?
atom E
if nz # No
null (Termio) # Return termio flag
jnz retT
ld E Nil
ret
end
ld E (E) # Evaluate arg
eval
cmp E Nil # NIL?
if eq # Yes
call setCooked # Set terminal to cooked mode
ld E Nil
ret
end
call setRaw # Set terminal to raw mode
ld E TSym
ret
# (alarm 'cnt . prg) -> cnt
(code 'doAlarm 2)
push X
push Y
ld X E
ld Y (E CDR) # Y on args
call evCntXY_FE # Get 'cnt'
cc alarm(E) # Set alarm
ld (Alarm) (Y CDR)
ld E A # Get old alarm
shl E 4 # Make short number
or E CNT
pop Y
pop X
ret
# (sigio 'cnt . prg) -> cnt
(code 'doSigio 2)
push X
push Y
ld X E
ld Y (E CDR) # Y on args
call evCntXY_FE # Get fd
ld (Sigio) (Y CDR) # Set handler
ld A (Pid) # Get process ID
shr A 4 # Normalize
cc fcntl(E F_SETOWN A) # Receive SIGIO events
cc fcntl(E F_GETFL 0) # Get file status flags
or A (| O_NONBLOCK O_ASYNC)
cc fcntl(E F_SETFL A) # Set file status flags
shl E 4 # Return fd
or E CNT
pop Y
pop X
ret
# (protect . prg) -> any
(code 'doProtect 2)
push X
ld X (E CDR) # Get 'prg'
inc (EnvProtect)
prog X # Run 'prg'
dec (EnvProtect)
pop X
ret
# (heap 'flg) -> cnt
(code 'doHeap 2)
ld E ((E CDR)) # Get arg
eval # Eval it
cmp E Nil # NIL?
if eq # Yes
ld E ZERO # Init count
ld A (Heaps) # Get heap list
do
add E (hex "10") # Increment count
ld A (A HEAP) # Get link
null A # Done?
until z # Yes
ret
end
ld A 0 # Init count
ld C (Avail) # Get avail list
do
null C # Any?
while nz # Yes
inc A # Increment count
ld C (C) # Follow link
loop
div CELLS # (C is zero)
ld E A
shl E 4 # Make short number
or E CNT
ret
# (stack ['cnt]) -> cnt | (.. sym . cnt)
(code 'doStack 2)
push X
ld X E
ld E (E CDR) # Arg?
atom E
if z # Yes
null (Stacks) # Stack segments allocated?
if z # No
ld E (E) # Eval 'cnt'
call evCntEX_FE
shl E 20 # [MB]
ld (StkSize) E # Set new stack size
shr E 16 # Make short number [MB]
or E CNT
pop X
ret
end
end
ld E (StkSize) # Return current stack size
shr E 16 # Make short number [MB]
or E CNT
ld X (Stack0) # Collect coroutines
ld C (Stacks) # Segment bitmask
do
sub X (StkSize) # Next segment
shr C 1 # In use?
if c # Yes
call consE_A # Cons 'tag'
ld (A) (X -I)
ld (A CDR) E
ld E A
continue T
end
until z
pop X
ret
# (adr 'var) -> num
# (adr 'num) -> var
(code 'doAdr 2)
ld E ((E CDR)) # Eval arg
eval
num E # 'num' argument?
if nz # Yes
off E CNT # Make 'var'
ret
end
or E CNT # Make 'num'
ret
# (env ['lst] | ['sym 'val] ..) -> lst
(code 'doEnv 2)
push X
ld X (E CDR)
link
push Nil # <L II> Safe
push Nil # <L I> Result
link
atom X # Args?
if nz # No
push Y
ld Y (EnvBind) # Bindings
do
null Y # Bindings?
while nz # Yes
ld C (Y) # End of bindings
null (Y -I) # Env swap zero?
if z # Yes
add Y I # Y on bindings
do
ld E (Y) # Next symbol
ld X (L I) # Get result
do
atom X # More result items?
if nz # No
call cons_A # Cons symbol and its value
ld (A) E
ld (A CDR) (E)
call consA_X # Cons to result
ld (X) A
ld (X CDR) (L I)
ld (L I) X
break T
end
cmp E ((X)) # Symbol already in result?
while ne # No
ld X (X CDR) # Next result item
loop
add Y II # Skip value
cmp Y C # More?
until eq # No
end
ld Y (C I) # Bind link
loop
pop Y
else
do
ld E (X) # Eval 'lst' or 'sym'
eval
ld (L II) E # Save
atom E # 'lst'?
if z # Yes
do
call cons_A # Prepare new cell
ld C (E) # Next item already a pair?
atom C
if z # Yes
ld (A) (C) # Copy it
ld (A CDR) (C CDR)
else
ld (A) C # Cons symbol and its value
ld (A CDR) (C)
end
call consA_C # Cons to result
ld (C) A
ld (C CDR) (L I)
ld (L I) C
ld E (E CDR) # Next item in 'lst'
atom E # Any?
until nz # No
else
cmp E Nil # NIL?
if ne # No
ld X (X CDR) # Next arg
ld E (X) # Eval
eval
call consE_A # Cons symbol and value
ld (A) (L II) # Safe
ld (A CDR) E
call consA_C # Cons to result
ld (C) A
ld (C CDR) (L I)
ld (L I) C
end
end
ld X (X CDR) # More args?
atom X
until nz # No
end
ld E (L I) # Get result
drop
pop X
ret
# (up [cnt] sym ['val]) -> any
(code 'doUp 2)
push X
push Y
push Z
ld C 1 # Count
ld E (E CDR) # First arg
ld X (E) # Get 'sym'
cnt X # 'cnt'?
if nz # Yes
ld C X # Count
shr C 4 # Normalize
ld E (E CDR) # Skip arg
ld X (E) # 'sym'
end
ld E (E CDR) # Last arg
ld Y (EnvBind) # Bindings
ld Z X # Value pointer
do
null Y # Bindings?
while nz # Yes
ld A (Y) # End of bindings in A
add Y I
do
cmp X (Y) # Found symbol?
if eq # Yes
lea Z (Y I) # Point to saved value
dec C # Decrement count
jz 10 # Done
end
add Y II
cmp Y A # More?
until eq # No
ld Y (A I) # Bind link
loop
10 atom E # 'val' arg?
if nz # No
ld E (Z) # Get value
else
ld E (E) # Eval last arg
eval
ld (Z) E # Store value
end
pop Z
pop Y
pop X
ret
(code 'circE_YF)
ld Y E # Keep list in Y
do
or (E) 1 # Mark
ld E (E CDR) # Normal list?
atom E
if nz # Yes
do
off (Y) 1 # Unmark
ld Y (Y CDR)
atom Y # Done?
until nz # Yes
ret # 'nz' - No circularity found
end
test (E) 1 # Detected circularity?
if nz # Yes
do
cmp Y E # Skip non-circular part
while ne
off (Y) 1 # Unmark
ld Y (Y CDR)
loop
do
off (Y) 1 # Unmark circular part
ld Y (Y CDR)
cmp Y E # Done?
until eq # Yes
ret # 'z' - Circularity in Y
end
loop
### Comparisons ###
(code 'equalAE_F 0)
cmp A E # Pointer-equal?
jeq ret # Yes: 'eq'
cnt A # A short?
jnz ret # Yes: 'ne'
big A # A big?
if nz # Yes
big E # E also big?
jz Retnz # No: 'ne'
test A SIGN # A negative?
if nz # Yes
test E SIGN # E also negative?
jz Retnz # No: 'ne'
off A SIGN # Make both positive
off E SIGN
end
do
cmp (A DIG) (E DIG) # Digits equal?
while eq # Yes
ld A (A BIG) # Else next digits
ld E (E BIG)
cmp A E # Pointer-equal?
while ne # No
cnt A # A short?
while z # No
cnt E # E short?
until nz # Yes
ret
end
sym A # A symbolic?
if nz # Yes
num E # E also symbolic?
jnz Retnz
sym E
jz Retnz # No: 'ne'
ld A (A TAIL)
call nameA_A # Get name of A
cmp A ZERO # Any?
jeq retnz # No: 'ne'
ld E (E TAIL)
call nameE_E # Get name of E
cmp E ZERO # Any?
jeq retnz # No: 'ne'
jmp equalAE_F
end
atom E # E atomic?
jnz ret # Yes: 'ne'
push X
push Y
ld X A # Keep list heads
ld Y E
do
push A # Save lists
push E
cmp S (StkLimit) # Stack check
jlt stkErr
ld A (A) # Recurse on CARs
ld E (E)
off E 1 # Clear possible mark
call equalAE_F # Equal?
pop E # Retrieve lists
pop A
break ne # No: 'ne'
atom (A CDR) # A's CDR atomic?
if nz # Yes
push A # Save lists
push E
ld A (A CDR) # Recurse on CDRs
ld E (E CDR)
call equalAE_F # Compare with E's CDR
pop E # Retrieve lists
pop A
break T
end
atom (E CDR) # E's CDR atomic?
break nz # Yes: 'ne'
or (A) 1 # Mark
ld A (A CDR)
ld E (E CDR)
test (A) 1 # Detected circularity?
if nz
do
cmp X A # Skip non-circular parts
if eq # Done
cmp Y E # Circular parts same length?
if eq # Perhaps
do
ld X (X CDR) # Compare
ld Y (Y CDR)
cmp Y E # End of second?
if eq # Yes
cmp X A # Also end of first?
break T
end
cmp X A # End of first?
break eq # Yes
loop
end
break T
end
cmp Y E
if eq
clrz # Result "No"
break T
end
off (X) 1 # Unmark
ld X (X CDR)
ld Y (Y CDR)
loop
push F # Save result
do
off (X) 1 # Unmark circular part
ld X (X CDR)
cmp X A
until eq
pop F # Get result
pop Y
pop X
ret
end
loop
push F # Save result
do
cmp X A # Skip non-circular part
while ne
off (X) 1 # Unmark
ld X (X CDR)
loop
pop F # Get result
pop Y
pop X
ret
(code 'compareAE_F 0) # C
cmp A E # Pointer-equal?
jeq ret # Yes
cmp A Nil
if eq # [NIL E]
10 or B B # nz
20 setc # lt
ret
end
cmp A TSym
if eq # [T E]
30 or B B # nz
40 clrc # gt
ret
end
num A # Number?
if nz # Yes
num E # Both?
jnz cmpNumAE_F # [<num> <num>]
cmp E Nil
jeq 30 # [<num> NIL]
setc # lt
ret
end
sym A
if nz # [<sym> ..]
num E
jnz 40 # [<sym> <num>]
cmp E Nil
jeq 30 # [<sym> NIL]
atom E
jz 10 # [<sym> <pair>]
cmp E TSym
jeq 10 # [<sym> T]
push X # [<sym> <sym>]
ld X (A TAIL)
call nameX_X # Get A's name in X
cmp X ZERO # Any?
if eq # No
ld E (E TAIL)
call nameE_E # Second name in E
cmp E ZERO # Any?
if eq # No
shr A 5 # Random bit from A (...x1000) into carry (non-zero)
else
setc # lt
end
pop X
ret
end
ld E (E TAIL)
call nameE_E # Get E's name in E
cmp E ZERO # Any?
if eq # No
50 or B B # nz
60 clrc # gt
70 pop X
ret
end
do
cnt X # Get next digit from X into A
if nz
ld A X # Short
shr A 4 # Normalize
ld X 0
else
ld A (X DIG) # Get next digit
ld X (X BIG)
end
cnt E # Get next digit from E into C
if nz
ld C E # Short
shr C 4 # Normalize
ld E 0
else
ld C (E DIG) # Get next digit
ld E (E BIG)
end
do
cmp B C # Bytes equal?
jne 70 # No: lt or gt
shr A 8 # Next byte in A?
if z # No
shr C 8 # Next byte in C?
if nz # Yes
setc # lt
pop X
ret
end
null X # X done?
if z # Yes
null E # E also done?
jz 70 # Yes: eq
setc # lt
pop X
ret
end
null E # E done?
jz 50 # Yes: gt
break T
end
shr C 8 # Next byte in C?
jz 50 # No: gt
loop
loop
end
atom E
if nz # [<pair> <sym>]
cmp E TSym
if eq # [<pair> T]
or B B # nz
setc # lt
ret
end
clrc # gt
ret
end
push X # [<pair> <pair>]
push Y
ld X A # Keep originals
ld Y E
do
push A # Recurse on CAR
push E
ld A (A)
ld E (E)
cmp S (StkLimit) # Stack check
jlt stkErr
call compareAE_F # Same?
pop E
pop A
while eq # Yes
ld A (A CDR) # Next elements
ld E (E CDR)
atom A # End of A?
if nz # Yes
cmp S (StkLimit) # Stack check
jlt stkErr
call compareAE_F # Compare CDRs
break T
end
atom E # End of E?
if nz # Yes
cmp E TSym
if ne
clrc # gt [<pair> <atom>]
break T
end
or B B # nz [<pair> T]
setc # lt
break T
end
cmp A X # Circular list?
if eq
cmp E Y
break eq # Yes
end
loop
pop Y
pop X
ret # F
(code 'memberXY_FY 0)
ld C Y # Keep head in C
do
atom Y # List?
while z # Yes
ld A X
ld E (Y)
call equalAE_F # Member?
jeq ret # Return list
ld Y (Y CDR) # Next item
cmp C Y # Hit head?
jeq retnz # Yes
loop
ld A X
ld E Y
jmp equalAE_F # Same atoms?
# (quit ['any ['any]])
(code 'doQuit 2)
ld X (E CDR) # Args
call evSymX_E # Evaluate to a symbol
call bufStringE_SZ # Write to stack buffer
ld X (X CDR) # Next arg?
atom X
ldnz E 0 # No
if z # Yes
ld E (X)
eval # Eval
end
ld X 0 # No context
ld Y QuitMsg # Format string
ld Z S # Buffer pointer
jmp errEXYZ # Jump to error handler
### Evaluation ###
# Apply EXPR in C to CDR of E
(code 'evExprCE_E 0)
push X
push Y
push Z
cmp S (StkLimit) # Stack check
jlt stkErrE
ld X (E CDR) # Get CDR
ld Y (C) # Parameter list in Y
ld Z (C CDR) # Body in Z
push (EnvBind) # Build bind frame
link
push (At) # Bind At
push At
do
atom Y # More evaluating parameters?
while z # Yes
ld E (X) # Get next argument
ld X (X CDR)
eval+ # Evaluate and save
push E
push (Y) # Save symbol
ld Y (Y CDR)
loop
cmp Y Nil # NIL-terminated parameter list?
if eq # Yes: Bind parameter symbols
ld Y S # Y on bindings
do
ld X (Y) # Symbol in X
add Y I
ld A (X) # Old value in A
ld (X) (Y) # Set new value
ld (Y) A # Save old value
add Y I
cmp Y L # End?
until eq # Yes
link
ld (EnvBind) L # Close bind frame
push 0 # Init env swap
prog Z # Run body
add S I # Drop env swap
pop L # Get link
do # Unbind symbols
pop X # Next symbol
pop (X) # Restore value
cmp S L # More?
until eq # No
pop L # Restore link
pop (EnvBind) # Restore bind link
pop Z
pop Y
pop X
ret
end
# Non-NIL parameter
cmp Y At # '@'?
if ne # No
push (Y) # Save last parameter's old value
push Y # and the last parameter
ld (Y) X # Set to unevaluated argument list
lea Y (S II) # Y on evaluated bindings
do
ld X (Y) # Symbol in X
add Y I
ld A (X) # Old value in A
ld (X) (Y) # Set new value
ld (Y) A # Save old value
add Y I
cmp Y L # End?
until eq # Yes
link
ld (EnvBind) L # Close bind frame
push 0 # Init env swap
prog Z # Run body
add S I # Drop env swap
pop L # Get link
do # Unbind symbols
pop X # Next symbol
pop (X) # Restore value
cmp S L # More?
until eq # No
pop L # Restore link
pop (EnvBind) # Restore bind link
pop Z
pop Y
pop X
ret
end
# Evaluated argument list
link # Close bind frame
ld Y L # Y on frame
push 0 # Init env swap
push (EnvNext) # Save current 'next'
push (EnvArgs) # and varArgs base
atom X # Any args?
if nz # No
ld (EnvArgs) 0
ld (EnvNext) 0
else
link # Build varArgs frame
do
ld E (X) # Get next argument
eval+ # Evaluate and save
push E
ld X (X CDR)
atom X # More args?
until nz # No
ld (EnvArgs) S # Set new varArgs base
ld (EnvNext) L # Set new 'next'
link # Close varArgs frame
end
ld (EnvBind) Y # Close bind frame
ld C (Y) # End of bindings in C
add Y I
do
ld X (Y) # Symbol in X
add Y I
ld A (X) # Old value in A
ld (X) (Y) # Set new value
ld (Y) A # Save old value
add Y I
cmp Y C # End?
until eq # Yes
prog Z # Run body
null (EnvArgs) # VarArgs?
if nz # Yes
drop # Drop varArgs
end
pop (EnvArgs) # Restore varArgs base
pop (EnvNext) # and 'next'
add S I # Drop env swap
pop L # Get link
do # Unbind symbols
pop X # Next symbol
pop (X) # Restore value
cmp S L # More?
until eq # No
pop L # Restore link
pop (EnvBind) # Restore bind link
pop Z
pop Y
pop X
ret
# Evaluate a list
(code 'evListE_E 0)
ld C (E) # Get CAR in C
num C # Number?
jnz ret # Yes: Return list
sym C # Symbol?
if nz # Yes
10 do # C is a symbol
null (Signal) # Signal?
if nz # Yes
push E
call sighandlerE
pop E
end
ld A (C) # Get VAL
cnt A # Short number?
jnz (A T) # Yes: Eval SUBR
big A # Undefined if bignum
jnz undefinedCE
cmp A (A) # Auto-symbol?
if ne # No
ld C A
atom C # Symbol?
jz evExprCE_E # No: Apply EXPR
else
call sharedLibC_FA # Try dynamic load
jnz (A T) # Eval SUBR
jmp undefinedCE
end
loop
end
push E
ld E C
cmp S (StkLimit) # Stack check
jlt stkErr
call evListE_E
ld C E
pop E
cnt C # Short number?
jnz (C T) # Yes: Eval SUBR
big C # Undefined if bignum
jnz undefinedCE
link
push C # Save function
link
atom C # Symbol?
if z
call evExprCE_E # No: Apply EXPR
else
call 10
end
drop
ret
(code 'sharedLibC_FA)
push C
push E
push Y
push Z
ld E C # Get symbol in E
call bufStringE_SZ # Write to stack buffer
ld C 0
ld Y S # Search for colon and slash
do
ld B (Y) # Next byte
or B B # End of string?
jz 90 # Yes
cmp B (char ":") # Colon?
while ne # No
cmp B (char "/") # Slash?
if eq # Yes
ld C Y # Keep pointer to slash
end
inc Y # Increment buffer pointer
loop
cmp Y Z # At start of buffer?
jeq 90 # Yes
nul (Y 1) # At end of buffer?
jz 90 # Yes
set (Y) 0 # Replace colon with null byte
inc Y # Point to token
null C # Contained '/'?
ld C S # Pointer to lib name
if z # No
sub S 8 # Extend buffer
sub C 4 # Prepend "lib/"
set (C 3) (char "/")
set (C 2) (char "b")
set (C 1) (char "i")
set (C) (char "l")
ld A (Home) # Home directory?
null A
if nz # Yes
do
inc A # Find end
nul (A)
until z
sub A (Home) # Calculate length
sub C A # Adjust buffer
ld S C
off S 7
movn (C) ((Home)) A # Insert home path
end
end
cc dlopen(C (| RTLD_LAZY RTLD_GLOBAL)) # Open dynamic library
null A # OK?
if nz # Yes
cc dlsym(A Y) # Find dynamic symbol
null A # OK?
if nz # Yes
? *AlignedCode
or A CNT # Make short number
=
ld (E) A # 'nz' - Set function definition
end
end
90 ld S Z # Drop buffer
pop Z
pop Y
pop E
pop C
ret
# (errno) -> cnt
(code 'doErrno 2)
call errno_A # Get 'errno'
ld E A
shl E 4 # Make short number
or E CNT
ret
# (native 'cnt1|sym1 'cnt2|sym2 'any 'any ..) -> any
(code 'doNative 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval library 'cnt1|sym1'
eval
cnt E # Library handle?
if nz # Yes
shr E 4 # Normalize
push E # <S> Library handle
else
big E # Library handle?
if nz # Yes
push (E DIG) # <S> Library handle
else
call needSymEX # Check symbol
ld A (E TAIL) # Check for main program library
call nameA_A # Get name
cmp A (| CNT (>> -4 (char "@"))) # "@"?
if eq # Yes
cc dlopen(0 (| RTLD_LAZY RTLD_GLOBAL)) # Open main library
else
call pathStringE_SZ # Write to stack buffer
cc dlopen(S (| RTLD_LAZY RTLD_GLOBAL)) # Open dynamic library
ld S Z # Drop buffer
end
null A # OK?
jz dlErrX # No
push A # <S> Library handle
test A (hex "F000000000000000") # Fit in short number?
if z # Yes
shl A 4 # Make short number
or A CNT
else
call boxNumA_A # Make bignum
end
ld (E) A # Set value of 'sym1'
end
end
ld Y (Y CDR) # Second arg
ld E (Y) # Eval function 'cnt2|sym2'
eval
ld Z S # Stack marker in Z
cnt E # Function pointer?
if nz # Yes
shr E 4 # Normalize
ld (S) E # <Z> Function pointer
else
big E # Function pointer??
if nz # Yes
ld (S) (E DIG) # <Z> Function pointer
else
call needSymEX # Check symbol
call bufStringE_SZ # Write to stack buffer
cc dlsym((Z) S) # Find dynamic symbol
null A # OK?
jz dlErrX # No
ld S Z # Drop buffer
ld (S) A # <Z> Function pointer
test A (hex "F000000000000000") # Fit in short number?
if z # Yes
shl A 4 # Make short number
or A CNT
else
call boxNumA_A # Make bignum
end
ld (E) A # Set value
end
end
ld Y (Y CDR) # Third arg
ld E (Y) # Eval result specification
eval
link
push E # <Z -II> Result specification
do
ld Y (Y CDR) # Arguments?
atom Y
while z # Yes
ld E (Y) # Eval argument specification
eval+
push E
loop
ld X S # X on last argument
link
push (Link) # Save Link
ld (Link) L
lea Y (Z -II) # Limit
do
cmp X Y # More args?
while ne # Yes
ld E (X) # Argument specification
num E # Number?
if nz # Yes
cnt E # Short?
if nz # Yes
shr E 4 # Normalize
if c # Sign?
neg E # Yes
end
else
test E SIGN # Sign?
if z # No
ld E (E DIG)
else
ld E (E (- DIG SIGN))
neg E # Negate
end
end
push E # Pass long argument
push 0 # as Integer/pointer value
else
sym E # String?
if nz # Yes
push Z
call bufStringE_SZ # Write to stack buffer
cc strdup(S) # Make new string
ld S Z # Drop buffer
pop Z
push A # Pass pointer argument
push 0 # as Integer/pointer value
else
ld C (E CDR) # Fixpoint?
cnt C
if nz # Yes
push (E) # Pass number or flag
push C # as fixpoint value
else # Structure
ld E C # Ignore variable
ld C ((E)) # Get buffer size
shr C 4 # Normalize
call allocC_A # Allocate buffer
push A # Pass pointer argument
push 0 # as Integer/pointer value
push Z
ld Z A # Buffer pointer in Z
do
ld E (E CDR)
cnt E # Fill rest?
if nz # Yes
ld A E # Byte value
shr A 4 # in B
do
dec C # Done?
while ns # No
ld (Z) B # Store byte in buffer
inc Z # Increment buffer pointer
loop
break T
end
atom E # Fill structure?
while z # Yes
ld A (E) # Next value
call natBufACZ_CZ # Store in buffer
null C # Buffer full?
until z # Yes
pop Z
end
end
end
add X I # Next arg
loop
lea X (L -I) # Top of arguments
ld Y (Z) # Get function pointer
cc (Y) X # Call C-function
ld (Link) (L -I) # Restore Link
ld E (Z -II) # Get result specification
ld C 0 # No pointer yet
call natRetACE_CE # Extract return value
ld (Z -II) E # Save result
lea Y (Z -III) # Clean up allocated C args
do
cmp Y L # Args?
while ne # Yes
add S I # Drop type
pop X # Next C arg
ld E (Y) # Next Lisp arg
num E # Number?
if z # No
sym E # String?
jnz 10 # Yes
cnt (E CDR) # Fixpoint?
if z # No
cmp (E) Nil # Variable?
if ne # Yes
ld C X # Structure pointer
ld E (((E CDR)) CDR) # Result specification
call natRetACE_CE # Extract value
ld (((Y))) E # Store in variable
end
10 cc free(X) # Free string or buffer
end
end
sub Y I
loop
ld E (Z -II) # Get result
drop
add S I # Drop library handle
pop Z
pop Y
pop X
ret
(code 'natBufACZ_CZ 0)
atom A # Byte or unsigned?
if nz # Yes
shr A 4 # Byte?
if nc # Yes
ld (Z) B # Store byte in buffer
inc Z # Increment buffer pointer
dec C # Decrement size
ret
end
st4 (Z) # Store unsigned in buffer
add Z 4 # Size of unsigned
sub C 4 # Decrement size
ret
end
# (num|sym . cnt) or ([-]1.0 . lst)
push X
ld X (A CDR) # 'cnt' or 'lst'
ld A (A) # 'num', 'sym' or [-]1.0
cnt X # 'cnt'?
if nz # Yes
push Y
ld Y Z # Y on buffer
shr X 4 # Normalize length
add Z X # Field width
sub C X # New buffer size
num A # (num . cnt)?
if nz # Yes
cnt A # Short?
if nz # Yes
shr A 4 # Normalize
if c # Sign?
neg A # Yes
end
else
test A SIGN # Sign?
if z # No
ld A (A DIG)
else
ld A (A (- DIG SIGN))
neg A # Negate
end
end
? *LittleEndian
do
ld (Y) B # Store byte
inc Y # Increment pointer
shr A 8
dec X # Done?
until z # Yes
=
? (not *LittleEndian)
ld Y Z
do
dec Y # Decrement pointer
ld (Y) B # Store byte
shr A 8
dec X # Done?
until z # Yes
=
else
sym A # (sym . cnt)?
if nz # Yes
push C
ld X (A TAIL) # Get name
call nameX_X
ld C 0
do
call symByteCX_FACX # Next byte
while nz
ld (Y) B # Store it
inc Y # Increment pointer
loop
set (Y) 0 # Null byte
pop C
end
end
pop Y
else # ([-]1.0 . lst)
do
atom X # More fixpoint numbers?
while z # Yes
float # Convert to floating point
test A SIGN # Scale negative?
if z # No
std # Store double value
add Z 8 # Size of double
sub C 8 # Decrement buffer size
else
stf # Store float value
add Z 4 # Size of float
sub C 4 # Decrement buffer size
end
ld X (X CDR)
loop
end
pop X
ret
(code 'natRetACE_CE 0)
cmp E Nil # NIL?
if ne
cnt E # Scale?
if nz # Yes
null C # Pointer?
if nz # Yes
test E SIGN # Negative?
if z # No
ldd # Get double value
add C 8 # Size of double
else
ldf # Get float value
add C 4 # Size of float
end
end
fixnum # Get fixpoint number or flg
else
cmp E ISym # 'I'?
if eq # Yes
null C # Pointer?
if nz # Yes
ld4 (C)
add C 4 # Size of int
end
ld E (hex "FFFFFFFF") # Sign-extend integer
and E A # into E
ld A (hex "80000000")
xor E A
sub E A # Negative?
if ns # No
shl E 4 # Make short number
or E CNT
else
neg E # Negate
shl E 4 # Make negative short number
or E (| SIGN CNT)
end
else
cmp E NSym # 'N'?
if eq # Yes
null C # Pointer?
if nz # Yes
ld A (C)
add C 8 # Size of long/pointer
end
ld E A # Number
call boxE_E
else
cmp E SSym # 'S'?
if eq # Yes
null C # Pointer?
if nz # Yes
ld A (C)
add C 8 # Size of pointer
end
ld E A # Make transient symbol
call mkStrE_E
else
cmp E CSym # 'C'?
if eq # Yes
null C # Pointer?
if nz # Yes
call fetchCharC_AC # Fetch char
end
ld E Nil # Preload
null A # Char?
if nz # Yes
call mkCharA_A # Make char
ld E A
end
else
cmp E BSym # 'B'?
if eq # Yes
null C # Pointer?
if nz # Yes
ld B (C)
inc C # Size of byte
end
zxt # Byte
ld E A
shl E 4 # Make short number
or E CNT
else
atom E # Atomic?
if z # No: Arrary or structure
null C # Primary return value?
ldz C A # Yes: Get into C
null C # Value NULL?
ldz E Nil # Yes: Return NIL
if nz
push X
push Y
push Z
ld X E # Get specification in X
ld E (X)
call natRetACE_CE # First item
call cons_Y # Make cell
ld (Y) E
ld (Y CDR) Nil
link
push Y # <L I> Result
link
do
ld Z (X CDR)
cnt Z # (sym . cnt)
if nz
shr Z 4 # Normalize
do
dec Z # Decrement count
while nz
ld E (X) # Repeat last type
call natRetACE_CE # Next item
call cons_A # Cons into cell
ld (A) E
ld (A CDR) Nil
ld (Y CDR) A # Append to result
ld Y A
loop
break T
end
atom Z # End of specification?
while z # No
ld X Z
ld E (X) # Next type
call natRetACE_CE # Next item
call cons_A # Cons into cell
ld (A) E
ld (A CDR) Nil
ld (Y CDR) A # Append to result
ld Y A
loop
ld E (L I) # Get result
drop
pop Z
pop Y
pop X
end
end
end
end
end
end
end
end
end
ret
# (struct 'num 'any 'any ..) -> any
(code 'doStruct 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval native value (pointer or scalar)
eval
num E # Number?
jz numErrEX # No
cnt E # Short?
if nz # Yes
shr E 4 # Normalize
ld Z E # Native value in Z
else
ld Z (E DIG) # Native value in Z
end
ld Y (Y CDR) # Next arg
ld E (Y)
eval # Eval 'any'
link
push E # <L I> Result specification
link
push Z # Save native value
do
ld Y (Y CDR) # Arguments?
atom Y
while z # Yes
ld E (Y) # Eval next struct element
eval
ld A E # in A (unused C)
call natBufACZ_CZ # Store in buffer
loop
pop A # Get native value
ld C 0 # No pointer yet
ld E (L I) # Result specification
call natRetACE_CE # Extract return value
drop
pop Z
pop Y
pop X
ret
(code 'fetchCharC_AC 0)
ld B (C) # Fetch first byte
zxt
or B B # Any?
if nz # Yes
inc C
cmp B 128 # Single byte?
if ge # No
test B (hex "20") # Two bytes?
if z # Yes
and B (hex "1F") # First byte 110xxxxx
shl A 6 # xxxxx000000
push A
else # Three bytes
and B (hex "F") # First byte 1110xxxx
shl A 6 # xxxx000000
push A
ld B (C) # Fetch second byte
zxt
inc C
and B (hex "3F") # 10xxxxxx
or A (S) # Combine
shl A 6 # xxxxxxxxxx000000
ld (S) A
end
ld B (C) # Fetch last byte
zxt
inc C
and B (hex "3F") # 10xxxxxx
or (S) A # Combine
pop A # Get result
end
end
ret
: cbl
push L # Save C frame pointer
ld L (Link) # Restore link register
link # Apply args
push (Z I) # 'fun'
xchg A E # First arg
call boxE_E # Make number
push E
ld E C # Second arg
call boxE_E # Make number
push E
ld E A # Third arg
call boxE_E # Make number
push E
ld E X # Fourth arg
call boxE_E # Make number
push E
ld E Y # Fifth arg
call boxE_E # Make number
push E
ld Z S # Z on last argument
link # Close frame
lea Y (S VI) # Pointer to 'fun' in Y
call applyXYZ_E # Apply
ld A E # Return value
shr A 4 # Normalize
if c # Sign?
neg A # Yes
end
drop
pop L # Restore C frame pointer
return
(code 'cbl1 0)
begin # Arguments in A, C, E, X and Y
lea Z (Lisp) # Address of callback function
jmp cbl
: cbl2
begin
lea Z (Lisp II)
jmp cbl
: cbl3
begin
lea Z (Lisp (* 2 II))
jmp cbl
: cbl4
begin
lea Z (Lisp (* 3 II))
jmp cbl
: cbl5
begin
lea Z (Lisp (* 4 II))
jmp cbl
: cbl6
begin
lea Z (Lisp (* 5 II))
jmp cbl
: cbl7
begin
lea Z (Lisp (* 6 II))
jmp cbl
: cbl8
begin
lea Z (Lisp (* 7 II))
jmp cbl
: cbl9
begin
lea Z (Lisp (* 8 II))
jmp cbl
: cbl10
begin
lea Z (Lisp (* 9 II))
jmp cbl
: cbl11
begin
lea Z (Lisp (* 10 II))
jmp cbl
: cbl12
begin
lea Z (Lisp (* 11 II))
jmp cbl
: cbl13
begin
lea Z (Lisp (* 12 II))
jmp cbl
: cbl14
begin
lea Z (Lisp (* 13 II))
jmp cbl
: cbl15
begin
lea Z (Lisp (* 14 II))
jmp cbl
: cbl16
begin
lea Z (Lisp (* 15 II))
jmp cbl
: cbl17
begin
lea Z (Lisp (* 16 II))
jmp cbl
: cbl18
begin
lea Z (Lisp (* 17 II))
jmp cbl
: cbl19
begin
lea Z (Lisp (* 18 II))
jmp cbl
: cbl20
begin
lea Z (Lisp (* 19 II))
jmp cbl
: cbl21
begin
lea Z (Lisp (* 20 II))
jmp cbl
: cbl22
begin
lea Z (Lisp (* 21 II))
jmp cbl
: cbl23
begin
lea Z (Lisp (* 22 II))
jmp cbl
: cbl24
begin
lea Z (Lisp (* 23 II))
jmp cbl
# (lisp 'sym ['fun]) -> num
(code 'doLisp 2)
push X
push Y
ld X E
ld Y (E CDR) # Get tag
call evSymY_E # Evaluate to a symbol
ld A Lisp # Search lisp callback definitions
ld C cbl1
do
cmp E (A) # Found tag?
jeq 10 # Yes
add A II # Next entry
add C "cbl2-cbl1"
cmp A LispEnd
until eq
ld A Lisp # Not found, search for empty slot
ld C cbl1
do
cmp (A I) Nil # Empty?
if eq # Yes
10 push C # Save function pointer
push A # And callback entry
ld (A) E # Store tag
ld E ((Y CDR)) # Eval 'fun'
eval
pop A
ld (A I) E # Store in slot
pop E # Get function pointer
pop Y
pop X
test E (hex "F000000000000000") # Fit in short number?
jnz boxNumE_E # No
shl E 4 # Else make short number
or E CNT
ret
end
add A II # Next entry
add C "cbl2-cbl1"
cmp A LispEnd
until eq
ld Y CbErr
jmp errEXYZ
(code 'lisp 0)
begin # Function name in A, arguments in C, E, X, Y and Z
push L # Save C frame pointer
ld L (Link) # Restore link register
link # Apply args
push ZERO # Space for 'fun'
xchg C E # First arg
call boxE_E # Make number
push E
ld E C # Second arg
call boxE_E # Make number
push E
ld E X # Third arg
call boxE_E # Make number
push E
ld E Y # Fourth arg
call boxE_E # Make number
push E
ld E Z # Fifth arg
call boxE_E # Make number
push E
ld Z S # Z on last argument
link # Close frame
ld C 4 # Build name
ld E A # Function name argument
lea X (S VI) # Pointer to 'fun' entry
do
ld B (E)
call byteSymBCX_CX # Pack byte
inc E # Next byte
nul (E) # Any?
until z
ld X (S VI) # Get name
call findSymX_E # Find or create symbol
lea Y (S VI) # Pointer to 'fun' in Y
ld (Y) E # Store 'fun'
call applyXYZ_E # Apply
ld A E # Return value
shr A 4 # Normalize
if c # Sign?
neg A # Yes
end
drop
pop L # Restore C frame pointer
return
(code 'execE 0)
push X
ld X E
link
push (At) # <L I> Preserve '@'
link
exec X # Execute body
ld (At) (L I)
drop
pop X
ret
(code 'runE_E 0)
push X
ld X E
link
push (At) # <L I> Preserve '@'
link
prog X # Run body
ld (At) (L I)
drop
pop X
ret
(code 'funqE_FE 0)
cnt E # Short number?
jnz retz # Yes
big E # Big number?
jnz ret # No
sym E # Symbol?
jnz ret # Yes
ld C (E CDR) # Check function body
do
atom C # More?
while z # Yes
cmp C E # Circular?
jeq retnz # Yes
ld A (C) # Next item
atom A # Pair?
if z # Yes
num (A) # CAR a number?
if nz # Yes
atom (C CDR) # Must be the last
jz retnz
else
cmp (A) Nil # CAR is NIL?
jeq retnz # Yes
cmp (A) TSym # CAR is T?
jeq retnz # Yes
end
else
cmp (C CDR) Nil # Atomic item must be the last
jne ret
end
ld C (C CDR)
loop
cmp C Nil # Must be NIL-terminated
jne ret
ld E (E) # Get parameter(s)
cmp E Nil # Any?
ldz E TSym # No: Return T
if ne # Yes
ld C E
do
atom C # Atomic parameter?
while z # No
ld A (C) # Next parameter
num A # Number?
jnz ret # Yes
atom A # List?
jz retnz # Yes
cmp A Nil # NIL?
jeq retnz # Yes
cmp A TSym # T?
jeq retnz # Yes
ld C (C CDR) # Rest
cmp C E # Circular?
jeq retnz # Yes
loop
cmp C TSym # T?
jeq retnz # Yes
num C # Number?
jnz ret # Yes
end
ret
(code 'evSymX_E 0)
ld E (X) # Get CAR
jmp evSymE_E
(code 'evSymY_E 0)
ld E (Y) # Get CAR
(code 'evSymE_E)
eval # Evaluate
(code 'xSymE_E)
num E # Number?
if z # No
sym E # Symbol?
jnz ret # Yes
end
push X
link
push E # Save 'any'
push ZERO # <L II> Number safe
push ZERO # <L I> Result
ld C 4 # Build name
ld X S
link
call packECX_CX
ld X (L I) # Get result
call consSymX_E # Make transient symbol
drop
pop X
ret
(code 'evCntXY_FE 0)
ld E (Y) # Get CAR
(code 'evCntEX_FE)
eval # Evaluate
(code 'xCntEX_FE 0)
cnt E # # Short number?
jz cntErrEX # No
shr E 4 # Normalize
if c # Sign?
neg E # Yes
end
ret # 'z' if null, 's' if negative
(code 'xCntCX_FC 0)
cnt C # # Short number?
jz cntErrCX # No
shr C 4 # Normalize
if c # Sign?
neg C # Yes
end
ret # 'z' if null, 's' if negative
(code 'xCntAX_FA 0)
cnt A # # Short number?
jz cntErrAX # No
shr A 4 # Normalize
if c # Sign?
neg A # Yes
end
ret # 'z' if null, 's' if negative
(code 'boxE_E 0)
null E # Positive?
if ns # Yes
test E (hex "F000000000000000") # Fit in short number?
jnz boxNumE_E # No
shl E 4 # Make short number
or E CNT
ret
end
neg E # Else negate
test E (hex "F000000000000000") # Fit in short?
if z # Yes
shl E 4 # Make negative short number
or E (| SIGN CNT)
ret
end
call boxNumE_E # Make bignum
or E SIGN # Set negative
ret
(code 'putStringB 0)
push X
push C
ld X (StrX) # Get string status
ld C (StrC)
call byteSymBCX_CX # Add byte to result
ld (StrC) C # Save string status
ld (StrX) X
pop C
pop X
ret
(code 'begString 0)
pop A # Get return address
link
push ZERO # <L I> Result
ld (StrC) 4 # Build name
ld (StrX) S
link
push (PutB) # Save 'put'
ld (PutB) putStringB # Set new
jmp (A) # Return
(code 'endString_E 0)
pop A # Get return address
pop (PutB) # Restore 'put'
ld E Nil # Preload NIL
cmp (L I) ZERO # Name?
if ne # Yes
call cons_E # Cons symbol
ld (E) (L I) # Set name
or E SYM # Make symbol
ld (E) E # Set value to itself
end
drop
jmp (A) # Return
(code 'msec_A)
push C
cc gettimeofday(Buf 0) # Get time
ld A (Buf) # tv_sec
mul 1000 # Convert to milliseconds
ld (Buf) A # Save
ld A (Buf I) # tv_usec
div 1000 # Convert to milliseconds (C is zero)
add A (Buf)
pop C
ret
# (args) -> flg
(code 'doArgs 2)
cmp (EnvNext) (EnvArgs) # VarArgs?
ld E Nil
ldnz E TSym # Yes
ret
# (next) -> any
(code 'doNext 2)
ld C (EnvNext) # VarArgs
cmp C (EnvArgs) # Any?
if ne # Yes
sub C I # Get next
ld E (C)
ld (EnvNext) C
ret
end
ld E Nil # No (more) arguments
null C # Any previous arg?
if nz # Yes
ld (C) E # Set to NIL
end
ret
# (arg ['cnt]) -> any
(code 'doArg 2)
null (EnvArgs) # Any args?
jz retNil # No
ld E (E CDR) # 'cnt' arg?
atom E
if nz # No
ld E ((EnvNext)) # Return arg from last call to 'next'
ret
end
ld E (E)
eval # Eval 'cnt'
test E SIGN # Negative?
if z # No
shr E 1 # Normalize to word index
off E 1 # Clear 'cnt' tag
if nz # Greater zero
ld C (EnvNext) # VarArgs
sub C E # Subtract from VarArgs pointer
cmp C (EnvArgs) # Out of range?
if ge # No
ld E (C) # Get value
ret
end
end
end
ld E Nil
ret
# (rest) -> lst
(code 'doRest 2)
ld E Nil # Return value
ld C (EnvArgs) # VarArgs
do
cmp C (EnvNext) # Any?
while ne # Yes
call consE_A # New cell
ld (A) (C)
ld (A CDR) E
ld E A
add C I # Next
loop
ret
(code 'tmDateC_E 0)
ld4 (C TM_MDAY) # Get day
ld X A
ld4 (C TM_MON) # month
inc A
ld Y A
ld4 (C TM_YEAR) # and year
add A 1900
ld Z A
# Date function
(code 'dateXYZ_E 0)
null Y # Month <= 0?
jsz retNil
cmp Y 12 # Month > 12?
jgt retNil
null X # Day <= 0?
jsz retNil
ld B (Y Month) # Max monthly days
cmp X B # Day > max?
if gt # Yes
cmp Y 2 # February?
jne retNil
cmp X 29 # 29th?
jne retNil
test Z 3 # year a multiple of 4?
jnz retNil
ld A Z # Year
ld C 0
div 100
null C # Multiple of 100?
if z # Yes
ld A Z # Year
div 400
null C # Multiple of 400?
jnz retNil
end
end
ld A Z # Get year
mul 12 # times 12
add A Y # plus month
sub A 3 # minus 3
ld C 0
div 12 # divide by 12
ld E A # n = (12 * year + month - 3) / 12
ld C 0
div 100 # divide by 100
ld C E
shr E 2 # n/4
add C C # n*2
sub E C # n/4 - n*2
sub E A # n/4 - n*2 - n/100
shr A 2 # n/400
add E A # E = n/4 - n*2 - n/100 + n/400
ld A Z # Year
mul 4404 # times 4404
ld Z A
ld A Y # Month
mul 367 # times 367
add A Z # plus year*4404
sub A 1094 # minus 1094
div 12 # A = (4404*year + 367*month - 1094) / 12
add E A # Add up
add E X # plus days
shl E 4 # Make short number
or E CNT
ret
# (date ['T]) -> dat
# (date 'dat) -> (y m d)
# (date 'y 'm 'd) -> dat | NIL
# (date '(y m d)) -> dat | NIL
(code 'doDate 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
atom Y # Any?
if nz # No
cc time(Buf) # Get current time
cc localtime(Buf) # Convert to local time
ld (Time) A # Keep in 'Time'
ld C A
call tmDateC_E # Extract date
else
ld E (Y) # Eval first
eval
cmp E TSym # T?
if eq # Yes
cc time(Buf) # Get current time
cc gmtime(Buf) # Convert to Greenwich Mean Time
ld (Time) A # Keep in 'Time'
ld C A
call tmDateC_E # Extract date
else
cmp E Nil # NIL?
if ne # No
atom E # List?
if z # Yes
ld C (E) # Extract year
call xCntCX_FC
ld Z C
ld E (E CDR)
ld C (E) # month
call xCntCX_FC
ld Y C
ld C ((E CDR)) # and day
call xCntCX_FC
ld X C
call dateXYZ_E
else
ld Y (Y CDR) # More args?
atom Y
if nz # No
call xCntEX_FE # Get date
ld A E # 100 * n
mul 100
sub A 20 # minus 20
ld C 0 # divide by 3652425
div 3652425
ld Z A # year = (100*n - 20) / 3652425
add E A # n += (year - year/4)
shr A 2
sub E A
ld A E # n
mul 100 # 100 * n
sub A 20 # minus 20
div 36525 # divide by 36525
ld Z A # year = (100*n - 20) / 36525
mul 36525 # times 36525
div 100 # divide by 100
sub E A # n -= 36525*y / 100
ld A E # n
mul 10 # times 10
sub A 5 # minus 5
div 306 # divide by 306
ld Y A # month = (10*n - 5) / 306
mul 306 # times 306
ld X A
ld A E # n
mul 10 # times 10
sub A X # minus 306*month
add A 5 # push 5
div 10 # divide by 10
ld X A # day = (10*n - 306*month + 5) / 10
cmp Y 10 # month < 10?
if lt # Yes
add Y 3 # month += 3
else
inc Z # Increment year
sub Y 9 # month -= 9
end
shl X 4 # Make short day
or X CNT
call cons_E # into cell
ld (E) X
ld (E CDR) Nil
shl Y 4 # Make short month
or Y CNT
call consE_C # Cons
ld (C) Y
ld (C CDR) E
shl Z 4 # Make short year
or Z CNT
call consC_E # Cons
ld (E) Z
ld (E CDR) C
else
call xCntEX_FE # Extract year
ld Z E # into Z
call evCntXY_FE # Eval month
push E # Save
ld Y (Y CDR) # Eval day
call evCntXY_FE
ld X E # Get day
pop Y # and month
call dateXYZ_E
end
end
end
end
end
pop Z
pop Y
pop X
ret
(code 'tmTimeY_E 0)
ld4 (Y TM_HOUR) # Get hour
mul 3600
ld E A
ld4 (Y TM_MIN) # Get minute
mul 60
add E A
ld4 (Y TM_SEC) # Get second
add E A
shl E 4 # Make short number
or E CNT
ret
# (time ['T]) -> tim
# (time 'tim) -> (h m s)
# (time 'h 'm ['s]) -> tim | NIL
# (time '(h m [s])) -> tim | NIL
(code 'doTime 2)
push X
push Y
ld Y (E CDR) # Y on args
atom Y # Any?
if nz # No
cc time(Buf) # Get current time
cc localtime(Buf) # Convert to local time
ld Y A
call tmTimeY_E # Extract time
else
ld E (Y) # Eval first
eval
cmp E TSym # T?
if eq # Yes
ld Y (Time) # Get time from last call to 'date'
null Y # Any?
if nz # Yes
call tmTimeY_E # Extract time
else
ld E Nil
end
else
cmp E Nil # NIL?
if ne # No
atom E # List?
if z # Yes
ld A (E) # Extract hour
call xCntAX_FA
mul 3600
ld Y A
ld E (E CDR)
ld A (E) # minute
call xCntAX_FA
mul 60
add Y A
ld E (E CDR) # and second
atom E # Any?
ldnz E Y # No
if z # Yes
ld E (E)
call xCntEX_FE
add E Y # add minutes and hours
end
shl E 4 # Make short number
or E CNT
else
ld Y (Y CDR) # More args?
atom Y
if nz # No
call xCntEX_FE # Get time in total seconds
ld A E
ld C 0
div 60 # Seconds in C
shl C 4 # Make short number
or C CNT
call cons_Y # into cell
ld (Y) C
ld (Y CDR) Nil
ld A E
ld C 0
div 60 # Total minutes in A
ld C 0
div 60 # Minutes in C
shl C 4 # Make short number
or C CNT
call consY_X
ld (X) C
ld (X CDR) Y
xchg A E # Get total seconds again
ld C 0
div 3600 # Hours in A
shl A 4 # Make short number
or A CNT
call consX_E
ld (E) A
ld (E CDR) X
else
call xCntEX_FE # Extract hour
ld A E
mul 3600
push A # Save hour
call evCntXY_FE # Eval minute
ld A E
mul 60
add (S) A # Add to hour
ld Y (Y CDR) # Eval second
atom Y # Any?
if z # Yes
call evCntXY_FE
add (S) E
end
pop E # Get result
shl E 4 # Make short number
or E CNT
end
end
end
end
end
pop Y
pop X
ret
# (usec) -> num
(code 'doUsec 2)
cc gettimeofday(Buf 0) # Get time
ld A (Buf) # tv_sec
mul 1000000 # Convert to microseconds
add A (Buf I) # tv_usec
sub A (USec) # Diff to startup time
ld E A
shl E 4 # Make short number
or E CNT
ret
# (pwd) -> sym
(code 'doPwd 2)
cc getcwd(0 MAXPATHLEN) # Get current working directory
null A # OK?
jz retNil # No
push A # Save buffer pointer
ld E A # Make transient symbol
call mkStrE_E
cc free(pop) # Free buffer
ret
# (cd 'any) -> sym
(code 'doCd 2)
push Z
ld E ((E CDR)) # Get arg
call evSymE_E # Evaluate to a symbol
call pathStringE_SZ # Write to stack buffer
ld E Nil # Preload return value
cc getcwd(0 MAXPATHLEN) # Get current working directory
null A # OK?
if nz # Yes
push A # Save buffer pointer
nul (S I) # CWD empty?
jz 10 # Yes
cc chdir(&(S I)) # Stack buffer
nul4 # OK?
if z # Yes
10 ld E (S) # Make transient symbol
call mkStrE_E
end
cc free(pop) # Free buffer
end
ld S Z # Drop buffer
pop Z
ret
# (ctty 'sym|pid) -> flg
(code 'doCtty 2)
push X
ld X E
ld E ((E CDR)) # E on arg
eval # Eval it
cnt E # 'pid'?
if nz # Yes
shr E 4 # Normalize
ld (TtyPid) E # Keep in global
ld E TSym # Return T
else
sym E # Need symbol
jz argErrEX
push Z
call bufStringE_SZ # Write to stack buffer
ld E Nil # Preload return value
cc freopen(S _r_ (stdin)) # Re-open standard input
null A # OK?
if nz # Yes
cc freopen(S _w_ (stdout)) # Re-open standard output
null A # OK?
if nz # Yes
cc freopen(S _w_ (stderr)) # Re-open standard error
null A # OK?
if nz # Yes
ld (((OutFiles) I) II) 1 # (stdout) OutFiles[1]->tty
ld E TSym # Return T
end
end
end
ld S Z # Drop buffer
pop Z
end
pop X
ret
# (info 'any) -> (cnt|T dat . tim)
(code 'doInfo 2)
push X
push Y
push Z
ld E ((E CDR)) # Get arg
call evSymE_E # Evaluate to a symbol
call pathStringE_SZ # Write to stack buffer
ld E S # path name pointer
sub S (%% STAT) # 'stat' structure
cc stat(E S) # Get status
ld E Nil # Preload return value
nul4 # 'stat' OK?
if ns
cc gmtime(&(S ST_MTIME)) # Get modification time
ld Y A # Keep time pointer in Y
call tmTimeY_E # Extract time
push E # Save time
push Z
ld C Y # Extract date
call tmDateC_E
pop Z
call cons_X # New cell
ld (X) E # Set date
pop (X CDR) # and time
call consX_E # New cell
call s_isdirS_F # Directory?
if eq # Yes
ld (E) TSym # CAR is T
else
ld A (S ST_SIZE) # Get size
shl A 4 # Make short number
or A CNT
ld (E) A
end
ld (E CDR) X
end
ld S Z # Drop buffers
pop Z
pop Y
pop X
ret
# (file) -> (sym1 sym2 . num) | NIL
(code 'doFile 2)
ld C (InFile) # Current InFile?
null C
jz retNil # No
ld E (C VI) # Filename?
null E
jz retNil # No
ld B (char "/") # Contains a slash?
slen C E # String length in C
memb E C
if eq # Yes
do
memb E C # Find last one
until ne
push Z
ld Z E # Pointer to rest
dec Z # without slash in Z
call mkStrE_E # Make string
call consE_C # Cons
ld (C) E
ld A ((InFile) V) # with 'src'
shl A 4 # Make short number
or A CNT
ld (C CDR) A
link
push C # Save
link
ld E ((InFile) VI) # Filename again
call mkStrEZ_A # Make string up to Z
call consA_E # Cons into list
ld (E) A
ld (E CDR) (L I)
drop
pop Z
else
call mkStrE_E # Make string
call consE_C # Cons
ld (C) E
ld A ((InFile) V) # with 'src'
shl A 4 # Make short number
or A CNT
ld (C CDR) A
call consC_A # Cons symbol
ld (A) (hex "2F2E2") # "./"
or A SYM # Make symbol
ld (A) A # Set value to itself
call consAC_E # Cons into list
ld (E) A
ld (E CDR) C
end
ret
# (dir ['any] ['flg]) -> lst
(code 'doDir 2)
push X
push Z
ld X (E CDR) # Args
ld E (X) # Get 'any'
call evSymE_E # Evaluate to a symbol
cmp E Nil # NIL?
if eq # Yes
cc opendir(_dot_) # Open "." directory
else
call pathStringE_SZ # Write to stack buffer
cc opendir(S) # Open directory
ld S Z # Drop buffer
end
null A # OK?
jz 10 # No
ld Z A # Get directory pointer
ld X (X CDR) # Eval 'flg'
ld E (X)
eval
ld X E # into X
do
cc readdir(Z) # Find first directory entry
null A # OK?
if z # No
10 ld E Nil # Return NIL
pop Z
pop X
ret
end
lea E (A D_NAME) # Pointer to name entry
cmp X Nil # flg?
while eq # Yes
ld B (E) # First char
cmp B (char ".") # Skip dot names
until ne
call mkStrE_E # Make transient symbol
call consE_C # Cons first cell
ld (C) E
ld (C CDR) Nil
link
push C # <L I> Result
link
do
cc readdir(Z) # Read next directory entry
null A # OK?
while nz # Yes
lea E (A D_NAME) # Pointer to name entry
cmp X Nil # flg?
jne 20 # Yes
ld B (E) # First char
cmp B (char ".") # Ignore dot names
if ne
20 call mkStrE_E # Make transient symbol
call consE_A # Cons next cell
ld (A) E
ld (A CDR) Nil
ld (C CDR) A # Concat to result
ld C A
end
loop
ld E (L I) # Get result
drop
cc closedir(Z) # Close directory
pop Z
pop X
ret
# (cmd ['any]) -> sym
(code 'doCmd 2)
ld E ((E CDR)) # Get arg
call evSymE_E # Evaluate to a symbol
cmp E Nil # NIL?
if eq
ld E (AV0) # Return invocation command
jmp mkStrE_E # Return transient symbol
end
push Z
call bufStringE_SZ # Write to stack buffer
slen C S # String length in C
inc C # plus null byte
movn ((AV0)) (S) C # Copy to system buffer
ld S Z # Drop buffer
pop Z
ret
# (argv [var ..] [. sym]) -> lst|sym
(code 'doArgv 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
ld Z (AV) # Command line vector
ld E (Z)
null E # Empty?
if nz # No
ld B (E) # Single-dash argument?
cmp B (char "-")
if eq
nul (E 1)
if z # Yes
add Z I # Skip "-"
end
end
end
cmp Y Nil # Any args?
if eq # No
ld E Nil # Preload return value
null (Z) # More command line arguments?
if nz # Yes
ld E (Z) # Next
call mkStrE_E # Make transient symbol
call consE_C # First result cell
ld (C) E
ld (C CDR) Nil
link
push C # <L I> Result
link
do
add Z I # Next command line argument
null (Z) # Any?
while nz # Yes
ld E (Z) # Get it
call mkStrE_E # Make transient symbol
call consE_A # Next result cell
ld (A) E
ld (A CDR) Nil
ld (C CDR) A # Concat to result
ld C A
loop
ld E (L I) # Get result
drop
end
else
do
atom Y # Atomic tail?
while z # No
ld E (Y) # Next 'var'
call needVarEX
ld E (Z) # Next command line argument
null E # Any?
if nz # No
add Z I # Increment command line index
end
call mkStrE_E # Make transient symbol
ld ((Y)) E # Set value
ld Y (Y CDR) # Next arg
cmp Y Nil # End of list?
jeq 90 # Yes
loop
num Y # Need symbol
jnz symErrYX
call checkVarYX # Check variable
ld E (Z) # Next command line argument
null E # Any?
if z # No
ld E Nil # Set and return NIL
ld (Y) E
else
call mkStrE_E # Make transient symbol
call consE_C # First result cell
ld (C) E
ld (C CDR) Nil
link
push C # <L I> Result
link
do
add Z I # Next command line argument
null (Z) # Any?
while nz # Yes
ld E (Z) # Get it
call mkStrE_E # Make transient symbol
call consE_A # Next result cell
ld (A) E
ld (A CDR) Nil
ld (C CDR) A # Concat to result
ld C A
loop
ld E (L I) # Get and set result
ld (Y) E
drop
end
end
90 pop Z
pop Y
pop X
ret
# (opt) -> sym
(code 'doOpt 2)
ld E ((AV)) # Command line vector
null E # Next string pointer?
jz retNil # No
ld B (E) # Single-dash argument?
cmp B (char "-")
if eq
nul (E 1)
jz retNil # Yes
end
add (AV) I # Increment vector pointer
jmp mkStrE_E # Return transient symbol
# (version ['flg]) -> lst
(code 'doVersion 2)
ld E ((E CDR)) # Eval flg
eval
cmp E Nil # Suppress output?
if eq # No
ld E Version # Print version
do
ld A (E) # Next number
shr A 4 # Normalize
call outWordA # Print it
ld E (E CDR) # More numbers?
atom E
while z # Yes
ld B `(char ".") # Output dot
call (PutB)
loop
call newline
end
ld E Version # Return version
ret
# vi:et:ts=3:sw=3
|