cpp.cc
79.4 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
/*
* Copyright 2016, 2017 Tobias Grosser. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY TOBIAS GROSSER ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SVEN VERDOOLAEGE OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation
* are those of the authors and should not be interpreted as
* representing official policies, either expressed or implied, of
* Tobias Grosser.
*/
#include <cstdarg>
#include <cstdio>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <vector>
#include "cpp.h"
#include "isl_config.h"
/* Print string formatted according to "fmt" to ostream "os".
*
* This osprintf method allows us to use printf style formatting constructs when
* writing to an ostream.
*/
static void osprintf(ostream &os, const char *format, va_list arguments)
{
va_list copy;
char *string_pointer;
size_t size;
va_copy(copy, arguments);
size = vsnprintf(NULL, 0, format, copy);
string_pointer = new char[size + 1];
va_end(copy);
vsnprintf(string_pointer, size + 1, format, arguments);
os << string_pointer;
delete[] string_pointer;
}
/* Print string formatted according to "fmt" to ostream "os".
*
* This osprintf method allows us to use printf style formatting constructs when
* writing to an ostream.
*/
static void osprintf(ostream &os, const char *format, ...)
{
va_list arguments;
va_start(arguments, format);
osprintf(os, format, arguments);
va_end(arguments);
}
/* Print string formatted according to "fmt" to ostream "os"
* with the given indentation.
*
* This osprintf method allows us to use printf style formatting constructs when
* writing to an ostream.
*/
static void osprintf(ostream &os, int indent, const char *format, ...)
{
va_list arguments;
osprintf(os, "%*s", indent, " ");
va_start(arguments, format);
osprintf(os, format, arguments);
va_end(arguments);
}
/* Convert "l" to a string.
*/
static std::string to_string(long l)
{
std::ostringstream strm;
strm << l;
return strm.str();
}
/* Generate a cpp interface based on the extracted types and functions.
*
* Print first a set of forward declarations for all isl wrapper
* classes, then the declarations of the classes, and at the end all
* implementations.
*
* If checked C++ bindings are being generated,
* then wrap them in a namespace to avoid conflicts
* with the default C++ bindings (with automatic checks using exceptions).
*/
void cpp_generator::generate()
{
ostream &os = cout;
osprintf(os, "\n");
osprintf(os, "namespace isl {\n\n");
if (checked)
osprintf(os, "namespace checked {\n\n");
print_forward_declarations(os);
osprintf(os, "\n");
print_declarations(os);
osprintf(os, "\n");
print_implementations(os);
if (checked)
osprintf(os, "} // namespace checked\n");
osprintf(os, "} // namespace isl\n");
}
/* Print forward declarations for all classes to "os".
*/
void cpp_generator::print_forward_declarations(ostream &os)
{
map<string, isl_class>::iterator ci;
osprintf(os, "// forward declarations\n");
for (ci = classes.begin(); ci != classes.end(); ++ci)
print_class_forward_decl(os, ci->second);
}
/* Print all declarations to "os".
*/
void cpp_generator::print_declarations(ostream &os)
{
map<string, isl_class>::iterator ci;
bool first = true;
for (ci = classes.begin(); ci != classes.end(); ++ci) {
if (first)
first = false;
else
osprintf(os, "\n");
print_class(os, ci->second);
}
}
/* Print all implementations to "os".
*/
void cpp_generator::print_implementations(ostream &os)
{
map<string, isl_class>::iterator ci;
bool first = true;
for (ci = classes.begin(); ci != classes.end(); ++ci) {
if (first)
first = false;
else
osprintf(os, "\n");
print_class_impl(os, ci->second);
}
}
/* If "clazz" is a subclass that is based on a type function,
* then introduce a "type" field that holds the value of the type
* corresponding to the subclass and make the fields of the class
* accessible to the "isa" and "as" methods of the (immediate) superclass.
* In particular, "isa" needs access to the type field itself,
* while "as" needs access to the private constructor.
* In case of the "isa" method, all instances are made friends
* to avoid access right confusion.
*/
void cpp_generator::print_subclass_type(ostream &os, const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
std::string super;
const char *cppname = cppstring.c_str();
const char *supername;
if (!clazz.is_type_subclass())
return;
super = type2cpp(clazz.superclass_name);
supername = super.c_str();
osprintf(os, " template <class T>\n");
osprintf(os, " friend %s %s::isa() const;\n",
isl_bool2cpp().c_str(), supername);
osprintf(os, " friend %s %s::as<%s>() const;\n",
cppname, supername, cppname);
osprintf(os, " static const auto type = %s;\n",
clazz.subclass_name.c_str());
}
/* Print declarations for class "clazz" to "os".
*
* If "clazz" is a subclass based on a type function,
* then it is made to inherit from the (immediate) superclass and
* a "type" attribute is added for use in the "as" and "isa"
* methods of the superclass.
*
* Conversely, if "clazz" is a superclass with a type function,
* then declare those "as" and "isa" methods.
*
* The pointer to the isl object is only added for classes that
* are not subclasses, since subclasses refer to the same isl object.
*/
void cpp_generator::print_class(ostream &os, const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, "// declarations for isl::%s\n", cppname);
print_class_factory_decl(os, clazz);
osprintf(os, "\n");
osprintf(os, "class %s ", cppname);
if (clazz.is_type_subclass())
osprintf(os, ": public %s ",
type2cpp(clazz.superclass_name).c_str());
osprintf(os, "{\n");
print_subclass_type(os, clazz);
print_class_factory_decl(os, clazz, " friend ");
osprintf(os, "\n");
osprintf(os, "protected:\n");
if (!clazz.is_type_subclass()) {
osprintf(os, " %s *ptr = nullptr;\n", name);
osprintf(os, "\n");
}
print_protected_constructors_decl(os, clazz);
osprintf(os, "\n");
osprintf(os, "public:\n");
print_public_constructors_decl(os, clazz);
print_constructors_decl(os, clazz);
print_copy_assignment_decl(os, clazz);
print_destructor_decl(os, clazz);
print_ptr_decl(os, clazz);
print_downcast_decl(os, clazz);
print_ctx_decl(os);
osprintf(os, "\n");
print_persistent_callbacks_decl(os, clazz);
print_methods_decl(os, clazz);
print_set_enums_decl(os, clazz);
osprintf(os, "};\n");
}
/* Print forward declaration of class "clazz" to "os".
*/
void cpp_generator::print_class_forward_decl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, "class %s;\n", cppname);
}
/* Print global factory functions to "os".
*
* Each class has two global factory functions:
*
* set manage(__isl_take isl_set *ptr);
* set manage_copy(__isl_keep isl_set *ptr);
*
* A user can construct isl C++ objects from a raw pointer and indicate whether
* they intend to take the ownership of the object or not through these global
* factory functions. This ensures isl object creation is very explicit and
* pointers are not converted by accident. Thanks to overloading, manage() and
* manage_copy() can be called on any isl raw pointer and the corresponding
* object is automatically created, without the user having to choose the right
* isl object type.
*
* For a subclass based on a type function, no factory functions
* are introduced because they share the C object type with
* the superclass.
*/
void cpp_generator::print_class_factory_decl(ostream &os,
const isl_class &clazz, const std::string &prefix)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (clazz.is_type_subclass())
return;
os << prefix;
osprintf(os, "inline %s manage(__isl_take %s *ptr);\n", cppname, name);
os << prefix;
osprintf(os, "inline %s manage_copy(__isl_keep %s *ptr);\n",
cppname, name);
}
/* Print declarations of protected constructors for class "clazz" to "os".
*
* Each class has currently one protected constructor:
*
* 1) Constructor from a plain isl_* C pointer
*
* Example:
*
* set(__isl_take isl_set *ptr);
*
* The raw pointer constructor is kept protected. Object creation is only
* possible through manage() or manage_copy().
*/
void cpp_generator::print_protected_constructors_decl(ostream &os,
const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, " inline explicit %s(__isl_take %s *ptr);\n", cppname,
name);
}
/* Print declarations of public constructors for class "clazz" to "os".
*
* Each class currently has two public constructors:
*
* 1) A default constructor
* 2) A copy constructor
*
* Example:
*
* set();
* set(const set &set);
*/
void cpp_generator::print_public_constructors_decl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, " inline /* implicit */ %s();\n", cppname);
osprintf(os, " inline /* implicit */ %s(const %s &obj);\n",
cppname, cppname);
}
/* Print declarations for "method" in class "clazz" to "os".
*
* "kind" specifies the kind of method that should be generated.
*
* "convert" specifies which of the method arguments should
* be automatically converted.
*/
template <>
void cpp_generator::print_method<cpp_generator::decl>(ostream &os,
const isl_class &clazz, FunctionDecl *method, function_kind kind,
const std::vector<bool> &convert)
{
string name = clazz.method_name(method);
print_named_method_decl(os, clazz, method, name, kind, convert);
}
/* Print declarations for "method" in class "clazz" to "os",
* without any argument conversions.
*
* "kind" specifies the kind of method that should be generated.
*/
template <>
void cpp_generator::print_method<cpp_generator::decl>(ostream &os,
const isl_class &clazz, FunctionDecl *method, function_kind kind)
{
print_method<decl>(os, clazz,method, kind, {});
}
/* Print declarations for constructors for class "class" to "os".
*
* For each isl function that is marked as __isl_constructor,
* add a corresponding C++ constructor.
*
* Example:
*
* inline /\* implicit *\/ union_set(basic_set bset);
* inline /\* implicit *\/ union_set(set set);
* inline explicit val(ctx ctx, long i);
* inline explicit val(ctx ctx, const std::string &str);
*/
void cpp_generator::print_constructors_decl(ostream &os,
const isl_class &clazz)
{
function_set::const_iterator in;
const function_set &constructors = clazz.constructors;
for (in = constructors.begin(); in != constructors.end(); ++in) {
FunctionDecl *cons = *in;
print_method<decl>(os, clazz, cons, function_kind_constructor);
}
}
/* Print declarations of copy assignment operator for class "clazz"
* to "os".
*
* Each class has one assignment operator.
*
* isl:set &set::operator=(set obj)
*
*/
void cpp_generator::print_copy_assignment_decl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, " inline %s &operator=(%s obj);\n", cppname, cppname);
}
/* Print declaration of destructor for class "clazz" to "os".
*
* No explicit destructor is needed for type based subclasses.
*/
void cpp_generator::print_destructor_decl(ostream &os, const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (clazz.is_type_subclass())
return;
osprintf(os, " inline ~%s();\n", cppname);
}
/* Print declaration of pointer functions for class "clazz" to "os".
* Since type based subclasses share the pointer with their superclass,
* they can also reuse these functions from the superclass.
*
* To obtain a raw pointer three functions are provided:
*
* 1) __isl_give isl_set *copy()
*
* Returns a pointer to a _copy_ of the internal object
*
* 2) __isl_keep isl_set *get()
*
* Returns a pointer to the internal object
*
* 3) __isl_give isl_set *release()
*
* Returns a pointer to the internal object and resets the
* internal pointer to nullptr.
*
* We also provide functionality to explicitly check if a pointer is
* currently managed by this object.
*
* 4) bool is_null()
*
* Check if the current object is a null pointer.
*
* The functions get() and release() model the value_ptr proposed in
* http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3339.pdf.
* The copy() function is an extension to allow the user to explicitly
* copy the underlying object.
*
* Also generate a declaration to delete copy() for r-values, for
* r-values release() should be used to avoid unnecessary copies.
*/
void cpp_generator::print_ptr_decl(ostream &os, const isl_class &clazz)
{
const char *name = clazz.name.c_str();
if (clazz.is_type_subclass())
return;
osprintf(os, " inline __isl_give %s *copy() const &;\n", name);
osprintf(os, " inline __isl_give %s *copy() && = delete;\n", name);
osprintf(os, " inline __isl_keep %s *get() const;\n", name);
osprintf(os, " inline __isl_give %s *release();\n", name);
osprintf(os, " inline bool is_null() const;\n");
}
/* Print a template declaration with given indentation
* for the "isa_type" method that ensures it is only enabled
* when called with a template argument
* that represents a type that is equal to that
* of the return type of the type function of "super".
* In particular, "isa_type" gets called from "isa"
* with as template argument the type of the "type" field
* of the subclass.
* The check ensures that this subclass is in fact a direct subclass
* of "super".
*/
void cpp_generator::print_isa_type_template(ostream &os, int indent,
const isl_class &super)
{
osprintf(os, indent,
"template <typename T,\n");
osprintf(os, indent,
" typename = typename std::enable_if<std::is_same<\n");
osprintf(os, indent,
" const decltype(%s(NULL)),\n",
super.fn_type->getNameAsString().c_str());
osprintf(os, indent,
" const T>::value>::type>\n");
}
/* Print declarations for the "as" and "isa" methods, if "clazz"
* is a superclass with a type function.
*
* "isa" checks whether an object is of a given subclass type.
* "isa_type" does the same, but gets passed the value of the type field
* of the subclass as a function argument and the type of this field
* as a template argument.
* "as" tries to cast an object to a given subclass type, returning
* an invalid object if the object is not of the given type.
*/
void cpp_generator::print_downcast_decl(ostream &os, const isl_class &clazz)
{
if (!clazz.fn_type)
return;
osprintf(os, "private:\n");
print_isa_type_template(os, 2, clazz);
osprintf(os, " inline %s isa_type(T subtype) const;\n",
isl_bool2cpp().c_str());
osprintf(os, "public:\n");
osprintf(os, " template <class T> inline %s isa() const;\n",
isl_bool2cpp().c_str());
osprintf(os, " template <class T> inline T as() const;\n");
}
/* Print the declaration of the ctx method.
*/
void cpp_generator::print_ctx_decl(ostream &os)
{
std::string ns = isl_namespace();
osprintf(os, " inline %sctx ctx() const;\n", ns.c_str());
}
/* Add a space to the return type "type" if needed,
* i.e., if it is not the type of a pointer.
*/
static string add_space_to_return_type(const string &type)
{
if (type[type.size() - 1] == '*')
return type;
return type + " ";
}
/* Print the prototype of the static inline method that is used
* as the C callback of "clazz" set by "method" to "os".
*/
void cpp_generator::print_persistent_callback_prototype(ostream &os,
const isl_class &clazz, FunctionDecl *method, bool is_declaration)
{
string callback_name, rettype, c_args;
ParmVarDecl *param = persistent_callback_arg(method);
const FunctionProtoType *callback;
QualType ptype;
string classname;
ptype = param->getType();
callback = extract_prototype(ptype);
rettype = callback->getReturnType().getAsString();
rettype = add_space_to_return_type(rettype);
callback_name = clazz.persistent_callback_name(method);
c_args = generate_callback_args(ptype, false);
if (!is_declaration)
classname = type2cpp(clazz) + "::";
osprintf(os, "%s%s%s(%s)",
rettype.c_str(), classname.c_str(),
callback_name.c_str(), c_args.c_str());
}
/* Print the prototype of the method for setting the callback function
* of "clazz" set by "method" to "os".
*/
void cpp_generator::print_persistent_callback_setter_prototype(ostream &os,
const isl_class &clazz, FunctionDecl *method, bool is_declaration)
{
string classname, callback_name, cpptype;
ParmVarDecl *param = persistent_callback_arg(method);
if (!is_declaration)
classname = type2cpp(clazz) + "::";
cpptype = type2cpp(param->getOriginalType());
callback_name = clazz.persistent_callback_name(method);
osprintf(os, "void %sset_%s_data(const %s &%s)",
classname.c_str(), callback_name.c_str(), cpptype.c_str(),
param->getName().str().c_str());
}
/* Given a function "method" for setting a "clazz" persistent callback,
* print the fields that are needed for marshalling the callback to "os".
*
* In particular, print
* - the declaration of a data structure for storing the C++ callback function
* - a shared pointer to such a data structure
* - the declaration of a static inline method
* for use as the C callback function
* - the declaration of a private method for setting the callback function
*/
void cpp_generator::print_persistent_callback_data(ostream &os,
const isl_class &clazz, FunctionDecl *method)
{
string callback_name;
ParmVarDecl *param = persistent_callback_arg(method);
callback_name = clazz.persistent_callback_name(method);
print_callback_data_decl(os, param, callback_name);
osprintf(os, ";\n");
osprintf(os, " std::shared_ptr<%s_data> %s_data;\n",
callback_name.c_str(), callback_name.c_str());
osprintf(os, " static inline ");
print_persistent_callback_prototype(os, clazz, method, true);
osprintf(os, ";\n");
osprintf(os, " inline ");
print_persistent_callback_setter_prototype(os, clazz, method, true);
osprintf(os, ";\n");
}
/* Print declarations needed for the persistent callbacks of "clazz".
*
* In particular, if there are any persistent callbacks, then
* print a private method for copying callback data from
* one object to another,
* private data for keeping track of the persistent callbacks and
* public methods for setting the persistent callbacks.
*/
void cpp_generator::print_persistent_callbacks_decl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
set<FunctionDecl *>::const_iterator in;
const set<FunctionDecl *> &callbacks = clazz.persistent_callbacks;
if (!clazz.has_persistent_callbacks())
return;
osprintf(os, "private:\n");
osprintf(os, " inline %s ©_callbacks(const %s &obj);\n",
cppname, cppname);
for (in = callbacks.begin(); in != callbacks.end(); ++in)
print_persistent_callback_data(os, clazz, *in);
osprintf(os, "public:\n");
for (in = callbacks.begin(); in != callbacks.end(); ++in)
print_method<decl>(os, clazz, *in, function_kind_member_method);
}
/* Print declarations for methods in class "clazz" to "os".
*/
void cpp_generator::print_methods_decl(ostream &os, const isl_class &clazz)
{
map<string, function_set >::const_iterator it;
for (it = clazz.methods.begin(); it != clazz.methods.end(); ++it)
print_method_group_decl(os, clazz, it->second);
}
/* Print a declaration for a method "name" in "clazz" derived
* from "fd", which sets an enum, to "os".
*
* The last argument is removed because it is replaced by
* a break-up into several methods.
*/
void cpp_generator::print_set_enum_decl(ostream &os, const isl_class &clazz,
FunctionDecl *fd, const string &name)
{
int n = fd->getNumParams();
print_method_header(os, clazz, fd, name, n - 1, true,
function_kind_member_method);
}
/* Print declarations for the methods in "clazz" derived from "fd",
* which sets an enum, to "os".
*
* A method is generated for each value in the enum, setting
* the enum to that value.
*/
void cpp_generator::print_set_enums_decl(ostream &os, const isl_class &clazz,
FunctionDecl *fd)
{
vector<set_enum>::const_iterator it;
const vector<set_enum> &set_enums = clazz.set_enums.at(fd);
for (it = set_enums.begin(); it != set_enums.end(); ++it)
print_set_enum_decl(os, clazz, fd, it->method_name);
}
/* Print declarations for methods in "clazz" derived from functions
* that set an enum, to "os".
*/
void cpp_generator::print_set_enums_decl(ostream &os, const isl_class &clazz)
{
map<FunctionDecl *, vector<set_enum> >::const_iterator it;
for (it = clazz.set_enums.begin(); it != clazz.set_enums.end(); ++it)
print_set_enums_decl(os, clazz, it->first);
}
/* Print a declaration for the "get" method "fd" in class "clazz",
* using a name that includes the "get_" prefix, to "os".
*/
template<>
void cpp_generator::print_get_method<cpp_generator::decl>(ostream &os,
const isl_class &clazz, FunctionDecl *fd)
{
function_kind kind = function_kind_member_method;
string base = clazz.base_method_name(fd);
print_named_method_decl(os, clazz, fd, base, kind);
}
/* Update "convert" to reflect the next combination of automatic conversions
* for the arguments of "fd",
* returning false if there are no more combinations.
*
* In particular, find the last argument for which an automatic
* conversion function is available mapping to the type of this argument and
* that is not already marked for conversion.
* Mark this argument, if any, for conversion and clear the markings
* of all subsequent arguments.
* Repeated calls to this method therefore run through
* all possible combinations.
*
* Note that the first function argument is never considered
* for automatic conversion since this is the argument
* from which the isl_ctx used in the conversion is extracted.
*/
bool cpp_generator::next_variant(FunctionDecl *fd, std::vector<bool> &convert)
{
size_t n = convert.size();
for (int i = n - 1; i >= 1; --i) {
ParmVarDecl *param = fd->getParamDecl(i);
const Type *type = param->getOriginalType().getTypePtr();
if (conversions.count(type) == 0)
continue;
if (convert[i])
continue;
convert[i] = true;
for (size_t j = i + 1; j < n; ++j)
convert[j] = false;
return true;
}
return false;
}
/* Print a declaration or definition for method "fd" in class "clazz"
* to "os".
*
* For methods that are identified as "get" methods, also
* print a declaration or definition for the method
* using a name that includes the "get_" prefix.
*
* If the generated method is an object method, then check
* whether any of its arguments can be automatically converted
* from something else, and, if so, generate a method
* for each combination of converted arguments.
*/
template <enum cpp_generator::method_part part>
void cpp_generator::print_method_variants(ostream &os, const isl_class &clazz,
FunctionDecl *fd)
{
function_kind kind = get_method_kind(clazz, fd);
std::vector<bool> convert(fd->getNumParams());
print_method<part>(os, clazz, fd, kind);
if (clazz.is_get_method(fd))
print_get_method<part>(os, clazz, fd);
if (kind == function_kind_member_method)
while (next_variant(fd, convert))
print_method<part>(os, clazz, fd, kind, convert);
}
/* Print declarations for methods "methods" in class "clazz" to "os".
*/
void cpp_generator::print_method_group_decl(ostream &os, const isl_class &clazz,
const function_set &methods)
{
function_set::const_iterator it;
for (it = methods.begin(); it != methods.end(); ++it)
print_method_variants<decl>(os, clazz, *it);
}
/* Print a declaration for a method called "name" in class "clazz"
* derived from "fd" to "os".
*
* "kind" specifies the kind of method that should be generated.
*
* "convert" specifies which of the method arguments should
* be automatically converted.
*/
void cpp_generator::print_named_method_decl(ostream &os, const isl_class &clazz,
FunctionDecl *fd, const string &name, function_kind kind,
const std::vector<bool> &convert)
{
print_named_method_header(os, clazz, fd, name, true, kind, convert);
}
/* Print implementations for class "clazz" to "os".
*/
void cpp_generator::print_class_impl(ostream &os, const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, "// implementations for isl::%s", cppname);
print_class_factory_impl(os, clazz);
print_public_constructors_impl(os, clazz);
print_protected_constructors_impl(os, clazz);
print_constructors_impl(os, clazz);
print_copy_assignment_impl(os, clazz);
print_destructor_impl(os, clazz);
print_ptr_impl(os, clazz);
print_downcast_impl(os, clazz);
print_ctx_impl(os, clazz);
print_persistent_callbacks_impl(os, clazz);
print_methods_impl(os, clazz);
print_set_enums_impl(os, clazz);
print_stream_insertion(os, clazz);
}
/* Print code for throwing an exception corresponding to the last error
* that occurred on "saved_ctx".
* This assumes that a valid isl::ctx is available in the "saved_ctx" variable,
* e.g., through a prior call to print_save_ctx.
*/
static void print_throw_last_error(ostream &os)
{
osprintf(os, " exception::throw_last_error(saved_ctx);\n");
}
/* Print code with the given indentation
* for throwing an exception_invalid with the given message.
*/
static void print_throw_invalid(ostream &os, int indent, const char *msg)
{
osprintf(os, indent,
"exception::throw_invalid(\"%s\", __FILE__, __LINE__);\n", msg);
}
/* Print code for throwing an exception on NULL input.
*/
static void print_throw_NULL_input(ostream &os)
{
print_throw_invalid(os, 4, "NULL input");
}
/* Print code with the given indentation
* for acting on an invalid error with message "msg".
* In particular, throw an exception_invalid.
* In the checked C++ bindings, isl_die is called instead with the code
* in "checked_code".
*/
void cpp_generator::print_invalid(ostream &os, int indent, const char *msg,
const char *checked_code)
{
if (checked)
osprintf(os, indent,
"isl_die(ctx().get(), isl_error_invalid, "
"\"%s\", %s);\n", msg, checked_code);
else
print_throw_invalid(os, indent, msg);
}
/* Print an operator for inserting objects of "class"
* into an output stream.
*
* Unless checked C++ bindings are being generated,
* the operator requires its argument to be non-NULL.
* An exception is thrown if anything went wrong during the printing.
* During this printing, isl is made not to print any error message
* because the error message is included in the exception.
*
* If checked C++ bindings are being generated and anything went wrong,
* then record this failure in the output stream.
*/
void cpp_generator::print_stream_insertion(ostream &os, const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (!clazz.fn_to_str)
return;
osprintf(os, "\n");
osprintf(os, "inline std::ostream &operator<<(std::ostream &os, ");
osprintf(os, "const %s &obj)\n", cppname);
osprintf(os, "{\n");
print_check_ptr_start(os, clazz, "obj.get()");
osprintf(os, " char *str = %s_to_str(obj.get());\n", name);
print_check_ptr_end(os, "str");
if (checked) {
osprintf(os, " if (!str) {\n");
osprintf(os, " os.setstate(std::ios_base::badbit);\n");
osprintf(os, " return os;\n");
osprintf(os, " }\n");
}
osprintf(os, " os << str;\n");
osprintf(os, " free(str);\n");
osprintf(os, " return os;\n");
osprintf(os, "}\n");
}
/* Print code that checks that "ptr" is not NULL at input.
*
* Omit the check if checked C++ bindings are being generated.
*/
void cpp_generator::print_check_ptr(ostream &os, const char *ptr)
{
if (checked)
return;
osprintf(os, " if (!%s)\n", ptr);
print_throw_NULL_input(os);
}
/* Print code that checks that "ptr" is not NULL at input and
* that saves a copy of the isl_ctx of "ptr" for a later check.
*
* Omit the check if checked C++ bindings are being generated.
*/
void cpp_generator::print_check_ptr_start(ostream &os, const isl_class &clazz,
const char *ptr)
{
if (checked)
return;
print_check_ptr(os, ptr);
osprintf(os, " auto saved_ctx = %s_get_ctx(%s);\n",
clazz.name.c_str(), ptr);
print_on_error_continue(os);
}
/* Print code that checks that "ptr" is not NULL at the end.
* A copy of the isl_ctx is expected to have been saved by
* code generated by print_check_ptr_start.
*
* Omit the check if checked C++ bindings are being generated.
*/
void cpp_generator::print_check_ptr_end(ostream &os, const char *ptr)
{
if (checked)
return;
osprintf(os, " if (!%s)\n", ptr);
print_throw_last_error(os);
}
/* Print implementation of global factory functions to "os".
*
* Each class has two global factory functions:
*
* set manage(__isl_take isl_set *ptr);
* set manage_copy(__isl_keep isl_set *ptr);
*
* Unless checked C++ bindings are being generated,
* both functions require the argument to be non-NULL.
* An exception is thrown if anything went wrong during the copying
* in manage_copy.
* During the copying, isl is made not to print any error message
* because the error message is included in the exception.
*
* For a subclass based on a type function, no factory functions
* are introduced because they share the C object type with
* the superclass.
*/
void cpp_generator::print_class_factory_impl(ostream &os,
const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (clazz.is_type_subclass())
return;
osprintf(os, "\n");
osprintf(os, "%s manage(__isl_take %s *ptr) {\n", cppname, name);
print_check_ptr(os, "ptr");
osprintf(os, " return %s(ptr);\n", cppname);
osprintf(os, "}\n");
osprintf(os, "%s manage_copy(__isl_keep %s *ptr) {\n", cppname,
name);
print_check_ptr_start(os, clazz, "ptr");
osprintf(os, " ptr = %s_copy(ptr);\n", name);
print_check_ptr_end(os, "ptr");
osprintf(os, " return %s(ptr);\n", cppname);
osprintf(os, "}\n");
}
/* Print implementations of protected constructors for class "clazz" to "os".
*
* The pointer to the isl object is either initialized directly or
* through the (immediate) superclass.
*/
void cpp_generator::print_protected_constructors_impl(ostream &os,
const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
bool subclass = clazz.is_type_subclass();
osprintf(os, "\n");
osprintf(os, "%s::%s(__isl_take %s *ptr)\n", cppname, cppname, name);
if (subclass)
osprintf(os, " : %s(ptr) {}\n",
type2cpp(clazz.superclass_name).c_str());
else
osprintf(os, " : ptr(ptr) {}\n");
}
/* Print implementations of public constructors for class "clazz" to "os".
*
* The pointer to the isl object is either initialized directly or
* through the (immediate) superclass.
*
* If the class has any persistent callbacks, then copy them
* from the original object in the copy constructor.
* If the class is a subclass, then the persistent callbacks
* are assumed to be copied by the copy constructor of the superclass.
*
* Throw an exception from the copy constructor if anything went wrong
* during the copying or if the input is NULL, if any copying is performed.
* During the copying, isl is made not to print any error message
* because the error message is included in the exception.
* No exceptions are thrown if checked C++ bindings
* are being generated,
*/
void cpp_generator::print_public_constructors_impl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
std::string super;
const char *cppname = cppstring.c_str();
bool subclass = clazz.is_type_subclass();
osprintf(os, "\n");
if (subclass)
super = type2cpp(clazz.superclass_name);
osprintf(os, "%s::%s()\n", cppname, cppname);
if (subclass)
osprintf(os, " : %s() {}\n\n", super.c_str());
else
osprintf(os, " : ptr(nullptr) {}\n\n");
osprintf(os, "%s::%s(const %s &obj)\n", cppname, cppname, cppname);
if (subclass)
osprintf(os, " : %s(obj)\n", super.c_str());
else
osprintf(os, " : ptr(nullptr)\n");
osprintf(os, "{\n");
if (!subclass) {
print_check_ptr_start(os, clazz, "obj.ptr");
osprintf(os, " ptr = obj.copy();\n");
if (clazz.has_persistent_callbacks())
osprintf(os, " copy_callbacks(obj);\n");
print_check_ptr_end(os, "ptr");
}
osprintf(os, "}\n");
}
/* Print definition for "method" in class "clazz" to "os",
* without any automatic type conversions.
*
* "kind" specifies the kind of method that should be generated.
*
* This method distinguishes three kinds of methods: member methods, static
* methods, and constructors.
*
* Member methods call "method" by passing to the underlying isl function the
* isl object belonging to "this" as first argument and the remaining arguments
* as subsequent arguments.
*
* Static methods call "method" by passing all arguments to the underlying isl
* function, as no this-pointer is available. The result is a newly managed
* isl C++ object.
*
* Constructors create a new object from a given set of input parameters. They
* do not return a value, but instead update the pointer stored inside the
* newly created object.
*
* If the method has a callback argument, we reduce the number of parameters
* that are exposed by one to hide the user pointer from the interface. On
* the C++ side no user pointer is needed, as arguments can be forwarded
* as part of the std::function argument which specifies the callback function.
*
* Unless checked C++ bindings are being generated,
* the inputs of the method are first checked for being valid isl objects and
* a copy of the associated isl::ctx is saved (if needed).
* If any failure occurs, either during the check for the inputs or
* during the isl function call, an exception is thrown.
* During the function call, isl is made not to print any error message
* because the error message is included in the exception.
*/
template<>
void cpp_generator::print_method<cpp_generator::impl>(ostream &os,
const isl_class &clazz, FunctionDecl *method, function_kind kind)
{
string methodname = method->getName();
int num_params = method->getNumParams();
osprintf(os, "\n");
print_method_header(os, clazz, method, false, kind);
osprintf(os, "{\n");
print_argument_validity_check(os, method, kind);
print_save_ctx(os, method, kind);
print_on_error_continue(os);
for (int i = 0; i < num_params; ++i) {
ParmVarDecl *param = method->getParamDecl(i);
if (is_callback(param->getType())) {
num_params -= 1;
print_callback_local(os, param);
}
}
osprintf(os, " auto res = %s(", methodname.c_str());
for (int i = 0; i < num_params; ++i) {
ParmVarDecl *param = method->getParamDecl(i);
bool load_from_this_ptr = false;
if (i == 0 && kind == function_kind_member_method)
load_from_this_ptr = true;
print_method_param_use(os, param, load_from_this_ptr);
if (i != num_params - 1)
osprintf(os, ", ");
}
osprintf(os, ");\n");
print_exceptional_execution_check(os, clazz, method, kind);
if (kind == function_kind_constructor) {
osprintf(os, " ptr = res;\n");
} else {
print_method_return(os, clazz, method);
}
osprintf(os, "}\n");
}
/* Print a definition for "method" in class "clazz" to "os",
* where at least one of the argument types needs to be converted,
* as specified by "convert".
*
* "kind" specifies the kind of method that should be generated and
* is assumed to be set to function_kind_member_method.
*
* The generated method performs the required conversion(s) and
* calls the method generated without conversions.
*
* Each conversion is performed by calling the conversion function
* with as arguments the isl_ctx of the object and the argument
* to the generated method.
* In order to be able to use this isl_ctx, the current object needs
* to valid. The validity of other arguments is checked
* by the called method.
*/
template<>
void cpp_generator::print_method<cpp_generator::impl>(ostream &os,
const isl_class &clazz, FunctionDecl *method, function_kind kind,
const std::vector<bool> &convert)
{
string name = clazz.method_name(method);
int num_params = method->getNumParams();
if (kind != function_kind_member_method)
die("Automatic conversion currently only supported "
"for object methods");
osprintf(os, "\n");
print_named_method_header(os, clazz, method, name, false,
kind, convert);
osprintf(os, "{\n");
print_check_ptr(os, "ptr");
osprintf(os, " return this->%s(", name.c_str());
for (int i = 1; i < num_params; ++i) {
ParmVarDecl *param = method->getParamDecl(i);
std::string name = param->getName().str();
if (i != 1)
osprintf(os, ", ");
if (convert[i]) {
QualType type = param->getOriginalType();
string cpptype = type2cpp(type);
osprintf(os, "%s(ctx(), %s)",
cpptype.c_str(), name.c_str());
} else {
osprintf(os, "%s", name.c_str());
}
}
osprintf(os, ");\n");
osprintf(os, "}\n");
}
/* Print implementations of constructors for class "clazz" to "os".
*/
void cpp_generator::print_constructors_impl(ostream &os,
const isl_class &clazz)
{
function_set::const_iterator in;
const function_set constructors = clazz.constructors;
for (in = constructors.begin(); in != constructors.end(); ++in) {
FunctionDecl *cons = *in;
print_method<impl>(os, clazz, cons, function_kind_constructor);
}
}
/* Print implementation of copy assignment operator for class "clazz" to "os".
*
* If the class has any persistent callbacks, then copy them
* from the original object.
*/
void cpp_generator::print_copy_assignment_impl(ostream &os,
const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
osprintf(os, "\n");
osprintf(os, "%s &%s::operator=(%s obj) {\n", cppname,
cppname, cppname);
osprintf(os, " std::swap(this->ptr, obj.ptr);\n", name);
if (clazz.has_persistent_callbacks())
osprintf(os, " copy_callbacks(obj);\n");
osprintf(os, " return *this;\n");
osprintf(os, "}\n");
}
/* Print implementation of destructor for class "clazz" to "os".
*
* No explicit destructor is needed for type based subclasses.
*/
void cpp_generator::print_destructor_impl(ostream &os,
const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (clazz.is_type_subclass())
return;
osprintf(os, "\n");
osprintf(os, "%s::~%s() {\n", cppname, cppname);
osprintf(os, " if (ptr)\n");
osprintf(os, " %s_free(ptr);\n", name);
osprintf(os, "}\n");
}
/* Print a check that the persistent callback corresponding to "fd"
* is not set, throwing an exception (or printing an error message
* and returning nullptr) if it is set.
*/
void cpp_generator::print_check_no_persistent_callback(ostream &os,
const isl_class &clazz, FunctionDecl *fd)
{
string callback_name = clazz.persistent_callback_name(fd);
osprintf(os, " if (%s_data)\n", callback_name.c_str());
print_invalid(os, 4, "cannot release object with persistent callbacks",
"return nullptr");
}
/* Print implementation of ptr() functions for class "clazz" to "os".
* Since type based subclasses share the pointer with their superclass,
* they can also reuse these functions from the superclass.
*
* If an object has persistent callbacks set, then the underlying
* C object pointer cannot be released because it references data
* in the C++ object.
*/
void cpp_generator::print_ptr_impl(ostream &os, const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
set<FunctionDecl *>::const_iterator in;
const set<FunctionDecl *> &callbacks = clazz.persistent_callbacks;
if (clazz.is_type_subclass())
return;
osprintf(os, "\n");
osprintf(os, "__isl_give %s *%s::copy() const & {\n", name, cppname);
osprintf(os, " return %s_copy(ptr);\n", name);
osprintf(os, "}\n\n");
osprintf(os, "__isl_keep %s *%s::get() const {\n", name, cppname);
osprintf(os, " return ptr;\n");
osprintf(os, "}\n\n");
osprintf(os, "__isl_give %s *%s::release() {\n", name, cppname);
for (in = callbacks.begin(); in != callbacks.end(); ++in)
print_check_no_persistent_callback(os, clazz, *in);
osprintf(os, " %s *tmp = ptr;\n", name);
osprintf(os, " ptr = nullptr;\n");
osprintf(os, " return tmp;\n");
osprintf(os, "}\n\n");
osprintf(os, "bool %s::is_null() const {\n", cppname);
osprintf(os, " return ptr == nullptr;\n");
osprintf(os, "}\n");
}
/* Print implementations for the "as" and "isa" methods, if "clazz"
* is a superclass with a type function.
*
* "isa" checks whether an object is of a given subclass type.
* "isa_type" does the same, but gets passed the value of the type field
* of the subclass as a function argument and the type of this field
* as a template argument.
* "as" casts an object to a given subclass type, erroring out
* if the object is not of the given type.
*
* If the input is an invalid object, then these methods raise
* an exception.
* If checked bindings are being generated,
* then an invalid boolean or object is returned instead.
*/
void cpp_generator::print_downcast_impl(ostream &os, const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
if (!clazz.fn_type)
return;
osprintf(os, "\n");
osprintf(os, "template <typename T, typename>\n");
osprintf(os, "%s %s::isa_type(T subtype) const\n",
isl_bool2cpp().c_str(), cppname);
osprintf(os, "{\n");
osprintf(os, " if (is_null())\n");
if (checked)
osprintf(os, " return boolean();\n");
else
print_throw_NULL_input(os);
osprintf(os, " return %s(get()) == subtype;\n",
clazz.fn_type->getNameAsString().c_str());
osprintf(os, "}\n");
osprintf(os, "template <class T>\n");
osprintf(os, "%s %s::isa() const\n", isl_bool2cpp().c_str(), cppname);
osprintf(os, "{\n");
osprintf(os, " return isa_type<decltype(T::type)>(T::type);\n");
osprintf(os, "}\n");
osprintf(os, "template <class T>\n");
osprintf(os, "T %s::as() const\n", cppname);
osprintf(os, "{\n");
if (checked)
osprintf(os, " if (isa<T>().is_false())\n");
else
osprintf(os, " if (!isa<T>())\n");
print_invalid(os, 4, "not an object of the requested subtype",
"return T()");
osprintf(os, " return T(copy());\n");
osprintf(os, "}\n");
}
/* Print the implementation of the ctx method.
*/
void cpp_generator::print_ctx_impl(ostream &os, const isl_class &clazz)
{
const char *name = clazz.name.c_str();
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
std::string ns = isl_namespace();
osprintf(os, "\n");
osprintf(os, "%sctx %s::ctx() const {\n", ns.c_str(), cppname);
osprintf(os, " return %sctx(%s_get_ctx(ptr));\n", ns.c_str(), name);
osprintf(os, "}\n");
}
/* Print the implementations of the methods needed for the persistent callbacks
* of "clazz".
*/
void cpp_generator::print_persistent_callbacks_impl(ostream &os,
const isl_class &clazz)
{
std::string cppstring = type2cpp(clazz);
const char *cppname = cppstring.c_str();
string classname = type2cpp(clazz);
set<FunctionDecl *>::const_iterator in;
const set<FunctionDecl *> &callbacks = clazz.persistent_callbacks;
if (!clazz.has_persistent_callbacks())
return;
osprintf(os, "\n");
osprintf(os, "%s &%s::copy_callbacks(const %s &obj)\n",
cppname, classname.c_str(), cppname);
osprintf(os, "{\n");
for (in = callbacks.begin(); in != callbacks.end(); ++in) {
string callback_name = clazz.persistent_callback_name(*in);
osprintf(os, " %s_data = obj.%s_data;\n",
callback_name.c_str(), callback_name.c_str());
}
osprintf(os, " return *this;\n");
osprintf(os, "}\n");
for (in = callbacks.begin(); in != callbacks.end(); ++in) {
function_kind kind = function_kind_member_method;
print_set_persistent_callback(os, clazz, *in, kind);
}
}
/* Print definitions for methods of class "clazz" to "os".
*/
void cpp_generator::print_methods_impl(ostream &os, const isl_class &clazz)
{
map<string, function_set>::const_iterator it;
for (it = clazz.methods.begin(); it != clazz.methods.end(); ++it)
print_method_group_impl(os, clazz, it->second);
}
/* Print the definition for a method "method_name" in "clazz" derived
* from "fd", which sets an enum, to "os".
* In particular, the method "method_name" sets the enum to "enum_name".
*
* The last argument of the C function does not appear in the method call,
* but is fixed to "enum_name" instead.
* Other than that, the method printed here is similar to one
* printed by cpp_generator::print_method_impl, except that
* some of the special cases do not occur.
*/
void cpp_generator::print_set_enum_impl(ostream &os, const isl_class &clazz,
FunctionDecl *fd, const string &enum_name, const string &method_name)
{
string c_name = fd->getName();
int n = fd->getNumParams();
function_kind kind = function_kind_member_method;
osprintf(os, "\n");
print_method_header(os, clazz, fd, method_name, n - 1, false, kind);
osprintf(os, "{\n");
print_argument_validity_check(os, fd, kind);
print_save_ctx(os, fd, kind);
print_on_error_continue(os);
osprintf(os, " auto res = %s(", c_name.c_str());
for (int i = 0; i < n - 1; ++i) {
ParmVarDecl *param = fd->getParamDecl(i);
if (i > 0)
osprintf(os, ", ");
print_method_param_use(os, param, i == 0);
}
osprintf(os, ", %s", enum_name.c_str());
osprintf(os, ");\n");
print_exceptional_execution_check(os, clazz, fd, kind);
print_method_return(os, clazz, fd);
osprintf(os, "}\n");
}
/* Print definitions for the methods in "clazz" derived from "fd",
* which sets an enum, to "os".
*
* A method is generated for each value in the enum, setting
* the enum to that value.
*/
void cpp_generator::print_set_enums_impl(ostream &os, const isl_class &clazz,
FunctionDecl *fd)
{
vector<set_enum>::const_iterator it;
const vector<set_enum> &set_enums = clazz.set_enums.at(fd);
for (it = set_enums.begin(); it != set_enums.end(); ++it) {
osprintf(os, "\n");
print_set_enum_impl(os, clazz, fd, it->name, it->method_name);
}
}
/* Print definitions for methods in "clazz" derived from functions
* that set an enum, to "os".
*/
void cpp_generator::print_set_enums_impl(ostream &os, const isl_class &clazz)
{
map<FunctionDecl *, vector<set_enum> >::const_iterator it;
for (it = clazz.set_enums.begin(); it != clazz.set_enums.end(); ++it)
print_set_enums_impl(os, clazz, it->first);
}
/* Print a definition for the "get" method "fd" in class "clazz",
* using a name that includes the "get_" prefix, to "os".
*
* This definition simply calls the variant without the "get_" prefix and
* returns its result.
* Note that static methods are not considered to be "get" methods.
*/
template<>
void cpp_generator::print_get_method<cpp_generator::impl>(ostream &os,
const isl_class &clazz, FunctionDecl *fd)
{
string get_name = clazz.base_method_name(fd);
string name = clazz.method_name(fd);
function_kind kind = function_kind_member_method;
int num_params = fd->getNumParams();
osprintf(os, "\n");
print_named_method_header(os, clazz, fd, get_name, false, kind);
osprintf(os, "{\n");
osprintf(os, " return %s(", name.c_str());
for (int i = 1; i < num_params; ++i) {
ParmVarDecl *param = fd->getParamDecl(i);
if (i != 1)
osprintf(os, ", ");
osprintf(os, "%s", param->getName().str().c_str());
}
osprintf(os, ");\n");
osprintf(os, "}\n");
}
/* Print definitions for methods "methods" in class "clazz" to "os".
*/
void cpp_generator::print_method_group_impl(ostream &os, const isl_class &clazz,
const function_set &methods)
{
function_set::const_iterator it;
for (it = methods.begin(); it != methods.end(); ++it)
print_method_variants<impl>(os, clazz, *it);
}
/* Print the use of "param" to "os".
*
* "load_from_this_ptr" specifies whether the parameter should be loaded from
* the this-ptr. In case a value is loaded from a this pointer, the original
* value must be preserved and must consequently be copied. Values that are
* loaded from parameters do not need to be preserved, as such values will
* already be copies of the actual parameters. It is consequently possible
* to directly take the pointer from these values, which saves
* an unnecessary copy.
*
* In case the parameter is a callback function, two parameters get printed,
* a wrapper for the callback function and a pointer to the actual
* callback function. The wrapper is expected to be available
* in a previously declared variable <name>_lambda, while
* the actual callback function is expected to be stored
* in a structure called <name>_data.
* The caller of this function must ensure that these variables exist.
*/
void cpp_generator::print_method_param_use(ostream &os, ParmVarDecl *param,
bool load_from_this_ptr)
{
string name = param->getName().str();
const char *name_str = name.c_str();
QualType type = param->getOriginalType();
if (type->isIntegerType()) {
osprintf(os, "%s", name_str);
return;
}
if (is_string(type)) {
osprintf(os, "%s.c_str()", name_str);
return;
}
if (is_callback(type)) {
osprintf(os, "%s_lambda, ", name_str);
osprintf(os, "&%s_data", name_str);
return;
}
if (!load_from_this_ptr)
osprintf(os, "%s.", name_str);
if (keeps(param)) {
osprintf(os, "get()");
} else {
if (load_from_this_ptr)
osprintf(os, "copy()");
else
osprintf(os, "release()");
}
}
/* Print code that checks that all isl object arguments to "method" are valid
* (not NULL) and throws an exception if they are not.
* "kind" specifies the kind of method that is being generated.
*
* If checked bindings are being generated,
* then no such check is performed.
*/
void cpp_generator::print_argument_validity_check(ostream &os,
FunctionDecl *method, function_kind kind)
{
int n;
bool first = true;
if (checked)
return;
n = method->getNumParams();
for (int i = 0; i < n; ++i) {
bool is_this;
ParmVarDecl *param = method->getParamDecl(i);
string name = param->getName().str();
const char *name_str = name.c_str();
QualType type = param->getOriginalType();
is_this = i == 0 && kind == function_kind_member_method;
if (!is_this && (is_isl_ctx(type) || !is_isl_type(type)))
continue;
if (first)
osprintf(os, " if (");
else
osprintf(os, " || ");
if (is_this)
osprintf(os, "!ptr");
else
osprintf(os, "%s.is_null()", name_str);
first = false;
}
if (first)
return;
osprintf(os, ")\n");
print_throw_NULL_input(os);
}
/* Print code for saving a copy of the isl::ctx available at the start
* of the method "method" in a "saved_ctx" variable,
* for use in exception handling.
* "kind" specifies what kind of method "method" is.
*
* If checked bindings are being generated,
* then the "saved_ctx" variable is not needed.
* If "method" is a member function, then obtain the isl_ctx from
* the "this" object.
* If the first argument of the method is an isl::ctx, then use that one.
* Otherwise, save a copy of the isl::ctx associated to the first argument
* of isl object type.
*/
void cpp_generator::print_save_ctx(ostream &os, FunctionDecl *method,
function_kind kind)
{
int n;
ParmVarDecl *param = method->getParamDecl(0);
QualType type = param->getOriginalType();
if (checked)
return;
if (kind == function_kind_member_method) {
osprintf(os, " auto saved_ctx = ctx();\n");
return;
}
if (is_isl_ctx(type)) {
const char *name;
name = param->getName().str().c_str();
osprintf(os, " auto saved_ctx = %s;\n", name);
return;
}
n = method->getNumParams();
for (int i = 0; i < n; ++i) {
ParmVarDecl *param = method->getParamDecl(i);
QualType type = param->getOriginalType();
if (!is_isl_type(type))
continue;
osprintf(os, " auto saved_ctx = %s.ctx();\n",
param->getName().str().c_str());
return;
}
}
/* Print code to make isl not print an error message when an error occurs
* within the current scope (if exceptions are available),
* since the error message will be included in the exception.
* If exceptions are not available, then exception::on_error
* is set to ISL_ON_ERROR_ABORT and isl is therefore made to abort instead.
*
* If checked bindings are being generated,
* then leave it to the user to decide what isl should do on error.
* Otherwise, assume that a valid isl::ctx is available
* in the "saved_ctx" variable,
* e.g., through a prior call to print_save_ctx.
*/
void cpp_generator::print_on_error_continue(ostream &os)
{
if (checked)
return;
osprintf(os, " options_scoped_set_on_error saved_on_error(saved_ctx, "
"exception::on_error);\n");
}
/* Print code to "os" that checks whether any of the persistent callbacks
* of "clazz" is set and if it failed with an exception. If so, the "eptr"
* in the corresponding data structure contains the exception
* that was caught and that needs to be rethrown.
* This field is cleared because the callback and its data may get reused.
*
* The check only needs to be generated for member methods since
* an object is needed for any of the persistent callbacks to be set.
*/
static void print_persistent_callback_exceptional_execution_check(ostream &os,
const isl_class &clazz, cpp_generator::function_kind kind)
{
const set<FunctionDecl *> &callbacks = clazz.persistent_callbacks;
set<FunctionDecl *>::const_iterator in;
if (kind != cpp_generator::function_kind_member_method)
return;
for (in = callbacks.begin(); in != callbacks.end(); ++in) {
string callback_name = clazz.persistent_callback_name(*in);
osprintf(os, " if (%s_data && %s_data->eptr) {\n",
callback_name.c_str(), callback_name.c_str());
osprintf(os, " std::exception_ptr eptr = %s_data->eptr;\n",
callback_name.c_str());
osprintf(os, " %s_data->eptr = nullptr;\n",
callback_name.c_str());
osprintf(os, " std::rethrow_exception(eptr);\n");
osprintf(os, " }\n");
}
}
/* Print code that checks whether the execution of the core of "method"
* of class "clazz" was successful.
* "kind" specifies what kind of method "method" is.
*
* If checked bindings are being generated,
* then no checks are performed.
*
* Otherwise, first check if any of the callbacks failed with
* an exception. If so, the "eptr" in the corresponding data structure
* contains the exception that was caught and that needs to be rethrown.
* Then check if the function call failed in any other way and throw
* the appropriate exception.
* In particular, if the return type is isl_stat, isl_bool or isl_size,
* then a negative value indicates a failure. If the return type
* is an isl type, then a NULL value indicates a failure.
* Assume print_save_ctx has made sure that a valid isl::ctx
* is available in the "ctx" variable.
*/
void cpp_generator::print_exceptional_execution_check(ostream &os,
const isl_class &clazz, FunctionDecl *method, function_kind kind)
{
int n;
bool check_null, check_neg;
QualType return_type = method->getReturnType();
if (checked)
return;
print_persistent_callback_exceptional_execution_check(os, clazz, kind);
n = method->getNumParams();
for (int i = 0; i < n; ++i) {
ParmVarDecl *param = method->getParamDecl(i);
const char *name;
if (!is_callback(param->getOriginalType()))
continue;
name = param->getName().str().c_str();
osprintf(os, " if (%s_data.eptr)\n", name);
osprintf(os, " std::rethrow_exception(%s_data.eptr);\n",
name);
}
check_neg = is_isl_neg_error(return_type);
check_null = is_isl_type(return_type);
if (!check_null && !check_neg)
return;
if (check_neg)
osprintf(os, " if (res < 0)\n");
else
osprintf(os, " if (!res)\n");
print_throw_last_error(os);
}
/* Does "fd" modify an object of a subclass based on a type function?
*/
static bool is_subclass_mutator(const isl_class &clazz, FunctionDecl *fd)
{
return clazz.is_type_subclass() && generator::is_mutator(clazz, fd);
}
/* Return the C++ return type of the method corresponding to "fd" in "clazz".
*
* If "fd" modifies an object of a subclass, then return
* the type of this subclass.
* Otherwise, return the C++ counterpart of the actual return type.
*/
std::string cpp_generator::get_return_type(const isl_class &clazz,
FunctionDecl *fd)
{
if (is_subclass_mutator(clazz, fd))
return type2cpp(clazz);
else
return type2cpp(fd->getReturnType());
}
/* Given a function "method" for setting a "clazz" persistent callback,
* print the implementations of the methods needed for that callback.
*
* In particular, print
* - the implementation of a static inline method
* for use as the C callback function
* - the definition of a private method for setting the callback function
* - the public method for constructing a new object with the callback set.
*/
void cpp_generator::print_set_persistent_callback(ostream &os,
const isl_class &clazz, FunctionDecl *method,
function_kind kind)
{
string fullname = method->getName();
ParmVarDecl *param = persistent_callback_arg(method);
string classname = type2cpp(clazz);
string pname;
string callback_name = clazz.persistent_callback_name(method);
osprintf(os, "\n");
print_persistent_callback_prototype(os, clazz, method, false);
osprintf(os, "\n");
osprintf(os, "{\n");
print_callback_body(os, 2, param, callback_name);
osprintf(os, "}\n\n");
pname = param->getName().str();
print_persistent_callback_setter_prototype(os, clazz, method, false);
osprintf(os, "\n");
osprintf(os, "{\n");
print_check_ptr_start(os, clazz, "ptr");
osprintf(os, " %s_data = std::make_shared<struct %s_data>();\n",
callback_name.c_str(), callback_name.c_str());
osprintf(os, " %s_data->func = %s;\n",
callback_name.c_str(), pname.c_str());
osprintf(os, " ptr = %s(ptr, &%s, %s_data.get());\n",
fullname.c_str(), callback_name.c_str(), callback_name.c_str());
print_check_ptr_end(os, "ptr");
osprintf(os, "}\n\n");
print_method_header(os, clazz, method, false, kind);
osprintf(os, "{\n");
osprintf(os, " auto copy = *this;\n");
osprintf(os, " copy.set_%s_data(%s);\n",
callback_name.c_str(), pname.c_str());
osprintf(os, " return copy;\n");
osprintf(os, "}\n");
}
/* Print the return statement of the C++ method corresponding
* to the C function "method" in class "clazz" to "os".
*
* The result of the isl function is returned as a new
* object if the underlying isl function returns an isl_* ptr, as a bool
* if the isl function returns an isl_bool, as void if the isl functions
* returns an isl_stat,
* as std::string if the isl function returns 'const char *', and as
* unmodified return value otherwise.
* If checked C++ bindings are being generated,
* then an isl_bool return type is transformed into a boolean and
* an isl_stat into a stat since no exceptions can be generated
* on negative results from the isl function.
* If the method returns a new instance of the same object type and
* if the class has any persistent callbacks, then the data
* for these callbacks are copied from the original to the new object.
* If "clazz" is a subclass that is based on a type function and
* if the return type corresponds to the superclass data type,
* then it is replaced by the subclass data type.
*/
void cpp_generator::print_method_return(ostream &os, const isl_class &clazz,
FunctionDecl *method)
{
QualType return_type = method->getReturnType();
string rettype_str = get_return_type(clazz, method);
bool returns_super = is_subclass_mutator(clazz, method);
if (is_isl_type(return_type) ||
(checked && is_isl_neg_error(return_type))) {
osprintf(os, " return manage(res)");
if (is_mutator(clazz, method) &&
clazz.has_persistent_callbacks())
osprintf(os, ".copy_callbacks(*this)");
if (returns_super)
osprintf(os, ".as<%s>()", rettype_str.c_str());
osprintf(os, ";\n");
} else if (is_isl_stat(return_type)) {
osprintf(os, " return;\n");
} else if (is_string(return_type)) {
osprintf(os, " std::string tmp(res);\n");
if (gives(method))
osprintf(os, " free(res);\n");
osprintf(os, " return tmp;\n");
} else {
osprintf(os, " return res;\n");
}
}
/* Return the formal parameter at position "pos" of "fd".
* However, if this parameter should be converted, as indicated
* by "convert", then return the second formal parameter
* of the conversion function instead.
*
* If "convert" is empty, then it is assumed that
* none of the arguments should be converted.
*/
ParmVarDecl *cpp_generator::get_param(FunctionDecl *fd, int pos,
const std::vector<bool> &convert)
{
ParmVarDecl *param = fd->getParamDecl(pos);
if (convert.size() == 0)
return param;
if (!convert[pos])
return param;
return conversions[param->getOriginalType().getTypePtr()];
}
/* Print the header for "method" in class "clazz", with name "cname" and
* "num_params" number of arguments, to "os".
*
* Print the header of a declaration if "is_declaration" is set, otherwise print
* the header of a method definition.
*
* "kind" specifies the kind of method that should be generated.
*
* "convert" specifies which of the method arguments should
* be automatically converted.
*
* This function prints headers for member methods, static methods, and
* constructors, either for their declaration or definition.
*
* Member functions are declared as "const", as they do not change the current
* object, but instead create a new object. They always retrieve the first
* parameter of the original isl function from the this-pointer of the object,
* such that only starting at the second parameter the parameters of the
* original function become part of the method's interface.
*
* A function
*
* __isl_give isl_set *isl_set_intersect(__isl_take isl_set *s1,
* __isl_take isl_set *s2);
*
* is translated into:
*
* inline set intersect(set set2) const;
*
* For static functions and constructors all parameters of the original isl
* function are exposed.
*
* Parameters that are defined as __isl_keep or are of type string, are passed
* as const reference, which allows the compiler to optimize the parameter
* transfer.
*
* Constructors are marked as explicit using the C++ keyword 'explicit' or as
* implicit using a comment in place of the explicit keyword. By annotating
* implicit constructors with a comment, users of the interface are made
* aware of the potential danger that implicit construction is possible
* for these constructors, whereas without a comment not every user would
* know that implicit construction is allowed in absence of an explicit keyword.
*
* If any of the arguments needs to be converted, then the argument
* of the method is changed to that of the source of the conversion.
* The name of the argument is, however, derived from the original
* function argument.
*/
void cpp_generator::print_method_header(ostream &os, const isl_class &clazz,
FunctionDecl *method, const string &cname, int num_params,
bool is_declaration, function_kind kind,
const std::vector<bool> &convert)
{
string rettype_str = get_return_type(clazz, method);
string classname = type2cpp(clazz);
int first_param = 0;
if (kind == function_kind_member_method)
first_param = 1;
if (is_declaration) {
osprintf(os, " ");
if (kind == function_kind_static_method)
osprintf(os, "static ");
osprintf(os, "inline ");
if (kind == function_kind_constructor) {
if (is_implicit_conversion(clazz, method))
osprintf(os, "/* implicit */ ");
else
osprintf(os, "explicit ");
}
}
if (kind != function_kind_constructor)
osprintf(os, "%s ", rettype_str.c_str());
if (!is_declaration)
osprintf(os, "%s::", classname.c_str());
if (kind != function_kind_constructor)
osprintf(os, "%s", cname.c_str());
else
osprintf(os, "%s", classname.c_str());
osprintf(os, "(");
for (int i = first_param; i < num_params; ++i) {
std::string name = method->getParamDecl(i)->getName().str();
ParmVarDecl *param = get_param(method, i, convert);
QualType type = param->getOriginalType();
string cpptype = type2cpp(type);
if (is_callback(type))
num_params--;
if (keeps(param) || is_string(type) || is_callback(type))
osprintf(os, "const %s &%s", cpptype.c_str(),
name.c_str());
else
osprintf(os, "%s %s", cpptype.c_str(), name.c_str());
if (i != num_params - 1)
osprintf(os, ", ");
}
osprintf(os, ")");
if (kind == function_kind_member_method)
osprintf(os, " const");
if (is_declaration)
osprintf(os, ";");
osprintf(os, "\n");
}
/* Print the header for a method called "name" in class "clazz"
* derived from "method" to "os".
*
* Print the header of a declaration if "is_declaration" is set, otherwise print
* the header of a method definition.
*
* "kind" specifies the kind of method that should be generated.
*
* "convert" specifies which of the method arguments should
* be automatically converted.
*/
void cpp_generator::print_named_method_header(ostream &os,
const isl_class &clazz, FunctionDecl *method, string name,
bool is_declaration, function_kind kind,
const std::vector<bool> &convert)
{
int num_params = method->getNumParams();
name = rename_method(name);
print_method_header(os, clazz, method, name, num_params,
is_declaration, kind, convert);
}
/* Print the header for "method" in class "clazz" to "os"
* using its default name.
*
* Print the header of a declaration if "is_declaration" is set, otherwise print
* the header of a method definition.
*
* "kind" specifies the kind of method that should be generated.
*/
void cpp_generator::print_method_header(ostream &os, const isl_class &clazz,
FunctionDecl *method, bool is_declaration, function_kind kind)
{
string name = clazz.method_name(method);
print_named_method_header(os, clazz, method, name, is_declaration,
kind);
}
/* Generate the list of argument types for a callback function of
* type "type". If "cpp" is set, then generate the C++ type list, otherwise
* the C type list.
*
* For a callback of type
*
* isl_stat (*)(__isl_take isl_map *map, void *user)
*
* the following C++ argument list is generated:
*
* map
*/
string cpp_generator::generate_callback_args(QualType type, bool cpp)
{
std::string type_str;
const FunctionProtoType *callback;
int num_params;
callback = extract_prototype(type);
num_params = callback->getNumArgs();
if (cpp)
num_params--;
for (long i = 0; i < num_params; i++) {
QualType type = callback->getArgType(i);
if (cpp)
type_str += type2cpp(type);
else
type_str += type.getAsString();
if (!cpp)
type_str += "arg_" + ::to_string(i);
if (i != num_params - 1)
type_str += ", ";
}
return type_str;
}
/* Generate the full cpp type of a callback function of type "type".
*
* For a callback of type
*
* isl_stat (*)(__isl_take isl_map *map, void *user)
*
* the following type is generated:
*
* std::function<stat(map)>
*/
string cpp_generator::generate_callback_type(QualType type)
{
std::string type_str;
const FunctionProtoType *callback = extract_prototype(type);
QualType return_type = callback->getReturnType();
string rettype_str = type2cpp(return_type);
type_str = "std::function<";
type_str += rettype_str;
type_str += "(";
type_str += generate_callback_args(type, true);
type_str += ")>";
return type_str;
}
/* Print the call to the C++ callback function "call",
* with the given indentation, wrapped
* for use inside the lambda function that is used as the C callback function,
* in the case where checked C++ bindings are being generated.
*
* In particular, print
*
* auto ret = @call@;
* return ret.release();
*/
void cpp_generator::print_wrapped_call_checked(ostream &os, int indent,
const string &call)
{
osprintf(os, indent, "auto ret = %s;\n", call.c_str());
osprintf(os, indent, "return ret.release();\n");
}
/* Print the call to the C++ callback function "call",
* with the given indentation and with return type "rtype", wrapped
* for use inside the lambda function that is used as the C callback function.
*
* In particular, print
*
* ISL_CPP_TRY {
* @call@;
* return isl_stat_ok;
* } ISL_CPP_CATCH_ALL {
* data->eptr = std::current_exception();
* return isl_stat_error;
* }
* or
* ISL_CPP_TRY {
* auto ret = @call@;
* return ret ? isl_bool_true : isl_bool_false;
* } ISL_CPP_CATCH_ALL {
* data->eptr = std::current_exception();
* return isl_bool_error;
* }
* or
* ISL_CPP_TRY {
* auto ret = @call@;
* return ret.release();
* } ISL_CPP_CATCH_ALL {
* data->eptr = std::current_exception();
* return NULL;
* }
*
* depending on the return type.
*
* where ISL_CPP_TRY is defined to "try" and ISL_CPP_CATCH_ALL to "catch (...)"
* (if exceptions are available).
*
* If checked C++ bindings are being generated, then
* the call is wrapped differently.
*/
void cpp_generator::print_wrapped_call(ostream &os, int indent,
const string &call, QualType rtype)
{
if (checked)
return print_wrapped_call_checked(os, indent, call);
osprintf(os, indent, "ISL_CPP_TRY {\n");
if (is_isl_stat(rtype))
osprintf(os, indent, " %s;\n", call.c_str());
else
osprintf(os, indent, " auto ret = %s;\n", call.c_str());
if (is_isl_stat(rtype))
osprintf(os, indent, " return isl_stat_ok;\n");
else if (is_isl_bool(rtype))
osprintf(os, indent,
" return ret ? isl_bool_true : isl_bool_false;\n");
else
osprintf(os, indent, " return ret.release();\n");
osprintf(os, indent, "} ISL_CPP_CATCH_ALL {\n");
osprintf(os, indent, " data->eptr = std::current_exception();\n");
if (is_isl_stat(rtype))
osprintf(os, indent, " return isl_stat_error;\n");
else if (is_isl_bool(rtype))
osprintf(os, indent, " return isl_bool_error;\n");
else
osprintf(os, indent, " return NULL;\n");
osprintf(os, indent, "}\n");
}
/* Print the declaration for a "prefix"_data data structure
* that can be used for passing to a C callback function
* containing a copy of the C++ callback function "param",
* along with an std::exception_ptr that is used to store any
* exceptions thrown in the C++ callback.
*
* If the C callback is of the form
*
* isl_stat (*fn)(__isl_take isl_map *map, void *user)
*
* then the following declaration is printed:
*
* struct <prefix>_data {
* std::function<stat(map)> func;
* std::exception_ptr eptr;
* }
*
* (without a newline or a semicolon).
*
* The std::exception_ptr object is not added to "prefix"_data
* if checked C++ bindings are being generated.
*/
void cpp_generator::print_callback_data_decl(ostream &os, ParmVarDecl *param,
const string &prefix)
{
string cpp_args;
cpp_args = generate_callback_type(param->getType());
osprintf(os, " struct %s_data {\n", prefix.c_str());
osprintf(os, " %s func;\n", cpp_args.c_str());
if (!checked)
osprintf(os, " std::exception_ptr eptr;\n");
osprintf(os, " }");
}
/* Print the body of C function callback with the given indentation
* that can be use as an argument to "param" for marshalling
* the corresponding C++ callback.
* The data structure that contains the C++ callback is of type
* "prefix"_data.
*
* For a callback of the form
*
* isl_stat (*fn)(__isl_take isl_map *map, void *user)
*
* the following code is generated:
*
* auto *data = static_cast<struct <prefix>_data *>(arg_1);
* ISL_CPP_TRY {
* stat ret = (data->func)(manage(arg_0));
* return isl_stat_ok;
* } ISL_CPP_CATCH_ALL {
* data->eptr = std::current_exception();
* return isl_stat_error;
* }
*
* If checked C++ bindings are being generated, then
* generate the following code:
*
* auto *data = static_cast<struct <prefix>_data *>(arg_1);
* stat ret = (data->func)(manage(arg_0));
* return isl_stat(ret);
*/
void cpp_generator::print_callback_body(ostream &os, int indent,
ParmVarDecl *param, const string &prefix)
{
QualType ptype, rtype;
string call, last_idx;
const FunctionProtoType *callback;
int num_params;
ptype = param->getType();
callback = extract_prototype(ptype);
rtype = callback->getReturnType();
num_params = callback->getNumArgs();
last_idx = ::to_string(num_params - 1);
call = "(data->func)(";
for (long i = 0; i < num_params - 1; i++) {
if (!callback_takes_argument(param, i))
call += "manage_copy";
else
call += "manage";
call += "(arg_" + ::to_string(i) + ")";
if (i != num_params - 2)
call += ", ";
}
call += ")";
osprintf(os, indent,
"auto *data = static_cast<struct %s_data *>(arg_%s);\n",
prefix.c_str(), last_idx.c_str());
print_wrapped_call(os, indent, call, rtype);
}
/* Print the local variables that are needed for a callback argument,
* in particular, print a lambda function that wraps the callback and
* a pointer to the actual C++ callback function.
*
* For a callback of the form
*
* isl_stat (*fn)(__isl_take isl_map *map, void *user)
*
* the following lambda function is generated:
*
* auto fn_lambda = [](isl_map *arg_0, void *arg_1) -> isl_stat {
* auto *data = static_cast<struct fn_data *>(arg_1);
* try {
* stat ret = (data->func)(manage(arg_0));
* return isl_stat_ok;
* } catch (...) {
* data->eptr = std::current_exception();
* return isl_stat_error;
* }
* };
*
* A copy of the std::function C++ callback function is stored in
* a fn_data data structure for passing to the C callback function,
* along with an std::exception_ptr that is used to store any
* exceptions thrown in the C++ callback.
*
* struct fn_data {
* std::function<stat(map)> func;
* std::exception_ptr eptr;
* } fn_data = { fn };
*
* This std::function object represents the actual user
* callback function together with the locally captured state at the caller.
*
* The lambda function is expected to be used as a C callback function
* where the lambda itself is provided as the function pointer and
* where the user void pointer is a pointer to fn_data.
* The std::function object is extracted from the pointer to fn_data
* inside the lambda function.
*
* The std::exception_ptr object is not added to fn_data
* if checked C++ bindings are being generated.
* The body of the generated lambda function then is as follows:
*
* stat ret = (data->func)(manage(arg_0));
* return isl_stat(ret);
*
* If the C callback does not take its arguments, then
* manage_copy is used instead of manage.
*/
void cpp_generator::print_callback_local(ostream &os, ParmVarDecl *param)
{
string pname;
QualType ptype, rtype;
string c_args, cpp_args, rettype;
const FunctionProtoType *callback;
pname = param->getName().str();
ptype = param->getType();
c_args = generate_callback_args(ptype, false);
callback = extract_prototype(ptype);
rtype = callback->getReturnType();
rettype = rtype.getAsString();
print_callback_data_decl(os, param, pname);
osprintf(os, " %s_data = { %s };\n", pname.c_str(), pname.c_str());
osprintf(os, " auto %s_lambda = [](%s) -> %s {\n",
pname.c_str(), c_args.c_str(), rettype.c_str());
print_callback_body(os, 4, param, pname);
osprintf(os, " };\n");
}
/* An array listing functions that must be renamed and the function name they
* should be renamed to. We currently rename functions in case their name would
* match a reserved C++ keyword, which is not allowed in C++.
*/
static const char *rename_map[][2] = {
{ "union", "unite" },
};
/* Rename method "name" in case the method name in the C++ bindings should not
* match the name in the C bindings. We do this for example to avoid
* C++ keywords.
*/
std::string cpp_generator::rename_method(std::string name)
{
for (size_t i = 0; i < sizeof(rename_map) / sizeof(rename_map[0]); i++)
if (name.compare(rename_map[i][0]) == 0)
return rename_map[i][1];
return name;
}
/* Translate isl class "clazz" to its corresponding C++ type.
* Use the name of the type based subclass, if any.
*/
string cpp_generator::type2cpp(const isl_class &clazz)
{
return type2cpp(clazz.subclass_name);
}
/* Translate type string "type_str" to its C++ name counterpart.
*/
string cpp_generator::type2cpp(string type_str)
{
return type_str.substr(4);
}
/* Return the C++ counterpart to the isl_bool type.
* If checked C++ bindings are being generated,
* then this is "boolean". Otherwise, it is simply "bool".
*/
string cpp_generator::isl_bool2cpp()
{
return checked ? "boolean" : "bool";
}
/* Return the namespace of the generated C++ bindings.
*/
string cpp_generator::isl_namespace()
{
return checked ? "isl::checked::" : "isl::";
}
/* Translate QualType "type" to its C++ name counterpart.
*
* An isl_bool return type is translated into "bool",
* while an isl_stat is translated into "void" and
* an isl_size is translated to "unsigned".
* The exceptional cases are handled through exceptions.
* If checked C++ bindings are being generated, then
* C++ counterparts of isl_bool, isl_stat and isl_size need to be used instead.
*/
string cpp_generator::type2cpp(QualType type)
{
if (is_isl_type(type))
return isl_namespace() +
type2cpp(type->getPointeeType().getAsString());
if (is_isl_bool(type))
return isl_bool2cpp();
if (is_isl_stat(type))
return checked ? "stat" : "void";
if (is_isl_size(type))
return checked ? "class size" : "unsigned";
if (type->isIntegerType())
return type.getAsString();
if (is_string(type))
return "std::string";
if (is_callback(type))
return generate_callback_type(type);
die("Cannot convert type to C++ type");
}
/* Check if "subclass_type" is a subclass of "class_type".
*/
bool cpp_generator::is_subclass(QualType subclass_type,
const isl_class &class_type)
{
std::string type_str = subclass_type->getPointeeType().getAsString();
std::vector<std::string> superclasses;
std::vector<const isl_class *> parents;
std::vector<std::string>::iterator ci;
superclasses = generator::find_superclasses(classes[type_str].type);
for (ci = superclasses.begin(); ci < superclasses.end(); ci++)
parents.push_back(&classes[*ci]);
while (!parents.empty()) {
const isl_class *candidate = parents.back();
parents.pop_back();
if (&class_type == candidate)
return true;
superclasses = generator::find_superclasses(candidate->type);
for (ci = superclasses.begin(); ci < superclasses.end(); ci++)
parents.push_back(&classes[*ci]);
}
return false;
}
/* Check if "cons" is an implicit conversion constructor of class "clazz".
*
* An implicit conversion constructor is generated in case "cons" has a single
* parameter, where the parameter type is a subclass of the class that is
* currently being generated.
*/
bool cpp_generator::is_implicit_conversion(const isl_class &clazz,
FunctionDecl *cons)
{
ParmVarDecl *param = cons->getParamDecl(0);
QualType type = param->getOriginalType();
int num_params = cons->getNumParams();
if (num_params != 1)
return false;
if (is_isl_type(type) && !is_isl_ctx(type) && is_subclass(type, clazz))
return true;
return false;
}
/* Get kind of "method" in "clazz".
*
* Given the declaration of a static or member method, returns its kind.
*/
cpp_generator::function_kind cpp_generator::get_method_kind(
const isl_class &clazz, FunctionDecl *method)
{
if (is_static(clazz, method))
return function_kind_static_method;
else
return function_kind_member_method;
}