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
|
#include "slang-ir-util.h"
#include "slang-ir-clone.h"
#include "slang-ir-dce.h"
#include "slang-ir-dominators.h"
#include "slang-ir-insts.h"
namespace Slang
{
bool isPointerOfType(IRInst* type, IROp opCode)
{
if (auto ptrType = as<IRPtrTypeBase>(type))
{
return ptrType->getValueType() && ptrType->getValueType()->getOp() == opCode;
}
return false;
}
bool isUserPointerType(IRInst* type)
{
auto ptrType = as<IRPtrType>(type);
if (!ptrType)
return false;
return ptrType->getAddressSpace() == AddressSpace::UserPointer;
}
IRType* getVectorElementType(IRType* type)
{
if (auto vectorType = as<IRVectorType>(type))
return vectorType->getElementType();
if (auto coopVecType = as<IRCoopVectorType>(type))
return coopVecType->getElementType();
if (auto coopMatType = as<IRCoopMatrixType>(type))
return coopMatType->getElementType();
return type;
}
IRType* getVectorOrCoopMatrixElementType(IRType* type)
{
auto vectorElementType = getVectorElementType(type);
if (vectorElementType != type)
return vectorElementType;
if (auto coopMatrixType = as<IRCoopMatrixType>(type))
return coopMatrixType->getElementType();
return type;
}
IRType* getMatrixElementType(IRType* type)
{
if (auto matrixType = as<IRMatrixType>(type))
return matrixType->getElementType();
return type;
}
Dictionary<IRInst*, IRInst*> buildInterfaceRequirementDict(IRInterfaceType* interfaceType)
{
Dictionary<IRInst*, IRInst*> result;
for (UInt i = 0; i < interfaceType->getOperandCount(); i++)
{
auto entry = as<IRInterfaceRequirementEntry>(interfaceType->getOperand(i));
if (!entry)
continue;
result[entry->getRequirementKey()] = entry->getRequirementVal();
}
return result;
}
bool isPointerOfType(IRInst* type, IRInst* elementType)
{
if (auto ptrType = as<IRPtrTypeBase>(type))
{
return ptrType->getValueType() &&
isTypeEqual(ptrType->getValueType(), (IRType*)elementType);
}
return false;
}
bool isPtrToClassType(IRInst* type)
{
return isPointerOfType(type, kIROp_ClassType);
}
bool isPtrToArrayType(IRInst* type)
{
return isPointerOfType(type, kIROp_ArrayType) || isPointerOfType(type, kIROp_UnsizedArrayType);
}
bool isComInterfaceType(IRType* type)
{
if (!type)
return false;
if (type->findDecoration<IRComInterfaceDecoration>() || type->getOp() == kIROp_ComPtrType)
{
return true;
}
if (auto witnessTableType = as<IRWitnessTableTypeBase>(type))
{
return isComInterfaceType((IRType*)witnessTableType->getConformanceType());
}
if (auto ptrType = as<IRNativePtrType>(type))
{
auto valueType = ptrType->getValueType();
return valueType->findDecoration<IRComInterfaceDecoration>() != nullptr;
}
return false;
}
IROp getTypeStyle(IROp op)
{
switch (op)
{
case kIROp_VoidType:
case kIROp_BoolType:
case kIROp_EnumType:
{
return op;
}
case kIROp_Int8Type:
case kIROp_Int16Type:
case kIROp_IntType:
case kIROp_UInt8Type:
case kIROp_UInt16Type:
case kIROp_UIntType:
case kIROp_Int64Type:
case kIROp_UInt64Type:
case kIROp_IntPtrType:
case kIROp_UIntPtrType:
{
// All int like
return kIROp_IntType;
}
case kIROp_HalfType:
case kIROp_FloatType:
case kIROp_DoubleType:
{
// All float like
return kIROp_FloatType;
}
default:
return kIROp_Invalid;
}
}
IROp getTypeStyle(BaseType op)
{
switch (op)
{
case BaseType::Void:
return kIROp_VoidType;
case BaseType::Bool:
return kIROp_BoolType;
case BaseType::Char:
case BaseType::Int8:
case BaseType::Int16:
case BaseType::Int:
case BaseType::Int64:
case BaseType::IntPtr:
case BaseType::UInt8:
case BaseType::UInt16:
case BaseType::UInt:
case BaseType::UInt64:
case BaseType::UIntPtr:
return kIROp_IntType;
case BaseType::Half:
case BaseType::Float:
case BaseType::Double:
return kIROp_FloatType;
default:
return kIROp_Invalid;
}
}
IRInst* specializeWithGeneric(
IRBuilder& builder,
IRInst* genericToSpecialize,
IRGeneric* userGeneric)
{
List<IRInst*> genArgs;
for (auto param : userGeneric->getFirstBlock()->getParams())
{
genArgs.add(param);
}
return builder.emitSpecializeInst(
builder.getTypeKind(),
genericToSpecialize,
(UInt)genArgs.getCount(),
genArgs.getBuffer());
}
IRInst* maybeSpecializeWithGeneric(
IRBuilder& builder,
IRInst* genericToSpecailize,
IRInst* userGeneric)
{
if (auto gen = as<IRGeneric>(userGeneric))
{
if (auto toSpecialize = as<IRGeneric>(genericToSpecailize))
{
return specializeWithGeneric(builder, toSpecialize, gen);
}
}
return genericToSpecailize;
}
// Returns true if is not possible to produce side-effect from a value of `dataType`.
bool isValueType(IRInst* dataType)
{
dataType = getResolvedInstForDecorations(unwrapAttributedType(dataType));
if (as<IRBasicType>(dataType))
return true;
switch (dataType->getOp())
{
case kIROp_StructType:
case kIROp_InterfaceType:
case kIROp_ClassType:
case kIROp_VectorType:
case kIROp_MatrixType:
case kIROp_TupleType:
case kIROp_ResultType:
case kIROp_OptionalType:
case kIROp_DifferentialPairType:
case kIROp_DifferentialPairUserCodeType:
case kIROp_DynamicType:
case kIROp_AnyValueType:
case kIROp_ArrayType:
case kIROp_FuncType:
case kIROp_RaytracingAccelerationStructureType:
case kIROp_GLSLAtomicUintType:
case kIROp_EnumType:
return true;
default:
// Read-only resource handles are considered as Value type.
if (auto resType = as<IRResourceTypeBase>(dataType))
return (resType->getAccess() == SLANG_RESOURCE_ACCESS_READ);
else if (as<IRSamplerStateTypeBase>(dataType))
return true;
else if (as<IRHLSLByteAddressBufferType>(dataType))
return true;
else if (as<IRHLSLStructuredBufferType>(dataType))
return true;
return false;
}
}
bool isScalarOrVectorType(IRInst* type)
{
switch (type->getOp())
{
case kIROp_VectorType:
return true;
default:
return as<IRBasicType>(type) != nullptr;
}
}
bool isSimpleDataType(IRType* type)
{
type = (IRType*)unwrapAttributedType(type);
if (as<IRBasicType>(type))
return true;
switch (type->getOp())
{
case kIROp_StructType:
{
auto structType = as<IRStructType>(type);
for (auto field : structType->getFields())
{
if (!isSimpleDataType(field->getFieldType()))
return false;
}
return true;
break;
}
case kIROp_Param:
case kIROp_VectorType:
case kIROp_MatrixType:
case kIROp_InterfaceType:
case kIROp_AnyValueType:
case kIROp_PtrType:
return true;
case kIROp_EnumType:
{
auto enumType = as<IREnumType>(type);
auto tagType = enumType->getTagType();
return isSimpleDataType(tagType);
}
case kIROp_ArrayType:
case kIROp_UnsizedArrayType:
return isSimpleDataType((IRType*)type->getOperand(0));
default:
return false;
}
}
bool isSimpleHLSLDataType(IRInst* inst)
{
// TODO: Add criteria
// https://github.com/shader-slang/slang/issues/4792
SLANG_UNUSED(inst);
return true;
}
bool isWrapperType(IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_ArrayType:
case kIROp_TextureType:
case kIROp_VectorType:
case kIROp_MatrixType:
case kIROp_PtrType:
case kIROp_RefParamType:
case kIROp_BorrowInParamType:
case kIROp_HLSLStructuredBufferType:
case kIROp_HLSLRWStructuredBufferType:
case kIROp_HLSLRasterizerOrderedStructuredBufferType:
case kIROp_HLSLAppendStructuredBufferType:
case kIROp_HLSLConsumeStructuredBufferType:
case kIROp_TupleType:
case kIROp_OptionalType:
case kIROp_TypePack:
return true;
default:
return false;
}
}
SourceLoc findFirstUseLoc(IRInst* inst)
{
for (auto use = inst->firstUse; use; use = use->nextUse)
{
if (use->getUser()->sourceLoc.isValid())
{
return use->getUser()->sourceLoc;
}
}
return inst->sourceLoc;
}
IRInst* hoistValueFromGeneric(
IRBuilder& inBuilder,
IRInst* value,
IRInst*& outSpecializedVal,
bool replaceExistingValue)
{
auto outerGeneric = as<IRGeneric>(findOuterGeneric(value));
if (!outerGeneric)
return value;
IRBuilder builder = inBuilder;
builder.setInsertBefore(outerGeneric);
auto newGeneric = builder.emitGeneric();
builder.setInsertInto(newGeneric);
builder.emitBlock();
IRInst* newResultVal = nullptr;
// Clone insts in outerGeneric up until `value`.
IRCloneEnv cloneEnv;
for (auto inst : outerGeneric->getFirstBlock()->getChildren())
{
auto newInst = cloneInst(&cloneEnv, &builder, inst);
if (inst == value)
{
builder.emitReturn(newInst);
newResultVal = newInst;
break;
}
}
SLANG_RELEASE_ASSERT(newResultVal);
if (newResultVal->getOp() == kIROp_Func)
{
IRBuilder subBuilder = builder;
IRInst* subOutSpecialized = nullptr;
auto genericFuncType = hoistValueFromGeneric(
subBuilder,
newResultVal->getFullType(),
subOutSpecialized,
false);
newGeneric->setFullType((IRType*)genericFuncType);
}
else
{
newGeneric->setFullType(builder.getTypeKind());
}
if (replaceExistingValue)
{
builder.setInsertBefore(value);
outSpecializedVal = specializeWithGeneric(builder, newGeneric, outerGeneric);
value->replaceUsesWith(outSpecializedVal);
value->removeAndDeallocate();
}
eliminateDeadCode(newGeneric);
return newGeneric;
}
void moveInstChildren(IRInst* dest, IRInst* src)
{
for (auto child = dest->getFirstDecorationOrChild(); child;)
{
auto next = child->getNextInst();
child->removeAndDeallocate();
child = next;
}
for (auto child = src->getFirstDecorationOrChild(); child;)
{
auto next = child->getNextInst();
child->insertAtEnd(dest);
child = next;
}
}
String dumpIRToString(IRInst* root, IRDumpOptions options)
{
StringBuilder sb;
StringWriter writer(&sb, Slang::WriterFlag::AutoFlush);
dumpIR(root, options, nullptr, &writer);
return sb.toString();
}
void copyNameHintAndDebugDecorations(IRInst* dest, IRInst* src)
{
IRDecoration* nameHintDecoration = nullptr;
IRDecoration* linkageDecoration = nullptr;
IRDecoration* debugLocationDecoration = nullptr;
for (auto decor = src->getFirstDecoration(); decor; decor = decor->getNextDecoration())
{
switch (decor->getOp())
{
case kIROp_NameHintDecoration:
nameHintDecoration = decor;
break;
case kIROp_ImportDecoration:
case kIROp_ExportDecoration:
linkageDecoration = decor;
break;
case kIROp_DebugLocationDecoration:
debugLocationDecoration = decor;
break;
}
}
if (nameHintDecoration)
{
cloneDecoration(nameHintDecoration, dest);
}
if (linkageDecoration)
{
cloneDecoration(linkageDecoration, dest);
}
if (debugLocationDecoration)
{
cloneDecoration(debugLocationDecoration, dest);
}
}
void getTypeNameHint(StringBuilder& sb, IRInst* type)
{
if (!type)
return;
switch (type->getOp())
{
case kIROp_BoolType:
sb << "bool";
break;
case kIROp_FloatType:
sb << "float";
break;
case kIROp_HalfType:
sb << "half";
break;
case kIROp_DoubleType:
sb << "double";
break;
case kIROp_IntType:
sb << "int";
break;
case kIROp_Int8Type:
sb << "int8";
break;
case kIROp_Int16Type:
sb << "int16";
break;
case kIROp_Int64Type:
sb << "int64";
break;
case kIROp_IntPtrType:
sb << "intptr";
break;
case kIROp_UIntType:
sb << "uint";
break;
case kIROp_UInt8Type:
sb << "uint8";
break;
case kIROp_UInt16Type:
sb << "uint16";
break;
case kIROp_UInt64Type:
sb << "uint64";
break;
case kIROp_UIntPtrType:
sb << "uintptr";
break;
case kIROp_CharType:
sb << "char";
break;
case kIROp_StringType:
sb << "string";
break;
case kIROp_ArrayType:
sb << "array<";
getTypeNameHint(sb, type->getOperand(0));
sb << ",";
getTypeNameHint(sb, as<IRArrayType>(type)->getElementCount());
sb << ">";
break;
case kIROp_UnsizedArrayType:
sb << "runtime_array<";
getTypeNameHint(sb, type->getOperand(0));
sb << ">";
break;
case kIROp_SubpassInputType:
{
auto textureType = as<IRSubpassInputType>(type);
sb << "SubpassInput";
if (textureType->isMultisample())
sb << "MS";
break;
}
case kIROp_TextureType:
case kIROp_GLSLImageType:
{
auto textureType = as<IRResourceTypeBase>(type);
switch (textureType->getAccess())
{
case SLANG_RESOURCE_ACCESS_APPEND:
sb << "Append";
break;
case SLANG_RESOURCE_ACCESS_CONSUME:
sb << "Consume";
break;
case SLANG_RESOURCE_ACCESS_RASTER_ORDERED:
sb << "RasterizerOrdered";
break;
case SLANG_RESOURCE_ACCESS_WRITE:
sb << "RW";
break;
case SLANG_RESOURCE_ACCESS_FEEDBACK:
sb << "Feedback";
break;
case SLANG_RESOURCE_ACCESS_READ:
break;
}
if (textureType->isCombined())
{
switch (textureType->GetBaseShape())
{
case SLANG_TEXTURE_1D:
sb << "Sampler1D";
break;
case SLANG_TEXTURE_2D:
sb << "Sampler2D";
break;
case SLANG_TEXTURE_3D:
sb << "Sampler3D";
break;
case SLANG_TEXTURE_CUBE:
sb << "SamplerCube";
break;
case SLANG_TEXTURE_BUFFER:
sb << "SamplerBuffer";
break;
}
}
else
{
switch (textureType->GetBaseShape())
{
case SLANG_TEXTURE_1D:
sb << "Texture1D";
break;
case SLANG_TEXTURE_2D:
sb << "Texture2D";
break;
case SLANG_TEXTURE_3D:
sb << "Texture3D";
break;
case SLANG_TEXTURE_CUBE:
sb << "TextureCube";
break;
case SLANG_TEXTURE_BUFFER:
sb << "Buffer";
break;
}
}
if (textureType->isMultisample())
{
sb << "MS";
}
if (textureType->isArray())
{
sb << "Array";
}
if (textureType->isShadow())
{
sb << "Shadow";
}
}
break;
case kIROp_ParameterBlockType:
sb << "ParameterBlock<";
getTypeNameHint(sb, as<IRParameterBlockType>(type)->getElementType());
sb << ">";
break;
case kIROp_ConstantBufferType:
sb << "cbuffer<";
getTypeNameHint(sb, as<IRConstantBufferType>(type)->getElementType());
sb << ">";
break;
case kIROp_TextureBufferType:
sb << "tbuffer<";
getTypeNameHint(sb, as<IRTextureBufferType>(type)->getElementType());
sb << ">";
break;
case kIROp_GLSLShaderStorageBufferType:
sb << "StorageBuffer<";
getTypeNameHint(sb, as<IRGLSLShaderStorageBufferType>(type)->getElementType());
sb << ">";
break;
case kIROp_HLSLByteAddressBufferType:
sb << "ByteAddressBuffer";
break;
case kIROp_HLSLRWByteAddressBufferType:
sb << "RWByteAddressBuffer";
break;
case kIROp_HLSLRasterizerOrderedByteAddressBufferType:
sb << "RasterizerOrderedByteAddressBuffer";
break;
case kIROp_GLSLAtomicUintType:
sb << "AtomicCounter";
break;
case kIROp_RaytracingAccelerationStructureType:
sb << "RayTracingAccelerationStructure";
break;
case kIROp_HitObjectType:
sb << "HitObject";
break;
case kIROp_HLSLStructuredBufferType:
sb << "StructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());
sb << ">";
break;
case kIROp_HLSLRWStructuredBufferType:
sb << "RWStructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());
sb << ">";
break;
case kIROp_HLSLAppendStructuredBufferType:
sb << "AppendStructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());
sb << ">";
break;
case kIROp_HLSLConsumeStructuredBufferType:
sb << "ConsumeStructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());
sb << ">";
break;
case kIROp_HLSLRasterizerOrderedStructuredBufferType:
sb << "RasterizerOrderedStructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());
sb << ">";
break;
case kIROp_SamplerStateType:
sb << "SamplerState";
break;
case kIROp_SamplerComparisonStateType:
sb << "SamplerComparisonState";
break;
case kIROp_TextureFootprintType:
sb << "TextureFootprint";
break;
case kIROp_Specialize:
{
auto specialize = as<IRSpecialize>(type);
getTypeNameHint(sb, specialize->getBase());
sb << "<";
bool isFirst = true;
for (UInt i = 0; i < specialize->getArgCount(); i++)
{
auto arg = specialize->getArg(i);
if (!arg->getDataType())
continue;
if (arg->getDataType()->getOp() == kIROp_WitnessTableType)
continue;
if (!isFirst)
sb << ",";
getTypeNameHint(sb, arg);
isFirst = false;
}
sb << ">";
}
break;
case kIROp_AttributedType:
getTypeNameHint(sb, as<IRAttributedType>(type)->getBaseType());
break;
case kIROp_RateQualifiedType:
getTypeNameHint(sb, as<IRRateQualifiedType>(type)->getValueType());
break;
case kIROp_VectorType:
sb << "vector<";
getTypeNameHint(sb, type->getOperand(0));
sb << ",";
getTypeNameHint(sb, as<IRVectorType>(type)->getElementCount());
sb << ">";
break;
case kIROp_MatrixType:
sb << "matrix<";
getTypeNameHint(sb, type->getOperand(0));
sb << ",";
getTypeNameHint(sb, as<IRMatrixType>(type)->getRowCount());
sb << ",";
getTypeNameHint(sb, as<IRMatrixType>(type)->getColumnCount());
sb << ">";
break;
case kIROp_IntLit:
sb << as<IRIntLit>(type)->getValue();
break;
case kIROp_BoolLit:
sb << (as<IRBoolLit>(type)->getValue() ? "true" : "false");
break;
case kIROp_FloatLit:
sb << as<IRFloatLit>(type)->getValue();
break;
case kIROp_StringLit:
{
auto stringLit = as<IRStringLit>(type);
sb << "\"";
sb << stringLit->getStringSlice();
sb << "\"";
}
break;
case kIROp_VoidLit:
sb << "void";
break;
case kIROp_PtrLit:
{
auto ptrLit = as<IRPtrLit>(type);
sb << "ptr_";
sb << (UInt64)ptrLit->getValue();
}
break;
default:
if (auto decor = type->findDecoration<IRNameHintDecoration>())
sb << decor->getName();
break;
}
}
IRInst* getRootAddr(IRInst* addr)
{
for (;;)
{
switch (addr->getOp())
{
case kIROp_GetElementPtr:
case kIROp_FieldAddress:
addr = addr->getOperand(0);
continue;
default:
break;
}
break;
}
return addr;
}
IRInst* getRootAddr(IRInst* addr, List<IRInst*>& outAccessChain, List<IRInst*>* outTypes)
{
for (;;)
{
switch (addr->getOp())
{
case kIROp_GetElementPtr:
case kIROp_FieldAddress:
outAccessChain.add(addr->getOperand(1));
if (outTypes)
outTypes->add(addr->getFullType());
addr = addr->getOperand(0);
continue;
default:
break;
}
break;
}
outAccessChain.reverse();
if (outTypes)
outTypes->reverse();
return addr;
}
IRInst* getRootBufferOrAddr(IRInst* addr)
{
auto rootAddr = getRootAddr(addr);
if (as<IRRWStructuredBufferGetElementPtr>(rootAddr))
{
auto bufferHandle = rootAddr->getOperand(0);
// Check if the bufferHandle itself is a load from a global parameter.
if (auto load = as<IRLoad>(bufferHandle))
{
auto newRoot = getRootAddr(load->getPtr());
if (newRoot->getOp() == kIROp_GlobalParam)
return newRoot;
}
}
return rootAddr;
}
// The aliasing class of an address. This is used to determine
// if two addresses may alias.
enum class AddressAliasingClass
{
Unknown,
UserPointer, // A user pointer into global memory
Var, // A thread-local or groupshared var.
ConstantBuffer, // A constant buffer or parameter block.
BoundBuffer, // A bound buffer.
BoundTexture, // A bound texture resource.
DescriptorHandle, // A bindless buffer or resource.
};
AddressAliasingClass getAliasingClass(IRInst* addr)
{
if (auto globalParam = as<IRGlobalParam>(addr))
{
auto type = unwrapArray(globalParam->getDataType());
if (!type)
return AddressAliasingClass::Unknown;
switch (type->getOp())
{
case kIROp_TextureType:
return AddressAliasingClass::BoundTexture;
case kIROp_HLSLStructuredBufferType:
case kIROp_HLSLRWStructuredBufferType:
case kIROp_HLSLAppendStructuredBufferType:
case kIROp_HLSLConsumeStructuredBufferType:
case kIROp_HLSLRasterizerOrderedStructuredBufferType:
case kIROp_HLSLByteAddressBufferType:
case kIROp_HLSLRWByteAddressBufferType:
case kIROp_HLSLRasterizerOrderedByteAddressBufferType:
case kIROp_GLSLShaderStorageBufferType:
return AddressAliasingClass::BoundBuffer;
case kIROp_ConstantBufferType:
case kIROp_ParameterBlockType:
return AddressAliasingClass::ConstantBuffer;
case kIROp_PtrType:
if (isUserPointerType(type))
return AddressAliasingClass::UserPointer;
return AddressAliasingClass::Unknown;
case kIROp_DynamicResourceType:
return AddressAliasingClass::DescriptorHandle;
default:
return AddressAliasingClass::Unknown;
}
}
else if (as<IRVar>(addr))
return AddressAliasingClass::Var;
else if (as<IRGlobalVar>(addr))
return AddressAliasingClass::Var;
else if (as<IRRWStructuredBufferGetElementPtr>(addr))
return AddressAliasingClass::DescriptorHandle;
else if (as<IRCastDescriptorHandleToResource>(addr))
return AddressAliasingClass::DescriptorHandle;
auto type = addr->getDataType();
if (isUserPointerType(type))
return AddressAliasingClass::UserPointer;
return AddressAliasingClass::Unknown;
}
bool canAddrClassesAlias(AddressAliasingClass c1, AddressAliasingClass c2)
{
if (c1 == AddressAliasingClass::Unknown || c2 == AddressAliasingClass::Unknown)
return true;
switch (c1)
{
case AddressAliasingClass::Unknown:
return true;
case AddressAliasingClass::UserPointer:
case AddressAliasingClass::Var:
// A users pointer or var can only alias with another
// object that is either a user pointer or var.
//
// Generally, a var should never alias with anything else that isn't a var,
// if we never allow the user to take address of a local var.
// We don't allow taking addresses of a local var on most GPU targets, but
// we currently do expose an internal intrinsic to do so when targeting CPU.
// We should consider disallowing this across the board, or enable more aggresive
// criteria when targeting GPU backends.
// For now we stay conservative and just report true even when addr1 is var and
// addr2 is not rooted from a var.
//
return c2 == AddressAliasingClass::UserPointer || c2 == AddressAliasingClass::Var;
case AddressAliasingClass::BoundBuffer:
case AddressAliasingClass::BoundTexture:
// A bound resource can only alias with another
// object that is a bound resource or descriptor handle
return c2 == c1 || c2 == AddressAliasingClass::DescriptorHandle;
case AddressAliasingClass::DescriptorHandle:
// Can alias with any other resource.
switch (c2)
{
case AddressAliasingClass::BoundBuffer:
case AddressAliasingClass::BoundTexture:
case AddressAliasingClass::DescriptorHandle:
return true;
default:
return false;
}
case AddressAliasingClass::ConstantBuffer:
// Constant buffer cannot alias with anything.
return false;
}
// For any other unknown case, assume they may alias.
return true;
}
// Has `var` being used in a way that may allow it to alias with a user pointer?
bool canVarAliasWithUserPointer(TargetRequest* target, IRInst* var)
{
if (target && !isCPUTarget(target))
{
// We don't allow taking the address of a variable on anything other
// than the CPU target. Therefore a var can never alias with a user
// pointer on these targets.
return false;
}
SLANG_UNUSED(var);
return true;
}
// A simple and conservative address aliasing check.
bool canAddressesPotentiallyAlias(
TargetRequest* target,
IRGlobalValueWithCode* func,
IRInst* addr1,
IRInst* addr2)
{
if (addr1 == addr2)
return true;
auto root1 = getRootBufferOrAddr(addr1);
auto root2 = getRootBufferOrAddr(addr2);
auto addr1Class = getAliasingClass(root1);
auto addr2Class = getAliasingClass(root2);
if (!canAddrClassesAlias(addr1Class, addr2Class))
return false;
if (addr1Class == addr2Class)
{
// For these classes of addresses, the identity of the root
// determines whether or not the addresse can alias.
// Note that we assume two different bound resources can never
// alias, and two different variables can never alias.
switch (addr1Class)
{
case AddressAliasingClass::Var:
case AddressAliasingClass::BoundBuffer:
case AddressAliasingClass::BoundTexture:
case AddressAliasingClass::ConstantBuffer:
if (root1 != root2)
return false;
break;
}
}
// A param and a var can never alias.
if (root1->getOp() == kIROp_Param && root1->getParent() == func->getFirstBlock() &&
root2->getOp() == kIROp_Var ||
root1->getOp() == kIROp_Var && root2->getOp() == kIROp_Param &&
root2->getParent() == func->getFirstBlock())
return false;
// If one addr is user pointer and one addr is a var,
// they can never alias, if the user code never took the address of
// the var.
if (addr1Class == AddressAliasingClass::Var && addr2Class == AddressAliasingClass::UserPointer)
{
return canVarAliasWithUserPointer(target, root1);
}
if (addr2Class == AddressAliasingClass::Var && addr1Class == AddressAliasingClass::UserPointer)
{
return canVarAliasWithUserPointer(target, root2);
}
// If two addrs are rooted from the same object but found to statically differ in access chain,
// then they cannot alias.
if (root1 == root2)
{
List<IRInst*> accessChain1;
List<IRInst*> accessChain2;
// Since getRootBufferOrAddr has a different behavior around
// RWStructuredBufferGetElementPtr compared to getRootAddr,
// we need to call getRootAddr here again to get a simpler access chain
// that we can handle here, so that we don't need to handle the nuance
// of whether or not to trace past any RWStructuredBufferGetElementPtr.
//
root1 = getRootAddr(addr1, accessChain1, nullptr);
root2 = getRootAddr(addr2, accessChain2, nullptr);
if (root1 != root2)
return true;
for (Index i = 0; i < Math::Min(accessChain1.getCount(), accessChain2.getCount()); i++)
{
auto node1 = accessChain1[i];
auto node2 = accessChain2[i];
if (as<IRStructKey>(node1) && as<IRStructKey>(node2))
{
// Two different field keys means the two addresses cannot alias.
// TODO: If we are going to support union types, we need to exclude that
// here.
if (node1 != node2)
return false;
// If the keys are the same, continue looking further down the access chain.
continue;
}
// Two different constant indices means the two addresses cannot alias.
auto index1 = as<IRIntLit>(node1);
auto index2 = as<IRIntLit>(node2);
if (index1 && index2 && index1->getValue() != index2->getValue())
return false;
// In all other cases, such as when either one of the indices is
// a untime value, we treat the two indices as potentially being the same.
return true;
}
}
return true;
}
bool canAddressesPotentiallyAlias(IRGlobalValueWithCode* func, IRInst* addr1, IRInst* addr2)
{
return canAddressesPotentiallyAlias(nullptr, func, addr1, addr2);
}
bool isPtrLikeOrHandleType(IRInst* type)
{
if (!type)
return false;
if (as<IRPointerLikeType>(type))
return true;
if (as<IRPseudoPtrType>(type))
return true;
if (as<IRHLSLStructuredBufferTypeBase>(type))
return true;
switch (type->getOp())
{
case kIROp_ComPtrType:
case kIROp_RawPointerType:
case kIROp_RTTIPointerType:
case kIROp_OutParamType:
case kIROp_BorrowInOutParamType:
case kIROp_PtrType:
case kIROp_RefParamType:
case kIROp_BorrowInParamType:
case kIROp_GLSLShaderStorageBufferType:
return true;
}
return false;
}
bool canInstHaveSideEffectAtAddress(IRGlobalValueWithCode* func, IRInst* inst, IRInst* addr)
{
switch (inst->getOp())
{
case kIROp_Store:
// If the target of the store inst may overlap addr, return true.
if (canAddressesPotentiallyAlias(func, as<IRStore>(inst)->getPtr(), addr))
return true;
break;
case kIROp_SwizzledStore:
// If the target of the swizzled store inst may overlap addr, return true.
if (canAddressesPotentiallyAlias(func, as<IRSwizzledStore>(inst)->getDest(), addr))
return true;
break;
case kIROp_Call:
{
auto call = as<IRCall>(inst);
// If addr is a global variable, calling a function may change its value.
// So we need to return true here to be conservative.
if (!isChildInstOf(getRootAddr(addr), func))
{
auto callee = call->getCallee();
if (callee && !doesCalleeHaveSideEffect(callee))
{
// An exception is if the callee is side-effect free and is not reading from
// memory.
}
else
{
return true;
}
}
// If any pointer typed argument of the call inst may overlap addr, return true.
for (UInt i = 0; i < call->getArgCount(); i++)
{
SLANG_RELEASE_ASSERT(call->getArg(i)->getDataType());
if (isPtrLikeOrHandleType(call->getArg(i)->getDataType()))
{
if (canAddressesPotentiallyAlias(func, call->getArg(i), addr))
return true;
}
else if (!isValueType(call->getArg(i)->getDataType()))
{
// This is some unknown handle type, we assume it can have any side effects.
return true;
}
}
}
break;
case kIROp_UnconditionalBranch:
case kIROp_Loop:
{
auto branch = as<IRUnconditionalBranch>(inst);
// If any pointer typed argument of the branch inst may overlap addr, return true.
for (UInt i = 0; i < branch->getArgCount(); i++)
{
SLANG_RELEASE_ASSERT(branch->getArg(i)->getDataType());
if (isPtrLikeOrHandleType(branch->getArg(i)->getDataType()))
{
if (canAddressesPotentiallyAlias(func, branch->getArg(i), addr))
return true;
}
else if (!isValueType(branch->getArg(i)->getDataType()))
{
// This is some unknown handle type, we assume it can have any side effects.
return true;
}
}
}
break;
case kIROp_CastPtrToInt:
case kIROp_Reinterpret:
case kIROp_BitCast:
{
// If we are trying to cast an address to something else, return true.
if (isPtrLikeOrHandleType(inst->getOperand(0)->getDataType()) &&
canAddressesPotentiallyAlias(func, inst->getOperand(0), addr))
return true;
else if (!isValueType(inst->getOperand(0)->getDataType()))
{
// This is some unknown handle type, we assume it can have any side effects.
return true;
}
}
break;
default:
// Default behavior is that any insts that have side effect may affect `addr`.
if (inst->mightHaveSideEffects())
return true;
break;
}
return false;
}
IRInst* getUndefInst(IRBuilder builder, IRModule* module)
{
IRInst* undefInst = nullptr;
for (auto inst : module->getModuleInst()->getChildren())
{
if (inst->getOp() == kIROp_Undefined && inst->getDataType() &&
inst->getDataType()->getOp() == kIROp_VoidType)
{
undefInst = inst;
break;
}
}
if (!undefInst)
{
auto voidType = builder.getVoidType();
builder.setInsertAfter(voidType);
undefInst = builder.emitUndefined(voidType);
}
return undefInst;
}
IROp getSwapSideComparisonOp(IROp op)
{
switch (op)
{
case kIROp_Eql:
return kIROp_Eql;
case kIROp_Neq:
return kIROp_Neq;
case kIROp_Leq:
return kIROp_Geq;
case kIROp_Geq:
return kIROp_Leq;
case kIROp_Less:
return kIROp_Greater;
case kIROp_Greater:
return kIROp_Less;
default:
return kIROp_Nop;
}
}
IRInst* emitLoopBlocks(
IRBuilder* builder,
IRInst* initVal,
IRInst* finalVal,
IRBlock*& loopBodyBlock,
IRBlock*& loopBreakBlock)
{
IRBuilder loopBuilder = *builder;
auto loopHeadBlock = loopBuilder.emitBlock();
loopBodyBlock = loopBuilder.emitBlock();
auto ifBreakBlock = loopBuilder.emitBlock();
loopBreakBlock = loopBuilder.emitBlock();
auto loopContinueBlock = loopBuilder.emitBlock();
builder->emitLoop(loopHeadBlock, loopBreakBlock, loopHeadBlock, 1, &initVal);
loopBuilder.setInsertInto(loopHeadBlock);
auto loopParam = loopBuilder.emitParam(initVal->getFullType());
auto cmpResult = loopBuilder.emitLess(loopParam, finalVal);
loopBuilder.emitIfElse(cmpResult, loopBodyBlock, ifBreakBlock, ifBreakBlock);
loopBuilder.setInsertInto(loopBodyBlock);
loopBuilder.emitBranch(loopContinueBlock);
loopBuilder.setInsertInto(loopContinueBlock);
auto newParam = loopBuilder.emitAdd(
loopParam->getFullType(),
loopParam,
loopBuilder.getIntValue(loopBuilder.getIntType(), 1));
loopBuilder.emitBranch(loopHeadBlock, 1, &newParam);
loopBuilder.setInsertInto(ifBreakBlock);
loopBuilder.emitBranch(loopBreakBlock);
return loopParam;
}
void sortBlocksInFunc(IRGlobalValueWithCode* func)
{
auto order = getReversePostorder(func);
for (auto block : order)
block->insertAtEnd(func);
}
void removeLinkageDecorations(IRInst* inst)
{
if (!inst)
return;
List<IRInst*> toRemove;
for (auto decoration : inst->getDecorations())
{
switch (decoration->getOp())
{
case kIROp_ImportDecoration:
case kIROp_ExportDecoration:
case kIROp_ExternCppDecoration:
case kIROp_PublicDecoration:
case kIROp_KeepAliveDecoration:
case kIROp_DllImportDecoration:
case kIROp_CudaDeviceExportDecoration:
case kIROp_DllExportDecoration:
case kIROp_HLSLExportDecoration:
toRemove.add(decoration);
break;
default:
break;
}
}
for (auto decoration : toRemove)
decoration->removeAndDeallocate();
}
void setInsertBeforeOrdinaryInst(IRBuilder* builder, IRInst* inst)
{
if (as<IRParam, IRDynamicCastBehavior::NoUnwrap>(inst))
{
SLANG_RELEASE_ASSERT(as<IRBlock>(inst->getParent()));
auto lastParam = as<IRBlock>(inst->getParent())->getLastParam();
builder->setInsertAfter(lastParam);
}
else
{
builder->setInsertBefore(inst);
}
}
void setInsertAfterOrdinaryInst(IRBuilder* builder, IRInst* inst)
{
if (as<IRParam, IRDynamicCastBehavior::NoUnwrap>(inst))
{
SLANG_RELEASE_ASSERT(as<IRBlock>(inst->getParent()));
auto lastParam = as<IRBlock>(inst->getParent())->getLastParam();
builder->setInsertAfter(lastParam);
}
else
{
builder->setInsertAfter(inst);
}
}
IRInst* tryFindBasePtr(IRInst* inst, IRInst* parentFunc)
{
// Keep going up the tree until we find a variable.
switch (inst->getOp())
{
case kIROp_Var:
return getParentFunc(inst) == parentFunc ? inst : nullptr;
case kIROp_Param:
return getParentFunc(inst) == parentFunc ? inst : nullptr;
case kIROp_GetElementPtr:
return tryFindBasePtr(as<IRGetElementPtr>(inst)->getBase(), parentFunc);
case kIROp_FieldAddress:
return tryFindBasePtr(as<IRFieldAddress>(inst)->getBase(), parentFunc);
default:
return nullptr;
}
}
bool areCallArgumentsSideEffectFree(IRCall* call, SideEffectAnalysisOptions options)
{
// If the function has no side effect and is not writing to any outputs,
// we can safely treat the call as a normal inst.
IRFunc* parentFunc = nullptr;
IRParam* param = nullptr;
if (auto calleeFunc = getResolvedInstForDecorations(call->getCallee()))
{
if (auto block = calleeFunc->getFirstBlock())
{
param = block->getFirstParam();
}
}
for (UInt i = 0; i < call->getArgCount();
i++, (param = param ? param->getNextParam() : nullptr))
{
auto arg = call->getArg(i);
if (isValueType(arg->getDataType()))
continue;
// If the argument type is not a known value type,
// assume it is a pointer or handle through which side effect can take place.
if (!parentFunc)
{
parentFunc = getParentFunc(call);
if (!parentFunc)
return false;
}
auto module = parentFunc->getModule();
if (!module)
return false;
if (arg->getOp() == kIROp_Var && getParentFunc(arg) == parentFunc)
{
IRDominatorTree* dom = nullptr;
if (isBitSet(options, SideEffectAnalysisOptions::UseDominanceTree))
dom = module->findOrCreateDominatorTree(parentFunc);
// If the pointer argument is a local variable (thus can't alias with other
// addresses) and it is never read from in the function, we can safely treat the
// call as having no side-effect. This is a conservative test, but is sufficient to
// detect the most common case where a temporary variable is used as the inout
// argument and the result stored in the temp variable isn't being used elsewhere in
// the parent func.
//
// A more aggresive test can check all other address uses reachable from the call
// site and see if any of them are aliasing with the argument.
for (auto use = arg->firstUse; use; use = use->nextUse)
{
if (as<IRDecoration>(use->getUser()))
continue;
switch (use->getUser()->getOp())
{
case kIROp_Store:
case kIROp_SwizzledStore:
// We are fine with stores into the variable, since store operations
// are not dependent on whatever we do in the call here.
continue;
default:
// Skip the call itself if the var is used as an argument to an out
// parameter since we are checking if the call has side effect. We can't
// treat the call as side effect free if var is used as an inout parameter,
// because if the call is inside a loop there will be a visible side effect
// after the call.
if (use->getUser() == call)
{
auto funcType = as<IRFuncType>(call->getCallee()->getDataType());
if (!funcType)
return false;
if (funcType->getParamCount() > i &&
as<IROutParamType>(funcType->getParamType(i)))
continue;
// We are an argument to an inout parameter.
// We can only treat the call as side effect free if the call is not
// inside a loop.
//
// If we don't have the loop information here, we will conservatively
// return false.
//
if (!dom)
return false;
// If we have dominator tree available, use it to check if the call is
// inside a loop.
auto callBlock = as<IRBlock>(call->getParent());
if (!callBlock)
return false;
auto varBlock = as<IRBlock>(arg->getParent());
if (!varBlock)
return false;
auto idom = callBlock;
while (idom != varBlock)
{
idom = dom->getImmediateDominator(idom);
if (!idom)
return false; // If we are here, var does not dominate the call,
// which should never happen.
if (auto loop = as<IRLoop>(idom->getTerminator()))
{
if (!dom->dominates(loop->getBreakBlock(), callBlock))
return false; // The var is used in a loop, must return
// false.
}
}
// If we reach here, the var is used as an inout parameter for the call,
// but the call is not nested in a loop at an higher nesting level than
// where the var is defined, so we can treat the use as DCE-able.
continue;
}
// We have some other unknown use of the variable address, they can
// be loads, or calls using addresses derived from the variable,
// we will treat the call as having side effect to be safe.
return false;
}
}
}
else
{
if (param && param->findDecoration<IRIgnoreSideEffectsDecoration>())
continue;
return false;
}
}
return true;
}
bool isPureFunctionalCall(IRCall* call, SideEffectAnalysisOptions options)
{
auto callee = getResolvedInstForDecorations(call->getCallee());
if (callee->findDecoration<IRReadNoneDecoration>())
{
return areCallArgumentsSideEffectFree(call, options);
}
return false;
}
bool isSideEffectFreeFunctionalCall(IRCall* call, SideEffectAnalysisOptions options)
{
if (!doesCalleeHaveSideEffect(call->getCallee()))
{
return areCallArgumentsSideEffectFree(call, options);
}
return false;
}
// Enumerate any associated functions of 'func'
// that might be used by a pass (e.g. auto-diff)
//
template<typename TFunc>
void forEachAssociatedFunction(IRInst* func, TFunc callback)
{
// Resolve the function to get all its decorations
auto resolvedFunc = getResolvedInstForDecorations(func);
if (!resolvedFunc)
return;
// We'll scan for appropriate decorations and return
// the function references.
//
// TODO: In the future, as we get more function transformation
// passes, we might want to create a parent class for such
// decorations that associate functions with each other.
//
for (auto decor : resolvedFunc->getDecorations())
{
switch (decor->getOp())
{
case kIROp_UserDefinedBackwardDerivativeDecoration:
if (as<IRUserDefinedBackwardDerivativeDecoration>(decor))
{
auto associatedCallee = as<IRUserDefinedBackwardDerivativeDecoration>(decor)
->getBackwardDerivativeFunc();
callback(associatedCallee);
}
break;
case kIROp_ForwardDerivativeDecoration:
if (as<IRForwardDerivativeDecoration>(decor))
{
auto associatedCallee =
as<IRForwardDerivativeDecoration>(decor)->getForwardDerivativeFunc();
callback(associatedCallee);
}
break;
case kIROp_PrimalSubstituteDecoration:
if (as<IRPrimalSubstituteDecoration>(decor))
{
auto associatedCallee =
as<IRPrimalSubstituteDecoration>(decor)->getPrimalSubstituteFunc();
callback(associatedCallee);
}
break;
default:
break;
}
}
}
bool doesCalleeHaveSideEffect(IRInst* callee)
{
bool sideEffect = true;
for (auto decor : getResolvedInstForDecorations(callee)->getDecorations())
{
switch (decor->getOp())
{
case kIROp_NoSideEffectDecoration:
case kIROp_ReadNoneDecoration:
case kIROp_IgnoreSideEffectsDecoration:
sideEffect = false;
break;
default:
break;
}
}
// If the callee has no side effect, check if any of its associated functions have side
// effect. If so, we want to keep the callee around.
//
// Typically, once the relevant pass has completed, the association is removed,
// and at that point we can remove the function.
//
if (!sideEffect)
{
forEachAssociatedFunction(
callee,
[&](IRInst* associatedCallee)
{
sideEffect |= doesCalleeHaveSideEffect(associatedCallee);
return;
});
}
return sideEffect;
}
IRInst* findInterfaceRequirement(IRInterfaceType* type, IRInst* key)
{
for (UInt i = 0; i < type->getOperandCount(); i++)
{
if (auto req = as<IRInterfaceRequirementEntry>(type->getOperand(i)))
{
if (req->getRequirementKey() == key)
return req->getRequirementVal();
}
}
return nullptr;
}
IRInst* findWitnessTableEntry(IRWitnessTable* table, IRInst* key)
{
for (auto entry : table->getEntries())
{
if (entry->getRequirementKey() == key)
return entry->getSatisfyingVal();
}
return nullptr;
}
IRInst* getVulkanPayloadLocation(IRInst* payloadGlobalVar)
{
IRInst* location = nullptr;
for (auto decor : payloadGlobalVar->getDecorations())
{
switch (decor->getOp())
{
case kIROp_VulkanRayPayloadDecoration:
case kIROp_VulkanRayPayloadInDecoration:
case kIROp_VulkanCallablePayloadDecoration:
case kIROp_VulkanCallablePayloadInDecoration:
case kIROp_VulkanHitObjectAttributesDecoration:
return decor->getOperand(0);
default:
continue;
}
}
return location;
}
IRInst* getInstInBlock(IRInst* inst)
{
SLANG_RELEASE_ASSERT(inst);
if (const auto block = as<IRBlock>(inst->getParent()))
return inst;
return getInstInBlock(inst->getParent());
}
ShortList<IRInst*> getPhiArgs(IRInst* phiParam)
{
ShortList<IRInst*> result;
auto block = cast<IRBlock>(phiParam->getParent());
UInt paramIndex = 0;
for (auto p = block->getFirstParam(); p; p = p->getNextParam())
{
if (p == phiParam)
break;
paramIndex++;
}
for (auto predBlock : block->getPredecessors())
{
auto termInst = as<IRUnconditionalBranch>(predBlock->getTerminator());
SLANG_ASSERT(paramIndex < termInst->getArgCount());
result.add(termInst->getArg(paramIndex));
}
return result;
}
void removePhiArgs(IRInst* phiParam)
{
auto block = cast<IRBlock>(phiParam->getParent());
UInt paramIndex = 0;
for (auto p = block->getFirstParam(); p; p = p->getNextParam())
{
if (p == phiParam)
break;
paramIndex++;
}
for (auto predBlock : block->getPredecessors())
{
auto termInst = as<IRUnconditionalBranch>(predBlock->getTerminator());
SLANG_ASSERT(paramIndex < termInst->getArgCount());
termInst->removeArgument(paramIndex);
}
}
int getParamIndexInBlock(IRParam* paramInst)
{
auto block = as<IRBlock>(paramInst->getParent());
if (!block)
return -1;
int paramIndex = 0;
for (auto param : block->getParams())
{
if (param == paramInst)
return paramIndex;
paramIndex++;
}
return -1;
}
bool isGlobalOrUnknownMutableAddress(IRGlobalValueWithCode* parentFunc, IRInst* inst)
{
auto root = getRootAddr(inst);
auto type = unwrapAttributedType(inst->getDataType());
if (!isPtrLikeOrHandleType(type))
return false;
if (root)
{
if (as<IRGLSLShaderStorageBufferType>(root->getDataType()))
{
// A storage buffer is mutable, so we need to treat it as a mutable address.
return true;
}
// If this is a global readonly resource, it is not a mutable address.
if (as<IRParameterGroupType>(root->getDataType()))
{
return false;
}
if (as<IRHLSLStructuredBufferType>(root->getDataType()))
{
return false;
}
}
switch (root->getOp())
{
case kIROp_GlobalVar:
case kIROp_GlobalParam:
case kIROp_GlobalConstant:
case kIROp_Var:
case kIROp_Param:
break;
case kIROp_Call:
return true;
default:
return true;
}
auto addrInstParent = getParentFunc(root);
return (addrInstParent != parentFunc);
}
bool isZero(IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_IntLit:
return as<IRIntLit>(inst)->getValue() == 0;
case kIROp_FloatLit:
return as<IRFloatLit>(inst)->getValue() == 0.0;
case kIROp_BoolLit:
return as<IRBoolLit>(inst)->getValue() == false;
case kIROp_MakeCoopVector:
case kIROp_MakeVector:
case kIROp_MakeVectorFromScalar:
case kIROp_MakeMatrix:
case kIROp_MakeMatrixFromScalar:
case kIROp_MatrixReshape:
case kIROp_VectorReshape:
{
for (UInt i = 0; i < inst->getOperandCount(); i++)
{
if (!isZero(inst->getOperand(i)))
{
return false;
}
}
return true;
}
case kIROp_CastIntToFloat:
case kIROp_CastFloatToInt:
return isZero(inst->getOperand(0));
default:
return false;
}
}
bool isOne(IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_IntLit:
return as<IRIntLit>(inst)->getValue() == 1;
case kIROp_FloatLit:
return as<IRFloatLit>(inst)->getValue() == 1.0;
case kIROp_BoolLit:
return as<IRBoolLit>(inst)->getValue();
case kIROp_MakeCoopVector:
case kIROp_MakeVector:
case kIROp_MakeVectorFromScalar:
case kIROp_MakeMatrix:
case kIROp_MakeMatrixFromScalar:
case kIROp_MatrixReshape:
case kIROp_VectorReshape:
{
for (UInt i = 0; i < inst->getOperandCount(); i++)
{
if (!isOne(inst->getOperand(i)))
{
return false;
}
}
return true;
}
case kIROp_CastIntToFloat:
case kIROp_CastFloatToInt:
return isOne(inst->getOperand(0));
default:
return false;
}
}
IRPtrTypeBase* asRelevantPtrType(IRInst* inst)
{
if (auto ptrType = as<IRPtrTypeBase>(inst))
{
if (ptrType->getAddressSpace() != AddressSpace::UserPointer)
return ptrType;
}
return nullptr;
}
IRPtrTypeBase* isMutablePointerType(IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_BorrowInParamType:
return nullptr;
default:
return asRelevantPtrType(inst);
}
}
void initializeScratchData(IRInst* inst)
{
List<IRInst*> workList;
workList.add(inst);
while (workList.getCount() != 0)
{
auto item = workList.getLast();
workList.removeLast();
item->scratchData = 0;
for (auto child = item->getLastDecorationOrChild(); child; child = child->getPrevInst())
workList.add(child);
}
}
void resetScratchDataBit(IRInst* inst, int bitIndex)
{
List<IRInst*> workList;
workList.add(inst);
while (workList.getCount() != 0)
{
auto item = workList.getLast();
workList.removeLast();
item->scratchData &= ~(1ULL << bitIndex);
for (auto child = item->getLastDecorationOrChild(); child; child = child->getPrevInst())
workList.add(child);
}
}
///
/// IRBlock related common helper methods
///
void moveParams(IRBlock* dest, IRBlock* src)
{
for (auto param = src->getFirstChild(); param;)
{
auto nextInst = param->getNextInst();
if (as<IRDecoration>(param) || as<IRParam, IRDynamicCastBehavior::NoUnwrap>(param))
{
param->insertAtEnd(dest);
}
else
{
break;
}
param = nextInst;
}
}
List<IRBlock*> collectBlocksInRegion(
IRDominatorTree* dom,
IRLoop* loop,
bool* outHasMultiLevelBreaks)
{
return collectBlocksInRegion(
dom,
loop->getBreakBlock(),
loop->getTargetBlock(),
true,
outHasMultiLevelBreaks);
}
List<IRBlock*> collectBlocksInRegion(IRDominatorTree* dom, IRLoop* loop)
{
bool hasMultiLevelBreaks = false;
return collectBlocksInRegion(
dom,
loop->getBreakBlock(),
loop->getTargetBlock(),
true,
&hasMultiLevelBreaks);
}
List<IRBlock*> collectBlocksInRegion(
IRDominatorTree* dom,
IRSwitch* switchInst,
bool* outHasMultiLevelBreaks)
{
return collectBlocksInRegion(
dom,
switchInst->getBreakLabel(),
as<IRBlock>(switchInst->getParent()),
false,
outHasMultiLevelBreaks);
}
List<IRBlock*> collectBlocksInRegion(IRDominatorTree* dom, IRSwitch* switchInst)
{
bool hasMultiLevelBreaks = false;
return collectBlocksInRegion(
dom,
switchInst->getBreakLabel(),
as<IRBlock>(switchInst->getParent()),
false,
&hasMultiLevelBreaks);
}
HashSet<IRBlock*> getParentBreakBlockSet(IRDominatorTree* dom, IRBlock* block)
{
HashSet<IRBlock*> parentBreakBlocksSet;
for (IRBlock* currBlock = dom->getImmediateDominator(block); currBlock;
currBlock = dom->getImmediateDominator(currBlock))
{
if (auto loopInst = as<IRLoop>(currBlock->getTerminator()))
{
if (!dom->dominates(loopInst->getBreakBlock(), block))
parentBreakBlocksSet.add(loopInst->getBreakBlock());
}
else if (auto switchInst = as<IRSwitch>(currBlock->getTerminator()))
{
if (!dom->dominates(switchInst->getBreakLabel(), block))
parentBreakBlocksSet.add(switchInst->getBreakLabel());
}
}
return parentBreakBlocksSet;
}
List<IRBlock*> collectBlocksInRegion(
IRDominatorTree* dom,
IRBlock* breakBlock,
IRBlock* firstBlock,
bool includeFirstBlock,
bool* outHasMultiLevelBreaks)
{
List<IRBlock*> regionBlocks;
HashSet<IRBlock*> regionBlocksSet;
auto addBlock = [&](IRBlock* block)
{
if (regionBlocksSet.add(block))
regionBlocks.add(block);
};
// Use dominator tree heirarchy to find break blocks of
// all parent regions. We'll need to this to detect breaks
// to outer regions (particularly when our region has no reachable
// break block of its own)
//
HashSet<IRBlock*> parentBreakBlocksSet = getParentBreakBlockSet(dom, firstBlock);
*outHasMultiLevelBreaks = false;
addBlock(firstBlock);
for (Index i = 0; i < regionBlocks.getCount(); i++)
{
auto block = regionBlocks[i];
for (auto succ : block->getSuccessors())
{
if (parentBreakBlocksSet.contains(succ) && succ != breakBlock)
{
*outHasMultiLevelBreaks = true;
continue;
}
if (succ == breakBlock)
continue;
if (!dom->dominates(firstBlock, succ))
continue;
if (!as<IRUnreachable>(breakBlock->getTerminator()))
{
if (dom->dominates(breakBlock, succ))
continue;
}
addBlock(succ);
}
}
if (!includeFirstBlock)
{
regionBlocksSet.remove(firstBlock);
regionBlocks.remove(firstBlock);
}
return regionBlocks;
}
List<IRBlock*> collectBlocksInRegion(
IRGlobalValueWithCode* func,
IRLoop* loopInst,
bool* outHasMultiLevelBreaks)
{
auto dom = computeDominatorTree(func);
return collectBlocksInRegion(dom, loopInst, outHasMultiLevelBreaks);
}
List<IRBlock*> collectBlocksInRegion(IRGlobalValueWithCode* func, IRLoop* loopInst)
{
auto dom = computeDominatorTree(func);
bool hasMultiLevelBreaks = false;
return collectBlocksInRegion(dom, loopInst, &hasMultiLevelBreaks);
}
IRBlock* getBlock(IRInst* inst)
{
if (!inst)
return nullptr;
while (inst)
{
if (auto block = as<IRBlock>(inst))
return block;
inst = inst->getParent();
}
return nullptr;
}
///
/// End of IRBlock utility methods
///
IRVarLayout* findVarLayout(IRInst* value)
{
if (auto layoutDecoration = value->findDecoration<IRLayoutDecoration>())
return as<IRVarLayout>(layoutDecoration->getLayout());
return nullptr;
}
UnownedStringSlice getBuiltinFuncName(IRInst* callee)
{
auto decor = getResolvedInstForDecorations(callee)->findDecoration<IRKnownBuiltinDecoration>();
if (!decor)
return UnownedStringSlice();
// For backward compatibility, convert enum back to string
switch (decor->getName())
{
case KnownBuiltinDeclName::GeometryStreamAppend:
return UnownedStringSlice::fromLiteral("GeometryStreamAppend");
case KnownBuiltinDeclName::GeometryStreamRestart:
return UnownedStringSlice::fromLiteral("GeometryStreamRestart");
case KnownBuiltinDeclName::GetAttributeAtVertex:
return UnownedStringSlice::fromLiteral("GetAttributeAtVertex");
case KnownBuiltinDeclName::DispatchMesh:
return UnownedStringSlice::fromLiteral("DispatchMesh");
case KnownBuiltinDeclName::saturated_cooperation:
return UnownedStringSlice::fromLiteral("saturated_cooperation");
case KnownBuiltinDeclName::saturated_cooperation_using:
return UnownedStringSlice::fromLiteral("saturated_cooperation_using");
case KnownBuiltinDeclName::IDifferentiable:
return UnownedStringSlice::fromLiteral("IDifferentiable");
case KnownBuiltinDeclName::IDifferentiablePtr:
return UnownedStringSlice::fromLiteral("IDifferentiablePtr");
case KnownBuiltinDeclName::NullDifferential:
return UnownedStringSlice::fromLiteral("NullDifferential");
default:
return UnownedStringSlice();
}
}
KnownBuiltinDeclName getBuiltinFuncEnum(IRInst* callee)
{
auto decor = getResolvedInstForDecorations(callee)->findDecoration<IRKnownBuiltinDecoration>();
if (!decor)
return KnownBuiltinDeclName::COUNT; // Use COUNT as invalid value
return decor->getName();
}
void hoistInstOutOfASMBlocks(IRBlock* block)
{
for (auto inst : block->getChildren())
{
if (auto asmBlock = as<IRSPIRVAsm>(inst))
{
IRInst* next = nullptr;
for (auto i = asmBlock->getFirstChild(); i; i = next)
{
next = i->getNextInst();
if (!as<IRSPIRVAsmInst>(i) && !as<IRSPIRVAsmOperand>(i))
i->insertBefore(asmBlock);
}
}
}
}
IRType* getSPIRVSampledElementType(IRInst* sampledType)
{
auto sampledElementType = getVectorElementType((IRType*)sampledType);
IRBuilder builder(sampledType);
switch (sampledElementType->getOp())
{
case kIROp_HalfType:
sampledElementType = builder.getBasicType(BaseType::Float);
break;
case kIROp_UInt16Type:
case kIROp_UInt8Type:
case kIROp_CharType:
sampledElementType = builder.getBasicType(BaseType::UInt);
break;
case kIROp_Int8Type:
case kIROp_Int16Type:
sampledElementType = builder.getBasicType(BaseType::Int);
break;
default:
break;
}
return sampledElementType;
}
IRType* replaceVectorElementType(IRType* originalVectorType, IRType* t)
{
if (auto orignalVectorType = as<IRVectorType>(originalVectorType))
{
IRBuilder builder(originalVectorType);
return builder.getVectorType(t, orignalVectorType->getElementCount());
}
return t;
}
IRParam* getParamAt(IRBlock* block, UIndex ii)
{
UIndex index = 0;
for (auto param : block->getParams())
{
if (ii == index)
return param;
index++;
}
SLANG_UNEXPECTED("ii >= paramCount");
}
UnownedStringSlice getBasicTypeNameHint(IRType* basicType)
{
switch (basicType->getOp())
{
case kIROp_IntType:
return UnownedStringSlice::fromLiteral("int");
case kIROp_Int8Type:
return UnownedStringSlice::fromLiteral("int8");
case kIROp_Int16Type:
return UnownedStringSlice::fromLiteral("int16");
case kIROp_Int64Type:
return UnownedStringSlice::fromLiteral("int64");
case kIROp_IntPtrType:
return UnownedStringSlice::fromLiteral("intptr");
case kIROp_UIntType:
return UnownedStringSlice::fromLiteral("uint");
case kIROp_UInt8Type:
return UnownedStringSlice::fromLiteral("uint8");
case kIROp_UInt16Type:
return UnownedStringSlice::fromLiteral("uint16");
case kIROp_UInt64Type:
return UnownedStringSlice::fromLiteral("uint64");
case kIROp_UIntPtrType:
return UnownedStringSlice::fromLiteral("uintptr");
case kIROp_FloatType:
return UnownedStringSlice::fromLiteral("float");
case kIROp_HalfType:
return UnownedStringSlice::fromLiteral("half");
case kIROp_DoubleType:
return UnownedStringSlice::fromLiteral("double");
case kIROp_BoolType:
return UnownedStringSlice::fromLiteral("bool");
case kIROp_VoidType:
return UnownedStringSlice::fromLiteral("void");
case kIROp_CharType:
return UnownedStringSlice::fromLiteral("char");
default:
return UnownedStringSlice();
}
}
struct GenericChildrenMigrationContextImpl
{
IRCloneEnv cloneEnv;
IRGeneric* srcGeneric;
IRGeneric* dstGeneric;
DeduplicateContext deduplicateContext;
void init(IRGeneric* genericSrc, IRGeneric* genericDst, IRInst* insertBefore)
{
srcGeneric = genericSrc;
dstGeneric = genericDst;
if (!genericSrc)
return;
auto srcParam = genericSrc->getFirstBlock()->getFirstParam();
auto dstParam = genericDst->getFirstBlock()->getFirstParam();
while (srcParam && dstParam)
{
cloneEnv.mapOldValToNew[srcParam] = dstParam;
srcParam = srcParam->getNextParam();
dstParam = dstParam->getNextParam();
}
cloneEnv.mapOldValToNew[genericSrc] = genericDst;
cloneEnv.mapOldValToNew[genericSrc->getFirstBlock()] = genericDst->getFirstBlock();
if (insertBefore)
{
for (auto inst = genericDst->getFirstBlock()->getFirstOrdinaryInst();
inst && inst != insertBefore;
inst = inst->getNextInst())
{
IRInstKey key = {inst};
deduplicateContext.deduplicateMap.addIfNotExists(key, inst);
}
}
}
IRInst* deduplicate(IRInst* value)
{
return deduplicateContext.deduplicate(
value,
[this](IRInst* inst)
{
if (inst->getParent() != dstGeneric->getFirstBlock())
return false;
switch (inst->getOp())
{
case kIROp_Param:
case kIROp_StructType:
case kIROp_StructKey:
case kIROp_InterfaceType:
case kIROp_ClassType:
case kIROp_Func:
case kIROp_Generic:
case kIROp_Expand:
return false;
default:
break;
}
if (as<IRConstant>(inst))
return false;
if (getIROpInfo(inst->getOp()).isHoistable())
return false;
return true;
});
}
IRInst* cloneInst(IRBuilder* builder, IRInst* src)
{
if (!srcGeneric)
return src;
if (findOuterGeneric(src) == srcGeneric)
{
auto cloned = Slang::cloneInst(&cloneEnv, builder, src);
auto deduplicated = deduplicate(cloned);
if (deduplicated != cloned)
cloneEnv.mapOldValToNew[src] = deduplicated;
return deduplicated;
}
return src;
}
};
GenericChildrenMigrationContext::GenericChildrenMigrationContext()
{
impl = new GenericChildrenMigrationContextImpl();
}
GenericChildrenMigrationContext::~GenericChildrenMigrationContext()
{
delete impl;
}
IRCloneEnv* GenericChildrenMigrationContext::getCloneEnv()
{
return &impl->cloneEnv;
}
void GenericChildrenMigrationContext::init(
IRGeneric* genericSrc,
IRGeneric* genericDst,
IRInst* insertBefore)
{
impl->init(genericSrc, genericDst, insertBefore);
}
IRInst* GenericChildrenMigrationContext::deduplicate(IRInst* value)
{
return impl->deduplicate(value);
}
IRInst* GenericChildrenMigrationContext::cloneInst(IRBuilder* builder, IRInst* src)
{
return impl->cloneInst(builder, src);
}
IRType* dropNormAttributes(IRType* const t)
{
if (const auto a = as<IRAttributedType>(t))
{
switch (a->getAttr()->getOp())
{
case kIROp_UNormAttr:
case kIROp_SNormAttr:
return dropNormAttributes(a->getBaseType());
}
}
return t;
}
void verifyComputeDerivativeGroupModifiers(
DiagnosticSink* sink,
SourceLoc errorLoc,
bool quadAttr,
bool linearAttr,
IRNumThreadsDecoration* numThreadsDecor)
{
if (!numThreadsDecor)
return;
if (quadAttr && linearAttr)
{
sink->diagnose(errorLoc, Diagnostics::onlyOneOfDerivativeGroupLinearOrQuadCanBeSet);
}
IRIntegerValue x = 1;
IRIntegerValue y = 1;
IRIntegerValue z = 1;
if (numThreadsDecor->getX())
x = numThreadsDecor->getX()->getValue();
if (numThreadsDecor->getY())
y = numThreadsDecor->getY()->getValue();
if (numThreadsDecor->getZ())
z = numThreadsDecor->getZ()->getValue();
if (quadAttr)
{
if (x % 2 != 0 || y % 2 != 0)
sink->diagnose(errorLoc, Diagnostics::derivativeGroupQuadMustBeMultiple2ForXYThreads);
}
else if (linearAttr)
{
if ((x * y * z) % 4 != 0)
sink->diagnose(
errorLoc,
Diagnostics::derivativeGroupLinearMustBeMultiple4ForTotalThreadCount);
}
}
int getIRVectorElementSize(IRType* type)
{
if (type->getOp() != kIROp_VectorType)
return 1;
return (int)(as<IRIntLit>(as<IRVectorType>(type)->getElementCount())->value.intVal);
}
IRType* getIRVectorBaseType(IRType* type)
{
if (type->getOp() != kIROp_VectorType)
return type;
return as<IRVectorType>(type)->getElementType();
}
IRType* getElementType(IRBuilder& builder, IRType* valueType)
{
valueType = (IRType*)unwrapAttributedType(valueType);
if (auto arrayType = as<IRArrayTypeBase>(valueType))
{
return arrayType->getElementType();
}
else if (auto vectorType = as<IRVectorType>(valueType))
{
return vectorType->getElementType();
}
else if (auto basicType = as<IRBasicType>(valueType))
{
return basicType;
}
else if (auto coopVecType = as<IRCoopVectorType>(valueType))
{
return coopVecType->getElementType();
}
else if (auto matrixType = as<IRMatrixType>(valueType))
{
return builder.getVectorType(matrixType->getElementType(), matrixType->getColumnCount());
}
else if (auto coopMatType = as<IRCoopMatrixType>(valueType))
{
return coopMatType->getElementType();
}
else if (auto hlslInputPatchType = as<IRHLSLInputPatchType>(valueType))
{
return hlslInputPatchType->getElementType();
}
return nullptr;
}
Int getSpecializationConstantId(IRGlobalParam* param)
{
auto layout = findVarLayout(param);
if (!layout)
return 0;
auto offset = layout->findOffsetAttr(LayoutResourceKind::SpecializationConstant);
if (!offset)
return 0;
return offset->getOffset();
}
IRBlock* getLoopHeaderForConditionBlock(IRBlock* block)
{
// Go through uses and check if any of them are a loop condition block.
for (auto use = block->firstUse; use; use = use->nextUse)
{
if (auto loop = as<IRLoop>(use->getUser()))
{
if (loop->getTargetBlock() == block)
return cast<IRBlock>(loop->getParent());
}
}
return nullptr;
}
void legalizeDefUse(IRGlobalValueWithCode* func)
{
auto dom = computeDominatorTree(func);
// Make a map of loop condition blocks to their loop header.
// We need this because we'll be treating loop condition blocks as
// special cases (they are the special blocks since they "dominate" themselves,
// in the dominator tree sense)
//
Dictionary<IRBlock*, IRBlock*> loopHeaderBlockMap;
for (auto block : func->getBlocks())
{
if (auto header = getLoopHeaderForConditionBlock(block))
loopHeaderBlockMap.add(block, header);
}
for (auto block : func->getBlocks())
{
for (auto inst : block->getModifiableChildren())
{
// Inspect all uses of `inst` and find the common dominator of all use sites.
IRBlock* commonDominator = block;
for (auto use = inst->firstUse; use; use = use->nextUse)
{
auto userBlock = as<IRBlock>(use->getUser()->getParent());
if (!userBlock)
continue;
while (commonDominator && !dom->dominates(commonDominator, userBlock))
{
commonDominator = dom->getImmediateDominator(commonDominator);
}
}
SLANG_ASSERT(commonDominator);
// If commonDominator is 'block' and if the inst is not a Var in
// a loop condition block, we can skip the legalization.
//
if (commonDominator == block &&
!(as<IRVar>(inst) && loopHeaderBlockMap.containsKey(block)))
continue;
// Normally, if the common dominator is not `block`, we can simply move the
// definition to the common dominator. An exception is when the common dominator is
// the target block of a loop. Another exception is when a var in the loop condition
// block is accessed both inside and outside the loop. It is technically visible,
// but effects on the 'var' are not visible outside the loop, so we'll need to hoist
// it out of the loop.
//
// Note that after normalization, loops are in the form of:
// ```
// loop { if (condition) block; else break; }
// ```
// If we find ourselves needing to make the inst available right before
// the `if`, it means we are seeing uses of the inst outside the loop.
// In this case, we should insert a var/move the inst before the loop
// instead of before the `if`. This situation can occur in the IR if
// the original code is lowered from a `do-while` loop.
//
bool shouldInitializeVar = false;
if (loopHeaderBlockMap.containsKey(commonDominator))
{
bool shouldMoveToHeader = false;
// Check that the break-block dominates any of the uses are past the break
// block
for (auto _use = inst->firstUse; _use; _use = _use->nextUse)
{
if (dom->dominates(
as<IRLoop>(loopHeaderBlockMap[commonDominator]->getTerminator())
->getBreakBlock(),
_use->getUser()->getParent()))
{
shouldMoveToHeader = true;
break;
}
}
if (shouldMoveToHeader)
{
commonDominator = loopHeaderBlockMap[commonDominator];
shouldInitializeVar = true;
}
}
// Now we can legalize uses based on the type of `inst`.
if (auto var = as<IRVar>(inst))
{
// If inst is an var, this is easy, we just move it to the
// common dominator.
if (var->getParent() != commonDominator)
var->insertBefore(commonDominator->getTerminator());
if (shouldInitializeVar)
{
IRBuilder builder(func);
builder.setInsertAfter(var);
builder.emitStore(
var,
builder.emitDefaultConstruct(
as<IRPtrTypeBase>(var->getDataType())->getValueType()));
}
}
else
{
// For all other insts, we need to create a local var for it,
// and replace all uses with a load from the local var.
IRBuilder builder(func);
builder.setInsertBefore(commonDominator->getTerminator());
IRVar* tempVar = builder.emitVar(inst->getFullType());
auto defaultVal = builder.emitDefaultConstruct(inst->getFullType());
builder.emitStore(tempVar, defaultVal);
builder.setInsertAfter(inst);
builder.emitStore(tempVar, inst);
traverseUses(
inst,
[&](IRUse* use)
{
auto userBlock = as<IRBlock>(use->getUser()->getParent());
if (!userBlock)
return;
// Only fix the use of the current definition of `inst` does not
// dominate it.
if (!dom->dominates(block, userBlock))
{
// Replace the use with a load of tempVar.
builder.setInsertBefore(use->getUser());
auto load = builder.emitLoad(tempVar);
builder.replaceOperand(use, load);
}
});
}
}
}
}
UnownedStringSlice getMangledName(IRInst* inst)
{
for (auto decor : inst->getDecorations())
{
if (auto linkageDecor = as<IRLinkageDecoration>(decor))
return linkageDecor->getMangledName();
}
return UnownedStringSlice();
}
bool isFirstBlock(IRInst* inst)
{
auto block = as<IRBlock>(inst);
if (!block)
return false;
if (!block->getParent())
return false;
return block->getParent()->getFirstBlock() == block;
}
bool isSpecConstRateType(IRType* type)
{
if (auto rateQualifiedType = as<IRRateQualifiedType>(type))
{
if (as<IRSpecConstRate>(rateQualifiedType->getRate()))
{
return true;
}
}
return false;
}
IRType* maybeAddRateType(IRBuilder* builder, IRType* rateQulifiedType, IRType* oldType)
{
if (as<IRRateQualifiedType>(oldType))
{
return oldType;
}
if (isSpecConstRateType(rateQulifiedType))
{
return builder->getRateQualifiedType(builder->getSpecConstRate(), oldType);
}
return oldType;
}
bool canOperationBeSpecConst(IROp op, IRType* resultType, IRInst* const* fixedArgs, IRUse* operands)
{
// Returns true for ops that can be declared as an operation under `OpSpecConstantOp`.
//
// Integer arithmetic and comparison operations can be `OpSpecConstantOp` with the `Shader`
// capability, while floating-point arithmetic and comparison operations require the
// `Kernel` capability. We only support `Shader` capability for now, return false when
// floating-point arithmetic/comparison is encountered.
switch (op)
{
case kIROp_Add:
case kIROp_Sub:
case kIROp_Mul:
case kIROp_Div:
case kIROp_Neg:
return !isFloatingType(resultType);
case kIROp_Eql:
case kIROp_Neq:
case kIROp_Leq:
case kIROp_Geq:
case kIROp_Less:
case kIROp_Greater:
{
IRInst* operand1;
IRInst* operand2;
if (fixedArgs)
{
operand1 = fixedArgs[0];
operand2 = fixedArgs[1];
}
else
{
operand1 = operands[0].get();
operand2 = operands[1].get();
}
return !isFloatingType(operand1->getDataType()) &&
!isFloatingType(operand2->getDataType());
}
case kIROp_Not:
case kIROp_IRem:
case kIROp_Lsh:
case kIROp_Rsh:
case kIROp_BitAnd:
case kIROp_BitOr:
case kIROp_BitXor:
case kIROp_BitNot:
case kIROp_IntCast:
case kIROp_FloatCast:
case kIROp_Select:
return true;
default:
return false;
}
}
bool isSpecConstOpHoistable(IROp op, IRType* type, IRInst* const* fixedArgs)
{
auto rateType = as<IRRateQualifiedType>(type);
return rateType && as<IRSpecConstRate>(rateType->getRate()) &&
canOperationBeSpecConst(op, rateType->getValueType(), fixedArgs, nullptr);
}
bool isInstHoistable(IROp op, IRType* type, IRInst* const* fixedArgs)
{
return (getIROpInfo(op).flags & kIROpFlag_Hoistable) ||
isSpecConstOpHoistable(op, type, fixedArgs);
}
IRType* getUnsignedTypeFromSignedType(IRBuilder* builder, IRType* type)
{
SLANG_RELEASE_ASSERT(isSignedType(type));
auto elementType = getVectorOrCoopMatrixElementType(type);
IROp op = type->getOp();
switch (op)
{
case kIROp_MatrixType:
{
auto unsignedTypeOp = getOppositeSignIntTypeOp(elementType->getOp());
auto matType = as<IRMatrixType>(type);
SLANG_RELEASE_ASSERT(matType);
return builder->getMatrixType(
builder->getType(unsignedTypeOp),
matType->getRowCount(),
matType->getColumnCount(),
matType->getLayout());
}
case kIROp_VectorType:
{
auto unsignedTypeOp = getOppositeSignIntTypeOp(elementType->getOp());
auto vecType = as<IRVectorType>(type);
SLANG_RELEASE_ASSERT(vecType);
return builder->getVectorType(
builder->getType(unsignedTypeOp),
vecType->getElementCount());
}
case kIROp_IntType:
case kIROp_Int16Type:
case kIROp_Int64Type:
case kIROp_Int8Type:
return builder->getType(getOppositeSignIntTypeOp(elementType->getOp()));
default:
return type;
}
}
bool isSignedType(IRType* type)
{
switch (type->getOp())
{
case kIROp_FloatType:
case kIROp_DoubleType:
return true;
case kIROp_IntType:
case kIROp_Int16Type:
case kIROp_Int64Type:
case kIROp_Int8Type:
return true;
case kIROp_VectorType:
return isSignedType(as<IRVectorType>(type)->getElementType());
case kIROp_MatrixType:
return isSignedType(as<IRMatrixType>(type)->getElementType());
default:
return false;
}
}
bool isIROpaqueType(IRType* type)
{
switch (type->getOp())
{
case kIROp_TextureType:
case kIROp_SamplerStateType:
case kIROp_SamplerComparisonStateType:
return true;
default:
return false;
}
}
bool isPointerToImmutableLocation(IRInst* loc)
{
switch (loc->getOp())
{
case kIROp_GetStructuredBufferPtr:
case kIROp_ImageSubscript:
return isPointerToImmutableLocation(loc->getOperand(0));
default:
break;
}
auto type = loc->getDataType();
if (!type)
return false;
switch (type->getOp())
{
case kIROp_HLSLStructuredBufferType:
case kIROp_HLSLByteAddressBufferType:
case kIROp_ConstantBufferType:
case kIROp_ParameterBlockType:
return true;
default:
break;
}
if (auto textureType = as<IRTextureType>(type))
return textureType->getAccess() == SLANG_RESOURCE_ACCESS_READ;
if (auto ptrType = as<IRPtrTypeBase>(type))
{
switch (ptrType->getAddressSpace())
{
case AddressSpace::BuiltinInput:
case AddressSpace::Input:
case AddressSpace::MetalObjectData:
case AddressSpace::Uniform:
case AddressSpace::UniformConstant:
return true;
}
}
return false;
}
bool isGenericParameter(IRInst* inst)
{
// The generic parameter must be in the first block
bool isParam = inst->getOp() == kIROp_Param;
bool isGeneric = false;
if (auto irBlock = as<IRBlock>(inst->parent))
{
isGeneric = as<IRGeneric>(irBlock->getParent()) != nullptr;
}
return isParam && isGeneric;
}
bool canRelaxInstOrderRule(IRInst* inst, IRInst* useOfInst)
{
bool isSameBlock = (inst->getParent() == useOfInst->getParent());
return isSameBlock && isGenericParameter(useOfInst) && (useOfInst->getDataType() == inst);
}
} // namespace Slang
|