1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
|
@
@ File: armstartup.s
@ Author: John van Groningen
@ Machine: ARM
@ B stack registers: r4 r3 r2 r1 r0
@ A stack registers: r6 r7 r8 r11 (fp)
@ n free heap words: r5
@ A stack pointer: r9 (sb)
@ heap pointer: r10 (sl)
@ scratch register: r12 (ip)
@ B stack pointer: r13 (sp)
@ link/scratch register: r14 (lr)
.fpu vfp3
USE_CLIB = 1
SHARE_CHAR_INT = 1
MY_ITOS = 1
FINALIZERS = 1
STACK_OVERFLOW_EXCEPTION_HANDLER = 0
WRITE_HEAP = 0
@ DEBUG = 0
PREFETCH2 = 0
NO_BIT_INSTRUCTIONS = 1
ADJUST_HEAP_SIZE = 1
MARK_GC = 1
MARK_AND_COPY_GC = 1
NEW_DESCRIPTORS = 1
@ #define PROFILE
MODULE_NAMES_IN_TIME_PROFILER = 1
COMPACT_GC_ONLY = 0
MINIMUM_HEAP_SIZE = 8000
MINIMUM_HEAP_SIZE_2 = 4000
.ifdef LINUX
# define section(n) .section .text.n,"ax"
.else
# define section(n) .text
.endif
DESCRIPTOR_ARITY_OFFSET = (-2)
ZERO_ARITY_DESCRIPTOR_OFFSET = (-4)
.comm semi_space_size,4
.comm heap_mbp,4
.comm stack_mbp,4
.comm heap_p,4
.comm heap_p1,4
.comm heap_p2,4
.comm heap_p3,4
.comm end_heap_p3,4
.comm heap_size_33,4
.comm vector_p,4
.comm vector_counter,4
.comm neg_heap_vector_plus_4,4
.comm heap_size_32_33,4
.comm heap_vector,4
.comm stack_top,4
.comm end_vector,4
.comm heap_size_129,4
.comm heap_copied_vector,4
.comm heap_copied_vector_size,4
.comm heap_end_after_copy_gc,4
.comm heap_end_after_gc,4
.comm extra_heap,4
.comm extra_heap_size,4
.comm stack_p,4
.comm halt_sp,4
.comm n_allocated_words,4
.comm basic_only,4
.comm last_time,4
.comm execute_time,4
.comm garbage_collect_time,4
.comm IO_time,4
.globl saved_heap_p
.comm saved_heap_p,4
.globl saved_a_stack_p
.comm saved_a_stack_p,4
.globl end_a_stack
.comm end_a_stack,4
.globl end_b_stack
.comm end_b_stack,4
.comm dll_initisialised,4
.if WRITE_HEAP
.comm heap_end_write_heap,4
.comm d3_flag_write_heap,4
.comm heap2_begin_and_end,8
.endif
.if STACK_OVERFLOW_EXCEPTION_HANDLER
.comm a_stack_guard_page,4
.endif
.globl profile_stack_pointer
.comm profile_stack_pointer,4
.data
.p2align 2
.if MARK_GC
bit_counter:
.long 0
bit_vector_p:
.long 0
zero_bits_before_mark:
.long 1
n_free_words_after_mark:
.long 1000
n_last_heap_free_bytes:
.long 0
lazy_array_list:
.long 0
n_marked_words:
.long 0
end_stack:
.long 0
.if ADJUST_HEAP_SIZE
bit_vector_size:
.long 0
.endif
.endif
caf_list:
.long 0
.globl caf_listp
caf_listp:
.long 0
zero_length_string:
.long __STRING__+2
.long 0
true_string:
.long __STRING__+2
.long 4
true_c_string:
.ascii "True"
.byte 0,0,0,0
false_string:
.long __STRING__+2
.long 5
false_c_string:
.ascii "False"
.byte 0,0,0
file_c_string:
.ascii "File"
.byte 0,0,0,0
garbage_collect_flag:
.byte 0
.byte 0,0,0
.comm sprintf_buffer,32
out_of_memory_string_1:
.ascii "Not enough memory to allocate heap and stack"
.byte 10,0
printf_int_string:
.ascii "%d"
.byte 0
printf_real_string:
.ascii "%.15g"
.byte 0
printf_string_string:
.ascii "%s"
.byte 0
printf_char_string:
.ascii "%c"
.byte 0
garbage_collect_string_1:
.asciz "A stack: "
garbage_collect_string_2:
.asciz " bytes. BC stack: "
garbage_collect_string_3:
.ascii " bytes."
.byte 10,0
heap_use_after_gc_string_1:
.ascii "Heap use after garbage collection: "
.byte 0
heap_use_after_gc_string_2:
.ascii " Bytes."
.byte 10,0
stack_overflow_string:
.ascii "Stack overflow."
.byte 10,0
out_of_memory_string_4:
.ascii "Heap full."
.byte 10,0
time_string_1:
.ascii "Execution: "
.byte 0
time_string_2:
.ascii " Garbage collection: "
.byte 0
time_string_4:
.ascii " Total: "
.byte 0
high_index_string:
.ascii "Index too high in UPDATE string."
.byte 10,0
low_index_string:
.ascii "Index negative in UPDATE string."
.byte 10,0
IO_error_string:
.ascii "IO error: "
.byte 0
new_line_string:
.byte 10,0
sprintf_time_string:
.ascii "%d.%02d"
.byte 0
.if MARK_GC
marked_gc_string_1:
.ascii "Marked: "
.byte 0
.endif
.ifdef PROFILE
.p2align 2
.if MODULE_NAMES_IN_TIME_PROFILER
.ifdef LINUX
.globl m_system
.endif
m_system:
.long 6
.ascii "System"
.byte 0
.byte 0
.long m_system
.endif
garbage_collector_name:
.long 0
.asciz "garbage_collector"
.p2align 2
.endif
.ifdef DLL
start_address:
.long 0
.endif
.p2align 2
.comm sprintf_time_buffer,20
.p2align 2
.if SHARE_CHAR_INT
.globl small_integers
.comm small_integers,33*8
.globl static_characters
.comm static_characters,256*8
.endif
.text
.globl abc_main
.globl print
.globl print_char
.globl print_int
.globl print_real
.globl print__string__
.globl print__chars__sc
.globl print_sc
.globl print_symbol
.globl print_symbol_sc
.globl printD
.globl DtoAC
.globl push_t_r_args
.globl push_a_r_args
.globl halt
.globl dump
.globl catAC
.globl sliceAC
.globl updateAC
.globl eqAC
.globl cmpAC
.globl string_to_string_node
.globl int_array_to_node
.globl real_array_to_node
.globl _create_arrayB
.globl _create_arrayC
.globl _create_arrayI
.globl _create_arrayR
.globl _create_r_array
.globl create_array
.globl create_arrayB
.globl create_arrayC
.globl create_arrayI
.globl create_arrayR
.globl create_R_array
.globl BtoAC
.globl ItoAC
.globl RtoAC
.globl eqD
.globl collect_0
.globl collect_1
.globl collect_2
.globl collect_3
.globl _c3,_c4,_c5,_c6,_c7,_c8,_c9,_c10,_c11,_c12
.globl _c13,_c14,_c15,_c16,_c17,_c18,_c19,_c20,_c21,_c22
.globl _c23,_c24,_c25,_c26,_c27,_c28,_c29,_c30,_c31,_c32
.globl e__system__nind
.globl e__system__eaind
@ old names of the previous two labels for compatibility, remove later
.globl __indirection,__eaind
.globl e__system__dind
.globl eval_fill
.globl eval_upd_0,eval_upd_1,eval_upd_2,eval_upd_3,eval_upd_4
.globl eval_upd_5,eval_upd_6,eval_upd_7,eval_upd_8,eval_upd_9
.globl eval_upd_10,eval_upd_11,eval_upd_12,eval_upd_13,eval_upd_14
.globl eval_upd_15,eval_upd_16,eval_upd_17,eval_upd_18,eval_upd_19
.globl eval_upd_20,eval_upd_21,eval_upd_22,eval_upd_23,eval_upd_24
.globl eval_upd_25,eval_upd_26,eval_upd_27,eval_upd_28,eval_upd_29
.globl eval_upd_30,eval_upd_31,eval_upd_32
.globl repl_args_b
.globl push_arg_b
.globl del_args
.if 0
.globl o__S_P2
.globl ea__S_P2
.endif
.globl add_IO_time
.globl add_execute_time
.globl IO_error
.globl stack_overflow
.globl out_of_memory_4
.globl print_error
.ifndef DLL
.global _start
.endif
.globl sin_real
.globl cos_real
.globl tan_real
.globl asin_real
.globl acos_real
.globl atan_real
.globl ln_real
.globl log10_real
.globl exp_real
.globl pow_real
.globl r_to_i_real
.globl truncate_real
.globl entier_real
.globl ceiling_real
.globl round__real64
.globl truncate__real64
.globl entier__real64
.globl ceiling__real64
.globl int64a__to__real
.ifdef PROFILE
.globl init_profiler
.globl profile_s,profile_n,profile_r,profile_t
.globl write_profile_information,write_profile_stack
.endif
.globl __driver
@ from system.abc:
.globl INT
.globl CHAR
.globl BOOL
.globl REAL
.globl FILE
.globl __STRING__
.globl __ARRAY__
.globl __cycle__in__spine
.globl __print__graph
.globl __eval__to__nf
@ from wcon.c:
.globl w_print_char
.globl w_print_string
.globl w_print_text
.globl w_print_int
.globl w_print_real
.globl ew_print_char
.globl ew_print_text
.globl ew_print_string
.globl ew_print_int
.globl ab_stack_size
.globl heap_size
.globl flags
@ from standard c library:
.globl malloc
.globl free
.globl sprintf
.globl strlen
.if STACK_OVERFLOW_EXCEPTION_HANDLER
.globl allocate_memory_with_guard_page_at_end
.endif
.if ADJUST_HEAP_SIZE
.global heap_size_multiple
.global initial_heap_size
.endif
.if WRITE_HEAP
.global min_write_heap_size
.endif
.if FINALIZERS
.global __Nil
.globl finalizer_list
.comm finalizer_list,4
.globl free_finalizer_list
.comm free_finalizer_list,4
.endif
abc_main:
str lr,[sp,#-4]!
stmdb sp!,{r4-r11}
.ifdef DLL
ldr r4,[sp,#28]
ldr r12,=start_address
str r4,[r12]
.endif
str pc,[sp,#-4]!
bl init_clean
tst r4,r4
bne init_error
str pc,[sp,#-4]!
bl init_timer
ldr r12,=halt_sp
str sp,[r12]
.ifdef PROFILE
str pc,[sp,#-4]!
bl init_profiler
.endif
.ifdef DLL
ldr r12,=start_address
ldr r4,[r12]
str pc,[sp,#-4]!
blx r4
.else
str pc,[sp,#-4]!
bl __start
.endif
exit:
str pc,[sp,#-4]!
bl exit_clean
init_error:
ldmia sp!,{r4-r11,pc}
.globl clean_init
clean_init:
stmdb sp!,{r4-r11}
ldr r12,=dll_initisialised
mov r0,#1
str r0,[r12]
str pc,[sp,#-4]!
bl init_clean
tst r4,r4
bne init_dll_error
str pc,[sp,#-4]!
bl init_timer
ldr r12,=halt_sp
str sp,[r12]
.ifdef PROFILE
str pc,[sp,#-4]!
bl init_profiler
.endif
ldr r12,=saved_heap_p
str r10,[r12]
ldr r12,=saved_a_stack_p
str r9,[r12]
mov r4,#1
b exit_dll_init
init_dll_error:
mov r4,#0
b exit_dll_init
.globl clean_fini
clean_fini:
stmdb sp!,{r4-r11}
ldr r12,=saved_heap_p
ldr r10,[r12]
ldr r12,=saved_a_stack_p
ldr r9,[r12]
str pc,[sp,#-4]!
bl exit_clean
exit_dll_init:
ldmia sp!,{r4-r11,pc}
init_clean:
add r4,sp,#128
ldr r12,=ab_stack_size
ldr r12,[r12]
sub r4,r4,r12
ldr r12,=end_b_stack
str r4,[r12]
ldr r12,=flags
ldr r4,[r12]
and r4,r4,#1
ldr r12,=basic_only
str r4,[r12]
ldr r12,=heap_size
ldr r4,[r12]
.if PREFETCH2
subs r4,r4,#63
.else
subs r4,r4,#3
.endif
@ divide by 33
ldr r12,=1041204193
umull r11,r4,r12,r4
lsr r4,r4,#3
ldr r12,=heap_size_33
str r4,[r12]
ldr r12,=heap_size
ldr r4,[r12]
subs r4,r4,#3
@ divide by 129
ldr r12,=266354561
umull r11,r4,r12,r4
lsr r4,r4,#3
ldr r12,=heap_size_129
str r4,[r12]
add r4,r4,#3
and r4,r4,#-4
ldr r12,=heap_copied_vector_size
str r4,[r12]
ldr r12,=heap_end_after_copy_gc
mov r11,#0
str r11,[r12]
ldr r12,=heap_size
ldr r4,[r12]
add r4,r4,#7
and r4,r4,#-8
str r4,[r12]
add r4,r4,#7
mov r0,r4
bl malloc
movs r4,r0
beq no_memory_2
ldr r12,=heap_mbp
str r4,[r12]
add r10,r4,#3
and r10,r10,#-4
ldr r12,=heap_p
str r10,[r12]
ldr r8,=ab_stack_size
ldr r8,[r8]
add r8,r8,#3
mov r0,r8
.if STACK_OVERFLOW_EXCEPTION_HANDLER
bl allocate_memory_with_guard_page_at_end
.else
bl malloc
.endif
movs r4,r0
beq no_memory_3
ldr r12,=stack_mbp
str r4,[r12]
.if STACK_OVERFLOW_EXCEPTION_HANDLER
ldr r12,=ab_stack_size
ldr r12,[r12]
add r4,r4,r12
ldr r12,=a_stack_guard_page
add r4,r4,#4096
add r4,r4,#(3+4095)-4096
bic r4,r4,#255
bic r4,r4,#4095-255
str r4,[r12]
ldr r12,=ab_stack_size
ldr r12,[r12]
sub r4,r4,r12
.endif
add r4,r4,#3
and r4,r4,#-4
mov r9,r4
ldr r12,=stack_p
str r4,[r12]
ldr r12,=ab_stack_size
ldr r12,[r12]
add r4,r4,r12
subs r4,r4,#64
ldr r12,=end_a_stack
str r4,[r12]
.if SHARE_CHAR_INT
ldr r6,=small_integers
mov r4,#0
ldr r3,=INT+2
make_small_integers_lp:
str r3,[r6]
str r4,[r6,#4]
add r4,r4,#1
add r6,r6,#8
cmp r4,#33
bne make_small_integers_lp
ldr r6,=static_characters
mov r4,#0
ldr r3,=CHAR+2
make_static_characters_lp:
str r3,[r6]
str r4,[r6,#4]
add r4,r4,#1
add r6,r6,#8
cmp r4,#256
bne make_static_characters_lp
.endif
ldr r6,=caf_list+4
ldr r12,=caf_listp
str r6,[r12]
.if FINALIZERS
ldr r12,=finalizer_list
ldr r11,=__Nil-4
str r11,[r12]
ldr r12,=free_finalizer_list
str r11,[r12]
.endif
ldr r12,=heap_p1
str r10,[r12]
ldr r12,=heap_size_129
ldr r8,[r12]
lsl r8,r8,#4
add r4,r10,r8,lsl #2
ldr r12,=heap_copied_vector
str r4,[r12]
ldr r12,=heap_copied_vector_size
ldr r12,[r12]
add r4,r12
ldr r12,=heap_p2
str r4,[r12]
ldr r12,=garbage_collect_flag
mov r11,#0
strb r11,[r12]
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark1
.endif
.if MARK_GC || COMPACT_GC_ONLY
ldr r12,=heap_size_33
ldr r4,[r12]
ldr r12,=heap_vector
str r10,[r12]
add r10,r10,r4
.if PREFETCH2
add r10,r10,#63
and r10,r10,#-64
.else
add r10,r10,#3
and r10,r10,#-4
.endif
ldr r12,=heap_p3
str r10,[r12]
lsl r8,r4,#3
ldr r12,=garbage_collect_flag
mov r11,#-1
strb r11,[r12]
.endif
.if MARK_AND_COPY_GC
no_mark1:
.endif
.if ADJUST_HEAP_SIZE
ldr r4,=initial_heap_size
ldr r4,[r4]
.if MARK_AND_COPY_GC
mov r3,#MINIMUM_HEAP_SIZE_2
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
bne no_mark9
add r3,r3,r3
no_mark9:
.else
.if MARK_GC || COMPACT_GC_ONLY
mov r3,#MINIMUM_HEAP_SIZE
.else
mov r3,#MINIMUM_HEAP_SIZE_2
.endif
.endif
cmp r4,r3
ble too_large_or_too_small
lsr r4,r4,#2
cmp r4,r8
bge too_large_or_too_small
mov r8,r4
too_large_or_too_small:
.endif
add r4,r10,r8,lsl #2
ldr r12,=heap_end_after_gc
str r4,[r12]
mov r5,r8
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark2
.endif
.if MARK_GC && ADJUST_HEAP_SIZE
ldr r12,=bit_vector_size
str r8,[r12]
.endif
.if MARK_AND_COPY_GC
no_mark2:
.endif
mov r4,#0
ldr pc,[sp],#4
no_memory_2:
ldr r0,=out_of_memory_string_1
bl ew_print_string
.ifdef _WINDOWS_
? movl $1,@execution_aborted
.endif
mov r0,#1
ldr pc,[sp],#4
no_memory_3:
ldr r0,=out_of_memory_string_1
bl ew_print_string
.ifdef _WINDOWS_
? movl $1,@execution_aborted
.endif
ldr r0,=heap_mbp
ldr r0,[r0]
bl free
mov r0,#1
ldr pc,[sp],#4
exit_clean:
str pc,[sp,#-4]!
bl add_execute_time
ldr r4,=flags
ldr r4,[r4]
tst r4,#8
beq no_print_execution_time
ldr r0,=time_string_1
bl ew_print_string
ldr r12,=execute_time
ldr r4,[r12]
str pc,[sp,#-4]!
bl print_time
ldr r0,=time_string_2
bl ew_print_string
ldr r12,=garbage_collect_time
ldr r4,[r12]
str pc,[sp,#-4]!
bl print_time
ldr r0,=time_string_4
bl ew_print_string
ldr r12,=execute_time
ldr r4,[r12]
ldr r12,=garbage_collect_time
ldr r12,[r12]
add r4,r12
ldr r12,=IO_time
ldr r12,[r12]
add r4,r12
str pc,[sp,#-4]!
bl print_time
mov r0,#10
bl ew_print_char
no_print_execution_time:
ldr r0,=stack_mbp
ldr r0,[r0]
bl free
ldr r0,=heap_mbp
ldr r0,[r0]
bl free
.ifdef PROFILE
str pc,[sp,#-4]!
bl write_profile_information
.endif
ldr pc,[sp],#4
__driver:
ldr r8,=flags
ldr r8,[r8]
tst r8,#16
beq __print__graph
b __eval__to__nf
.ltorg
print_time:
@ divide by 1000
ldr r12,=274877907
umull r11,r6,r12,r4
lsr r6,r6,#6
mov r11,#-1025
add r11,r11,#-1000-(-1025)
mla r4,r6,r11,r4
@ divide by 10
ldr r12,=-858993459
umull r11,r4,r12,r4
lsr r4,r4,#3
.if USE_CLIB
mov r3,r4
mov r2,r6
ldr r1,=sprintf_time_string
ldr r0,=sprintf_time_buffer
bl sprintf
ldr r0,=sprintf_time_buffer
bl ew_print_string
.else
mov r0,r6
bl ew_print_int
ldr r6,=sprintf_time_buffer
eor r7,r7,r7
mov r3,#10
mov r12,#46
strb r12,[r6]
@ divide by 10
ldr r12,=-858993459
umull r11,r0,r12,r4
lsr r0,r0,#3
sub r4,r4,r0,lsl #1
sub r4,r4,r0,lsl #3
add r4,r4,#48
add r7,r7,#48
strb r0,[r6,#1]
strb r4,[r6,#2]
mov r1,#3
mov r0,r6
bl ew_print_text
.endif
ldr pc,[sp],#4
print_sc:
ldr r12,=basic_only
ldr r8,[r12]
cmp r8,#0
bne end_print
print:
mov r0,r4
bl w_print_string
end_print:
ldr pc,[sp],#4
dump:
str pc,[sp,#-4]!
bl print
b halt
printD: tst r4,#2
bne printD_
mov r8,r4
b print_string_a2
DtoAC_record:
ldr r8,[r4,#-6]
b DtoAC_string_a2
DtoAC: tst r4,#2
bne DtoAC_
mov r8,r4
b DtoAC_string_a2
DtoAC_:
ldrh r12,[r4,#-2]
cmp r12,#256
bhs DtoAC_record
ldrh r3,[r4]
add r12,r4,#10
add r8,r12,r3
DtoAC_string_a2:
ldr r4,[r8]
add r6,r8,#4
b build_string
print_symbol:
mov r3,#0
b print_symbol_2
print_symbol_sc:
ldr r12,=basic_only
ldr r3,[r12]
print_symbol_2:
ldr r4,[r6]
ldr r12,=INT+2
cmp r4,r12
beq print_int_node
ldr r12,=CHAR+2
cmp r4,r12
beq print_char_denotation
ldr r12,=BOOL+2
cmp r4,r12
beq print_bool
ldr r12,=REAL+2
cmp r4,r12
beq print_real_node
cmp r3,#0
bne end_print_symbol
printD_:
ldrh r12,[r4,#-2]
cmp r12,#256
bhs print_record
ldrh r3,[r4]
add r12,r4,#10
add r8,r12,r3
b print_string_a2
print_record:
ldr r8,[r4,#-6]
b print_string_a2
end_print_symbol:
ldr pc,[sp],#4
print_int_node:
ldr r0,[r6,#4]
bl w_print_int
ldr pc,[sp],#4
print_int:
mov r0,r4
bl w_print_int
ldr pc,[sp],#4
print_char_denotation:
tst r3,r3
bne print_char_node
ldr r12,[r6,#4]
str r12,[sp,#-4]!
mov r0,#0x27
bl w_print_char
ldr r0,[sp],#4
bl w_print_char
mov r0,#0x27
bl w_print_char
ldr pc,[sp],#4
print_char_node:
ldr r0,[r6,#4]
bl w_print_char
ldr pc,[sp],#4
print_char:
str r4,[sp,#-4]!
bl w_print_char
add sp,sp,#4
ldr pc,[sp],#4
print_bool:
ldsb r6,[r6,#4]
tst r6,r6
beq print_false
print_true:
ldr r0,=true_c_string
bl w_print_string
ldr pc,[sp],#4
print_false:
ldr r0,=false_c_string
bl w_print_string
ldr pc,[sp],#4
print_real:
b print_real_
print_real_node:
vldr.f64 d0,[r6,#4]
print_real_:
mov r11,sp
bic sp,sp,#7
bl w_print_real
mov sp,r11
ldr pc,[sp],#4
print_string_a2:
ldr r1,[r8]
add r0,r8,#4
bl w_print_text
ldr pc,[sp],#4
print__chars__sc:
ldr r12,=basic_only
ldr r8,[r12]
cmp r8,#0
bne no_print_chars
print__string__:
ldr r1,[r6,#4]
add r0,r6,#8
bl w_print_text
no_print_chars:
ldr pc,[sp],#4
push_a_r_args:
str r10,[sp,#-4]!
ldr r7,[r6,#8]
subs r7,r7,#2
ldrh r10,[r7]
subs r10,r10,#256
ldrh r3,[r7,#2]
add r7,r7,#4
str r7,[sp,#-4]!
mov r7,r10
subs r7,r7,r3
lsl r4,r4,#2
add r12,r6,#12
add r6,r12,r3,lsl #2
subs r10,r10,#1
mul_array_size_lp:
add r6,r6,r4
subs r10,r10,#1
bcs mul_array_size_lp
add r10,r6,r7,lsl #2
b push_a_elements
push_a_elements_lp:
ldr r4,[r6,#-4]!
str r4,[r9],#4
push_a_elements:
subs r3,r3,#1
bcs push_a_elements_lp
mov r6,r10
ldr r4,[sp],#4
ldr r10,[sp],#4
ldr r8,[sp],#4
b push_b_elements
push_b_elements_lp:
ldr r12,[r6,#-4]!
str r12,[sp,#-4]!
push_b_elements:
subs r7,r7,#1
bcs push_b_elements_lp
mov pc,r8
push_t_r_args:
ldr r8,[sp],#4
ldr r7,[r6]
add r6,r6,#4
subs r7,r7,#2
ldrh r4,[r7]
subs r4,r4,#256
ldrh r3,[r7,#2]
add r7,r7,#4
str r7,[r9]
str r3,[r9,#4]
sub r3,r4,r3
add r7,r6,r4,lsl #2
cmp r4,#2
bls small_record
ldr r7,[r6,#4]
add r12,r7,#-4
add r7,r12,r4,lsl #2
small_record:
b push_r_b_elements
push_r_b_elements_lp:
subs r4,r4,#1
bne not_first_arg_b
ldr r12,[r6]
str r12,[sp,#-4]!
b push_r_b_elements
not_first_arg_b:
ldr r12,[r7,#-4]!
str r12,[sp,#-4]!
push_r_b_elements:
subs r3,r3,#1
bcs push_r_b_elements_lp
ldr r3,[r9,#4]
str r8,[sp,#-4]!
ldr r12,[r9]
str r12,[sp,#-4]!
b push_r_a_elements
push_r_a_elements_lp:
subs r4,r4,#1
bne not_first_arg_a
ldr r8,[r6]
str r8,[r9],#4
b push_r_a_elements
not_first_arg_a:
ldr r8,[r7,#-4]!
str r8,[r9],#4
push_r_a_elements:
subs r3,r3,#1
bcs push_r_a_elements_lp
ldr r4,[sp],#4
ldr pc,[sp],#4
BtoAC:
tst r4,r4
beq BtoAC_false
BtoAC_true:
ldr r6,=true_string
ldr pc,[sp],#4
BtoAC_false:
ldr r6,=false_string
ldr pc,[sp],#4
RtoAC:
.if USE_CLIB
vmov r2,r3,d0
ldr r1,=printf_real_string
ldr r0,=sprintf_buffer
bl sprintf
.else
ldr r0,=sprintf_buffer
bl convert_real_to_string
.endif
b return_sprintf_buffer
ItoAC:
.if MY_ITOS
ldr r6,=sprintf_buffer
str pc,[sp,#-4]!
bl int_to_string
ldr r12,=sprintf_buffer
sub r4,r6,r12
b sprintf_buffer_to_string
int_to_string:
tst r4,r4
bpl no_minus
mov r12,#45
strb r12,[r6],#1
neg r4,r4
no_minus:
add r8,r6,#12
beq zero_digit
ldr r2,=0xcccccccd
calculate_digits:
cmp r4,#10
blo last_digit
umull r12,r7,r2,r4
add r3,r4,#48
lsr r4,r7,#3
and r7,r7,#-8
sub r3,r3,r7
sub r3,r3,r7,lsr #2
strb r3,[r8],#1
b calculate_digits
last_digit:
tst r4,r4
beq no_zero
zero_digit:
add r4,r4,#48
strb r4,[r8],#1
no_zero:
add r7,r6,#12
reverse_digits:
ldrb r3,[r8,#-1]!
strb r3,[r6],#1
cmp r7,r8
bne reverse_digits
mov r12,#0
strb r12,[r6]
ldr pc,[sp],#4
.else
mov r2,r4
ldr r1,=printf_int_string
ldr r0,=sprintf_buffer
bl sprintf
.endif
return_sprintf_buffer:
.if USE_CLIB
ldr r0,=sprintf_buffer
bl strlen
mov r4,r0
.else
ldr r4,=sprintf_buffer-1
skip_characters:
ldrb r12,[r4,#1]!
tst r12,r12
bne skip_characters
ldr r12,=sprintf_buffer
sub r4,r4,r12
.endif
.if MY_ITOS
sprintf_buffer_to_string:
ldr r6,=sprintf_buffer
build_string:
.endif
add r3,r4,#3
lsr r3,r3,#2
add r3,r3,#2
subs r5,r5,r3
bhs D_to_S_no_gc
str r6,[sp,#-4]!
bl collect_0
ldr r6,[sp],#4
D_to_S_no_gc:
subs r3,r3,#2
mov r8,r10
ldr r12,=__STRING__+2
str r4,[r10,#4]
str r12,[r10],#8
b D_to_S_cp_str_2
D_to_S_cp_str_1:
ldr r4,[r6],#4
str r4,[r10],#4
D_to_S_cp_str_2:
subs r3,r3,#1
bcs D_to_S_cp_str_1
mov r6,r8
ldr pc,[sp],#4
eqD: ldr r4,[r6]
ldr r12,[r7]
cmp r4,r12
bne eqD_false
ldr r12,=INT+2
cmp r4,r12
beq eqD_INT
ldr r12,=CHAR+2
cmp r4,r12
beq eqD_CHAR
ldr r12,=BOOL+2
cmp r4,r12
beq eqD_BOOL
ldr r12,=REAL+2
cmp r4,r12
beq eqD_REAL
mov r4,#1
ldr pc,[sp],#4
eqD_CHAR:
eqD_INT:
ldr r3,[r6,#4]
mov r4,#0
ldr r12,[r7,#4]
cmp r3,r12
moveq r4,#1
ldr pc,[sp],#4
eqD_BOOL:
ldrb r3,[r6,#4]
mov r4,#0
ldrb r12,[r7,#4]
cmp r3,r12
moveq r4,#1
ldr pc,[sp],#4
eqD_REAL:
vldr.f64 d0,[r6,#4]
vldr.f64 d1,[r7,#4]
mov r4,#0
vcmp.f64 d1,d0
vmrs APSR_nzcv,fpscr
moveq r4,#1
ldr pc,[sp],#4
eqD_false:
mov r4,#0
ldr pc,[sp],#4
@
@ the timer
@
init_timer:
sub sp,sp,#20
mov r0,sp
bl times
ldr r4,[sp]
add r4,r4,r4
add r4,r4,r4,lsl #2
add sp,sp,#20
ldr r12,=last_time
str r4,[r12]
eor r4,r4,r4
ldr r12,=execute_time
str r4,[r12]
ldr r12,=garbage_collect_time
str r4,[r12]
ldr r12,=IO_time
str r4,[r12]
ldr pc,[sp],#4
get_time_diff:
sub sp,sp,#20
mov r0,sp
bl times
ldr r4,[sp]
add r4,r4,r4
add r4,r4,r4,lsl #2
add sp,sp,#20
ldr r6,=last_time
ldr r7,[r6]
str r4,[r6]
subs r4,r4,r7
ldr pc,[sp],#4
add_execute_time:
str pc,[sp,#-4]!
bl get_time_diff
ldr r6,=execute_time
add_time:
ldr r12,[r6]
add r4,r4,r12
str r4,[r6]
ldr pc,[sp],#4
add_garbage_collect_time:
str pc,[sp,#-4]!
bl get_time_diff
ldr r6,=garbage_collect_time
b add_time
add_IO_time:
str pc,[sp,#-4]!
bl get_time_diff
ldr r6,=IO_time
b add_time
.ltorg
@
@ the garbage collector
@
collect_3:
str lr,[sp,#-4]!
.ifdef PROFILE
ldr r8,=garbage_collector_name
str pc,[sp,#-4]!
bl profile_s
.endif
str r6,[r9]
str r7,[r9,#4]
str r8,[r9,#8]
add r9,r9,#12
bl collect_0_
ldr r8,[r9,#-4]
ldr r7,[r9,#-8]
ldr r6,[r9,#-12]!
.ifdef PROFILE
b profile_r
.else
ldr pc,[sp],#4
.endif
collect_2:
str lr,[sp,#-4]!
.ifdef PROFILE
ldr r8,=garbage_collector_name
str pc,[sp,#-4]!
bl profile_s
.endif
str r6,[r9]
str r7,[r9,#4]
add r9,r9,#8
bl collect_0_
ldr r7,[r9,#-4]
ldr r6,[r9,#-8]!
.ifdef PROFILE
b profile_r
.else
ldr pc,[sp],#4
.endif
collect_1:
str lr,[sp,#-4]!
.ifdef PROFILE
ldr r8,=garbage_collector_name
str pc,[sp,#-4]!
bl profile_s
.endif
str r6,[r9],#4
bl collect_0_
ldr r6,[r9,#-4]!
.ifdef PROFILE
b profile_r
.else
ldr pc,[sp],#4
.endif
.ifdef PROFILE
collect_0:
str lr,[sp,#-4]!
ldr r8,=garbage_collector_name
str pc,[sp,#-4]!
bl profile_s
bl collect_0_
b profile_r
.endif
.ifndef PROFILE
collect_0:
.endif
collect_0_:
stmdb sp!,{r0-r4,lr}
ldr r12,=heap_end_after_gc
ldr r12,[r12]
sub r8,r12,r10
lsr r8,r8,#2
sub r8,r8,r5
ldr r12,=n_allocated_words
str r8,[r12]
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark3
.endif
.if MARK_GC
ldr r12,=bit_counter
ldr r8,[r12]
cmp r8,#0
beq no_scan
mov r3,#0
str r9,[sp,#-4]!
ldr r12,=n_allocated_words
ldr r9,[r12]
ldr r12,=bit_vector_p
ldr r6,[r12]
ldr r12,=n_free_words_after_mark
ldr r2,[r12]
scan_bits:
ldr r12,[r6]
cmp r3,r12
beq zero_bits
str r3,[r6],#4
subs r8,r8,#1
bne scan_bits
b end_scan
zero_bits:
add r7,r6,#4
add r6,r6,#4
subs r8,r8,#1
bne skip_zero_bits_lp1
b end_bits
skip_zero_bits_lp:
cmp r4,#0
bne end_zero_bits
skip_zero_bits_lp1:
ldr r4,[r6],#4
subs r8,r8,#1
bne skip_zero_bits_lp
cmp r4,#0
beq end_bits
str r3,[r6,#-4]
subs r4,r6,r7
b end_bits2
end_zero_bits:
sub r4,r6,r7
lsl r4,r4,#3
str r3,[r6,#-4]
add r2,r2,r4
cmp r4,r9
blo scan_bits
found_free_memory:
ldr r12,=bit_counter
str r8,[r12]
ldr r12,=bit_vector_p
str r6,[r12]
ldr r12,=n_free_words_after_mark
str r2,[r12]
sub r5,r4,r9
add r8,r7,#-4
ldr r12,=heap_vector
ldr r12,[r12]
subs r8,r8,r12
lsl r8,r8,#5
ldr r12,=heap_p3
ldr r10,[r12]
add r10,r10,r8
add r8,r10,r4,lsl #2
ldr r12,=heap_end_after_gc
str r8,[r12]
ldr r9,[sp],#4
ldmia sp!,{r0-r4,pc}
end_bits:
sub r4,r6,r7
add r4,r4,#4
end_bits2:
lsl r4,r4,#3
add r2,r2,r4
cmp r4,r9
bhs found_free_memory
end_scan:
ldr r9,[sp],#4
ldr r12,=bit_counter
str r8,[r12]
ldr r12,=n_free_words_after_mark
str r2,[r12]
no_scan:
.endif
@ to do: check value in r8
.if MARK_AND_COPY_GC
no_mark3:
.endif
ldr r12,=garbage_collect_flag
ldrsb r4,[r12]
cmp r4,#0
ble collect
sub r4,r4,#2
strb r4,[r12]
ldr r12,=extra_heap_size
ldr r3,[r12]
cmp r8,r3
bhi collect
sub r5,r3,r8
ldr r12,=extra_heap
ldr r10,[r12]
add r3,r10,r3,lsl #2
ldr r12,=heap_end_after_gc
str r3,[r12]
ldmia sp!,{r0-r4,pc}
collect:
str pc,[sp,#-4]!
bl add_execute_time
ldr r12,=flags
ldr r12,[r12]
tst r12,#4
beq no_print_stack_sizes
ldr r0,=garbage_collect_string_1
bl ew_print_string
mov r4,r9
ldr r12,=stack_p
ldr r12,[r12]
sub r0,r4,r12
bl ew_print_int
ldr r0,=garbage_collect_string_2
bl ew_print_string
ldr r12,=halt_sp
ldr r4,[r12]
sub r0,r4,sp
bl ew_print_int
ldr r0,=garbage_collect_string_3
bl ew_print_string
no_print_stack_sizes:
ldr r12,=stack_p
ldr r4,[r12]
ldr r12,=ab_stack_size
ldr r12,[r12]
add r4,r4,r12
cmp r9,r4
bhi stack_overflow
.if MARK_AND_COPY_GC
ldr r12,=flags
ldr r12,[r12]
tst r12,#64
bne compacting_collector
.else
.if MARK_GC
b compacting_collector
.endif
.endif
.if MARK_AND_COPY_GC || !MARK_GC
ldr r12,=garbage_collect_flag
ldrb r12,[r12]
cmp r12,#0
bne compacting_collector
ldr r12,=heap_copied_vector
ldr r8,[r12]
ldr r12,=heap_end_after_copy_gc
ldr r12,[r12]
cmp r12,#0
beq zero_all
mov r4,r10
ldr r12,=heap_p1
ldr r12,[r12]
subs r4,r4,r12
add r4,r4,#63*4
lsr r4,r4,#8
str pc,[sp,#-4]!
bl zero_bit_vector
ldr r12,=heap_end_after_copy_gc
ldr r7,[r12]
ldr r12,=heap_p1
ldr r12,[r12]
subs r7,r7,r12
lsr r7,r7,#6
and r7,r7,#-4
ldr r12,=heap_copied_vector
ldr r8,[r12]
ldr r12,=heap_copied_vector_size
ldr r4,[r12]
add r8,r8,r7
subs r4,r4,r7
lsr r4,r4,#2
ldr r12,=heap_end_after_copy_gc
mov r14,#0
str r14,[r12]
str pc,[sp,#-4]!
bl zero_bit_vector
b end_zero_bit_vector
zero_all:
ldr r12,=heap_copied_vector_size
ldr r4,[r12]
lsr r4,r4,#2
str pc,[sp,#-4]!
bl zero_bit_vector
end_zero_bit_vector:
.include "armcopy.s"
.if WRITE_HEAP
ldr r12,=heap2_begin_and_end
str r9,[r12]
.endif
sub r8,r9,r10
lsr r8,r8,#2
ldr r9,[sp],#4
str pc,[sp,#-4]!
bl add_garbage_collect_time
ldr r12,=n_allocated_words
ldr r12,[r12]
subs r8,r8,r12
mov r5,r8
bls switch_to_mark_scan
add r4,r8,r8,lsl #2
lsl r4,r4,#5
ldr r3,=heap_size
ldr r3,[r3]
mov r6,r3
lsl r3,r3,#2
add r3,r3,r6
add r3,r3,r3
add r3,r3,r6
cmp r4,r3
bhs no_mark_scan
@ b no_mark_scan
switch_to_mark_scan:
ldr r12,=heap_size_33
ldr r4,[r12]
lsl r4,r4,#5
ldr r12,=heap_p
ldr r3,[r12]
ldr r12,=heap_p1
ldr r6,[r12]
ldr r12,=heap_p2
ldr r12,[r12]
cmp r6,r12
bcc vector_at_begin
vector_at_end:
ldr r12,=heap_p3
str r3,[r12]
add r3,r3,r4
ldr r12,=heap_vector
str r3,[r12]
ldr r12,=heap_p1
ldr r4,[r12]
ldr r12,=extra_heap
str r4,[r12]
subs r3,r3,r4
lsr r3,r3,#2
ldr r12,=extra_heap_size
str r3,[r12]
b switch_to_mark_scan_2
vector_at_begin:
ldr r12,=heap_vector
str r3,[r12]
ldr r12,=heap_size
ldr r12,[r12]
add r3,r3,r12
subs r3,r3,r4
ldr r12,=heap_p3
str r3,[r12]
ldr r12,=extra_heap
str r3,[r12]
ldr r12,=heap_p2
ldr r6,[r12]
subs r6,r6,r3
lsr r6,r6,#2
ldr r12,=extra_heap_size
str r6,[r12]
switch_to_mark_scan_2:
ldr r4,=heap_size
ldr r4,[r4]
lsr r4,r4,#3
sub r4,r4,r8
lsl r4,r4,#2
ldr r12,=garbage_collect_flag
mov r11,#1
strb r11,[r12]
cmp r8,#0
bpl end_garbage_collect
mov r11,#-1
strb r11,[r12]
ldr r12,=extra_heap_size
ldr r3,[r12]
mov r4,r3
ldr r12,=n_allocated_words
ldr r12,[r12]
subs r4,r4,r12
bmi out_of_memory_4
ldr r12,=extra_heap
ldr r10,[r12]
lsl r3,r3,#2
add r3,r3,r10
ldr r12,=heap_end_after_gc
str r3,[r12]
.if WRITE_HEAP
ldr r12,=heap_end_write_heap
str r10,[r12]
ldr r12,=d3_flag_write_heap
mov r11,#1
str r11,[r12]
b end_garbage_collect_
.else
b end_garbage_collect
.endif
no_mark_scan:
@ exchange the semi_spaces
ldr r12,=heap_p1
ldr r4,[r12]
ldr r12,=heap_p2
ldr r3,[r12]
ldr r12,=heap_p2
str r4,[r12]
ldr r12,=heap_p1
str r3,[r12]
ldr r12,=heap_size_129
ldr r4,[r12]
lsl r4,r4,#6-2
.ifdef MUNMAP
ldr r12,=heap_p2
ldr r3,[r12]
add r6,r3,r4,lsl #2
add r3,r3,#4095
and r3,r3,#-4096
and r6,r6,#-4096
subs r6,r6,r3
bls no_pages
str r4,[sp,#-4]!
str r6,[sp,#-4]!
str r3,[sp,#-4]!
str pc,[sp,#-4]!
bl _munmap
add sp,sp,#8
ldr r4,[sp],#4
no_pages:
.endif
.if ADJUST_HEAP_SIZE
mov r3,r4
.endif
subs r4,r4,r8
.if ADJUST_HEAP_SIZE
mov r6,r4
ldr r12,=heap_size_multiple
ldr r12,[r12]
umull r4,r7,r12,r4
lsr r4,r4,#9
orr r4,r4,r7,lsl #32-9
lsrs r7,r7,#9
bne no_small_heap1
cmp r4,#MINIMUM_HEAP_SIZE_2
bhs not_too_small1
mov r4,#MINIMUM_HEAP_SIZE_2
not_too_small1:
subs r3,r3,r4
blo no_small_heap1
sub r5,r5,r3
lsl r3,r3,#2
ldr r12,=heap_end_after_gc
ldr r8,[r12]
ldr r12,=heap_end_after_copy_gc
str r8,[r12]
sub r8,r8,r3
ldr r12,=heap_end_after_gc
str r8,[r12]
no_small_heap1:
mov r4,r6
.endif
lsl r4,r4,#2
.endif
end_garbage_collect:
.if WRITE_HEAP
ldr r12,=heap_end_write_heap
str r10,[r12]
ldr r12,=d3_flag_write_heap
mov r11,#0
str r11,[r12]
end_garbage_collect_:
.endif
str r4,[sp,#-4]!
ldr r12,=flags
ldr r12,[r12]
tst r12,#2
beq no_heap_use_message
str r4,[sp,#-4]!
ldr r0,=heap_use_after_gc_string_1
bl ew_print_string
ldr r0,[sp],#4
bl ew_print_int
ldr r0,=heap_use_after_gc_string_2
bl ew_print_string
no_heap_use_message:
.if FINALIZERS
str pc,[sp,#-4]!
bl call_finalizers
.endif
ldr r4,[sp],#4
.if WRITE_HEAP
@ Check whether memory profiling is on or off
ldr r12,=flags
ldrb r12,[r12]
tst r12,#32
beq no_write_heap
ldr r12,=min_write_heap_size
ldr r12,[r12]
cmp r4,r12
blo no_write_heap
str r6,[sp,#-4]!
str r7,[sp,#-4]!
str r8,[sp,#-4]!
str r9,[sp,#-4]!
str r10,[sp,#-4]!
subs sp,sp,#64
ldr r12,=d3_flag_write_heap
ldr r4,[r12]
tst r4,r4
bne copy_to_compact_with_alloc_in_extra_heap
ldr r4,=garbage_collect_flag
ldrsb r4,[r4]
ldr r12,=heap2_begin_and_end
ldr r6,[r12]
ldr r12,=heap2_begin_and_end+4
ldr r7,[r12]
ldr r3,=heap_p1
tst r4,r4
beq gc0
ldr r3,=heap_p2
bgt gc1
ldr r3,=heap_p3
mov r6,#0
mov r7,#0
gc0:
gc1:
ldr r3,[r3]
? /* fill record */
mov r4,sp
str r3,[r4,#0]
? movl a4,4(d0) // klop dit?
? movl a0,8(d0) // heap2_begin
? movl a1,12(d0) // heap2_end
ldr r12,=stack_p
ldr r3,[r12]
? movl d1,16(d0) // stack_begin
? movl a3,20(d0) // stack_end
? movl $0,24(d0) // text_begin
? movl $0,28(d0) // data_begin
? movl $small_integers,32(d0) // small_integers
? movl $static_characters,36(d0) // small_characters
? movl $INT+2,40(d0) // INT-descP
? movl $CHAR+2,44(d0) // CHAR-descP
? movl $REAL+2,48(d0) // REAL-descP
? movl $BOOL+2,52(d0) // BOOL-descP
? movl $__STRING__+2,56(d0) // STRING-descP
? movl $__ARRAY__+2,60(d0) // ARRAY-descP
str r4,[sp,#-4]!
bl write_heap
add sp,sp,#68
ldr r10,[sp],#4
ldr r9,[sp],#4
ldr r8,[sp],#4
ldr r7,[sp],#4
ldr r6,[sp],#4
no_write_heap:
.endif
ldmia sp!,{r0-r4,pc}
.ltorg
.if FINALIZERS
call_finalizers:
ldr r12,=free_finalizer_list
ldr r4,[r12]
call_finalizers_lp:
ldr r12,=__Nil-4
cmp r4,r12
beq end_call_finalizers
ldr r12,[r4,#4]
str r12,[sp,#-4]!
ldr r3,[r4,#8]
ldr r12,[r3,#4]
str r12,[sp,#-4]!
ldr r12,[r3]
blx r12
add sp,sp,#4
ldr r4,[sp],#4
b call_finalizers_lp
end_call_finalizers:
ldr r12,=free_finalizer_list
ldr r11,=__Nil-4
str r11,[r12]
ldr pc,[sp],#4
.endif
.if WRITE_HEAP
copy_to_compact_with_alloc_in_extra_heap:
ldr r12,=heap2_begin_and_end
ldr r6,[r12]
ldr r12,=heap2_begin_and_end+4
ldr r7,[r12]
ldr r3,=heap_p2
b gc1
.endif
out_of_memory_4:
str pc,[sp,#-4]!
bl add_garbage_collect_time
ldr r8,=out_of_memory_string_4
b print_error
zero_bit_vector:
eor r7,r7,r7
tst r4,#1
beq zero_bits1_1
str r7,[r8]
add r8,r8,#4
zero_bits1_1:
lsr r4,r4,#1
mov r3,r4
lsr r4,r4,#1
tst r3,#1
beq zero_bits1_5
subs r8,r8,#8
b zero_bits1_2
zero_bits1_4:
str r7,[r8]
str r7,[r8,#4]
zero_bits1_2:
str r7,[r8,#8]
str r7,[r8,#12]
add r8,r8,#16
zero_bits1_5:
subs r4,r4,#1
bhs zero_bits1_4
ldr pc,[sp],#4
reorder:
str r9,[sp,#-4]!
str r8,[sp,#-4]!
mov r8,r4
lsl r8,r8,#2
mov r9,r3
lsl r9,r9,#2
add r6,r6,r9
subs r7,r7,r8
str r9,[sp,#-4]!
str r8,[sp,#-4]!
str r3,[sp,#-4]!
str r4,[sp,#-4]!
b st_reorder_lp
reorder_lp:
ldr r8,[r6]
ldr r9,[r7,#-4]
str r8,[r7,#-4]
subs r7,r7,#4
str r9,[r6]
add r6,r6,#4
subs r4,r4,#1
bne next_b_in_element
ldr r4,[sp]
ldr r12,[sp,#12]
add r6,r6,r12
next_b_in_element:
subs r3,r3,#1
bne next_a_in_element
ldr r3,[sp,#4]
ldr r12,[sp,#8]
subs r7,r7,r12
next_a_in_element:
st_reorder_lp:
cmp r7,r6
bhi reorder_lp
ldr r4,[sp],#4
ldr r3,[sp],#4
add sp,sp,#8
ldr r8,[sp],#4
ldr r9,[sp],#4
ldr pc,[sp],#4
@
@ the sliding compacting garbage collector
@
compacting_collector:
@ zero all mark bits
ldr r12,=stack_top
str r9,[r12]
ldr r12,=heap_vector
ldr r10,[r12]
.if MARK_GC
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark4
.endif
ldr r12,=zero_bits_before_mark
ldr r11,[r12]
cmp r11,#0
beq no_zero_bits
mov r11,#0
str r11,[r12]
.if MARK_AND_COPY_GC
no_mark4:
.endif
.endif
mov r8,r10
ldr r12,=heap_size_33
ldr r4,[r12]
add r4,r4,#3
lsr r4,r4,#2
mov r3,#0
tst r4,#1
beq zero_bits_1
str r3,[r8],#4
zero_bits_1:
mov r6,r4
lsr r4,r4,#2
tst r6,#2
beq zero_bits_5
subs r8,r8,#8
b zero_bits_2
zero_bits_4:
str r3,[r8]
str r3,[r8,#4]
zero_bits_2:
str r3,[r8,#8]
str r3,[r8,#12]
add r8,r8,#16
zero_bits_5:
subs r4,r4,#1
bcs zero_bits_4
.if MARK_GC
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark5
.endif
no_zero_bits:
ldr r12,=n_last_heap_free_bytes
ldr r4,[r12]
ldr r12,=n_free_words_after_mark
ldr r3,[r12]
.if 1
lsr r4,r4,#2
.else
lsl r3,r3,#2
.endif
add r8,r3,r3,lsl #3
lsr r8,r8,#2
cmp r4,r8
bgt compact_gc
.if ADJUST_HEAP_SIZE
ldr r12,=bit_vector_size
ldr r3,[r12]
lsl r3,r3,#2
sub r4,r3,r4
ldr r12,=heap_size_multiple
ldr r12,[r12]
umull r4,r7,r12,r4
lsr r4,r4,#7
orr r4,r4,r7,lsl #32-7
lsrs r7,r7,#7
bne no_smaller_heap
cmp r4,r3
bhs no_smaller_heap
cmp r3,#MINIMUM_HEAP_SIZE
bls no_smaller_heap
b compact_gc
no_smaller_heap:
.endif
.include "armmark.s"
compact_gc:
ldr r12,=zero_bits_before_mark
mov r11,#1
str r11,[r12]
ldr r12,=n_last_heap_free_bytes
mov r11,#0
str r11,[r12]
ldr r12,=n_free_words_after_mark
mov r11,#1000
str r11,[r12]
.if MARK_AND_COPY_GC
no_mark5:
.endif
.endif
.include "armcompact.s"
ldr r12,=stack_top
ldr r9,[r12]
ldr r12,=heap_size_33
ldr r3,[r12]
lsl r3,r3,#5
ldr r12,=heap_p3
ldr r12,[r12]
add r3,r3,r12
ldr r12,=heap_end_after_gc
str r3,[r12]
subs r3,r3,r10
lsr r3,r3,#2
ldr r12,=n_allocated_words
ldr r12,[r12]
subs r3,r3,r12
mov r5,r3
bcc out_of_memory_4
ldr r12,=107374182
cmp r3,r12
bhs not_out_of_memory
add r4,r3,r3,lsl #2
lsl r4,r4,#3
ldr r12,=heap_size
ldr r12,[r12]
cmp r4,r12
bcc out_of_memory_4
not_out_of_memory:
.if MARK_GC || COMPACT_GC_ONLY
.if MARK_GC && ADJUST_HEAP_SIZE
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq no_mark_6
.endif
ldr r12,=heap_p3
ldr r4,[r12]
sub r4,r10,r4
ldr r12,=n_allocated_words
ldr r3,[r12]
add r4,r4,r3,lsl #2
ldr r12,=heap_size_33
ldr r3,[r12]
lsl r3,r3,#5
ldr r12,=heap_size_multiple
ldr r12,[r12]
umull r4,r7,r12,r4
lsr r4,r4,#8
orr r4,r4,r7,lsl #32-8
lsrs r7,r7,#8
bne no_small_heap2
and r4,r4,#-4
cmp r4,#MINIMUM_HEAP_SIZE
bhs not_too_small2
mov r4,#MINIMUM_HEAP_SIZE
not_too_small2:
mov r6,r3
subs r6,r6,r4
blo no_small_heap2
ldr r12,=heap_end_after_gc
ldr r11,[r12]
sub r11,r11,r6
str r11,[r12]
sub r5,r5,r6,lsr #2
mov r3,r4
no_small_heap2:
lsr r3,r3,#2
ldr r12,=bit_vector_size
str r3,[r12]
.if MARK_AND_COPY_GC
no_mark_6:
.endif
.endif
b no_copy_garbage_collection
.else
@ to do prevent overflow
lsl r4,r4,#2
ldr r12,=heap_size
ldr r12,[r12]
lsl r6,r12,#5
sub r6,r6,r12
cmp r4,r6
ble no_copy_garbage_collection
ldr r12,=heap_p
ldr r4,[r12]
ldr r12,=heap_p1
str r4,[r12]
ldr r12,=heap_size_129
ldr r3,[r12]
lsl r3,r3,#6
add r4,r4,r3
ldr r12,=heap_copied_vector
str r4,[r12]
ldr r12,=heap_end_after_gc
str r4,[r12]
ldr r12,=heap_copied_vector_size
ldr r3,[r12]
add r3,r3,r4
ldr r12,=heap_p2
str r3,[r12]
ldr r12,=heap_p3
ldr r4,[r12]
ldr r12,=heap_vector
ldr r12,[r12]
cmp r4,r12
ble vector_at_end_2
ldr r12,=heap_vector
ldr r3,[r12]
ldr r12,=extra_heap
str r3,[r12]
subs r4,r4,r3
lsr r4,r4,#2
ldr r12,=extra_heap_size
str r4,[r12]
ldr r12,=garbage_collect_flag
mov r11,#2
strb r11,[r12]
b no_copy_garbage_collection
vector_at_end_2:
ldr r12,=garbage_collect_flag
mov r11,#0
strb r11,[r12]
.endif
no_copy_garbage_collection:
str pc,[sp,#-4]!
bl add_garbage_collect_time
mov r4,r10
ldr r12,=heap_p3
ldr r12,[r12]
subs r4,r4,r12
ldr r12,=n_allocated_words
ldr r3,[r12]
add r4,r4,r3,lsl #2
b end_garbage_collect
stack_overflow:
str pc,[sp,#-4]!
bl add_execute_time
ldr r8,=stack_overflow_string
b print_error
IO_error:
str r0,[sp]
ldr r0,=IO_error_string
bl ew_print_string
ldr r0,[sp],#4
bl ew_print_string
ldr r0,=new_line_string
bl ew_print_string
b halt
print_error:
mov r0,r8
bl ew_print_string
halt:
ldr r12,=halt_sp
ldr sp,[r12]
.ifdef PROFILE
str pc,[sp,#-4]!
bl write_profile_stack
.endif
b exit
.ltorg
e__system__eaind:
__eaind:
eval_fill:
str r6,[r9],#4
mov r6,r7
ldr r12,[r7]
str pc,[sp,#-4]!
blx r12
mov r7,r6
ldr r6,[r9,#-4]!
ldr r8,[r7]
str r8,[r6]
ldr r8,[r7,#4]
str r8,[r6,#4]
ldr r8,[r7,#8]
str r8,[r6,#8]
ldr pc,[sp],#4
.p2align 2
b e__system__eaind
nop
nop
.long e__system__dind
.long -2
e__system__nind:
__indirection:
ldr r7,[r6,#4]
ldr r4,[r7]
tst r4,#2
.if MARK_GC
beq eval_fill2
.else
beq __cycle__in__spine
.endif
str r4,[r6]
ldr r8,[r7,#4]
str r8,[r6,#4]
ldr r8,[r7,#8]
str r8,[r6,#8]
ldr pc,[sp],#4
.if MARK_GC
eval_fill2:
ldr r12,=__cycle__in__spine
str r12,[r6]
str r6,[r9]
.if MARK_AND_COPY_GC
ldr r12,=flags
ldrb r12,[r12]
tst r12,#64
beq __cycle__in__spine
.endif
add r9,r9,#4
mov r6,r7
str pc,[sp,#-4]!
blx r4
mov r7,r6
ldr r6,[r9,#-4]!
ldr r8,[r7]
str r8,[r6]
ldr r8,[r7,#4]
str r8,[r6,#4]
ldr r8,[r7,#8]
str r8,[r6,#8]
ldr pc,[sp],#4
.endif
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_0:
ldr r12,=__indirection
str r12,[r7]
str r6,[r7,#4]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_1:
ldr r12,=__indirection
str r12,[r7]
ldr r4,[r7,#4]
str r6,[r7,#4]
mov r7,r4
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_2:
ldr r12,=__indirection
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r7,#4]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_3:
ldr r12,=__indirection
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r7,#4]
str r6,[r9],#4
ldr r6,[r7,#12]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_4:
ldr r12,=__indirection
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r7,#4]
str r6,[r9]
ldr r3,[r7,#16]
str r3,[r9,#4]
add r9,r9,#8
ldr r6,[r7,#12]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_5:
ldr r12,=__indirection
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r9]
str r6,[r7,#4]
ldr r3,[r7,#20]
str r3,[r9,#4]
ldr r3,[r7,#16]
str r3,[r9,#8]
add r9,r9,#12
ldr r6,[r7,#12]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_6:
ldr r12,=__indirection
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r9]
str r6,[r7,#4]
ldr r3,[r7,#24]
str r3,[r9,#4]
ldr r3,[r7,#20]
str r3,[r9,#8]
ldr r3,[r7,#16]
str r3,[r9,#12]
add r9,r9,#16
ldr r6,[r7,#12]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_7:
mov r4,#0
mov r3,#20
eval_upd_n:
ldr r12,=__indirection
add r2,r7,r3
str r12,[r7]
ldr r8,[r7,#4]
str r6,[r9]
str r6,[r7,#4]
ldr r3,[r2,#8]
str r3,[r9,#4]
ldr r3,[r2,#4]
str r3,[r9,#8]
ldr r3,[r2]
str r3,[r9,#12]
add r9,r9,#16
eval_upd_n_lp:
ldr r3,[r2,#-4]!
str r3,[r9],#4
subs r4,r4,#1
bcs eval_upd_n_lp
ldr r6,[r7,#12]
ldr r7,[r7,#8]
mov pc,r11
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_8:
mov r4,#1
mov r3,#24
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_9:
mov r4,#2
mov r3,#28
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_10:
mov r4,#3
mov r3,#32
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_11:
mov r4,#4
mov r3,#36
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_12:
mov r4,#5
mov r3,#40
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_13:
mov r4,#6
mov r3,#44
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_14:
mov r4,#7
mov r3,#48
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_15:
mov r4,#8
mov r3,#52
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_16:
mov r4,#9
mov r3,#56
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_17:
mov r4,#10
mov r3,#60
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_18:
mov r4,#11
mov r3,#64
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_19:
mov r4,#12
mov r3,#68
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_20:
mov r4,#13
mov r3,#72
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_21:
mov r4,#14
mov r3,#76
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_22:
mov r4,#15
mov r3,#80
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_23:
mov r4,#16
mov r3,#84
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_24:
mov r4,#17
mov r3,#88
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_25:
mov r4,#18
mov r3,#92
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_26:
mov r4,#19
mov r3,#96
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_27:
mov r4,#20
mov r3,#100
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_28:
mov r4,#21
mov r3,#104
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_29:
mov r4,#22
mov r3,#108
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_30:
mov r4,#23
mov r3,#112
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_31:
mov r4,#24
mov r3,#116
b eval_upd_n
.ifdef PROFILE
str pc,[sp,#-4]!
bl profile_n
mov r8,r4
.endif
eval_upd_32:
mov r4,#25
mov r3,#120
b eval_upd_n
@
@ STRINGS
@
.section .text. (catAC)
catAC:
ldr r4,[r6,#4]
ldr r3,[r7,#4]
add r8,r4,r3
add r8,r8,#8+3
lsr r8,r8,#2
subs r5,r5,r8
blo gc_3
gc_r_3:
add r6,r6,#8
add r7,r7,#8
@ fill_node
str r10,[sp,#-4]!
ldr r12,=__STRING__+2
str r12,[r10]
@ store length
add r8,r4,r3
str r8,[r10,#4]
add r10,r10,#8
@ copy string 1
add r8,r3,#3
add r3,r3,r10
lsrs r8,r8,#2
beq catAC_after_copy_lp1
catAC_copy_lp1:
ldr r12,[r7],#4
str r12,[r10],#4
subs r8,r8,#1
bne catAC_copy_lp1
catAC_after_copy_lp1:
mov r10,r3
@ copy_string 2
cat_string_6:
lsrs r8,r4,#2
beq cat_string_9
cat_string_7:
ldr r3,[r6],#4
@ store not aligned
str r3,[r10],#4
subs r8,r8,#1
bne cat_string_7
cat_string_9:
tst r4,#2
beq cat_string_10
ldrh r3,[r6],#2
strh r3,[r10],#2
cat_string_10:
tst r4,#1
beq cat_string_11
ldrb r3,[r6]
strb r3,[r10],#1
cat_string_11:
ldr r6,[sp],#4
@ align heap pointer
add r10,r10,#3
and r10,r10,#-4
ldr pc,[sp],#4
gc_3: bl collect_2
b gc_r_3
empty_string:
ldr r6,=zero_length_string
ldr pc,[sp],#4
.section .text.sliceAC,"ax"
sliceAC:
ldr r8,[r6,#4]
tst r3,r3
bpl slice_string_1
mov r3,#0
slice_string_1:
cmp r3,r8
bge empty_string
cmp r4,r3
blt empty_string
add r4,r4,#1
cmp r4,r8
ble slice_string_2
mov r4,r8
slice_string_2:
subs r4,r4,r3
add r8,r4,#8+3
lsr r8,r8,#2
subs r5,r5,r8
blo gc_4
r_gc_4:
subs r8,r8,#2
add r12,r6,#8
add r7,r12,r3
ldr r12,=__STRING__+2
str r12,[r10]
str r4,[r10,#4]
@ copy part of string
mov r6,r10
add r10,r10,#8
cmp r8,#0
beq sliceAC_after_copy_lp
sliceAC_copy_lp:
@ load not aligned
ldr r12,[r7],#4
str r12,[r10],#4
subs r8,r8,#1
bne sliceAC_copy_lp
sliceAC_after_copy_lp:
ldr pc,[sp],#4
gc_4:
bl collect_1
add r8,r4,#8+3
lsr r8,r8,#2
b r_gc_4
.section .text.updateAC,"ax"
updateAC:
ldr r8,[r6,#4]
cmp r3,r8
bhs update_string_error
add r8,r8,#8+3
lsr r8,r8,#2
subs r5,r5,r8
blo gc_5
r_gc_5:
ldr r8,[r6,#4]
add r8,r8,#3
lsr r8,r8,#2
mov r7,r6
mov r6,r10
ldr r12,=__STRING__+2
str r12,[r10]
ldr r12,[r7,#4]
add r7,r7,#8
str r12,[r10,#4]
add r10,r10,#8
add r3,r3,r10
cmp r8,#0
beq updateAC_after_copy_lp
updateAC_copy_lp:
ldr r12,[r7],#4
str r12,[r10],#4
subs r8,r8,#1
bne updateAC_copy_lp
updateAC_after_copy_lp:
strb r4,[r3]
ldr pc,[sp],#4
gc_5: bl collect_1
b r_gc_5
update_string_error:
ldr r8,=high_index_string
tst r4,r4
bpl update_string_error_2
ldr r8,=low_index_string
update_string_error_2:
b print_error
.section .text.eqAC,"ax"
eqAC:
ldr r4,[r6,#4]
ldr r12,[r7,#4]
cmp r4,r12
bne equal_string_ne
add r6,r6,#8
add r7,r7,#8
and r3,r4,#3
lsrs r4,r4,#2
beq equal_string_b
equal_string_1:
ldr r8,[r6]
ldr r12,[r7]
cmp r8,r12
bne equal_string_ne
add r6,r6,#4
add r7,r7,#4
subs r4,r4,#1
bne equal_string_1
equal_string_b:
tst r3,#2
beq equal_string_2
ldrh r4,[r6]
ldrh r12,[r7]
cmp r4,r12
bne equal_string_ne
add r6,r6,#2
add r7,r7,#2
equal_string_2:
tst r3,#1
beq equal_string_eq
ldrb r3,[r6]
ldrb r12,[r7]
cmp r3,r12
bne equal_string_ne
equal_string_eq:
mov r4,#1
ldr pc,[sp],#4
equal_string_ne:
mov r4,#0
ldr pc,[sp],#4
.section .text.cmpAC,"ax"
cmpAC:
ldr r3,[r6,#4]
ldr r8,[r7,#4]
add r6,r6,#8
add r7,r7,#8
cmp r8,r3
blo cmp_string_less
bhi cmp_string_more
mov r4,#0
b cmp_string_chars
cmp_string_more:
mov r4,#1
b cmp_string_chars
cmp_string_less:
mov r4,#-1
mov r3,r8
b cmp_string_chars
cmp_string_1:
ldr r8,[r7]
ldr r12,[r6]
cmp r8,r12
bne cmp_string_ne4
add r7,r7,#4
add r6,r6,#4
cmp_string_chars:
subs r3,r3,#4
bcs cmp_string_1
cmp_string_b:
@ to do compare bytes using and instead of ldrb
tst r3,#2
beq cmp_string_2
ldrb r8,[r7]
ldrb r12,[r6]
cmp r8,r12
bne cmp_string_ne
ldrb r8,[r7,#1]
ldrb r12,[r6,#1]
cmp r8,r12
bne cmp_string_ne
add r7,r7,#2
add r6,r6,#2
cmp_string_2:
tst r3,#1
beq cmp_string_eq
ldrb r8,[r7]
ldrb r12,[r6]
cmp r8,r12
bne cmp_string_ne
cmp_string_eq:
ldr pc,[sp],#4
cmp_string_ne4:
@ to do compare bytes using and instead of ldrb
ldrb r3,[r7]
ldrb r12,[r6]
cmp r3,r12
bne cmp_string_ne
ldrb r3,[r7,#1]
ldrb r12,[r6,#1]
cmp r3,r12
bne cmp_string_ne
ldrb r3,[r7,#2]
ldrb r12,[r6,#2]
cmp r3,r12
bne cmp_string_ne
ldrb r3,[r7,#3]
ldrb r12,[r6,#3]
cmp r3,r12
cmp_string_ne:
bhi cmp_string_r1
mov r4,#-1
ldr pc,[sp],#4
cmp_string_r1:
mov r4,#1
ldr pc,[sp],#4
.section .text.string_to_string_node,"ax"
string_to_string_node:
ldr r4,[r6],#4
add r3,r4,#3
lsr r3,r3,#2
add r12,r3,#2
subs r5,r5,r12
blo string_to_string_node_gc
string_to_string_node_r:
ldr r12,=__STRING__+2
str r12,[r10]
str r4,[r10,#4]
mov r8,r10
add r10,r10,#8
b string_to_string_node_4
string_to_string_node_2:
ldr r4,[r6],#4
str r4,[r10],#4
string_to_string_node_4:
subs r3,r3,#1
bge string_to_string_node_2
mov r6,r8
ldr pc,[sp],#4
string_to_string_node_gc:
str r6,[sp,#-4]!
bl collect_0
ldr r6,[sp],#4
b string_to_string_node_r
.section .text.int_array_to_node,"ax"
int_array_to_node:
ldr r4,[r6,#-8]
add r12,r4,#3
subs r5,r5,r12
blo int_array_to_node_gc
int_array_to_node_r:
ldr r12,=__ARRAY__+2
str r12,[r10]
mov r7,r6
str r4,[r10,#4]
mov r6,r10
ldr r12,=INT+2
str r12,[r10,#8]
add r10,r10,#12
b int_array_to_node_4
int_array_to_node_2:
ldr r3,[r7],#4
str r3,[r10],#4
int_array_to_node_4:
subs r4,r4,#1
bge int_array_to_node_2
ldr pc,[sp],#4
int_array_to_node_gc:
str r6,[sp,#-4]!
bl collect_0
ldr r6,[sp],#4
b int_array_to_node_r
.section .text.real_array_to_node,"ax"
real_array_to_node:
ldr r4,[r6,#-8]
add r12,r4,#3+1
subs r5,r5,r12
blo real_array_to_node_gc
real_array_to_node_r:
tst r10,#4
orr r10,r10,#4
addne r5,r5,#1
mov r7,r6
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
mov r6,r10
ldr r12,=REAL+2
str r12,[r10,#8]
add r10,r10,#12
b real_array_to_node_4
real_array_to_node_2:
ldr r3,[r7]
str r3,[r10]
ldr r8,[r7,#4]
add r7,r7,#8
str r8,[r10,#4]
add r10,r10,#8
real_array_to_node_4:
subs r4,r4,#1
bge real_array_to_node_2
ldr pc,[sp],#4
real_array_to_node_gc:
str r6,[sp,#-4]!
bl collect_0
ldr r6,[sp],#4
b real_array_to_node_r
.p2align 2
.long 3
_c3: b __cycle__in__spine
.p2align 2
.long 4
_c4: b __cycle__in__spine
.p2align 2
.long 5
_c5: b __cycle__in__spine
.p2align 2
.long 6
_c6: b __cycle__in__spine
.p2align 2
.long 7
_c7: b __cycle__in__spine
.p2align 2
.long 8
_c8: b __cycle__in__spine
.p2align 2
.long 9
_c9: b __cycle__in__spine
.p2align 2
.long 10
_c10: b __cycle__in__spine
.p2align 2
.long 11
_c11: b __cycle__in__spine
.p2align 2
.long 12
_c12: b __cycle__in__spine
.p2align 2
.long 13
_c13: b __cycle__in__spine
.p2align 2
.long 14
_c14: b __cycle__in__spine
.p2align 2
.long 15
_c15: b __cycle__in__spine
.p2align 2
.long 16
_c16: b __cycle__in__spine
.p2align 2
.long 17
_c17: b __cycle__in__spine
.p2align 2
.long 18
_c18: b __cycle__in__spine
.p2align 2
.long 19
_c19: b __cycle__in__spine
.p2align 2
.long 20
_c20: b __cycle__in__spine
.p2align 2
.long 21
_c21: b __cycle__in__spine
.p2align 2
.long 22
_c22: b __cycle__in__spine
.p2align 2
.long 23
_c23: b __cycle__in__spine
.p2align 2
.long 24
_c24: b __cycle__in__spine
.p2align 2
.long 25
_c25: b __cycle__in__spine
.p2align 2
.long 26
_c26: b __cycle__in__spine
.p2align 2
.long 27
_c27: b __cycle__in__spine
.p2align 2
.long 28
_c28: b __cycle__in__spine
.p2align 2
.long 29
_c29: b __cycle__in__spine
.p2align 2
.long 30
_c30: b __cycle__in__spine
.p2align 2
.long 31
_c31: b __cycle__in__spine
.p2align 2
.long 32
_c32: b __cycle__in__spine
@
@ ARRAYS
@
_create_arrayB:
add r3,r4,#3
lsr r3,r3,#2
add r12,r3,#3
subs r5,r5,r12
bhs no_collect_4574
bl collect_0
no_collect_4574:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
ldr r12,=BOOL+2
str r12,[r10,#8]
add r12,r10,#12
add r10,r12,r3,lsl #2
ldr pc,[sp],#4
_create_arrayC:
add r3,r4,#3
lsr r3,r3,#2
add r12,r3,#2
subs r5,r5,r12
bhs no_collect_4573
bl collect_0
no_collect_4573:
mov r6,r10
ldr r12,=__STRING__+2
str r12,[r10]
str r4,[r10,#4]
add r12,r10,#8
add r10,r12,r3,lsl #2
ldr pc,[sp],#4
_create_arrayI:
add r12,r4,#3
subs r5,r5,r12
bhs no_collect_4572
bl collect_0
no_collect_4572:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
ldr r12,=INT+2
str r12,[r10,#8]
add r12,r10,#12
add r10,r12,r4,lsl #2
ldr pc,[sp],#4
_create_arrayR:
add r12,r4,r4
add r12,r12,#3+1
subs r5,r5,r12
bhs no_collect_4580
bl collect_0
no_collect_4580:
tst r10,#4
orr r10,r10,#4
addne r5,r5,#1
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
ldr r12,=REAL+2
str r12,[r10,#8]
add r12,r10,#12
add r10,r12,r4,lsl #3
ldr pc,[sp],#4
@ r4: number of elements, r3: element descriptor
@ r2: element size, r1: element a size, a0:a_element-> a0: array
_create_r_array:
mul r12,r4,r2
add r12,r12,#3
subs r5,r5,r12
bhs no_collect_4586
bl collect_1
no_collect_4586:
mov r8,r6
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
mov r6,r10
add r10,r10,#12
@ r4: number of elements, a0: array
@ r2: element size, r1: element a size, a2:a_element
cmp r1,#0
beq _create_r_array_0
cmp r1,#2
blo _create_r_array_1
beq _create_r_array_2
cmp r1,#4
blo _create_r_array_3
beq _create_r_array_4
b _create_r_array_5
_create_r_array_0:
lsl r2,r2,#2
mul r12,r4,r2
add r10,r10,r12
ldr pc,[sp],#4
_create_r_array_1:
lsl r2,r2,#2
b _st_fillr1_array
_fillr1_array:
str r8,[r10]
add r10,r10,r2
_st_fillr1_array:
subs r4,r4,#1
bcs _fillr1_array
ldr pc,[sp],#4
_create_r_array_2:
lsl r2,r2,#2
b _st_fillr2_array
_fillr2_array:
str r8,[r10]
str r8,[r10,#4]
add r10,r10,r2
_st_fillr2_array:
subs r4,r4,#1
bcs _fillr2_array
ldr pc,[sp],#4
_create_r_array_3:
lsl r2,r2,#2
b _st_fillr3_array
_fillr3_array:
str r8,[r10]
str r8,[r10,#4]
str r8,[r10,#8]
add r10,r10,r2
_st_fillr3_array:
subs r4,r4,#1
bcs _fillr3_array
ldr pc,[sp],#4
_create_r_array_4:
lsl r2,r2,#2
b _st_fillr4_array
_fillr4_array:
str r8,[r10]
str r8,[r10,#4]
str r8,[r10,#8]
str r8,[r10,#12]
add r10,r10,r2
_st_fillr4_array:
subs r4,r4,#1
bcs _fillr4_array
ldr pc,[sp],#4
_create_r_array_5:
sub r2,r2,r1
lsl r2,r2,#2
b _st_fillr5_array
_fillr5_array:
str r8,[r10]
str r8,[r10,#4]
str r8,[r10,#8]
str r8,[r10,#12]
add r10,r10,#16
sub r3,r1,#5
_copy_elem_5_lp:
str r8,[r10],#4
subs r3,r3,#1
bcs _copy_elem_5_lp
add r10,r10,r2
_st_fillr5_array:
subs r4,r4,#1
bcs _fillr5_array
ldr pc,[sp],#4
create_arrayB:
mov r7,r3
add r3,r3,#3
lsr r3,r3,#2
add r12,r3,#3
subs r5,r5,r12
bhs no_collect_4575
str r7,[sp,#-4]!
bl collect_0
ldr r7,[sp],#4
no_collect_4575:
orr r4,r4,r4,lsl #8
orr r4,r4,r4,lsl #16
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r7,[r10,#4]
ldr r12,=BOOL+2
str r12,[r10,#8]
add r10,r10,#12
b create_arrayBCI
create_arrayC:
mov r7,r3
add r3,r3,#3
lsr r3,r3,#2
add r12,r3,#2
subs r5,r5,r12
bhs no_collect_4578
str r7,[sp,#-4]!
bl collect_0
ldr r7,[sp],#4
no_collect_4578:
orr r4,r4,r4,lsl #8
orr r4,r4,r4,lsl #16
mov r6,r10
ldr r12,=__STRING__+2
str r12,[r10]
str r7,[r10,#4]
add r10,r10,#8
b create_arrayBCI
create_arrayI:
add r12,r3,#3
subs r5,r5,r12
bhs no_collect_4577
bl collect_0
no_collect_4577:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r3,[r10,#4]
ldr r12,=INT+2
str r12,[r10,#8]
add r10,r10,#12
create_arrayBCI:
tst r3,#1
lsr r3,r3,#1
beq st_filli_array
str r4,[r10],#4
b st_filli_array
filli_array:
str r4,[r10]
str r4,[r10,#4]
add r10,r10,#8
st_filli_array:
subs r3,r3,#1
bcs filli_array
ldr pc,[sp],#4
create_arrayR:
add r12,r4,r4
add r12,r12,#3+1
vmov r3,r7,d0
subs r5,r5,r12
bhs no_collect_4579
str r7,[sp,#-4]!
bl collect_0
ldr r7,[sp],#4
no_collect_4579:
tst r10,#4
orr r10,r10,#4
addne r5,r5,#1
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
ldr r12,=REAL+2
str r12,[r10,#8]
add r10,r10,#12
b st_fillr_array
fillr_array:
str r3,[r10]
str r7,[r10,#4]
add r10,r10,#8
st_fillr_array:
subs r4,r4,#1
bcs fillr_array
ldr pc,[sp],#4
create_array:
add r12,r4,#3
subs r5,r5,r12
bhs no_collect_4576
bl collect_1
no_collect_4576:
mov r3,r6
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
mov r12,#0
str r12,[r10,#8]
add r10,r10,#12
mov r1,r4
b fillr1_array
@ in r4: number of elements, r3: element descriptor
@ r2: element size, r1: element a size -> a0: array
create_R_array:
cmp r2,#2
blo create_R_array_1
beq create_R_array_2
cmp r2,#4
blo create_R_array_3
beq create_R_array_4
b create_R_array_5
create_R_array_1:
@ r4: number of elements, r3: element descriptor
@ r1: element a size
add r12,r4,#3
subs r5,r5,r12
bhs no_collect_4581
bl collect_0
no_collect_4581:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
add r10,r10,#12
cmp r1,#0
beq r_array_1_b
ldr r3,[r9,#-4]
b fillr1_array
r_array_1_b:
ldr r3,[sp,#4]
fillr1_array:
tst r4,#1
lsr r4,r4,#1
beq st_fillr1_array_1
str r3,[r10],#4
b st_fillr1_array_1
fillr1_array_lp:
str r3,[r10]
str r3,[r10,#4]
add r10,r10,#8
st_fillr1_array_1:
subs r4,r4,#1
bcs fillr1_array_lp
ldr pc,[sp],#4
create_R_array_2:
@ r4: number of elements, r3: element descriptor
@ r1: element a size
add r12,r4,r4
add r12,r12,#3
subs r5,r5,r12
bhs no_collect_4582
bl collect_0
no_collect_4582:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
add r10,r10,#12
subs r1,r1,#1
blo r_array_2_bb
beq r_array_2_ab
r_array_2_aa:
ldr r3,[r9,#-4]
ldr r8,[r9,#-8]
b st_fillr2_array
r_array_2_ab:
ldr r3,[r9,#-4]
ldr r8,[sp,#4]
b st_fillr2_array
r_array_2_bb:
ldr r3,[sp,#4]
ldr r8,[sp,#8]
b st_fillr2_array
fillr2_array_1:
str r3,[r10]
str r8,[r10,#4]
add r10,r10,#8
st_fillr2_array:
subs r4,r4,#1
bcs fillr2_array_1
ldr pc,[sp],#4
create_R_array_3:
@ r4: number of elements, r3: element descriptor
@ r1: element a size
add r12,r4,r4,lsl #1
add r12,r12,#3
subs r5,r5,r12
bhs no_collect_4583
bl collect_0
no_collect_4583:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
add r10,r10,#12
ldr lr,[sp],#4
mov r2,sp
cmp r1,#0
beq r_array_3
sub r8,r9,r1,lsl #2
subs r1,r1,#1
copy_a_to_b_lp3:
ldr r12,[r8],#4
str r12,[sp,#-4]!
subs r1,r1,#1
bcs copy_a_to_b_lp3
r_array_3:
ldr r3,[sp]
ldr r7,[sp,#4]
ldr r8,[sp,#8]
mov sp,r2
b st_fillr3_array
fillr3_array_1:
str r3,[r10]
str r7,[r10,#4]
str r8,[r10,#8]
add r10,r10,#12
st_fillr3_array:
subs r4,r4,#1
bcs fillr3_array_1
bx lr
create_R_array_4:
@ r4: number of elements, r3: element descriptor
@ r1: element a size
lsl r12,r4,#2
add r12,r12,#3
subs r5,r5,r12
bhs no_collect_4584
bl collect_0
no_collect_4584:
mov r6,r10
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
add r10,r10,#12
ldr lr,[sp],#4
mov r2,sp
cmp r1,#0
beq r_array_4
sub r8,r9,r1,lsl #2
subs r1,r1,#1
copy_a_to_b_lp4:
ldr r12,[r8],#4
str r12,[sp,#-4]!
subs r1,r1,#1
bcs copy_a_to_b_lp4
r_array_4:
ldr r0,[sp]
ldr r3,[sp,#4]
ldr r7,[sp,#8]
ldr r8,[sp,#12]
mov sp,r2
b st_fillr4_array
fillr4_array:
str r0,[r10]
str r3,[r10,#4]
str r7,[r10,#8]
str r8,[r10,#12]
add r10,r10,#16
st_fillr4_array:
subs r4,r4,#1
bcs fillr4_array
bx lr
create_R_array_5:
@ r4: number of elements, r3: element descriptor
@ r1: element a size, r2: element size
mul r12,r4,r2
add r12,r12,#3
subs r5,r5,r12
bhs no_collect_4585
bl collect_0
no_collect_4585:
ldr r12,=__ARRAY__+2
str r12,[r10]
str r4,[r10,#4]
str r3,[r10,#8]
ldr lr,[sp],#4
mov r11,sp
cmp r1,#0
beq r_array_5
sub r8,r9,r1,lsl #2
subs r1,r1,#1
copy_a_to_b_lp5:
ldr r12,[r8],#4
str r12,[sp,#-4]!
subs r1,r1,#1
bcs copy_a_to_b_lp5
r_array_5:
mov r6,r10
add r10,r10,#12
ldr r3,[sp]
ldr r7,[sp,#4]
b st_fillr5_array
fillr5_array_1:
str r3,[r10]
str r7,[r10,#4]
sub r12,r2,#5
ldr r8,[sp,#8]
str r8,[r10,#8]
ldr r8,[sp,#12]
add r0,sp,#16
str r8,[r10,#12]
add r10,r10,#16
copy_elem_lp5:
ldr r8,[r0],#4
str r8,[r10],#4
subs r12,r12,#1
bcs copy_elem_lp5
st_fillr5_array:
subs r4,r4,#1
bcs fillr5_array_1
mov sp,r11
bx lr
repl_args_b:
cmp r4,#0
ble repl_args_b_1
subs r4,r4,#1
beq repl_args_b_4
ldr r7,[r6,#8]
subs r3,r3,#2
bne repl_args_b_2
str r7,[r9],#4
b repl_args_b_4
repl_args_b_2:
add r7,r7,r4,lsl #2
repl_args_b_3:
ldr r8,[r7,#-4]!
str r8,[r9],#4
subs r4,r4,#1
bne repl_args_b_3
repl_args_b_4:
ldr r8,[r6,#4]
str r8,[r9],#4
repl_args_b_1:
ldr pc,[sp],#4
push_arg_b:
cmp r3,#2
blo push_arg_b_1
bne push_arg_b_2
cmp r3,r4
beq push_arg_b_1
push_arg_b_2:
ldr r6,[r6,#8]
subs r3,r3,#2
push_arg_b_1:
ldr r6,[r6,r3,lsl #2]
ldr pc,[sp],#4
del_args:
ldr r3,[r6]
subs r3,r3,r4
ldrsh r4,[r3,#-2]
subs r4,r4,#2
bge del_args_2
str r3,[r7]
ldr r8,[r6,#4]
str r8,[r7,#4]
ldr r8,[r6,#8]
str r8,[r7,#8]
ldr pc,[sp],#4
del_args_2:
bne del_args_3
str r3,[r7]
ldr r8,[r6,#4]
str r8,[r7,#4]
ldr r8,[r6,#8]
ldr r8,[r8]
str r8,[r7,#8]
ldr pc,[sp],#4
del_args_3:
subs r5,r5,r4
blo del_args_gc
del_args_r_gc:
str r3,[r7]
str r10,[r7,#8]
ldr r8,[r6,#4]
ldr r6,[r6,#8]
str r8,[r7,#4]
del_args_copy_args:
ldr r8,[r6],#4
str r8,[r10],#4
subs r4,r4,#1
bgt del_args_copy_args
ldr pc,[sp],#4
del_args_gc:
bl collect_2
b del_args_r_gc
.section .text.sin_real,"ax"
sin_real:
bl sin
ldr pc,[sp],#4
.section .text.cos_real,"ax"
cos_real:
bl cos
ldr pc,[sp],#4
.section .text.tan_real,"ax"
tan_real:
bl tan
ldr pc,[sp],#4
.section .text.asin_real,"ax"
asin_real:
bl asin
ldr pc,[sp],#4
.section .text.acos_real,"ax"
acos_real:
bl acos
ldr pc,[sp],#4
.section .text.atan_real,"ax"
atan_real:
bl atan
ldr pc,[sp],#4
.section .text.ln_real,"ax"
ln_real:
bl log
ldr pc,[sp],#4
.section .text.log10_real,"ax"
log10_real:
bl log10
ldr pc,[sp],#4
.section .text.exp_real,"ax"
exp_real:
bl exp
ldr pc,[sp],#4
.section .text.pow_real,"ax"
pow_real:
vmov.f64 d2,d0
vmov.f64 d0,d1
vmov.f64 d1,d2
bl pow
ldr pc,[sp],#4
.section .text.entier_real,"ax"
entier_real:
bl floor
r_to_i_real:
vcvtr.s32.f64 s0,d0
vmov r4,s0
ldr pc,[sp],#4
.ltorg
.if NEW_DESCRIPTORS
.include "armap.s"
.endif
|