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
|
\ Gforth primitives
\ Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
\ WARNING: This file is processed by m4. Make sure your identifiers
\ don't collide with m4's (e.g. by undefining them).
\
\
\
\ This file contains primitive specifications in the following format:
\
\ forth name ( stack effect ) category [pronunciation]
\ [""glossary entry""]
\ C code
\ [:
\ Forth code]
\
\ Note: Fields in brackets are optional. Word specifications have to
\ be separated by at least one empty line
\
\ Both pronounciation and stack items (in the stack effect) must
\ conform to the C identifier syntax or the C compiler will complain.
\ If you don't have a pronounciation field, the Forth name is used,
\ and has to conform to the C identifier syntax.
\
\ These specifications are automatically translated into C-code for the
\ interpreter and into some other files. I hope that your C compiler has
\ decent optimization, otherwise the automatically generated code will
\ be somewhat slow. The Forth version of the code is included for manual
\ compilers, so they will need to compile only the important words.
\
\ Note that stack pointer adjustment is performed according to stack
\ effect by automatically generated code and NEXT is automatically
\ appended to the C code. Also, you can use the names in the stack
\ effect in the C code. Stack access is automatic. One exception: if
\ your code does not fall through, the results are not stored into the
\ stack. Use different names on both sides of the '--', if you change a
\ value (some stores to the stack are optimized away).
\
\ For superinstructions the syntax is:
\
\ forth-name [/ c-name] = forth-name forth-name ...
\
\
\ The stack variables have the following types:
\
\ name matches type
\ f.* Bool
\ c.* Char
\ [nw].* Cell
\ u.* UCell
\ d.* DCell
\ ud.* UDCell
\ r.* Float
\ a_.* Cell *
\ c_.* Char *
\ f_.* Float *
\ df_.* DFloat *
\ sf_.* SFloat *
\ xt.* XT
\ f83name.* F83Name *
\E stack data-stack sp Cell
\E stack fp-stack fp Float
\E stack return-stack rp Cell
\E
\E get-current prefixes set-current
\E
\E s" Bool" single data-stack type-prefix f
\E s" Char" single data-stack type-prefix c
\E s" Cell" single data-stack type-prefix n
\E s" Cell" single data-stack type-prefix w
\E s" UCell" single data-stack type-prefix u
\E s" DCell" double data-stack type-prefix d
\E s" UDCell" double data-stack type-prefix ud
\E s" Float" single fp-stack type-prefix r
\E s" Cell *" single data-stack type-prefix a_
\E s" Char *" single data-stack type-prefix c_
\E s" Float *" single data-stack type-prefix f_
\E s" DFloat *" single data-stack type-prefix df_
\E s" SFloat *" single data-stack type-prefix sf_
\E s" Xt" single data-stack type-prefix xt
\E s" struct F83Name *" single data-stack type-prefix f83name
\E s" struct Longname *" single data-stack type-prefix longname
\E
\E data-stack stack-prefix S:
\E fp-stack stack-prefix F:
\E return-stack stack-prefix R:
\E inst-stream stack-prefix #
\E
\E set-current
\E store-optimization on
\E ' noop tail-nextp2 ! \ now INST_TAIL just stores, but does not jump
\E
\E `include-skipped-insts' on \ static superinsts include cells for components
\E \ useful for dynamic programming and
\E \ superinsts across entry points
\
\
\
\ In addition the following names can be used:
\ ip the instruction pointer
\ sp the data stack pointer
\ rp the parameter stack pointer
\ lp the locals stack pointer
\ NEXT executes NEXT
\ cfa
\ NEXT1 executes NEXT1
\ FLAG(x) makes a Forth flag from a C flag
\
\
\
\ Percentages in comments are from Koopmans book: average/maximum use
\ (taken from four, not very representative benchmarks)
\
\
\
\ To do:
\
\ throw execute, cfa and NEXT1 out?
\ macroize *ip, ip++, *ip++ (pipelining)?
\ Stack caching setup
ifdef(`STACK_CACHE_FILE', `include(STACK_CACHE_FILE)', `include(cache0.vmg)')
\ these m4 macros would collide with identifiers
undefine(`index')
undefine(`shift')
undefine(`symbols')
\F 0 [if]
\ run-time routines for non-primitives. They are defined as
\ primitives, because that simplifies things.
(docol) ( -- R:a_retaddr ) gforth-internal paren_docol
""run-time routine for colon definitions""
#ifdef DEBUG
{
CFA_TO_NAME(CFA);
debugp(stderr,"%08lx: call %08lx %.*s\n",(Cell)ip,(Cell)CFA,
len,name);
}
#endif
a_retaddr = (Cell *)IP;
SET_IP((Xt *)PFA(CFA));
(docon) ( -- w ) gforth-internal paren_docon
""run-time routine for constants""
w = *(Cell *)PFA(CFA);
(dovar) ( -- a_body ) gforth-internal paren_dovar
""run-time routine for variables and CREATEd words""
a_body = PFA(CFA);
(douser) ( -- a_user ) gforth-internal paren_douser
""run-time routine for constants""
a_user = (Cell *)(((Address)up)+*(Cell *)PFA(CFA));
(dodefer) ( -- ) gforth-internal paren_dodefer
""run-time routine for deferred words""
ip=IP; /* undo any ip updating that may have been performed by NEXT_P0 */
SUPER_END; /* !! probably unnecessary and may lead to measurement errors */
VM_JUMP(EXEC1(*(Xt *)PFA(CFA)));
(dofield) ( n1 -- n2 ) gforth-internal paren_field
""run-time routine for fields""
n2 = n1 + *(Cell *)PFA(CFA);
(dovalue) ( -- w ) gforth-internal paren_doval
""run-time routine for constants""
w = *(Cell *)PFA(CFA);
(dodoes) ( -- a_body ) gforth-internal paren_dodoes
a_body = PFA(CFA);
ip=IP; /* undo any ip updating that may have been performed by NEXT_P0 */
SUPER_END; /* !! probably unnecessary and may lead to measurement errors */
VM_JUMP(EXEC1(EXTRA_CODEXT(CFA)));
(doabicode) ( ... -- ...) gforth-internal paren_doabicode
""run-time routine for @code{ABI-code} definitions""
abifunc *f = (abifunc *)PFA(CFA);
Float *fp_mem = fp;
sp = (*f)(sp, &fp_mem);
fp = fp_mem;
(do;abicode) ( ... -- ... ) gforth-internal paren_do_semicolon_abi_code
""run-time routine for @code{;abi-code}-defined words""
Float *fp_mem = fp;
Address body = (Address)PFA(CFA);
semiabifunc *f = (semiabifunc *)EXTRA_CODE(CFA);
sp = (*f)(sp, &fp_mem, body);
fp = fp_mem;
\F [endif]
\g control
noop ( -- ) gforth
:
;
call ( #a_callee -- R:a_retaddr ) new
""Call callee (a variant of docol with inline argument).""
#ifdef DEBUG
{
CFA_TO_NAME((((Cell *)a_callee)-2));
debugp(stderr,"%08lx: call %08lx %.*s\n",(Cell)ip,(Cell)a_callee,
len,name);
}
#endif
a_retaddr = (Cell *)IP;
SET_IP((Xt *)a_callee);
execute ( xt -- ) core
""Perform the semantics represented by the execution token, @i{xt}.""
#ifdef DEBUG
debugp(stderr, "execute %08x\n", xt);
#endif
ip=IP;
SUPER_END;
VM_JUMP(EXEC1(xt));
perform ( a_addr -- ) gforth
""@code{@@ execute}.""
/* and pfe */
ip=IP;
SUPER_END;
VM_JUMP(EXEC1(*(Xt *)a_addr));
:
@ execute ;
;s ( R:w -- ) gforth semis
""The primitive compiled by @code{EXIT}.""
SET_IP((Xt *)w);
execute-;s ( xt R:w -- ) gforth-internal execute_semis
""The primitive compiled by @code{EXECUTE-EXIT}.""
#ifdef DEBUG
debugp(stderr, "execute-;s %08x\n", xt);
#endif
SET_IP((Xt *)w);
SUPER_END;
VM_JUMP(EXEC1(xt));
unloop ( R:w1 R:w2 -- ) core
/* !! alias for 2rdrop */
:
r> rdrop rdrop >r ;
lit-perform ( #a_addr -- ) new lit_perform
ip=IP;
SUPER_END;
VM_JUMP(EXEC1(*(Xt *)a_addr));
does-xt ( #a_cfa -- a_body ) new extra_xt
a_body = PFA(a_cfa);
#ifdef DEBUG
{
CFA_TO_NAME(a_cfa);
debugp(stderr,"%08lx: does %08lx %.*s exec %p\n",
(Cell)ip,(Cell)a_cfa,len,name,EXTRA_CODE(a_cfa));
}
#endif
SUPER_END;
VM_JUMP(EXEC1(EXTRA_CODEXT(a_cfa)));
\+glocals
branch-lp+!# ( #a_target #nlocals -- ) gforth branch_lp_plus_store_number
/* this will probably not be used */
lp += nlocals;
SET_IP((Xt *)a_target);
\+
branch ( #a_target -- ) gforth
SET_IP((Xt *)a_target);
:
r> @ >r ;
\ condbranch(forthname,stackeffect,restline,code1,code2,forthcode)
\ this is non-syntactical: code must open a brace that is closed by the macro
define(condbranch,
$1 ( `#'a_target $2 ) $3
$4 $5 SET_IP((Xt *)a_target);
ifelse(condbranch_opt,`1',`INST_TAIL; NEXT_P2;',`/* condbranch_opt=0 */')
}
ifelse(condbranch_opt,`1',`SUPER_CONTINUE;',`/* condbranch_opt=0 */')
$6
\+glocals
$1-lp+!`#' ( `#'a_target `#'nlocals $2 ) $3_lp_plus_store_number
$4 $5 lp += nlocals;
SET_IP((Xt *)a_target);
ifelse(condbranch_opt,`1',`INST_TAIL; NEXT_P2;',`/* condbranch_opt=0 */')
}
ifelse(condbranch_opt,`1',`SUPER_CONTINUE;',`/* condbranch_opt=0 */')
\+
)
condbranch(?branch,f --,f83 question_branch,
,if (f==0) {
,:
0= dup 0= \ !f f
r> tuck cell+ \ !f branchoffset f IP+
and -rot @ and or \ f&IP+|!f&branch
>r ;)
\ we don't need an lp_plus_store version of the ?dup-stuff, because it
\ is only used in if's (yet)
\+xconds
?dup-?branch ( #a_target f -- S:... ) new question_dupe_question_branch
""The run-time procedure compiled by @code{?DUP-IF}.""
if (f==0) {
SET_IP((Xt *)a_target);
} else {
sp--;
sp[0]=f;
}
?dup-0=-?branch ( #a_target f -- S:... ) new question_dupe_zero_equals_question_branch
""The run-time procedure compiled by @code{?DUP-0=-IF}.""
if (f!=0) {
sp--;
sp[0]=f;
SET_IP((Xt *)a_target);
}
\+
\fhas? skiploopprims 0= [IF]
condbranch((next),R:n1 -- R:n2,cmFORTH paren_next,
n2=n1-1;
,if (n1) {
,:
r> r> dup 1- >r
IF @ >r ELSE cell+ >r THEN ;)
condbranch((loop),R:nlimit R:n1 -- R:nlimit R:n2,gforth paren_loop,
n2=n1+1;
,if (n2 != nlimit) {
,:
r> r> 1+ r> 2dup =
IF >r 1- >r cell+ >r
ELSE >r >r @ >r THEN ;)
condbranch((+loop),n R:nlimit R:n1 -- R:nlimit R:n2,gforth paren_plus_loop,
/* !! check this thoroughly */
/* sign bit manipulation and test: (x^y)<0 is equivalent to (x<0) != (y<0) */
/* dependent upon two's complement arithmetic */
Cell olddiff = n1-nlimit;
n2=n1+n;
,if (((olddiff^(olddiff+n)) /* the limit is not crossed */
&(olddiff^n)) /* OR it is a wrap-around effect */
>=0) { /* & is used to avoid having two branches for gforth-native */
,:
r> swap
r> r> 2dup - >r
2 pick r@ + r@ xor 0< 0=
3 pick r> xor 0< 0= or
IF >r + >r @ >r
ELSE >r >r drop cell+ >r THEN ;)
\+xconds
condbranch((-loop),u R:nlimit R:n1 -- R:nlimit R:n2,gforth paren_minus_loop,
UCell olddiff = n1-nlimit;
n2=n1-u;
,if (olddiff>u) {
,)
condbranch((s+loop),n R:nlimit R:n1 -- R:nlimit R:n2,gforth paren_symmetric_plus_loop,
""The run-time procedure compiled by S+LOOP. It loops until the index
crosses the boundary between limit and limit-sign(n). I.e. a symmetric
version of (+LOOP).""
/* !! check this thoroughly */
Cell diff = n1-nlimit;
Cell newdiff = diff+n;
if (n<0) {
diff = -diff;
newdiff = -newdiff;
}
n2=n1+n;
,if (((~diff)|newdiff)<0) { /* use | to avoid two branches for gforth-native */
,)
\+
(for) ( ncount -- R:nlimit R:ncount ) cmFORTH paren_for
/* or (for) = >r -- collides with unloop! */
nlimit=0;
:
r> swap 0 >r >r >r ;
(do) ( nlimit nstart -- R:nlimit R:nstart ) gforth paren_do
:
r> swap rot >r >r >r ;
(?do) ( #a_target nlimit nstart -- R:nlimit R:nstart ) gforth paren_question_do
if (nstart == nlimit) {
SET_IP((Xt *)a_target);
}
:
2dup =
IF r> swap rot >r >r
@ >r
ELSE r> swap rot >r >r
cell+ >r
THEN ; \ --> CORE-EXT
\+xconds
(+do) ( #a_target nlimit nstart -- R:nlimit R:nstart ) gforth paren_plus_do
if (nstart >= nlimit) {
SET_IP((Xt *)a_target);
}
:
swap 2dup
r> swap >r swap >r
>=
IF
@
ELSE
cell+
THEN >r ;
(u+do) ( #a_target ulimit ustart -- R:ulimit R:ustart ) gforth paren_u_plus_do
if (ustart >= ulimit) {
SET_IP((Xt *)a_target);
}
:
swap 2dup
r> swap >r swap >r
u>=
IF
@
ELSE
cell+
THEN >r ;
(-do) ( #a_target nlimit nstart -- R:nlimit R:nstart ) gforth paren_minus_do
if (nstart <= nlimit) {
SET_IP((Xt *)a_target);
}
:
swap 2dup
r> swap >r swap >r
<=
IF
@
ELSE
cell+
THEN >r ;
(u-do) ( #a_target ulimit ustart -- R:ulimit R:ustart ) gforth paren_u_minus_do
if (ustart <= ulimit) {
SET_IP((Xt *)a_target);
}
:
swap 2dup
r> swap >r swap >r
u<=
IF
@
ELSE
cell+
THEN >r ;
(try) ( ... #a_recovery -- R:a_recovery R:a_sp R:c_op R:f_fp R:c_lp R:a_oldhandler ) gforth paren_try
a_oldhandler = SPs->handler;
a_sp = sp;
c_op = op;
f_fp = fp;
c_lp = lp;
SPs->handler = rp-6;
SPs->first_throw = ~0;
uncatch ( R:a_recovery R:a_sp R:c_op R:f_fp R:c_lp R:a_oldhandler -- ) gforth
SPs->handler = a_oldhandler;
fast-throw ( ... wball -- ... wball ) gforth fast_throw
""Lightweight @code{throw} variant: only for non-zero balls, and
does not store a backtrace or deal with missing @code{catch}.""
rp = SPs->handler;
lp = (Address)rp[1];
fp = (Float *)rp[2];
op = (Char *)rp[3];
sp = (Cell *)rp[4];
SET_IP((Xt *)rp[5]);
pushwrap ( ... #a_recovery -- R:a_recovery R:a_sp R:c_op R:f_fp R:c_lp R:a_oldhandler ) gforth-internal
a_oldhandler = SPs->wraphandler;
a_sp = sp;
c_op = op;
f_fp = fp;
c_lp = lp;
SPs->wraphandler = rp;
dropwrap ( R:a_recovery R:a_sp R:c_op R:f_fp R:c_lp R:a_oldhandler -- ) gforth-internal
SPs->wraphandler = a_oldhandler;
exit-wrap ( ... -- ... ) gforth-experimental exit_wrap
rp = SPs->wraphandler;
SPs->wraphandler = (Cell *)rp[-6];
lp = (Address)rp[-5];
fp = (Float *)rp[-4];
op = (Char *)rp[-3];
sp = (Cell *)rp[-2];
SET_IP((Xt *)rp[-1]);
\+
\ don't make any assumptions where the return stack is!!
\ implement this in machine code if it should run quickly!
i ( R:n -- R:n n ) core
:
\ rp@ cell+ @ ;
r> r> tuck >r >r ;
i' ( R:w R:w2 -- R:w R:w2 w ) gforth i_tick
:
\ rp@ cell+ cell+ @ ;
r> r> r> dup itmp ! >r >r >r itmp @ ;
variable itmp
j ( R:w R:w1 R:w2 -- w R:w R:w1 R:w2 ) core
:
\ rp@ cell+ cell+ cell+ @ ;
r> r> r> r> dup itmp ! >r >r >r >r itmp @ ;
[IFUNDEF] itmp variable itmp [THEN]
k ( R:w R:w1 R:w2 R:w3 R:w4 -- w R:w R:w1 R:w2 R:w3 R:w4 ) gforth
:
\ rp@ [ 5 cells ] Literal + @ ;
r> r> r> r> r> r> dup itmp ! >r >r >r >r >r >r itmp @ ;
[IFUNDEF] itmp variable itmp [THEN]
\f[THEN]
\ digit is high-level: 0/0%
\g strings
move ( c_from c_to ucount -- ) core
""Copy the contents of @i{ucount} aus at @i{c-from} to
@i{c-to}. @code{move} works correctly even if the two areas overlap.""
/* !! note that the standard specifies addr, not c-addr */
memmove(c_to,c_from,ucount);
/* make an Ifdef for bsd and others? */
:
>r 2dup u< IF r> cmove> ELSE r> cmove THEN ;
cmove ( c_from c_to u -- ) string c_move
""Copy the contents of @i{ucount} characters from data space at
@i{c-from} to @i{c-to}. The copy proceeds @code{char}-by-@code{char}
from low address to high address; i.e., for overlapping areas it is
safe if @i{c-to}<=@i{c-from}.""
cmove(c_from,c_to,u);
:
bounds ?DO dup c@ I c! 1+ LOOP drop ;
cmove> ( c_from c_to u -- ) string c_move_up
""Copy the contents of @i{ucount} characters from data space at
@i{c-from} to @i{c-to}. The copy proceeds @code{char}-by-@code{char}
from high address to low address; i.e., for overlapping areas it is
safe if @i{c-to}>=@i{c-from}.""
cmove_up(c_from,c_to,u);
:
dup 0= IF drop 2drop exit THEN
rot over + -rot bounds swap 1-
DO 1- dup c@ I c! -1 +LOOP drop ;
fill ( c_addr u c -- ) core
""Store @i{c} in @i{u} chars starting at @i{c-addr}.""
memset(c_addr,c,u);
:
-rot bounds
?DO dup I c! LOOP drop ;
compare ( c_addr1 u1 c_addr2 u2 -- n ) string
""Compare two strings lexicographically. If they are equal, @i{n} is 0; if
the first string is smaller, @i{n} is -1; if the first string is larger, @i{n}
is 1. Currently this is based on the machine's character
comparison. In the future, this may change to consider the current
locale and its collation order.""
/* close ' to keep fontify happy */
n = compare(c_addr1, u1, c_addr2, u2);
:
rot 2dup swap - >r min swap -text dup
IF rdrop ELSE drop r> sgn THEN ;
: -text ( c_addr1 u c_addr2 -- n )
swap bounds
?DO dup c@ I c@ = WHILE 1+ LOOP drop 0
ELSE c@ I c@ - unloop THEN sgn ;
: sgn ( n -- -1/0/1 )
dup 0= IF EXIT THEN 0< 2* 1+ ;
\ -text is only used by replaced primitives now; move it elsewhere
\ -text ( c_addr1 u c_addr2 -- n ) new dash_text
\ n = memcmp(c_addr1, c_addr2, u);
\ if (n<0)
\ n = -1;
\ else if (n>0)
\ n = 1;
\ :
\ swap bounds
\ ?DO dup c@ I c@ = WHILE 1+ LOOP drop 0
\ ELSE c@ I c@ - unloop THEN sgn ;
\ : sgn ( n -- -1/0/1 )
\ dup 0= IF EXIT THEN 0< 2* 1+ ;
toupper ( c1 -- c2 ) gforth
""If @i{c1} is a lower-case character (in the current locale), @i{c2}
is the equivalent upper-case character. All other characters are unchanged.""
c2 = toupper(c1);
:
dup 'a' - [ char z char a - 1 + ] Literal u< bl and - ;
capscompare ( c_addr1 u1 c_addr2 u2 -- n ) gforth
""Compare two strings lexicographically. If they are equal, @i{n} is 0; if
the first string is smaller, @i{n} is -1; if the first string is larger, @i{n}
is 1. Currently this is based on the machine's character
comparison. In the future, this may change to consider the current
locale and its collation order.""
/* close ' to keep fontify happy */
n = capscompare(c_addr1, u1, c_addr2, u2);
/string ( c_addr1 u1 n -- c_addr2 u2 ) string slash_string
""Adjust the string specified by @i{c-addr1, u1} to remove @i{n}
characters from the start of the string.""
c_addr2 = c_addr1+n;
u2 = u1-n;
:
tuck - >r + r> dup 0< IF - 0 THEN ;
safe/string ( c_addr1 u1 n -- c_addr2 u2 ) string safe_slash_string
""Adjust the string specified by @i{c-addr1, u1} to remove @i{n}
characters from the start of the string. Clamps on overflow""
c_addr2 = c_addr1+n;
u2 = u1-n;
if(n>=0) {
if(u2>u1) { c_addr2 += u2; u2 = 0; }
} else {
if(u2<u1) { c_addr2 += u2+1; u2 = -1; }
}
:
tuck - >r + r> dup 0< IF - 0 THEN ;
\g arith
lit ( #w -- w ) gforth
:
r> dup @ swap cell+ >r ;
+ ( n1 n2 -- n ) core plus
n = n1+n2;
\ lit+ / lit_plus = lit +
lit+ ( n1 #n2 -- n ) new lit_plus
#ifdef DEBUG
debugp(stderr, "lit+ %08x\n", n2);
#endif
n=n1+n2;
\ PFE-0.9.14 has it differently, but the next release will have it as follows
under+ ( n1 n2 n3 -- n n2 ) gforth under_plus
""add @i{n3} to @i{n1} (giving @i{n})""
n = n1+n3;
:
rot + swap ;
- ( n1 n2 -- n ) core minus
n = n1-n2;
:
negate + ;
negate ( n1 -- n2 ) core
/* use minus as alias */
n2 = -n1;
:
invert 1+ ;
1+ ( n1 -- n2 ) core one_plus
n2 = n1+1;
:
1 + ;
1- ( n1 -- n2 ) core one_minus
n2 = n1-1;
:
1 - ;
max ( n1 n2 -- n ) core
if (n1<n2)
n = n2;
else
n = n1;
:
2dup < IF swap THEN drop ;
min ( n1 n2 -- n ) core
if (n1<n2)
n = n1;
else
n = n2;
:
2dup > IF swap THEN drop ;
abs ( n -- u ) core
if (n<0)
u = -n;
else
u = n;
:
dup 0< IF negate THEN ;
* ( n1 n2 -- n ) core star
n = n1*n2;
:
um* drop ;
/ ( n1 n2 -- n ) core slash
n = n1/n2;
if (FLOORED_DIV) {
Cell correct = -((Cell)((n1^n2) < 0) & (Cell)(n1%n2 != 0));
n += correct;
}
if (CHECK_DIVISION_SW && n2 == 0)
throw(BALL_DIVZERO);
if (CHECK_DIVISION_SW && n2 == -1 && n1 == CELL_MIN)
throw(BALL_RESULTRANGE);
:
/mod nip ;
mod ( n1 n2 -- n ) core
n = n1%n2;
if (FLOORED_DIV) {
Cell correct = -((Cell)((n1^n2) < 0) & (Cell)(n != 0));
n += correct & n2;
}
if (CHECK_DIVISION_SW && n2 == 0)
throw(BALL_DIVZERO);
if (CHECK_DIVISION_SW && n2 == -1 && n1 == CELL_MIN)
throw(BALL_RESULTRANGE);
:
/mod drop ;
/mod ( n1 n2 -- n3 n4 ) core slash_mod
n4 = n1/n2;
n3 = n1%n2; /* !! is this correct? look into C standard! */
if (FLOORED_DIV) {
Cell correct = -((Cell)((n1^n2) < 0) & (Cell)(n3!=0));
n4 += correct;
n3 += correct & n2;
}
if (CHECK_DIVISION_SW && n2 == 0)
throw(BALL_DIVZERO);
if (CHECK_DIVISION_SW && n2 == -1 && n1 == CELL_MIN)
throw(BALL_RESULTRANGE);
:
>r s>d r> fm/mod ;
*/mod ( n1 n2 n3 -- n4 n5 ) core star_slash_mod
""n1*n2=n3*n5+n4, with the intermediate result (n1*n2) being double.""
#ifdef BUGGY_LL_MUL
DCell d = mmul(n1,n2);
#else
DCell d = (DCell)n1 * (DCell)n2;
#endif
#ifdef ASM_SM_SLASH_REM
ASM_SM_SLASH_REM(DLO(d), DHI(d), n3, n4, n5);
if (FLOORED_DIV) {
Cell correct=-((Cell)((DHI(d)^n3)<0) & (Cell)(n4!=0));
if (CHECK_DIVISION && correct && n5 == CELL_MIN)
throw(BALL_RESULTRANGE);
n5 += correct;
n4 += correct & n3;
}
#else
DCell r = FLOORED_DIV ? fmdiv(d,n3) : smdiv(d,n3);
n4=DHI(r);
n5=DLO(r);
#endif
:
>r m* r> fm/mod ;
*/ ( n1 n2 n3 -- n4 ) core star_slash
""n4=(n1*n2)/n3, with the intermediate result being double.""
#ifdef BUGGY_LL_MUL
DCell d = mmul(n1,n2);
#else
DCell d = (DCell)n1 * (DCell)n2;
#endif
#ifdef ASM_SM_SLASH_REM
Cell remainder;
ASM_SM_SLASH_REM(DLO(d), DHI(d), n3, remainder, n4);
if (FLOORED_DIV) {
Cell correct = -(((DHI(d)^n3)<0) & (remainder!=0));
if (CHECK_DIVISION && correct && n4 == CELL_MIN)
throw(BALL_RESULTRANGE);
n4 += correct;
}
#else
DCell r = FLOORED_DIV ? fmdiv(d,n3) : smdiv(d,n3);
n4=DLO(r);
#endif
:
*/mod nip ;
2* ( n1 -- n2 ) core two_star
""Shift left by 1; also works on unsigned numbers""
n2 = 2*n1;
:
dup + ;
2/ ( n1 -- n2 ) core two_slash
""Arithmetic shift right by 1. For signed numbers this is a floored
division by 2 (note that @code{/} not necessarily floors).""
n2 = n1>>1;
:
dup MINI and IF 1 ELSE 0 THEN
[ bits/char cell * 1- ] literal
0 DO 2* swap dup 2* >r MINI and
IF 1 ELSE 0 THEN or r> swap
LOOP nip ;
fm/mod ( d1 n1 -- n2 n3 ) core f_m_slash_mod
""Floored division: @i{d1} = @i{n3}*@i{n1}+@i{n2}, @i{n1}>@i{n2}>=0 or 0>=@i{n2}>@i{n1}.""
#ifdef ASM_SM_SLASH_REM
ASM_SM_SLASH_REM(DLO(d1), DHI(d1), n1, n2, n3);
Cell correct = -((Cell)((DHI(d1)^n1)<0) & (Cell)(n2!=0));
if (CHECK_DIVISION && correct && n3 == CELL_MIN)
throw(BALL_RESULTRANGE);
n3 += correct;
n2 += correct & n1;
#else /* !defined(ASM_SM_SLASH_REM) */
DCell r = fmdiv(d1,n1);
n2=DHI(r);
n3=DLO(r);
#endif /* !defined(ASM_SM_SLASH_REM) */
:
dup >r dup 0< IF negate >r dnegate r> THEN
>r dup 0< r@ and + r> um/mod
r> 0< IF swap negate swap THEN ;
sm/rem ( d1 n1 -- n2 n3 ) core s_m_slash_rem
""Symmetric division: @i{d1} = @i{n3}*@i{n1}+@i{n2}, sign(@i{n2})=sign(@i{d1}) or 0.""
#ifdef ASM_SM_SLASH_REM
ASM_SM_SLASH_REM(DLO(d1), DHI(d1), n1, n2, n3);
#else /* !defined(ASM_SM_SLASH_REM) */
DCell r = smdiv(d1,n1);
n2=DHI(r);
n3=DLO(r);
#endif /* !defined(ASM_SM_SLASH_REM) */
:
over >r dup >r abs -rot
dabs rot um/mod
r> r@ xor 0< IF negate THEN
r> 0< IF swap negate swap THEN ;
m* ( n1 n2 -- d ) core m_star
#ifdef BUGGY_LL_MUL
d = mmul(n1,n2);
#else
d = (DCell)n1 * (DCell)n2;
#endif
:
2dup 0< and >r
2dup swap 0< and >r
um* r> - r> - ;
um* ( u1 u2 -- ud ) core u_m_star
/* use u* as alias */
#ifdef BUGGY_LL_MUL
ud = ummul(u1,u2);
#else
ud = (UDCell)u1 * (UDCell)u2;
#endif
:
0 -rot dup [ 8 cells ] literal -
DO
dup 0< I' and d2*+ drop
LOOP ;
: d2*+ ( ud u -- ud+u c )
over MINI and >r
>r 2dup d+ r> 0 d+ r> ;
um/mod ( ud u1 -- u2 u3 ) core u_m_slash_mod
""ud=u3*u1+u2, u1>u2>=0""
#ifdef ASM_UM_SLASH_MOD
ASM_UM_SLASH_MOD(DLO(ud), DHI(ud), u1, u2, u3);
#else /* !defined(ASM_UM_SLASH_MOD) */
UDCell r = umdiv(ud,u1);
u2=DHI(r);
u3=DLO(r);
#endif /* !defined(ASM_UM_SLASH_MOD) */
:
0 swap [ 8 cells 1 + ] literal 0
?DO /modstep
LOOP drop swap 1 rshift or swap ;
: /modstep ( ud c R: u -- ud-?u c R: u )
>r over r@ u< 0= or IF r@ - 1 ELSE 0 THEN d2*+ r> ;
: d2*+ ( ud u -- ud+u c )
over MINI and >r
>r 2dup d+ r> 0 d+ r> ;
m+ ( d1 n -- d2 ) double m_plus
#ifdef BUGGY_LL_ADD
DLO_IS(d2, DLO(d1)+n);
DHI_IS(d2, DHI(d1) - (n<0) + (DLO(d2)<DLO(d1)));
#else
d2 = d1+n;
#endif
:
s>d d+ ;
d+ ( d1 d2 -- d ) double d_plus
#ifdef BUGGY_LL_ADD
DLO_IS(d, DLO(d1) + DLO(d2));
DHI_IS(d, DHI(d1) + DHI(d2) + (d.lo<DLO(d1)));
#else
d = d1+d2;
#endif
:
rot + >r tuck + swap over u> r> swap - ;
d- ( d1 d2 -- d ) double d_minus
#ifdef BUGGY_LL_ADD
DLO_IS(d, DLO(d1) - DLO(d2));
DHI_IS(d, DHI(d1)-DHI(d2)-(DLO(d1)<DLO(d2)));
#else
d = d1-d2;
#endif
:
dnegate d+ ;
dnegate ( d1 -- d2 ) double d_negate
/* use dminus as alias */
#ifdef BUGGY_LL_ADD
d2 = dnegate(d1);
#else
d2 = -d1;
#endif
:
invert swap negate tuck 0= - ;
d2* ( d1 -- d2 ) double d_two_star
""Shift left by 1; also works on unsigned numbers""
d2 = DLSHIFT(d1,1);
:
2dup d+ ;
d2/ ( d1 -- d2 ) double d_two_slash
""Arithmetic shift right by 1. For signed numbers this is a floored
division by 2.""
#ifdef BUGGY_LL_SHIFT
DHI_IS(d2, DHI(d1)>>1);
DLO_IS(d2, (DLO(d1)>>1) | (DHI(d1)<<(CELL_BITS-1)));
#else
d2 = d1>>1;
#endif
:
dup 1 and >r 2/ swap 2/ [ 1 8 cells 1- lshift 1- ] Literal and
r> IF [ 1 8 cells 1- lshift ] Literal + THEN swap ;
and ( w1 w2 -- w ) core
w = w1&w2;
or ( w1 w2 -- w ) core
w = w1|w2;
:
invert swap invert and invert ;
xor ( w1 w2 -- w ) core x_or
w = w1^w2;
invert ( w1 -- w2 ) core
w2 = ~w1;
:
MAXU xor ;
rshift ( u1 n -- u2 ) core r_shift
""Logical shift right by @i{n} bits.""
#ifdef BROKEN_SHIFT
u2 = rshift(u1, n);
#else
u2 = u1 >> n;
#endif
:
0 ?DO 2/ MAXI and LOOP ;
lshift ( u1 n -- u2 ) core l_shift
#ifdef BROKEN_SHIFT
u2 = lshift(u1, n);
#else
u2 = u1 << n;
#endif
:
0 ?DO 2* LOOP ;
umax ( u1 u2 -- u ) core
if (u1<u2)
u = u2;
else
u = u1;
:
2dup u> select ;
umin ( u1 u2 -- u ) core
if (u1<u2)
u = u1;
else
u = u2;
:
2dup u< select ;
mux ( u1 u2 u3 -- u ) gforth
""multiplex @i{u1} for 1 bits in @i{u3}, @i{u2} for 0 bits in @i{u3} into @i{u}""
u = (u3 & u1) | (~u3 & u2);
:
tuck invert and rot rot and or ;
select ( u1 u2 f -- u ) gforth
""select @i{u1} if @i{f} is true, @i{u2} if false.""
u = f ? u1 : u2;
:
IF swap THEN nip ;
dlshift ( ud1 u -- ud2 ) gforth dlshift
""double arithmetic shift left""
#ifdef BUGGY_LL_SHIFT
if(u>=CELL_BITS) {
u &= CELL_BITS-1;
DHI_IS(ud2, (DLO(ud1) << u));
DLO_IS(ud2, 0);
} else {
DHI_IS(ud2, ((DHI(ud1) << u) | (DLO(ud1) >> (CELL_BITS-u))));
DLO_IS(ud2, (DLO(ud1) << u));
}
#else
ud2 = ud1 << u;
#endif
drshift ( ud1 u -- ud2 ) gforth drshift
""double logic shift right""
#ifdef BUGGY_LL_SHIFT
if(u>=CELL_BITS) {
u &= CELL_BITS-1;
DHI_IS(ud2, 0);
DLO_IS(ud2, (DHI(ud1) >> u));
} else {
DHI_IS(ud2, (DHI(ud1) >> u));
DLO_IS(ud2, ((DLO(ud1) >> u) | (DHI(ud1) << (CELL_BITS-u))));
}
#else
ud2 = ud1 >> u;
#endif
rol ( u1 u -- u2 ) gforth rol
""rotate left""
u2 = (u1 << u) | (u1 >> (CELL_BITS-u));
ror ( u1 u -- u2 ) gforth ror
""rotate right""
u2 = (u1 >> u) | (u1 << (CELL_BITS-u));
drol ( ud1 u -- ud2 ) gforth drol
""rotate left""
#ifdef BUGGY_LL_SHIFT
unsigned int u1 = u & (CELL_BITS-1);
UCell uh, ul;
uh=u1 ? ((DHI(ud1) << u1) | ((UCell)(DLO(ud1)) >> (CELL_BITS-u1))) : DHI(ud1);
ul=u1 ? ((DLO(ud1) << u1) | ((UCell)(DHI(ud1)) >> (CELL_BITS-u1))) : DLO(ud1);
if(u & CELL_BITS) {
DHI_IS(ud2, ul);
DLO_IS(ud2, uh);
} else {
DHI_IS(ud2, uh);
DLO_IS(ud2, ul);
}
#else
u &= 2*CELL_BITS-1;
ud2 = (ud1 << u) | (ud1 >> (2*CELL_BITS-u));
#endif
dror ( ud1 u -- ud2 ) gforth dror
""rotate right""
#ifdef BUGGY_LL_SHIFT
unsigned int u1 = u & (CELL_BITS-1);
UCell uh, ul;
uh=u1 ? (((UCell)(DHI(ud1)) >> u1) | (DLO(ud1) << (CELL_BITS-u1))) : DHI(ud1);
ul=u1 ? (((UCell)(DLO(ud1)) >> u1) | (DHI(ud1) << (CELL_BITS-u1))) : DLO(ud1);
if(u & CELL_BITS) {
DHI_IS(ud2, ul);
DLO_IS(ud2, uh);
} else {
DHI_IS(ud2, uh);
DLO_IS(ud2, ul);
}
#else
u &= 2*CELL_BITS-1;
ud2 = (ud1 >> u) | (ud1 << (2*CELL_BITS-u));
#endif
du/mod ( d u -- n u1 ) gforth du_div_mod
""d=n*u+u1, u>u1>=0; PolyForth style mixed division""
Cell up = DHI(d);
Cell correct = -(up < 0);
up += correct & u;
DHI_IS(d, up);
#ifdef ASM_UM_SLASH_MOD
ASM_UM_SLASH_MOD(DLO(d), DHI(d), u, n, u1);
#else /* !defined(ASM_UM_SLASH_MOD) */
{
UDCell r = umdiv(*(UDCell*)&d,u);
n=DHI(r);
u1=DLO(r);
}
#endif /* !defined(ASM_UM_SLASH_MOD) */
:
>r dup 0< r@ and + r> um/mod ;
u/ ( u1 u2 -- u ) gforth u_slash
u = u1/u2;
if (CHECK_DIVISION_SW && u2 == 0)
throw(BALL_DIVZERO);
:
u/mod nip ;
umod ( u1 u2 -- u ) gforth
u = u1%u2;
if (CHECK_DIVISION_SW && u2 == 0)
throw(BALL_DIVZERO);
:
u/mod drop ;
u/mod ( u1 u2 -- u3 u4 ) gfprtj u_slash_mod
u4 = u1/u2;
u3 = u1%u2;
if (CHECK_DIVISION_SW && u2 == 0)
throw(BALL_DIVZERO);
:
0 swap um/mod ;
arshift ( n1 n -- n2 ) core ar_shift
""signed shift right by @i{n} bits.""
n2 = n1 >> n;
:
0 ?DO 2/ LOOP ;
darshift ( d1 u -- d2 ) gforth darshift
""double arithmetic shift right""
#ifdef BUGGY_LL_SHIFT
if(u>=CELL_BITS) {
u &= CELL_BITS-1;
DHI_IS(d2, 0);
DLO_IS(d2, (DHI(d1) >> u));
} else {
DHI_IS(d2, (DHI(d1) >> u));
DLO_IS(d2, ((DLO(d1) >> u) | (DHI(d1) << (CELL_BITS-u))));
}
#else
d2 = d1 >> u;
#endif
\g compare
\ comparisons(prefix, args, prefix, arg1, arg2, wordsets...)
define(comparisons,
$1= ( $2 -- f ) $6 $3equals
f = FLAG($4==$5);
:
[ char $1x char 0 = [IF]
] IF false ELSE true THEN [
[ELSE]
] xor 0= [
[THEN] ] ;
$1<> ( $2 -- f ) $7 $3not_equals
f = FLAG($4!=$5);
:
[ char $1x char 0 = [IF]
] IF true ELSE false THEN [
[ELSE]
] xor 0<> [
[THEN] ] ;
$1< ( $2 -- f ) $8 $3less_than
f = FLAG($4<$5);
:
[ char $1x char 0 = [IF]
] MINI and 0<> [
[ELSE] char $1x char u = [IF]
] 2dup xor 0< IF nip ELSE - THEN 0< [
[ELSE]
] MINI xor >r MINI xor r> u< [
[THEN]
[THEN] ] ;
$1> ( $2 -- f ) $9 $3greater_than
f = FLAG($4>$5);
:
[ char $1x char 0 = [IF] ] negate [ [ELSE] ] swap [ [THEN] ]
$1< ;
$1<= ( $2 -- f ) gforth $3less_or_equal
f = FLAG($4<=$5);
:
$1> 0= ;
$1>= ( $2 -- f ) gforth $3greater_or_equal
f = FLAG($4>=$5);
:
[ char $1x char 0 = [IF] ] negate [ [ELSE] ] swap [ [THEN] ]
$1<= ;
)
comparisons(0, n, zero_, n, 0, core, core-ext, core, core-ext)
comparisons(, n1 n2, , n1, n2, core, core-ext, core, core)
comparisons(u, u1 u2, u_, u1, u2, gforth, gforth, core, core-ext)
\ dcomparisons(prefix, args, prefix, arg1, arg2, wordsets...)
define(dcomparisons,
$1= ( $2 -- f ) $6 $3equals
#ifdef BUGGY_LL_CMP
f = FLAG($4.lo==$5.lo && $4.hi==$5.hi);
#else
f = FLAG($4==$5);
#endif
$1<> ( $2 -- f ) $7 $3not_equals
#ifdef BUGGY_LL_CMP
f = FLAG($4.lo!=$5.lo || $4.hi!=$5.hi);
#else
f = FLAG($4!=$5);
#endif
$1< ( $2 -- f ) $8 $3less_than
#ifdef BUGGY_LL_CMP
f = FLAG($4.hi==$5.hi ? $4.lo<$5.lo : $4.hi<$5.hi);
#else
f = FLAG($4<$5);
#endif
$1> ( $2 -- f ) $9 $3greater_than
#ifdef BUGGY_LL_CMP
f = FLAG($4.hi==$5.hi ? $4.lo>$5.lo : $4.hi>$5.hi);
#else
f = FLAG($4>$5);
#endif
$1<= ( $2 -- f ) gforth $3less_or_equal
#ifdef BUGGY_LL_CMP
f = FLAG($4.hi==$5.hi ? $4.lo<=$5.lo : $4.hi<=$5.hi);
#else
f = FLAG($4<=$5);
#endif
$1>= ( $2 -- f ) gforth $3greater_or_equal
#ifdef BUGGY_LL_CMP
f = FLAG($4.hi==$5.hi ? $4.lo>=$5.lo : $4.hi>=$5.hi);
#else
f = FLAG($4>=$5);
#endif
)
\+dcomps
dcomparisons(d, d1 d2, d_, d1, d2, double, gforth, double, gforth)
dcomparisons(d0, d, d_zero_, d, DZERO, double, gforth, double, gforth)
dcomparisons(du, ud1 ud2, d_u_, ud1, ud2, gforth, gforth, double-ext, gforth)
\+
within ( u1 u2 u3 -- f ) core-ext
""u2<u3 and u1 in [u2,u3) or: u2>=u3 and u1 not in [u3,u2). This works for
unsigned and signed numbers (but not a mixture). Another way to think
about this word is to consider the numbers as a circle (wrapping
around from @code{max-u} to 0 for unsigned, and from @code{max-n} to
min-n for signed numbers); now consider the range from u2 towards
increasing numbers up to and excluding u3 (giving an empty range if
u2=u3); if u1 is in this range, @code{within} returns true.""
f = FLAG(u1-u2 < u3-u2);
:
over - >r - r> u< ;
\g stack
useraddr ( #u -- a_addr ) gforth
a_addr = (Cell *)(((Address)up)+u);
up! ( a_addr -- ) gforth up_store
gforth_UP=up=(user_area*)a_addr;
:
up ! ;
Variable UP
sp@ ( S:... -- a_addr ) gforth sp_fetch
a_addr = sp;
sp! ( a_addr -- S:... ) gforth sp_store
sp = a_addr;
rp@ ( -- a_addr ) gforth rp_fetch
a_addr = rp;
rp! ( a_addr -- ) gforth rp_store
rp = a_addr;
\+floating
fp@ ( f:... -- f_addr ) gforth fp_fetch
f_addr = fp;
fp! ( f_addr -- f:... ) gforth fp_store
fp = f_addr;
\+
>r ( w -- R:w ) core to_r
:
(>r) ;
: (>r) rp@ cell+ @ rp@ ! rp@ cell+ ! ;
r> ( R:w -- w ) core r_from
:
rp@ cell+ @ rp@ @ rp@ cell+ ! (rdrop) rp@ ! ;
Create (rdrop) ' ;s A,
rdrop ( R:w -- ) gforth
:
r> r> drop >r ;
2>r ( w1 w2 -- R:w1 R:w2 ) core-ext two_to_r
:
swap r> swap >r swap >r >r ;
2r> ( R:w1 R:w2 -- w1 w2 ) core-ext two_r_from
:
r> r> swap r> swap >r swap ;
2r@ ( R:w1 R:w2 -- R:w1 R:w2 w1 w2 ) core-ext two_r_fetch
:
i' j ;
2rdrop ( R:w1 R:w2 -- ) gforth two_r_drop
:
r> r> drop r> drop >r ;
over ( w1 w2 -- w1 w2 w1 ) core
:
sp@ cell+ @ ;
drop ( w -- ) core
:
IF THEN ;
swap ( w1 w2 -- w2 w1 ) core
:
>r (swap) ! r> (swap) @ ;
Variable (swap)
dup ( w -- w w ) core dupe
:
sp@ @ ;
rot ( w1 w2 w3 -- w2 w3 w1 ) core rote
:
[ defined? (swap) [IF] ]
(swap) ! (rot) ! >r (rot) @ (swap) @ r> ;
Variable (rot)
[ELSE] ]
>r swap r> swap ;
[THEN]
-rot ( w1 w2 w3 -- w3 w1 w2 ) gforth not_rote
:
rot rot ;
nip ( w1 w2 -- w2 ) core-ext
:
swap drop ;
tuck ( w1 w2 -- w2 w1 w2 ) core-ext
:
swap over ;
?dup ( w -- S:... w ) core question_dupe
""Actually the stack effect is: @code{( w -- 0 | w w )}. It performs a
@code{dup} if w is nonzero.""
if (w!=0) {
*--sp = w;
}
:
dup IF dup THEN ;
pick ( S:... u -- S:... w ) core-ext
""Actually the stack effect is @code{ x0 ... xu u -- x0 ... xu x0 }.""
w = sp[u];
:
1+ cells sp@ + @ ;
2drop ( w1 w2 -- ) core two_drop
:
drop drop ;
2dup ( w1 w2 -- w1 w2 w1 w2 ) core two_dupe
:
over over ;
2over ( w1 w2 w3 w4 -- w1 w2 w3 w4 w1 w2 ) core two_over
:
3 pick 3 pick ;
2swap ( w1 w2 w3 w4 -- w3 w4 w1 w2 ) core two_swap
:
rot >r rot r> ;
2rot ( w1 w2 w3 w4 w5 w6 -- w3 w4 w5 w6 w1 w2 ) double-ext two_rote
:
>r >r 2swap r> r> 2swap ;
2nip ( w1 w2 w3 w4 -- w3 w4 ) gforth two_nip
:
2swap 2drop ;
2tuck ( w1 w2 w3 w4 -- w3 w4 w1 w2 w3 w4 ) gforth two_tuck
:
2swap 2over ;
user@ ( #u -- w ) gforth user_fetch
w = *(Cell *)(((Address)up)+u);
sps@ ( -- w ) gforth sps_fetch
w = (Cell)SPs;
\ toggle is high-level: 0.11/0.42%
\g memory
@ ( a_addr -- w ) core fetch
""@i{w} is the cell stored at @i{a_addr}.""
w = *a_addr;
\ lit@ / lit_fetch = lit @
lit@ ( #a_addr -- w ) new lit_fetch
w = *a_addr;
! ( w a_addr -- ) core store
""Store @i{w} into the cell at @i{a-addr}.""
*a_addr = w;
+! ( n a_addr -- ) core plus_store
""Add @i{n} to the cell at @i{a-addr}.""
*a_addr += n;
:
tuck @ + swap ! ;
c@ ( c_addr -- c ) core c_fetch
""@i{c} is the char stored at @i{c_addr}.""
c = *c_addr;
:
[ bigendian [IF] ]
[ cell>bit 4 = [IF] ]
dup [ 0 cell - ] Literal and @ swap 1 and
IF $FF and ELSE 8>> THEN ;
[ [ELSE] ]
dup [ cell 1- ] literal and
tuck - @ swap [ cell 1- ] literal xor
0 ?DO 8>> LOOP $FF and
[ [THEN] ]
[ [ELSE] ]
[ cell>bit 4 = [IF] ]
dup [ 0 cell - ] Literal and @ swap 1 and
IF 8>> ELSE $FF and THEN
[ [ELSE] ]
dup [ cell 1- ] literal and
tuck - @ swap
0 ?DO 8>> LOOP 255 and
[ [THEN] ]
[ [THEN] ]
;
: 8>> 2/ 2/ 2/ 2/ 2/ 2/ 2/ 2/ ;
c! ( c c_addr -- ) core c_store
""Store @i{c} into the char at @i{c-addr}.""
*c_addr = c;
:
[ bigendian [IF] ]
[ cell>bit 4 = [IF] ]
tuck 1 and IF $FF and ELSE 8<< THEN >r
dup -2 and @ over 1 and cells masks + @ and
r> or swap -2 and ! ;
Create masks $00FF , $FF00 ,
[ELSE] ]
dup [ cell 1- ] literal and dup
[ cell 1- ] literal xor >r
- dup @ $FF r@ 0 ?DO 8<< LOOP invert and
rot $FF and r> 0 ?DO 8<< LOOP or swap ! ;
[THEN]
[ELSE] ]
[ cell>bit 4 = [IF] ]
tuck 1 and IF 8<< ELSE $FF and THEN >r
dup -2 and @ over 1 and cells masks + @ and
r> or swap -2 and ! ;
Create masks $FF00 , $00FF ,
[ELSE] ]
dup [ cell 1- ] literal and dup >r
- dup @ $FF r@ 0 ?DO 8<< LOOP invert and
rot $FF and r> 0 ?DO 8<< LOOP or swap ! ;
[THEN]
[THEN]
: 8<< 2* 2* 2* 2* 2* 2* 2* 2* ;
2! ( w1 w2 a_addr -- ) core two_store
""Store @i{w2} into the cell at @i{c-addr} and @i{w1} into the next cell.""
a_addr[0] = w2;
a_addr[1] = w1;
:
tuck ! cell+ ! ;
2@ ( a_addr -- w1 w2 ) core two_fetch
""@i{w2} is the content of the cell stored at @i{a-addr}, @i{w1} is
the content of the next cell.""
w2 = a_addr[0];
w1 = a_addr[1];
:
dup cell+ @ swap @ ;
cell+ ( a_addr1 -- a_addr2 ) core cell_plus
""@code{1 cells +}""
a_addr2 = a_addr1+1;
:
cell + ;
cells ( n1 -- n2 ) core
"" @i{n2} is the number of address units of @i{n1} cells.""
n2 = n1 * sizeof(Cell);
:
[ cell
2/ dup [IF] ] 2* [ [THEN]
2/ dup [IF] ] 2* [ [THEN]
2/ dup [IF] ] 2* [ [THEN]
2/ dup [IF] ] 2* [ [THEN]
drop ] ;
char+ ( c_addr1 -- c_addr2 ) core char_plus
""@code{1 chars +}.""
c_addr2 = c_addr1 + 1;
:
1+ ;
(chars) ( n1 -- n2 ) gforth paren_chars
n2 = n1 * sizeof(Char);
:
;
count ( c_addr1 -- c_addr2 u ) core
""@i{c-addr2} is the first character and @i{u} the length of the
counted string at @i{c-addr1}.""
u = *c_addr1;
c_addr2 = c_addr1+1;
:
dup 1+ swap c@ ;
cell/ ( n1 -- n2 ) gforth cell_divide
""@i{n2} is the number of cells that fit into @i{n1}""
n2 = n1 >> (sizeof(Cell) == 8 ? 3 : 2);
:
[ cell
2/ dup [IF] ] 2/ [ [THEN]
2/ dup [IF] ] 2/ [ [THEN]
2/ dup [IF] ] 2/ [ [THEN]
2/ dup [IF] ] 2/ [ [THEN]
drop ] ;
cell- ( a_addr1 -- a_addr2 ) core cell_minus
""@code{1 cells -}""
a_addr2 = a_addr1-1;
:
cell - ;
inc# ( #a_addr -- ) gforth one_plus_store
*a_addr += 1;
:
1 r> dup cell+ >r @ +! ;
\g compiler
\+f83headerstring
(f83find) ( c_addr u f83name1 -- f83name2 ) new paren_f83find
for (; f83name1 != NULL; f83name1 = (struct F83Name *)(f83name1->next))
if ((UCell)F83NAME_COUNT(f83name1)==u &&
memcasecmp(c_addr, f83name1->name, u)== 0 /* or inline? */)
break;
f83name2=f83name1;
#ifdef DEBUG
fprintf(stderr, "F83find ");
fwrite(c_addr, u, 1, stderr);
fprintf(stderr, " found %08x\n", f83name2);
#endif
:
BEGIN dup WHILE (find-samelen) dup WHILE
>r 2dup r@ cell+ char+ capscomp 0=
IF 2drop r> EXIT THEN
r> @
REPEAT THEN nip nip ;
: (find-samelen) ( u f83name1 -- u f83name2/0 )
BEGIN 2dup cell+ c@ $1F and <> WHILE @ dup 0= UNTIL THEN ;
: capscomp ( c_addr1 u c_addr2 -- n )
swap bounds
?DO dup c@ I c@ <>
IF dup c@ toupper I c@ toupper =
ELSE true THEN WHILE 1+ LOOP drop 0
ELSE c@ toupper I c@ toupper - unloop THEN sgn ;
: sgn ( n -- -1/0/1 )
dup 0= IF EXIT THEN 0< 2* 1+ ;
\-
(listlfind) ( c_addr u longname1 -- longname2 ) new paren_listlfind
longname2=listlfind(c_addr, u, longname1);
:
BEGIN dup WHILE (findl-samelen) dup WHILE
>r 2dup r@ cell+ cell+ capscomp 0=
IF 2drop r> EXIT THEN
r> @
REPEAT THEN nip nip ;
: (findl-samelen) ( u longname1 -- u longname2/0 )
BEGIN 2dup cell+ @ lcount-mask and <> WHILE @ dup 0= UNTIL THEN ;
: capscomp ( c_addr1 u c_addr2 -- n )
swap bounds
?DO dup c@ I c@ <>
IF dup c@ toupper I c@ toupper =
ELSE true THEN WHILE 1+ LOOP drop 0
ELSE c@ toupper I c@ toupper - unloop THEN sgn ;
: sgn ( n -- -1/0/1 )
dup 0= IF EXIT THEN 0< 2* 1+ ;
\+hash
(hashlfind) ( c_addr u a_addr -- longname2 ) new paren_hashlfind
longname2 = hashlfind(c_addr, u, a_addr);
:
BEGIN dup WHILE
2@ >r >r dup r@ cell+ @ lcount-mask and =
IF 2dup r@ cell+ cell+ capscomp 0=
IF 2drop r> rdrop EXIT THEN THEN
rdrop r>
REPEAT nip nip ;
(tablelfind) ( c_addr u a_addr -- longname2 ) new paren_tablelfind
""A case-sensitive variant of @code{(hashfind)}""
longname2 = tablelfind(c_addr, u, a_addr);
:
BEGIN dup WHILE
2@ >r >r dup r@ cell+ @ lcount-mask and =
IF 2dup r@ cell+ cell+ -text 0=
IF 2drop r> rdrop EXIT THEN THEN
rdrop r>
REPEAT nip nip ;
: -text ( c_addr1 u c_addr2 -- n )
swap bounds
?DO dup c@ I c@ = WHILE 1+ LOOP drop 0
ELSE c@ I c@ - unloop THEN sgn ;
: sgn ( n -- -1/0/1 )
dup 0= IF EXIT THEN 0< 2* 1+ ;
(hashkey1) ( c_addr u ubits -- ukey ) gforth paren_hashkey1
""ukey is the hash key for the string c_addr u fitting in ubits bits""
ukey = hashkey1(c_addr, u, ubits);
:
dup rot-values + c@ over 1 swap lshift 1- >r
tuck - 2swap r> 0 2swap bounds
?DO dup 4 pick lshift swap 3 pick rshift or
I c@ toupper xor
over and LOOP
nip nip nip ;
Create rot-values
5 c, 0 c, 1 c, 2 c, 3 c, 4 c, 5 c, 5 c, 5 c, 5 c,
3 c, 5 c, 5 c, 5 c, 5 c, 7 c, 5 c, 5 c, 5 c, 5 c,
7 c, 5 c, 5 c, 5 c, 5 c, 6 c, 5 c, 5 c, 5 c, 5 c,
7 c, 5 c, 5 c,
(hashkey2) ( c_addr u ubits -- ukey ) gforth paren_hashkey2
""A faster replacement for @code{(hashkey1)}""
ukey = hashkey2a(c_addr,u) >> (8*sizeof(UCell) - ubits);
hashkey2 ( c_addr u f a_addr -- ) gforth hashkey2
""Compute a 128 bit hash key of the string c_addr u, starting with the
key in a_addr. If f is true, compute case insensitive.""
hashkey2(c_addr, u, f ? 0x2020202020202020L : 0L, (hash128*)a_addr);
\+
\+
(parse-white) ( c_addr1 u1 -- c_addr2 u2 ) gforth paren_parse_white
struct Cellpair r=parse_white(c_addr1, u1);
c_addr2 = (Char *)(r.n1);
u2 = r.n2;
:
BEGIN dup WHILE over c@ bl <= WHILE 1 /string
REPEAT THEN 2dup
BEGIN dup WHILE over c@ bl > WHILE 1 /string
REPEAT THEN nip - ;
scan ( c_addr1 u1 c -- c_addr2 u2 ) gforth
""Skip all characters not equal to c. The result starts with c or is empty.""
for (c_addr2=c_addr1; c_addr2!=c_addr1+u1 && *c_addr2 != c; c_addr2++)
;
u2 = (c_addr1+u1)-c_addr2;
#if 0
Char *c_addr3=memchr(c_addr1, c, u1);
if (u2!=0 && c_addr3!=c_addr2)
fprintf(stderr,"\nscan: %p %ld %d -- %p %ld (memchr -> %p)",c_addr1,u1,c,c_addr2,u2,c_addr3);
#endif
:
>r
BEGIN
dup
WHILE
over c@ r@ <>
WHILE
1 /string
REPEAT THEN
rdrop ;
skip ( c_addr1 u1 c -- c_addr2 u2 ) gforth
""Skip all characters equal to c. The result starts with the first
non-c character, or it is empty.""
for (c_addr2=c_addr1; c_addr2!=c_addr1+u1 && *c_addr2 == c; c_addr2++)
;
u2 = (c_addr1+u1)-c_addr2;
:
>r
BEGIN
dup
WHILE
over c@ r@ =
WHILE
1 /string
REPEAT THEN
rdrop ;
aligned ( c_addr -- a_addr ) core
"" @i{a-addr} is the first aligned address greater than or equal to @i{c-addr}.""
a_addr = (Cell *)((((Cell)c_addr)+(sizeof(Cell)-1))&(-sizeof(Cell)));
:
[ cell 1- ] Literal + [ -1 cells ] Literal and ;
faligned ( c_addr -- f_addr ) float f_aligned
"" @i{f-addr} is the first float-aligned address greater than or equal to @i{c-addr}.""
f_addr = (Float *)((((Cell)c_addr)+(sizeof(Float)-1))&(-sizeof(Float)));
:
[ 1 floats 1- ] Literal + [ -1 floats ] Literal and ;
\ threading stuff is currently only interesting if we have a compiler
\fhas? standardthreading has? compiler and [IF]
threading-method ( -- n ) gforth threading_method
""0 if the engine is direct threaded. Note that this may change during
the lifetime of an image.""
#if defined(DOUBLY_INDIRECT)
n=2;
#else
# if defined(DIRECT_THREADED)
n=0;
# else
n=1;
# endif
#endif
:
1 ;
debugging-method ( -- n ) gforth debugging_method
""true if the engine supports debugging""
#if defined(GFORTH_DEBUGGING)
n=-1;
#else
n=0;
#endif
:
0 ;
\f[THEN]
\g hostos
(key-file) ( wfileid -- n ) gforth paren_key_file
""Read one character @i{n} from @i{wfileid}. This word disables
buffering for @i{wfileid}. If you want to read characters from a
terminal in non-canonical (raw) mode, you have to put the terminal in
non-canonical mode yourself (using the C interface); the exception is
@code{stdin}: Gforth automatically puts it into non-canonical mode. If
an error occurred, a negative ior is returned instead of a positive byte.""
#ifdef HAS_FILE
fflush(stdout);
n = key((FILE*)wfileid);
#else
n = key(stdin);
#endif
key?-file ( wfileid -- f ) gforth key_q_file
""@i{f} is true if at least one character can be read from @i{wfileid}
without blocking. If you also want to use @code{read-file} or
@code{read-line} on the file, you have to call @code{key?-file} or
@code{key-file} first (these two words disable buffering).""
#ifdef HAS_FILE
fflush(stdout);
f = key_query((FILE*)wfileid);
#else
f = key_query(stdin);
#endif
stdin ( -- wfileid ) gforth
""The standard input file of the Gforth process.""
wfileid = (Cell)stdin;
stdout ( -- wfileid ) gforth
""The standard output file of the Gforth process.""
wfileid = (Cell)stdout;
stderr ( -- wfileid ) gforth
""The standard error output file of the Gforth process.""
wfileid = (Cell)stderr;
\+os
(form) ( -- urows ucols ) gforth paren_form
""The number of lines and columns in the terminal. These numbers may
change with the window size. Note that it depends on the OS whether
this reflects the actual size and changes with the window size
(currently only on Unix-like OSs). On other OSs you just get a
default, and can tell Gforth the terminal size by setting the
environment variables @code{COLUMNS} and @code{LINES} before starting
Gforth.""
/* we could block SIGWINCH here to get a consistent size, but I don't
think this is necessary or always beneficial */
urows=rows;
ucols=cols;
isatty ( wfileid -- f ) gforth isatty
""checks if fd is a (pseudo-)terminal""
f = FLAG(isatty( fileno((FILE*)wfileid) ));
isfg ( wfileid -- f ) gforth isfg
""check if fd is controlled by us (we are the foreground process)""
pid_t fg = tcgetpgrp( fileno((FILE*)wfileid) );
if (fg == -1) {
f=-1; // non-terminal file, is ours
} else
f=FLAG(fg == getpgrp());
wcwidth ( u -- n ) gforth
""The number of fixed-width characters per unicode character u""
n = wcwidth(u);
flush-icache ( c_addr u -- ) gforth flush_icache
""Make sure that the instruction cache of the processor (if there is
one) does not contain stale data at @i{c-addr} and @i{u} bytes
afterwards. @code{END-CODE} performs a @code{flush-icache}
automatically. Caveat: @code{flush-icache} might not work on your
installation; this is usually the case if direct threading is not
supported on your machine (take a look at your @file{machine.h}) and
your machine has a separate instruction cache. In such cases,
@code{flush-icache} does nothing instead of flushing the instruction
cache.""
FLUSH_ICACHE((caddr_t)c_addr,u);
(bye) ( n -- ) gforth paren_bye
SUPER_END;
gforth_FP=fp;
gforth_SP=sp;
gforth_RP=rp;
gforth_LP=lp;
return (Label *)n;
(system) ( c_addr u -- wretval wior ) gforth paren_system
wretval = gforth_system(c_addr, u);
wior = IOR(wretval==-1 || (wretval==127 && errno != 0));
getenv ( c_addr1 u1 -- c_addr2 u2 ) gforth
""The string @i{c-addr1 u1} specifies an environment variable. The string @i{c-addr2 u2}
is the host operating system's expansion of that environment variable. If the
environment variable does not exist, @i{c-addr2 u2} specifies a string 0 characters
in length.""
/* close ' to keep fontify happy */
char * string = cstr(c_addr1,u1);
c_addr2 = (Char *)getenv(string);
u2 = (c_addr2 == NULL ? 0 : strlen((char *)c_addr2));
free_l(string);
open-pipe ( c_addr u wfam -- wfileid wior ) gforth open_pipe
char * string = cstr(c_addr,u);
fflush(stdout);
wfileid=(Cell)popen(string,pfileattr[wfam]); /* ~ expansion of 1st arg? */
wior = IOR(wfileid==0); /* !! the man page says that errno is not set reliably */
free_l(string);
close-pipe ( wfileid -- wretval wior ) gforth close_pipe
wretval = pclose((FILE *)wfileid);
wior = IOR(wretval==-1);
time&date ( -- nsec nmin nhour nday nmonth nyear ) facility-ext time_and_date
""Report the current time of day. Seconds, minutes and hours are numbered from 0.
Months are numbered from 1.""
time_t now;
struct tm ltime;
time(&now);
localtime_r(&now, <ime); /* thread save version */
nyear =ltime.tm_year+1900;
nmonth=ltime.tm_mon+1;
nday =ltime.tm_mday;
nhour =ltime.tm_hour;
nmin =ltime.tm_min;
nsec =ltime.tm_sec;
(ms) ( u -- ) facility-ext paren_ms
""Wait at least @i{n} milli-second.""
gforth_ms(u);
heap-allocate ( u -- a_addr wior ) gforth heap_allocate
""Allocate @i{u} address units of contiguous data space. The initial
contents of the data space is undefined. If the allocation is successful,
@i{a-addr} is the start address of the allocated region and @i{wior}
is 0. If the allocation fails, @i{a-addr} is undefined and @i{wior}
is a non-zero I/O result code.""
a_addr = (Cell *)malloc_l(u?u:1);
wior = IOR(a_addr==NULL);
heap-free ( a_addr -- wior ) gforth heap_free
""Return the region of data space starting at @i{a-addr} to the system.
The region must originally have been obtained using @code{allocate} or
@code{resize}. If the operational is successful, @i{wior} is 0.
If the operation fails, @i{wior} is a non-zero I/O result code.""
free_l(a_addr);
wior = 0;
heap-resize ( a_addr1 u -- a_addr2 wior ) gforth heap_resize
""Change the size of the allocated area at @i{a-addr1} to @i{u}
address units, possibly moving the contents to a different
area. @i{a-addr2} is the address of the resulting area.
If the operation is successful, @i{wior} is 0.
If the operation fails, @i{wior} is a non-zero
I/O result code. If @i{a-addr1} is 0, Gforth's (but not the Standard)
@code{resize} @code{allocate}s @i{u} address units.""
/* the following check is not necessary on most OSs, but it is needed
on SunOS 4.1.2. */
/* close ' to keep fontify happy */
if (a_addr1==NULL)
a_addr2 = (Cell *)malloc_l(u);
else
a_addr2 = (Cell *)realloc_l(a_addr1, (u ? u : 1));
wior = IOR(a_addr2==NULL); /* !! Define a return code */
if(wior)
a_addr2 = a_addr1; /* in case of an error, keep a_addr1 */
strerror ( n -- c_addr u ) gforth
c_addr = (Char *)strerror(n);
u = strlen((char *)c_addr);
strsignal ( n -- c_addr u ) gforth
c_addr = (Char *)strsignal(n);
u = strlen((char *)c_addr);
call-c ( ... w -- ... ) gforth call_c
""Call the C function pointed to by @i{w}. The C function has to
access the stack itself. The stack pointers are exported into a ptrpair
structure passed to the C function, and returned in that form.""
ptrpair x;
IF_fpTOS(fp[0]=fpTOS);
x.fpx=fp;
x.spx=sp;
x=((ptrpair (*)(ptrpair, void*))(w))(x, (void*)w);
sp=x.spx;
fp=x.fpx;
IF_fpTOS(fpTOS=fp[0]);
call-c# ( ... #a_addr -- ... ) gforth call_c_direct
""Call the C function pointed to by the inline argument @i{w}. The C function
has to access the stack itself. The stack pointers are exported into a ptrpair
structure passed to the C function, and returned in that form.""
ptrpair x;
IF_fpTOS(fp[0]=fpTOS);
x.fpx=fp;
x.spx=sp;
x=((ptrpair (*)(ptrpair, void*))(*a_addr))(x, a_addr);
sp=x.spx;
fp=x.fpx;
IF_fpTOS(fpTOS=fp[0]);
gforth-pointers ( -- a_addr ) gforth get_gforth_pointers
a_addr = (Cell*)gforth_pointers;
\+
\+file
close-file ( wfileid -- wior ) file close_file
wior = IOR(fclose((FILE *)wfileid)==EOF);
open-file ( c_addr u wfam -- wfileid wior ) file open_file
char * string = tilde_cstr(c_addr,u);
wfileid = opencreate_file(string, wfam, 0, &wior);
free_l(string);
create-file ( c_addr u wfam -- wfileid wior ) file create_file
char * string = tilde_cstr(c_addr,u);
wfileid = opencreate_file(string, wfam, O_CREAT|O_TRUNC, &wior);
free_l(string);
delete-file ( c_addr u -- wior ) file delete_file
char * string = tilde_cstr(c_addr,u);
wior = IOR(unlink(string)==-1);
free_l(string);
rename-file ( c_addr1 u1 c_addr2 u2 -- wior ) file-ext rename_file
""Rename file @i{c_addr1 u1} to new name @i{c_addr2 u2}""
wior = rename_file(c_addr1, u1, c_addr2, u2);
file-position ( wfileid -- ud wior ) file file_position
/* !! use tell and lseek? */
ud = OFF2UD(ftello((FILE *)wfileid));
wior = IOR(UD2OFF(ud)==-1);
reposition-file ( ud wfileid -- wior ) file reposition_file
wior = IOR(fseeko((FILE *)wfileid, UD2OFF(ud), SEEK_SET)==-1);
file-size ( wfileid -- ud wior ) file file_size
struct stat buf;
wior = IOR(fstat(fileno((FILE *)wfileid), &buf)==-1);
if (wior==0 && (S_ISREG(buf.st_mode) || S_ISDIR(buf.st_mode)))
ud = OFF2UD(buf.st_size);
else {
ud = OFF2UD(0);
wior = -2057; /* wrong file type */
}
resize-file ( ud wfileid -- wior ) file resize_file
wior = IOR(ftruncate(fileno((FILE *)wfileid), UD2OFF(ud))==-1);
read-file ( c_addr u1 wfileid -- u2 wior ) file read_file
/* !! fread does not guarantee enough */
u2 = 0;
do {
u2 += fread(c_addr+u2, sizeof(Char), u1-u2, (FILE *)wfileid);
if (u2>0)
gf_regetc((FILE *)wfileid);
if((wior = FILEIO(u2<u1 && ferror((FILE *)wfileid))))
clearerr((FILE *)wfileid);
} while(wior==TOIOR(EINTR));
(read-line) ( c_addr u1 wfileid -- u2 flag u3 wior ) file paren_read_line
struct Cellquad r = read_line(c_addr, u1, (FILE *)wfileid);
u2 = r.n1;
flag = r.n2;
u3 = r.n3;
wior = r.n4;
\+
write-file ( c_addr u1 wfileid -- wior ) file write_file
/* !! fwrite does not guarantee enough */
#ifdef HAS_FILE
UCell u2 = 0;
do {
u2 += fwrite(c_addr+u2, sizeof(Char), u1-u2, (FILE *)wfileid);
if((wior = FILEIO(u2<u1 && ferror((FILE *)wfileid))))
clearerr((FILE *)wfileid);
} while(wior==TOIOR(EINTR));
#else
TYPE(c_addr, u1);
#endif
emit-file ( c wfileid -- wior ) gforth emit_file
#ifdef HAS_FILE
do {
wior = FILEIO(putc(c, (FILE *)wfileid)==EOF);
if (wior)
clearerr((FILE *)wfileid);
} while(wior==TOIOR(EINTR));
#else
PUTC(c);
#endif
\+file
flush-file ( wfileid -- wior ) file-ext flush_file
wior = IOR(fflush((FILE *) wfileid)==EOF);
file-status ( c_addr u -- wfam wior ) file-ext file_status
struct Cellpair r = file_status(c_addr, u);
wfam = r.n1;
wior = r.n2;
file-eof? ( wfileid -- flag ) gforth file_eof_query
flag = FLAG(feof((FILE *) wfileid));
open-dir ( c_addr u -- wdirid wior ) gforth open_dir
""Open the directory specified by @i{c-addr, u}
and return @i{dir-id} for futher access to it.""
char * string = tilde_cstr(c_addr,u);
wdirid = (Cell)opendir(string);
wior = IOR(wdirid == 0);
free_l(string);
read-dir ( c_addr u1 wdirid -- u2 flag wior ) gforth read_dir
""Attempt to read the next entry from the directory specified
by @i{dir-id} to the buffer of length @i{u1} at address @i{c-addr}.
If the attempt fails because there is no more entries,
@i{ior}=0, @i{flag}=0, @i{u2}=0, and the buffer is unmodified.
If the attempt to read the next entry fails because of any other reason,
return @i{ior}<>0.
If the attempt succeeds, store file name to the buffer at @i{c-addr}
and return @i{ior}=0, @i{flag}=true and @i{u2} equal to the size of the file name.
If the length of the file name is greater than @i{u1},
store first @i{u1} characters from file name into the buffer and
indicate "name too long" with @i{ior}, @i{flag}=true, and @i{u2}=@i{u1}.""
struct dirent * dresult;
dresult=readdir((DIR *)wdirid);
wior = 0;
flag = -1;
if(dresult == NULL) {
u2 = 0;
flag = 0;
} else {
u2 = strlen((char *)dresult->d_name);
if(u2 > u1) {
u2 = u1;
wior = -512-ENAMETOOLONG;
}
memmove(c_addr, dresult->d_name, u2);
}
close-dir ( wdirid -- wior ) gforth close_dir
""Close the directory specified by @i{dir-id}.""
wior = IOR(closedir((DIR *)wdirid));
filename-match ( c_addr1 u1 c_addr2 u2 -- flag ) gforth match_file
""match the file name @var{c_addr1 u1} with the pattern @var{c_addr2 u2}.
Patterns match char by char except for the special characters '*' and '?',
which are wildcards for several ('*') or one ('?') character.""
char * string = cstr(c_addr1, u1);
char * pattern = cstr(c_addr2, u2);
flag = FLAG(!fnmatch(pattern, string, 0));
free_l(string);
free_l(pattern);
set-dir ( c_addr u -- wior ) gforth set_dir
""Change the current directory to @i{c-addr, u}.
Return an error if this is not possible""
char * string = tilde_cstr(c_addr, u);
wior = IOR(chdir(string));
free_l(string);
get-dir ( c_addr1 u1 -- c_addr2 u2 ) gforth get_dir
""Store the current directory in the buffer specified by @i{c-addr1, u1}.
If the buffer size is not sufficient, return 0 0""
c_addr2 = (Char *)getcwd((char *)c_addr1, u1);
if(c_addr2 != NULL) {
u2 = strlen((char *)c_addr2);
} else {
u2 = 0;
}
=mkdir ( c_addr u wmode -- wior ) gforth equals_mkdir
""Create directory @i{c-addr u} with mode @i{wmode}.""
char * string = tilde_cstr(c_addr,u);
wior = IOR(mkdir(string,wmode));
free_l(string);
\+
newline ( -- c_addr u ) gforth
""String containing the newline sequence of the host OS""
static const char newline[] = {
#if DIRSEP=='/'
/* Unix */
'\n'
#else
/* DOS, Win, OS/2 */
'\r','\n'
#endif
};
c_addr=(Char *)newline;
u=sizeof(newline);
:
"newline count ;
Create "newline e? crlf [IF] 2 c, $0D c, [ELSE] 1 c, [THEN] $0A c,
\+os
utime ( -- dtime ) gforth
""Report the current time in microseconds since some epoch.""
struct timeval time1;
gettimeofday(&time1,NULL);
dtime = timeval2us(&time1);
cputime ( -- duser dsystem ) gforth
""duser and dsystem are the respective user- and system-level CPU
times used since the start of the Forth system (excluding child
processes), in microseconds (the granularity may be much larger,
however). On platforms without the getrusage call, it reports elapsed
time (since some epoch) for duser and 0 for dsystem.""
#ifdef HAVE_GETRUSAGE
struct rusage usage;
getrusage(RUSAGE_SELF, &usage);
duser = timeval2us(&usage.ru_utime);
dsystem = timeval2us(&usage.ru_stime);
#else
struct timeval time1;
gettimeofday(&time1,NULL);
duser = timeval2us(&time1);
dsystem = DZERO;
#endif
ntime ( -- dtime ) gforth
""Report the current time in nanoseconds since some epoch.""
struct timespec time1;
#ifdef HAVE_CLOCK_GETTIME
clock_gettime(CLOCK_REALTIME,&time1);
#else
struct timeval time2;
gettimeofday(&time2,NULL);
time1.tv_sec = time2.tv_sec;
time1.tv_nsec = time2.tv_usec*1000;
#endif
dtime = timespec2ns(&time1);
(ns) ( uns nsec -- wior ) gforth paren_ns
""Wait for usec+uns, values precomputed in Forth""
if(nsec >= 0) {
#if HAVE_PSELECT
struct timespec tout = { nsec, uns };
wior=IOR(pselect(0, NULL, NULL, NULL, &tout, NULL) < 0);
#else
struct timeval tout = { nsec, uns/1000 };
wior=IOR(select(0, NULL, NULL, NULL, &tout) < 0);
#endif
} else {
wior = 0;
}
\+
\+floating
\g floating
comparisons(f, r1 r2, f_, r1, r2, gforth, gforth, float, gforth)
comparisons(f0, r, f_zero_, r, 0., float, gforth, float, gforth)
s>f ( n -- r ) float s_to_f
r = n;
d>f ( d -- r ) float d_to_f
#ifdef BUGGY_LL_D2F
extern double ldexp(double x, int exp);
if (DHI(d)<0) {
#ifdef BUGGY_LL_ADD
DCell d2=dnegate(d);
#else
DCell d2=-d;
#endif
r = -(ldexp((Float)DHI(d2),CELL_BITS) + (Float)DLO(d2));
} else
r = ldexp((Float)DHI(d),CELL_BITS) + (Float)DLO(d);
#else
r = d;
#endif
f>d ( r -- d ) float f_to_d
extern DCell double2ll(Float r);
d = double2ll(r);
f>s ( r -- n ) float f_to_s
n = (Cell)r;
f! ( r f_addr -- ) float f_store
""Store @i{r} into the float at address @i{f-addr}.""
*f_addr = r;
f@ ( f_addr -- r ) float f_fetch
""@i{r} is the float at address @i{f-addr}.""
r = *f_addr;
df@ ( df_addr -- r ) float-ext d_f_fetch
""Fetch the double-precision IEEE floating-point value @i{r} from the address @i{df-addr}.""
#ifdef IEEE_FP
r = *df_addr;
#else
!! df@
#endif
df! ( r df_addr -- ) float-ext d_f_store
""Store @i{r} as double-precision IEEE floating-point value to the
address @i{df-addr}.""
#ifdef IEEE_FP
*df_addr = r;
#else
!! df!
#endif
sf@ ( sf_addr -- r ) float-ext s_f_fetch
""Fetch the single-precision IEEE floating-point value @i{r} from the address @i{sf-addr}.""
#ifdef IEEE_FP
r = *sf_addr;
#else
!! sf@
#endif
sf! ( r sf_addr -- ) float-ext s_f_store
""Store @i{r} as single-precision IEEE floating-point value to the
address @i{sf-addr}.""
#ifdef IEEE_FP
*sf_addr = r;
#else
!! sf!
#endif
f+ ( r1 r2 -- r3 ) float f_plus
r3 = r1+r2;
f- ( r1 r2 -- r3 ) float f_minus
r3 = r1-r2;
f* ( r1 r2 -- r3 ) float f_star
r3 = r1*r2;
f/ ( r1 r2 -- r3 ) float f_slash
r3 = r1/r2;
f** ( r1 r2 -- r3 ) float-ext f_star_star
""@i{r3} is @i{r1} raised to the @i{r2}th power.""
CLOBBER_TOS_WORKAROUND_START;
r3 = pow(r1,r2);
CLOBBER_TOS_WORKAROUND_END;
fm* ( r1 n -- r2 ) gforth fm_star
r2 = r1*n;
fm/ ( r1 n -- r2 ) gforth fm_slash
r2 = r1/n;
fm*/ ( r1 n1 n2 -- r2 ) gforth fm_star_slash
r2 = (r1*n1)/n2;
f**2 ( r1 -- r2 ) gforth fm_square
r2 = r1*r1;
fnegate ( r1 -- r2 ) float f_negate
r2 = - r1;
fdrop ( r -- ) float f_drop
fdup ( r -- r r ) float f_dupe
fswap ( r1 r2 -- r2 r1 ) float f_swap
fover ( r1 r2 -- r1 r2 r1 ) float f_over
frot ( r1 r2 r3 -- r2 r3 r1 ) float f_rote
fnip ( r1 r2 -- r2 ) gforth f_nip
ftuck ( r1 r2 -- r2 r1 r2 ) gforth f_tuck
float+ ( f_addr1 -- f_addr2 ) float float_plus
""@code{1 floats +}.""
f_addr2 = f_addr1+1;
floats ( n1 -- n2 ) float
""@i{n2} is the number of address units of @i{n1} floats.""
n2 = n1*sizeof(Float);
floor ( r1 -- r2 ) float
""Round towards the next smaller integral value, i.e., round toward negative infinity.""
/* !! unclear wording */
CLOBBER_TOS_WORKAROUND_START;
r2 = floor(r1);
CLOBBER_TOS_WORKAROUND_END;
fround ( r1 -- r2 ) float f_round
""Round to the nearest integral value.""
CLOBBER_TOS_WORKAROUND_START;
r2 = rint(r1);
CLOBBER_TOS_WORKAROUND_END;
fmax ( r1 r2 -- r3 ) float f_max
if (r1<r2)
r3 = r2;
else
r3 = r1;
fmin ( r1 r2 -- r3 ) float f_min
if (r1<r2)
r3 = r1;
else
r3 = r2;
represent ( r c_addr u -- n f1 f2 ) float
char sig[0x40];
size_t siglen;
int flag;
int decpt;
if (isnan(r)) {
flag=0;
decpt=0;
strncpy(sig, "nan", 0x3f); /* normalize nan output */
} else {
ecvt_r(r, u, &decpt, &flag, sig, 0x3f);
}
n=(r==0. ? 1 : decpt);
flag=signbit(r); /* not all ecvt()s do this as desired */
f1=FLAG(flag!=0);
f2=FLAG(isdigit((unsigned)(sig[0]))!=0);
siglen=strlen((char *)sig);
if (siglen>u) /* happens in glibc-2.1.3 if 999.. is rounded up */
siglen=u;
if (!f2) /* workaround Cygwin trailing 0s for Inf and Nan */
for (; sig[siglen-1]=='0'; siglen--);
;
memmove(c_addr,sig,siglen);
memset(c_addr+siglen,f2?'0':' ',u-siglen);
>float ( c_addr u -- f:... flag ) float to_float
""Actual stack effect: ( c_addr u -- r t | f ). Attempt to convert the
character string @i{c-addr u} to internal floating-point
representation. If the string represents a valid floating-point number
@i{r} is placed on the floating-point stack and @i{flag} is
true. Otherwise, @i{flag} is false. A string of blanks is a special
case and represents the floating-point number 0.""
Float r;
flag = to_float(c_addr, u, &r, '.');
if (flag) {
fp--;
fp[0]=r;
}
fabs ( r1 -- r2 ) float-ext f_abs
r2 = fabs(r1);
facos ( r1 -- r2 ) float-ext f_a_cos
CLOBBER_TOS_WORKAROUND_START;
r2 = acos(r1);
CLOBBER_TOS_WORKAROUND_END;
fasin ( r1 -- r2 ) float-ext f_a_sine
CLOBBER_TOS_WORKAROUND_START;
r2 = asin(r1);
CLOBBER_TOS_WORKAROUND_END;
fatan ( r1 -- r2 ) float-ext f_a_tan
CLOBBER_TOS_WORKAROUND_START;
r2 = atan(r1);
CLOBBER_TOS_WORKAROUND_END;
fatan2 ( r1 r2 -- r3 ) float-ext f_a_tan_two
""@i{r1/r2}=tan(@i{r3}). ANS Forth does not require, but probably
intends this to be the inverse of @code{fsincos}. In gforth it is.""
CLOBBER_TOS_WORKAROUND_START;
r3 = atan2(r1,r2);
CLOBBER_TOS_WORKAROUND_END;
fcos ( r1 -- r2 ) float-ext f_cos
CLOBBER_TOS_WORKAROUND_START;
r2 = cos(r1);
CLOBBER_TOS_WORKAROUND_END;
fexp ( r1 -- r2 ) float-ext f_e_x_p
CLOBBER_TOS_WORKAROUND_START;
r2 = exp(r1);
CLOBBER_TOS_WORKAROUND_END;
fexpm1 ( r1 -- r2 ) float-ext f_e_x_p_m_one
""@i{r2}=@i{e}**@i{r1}@minus{}1""
#ifdef HAVE_EXPM1
extern double
#ifdef NeXT
const
#endif
expm1(double);
CLOBBER_TOS_WORKAROUND_START;
r2 = expm1(r1);
#else
r2 = exp(r1)-1.;
#endif
CLOBBER_TOS_WORKAROUND_END;
fln ( r1 -- r2 ) float-ext f_l_n
CLOBBER_TOS_WORKAROUND_START;
r2 = log(r1);
CLOBBER_TOS_WORKAROUND_END;
flnp1 ( r1 -- r2 ) float-ext f_l_n_p_one
""@i{r2}=ln(@i{r1}+1)""
#ifdef HAVE_LOG1P
extern double
#ifdef NeXT
const
#endif
log1p(double);
CLOBBER_TOS_WORKAROUND_START;
r2 = log1p(r1);
#else
r2 = log(r1+1.);
#endif
CLOBBER_TOS_WORKAROUND_END;
flog ( r1 -- r2 ) float-ext f_log
""The decimal logarithm.""
CLOBBER_TOS_WORKAROUND_START;
r2 = log10(r1);
CLOBBER_TOS_WORKAROUND_END;
falog ( r1 -- r2 ) float-ext f_a_log
""@i{r2}=10**@i{r1}""
extern double pow10(double);
CLOBBER_TOS_WORKAROUND_START;
r2 = pow10(r1);
CLOBBER_TOS_WORKAROUND_END;
fsin ( r1 -- r2 ) float-ext f_sine
CLOBBER_TOS_WORKAROUND_START;
r2 = sin(r1);
CLOBBER_TOS_WORKAROUND_END;
fsincos ( r1 -- r2 r3 ) float-ext f_sine_cos
""@i{r2}=sin(@i{r1}), @i{r3}=cos(@i{r1})""
CLOBBER_TOS_WORKAROUND_START;
sincos(r1, &r2, &r3);
CLOBBER_TOS_WORKAROUND_END;
fsqrt ( r1 -- r2 ) float-ext f_square_root
CLOBBER_TOS_WORKAROUND_START;
r2 = sqrt(r1);
CLOBBER_TOS_WORKAROUND_END;
ftan ( r1 -- r2 ) float-ext f_tan
CLOBBER_TOS_WORKAROUND_START;
r2 = tan(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fsincos f/ ;
fsinh ( r1 -- r2 ) float-ext f_cinch
CLOBBER_TOS_WORKAROUND_START;
r2 = sinh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fexpm1 fdup fdup 1. d>f f+ f/ f+ f2/ ;
fcosh ( r1 -- r2 ) float-ext f_cosh
CLOBBER_TOS_WORKAROUND_START;
r2 = cosh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fexp fdup 1/f f+ f2/ ;
ftanh ( r1 -- r2 ) float-ext f_tan_h
CLOBBER_TOS_WORKAROUND_START;
r2 = tanh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
f2* fexpm1 fdup 2. d>f f+ f/ ;
fasinh ( r1 -- r2 ) float-ext f_a_cinch
CLOBBER_TOS_WORKAROUND_START;
r2 = asinh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fdup fdup f* 1. d>f f+ fsqrt f/ fatanh ;
facosh ( r1 -- r2 ) float-ext f_a_cosh
CLOBBER_TOS_WORKAROUND_START;
r2 = acosh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fdup fdup f* 1. d>f f- fsqrt f+ fln ;
fatanh ( r1 -- r2 ) float-ext f_a_tan_h
CLOBBER_TOS_WORKAROUND_START;
r2 = atanh(r1);
CLOBBER_TOS_WORKAROUND_END;
:
fdup f0< >r fabs 1. d>f fover f- f/ f2* flnp1 f2/
r> IF fnegate THEN ;
sfloats ( n1 -- n2 ) float-ext s_floats
""@i{n2} is the number of address units of @i{n1}
single-precision IEEE floating-point numbers.""
n2 = n1*sizeof(SFloat);
dfloats ( n1 -- n2 ) float-ext d_floats
""@i{n2} is the number of address units of @i{n1}
double-precision IEEE floating-point numbers.""
n2 = n1*sizeof(DFloat);
sfaligned ( c_addr -- sf_addr ) float-ext s_f_aligned
""@i{sf-addr} is the first single-float-aligned address greater
than or equal to @i{c-addr}.""
sf_addr = (SFloat *)((((Cell)c_addr)+(sizeof(SFloat)-1))&(-sizeof(SFloat)));
:
[ 1 sfloats 1- ] Literal + [ -1 sfloats ] Literal and ;
dfaligned ( c_addr -- df_addr ) float-ext d_f_aligned
""@i{df-addr} is the first double-float-aligned address greater
than or equal to @i{c-addr}.""
df_addr = (DFloat *)((((Cell)c_addr)+(sizeof(DFloat)-1))&(-sizeof(DFloat)));
:
[ 1 dfloats 1- ] Literal + [ -1 dfloats ] Literal and ;
v* ( f_addr1 nstride1 f_addr2 nstride2 ucount -- r ) gforth v_star
""dot-product: r=v1*v2. The first element of v1 is at f_addr1, the
next at f_addr1+nstride1 and so on (similar for v2). Both vectors have
ucount elements.""
r = v_star(f_addr1, nstride1, f_addr2, nstride2, ucount);
:
>r swap 2swap swap 0e r> 0 ?DO
dup f@ over + 2swap dup f@ f* f+ over + 2swap
LOOP 2drop 2drop ;
faxpy ( ra f_x nstridex f_y nstridey ucount -- ) gforth
""vy=ra*vx+vy""
faxpy(ra, f_x, nstridex, f_y, nstridey, ucount);
:
>r swap 2swap swap r> 0 ?DO
fdup dup f@ f* over + 2swap dup f@ f+ dup f! over + 2swap
LOOP 2drop 2drop fdrop ;
>float1 ( c_addr u c -- f:... flag ) gforth to_float1
""Actual stack effect: ( c_addr u c -- r t | f ). Attempt to convert the
character string @i{c-addr u} to internal floating-point
representation. If the string represents a valid floating-point number
@i{r} is placed on the floating-point stack and @i{flag} is
true. Otherwise, @i{flag} is false. A string of blanks is a special
case and represents the floating-point number 0.""
Float r;
flag = to_float(c_addr, u, &r, c);
if (flag) {
fp--;
fp[0]=r;
}
float/ ( n1 -- n2 ) gforth float_divide
n2 = n1 / sizeof(Float);
dfloat/ ( n1 -- n2 ) gforth sfloat_divide
n2 = n1 / sizeof(DFloat);
sfloat/ ( n1 -- n2 ) gforth dfloat_divide
n2 = n1 / sizeof(SFloat);
f-rot ( r1 r2 r3 -- r3 r1 r2 ) float f_not_rote
flit ( -- r1 ) gforth
r1 = *(Float*)ip;
INC_IP(sizeof(Float)/sizeof(Cell));
\+
\ The following words access machine/OS/installation-dependent
\ Gforth internals
\ !! how about environmental queries DIRECT-THREADED,
\ INDIRECT-THREADED, TOS-CACHED, FTOS-CACHED, CODEFIELD-DOES */
\ local variable implementation primitives
\+glocals
\g locals
@local# ( #noffset -- w ) gforth fetch_local_number
w = *(Cell *)(lp+noffset);
@local0 ( -- w ) new fetch_local_zero
w = ((Cell *)lp)[0];
@local1 ( -- w ) new fetch_local_four
w = ((Cell *)lp)[1];
@local2 ( -- w ) new fetch_local_eight
w = ((Cell *)lp)[2];
@local3 ( -- w ) new fetch_local_twelve
w = ((Cell *)lp)[3];
\+floating
f@local# ( #noffset -- r ) gforth f_fetch_local_number
r = *(Float *)(lp+noffset);
f@local0 ( -- r ) new f_fetch_local_zero
r = ((Float *)lp)[0];
f@local1 ( -- r ) new f_fetch_local_eight
r = ((Float *)lp)[1];
\+
laddr# ( #noffset -- c_addr ) gforth laddr_number
/* this can also be used to implement lp@ */
c_addr = (Char *)(lp+noffset);
lp+!# ( #noffset -- ) gforth lp_plus_store_number
""used with negative immediate values it allocates memory on the
local stack, a positive immediate argument drops memory from the local
stack""
lp += noffset;
lp- ( -- ) new minus_four_lp_plus_store
lp += -sizeof(Cell);
lp+ ( -- ) new eight_lp_plus_store
lp += sizeof(Float);
lp+2 ( -- ) new sixteen_lp_plus_store
lp += 2*sizeof(Float);
lp! ( c_addr -- ) gforth lp_store
lp = (Address)c_addr;
>l ( w -- ) gforth to_l
lp -= sizeof(Cell);
*(Cell *)lp = w;
\+floating
f>l ( r -- ) gforth f_to_l
lp -= sizeof(Float);
*(Float *)lp = r;
fpick ( f:... u -- f:... r ) gforth
""Actually the stack effect is @code{ r0 ... ru u -- r0 ... ru r0 }.""
r = fp[u];
:
floats fp@ + f@ ;
\+
\+
\+OS
\g syslib
open-lib ( c_addr1 u1 -- u2 ) gforth open_lib
u2 = gforth_dlopen(c_addr1, u1);
lib-sym ( c_addr1 u1 u2 -- u3 ) gforth lib_sym
char * string = cstr(c_addr1, u1);
#ifdef HAVE_LIBLTDL
u3 = (UCell) lt_dlsym((lt_dlhandle)u2, string);
#elif defined(HAVE_LIBDL) || defined(HAVE_DLOPEN)
u3 = (UCell) dlsym((void*)u2,string);
#else
# ifdef _WIN32
u3 = (Cell) GetProcAddress((HMODULE)u2, string);
# else
#warning Define lib-sym!
u3 = 0;
# endif
#endif
free_l(string);
wcall ( ... u -- ... ) gforth
gforth_FP=fp;
sp=(Cell*)(SYSCALL(Cell*(*)(Cell *, void *))u)(sp, &gforth_FP);
fp=gforth_FP;
uw@ ( c_addr -- u ) gforth u_w_fetch
""@i{u} is the zero-extended 16-bit value stored at @i{c_addr}.""
UWyde wy;
memmove((Char*)&wy, c_addr, 2);
u = wy;
sw@ ( c_addr -- n ) gforth s_w_fetch
""@i{n} is the sign-extended 16-bit value stored at @i{c_addr}.""
Wyde wy;
memmove((Char*)&wy, c_addr, 2);
n = wy;
w! ( w c_addr -- ) gforth w_store
""Store the bottom 16 bits of @i{w} at @i{c_addr}.""
UWyde wy=w;
memmove(c_addr, (Char*)&wy, 2);
ul@ ( c_addr -- u ) gforth u_l_fetch
""@i{u} is the zero-extended 32-bit value stored at @i{c_addr}.""
UTetrabyte tb;
memmove((Char*)&tb, c_addr, 4);
u = tb;
sl@ ( c_addr -- n ) gforth s_l_fetch
""@i{n} is the sign-extended 32-bit value stored at @i{c_addr}.""
Tetrabyte tb;
memmove((Char*)&tb, c_addr, 4);
n = tb;
l! ( w c_addr -- ) gforth l_store
""Store the bottom 32 bits of @i{w} at @i{c_addr}.""
UTetrabyte tb=w;
memmove(c_addr, (Char*)&tb, 4);
lib-error ( -- c_addr u ) gforth lib_error
""Error message for last failed @code{open-lib} or @code{lib-sym}.""
#ifdef HAVE_LIBLTDL
c_addr = (Char *)lt_dlerror();
u = (c_addr == NULL) ? 0 : strlen((char *)c_addr);
#elif defined(HAVE_LIBDL) || defined(HAVE_DLOPEN)
c_addr = (Char *)dlerror();
u = strlen((char *)c_addr);
#else
c_addr = "libltdl is not configured";
u = strlen((char *)c_addr);
#endif
be-w! ( w c_addr -- ) gforth w_store_be
""Store the bottom 16 bits of @i{w} at @i{c_addr} in big endian format.""
#ifdef WORDS_BIGENDIAN
UWyde wy=w;
#else
UWyde wy=BSWAP16(w);
#endif
memmove(c_addr, (Char*)&wy, 2);
be-l! ( w c_addr -- ) gforth l_store_be
""Store the bottom 32 bits of @i{w} at @i{c_addr} in big endian format.""
#ifdef WORDS_BIGENDIAN
UTetrabyte tb=w;
#else
UTetrabyte tb=BSWAP32(w);
#endif
memmove(c_addr, (Char*)&tb, 4);
le-w! ( w c_addr -- ) gforth w_store_le
""Store the bottom 16 bits of @i{w} at @i{c_addr} in big endian format.""
#ifndef WORDS_BIGENDIAN
UWyde wy=w;
#else
UWyde wy=BSWAP16(w);
#endif
memmove(c_addr, (Char*)&wy, 2);
le-l! ( w c_addr -- ) gforth l_store_le
""Store the bottom 32 bits of @i{w} at @i{c_addr} in big endian format.""
#ifndef WORDS_BIGENDIAN
UTetrabyte tb=w;
#else
UTetrabyte tb=BSWAP32(w);
#endif
memmove(c_addr, (Char*)&tb, 4);
be-uw@ ( c_addr -- u ) gforth w_fetch_be
""@i{u} is the zero-extended 16-bit big endian value stored at @i{c_addr}.""
UWyde wy;
memmove((Char*)&wy, c_addr, 2);
#ifdef WORDS_BIGENDIAN
u = wy;
#else
u = BSWAP16(wy);
#endif
be-ul@ ( c_addr -- u ) gforth l_fetch_be
""@i{u} is the zero-extended 32-bit big endian value stored at @i{c_addr}.""
UTetrabyte tb;
memmove((Char*)&tb, c_addr, 4);
#ifdef WORDS_BIGENDIAN
u = tb;
#else
u = BSWAP32(tb);
#endif
le-uw@ ( c_addr -- u ) gforth w_fetch_le
""@i{u} is the zero-extended 16-bit little endian value stored at @i{c_addr}.""
UWyde wy;
memmove((Char*)&wy, c_addr, 2);
#ifndef WORDS_BIGENDIAN
u = wy;
#else
u = BSWAP16(wy);
#endif
le-ul@ ( c_addr -- u ) gforth l_fetch_le
""@i{u} is the zero-extended 32-bit little endian value stored at @i{c_addr}.""
UTetrabyte tb;
memmove((Char*)&tb, c_addr, 4);
#ifndef WORDS_BIGENDIAN
u = tb;
#else
u = BSWAP32(tb);
#endif
close-lib ( u -- ) gforth close_lib
gforth_dlclose(u);
\+
\g 64bit
\+64bit
x! ( w c_addr -- ) gforth x_store
""Store the bottom 64 bits of @i{w} at 64-bit-aligned @i{c_addr}.""
UOctabyte ob=w;
memmove(c_addr, (Char*)&ob, 8);
ux@ ( c_addr -- u ) gforth u_x_fetch
""@i{u} is the zero-extended 64-bit value stored at 64-bit-aligned @i{c_addr}.""
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
u = ob;
sx@ ( c_addr -- n ) gforth s_x_fetch
""@i{u} is the sign-extended 64-bit value stored at 64-bit-aligned @i{c_addr}.""
Octabyte ob;
memmove((Char*)&ob, c_addr, 8);
n = ob;
be-x! ( w c_addr -- ) gforth b_e_x_store
""Store the bottom 64 bits of @i{w} at @i{c_addr} in big endian format.""
UOctabyte ob;
#ifdef WORDS_BIGENDIAN
ob=w;
#else
ob=BSWAP64(w);
#endif
memmove(c_addr, (Char*)&ob, 8);
le-x! ( w c_addr -- ) gforth l_e_x_store
""Store the bottom 64 bits of @i{w} at @i{c_addr} in big endian format.""
UOctabyte ob;
#ifndef WORDS_BIGENDIAN
ob=w;
#else
ob=BSWAP64(w);
#endif
memmove(c_addr, (Char*)&ob, 8);
be-ux@ ( c_addr -- u ) gforth b_e_u_x_fetch
""@i{u} is the zero-extended 64-bit big endian value stored at @i{c_addr}.""
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
#ifdef WORDS_BIGENDIAN
u = ob;
#else
u=BSWAP64(ob);
#endif
le-ux@ ( c_addr -- u ) gforth l_e_u_x_fetch
""@i{u} is the zero-extended 64-bit little endian value stored at @i{c_addr}.""
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
#ifndef WORDS_BIGENDIAN
u = ob;
#else
u=BSWAP64(ob);
#endif
\+
\g memory
xd! ( ud c_addr -- ) gforth xd_store
""Store the bottom 64 bits of @i{ud} at 64-bit-aligned @i{c_addr}.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
# ifdef WORDS_BIGENDIAN
UTetrabyte tb[2];
tb[0]=DHI(ud);
tb[1]=DLO(ud);
memmove(c_addr, (Char*)tb, 8);
# else
UTetrabyte tb[2];
tb[1]=DHI(ud);
tb[0]=DLO(ud);
memmove(c_addr, (Char*)tb, 8);
# endif
# else
UOctabyte ob=DLO(ud);
memmove(c_addr, (Char*)&ob, 8);
# endif
#else
UOctabyte ob=ud;
memmove(c_addr, (Char*)&ob, 8);
#endif
uxd@ ( c_addr -- ud ) gforth u_xd_fetch
""@i{ud} is the zero-extended 64-bit value stored at 64-bit-aligned @i{c_addr}.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
memmove((Char*)tb, c_addr, 8);
# ifdef WORDS_BIGENDIAN
D_IS(ud, tb[0], tb[1]);
# else
D_IS(ud, tb[1], tb[0]);
# endif
# else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
D_IS(ud, 0, ob);
# endif
#else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
ud = ob;
#endif
sxd@ ( c_addr -- d ) gforth s_xd_fetch
""@i{d} is the sign-extended 64-bit value stored at 64-bit-aligned @i{c_addr}.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
memmove((Char*)tb, c_addr, 8);
# ifdef WORDS_BIGENDIAN
D_IS(d, tb[0], tb[1]);
# else
D_IS(d, tb[1], tb[0]);
# endif
# else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
D_IS(d, -(ob<0), ob);
# endif
#else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
d = ob;
#endif
be-xd! ( ud c_addr -- ) gforth b_e_xd_store
""Store the bottom 64 bits of @i{ud} at @i{c_addr} in big endian format.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
# ifdef WORDS_BIGENDIAN
tb[0]=DHI(ud);
tb[1]=DLO(ud);
# else
tb[0]=BSWAP32(DHI(ud));
tb[1]=BSWAP32(DLO(ud));
# endif
memmove(c_addr, (Char*)tb, 8);
# else
UOctabyte ob;
# ifdef WORDS_BIGENDIAN
ob=DLO(ud);
# else
ob=BSWAP64(DLO(ud));
# endif
memmove(c_addr, (Char*)&ob, 8);
# endif
#else
UOctabyte ob;
# ifdef WORDS_BIGENDIAN
ob=ud;
# else
ob=BSWAP64(ud);
# endif
memmove(c_addr, (Char*)&ob, 8);
#endif
le-xd! ( ud c_addr -- ) gforth l_e_xd_store
""Store the bottom 64 bits of @i{ud} at @i{c_addr} in big endian format.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
# ifndef WORDS_BIGENDIAN
tb[1]=DHI(ud);
tb[0]=DLO(ud);
# else
tb[1]=BSWAP32(DHI(ud));
tb[0]=BSWAP32(DLO(ud));
# endif
memmove(c_addr, (Char*)tb, 8);
# else
UOctabyte ob;
# ifndef WORDS_BIGENDIAN
ob=DLO(ud);
# else
ob=BSWAP64(DLO(ud));
# endif
memmove(c_addr, (Char*)&ob, 8);
# endif
#else
UOctabyte ob;
# ifndef WORDS_BIGENDIAN
ob=ud;
# else
ob=BSWAP64(ud);
# endif
memmove(c_addr, (Char*)&ob, 8);
#endif
be-uxd@ ( c_addr -- ud ) gforth b_e_u_xd_fetch
""@i{u} is the zero-extended 64-bit big endian value stored at @i{c_addr}.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
memmove((Char*)tb, c_addr, 8);
# ifdef WORDS_BIGENDIAN
D_IS(ud, tb[0], tb[1]);
# else
D_IS(ud, BSWAP32(tb[0]), BSWAP32(tb[1]));
# endif
# else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
# ifdef WORDS_BIGENDIAN
D_IS(ud, 0, ob);
# else
D_IS(ud, 0, BSWAP64(ob));
# endif
# endif
#else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
# ifdef WORDS_BIGENDIAN
ud=ob;
# else
ud=BSWAP64(ob);
# endif
#endif
le-uxd@ ( c_addr -- ud ) gforth l_e_u_xd_fetch
""@i{u} is the zero-extended 64-bit little endian value stored at @i{c_addr}.""
#ifdef BUGGY_LL_SIZE
# if (SIZEOF_CHAR_P == 4)
UTetrabyte tb[2];
memmove((Char*)tb, c_addr, 8);
# ifndef WORDS_BIGENDIAN
D_IS(ud, tb[1], tb[0]);
# else
D_IS(ud, BSWAP32(tb[1]), BSWAP32(tb[0]));
# endif
# else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
# ifndef WORDS_BIGENDIAN
D_IS(ud, 0, ob);
# else
D_IS(ud, 0, BSWAP64(ob));
# endif
# endif
#else
UOctabyte ob;
memmove((Char*)&ob, c_addr, 8);
# ifndef WORDS_BIGENDIAN
ud=ob;
# else
ud=BSWAP64(ob);
# endif
#endif
w>< ( u1 -- u2 ) gforth wordswap
u2=BSWAP16(u1);
l>< ( u1 -- u2 ) gforth longswap
u2=BSWAP32(u1);
x>< ( u1 -- u2 ) gforth extralongswap
u2=BSWAP64((uint64_t)u1);
xd>< ( ud1 -- ud2 ) gforth extralongdswap
#if SIZEOF_CHAR_P == 8
D_IS(ud2, 0LL, BSWAP64(DLO(ud1)));
#else
# ifdef BUGGY_LL_SWAP
D_IS(ud2, BSWAP32(DLO(ud1)), BSWAP32(DHI(ud1)));
# else
ud2=BSWAP64(ud1);
# endif
#endif
c>s ( w1 -- n2 ) gforth char_sext
n2=(signed char)w1;
w>s ( w1 -- n2 ) gforth word_sext
n2=(Wyde)w1;
l>s ( w1 -- n2 ) gforth long_sext
n2=(Tetrabyte)w1;
>pow2 ( u1 -- u2 ) gforth to_pow2
#ifdef HAVE___BUILTIN_CLZL
u2=(u1 == 1) ? u1 : // widely found bug for scanning 0
(((UCell)-1)>>__builtin_clzl(u1-1))+1;
#else
u1--;
u1 |= u1>>1;
u1 |= u1>>2;
u1 |= u1>>4;
u1 |= u1>>8;
u1 |= u1>>16;
#if SIZEOF_CHAR_P == 8
u1 |= u1>>32;
#endif
u2 = u1+1;
#endif
\g atomic
!@ ( u1 a_addr -- u2 ) gforth-experimental store_fetch
""load @var{u2} from @var{a_addr}, and store @var{u1} there, as atomic operation""
#ifdef HAS_ATOMIC
u2 = __sync_lock_test_and_set(a_addr, u1);
#else
u2 = *a_addr;
*a_addr = u1;
#endif
+!@ ( u1 a_addr -- u2 ) gforth-experimental add_store_fetch
""load @var{u2} from @var{a_addr}, and increment this location by @var{u1}, as atomic operation""
#ifdef HAS_ATOMIC
u2 = __sync_fetch_and_add(a_addr, u1);
#else
u2 = *a_addr;
*a_addr += u1;
#endif
?!@ ( unew uold a_addr -- uprev ) gforth-experimental question_store_fetch
""load @var{uprev} from @var{a_addr}, compare it to @var{uold}, and if equal, store @var{unew} there, as atomic operation""
#ifdef HAS_ATOMIC
uprev = __sync_val_compare_and_swap(a_addr, uold, unew);
#else
uprev = *a_addr;
if(*a_addr == uold) *a_addr = unew;
#endif
barrier ( -- ) gforth-experimental
""Insert a full memory barrier""
#ifdef HAS_ATOMIC
__sync_synchronize();
#endif
\g peephole
\+peephole
compile-prim1 ( a_prim -- ) gforth compile_prim1
""compile prim (incl. immargs) at @var{a_prim}""
compile_prim1(a_prim);
finish-code ( ... -- ... ) gforth finish_code
""Perform delayed steps in code generation (branch resolution, I-cache
flushing).""
/* The ... above are a workaround for a bug in gcc-2.95, which fails
to save spTOS (gforth-fast --enable-force-reg) */
finish_code();
forget-dyncode ( c_code -- f ) gforth-internal forget_dyncode
f = forget_dyncode(c_code);
decompile-prim ( a_code -- a_prim ) gforth-internal decompile_prim
""a_prim is the code address of the primitive that has been
compile_prim1ed to a_code""
a_prim = (Cell *)decompile_code((Label)a_code);
tag-offsets ( -- a_addr ) gforth tag_offsets
extern Cell groups[32];
a_addr = groups;
\+
\g primitive_centric
\ primitives for primitive-centric code
\ another one is does-exec
abi-call ( #a_callee ... -- ... ) gforth-internal abi_call
/* primitive for compiled ABI-CODE words */
abifunc *f = (abifunc *)a_callee;
Float *fp_mem = fp;
sp = (*f)(sp, &fp_mem);
fp = fp_mem;
;abi-code-exec ( #a_cfa ... -- ... ) gforth-internal semi_abi_code_exec
/* primitive for performing ;ABI-CODE words */
Float *fp_mem = fp;
semiabifunc *f = (semiabifunc *)EXTRA_CODE(a_cfa);
Address body = (Address)PFA(a_cfa);
sp = (*f)(sp, &fp_mem, body);
fp = fp_mem;
lit-execute ( #a_addr -- ) new lit_execute
/* for ;code and code words; a static superinstruction would be more general,
but VM_JUMP is currently not supported there */
ip=IP;
SUPER_END;
VM_JUMP(EXEC1((Xt)a_addr));
\g object_pointer
\+objects
>o ( c_addr -- r:c_old ) new to_o
c_old = op;
op = c_addr;
o> ( r:c_addr -- ) new o_restore
op = c_addr;
o#+ ( #w -- c_addr ) new o_lit_plus
c_addr = op + w;
o#exec ( #w -- ) new o_lit_exec
""method invocation, use index -1 of current op as vtable""
ip=IP;
SUPER_END;
VM_JUMP(EXEC1(((Xt**)op)[-1][w]));
x#exec ( c_addr #w -- c_addr ) new x_lit_exec
""method invocation using the stack""
ip=IP;
SUPER_END;
VM_JUMP(EXEC1(((Xt**)c_addr)[-1][w]));
u#exec ( #n #w -- ) new u_lit_exec
""method invocation using a user address as current object""
ip=IP;
SUPER_END;
VM_JUMP(EXEC1((*(Xt***)(((Address)up)+n))[-1][w]));
u#+ ( #n #w -- c_addr ) new u_lit_plus
""instance variable using a user address as current object""
c_addr = (*(Address*)(((Address)up)+n))+w;
\+
\g static_super
ifdef(`STACK_CACHE_FILE',
`include(peeprules.vmg)')
\g end
|