isl_schedule_tree.c
78.1 KB
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
/*
* Copyright 2013-2014 Ecole Normale Superieure
* Copyright 2014 INRIA Rocquencourt
* Copyright 2016 INRIA Paris
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege,
* Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
* and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
* B.P. 105 - 78153 Le Chesnay, France
* and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
* CS 42112, 75589 Paris Cedex 12, France
*/
#include <isl/id.h>
#include <isl/val.h>
#include <isl/space.h>
#include <isl/map.h>
#include <isl_schedule_band.h>
#include <isl_schedule_private.h>
#undef EL
#define EL isl_schedule_tree
#include <isl_list_templ.h>
#undef EL_BASE
#define EL_BASE schedule_tree
#include <isl_list_templ.c>
/* Is "tree" the leaf of a schedule tree?
*/
int isl_schedule_tree_is_leaf(__isl_keep isl_schedule_tree *tree)
{
return isl_schedule_tree_get_type(tree) == isl_schedule_node_leaf;
}
/* Create a new schedule tree of type "type".
* The caller is responsible for filling in the type specific fields and
* the children.
*
* By default, the single node tree does not have any anchored nodes.
* The caller is responsible for updating the anchored field if needed.
*/
static __isl_give isl_schedule_tree *isl_schedule_tree_alloc(isl_ctx *ctx,
enum isl_schedule_node_type type)
{
isl_schedule_tree *tree;
if (type == isl_schedule_node_error)
return NULL;
tree = isl_calloc_type(ctx, isl_schedule_tree);
if (!tree)
return NULL;
tree->ref = 1;
tree->ctx = ctx;
isl_ctx_ref(ctx);
tree->type = type;
tree->anchored = 0;
return tree;
}
/* Return a fresh copy of "tree".
*/
__isl_take isl_schedule_tree *isl_schedule_tree_dup(
__isl_keep isl_schedule_tree *tree)
{
isl_ctx *ctx;
isl_schedule_tree *dup;
if (!tree)
return NULL;
ctx = isl_schedule_tree_get_ctx(tree);
dup = isl_schedule_tree_alloc(ctx, tree->type);
if (!dup)
return NULL;
switch (tree->type) {
case isl_schedule_node_error:
isl_die(ctx, isl_error_internal,
"allocation should have failed",
return isl_schedule_tree_free(dup));
case isl_schedule_node_band:
dup->band = isl_schedule_band_copy(tree->band);
if (!dup->band)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_context:
dup->context = isl_set_copy(tree->context);
if (!dup->context)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_domain:
dup->domain = isl_union_set_copy(tree->domain);
if (!dup->domain)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_expansion:
dup->contraction =
isl_union_pw_multi_aff_copy(tree->contraction);
dup->expansion = isl_union_map_copy(tree->expansion);
if (!dup->contraction || !dup->expansion)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_extension:
dup->extension = isl_union_map_copy(tree->extension);
if (!dup->extension)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_filter:
dup->filter = isl_union_set_copy(tree->filter);
if (!dup->filter)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_guard:
dup->guard = isl_set_copy(tree->guard);
if (!dup->guard)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_mark:
dup->mark = isl_id_copy(tree->mark);
if (!dup->mark)
return isl_schedule_tree_free(dup);
break;
case isl_schedule_node_leaf:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
break;
}
if (tree->children) {
dup->children = isl_schedule_tree_list_copy(tree->children);
if (!dup->children)
return isl_schedule_tree_free(dup);
}
dup->anchored = tree->anchored;
return dup;
}
/* Return an isl_schedule_tree that is equal to "tree" and that has only
* a single reference.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_cow(
__isl_take isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->ref == 1)
return tree;
tree->ref--;
return isl_schedule_tree_dup(tree);
}
/* Return a new reference to "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_copy(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
tree->ref++;
return tree;
}
/* Free "tree" and return NULL.
*/
__isl_null isl_schedule_tree *isl_schedule_tree_free(
__isl_take isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (--tree->ref > 0)
return NULL;
switch (tree->type) {
case isl_schedule_node_band:
isl_schedule_band_free(tree->band);
break;
case isl_schedule_node_context:
isl_set_free(tree->context);
break;
case isl_schedule_node_domain:
isl_union_set_free(tree->domain);
break;
case isl_schedule_node_expansion:
isl_union_pw_multi_aff_free(tree->contraction);
isl_union_map_free(tree->expansion);
break;
case isl_schedule_node_extension:
isl_union_map_free(tree->extension);
break;
case isl_schedule_node_filter:
isl_union_set_free(tree->filter);
break;
case isl_schedule_node_guard:
isl_set_free(tree->guard);
break;
case isl_schedule_node_mark:
isl_id_free(tree->mark);
break;
case isl_schedule_node_sequence:
case isl_schedule_node_set:
case isl_schedule_node_error:
case isl_schedule_node_leaf:
break;
}
isl_schedule_tree_list_free(tree->children);
isl_ctx_deref(tree->ctx);
free(tree);
return NULL;
}
/* Create and return a new leaf schedule tree.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_leaf(isl_ctx *ctx)
{
return isl_schedule_tree_alloc(ctx, isl_schedule_node_leaf);
}
/* Create a new band schedule tree referring to "band"
* with no children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_band(
__isl_take isl_schedule_band *band)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!band)
return NULL;
ctx = isl_schedule_band_get_ctx(band);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_band);
if (!tree)
goto error;
tree->band = band;
tree->anchored = isl_schedule_band_is_anchored(band);
return tree;
error:
isl_schedule_band_free(band);
return NULL;
}
/* Create a new context schedule tree with the given context and no children.
* Since the context references the outer schedule dimension,
* the tree is anchored.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_context(
__isl_take isl_set *context)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!context)
return NULL;
ctx = isl_set_get_ctx(context);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_context);
if (!tree)
goto error;
tree->context = context;
tree->anchored = 1;
return tree;
error:
isl_set_free(context);
return NULL;
}
/* Create a new domain schedule tree with the given domain and no children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_domain(
__isl_take isl_union_set *domain)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!domain)
return NULL;
ctx = isl_union_set_get_ctx(domain);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_domain);
if (!tree)
goto error;
tree->domain = domain;
return tree;
error:
isl_union_set_free(domain);
return NULL;
}
/* Create a new expansion schedule tree with the given contraction and
* expansion and no children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_expansion(
__isl_take isl_union_pw_multi_aff *contraction,
__isl_take isl_union_map *expansion)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!contraction || !expansion)
goto error;
ctx = isl_union_map_get_ctx(expansion);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_expansion);
if (!tree)
goto error;
tree->contraction = contraction;
tree->expansion = expansion;
return tree;
error:
isl_union_pw_multi_aff_free(contraction);
isl_union_map_free(expansion);
return NULL;
}
/* Create a new extension schedule tree with the given extension and
* no children.
* Since the domain of the extension refers to the outer schedule dimension,
* the tree is anchored.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_extension(
__isl_take isl_union_map *extension)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!extension)
return NULL;
ctx = isl_union_map_get_ctx(extension);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_extension);
if (!tree)
goto error;
tree->extension = extension;
tree->anchored = 1;
return tree;
error:
isl_union_map_free(extension);
return NULL;
}
/* Create a new filter schedule tree with the given filter and no children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_filter(
__isl_take isl_union_set *filter)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!filter)
return NULL;
ctx = isl_union_set_get_ctx(filter);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_filter);
if (!tree)
goto error;
tree->filter = filter;
return tree;
error:
isl_union_set_free(filter);
return NULL;
}
/* Create a new guard schedule tree with the given guard and no children.
* Since the guard references the outer schedule dimension,
* the tree is anchored.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_guard(
__isl_take isl_set *guard)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!guard)
return NULL;
ctx = isl_set_get_ctx(guard);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_guard);
if (!tree)
goto error;
tree->guard = guard;
tree->anchored = 1;
return tree;
error:
isl_set_free(guard);
return NULL;
}
/* Create a new mark schedule tree with the given mark identifier and
* no children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_mark(
__isl_take isl_id *mark)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!mark)
return NULL;
ctx = isl_id_get_ctx(mark);
tree = isl_schedule_tree_alloc(ctx, isl_schedule_node_mark);
if (!tree)
goto error;
tree->mark = mark;
return tree;
error:
isl_id_free(mark);
return NULL;
}
/* Does "tree" have any node that depends on its position
* in the complete schedule tree?
*/
isl_bool isl_schedule_tree_is_subtree_anchored(
__isl_keep isl_schedule_tree *tree)
{
return tree ? isl_bool_ok(tree->anchored) : isl_bool_error;
}
/* Does the root node of "tree" depend on its position in the complete
* schedule tree?
* Band nodes may be anchored depending on the associated AST build options.
* Context, extension and guard nodes are always anchored.
*/
int isl_schedule_tree_is_anchored(__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return -1;
switch (isl_schedule_tree_get_type(tree)) {
case isl_schedule_node_error:
return -1;
case isl_schedule_node_band:
return isl_schedule_band_is_anchored(tree->band);
case isl_schedule_node_context:
case isl_schedule_node_extension:
case isl_schedule_node_guard:
return 1;
case isl_schedule_node_domain:
case isl_schedule_node_expansion:
case isl_schedule_node_filter:
case isl_schedule_node_leaf:
case isl_schedule_node_mark:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
return 0;
}
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"unhandled case", return -1);
}
/* Update the anchored field of "tree" based on whether the root node
* itself in anchored and the anchored fields of the children.
*
* This function should be called whenever the children of a tree node
* are changed or the anchoredness of the tree root itself changes.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_update_anchored(
__isl_take isl_schedule_tree *tree)
{
int i;
isl_size n;
int anchored;
anchored = isl_schedule_tree_is_anchored(tree);
n = isl_schedule_tree_n_children(tree);
if (anchored < 0 || n < 0)
return isl_schedule_tree_free(tree);
for (i = 0; !anchored && i < n; ++i) {
isl_schedule_tree *child;
child = isl_schedule_tree_get_child(tree, i);
if (!child)
return isl_schedule_tree_free(tree);
anchored = child->anchored;
isl_schedule_tree_free(child);
}
if (anchored == tree->anchored)
return tree;
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
tree->anchored = anchored;
return tree;
}
/* Create a new tree of the given type (isl_schedule_node_sequence or
* isl_schedule_node_set) with the given children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_children(
enum isl_schedule_node_type type,
__isl_take isl_schedule_tree_list *list)
{
isl_ctx *ctx;
isl_schedule_tree *tree;
if (!list)
return NULL;
ctx = isl_schedule_tree_list_get_ctx(list);
tree = isl_schedule_tree_alloc(ctx, type);
if (!tree)
goto error;
tree->children = list;
tree = isl_schedule_tree_update_anchored(tree);
return tree;
error:
isl_schedule_tree_list_free(list);
return NULL;
}
/* Construct a tree with a root node of type "type" and as children
* "tree1" and "tree2".
* If the root of one (or both) of the input trees is itself of type "type",
* then the tree is replaced by its children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_from_pair(
enum isl_schedule_node_type type, __isl_take isl_schedule_tree *tree1,
__isl_take isl_schedule_tree *tree2)
{
isl_ctx *ctx;
isl_schedule_tree_list *list;
if (!tree1 || !tree2)
goto error;
ctx = isl_schedule_tree_get_ctx(tree1);
if (isl_schedule_tree_get_type(tree1) == type) {
list = isl_schedule_tree_list_copy(tree1->children);
isl_schedule_tree_free(tree1);
} else {
list = isl_schedule_tree_list_alloc(ctx, 2);
list = isl_schedule_tree_list_add(list, tree1);
}
if (isl_schedule_tree_get_type(tree2) == type) {
isl_schedule_tree_list *children;
children = isl_schedule_tree_list_copy(tree2->children);
list = isl_schedule_tree_list_concat(list, children);
isl_schedule_tree_free(tree2);
} else {
list = isl_schedule_tree_list_add(list, tree2);
}
return isl_schedule_tree_from_children(type, list);
error:
isl_schedule_tree_free(tree1);
isl_schedule_tree_free(tree2);
return NULL;
}
/* Construct a tree with a sequence root node and as children
* "tree1" and "tree2".
* If the root of one (or both) of the input trees is itself a sequence,
* then the tree is replaced by its children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_sequence_pair(
__isl_take isl_schedule_tree *tree1,
__isl_take isl_schedule_tree *tree2)
{
return isl_schedule_tree_from_pair(isl_schedule_node_sequence,
tree1, tree2);
}
/* Construct a tree with a set root node and as children
* "tree1" and "tree2".
* If the root of one (or both) of the input trees is itself a set,
* then the tree is replaced by its children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_set_pair(
__isl_take isl_schedule_tree *tree1,
__isl_take isl_schedule_tree *tree2)
{
return isl_schedule_tree_from_pair(isl_schedule_node_set, tree1, tree2);
}
/* Return the isl_ctx to which "tree" belongs.
*/
isl_ctx *isl_schedule_tree_get_ctx(__isl_keep isl_schedule_tree *tree)
{
return tree ? tree->ctx : NULL;
}
/* Return the type of the root of the tree or isl_schedule_node_error
* on error.
*/
enum isl_schedule_node_type isl_schedule_tree_get_type(
__isl_keep isl_schedule_tree *tree)
{
return tree ? tree->type : isl_schedule_node_error;
}
/* Are "tree1" and "tree2" obviously equal to each other?
*/
isl_bool isl_schedule_tree_plain_is_equal(__isl_keep isl_schedule_tree *tree1,
__isl_keep isl_schedule_tree *tree2)
{
isl_bool equal;
int i;
isl_size n1, n2;
if (!tree1 || !tree2)
return isl_bool_error;
if (tree1 == tree2)
return isl_bool_true;
if (tree1->type != tree2->type)
return isl_bool_false;
switch (tree1->type) {
case isl_schedule_node_band:
equal = isl_schedule_band_plain_is_equal(tree1->band,
tree2->band);
break;
case isl_schedule_node_context:
equal = isl_set_is_equal(tree1->context, tree2->context);
break;
case isl_schedule_node_domain:
equal = isl_union_set_is_equal(tree1->domain, tree2->domain);
break;
case isl_schedule_node_expansion:
equal = isl_union_map_is_equal(tree1->expansion,
tree2->expansion);
if (equal >= 0 && equal)
equal = isl_union_pw_multi_aff_plain_is_equal(
tree1->contraction, tree2->contraction);
break;
case isl_schedule_node_extension:
equal = isl_union_map_is_equal(tree1->extension,
tree2->extension);
break;
case isl_schedule_node_filter:
equal = isl_union_set_is_equal(tree1->filter, tree2->filter);
break;
case isl_schedule_node_guard:
equal = isl_set_is_equal(tree1->guard, tree2->guard);
break;
case isl_schedule_node_mark:
equal = isl_bool_ok(tree1->mark == tree2->mark);
break;
case isl_schedule_node_leaf:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
equal = isl_bool_true;
break;
case isl_schedule_node_error:
equal = isl_bool_error;
break;
}
if (equal < 0 || !equal)
return equal;
n1 = isl_schedule_tree_n_children(tree1);
n2 = isl_schedule_tree_n_children(tree2);
if (n1 < 0 || n2 < 0)
return isl_bool_error;
if (n1 != n2)
return isl_bool_false;
for (i = 0; i < n1; ++i) {
isl_schedule_tree *child1, *child2;
child1 = isl_schedule_tree_get_child(tree1, i);
child2 = isl_schedule_tree_get_child(tree2, i);
equal = isl_schedule_tree_plain_is_equal(child1, child2);
isl_schedule_tree_free(child1);
isl_schedule_tree_free(child2);
if (equal < 0 || !equal)
return equal;
}
return isl_bool_true;
}
/* Does "tree" have any children, other than an implicit leaf.
*/
int isl_schedule_tree_has_children(__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return -1;
return tree->children != NULL;
}
/* Return the number of children of "tree", excluding implicit leaves.
* The "children" field is NULL if there are
* no children (except for the implicit leaves).
*/
isl_size isl_schedule_tree_n_children(__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return isl_size_error;
if (!tree->children)
return 0;
return isl_schedule_tree_list_n_schedule_tree(tree->children);
}
/* Return a copy of the (explicit) child at position "pos" of "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_get_child(
__isl_keep isl_schedule_tree *tree, int pos)
{
if (!tree)
return NULL;
if (!tree->children)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"schedule tree has no explicit children", return NULL);
return isl_schedule_tree_list_get_schedule_tree(tree->children, pos);
}
/* Return a copy of the (explicit) child at position "pos" of "tree" and
* free "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_child(
__isl_take isl_schedule_tree *tree, int pos)
{
isl_schedule_tree *child;
child = isl_schedule_tree_get_child(tree, pos);
isl_schedule_tree_free(tree);
return child;
}
/* Remove all (explicit) children from "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_reset_children(
__isl_take isl_schedule_tree *tree)
{
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
tree->children = isl_schedule_tree_list_free(tree->children);
return tree;
}
/* Remove the child at position "pos" from the children of "tree".
* If there was only one child to begin with, then remove all children.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_drop_child(
__isl_take isl_schedule_tree *tree, int pos)
{
isl_size n;
tree = isl_schedule_tree_cow(tree);
n = isl_schedule_tree_n_children(tree);
if (n < 0)
return isl_schedule_tree_free(tree);
if (n == 0)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"tree does not have any explicit children",
return isl_schedule_tree_free(tree));
if (pos < 0 || pos >= n)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"position out of bounds",
return isl_schedule_tree_free(tree));
if (n == 1)
return isl_schedule_tree_reset_children(tree);
tree->children = isl_schedule_tree_list_drop(tree->children, pos, 1);
if (!tree->children)
return isl_schedule_tree_free(tree);
return tree;
}
/* Replace the child at position "pos" of "tree" by "child".
*
* If the new child is a leaf, then it is not explicitly
* recorded in the list of children. Instead, the list of children
* (which is assumed to have only one element) is removed.
* Note that the children of set and sequence nodes are always
* filters, so they cannot be replaced by empty trees.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_replace_child(
__isl_take isl_schedule_tree *tree, int pos,
__isl_take isl_schedule_tree *child)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !child)
goto error;
if (isl_schedule_tree_is_leaf(child)) {
isl_size n;
isl_schedule_tree_free(child);
if (!tree->children && pos == 0)
return tree;
n = isl_schedule_tree_n_children(tree);
if (n < 0)
return isl_schedule_tree_free(tree);
if (n != 1)
isl_die(isl_schedule_tree_get_ctx(tree),
isl_error_internal,
"can only replace single child by leaf",
goto error);
return isl_schedule_tree_reset_children(tree);
}
if (!tree->children && pos == 0)
tree->children =
isl_schedule_tree_list_from_schedule_tree(child);
else
tree->children = isl_schedule_tree_list_set_schedule_tree(
tree->children, pos, child);
if (!tree->children)
return isl_schedule_tree_free(tree);
tree = isl_schedule_tree_update_anchored(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_schedule_tree_free(child);
return NULL;
}
/* Replace the (explicit) children of "tree" by "children"?
*/
__isl_give isl_schedule_tree *isl_schedule_tree_set_children(
__isl_take isl_schedule_tree *tree,
__isl_take isl_schedule_tree_list *children)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !children)
goto error;
isl_schedule_tree_list_free(tree->children);
tree->children = children;
return tree;
error:
isl_schedule_tree_free(tree);
isl_schedule_tree_list_free(children);
return NULL;
}
/* Create a new band schedule tree referring to "band"
* with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_band(
__isl_take isl_schedule_tree *tree, __isl_take isl_schedule_band *band)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_band(band);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new context schedule tree with the given context and
* with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_context(
__isl_take isl_schedule_tree *tree, __isl_take isl_set *context)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_context(context);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new domain schedule tree with the given domain and
* with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_domain(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *domain)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_domain(domain);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new expansion schedule tree with the given contraction and
* expansion and with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_expansion(
__isl_take isl_schedule_tree *tree,
__isl_take isl_union_pw_multi_aff *contraction,
__isl_take isl_union_map *expansion)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_expansion(contraction, expansion);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new extension schedule tree with the given extension and
* with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_extension(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_map *extension)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_extension(extension);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new filter schedule tree with the given filter and single child.
*
* If the root of "tree" is itself a filter node, then the two
* filter nodes are merged into one node.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_filter(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *filter)
{
isl_schedule_tree *res;
if (isl_schedule_tree_get_type(tree) == isl_schedule_node_filter) {
isl_union_set *tree_filter;
tree_filter = isl_schedule_tree_filter_get_filter(tree);
tree_filter = isl_union_set_intersect(tree_filter, filter);
tree = isl_schedule_tree_filter_set_filter(tree, tree_filter);
return tree;
}
res = isl_schedule_tree_from_filter(filter);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Insert a filter node with filter set "filter"
* in each of the children of "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_children_insert_filter(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *filter)
{
int i;
isl_size n;
n = isl_schedule_tree_n_children(tree);
if (n < 0 || !filter)
goto error;
for (i = 0; i < n; ++i) {
isl_schedule_tree *child;
child = isl_schedule_tree_get_child(tree, i);
child = isl_schedule_tree_insert_filter(child,
isl_union_set_copy(filter));
tree = isl_schedule_tree_replace_child(tree, i, child);
}
isl_union_set_free(filter);
return tree;
error:
isl_union_set_free(filter);
isl_schedule_tree_free(tree);
return NULL;
}
/* Create a new guard schedule tree with the given guard and
* with "tree" as single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_guard(
__isl_take isl_schedule_tree *tree, __isl_take isl_set *guard)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_guard(guard);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Create a new mark schedule tree with the given mark identifier and
* single child.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_insert_mark(
__isl_take isl_schedule_tree *tree, __isl_take isl_id *mark)
{
isl_schedule_tree *res;
res = isl_schedule_tree_from_mark(mark);
return isl_schedule_tree_replace_child(res, 0, tree);
}
/* Return the number of members in the band tree root.
*/
isl_size isl_schedule_tree_band_n_member(__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return isl_size_error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_size_error);
return isl_schedule_band_n_member(tree->band);
}
/* Is the band member at position "pos" of the band tree root
* marked coincident?
*/
isl_bool isl_schedule_tree_band_member_get_coincident(
__isl_keep isl_schedule_tree *tree, int pos)
{
if (!tree)
return isl_bool_error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_bool_error);
return isl_schedule_band_member_get_coincident(tree->band, pos);
}
/* Mark the given band member as being coincident or not
* according to "coincident".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_member_set_coincident(
__isl_take isl_schedule_tree *tree, int pos, int coincident)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_schedule_tree_free(tree));
if (isl_schedule_tree_band_member_get_coincident(tree, pos) ==
coincident)
return tree;
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
tree->band = isl_schedule_band_member_set_coincident(tree->band, pos,
coincident);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
}
/* Is the band tree root marked permutable?
*/
isl_bool isl_schedule_tree_band_get_permutable(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return isl_bool_error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_bool_error);
return isl_schedule_band_get_permutable(tree->band);
}
/* Mark the band tree root permutable or not according to "permutable"?
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_set_permutable(
__isl_take isl_schedule_tree *tree, int permutable)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_schedule_tree_free(tree));
if (isl_schedule_tree_band_get_permutable(tree) == permutable)
return tree;
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
tree->band = isl_schedule_band_set_permutable(tree->band, permutable);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
}
/* Return the schedule space of the band tree root.
*/
__isl_give isl_space *isl_schedule_tree_band_get_space(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return NULL);
return isl_schedule_band_get_space(tree->band);
}
/* Intersect the domain of the band schedule of the band tree root
* with "domain".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_intersect_domain(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *domain)
{
if (!tree || !domain)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree->band = isl_schedule_band_intersect_domain(tree->band, domain);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_set_free(domain);
return NULL;
}
/* Return the schedule of the band tree root in isolation.
*/
__isl_give isl_multi_union_pw_aff *isl_schedule_tree_band_get_partial_schedule(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return NULL);
return isl_schedule_band_get_partial_schedule(tree->band);
}
/* Replace the schedule of the band tree root by "schedule".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_set_partial_schedule(
__isl_take isl_schedule_tree *tree,
__isl_take isl_multi_union_pw_aff *schedule)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !schedule)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return NULL);
tree->band = isl_schedule_band_set_partial_schedule(tree->band,
schedule);
return tree;
error:
isl_schedule_tree_free(tree);
isl_multi_union_pw_aff_free(schedule);
return NULL;
}
/* Return the loop AST generation type for the band member
* of the band tree root at position "pos".
*/
enum isl_ast_loop_type isl_schedule_tree_band_member_get_ast_loop_type(
__isl_keep isl_schedule_tree *tree, int pos)
{
if (!tree)
return isl_ast_loop_error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_ast_loop_error);
return isl_schedule_band_member_get_ast_loop_type(tree->band, pos);
}
/* Set the loop AST generation type for the band member of the band tree root
* at position "pos" to "type".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_member_set_ast_loop_type(
__isl_take isl_schedule_tree *tree, int pos,
enum isl_ast_loop_type type)
{
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_schedule_tree_free(tree));
tree->band = isl_schedule_band_member_set_ast_loop_type(tree->band,
pos, type);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
}
/* Return the loop AST generation type for the band member
* of the band tree root at position "pos" for the isolated part.
*/
enum isl_ast_loop_type isl_schedule_tree_band_member_get_isolate_ast_loop_type(
__isl_keep isl_schedule_tree *tree, int pos)
{
if (!tree)
return isl_ast_loop_error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_ast_loop_error);
return isl_schedule_band_member_get_isolate_ast_loop_type(tree->band,
pos);
}
/* Set the loop AST generation type for the band member of the band tree root
* at position "pos" for the isolated part to "type".
*/
__isl_give isl_schedule_tree *
isl_schedule_tree_band_member_set_isolate_ast_loop_type(
__isl_take isl_schedule_tree *tree, int pos,
enum isl_ast_loop_type type)
{
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_schedule_tree_free(tree));
tree->band = isl_schedule_band_member_set_isolate_ast_loop_type(
tree->band, pos, type);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
}
/* Return the AST build options associated to the band tree root.
*/
__isl_give isl_union_set *isl_schedule_tree_band_get_ast_build_options(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return NULL);
return isl_schedule_band_get_ast_build_options(tree->band);
}
/* Replace the AST build options associated to band tree root by "options".
* Updated the anchored field if the anchoredness of the root node itself
* changes.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_set_ast_build_options(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *options)
{
int was_anchored;
tree = isl_schedule_tree_cow(tree);
if (!tree || !options)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
was_anchored = isl_schedule_tree_is_anchored(tree);
tree->band = isl_schedule_band_set_ast_build_options(tree->band,
options);
if (!tree->band)
return isl_schedule_tree_free(tree);
if (isl_schedule_tree_is_anchored(tree) != was_anchored)
tree = isl_schedule_tree_update_anchored(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_set_free(options);
return NULL;
}
/* Return the "isolate" option associated to the band tree root of "tree",
* which is assumed to appear at schedule depth "depth".
*/
__isl_give isl_set *isl_schedule_tree_band_get_ast_isolate_option(
__isl_keep isl_schedule_tree *tree, int depth)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return NULL);
return isl_schedule_band_get_ast_isolate_option(tree->band, depth);
}
/* Return the context of the context tree root.
*/
__isl_give isl_set *isl_schedule_tree_context_get_context(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_context)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a context node", return NULL);
return isl_set_copy(tree->context);
}
/* Return the domain of the domain tree root.
*/
__isl_give isl_union_set *isl_schedule_tree_domain_get_domain(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_domain)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a domain node", return NULL);
return isl_union_set_copy(tree->domain);
}
/* Replace the domain of domain tree root "tree" by "domain".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_domain_set_domain(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *domain)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !domain)
goto error;
if (tree->type != isl_schedule_node_domain)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a domain node", goto error);
isl_union_set_free(tree->domain);
tree->domain = domain;
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_set_free(domain);
return NULL;
}
/* Return the contraction of the expansion tree root.
*/
__isl_give isl_union_pw_multi_aff *isl_schedule_tree_expansion_get_contraction(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_expansion)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not an expansion node", return NULL);
return isl_union_pw_multi_aff_copy(tree->contraction);
}
/* Return the expansion of the expansion tree root.
*/
__isl_give isl_union_map *isl_schedule_tree_expansion_get_expansion(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_expansion)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not an expansion node", return NULL);
return isl_union_map_copy(tree->expansion);
}
/* Replace the contraction and the expansion of the expansion tree root "tree"
* by "contraction" and "expansion".
*/
__isl_give isl_schedule_tree *
isl_schedule_tree_expansion_set_contraction_and_expansion(
__isl_take isl_schedule_tree *tree,
__isl_take isl_union_pw_multi_aff *contraction,
__isl_take isl_union_map *expansion)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !contraction || !expansion)
goto error;
if (tree->type != isl_schedule_node_expansion)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not an expansion node", return NULL);
isl_union_pw_multi_aff_free(tree->contraction);
tree->contraction = contraction;
isl_union_map_free(tree->expansion);
tree->expansion = expansion;
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_pw_multi_aff_free(contraction);
isl_union_map_free(expansion);
return NULL;
}
/* Return the extension of the extension tree root.
*/
__isl_give isl_union_map *isl_schedule_tree_extension_get_extension(
__isl_take isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_extension)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not an extension node", return NULL);
return isl_union_map_copy(tree->extension);
}
/* Replace the extension of extension tree root "tree" by "extension".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_extension_set_extension(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_map *extension)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !extension)
goto error;
if (tree->type != isl_schedule_node_extension)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not an extension node", return NULL);
isl_union_map_free(tree->extension);
tree->extension = extension;
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_map_free(extension);
return NULL;
}
/* Return the filter of the filter tree root.
*/
__isl_give isl_union_set *isl_schedule_tree_filter_get_filter(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_filter)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a filter node", return NULL);
return isl_union_set_copy(tree->filter);
}
/* Replace the filter of the filter tree root by "filter".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_filter_set_filter(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *filter)
{
tree = isl_schedule_tree_cow(tree);
if (!tree || !filter)
goto error;
if (tree->type != isl_schedule_node_filter)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a filter node", return NULL);
isl_union_set_free(tree->filter);
tree->filter = filter;
return tree;
error:
isl_schedule_tree_free(tree);
isl_union_set_free(filter);
return NULL;
}
/* Return the guard of the guard tree root.
*/
__isl_give isl_set *isl_schedule_tree_guard_get_guard(
__isl_take isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_guard)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a guard node", return NULL);
return isl_set_copy(tree->guard);
}
/* Return the mark identifier of the mark tree root "tree".
*/
__isl_give isl_id *isl_schedule_tree_mark_get_id(
__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_mark)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a mark node", return NULL);
return isl_id_copy(tree->mark);
}
/* Set dim to the range dimension of "map" and abort the search.
*/
static isl_stat set_range_dim(__isl_take isl_map *map, void *user)
{
isl_size *dim = user;
*dim = isl_map_dim(map, isl_dim_out);
isl_map_free(map);
return isl_stat_error;
}
/* Return the dimension of the range of "umap".
* "umap" is assumed not to be empty and
* all maps inside "umap" are assumed to have the same range.
*
* We extract the range dimension from the first map in "umap".
*/
static isl_size range_dim(__isl_keep isl_union_map *umap)
{
isl_size dim = isl_size_error;
isl_size n;
n = isl_union_map_n_map(umap);
if (n < 0)
return isl_size_error;
if (n == 0)
isl_die(isl_union_map_get_ctx(umap), isl_error_internal,
"unexpected empty input", return isl_size_error);
isl_union_map_foreach_map(umap, &set_range_dim, &dim);
return dim;
}
/* Append an "extra" number of zeros to the range of "umap" and
* return the result.
*/
static __isl_give isl_union_map *append_range(__isl_take isl_union_map *umap,
int extra)
{
isl_union_set *dom;
isl_space *space;
isl_multi_val *mv;
isl_union_pw_multi_aff *suffix;
isl_union_map *universe;
isl_union_map *suffix_umap;
universe = isl_union_map_universe(isl_union_map_copy(umap));
dom = isl_union_map_domain(universe);
space = isl_union_set_get_space(dom);
space = isl_space_set_from_params(space);
space = isl_space_add_dims(space, isl_dim_set, extra);
mv = isl_multi_val_zero(space);
suffix = isl_union_pw_multi_aff_multi_val_on_domain(dom, mv);
suffix_umap = isl_union_map_from_union_pw_multi_aff(suffix);
umap = isl_union_map_flat_range_product(umap, suffix_umap);
return umap;
}
/* Should we skip the root of "tree" while looking for the first
* descendant with schedule information?
* That is, is it impossible to derive any information about
* the iteration domain from this node?
*
* We do not want to skip leaf or error nodes because there is
* no point in looking any deeper from these nodes.
* We can only extract partial iteration domain information
* from an extension node, but extension nodes are not supported
* by the caller and it will error out on them.
*/
static isl_bool domain_less(__isl_keep isl_schedule_tree *tree)
{
enum isl_schedule_node_type type;
isl_size n;
type = isl_schedule_tree_get_type(tree);
switch (type) {
case isl_schedule_node_band:
n = isl_schedule_tree_band_n_member(tree);
return n < 0 ? isl_bool_error : isl_bool_ok(n == 0);
case isl_schedule_node_context:
case isl_schedule_node_guard:
case isl_schedule_node_mark:
return isl_bool_true;
case isl_schedule_node_leaf:
case isl_schedule_node_error:
case isl_schedule_node_domain:
case isl_schedule_node_expansion:
case isl_schedule_node_extension:
case isl_schedule_node_filter:
case isl_schedule_node_set:
case isl_schedule_node_sequence:
return isl_bool_false;
}
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"unhandled case", return isl_bool_error);
}
/* Move down to the first descendant of "tree" that contains any schedule
* information or return "leaf" if there is no such descendant.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_first_schedule_descendant(
__isl_take isl_schedule_tree *tree, __isl_keep isl_schedule_tree *leaf)
{
isl_bool down;
while ((down = domain_less(tree)) == isl_bool_true) {
if (!isl_schedule_tree_has_children(tree)) {
isl_schedule_tree_free(tree);
return isl_schedule_tree_copy(leaf);
}
tree = isl_schedule_tree_child(tree, 0);
}
if (down < 0)
return isl_schedule_tree_free(tree);
return tree;
}
static __isl_give isl_union_map *subtree_schedule_extend(
__isl_keep isl_schedule_tree *tree, __isl_take isl_union_map *outer);
/* Extend the schedule map "outer" with the subtree schedule
* of the (single) child of "tree", if any.
*
* If "tree" does not have any descendants (apart from those that
* do not carry any schedule information), then we simply return "outer".
* Otherwise, we extend the schedule map "outer" with the subtree schedule
* of the single child.
*/
static __isl_give isl_union_map *subtree_schedule_extend_child(
__isl_keep isl_schedule_tree *tree, __isl_take isl_union_map *outer)
{
isl_schedule_tree *child;
isl_union_map *res;
if (!tree)
return isl_union_map_free(outer);
if (!isl_schedule_tree_has_children(tree))
return outer;
child = isl_schedule_tree_get_child(tree, 0);
if (!child)
return isl_union_map_free(outer);
res = subtree_schedule_extend(child, outer);
isl_schedule_tree_free(child);
return res;
}
/* Extract the parameter space from one of the children of "tree",
* which are assumed to be filters.
*/
static __isl_give isl_space *extract_space_from_filter_child(
__isl_keep isl_schedule_tree *tree)
{
isl_space *space;
isl_union_set *dom;
isl_schedule_tree *child;
child = isl_schedule_tree_list_get_schedule_tree(tree->children, 0);
dom = isl_schedule_tree_filter_get_filter(child);
space = isl_union_set_get_space(dom);
isl_union_set_free(dom);
isl_schedule_tree_free(child);
return space;
}
/* Extend the schedule map "outer" with the subtree schedule
* of a set or sequence node.
*
* The schedule for the set or sequence node itself is composed of
* pieces of the form
*
* filter -> []
*
* or
*
* filter -> [index]
*
* The first form is used if there is only a single child or
* if the current node is a set node and the schedule_separate_components
* option is not set.
*
* Each of the pieces above is extended with the subtree schedule of
* the child of the corresponding filter, if any, padded with zeros
* to ensure that all pieces have the same range dimension.
*/
static __isl_give isl_union_map *subtree_schedule_extend_from_children(
__isl_keep isl_schedule_tree *tree, __isl_take isl_union_map *outer)
{
int i;
isl_size n;
isl_size dim;
int separate;
isl_ctx *ctx;
isl_val *v = NULL;
isl_multi_val *mv;
isl_space *space;
isl_union_map *umap;
n = isl_schedule_tree_n_children(tree);
if (n < 0)
return isl_union_map_free(outer);
if (n == 0)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"missing children", return isl_union_map_free(outer));
ctx = isl_schedule_tree_get_ctx(tree);
separate = n > 1 && (tree->type == isl_schedule_node_sequence ||
isl_options_get_schedule_separate_components(ctx));
space = isl_space_params_alloc(ctx, 0);
umap = isl_union_map_empty(isl_space_copy(space));
space = isl_space_set_from_params(space);
if (separate) {
space = isl_space_add_dims(space, isl_dim_set, 1);
v = isl_val_zero(ctx);
}
mv = isl_multi_val_zero(space);
dim = isl_multi_val_dim(mv, isl_dim_set);
if (dim < 0)
umap = isl_union_map_free(umap);
for (i = 0; i < n; ++i) {
isl_multi_val *mv_copy;
isl_union_pw_multi_aff *upma;
isl_union_map *umap_i;
isl_union_set *dom;
isl_schedule_tree *child;
isl_size dim_i;
isl_bool empty;
child = isl_schedule_tree_list_get_schedule_tree(
tree->children, i);
dom = isl_schedule_tree_filter_get_filter(child);
if (separate) {
mv = isl_multi_val_set_val(mv, 0, isl_val_copy(v));
v = isl_val_add_ui(v, 1);
}
mv_copy = isl_multi_val_copy(mv);
space = isl_union_set_get_space(dom);
mv_copy = isl_multi_val_align_params(mv_copy, space);
upma = isl_union_pw_multi_aff_multi_val_on_domain(dom, mv_copy);
umap_i = isl_union_map_from_union_pw_multi_aff(upma);
umap_i = isl_union_map_flat_range_product(
isl_union_map_copy(outer), umap_i);
umap_i = subtree_schedule_extend_child(child, umap_i);
isl_schedule_tree_free(child);
empty = isl_union_map_is_empty(umap_i);
if (empty < 0)
umap_i = isl_union_map_free(umap_i);
else if (empty) {
isl_union_map_free(umap_i);
continue;
}
dim_i = range_dim(umap_i);
if (dim_i < 0) {
umap = isl_union_map_free(umap);
} else if (dim < dim_i) {
umap = append_range(umap, dim_i - dim);
dim = dim_i;
} else if (dim_i < dim) {
umap_i = append_range(umap_i, dim - dim_i);
}
umap = isl_union_map_union(umap, umap_i);
}
isl_val_free(v);
isl_multi_val_free(mv);
isl_union_map_free(outer);
return umap;
}
/* Extend the schedule map "outer" with the subtree schedule of "tree".
*
* If the root of the tree is a set or a sequence, then we extend
* the schedule map in subtree_schedule_extend_from_children.
* Otherwise, we extend the schedule map with the partial schedule
* corresponding to the root of the tree and then continue with
* the single child of this root.
* In the special case of an expansion, the schedule map is "extended"
* by applying the expansion to the domain of the schedule map.
*/
static __isl_give isl_union_map *subtree_schedule_extend(
__isl_keep isl_schedule_tree *tree, __isl_take isl_union_map *outer)
{
isl_multi_union_pw_aff *mupa;
isl_union_map *umap;
isl_union_set *domain;
isl_size n;
if (!tree)
return NULL;
switch (tree->type) {
case isl_schedule_node_error:
return isl_union_map_free(outer);
case isl_schedule_node_extension:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"cannot construct subtree schedule of tree "
"with extension nodes",
return isl_union_map_free(outer));
case isl_schedule_node_context:
case isl_schedule_node_guard:
case isl_schedule_node_mark:
return subtree_schedule_extend_child(tree, outer);
case isl_schedule_node_band:
n = isl_schedule_tree_band_n_member(tree);
if (n < 0)
return isl_union_map_free(outer);
if (n == 0)
return subtree_schedule_extend_child(tree, outer);
mupa = isl_schedule_band_get_partial_schedule(tree->band);
umap = isl_union_map_from_multi_union_pw_aff(mupa);
outer = isl_union_map_flat_range_product(outer, umap);
umap = subtree_schedule_extend_child(tree, outer);
break;
case isl_schedule_node_domain:
domain = isl_schedule_tree_domain_get_domain(tree);
umap = isl_union_map_from_domain(domain);
outer = isl_union_map_flat_range_product(outer, umap);
umap = subtree_schedule_extend_child(tree, outer);
break;
case isl_schedule_node_expansion:
umap = isl_schedule_tree_expansion_get_expansion(tree);
outer = isl_union_map_apply_domain(outer, umap);
umap = subtree_schedule_extend_child(tree, outer);
break;
case isl_schedule_node_filter:
domain = isl_schedule_tree_filter_get_filter(tree);
umap = isl_union_map_from_domain(domain);
outer = isl_union_map_flat_range_product(outer, umap);
umap = subtree_schedule_extend_child(tree, outer);
break;
case isl_schedule_node_leaf:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"leaf node should be handled by caller", return NULL);
case isl_schedule_node_set:
case isl_schedule_node_sequence:
umap = subtree_schedule_extend_from_children(tree, outer);
break;
}
return umap;
}
static __isl_give isl_union_set *initial_domain(
__isl_keep isl_schedule_tree *tree);
/* Extract a universe domain from the children of the tree root "tree",
* which is a set or sequence, meaning that its children are filters.
* In particular, return the union of the universes of the filters.
*/
static __isl_give isl_union_set *initial_domain_from_children(
__isl_keep isl_schedule_tree *tree)
{
int i;
isl_size n;
isl_space *space;
isl_union_set *domain;
n = isl_schedule_tree_n_children(tree);
if (n < 0)
return NULL;
if (n == 0)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"missing children", return NULL);
space = extract_space_from_filter_child(tree);
domain = isl_union_set_empty(space);
for (i = 0; i < n; ++i) {
isl_schedule_tree *child;
isl_union_set *domain_i;
child = isl_schedule_tree_get_child(tree, i);
domain_i = initial_domain(child);
domain = isl_union_set_union(domain, domain_i);
isl_schedule_tree_free(child);
}
return domain;
}
/* Extract a universe domain from the tree root "tree".
* The caller is responsible for making sure that this node
* would not be skipped by isl_schedule_tree_first_schedule_descendant
* and that it is not a leaf node.
*/
static __isl_give isl_union_set *initial_domain(
__isl_keep isl_schedule_tree *tree)
{
isl_multi_union_pw_aff *mupa;
isl_union_set *domain;
isl_union_map *exp;
isl_size n;
if (!tree)
return NULL;
switch (tree->type) {
case isl_schedule_node_error:
return NULL;
case isl_schedule_node_context:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"context node should be handled by caller",
return NULL);
case isl_schedule_node_guard:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"guard node should be handled by caller",
return NULL);
case isl_schedule_node_mark:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"mark node should be handled by caller",
return NULL);
case isl_schedule_node_extension:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"cannot construct subtree schedule of tree "
"with extension nodes", return NULL);
case isl_schedule_node_band:
n = isl_schedule_tree_band_n_member(tree);
if (n < 0)
return NULL;
if (n == 0)
isl_die(isl_schedule_tree_get_ctx(tree),
isl_error_internal,
"0D band should be handled by caller",
return NULL);
mupa = isl_schedule_band_get_partial_schedule(tree->band);
domain = isl_multi_union_pw_aff_domain(mupa);
domain = isl_union_set_universe(domain);
break;
case isl_schedule_node_domain:
domain = isl_schedule_tree_domain_get_domain(tree);
domain = isl_union_set_universe(domain);
break;
case isl_schedule_node_expansion:
exp = isl_schedule_tree_expansion_get_expansion(tree);
exp = isl_union_map_universe(exp);
domain = isl_union_map_domain(exp);
break;
case isl_schedule_node_filter:
domain = isl_schedule_tree_filter_get_filter(tree);
domain = isl_union_set_universe(domain);
break;
case isl_schedule_node_leaf:
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"leaf node should be handled by caller", return NULL);
case isl_schedule_node_set:
case isl_schedule_node_sequence:
domain = initial_domain_from_children(tree);
break;
}
return domain;
}
/* Return the subtree schedule of a node that contains some schedule
* information, i.e., a node that would not be skipped by
* isl_schedule_tree_first_schedule_descendant and that is not a leaf.
*
* If the tree contains any expansions, then the returned subtree
* schedule is formulated in terms of the expanded domains.
* The tree is not allowed to contain any extension nodes.
*
* We start with an initial zero-dimensional subtree schedule based
* on the domain information in the root node and then extend it
* based on the schedule information in the root node and its descendants.
*/
__isl_give isl_union_map *isl_schedule_tree_get_subtree_schedule_union_map(
__isl_keep isl_schedule_tree *tree)
{
isl_union_set *domain;
isl_union_map *umap;
domain = initial_domain(tree);
umap = isl_union_map_from_domain(domain);
return subtree_schedule_extend(tree, umap);
}
/* Multiply the partial schedule of the band root node of "tree"
* with the factors in "mv".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_scale(
__isl_take isl_schedule_tree *tree, __isl_take isl_multi_val *mv)
{
if (!tree || !mv)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
tree->band = isl_schedule_band_scale(tree->band, mv);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_multi_val_free(mv);
return NULL;
}
/* Divide the partial schedule of the band root node of "tree"
* by the factors in "mv".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_scale_down(
__isl_take isl_schedule_tree *tree, __isl_take isl_multi_val *mv)
{
if (!tree || !mv)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
tree->band = isl_schedule_band_scale_down(tree->band, mv);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_multi_val_free(mv);
return NULL;
}
/* Reduce the partial schedule of the band root node of "tree"
* modulo the factors in "mv".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_mod(
__isl_take isl_schedule_tree *tree, __isl_take isl_multi_val *mv)
{
if (!tree || !mv)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
tree->band = isl_schedule_band_mod(tree->band, mv);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_multi_val_free(mv);
return NULL;
}
/* Shift the partial schedule of the band root node of "tree" by "shift".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_shift(
__isl_take isl_schedule_tree *tree,
__isl_take isl_multi_union_pw_aff *shift)
{
if (!tree || !shift)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
tree->band = isl_schedule_band_shift(tree->band, shift);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_schedule_tree_free(tree);
isl_multi_union_pw_aff_free(shift);
return NULL;
}
/* Given two trees with sequence roots, replace the child at position
* "pos" of "tree" with the children of "child".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_sequence_splice(
__isl_take isl_schedule_tree *tree, int pos,
__isl_take isl_schedule_tree *child)
{
isl_size n;
isl_schedule_tree_list *list1, *list2;
tree = isl_schedule_tree_cow(tree);
if (!tree || !child)
goto error;
if (isl_schedule_tree_get_type(tree) != isl_schedule_node_sequence)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a sequence node", goto error);
n = isl_schedule_tree_n_children(tree);
if (n < 0)
goto error;
if (pos < 0 || pos >= n)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"position out of bounds", goto error);
if (isl_schedule_tree_get_type(child) != isl_schedule_node_sequence)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a sequence node", goto error);
list1 = isl_schedule_tree_list_copy(tree->children);
list1 = isl_schedule_tree_list_drop(list1, pos, n - pos);
list2 = isl_schedule_tree_list_copy(tree->children);
list2 = isl_schedule_tree_list_drop(list2, 0, pos + 1);
list1 = isl_schedule_tree_list_concat(list1,
isl_schedule_tree_list_copy(child->children));
list1 = isl_schedule_tree_list_concat(list1, list2);
isl_schedule_tree_free(tree);
isl_schedule_tree_free(child);
return isl_schedule_tree_from_children(isl_schedule_node_sequence,
list1);
error:
isl_schedule_tree_free(tree);
isl_schedule_tree_free(child);
return NULL;
}
/* Tile the band root node of "tree" with tile sizes "sizes".
*
* We duplicate the band node, change the schedule of one of them
* to the tile schedule and the other to the point schedule and then
* attach the point band as a child to the tile band.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_tile(
__isl_take isl_schedule_tree *tree, __isl_take isl_multi_val *sizes)
{
isl_schedule_tree *child = NULL;
if (!tree || !sizes)
goto error;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
child = isl_schedule_tree_copy(tree);
tree = isl_schedule_tree_cow(tree);
child = isl_schedule_tree_cow(child);
if (!tree || !child)
goto error;
tree->band = isl_schedule_band_tile(tree->band,
isl_multi_val_copy(sizes));
if (!tree->band)
goto error;
child->band = isl_schedule_band_point(child->band, tree->band, sizes);
if (!child->band)
child = isl_schedule_tree_free(child);
tree = isl_schedule_tree_replace_child(tree, 0, child);
return tree;
error:
isl_schedule_tree_free(child);
isl_schedule_tree_free(tree);
isl_multi_val_free(sizes);
return NULL;
}
/* Given an isolate AST generation option "isolate" for a band of size pos + n,
* return the corresponding option for a band covering the first "pos"
* members.
*
* The input isolate option is of the form
*
* isolate[[flattened outer bands] -> [pos; n]]
*
* The output isolate option is of the form
*
* isolate[[flattened outer bands] -> [pos]]
*/
static __isl_give isl_set *isolate_initial(__isl_keep isl_set *isolate,
int pos, int n)
{
isl_id *id;
isl_map *map;
isolate = isl_set_copy(isolate);
id = isl_set_get_tuple_id(isolate);
map = isl_set_unwrap(isolate);
map = isl_map_project_out(map, isl_dim_out, pos, n);
isolate = isl_map_wrap(map);
isolate = isl_set_set_tuple_id(isolate, id);
return isolate;
}
/* Given an isolate AST generation option "isolate" for a band of size pos + n,
* return the corresponding option for a band covering the final "n"
* members within a band covering the first "pos" members.
*
* The input isolate option is of the form
*
* isolate[[flattened outer bands] -> [pos; n]]
*
* The output isolate option is of the form
*
* isolate[[flattened outer bands; pos] -> [n]]
*
*
* The range is first split into
*
* isolate[[flattened outer bands] -> [[pos] -> [n]]]
*
* and then the first pos members are moved to the domain
*
* isolate[[[flattened outer bands] -> [pos]] -> [n]]
*
* after which the domain is flattened to obtain the desired output.
*/
static __isl_give isl_set *isolate_final(__isl_keep isl_set *isolate,
int pos, int n)
{
isl_id *id;
isl_space *space;
isl_multi_aff *ma1, *ma2;
isl_map *map;
isolate = isl_set_copy(isolate);
id = isl_set_get_tuple_id(isolate);
map = isl_set_unwrap(isolate);
space = isl_space_range(isl_map_get_space(map));
ma1 = isl_multi_aff_project_out_map(isl_space_copy(space),
isl_dim_set, pos, n);
ma2 = isl_multi_aff_project_out_map(space, isl_dim_set, 0, pos);
ma1 = isl_multi_aff_range_product(ma1, ma2);
map = isl_map_apply_range(map, isl_map_from_multi_aff(ma1));
map = isl_map_uncurry(map);
map = isl_map_flatten_domain(map);
isolate = isl_map_wrap(map);
isolate = isl_set_set_tuple_id(isolate, id);
return isolate;
}
/* Split the band root node of "tree" into two nested band nodes,
* one with the first "pos" dimensions and
* one with the remaining dimensions.
* The tree is itself positioned at schedule depth "depth".
*
* The loop AST generation type options and the isolate option
* are split over the two band nodes.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_split(
__isl_take isl_schedule_tree *tree, int pos, int depth)
{
isl_size n;
isl_set *isolate, *tree_isolate, *child_isolate;
isl_schedule_tree *child;
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", return isl_schedule_tree_free(tree));
n = isl_schedule_tree_band_n_member(tree);
if (n < 0)
return isl_schedule_tree_free(tree);
if (pos < 0 || pos > n)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"position out of bounds",
return isl_schedule_tree_free(tree));
child = isl_schedule_tree_copy(tree);
tree = isl_schedule_tree_cow(tree);
child = isl_schedule_tree_cow(child);
if (!tree || !child)
goto error;
isolate = isl_schedule_tree_band_get_ast_isolate_option(tree, depth);
tree_isolate = isolate_initial(isolate, pos, n - pos);
child_isolate = isolate_final(isolate, pos, n - pos);
child->band = isl_schedule_band_drop(child->band, 0, pos);
child->band = isl_schedule_band_replace_ast_build_option(child->band,
isl_set_copy(isolate), child_isolate);
tree->band = isl_schedule_band_drop(tree->band, pos, n - pos);
tree->band = isl_schedule_band_replace_ast_build_option(tree->band,
isl_set_copy(isolate), tree_isolate);
isl_set_free(isolate);
if (!child->band || !tree->band)
goto error;
tree = isl_schedule_tree_replace_child(tree, 0, child);
return tree;
error:
isl_schedule_tree_free(child);
isl_schedule_tree_free(tree);
return NULL;
}
/* Attach "tree2" at each of the leaves of "tree1".
*
* If "tree1" does not have any explicit children, then make "tree2"
* its single child. Otherwise, attach "tree2" to the leaves of
* each of the children of "tree1".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_append_to_leaves(
__isl_take isl_schedule_tree *tree1,
__isl_take isl_schedule_tree *tree2)
{
int i;
isl_size n;
n = isl_schedule_tree_n_children(tree1);
if (n < 0 || !tree2)
goto error;
if (n == 0) {
isl_schedule_tree_list *list;
list = isl_schedule_tree_list_from_schedule_tree(tree2);
tree1 = isl_schedule_tree_set_children(tree1, list);
return tree1;
}
for (i = 0; i < n; ++i) {
isl_schedule_tree *child;
child = isl_schedule_tree_get_child(tree1, i);
child = isl_schedule_tree_append_to_leaves(child,
isl_schedule_tree_copy(tree2));
tree1 = isl_schedule_tree_replace_child(tree1, i, child);
}
isl_schedule_tree_free(tree2);
return tree1;
error:
isl_schedule_tree_free(tree1);
isl_schedule_tree_free(tree2);
return NULL;
}
/* Reset the user pointer on all identifiers of parameters and tuples
* in the root of "tree".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_reset_user(
__isl_take isl_schedule_tree *tree)
{
if (isl_schedule_tree_is_leaf(tree))
return tree;
tree = isl_schedule_tree_cow(tree);
if (!tree)
return NULL;
switch (tree->type) {
case isl_schedule_node_error:
return isl_schedule_tree_free(tree);
case isl_schedule_node_band:
tree->band = isl_schedule_band_reset_user(tree->band);
if (!tree->band)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_context:
tree->context = isl_set_reset_user(tree->context);
if (!tree->context)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_domain:
tree->domain = isl_union_set_reset_user(tree->domain);
if (!tree->domain)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_expansion:
tree->contraction =
isl_union_pw_multi_aff_reset_user(tree->contraction);
tree->expansion = isl_union_map_reset_user(tree->expansion);
if (!tree->contraction || !tree->expansion)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_extension:
tree->extension = isl_union_map_reset_user(tree->extension);
if (!tree->extension)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_filter:
tree->filter = isl_union_set_reset_user(tree->filter);
if (!tree->filter)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_guard:
tree->guard = isl_set_reset_user(tree->guard);
if (!tree->guard)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_leaf:
case isl_schedule_node_mark:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
break;
}
return tree;
}
/* Align the parameters of the root of "tree" to those of "space".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_align_params(
__isl_take isl_schedule_tree *tree, __isl_take isl_space *space)
{
if (!space)
goto error;
if (isl_schedule_tree_is_leaf(tree)) {
isl_space_free(space);
return tree;
}
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
switch (tree->type) {
case isl_schedule_node_error:
goto error;
case isl_schedule_node_band:
tree->band = isl_schedule_band_align_params(tree->band, space);
if (!tree->band)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_context:
tree->context = isl_set_align_params(tree->context, space);
if (!tree->context)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_domain:
tree->domain = isl_union_set_align_params(tree->domain, space);
if (!tree->domain)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_expansion:
tree->contraction =
isl_union_pw_multi_aff_align_params(tree->contraction,
isl_space_copy(space));
tree->expansion = isl_union_map_align_params(tree->expansion,
space);
if (!tree->contraction || !tree->expansion)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_extension:
tree->extension = isl_union_map_align_params(tree->extension,
space);
if (!tree->extension)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_filter:
tree->filter = isl_union_set_align_params(tree->filter, space);
if (!tree->filter)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_guard:
tree->guard = isl_set_align_params(tree->guard, space);
if (!tree->guard)
return isl_schedule_tree_free(tree);
break;
case isl_schedule_node_leaf:
case isl_schedule_node_mark:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
isl_space_free(space);
break;
}
return tree;
error:
isl_space_free(space);
isl_schedule_tree_free(tree);
return NULL;
}
/* Does "tree" involve the iteration domain?
* That is, does it need to be modified
* by isl_schedule_tree_pullback_union_pw_multi_aff?
*/
static int involves_iteration_domain(__isl_keep isl_schedule_tree *tree)
{
if (!tree)
return -1;
switch (tree->type) {
case isl_schedule_node_error:
return -1;
case isl_schedule_node_band:
case isl_schedule_node_domain:
case isl_schedule_node_expansion:
case isl_schedule_node_extension:
case isl_schedule_node_filter:
return 1;
case isl_schedule_node_context:
case isl_schedule_node_leaf:
case isl_schedule_node_guard:
case isl_schedule_node_mark:
case isl_schedule_node_sequence:
case isl_schedule_node_set:
return 0;
}
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_internal,
"unhandled case", return -1);
}
/* Compute the pullback of the root node of "tree" by the function
* represented by "upma".
* In other words, plug in "upma" in the iteration domains of
* the root node of "tree".
* We currently do not handle expansion nodes.
*
* We first check if the root node involves any iteration domains.
* If so, we handle the specific cases.
*/
__isl_give isl_schedule_tree *isl_schedule_tree_pullback_union_pw_multi_aff(
__isl_take isl_schedule_tree *tree,
__isl_take isl_union_pw_multi_aff *upma)
{
int involves;
if (!tree || !upma)
goto error;
involves = involves_iteration_domain(tree);
if (involves < 0)
goto error;
if (!involves) {
isl_union_pw_multi_aff_free(upma);
return tree;
}
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
if (tree->type == isl_schedule_node_band) {
tree->band = isl_schedule_band_pullback_union_pw_multi_aff(
tree->band, upma);
if (!tree->band)
return isl_schedule_tree_free(tree);
} else if (tree->type == isl_schedule_node_domain) {
tree->domain =
isl_union_set_preimage_union_pw_multi_aff(tree->domain,
upma);
if (!tree->domain)
return isl_schedule_tree_free(tree);
} else if (tree->type == isl_schedule_node_expansion) {
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_unsupported,
"cannot pullback expansion node", goto error);
} else if (tree->type == isl_schedule_node_extension) {
tree->extension =
isl_union_map_preimage_range_union_pw_multi_aff(
tree->extension, upma);
if (!tree->extension)
return isl_schedule_tree_free(tree);
} else if (tree->type == isl_schedule_node_filter) {
tree->filter =
isl_union_set_preimage_union_pw_multi_aff(tree->filter,
upma);
if (!tree->filter)
return isl_schedule_tree_free(tree);
}
return tree;
error:
isl_union_pw_multi_aff_free(upma);
isl_schedule_tree_free(tree);
return NULL;
}
/* Compute the gist of the band tree root with respect to "context".
*/
__isl_give isl_schedule_tree *isl_schedule_tree_band_gist(
__isl_take isl_schedule_tree *tree, __isl_take isl_union_set *context)
{
if (!tree)
return NULL;
if (tree->type != isl_schedule_node_band)
isl_die(isl_schedule_tree_get_ctx(tree), isl_error_invalid,
"not a band node", goto error);
tree = isl_schedule_tree_cow(tree);
if (!tree)
goto error;
tree->band = isl_schedule_band_gist(tree->band, context);
if (!tree->band)
return isl_schedule_tree_free(tree);
return tree;
error:
isl_union_set_free(context);
isl_schedule_tree_free(tree);
return NULL;
}
/* Are any members in "band" marked coincident?
*/
static isl_bool any_coincident(__isl_keep isl_schedule_band *band)
{
int i;
isl_size n;
n = isl_schedule_band_n_member(band);
if (n < 0)
return isl_bool_error;
for (i = 0; i < n; ++i) {
isl_bool coincident;
coincident = isl_schedule_band_member_get_coincident(band, i);
if (coincident < 0 || coincident)
return coincident;
}
return isl_bool_false;
}
/* Print the band node "band" to "p".
*
* The permutable and coincident properties are only printed if they
* are different from the defaults.
* The coincident property is always printed in YAML flow style.
*/
static __isl_give isl_printer *print_tree_band(__isl_take isl_printer *p,
__isl_keep isl_schedule_band *band)
{
isl_union_set *options;
isl_bool empty;
isl_bool coincident;
p = isl_printer_print_str(p, "schedule");
p = isl_printer_yaml_next(p);
p = isl_printer_print_str(p, "\"");
p = isl_printer_print_multi_union_pw_aff(p, band->mupa);
p = isl_printer_print_str(p, "\"");
if (isl_schedule_band_get_permutable(band)) {
p = isl_printer_yaml_next(p);
p = isl_printer_print_str(p, "permutable");
p = isl_printer_yaml_next(p);
p = isl_printer_print_int(p, 1);
}
coincident = any_coincident(band);
if (coincident < 0)
return isl_printer_free(p);
if (coincident) {
int i;
isl_size n;
int style;
p = isl_printer_yaml_next(p);
p = isl_printer_print_str(p, "coincident");
p = isl_printer_yaml_next(p);
style = isl_printer_get_yaml_style(p);
p = isl_printer_set_yaml_style(p, ISL_YAML_STYLE_FLOW);
p = isl_printer_yaml_start_sequence(p);
n = isl_schedule_band_n_member(band);
if (n < 0)
return isl_printer_free(p);
for (i = 0; i < n; ++i) {
p = isl_printer_print_int(p,
isl_schedule_band_member_get_coincident(band, i));
p = isl_printer_yaml_next(p);
}
p = isl_printer_yaml_end_sequence(p);
p = isl_printer_set_yaml_style(p, style);
}
options = isl_schedule_band_get_ast_build_options(band);
empty = isl_union_set_is_empty(options);
if (empty < 0)
p = isl_printer_free(p);
if (!empty) {
p = isl_printer_yaml_next(p);
p = isl_printer_print_str(p, "options");
p = isl_printer_yaml_next(p);
p = isl_printer_print_str(p, "\"");
p = isl_printer_print_union_set(p, options);
p = isl_printer_print_str(p, "\"");
}
isl_union_set_free(options);
return p;
}
#undef BASE
#define BASE str
#define isl_str const char
#include "print_yaml_field_templ.c"
#undef BASE
#define BASE set
#include "print_yaml_field_templ.c"
#undef BASE
#define BASE union_set
#include "print_yaml_field_templ.c"
#undef BASE
#define BASE union_map
#include "print_yaml_field_templ.c"
#undef BASE
#define BASE union_pw_multi_aff
#include "print_yaml_field_templ.c"
/* Print "tree" to "p".
*
* If "n_ancestor" is non-negative, then "child_pos" contains the child
* positions of a descendant of the current node that should be marked
* (by the comment "YOU ARE HERE"). In particular, if "n_ancestor"
* is zero, then the current node should be marked.
* The marking is only printed in YAML block format.
*
* Implicit leaf nodes are not printed, except if they correspond
* to the node that should be marked.
*/
__isl_give isl_printer *isl_printer_print_schedule_tree_mark(
__isl_take isl_printer *p, __isl_keep isl_schedule_tree *tree,
int n_ancestor, int *child_pos)
{
int i;
isl_size n;
int sequence = 0;
int block;
block = isl_printer_get_yaml_style(p) == ISL_YAML_STYLE_BLOCK;
p = isl_printer_yaml_start_mapping(p);
if (n_ancestor == 0 && block) {
p = isl_printer_print_str(p, "# YOU ARE HERE");
p = isl_printer_end_line(p);
p = isl_printer_start_line(p);
}
switch (tree->type) {
case isl_schedule_node_error:
p = isl_printer_print_str(p, "ERROR");
p = isl_printer_yaml_next(p);
break;
case isl_schedule_node_leaf:
p = isl_printer_print_str(p, "leaf");
p = isl_printer_yaml_next(p);
break;
case isl_schedule_node_sequence:
p = isl_printer_print_str(p, "sequence");
p = isl_printer_yaml_next(p);
sequence = 1;
break;
case isl_schedule_node_set:
p = isl_printer_print_str(p, "set");
p = isl_printer_yaml_next(p);
sequence = 1;
break;
case isl_schedule_node_context:
p = print_yaml_field_set(p, "context", tree->context);
break;
case isl_schedule_node_domain:
p = print_yaml_field_union_set(p, "domain", tree->domain);
break;
case isl_schedule_node_expansion:
p = print_yaml_field_union_pw_multi_aff(p, "contraction",
tree->contraction);
p = print_yaml_field_union_map(p, "expansion", tree->expansion);
break;
case isl_schedule_node_extension:
p = print_yaml_field_union_map(p, "extension", tree->extension);
break;
case isl_schedule_node_filter:
p = print_yaml_field_union_set(p, "filter", tree->filter);
break;
case isl_schedule_node_guard:
p = print_yaml_field_set(p, "guard", tree->guard);
break;
case isl_schedule_node_mark:
p = print_yaml_field_str(p, "mark",
isl_id_get_name(tree->mark));
break;
case isl_schedule_node_band:
p = print_tree_band(p, tree->band);
p = isl_printer_yaml_next(p);
break;
}
n = isl_schedule_tree_n_children(tree);
if (n < 0)
return isl_printer_free(p);
if (n == 0) {
if (n_ancestor > 0 && block) {
isl_schedule_tree *leaf;
p = isl_printer_print_str(p, "child");
p = isl_printer_yaml_next(p);
leaf = isl_schedule_tree_leaf(isl_printer_get_ctx(p));
p = isl_printer_print_schedule_tree_mark(p,
leaf, 0, NULL);
isl_schedule_tree_free(leaf);
p = isl_printer_yaml_next(p);
}
return isl_printer_yaml_end_mapping(p);
}
if (sequence) {
p = isl_printer_yaml_start_sequence(p);
} else {
p = isl_printer_print_str(p, "child");
p = isl_printer_yaml_next(p);
}
for (i = 0; i < n; ++i) {
isl_schedule_tree *t;
t = isl_schedule_tree_get_child(tree, i);
if (n_ancestor > 0 && child_pos[0] == i)
p = isl_printer_print_schedule_tree_mark(p, t,
n_ancestor - 1, child_pos + 1);
else
p = isl_printer_print_schedule_tree_mark(p, t,
-1, NULL);
isl_schedule_tree_free(t);
p = isl_printer_yaml_next(p);
}
if (sequence)
p = isl_printer_yaml_end_sequence(p);
p = isl_printer_yaml_end_mapping(p);
return p;
}
/* Print "tree" to "p".
*/
__isl_give isl_printer *isl_printer_print_schedule_tree(
__isl_take isl_printer *p, __isl_keep isl_schedule_tree *tree)
{
return isl_printer_print_schedule_tree_mark(p, tree, -1, NULL);
}
void isl_schedule_tree_dump(__isl_keep isl_schedule_tree *tree)
{
isl_ctx *ctx;
isl_printer *printer;
if (!tree)
return;
ctx = isl_schedule_tree_get_ctx(tree);
printer = isl_printer_to_file(ctx, stderr);
printer = isl_printer_set_yaml_style(printer, ISL_YAML_STYLE_BLOCK);
printer = isl_printer_print_schedule_tree(printer, tree);
isl_printer_free(printer);
}