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
|
// slang-emit.cpp
#include "../compiler-core/slang-artifact-associated-impl.h"
#include "../compiler-core/slang-artifact-desc-util.h"
#include "../compiler-core/slang-artifact-impl.h"
#include "../compiler-core/slang-artifact-util.h"
#include "../compiler-core/slang-name.h"
#include "../core/slang-castable.h"
#include "../core/slang-performance-profiler.h"
#include "../core/slang-type-text-util.h"
#include "../core/slang-writer.h"
#include "slang-emit-c-like.h"
#include "slang-emit-cpp.h"
#include "slang-emit-cuda.h"
#include "slang-emit-glsl.h"
#include "slang-emit-hlsl.h"
#include "slang-emit-metal.h"
#include "slang-emit-source-writer.h"
#include "slang-emit-torch.h"
#include "slang-emit-wgsl.h"
#include "slang-ir-any-value-inference.h"
#include "slang-ir-autodiff.h"
#include "slang-ir-bind-existentials.h"
#include "slang-ir-byte-address-legalize.h"
#include "slang-ir-check-recursive-type.h"
#include "slang-ir-check-shader-parameter-type.h"
#include "slang-ir-check-unsupported-inst.h"
#include "slang-ir-cleanup-void.h"
#include "slang-ir-collect-global-uniforms.h"
#include "slang-ir-com-interface.h"
#include "slang-ir-composite-reg-to-mem.h"
#include "slang-ir-dce.h"
#include "slang-ir-defunctionalization.h"
#include "slang-ir-diff-call.h"
#include "slang-ir-dll-export.h"
#include "slang-ir-dll-import.h"
#include "slang-ir-early-raytracing-intrinsic-simplification.h"
#include "slang-ir-eliminate-multilevel-break.h"
#include "slang-ir-eliminate-phis.h"
#include "slang-ir-entry-point-raw-ptr-params.h"
#include "slang-ir-entry-point-uniforms.h"
#include "slang-ir-explicit-global-context.h"
#include "slang-ir-explicit-global-init.h"
#include "slang-ir-fuse-satcoop.h"
#include "slang-ir-glsl-legalize.h"
#include "slang-ir-glsl-liveness.h"
#include "slang-ir-hlsl-legalize.h"
#include "slang-ir-inline.h"
#include "slang-ir-insts.h"
#include "slang-ir-layout.h"
#include "slang-ir-legalize-array-return-type.h"
#include "slang-ir-legalize-image-subscript.h"
#include "slang-ir-legalize-mesh-outputs.h"
#include "slang-ir-legalize-uniform-buffer-load.h"
#include "slang-ir-legalize-varying-params.h"
#include "slang-ir-legalize-vector-types.h"
#include "slang-ir-link.h"
#include "slang-ir-liveness.h"
#include "slang-ir-loop-unroll.h"
#include "slang-ir-lower-append-consume-structured-buffer.h"
#include "slang-ir-lower-binding-query.h"
#include "slang-ir-lower-bit-cast.h"
#include "slang-ir-lower-buffer-element-type.h"
#include "slang-ir-lower-combined-texture-sampler.h"
#include "slang-ir-lower-generics.h"
#include "slang-ir-lower-glsl-ssbo-types.h"
#include "slang-ir-lower-l-value-cast.h"
#include "slang-ir-lower-optional-type.h"
#include "slang-ir-lower-reinterpret.h"
#include "slang-ir-lower-result-type.h"
#include "slang-ir-lower-tuple-types.h"
#include "slang-ir-metadata.h"
#include "slang-ir-metal-legalize.h"
#include "slang-ir-optix-entry-point-uniforms.h"
#include "slang-ir-pytorch-cpp-binding.h"
#include "slang-ir-redundancy-removal.h"
#include "slang-ir-resolve-texture-format.h"
#include "slang-ir-restructure-scoping.h"
#include "slang-ir-restructure.h"
#include "slang-ir-sccp.h"
#include "slang-ir-simplify-for-emit.h"
#include "slang-ir-specialize-arrays.h"
#include "slang-ir-specialize-buffer-load-arg.h"
#include "slang-ir-specialize-matrix-layout.h"
#include "slang-ir-specialize-resources.h"
#include "slang-ir-specialize.h"
#include "slang-ir-ssa-simplification.h"
#include "slang-ir-ssa.h"
#include "slang-ir-string-hash.h"
#include "slang-ir-strip-cached-dict.h"
#include "slang-ir-strip-witness-tables.h"
#include "slang-ir-strip.h"
#include "slang-ir-synthesize-active-mask.h"
#include "slang-ir-translate-glsl-global-var.h"
#include "slang-ir-uniformity.h"
#include "slang-ir-user-type-hint.h"
#include "slang-ir-validate.h"
#include "slang-ir-variable-scope-correction.h"
#include "slang-ir-vk-invert-y.h"
#include "slang-ir-wgsl-legalize.h"
#include "slang-ir-wrap-structured-buffers.h"
#include "slang-legalize-types.h"
#include "slang-lower-to-ir.h"
#include "slang-mangle.h"
#include "slang-spirv-val.h"
#include "slang-syntax.h"
#include "slang-type-layout.h"
#include "slang-visitor.h"
#include <assert.h>
Slang::String get_slang_cpp_host_prelude();
Slang::String get_slang_torch_prelude();
namespace Slang
{
EntryPointLayout* findEntryPointLayout(ProgramLayout* programLayout, EntryPoint* entryPoint)
{
// TODO: This function shouldn't need to exist, and it
// somewhat hampers the capabilities of the compiler (e.g.,
// it isn't supported to have a single program contain
// two different "instances" of the same entry point).
//
// Code that cares about layouts should be looking up
// the entry point layout by index on a `ProgramLayout`,
// knowing that those indices will align with the order
// of entry points on the `ComponentType` for the program.
for (auto entryPointLayout : programLayout->entryPoints)
{
if (entryPointLayout->entryPoint.getName() != entryPoint->getName())
continue;
// TODO: We need to be careful about this check, since it relies on
// the profile information in the layout matching that in the request.
//
// What we really seem to want here is some dictionary mapping the
// `EntryPoint` directly to the `EntryPointLayout`, and maybe
// that is precisely what we should build...
//
if (entryPointLayout->profile != entryPoint->getProfile())
continue;
return entryPointLayout;
}
return nullptr;
}
/// Given a layout computed for a scope, get the layout to use when lookup up variables.
///
/// A scope (such as the global scope of a program) groups its
/// parameters into a pseudo-`struct` type for layout purposes,
/// and in some cases that type will in turn be wrapped in a
/// `ConstantBuffer` type to indicate that the parameters needed
/// an implicit constant buffer to be allocated.
///
/// This function "unwraps" the type layout to find the structure
/// type layout that must be stored inside.
///
StructTypeLayout* getScopeStructLayout(ScopeLayout* scopeLayout)
{
auto scopeTypeLayout = scopeLayout->parametersLayout->typeLayout;
if (auto constantBufferTypeLayout = as<ParameterGroupTypeLayout>(scopeTypeLayout))
{
scopeTypeLayout = constantBufferTypeLayout->offsetElementTypeLayout;
}
if (auto structTypeLayout = as<StructTypeLayout>(scopeTypeLayout))
{
return structTypeLayout;
}
SLANG_UNEXPECTED("uhandled global-scope binding layout");
return nullptr;
}
/// Given a layout computed for a program, get the layout to use when lookup up variables.
///
/// This is just an alias of `getScopeStructLayout`.
///
StructTypeLayout* getGlobalStructLayout(ProgramLayout* programLayout)
{
return getScopeStructLayout(programLayout);
}
static void dumpIRIfEnabled(
CodeGenContext* codeGenContext,
IRModule* irModule,
char const* label = nullptr)
{
if (codeGenContext->shouldDumpIR())
{
DiagnosticSinkWriter writer(codeGenContext->getSink());
// FILE* f = nullptr;
// fopen_s(&f, (String("dump-") + label + ".txt").getBuffer(), "wt");
// FileWriter writer(f, 0);
dumpIR(
irModule,
codeGenContext->getIRDumpOptions(),
label,
codeGenContext->getSourceManager(),
&writer);
// fclose(f);
}
}
static void reportCheckpointIntermediates(
CodeGenContext* codeGenContext,
DiagnosticSink* sink,
IRModule* irModule)
{
// Report checkpointing information
CompilerOptionSet& optionSet = codeGenContext->getTargetProgram()->getOptionSet();
SourceManager* sourceManager = sink->getSourceManager();
SourceWriter typeWriter(sourceManager, LineDirectiveMode::None, nullptr);
CLikeSourceEmitter::Desc description;
description.codeGenContext = codeGenContext;
description.sourceWriter = &typeWriter;
CPPSourceEmitter emitter(description);
int nonEmptyStructs = 0;
for (auto inst : irModule->getGlobalInsts())
{
IRStructType* structType = as<IRStructType>(inst);
if (!structType)
continue;
auto checkpointDecoration =
structType->findDecoration<IRCheckpointIntermediateDecoration>();
if (!checkpointDecoration)
continue;
IRSizeAndAlignment structSize;
getNaturalSizeAndAlignment(optionSet, structType, &structSize);
// Reporting happens before empty structs are optimized out
// and we still want to keep the checkpointing decorations,
// so we end up needing to check for non-zero-ness
if (structSize.size == 0)
continue;
auto func = checkpointDecoration->getSourceFunction();
sink->diagnose(
structType,
Diagnostics::reportCheckpointIntermediates,
func,
structSize.size);
nonEmptyStructs++;
for (auto field : structType->getFields())
{
IRType* fieldType = field->getFieldType();
IRSizeAndAlignment fieldSize;
getNaturalSizeAndAlignment(optionSet, fieldType, &fieldSize);
if (fieldSize.size == 0)
continue;
typeWriter.clearContent();
emitter.emitType(fieldType);
sink->diagnose(
field->sourceLoc,
field->findDecoration<IRLoopCounterDecoration>()
? Diagnostics::reportCheckpointCounter
: Diagnostics::reportCheckpointVariable,
fieldSize.size,
typeWriter.getContent());
}
}
if (nonEmptyStructs == 0)
sink->diagnose(SourceLoc(), Diagnostics::reportCheckpointNone);
}
struct LinkingAndOptimizationOptions
{
bool shouldLegalizeExistentialAndResourceTypes = true;
CLikeSourceEmitter* sourceEmitter = nullptr;
};
// To improve the performance of our backend, we will try to avoid running
// passes related to features not used in the user code.
// To do so, we will scan the IR module once, and determine which passes are needed
// based on the instructions used in the IR module.
// This will allow us to skip running passes that are not needed, without having to
// run all the passes only to find out that no work is needed.
// This is especially important for the performance of the backend, as some passes
// have an initialization cost (such as building reference graphs or DOM trees) that
// can be expensive.
//
struct RequiredLoweringPassSet
{
bool resultType;
bool optionalType;
bool combinedTextureSamplers;
bool reinterpret;
bool generics;
bool bindExistential;
bool autodiff;
bool derivativePyBindWrapper;
bool bitcast;
bool existentialTypeLayout;
bool bindingQuery;
bool meshOutput;
bool higherOrderFunc;
bool glslGlobalVar;
bool glslSSBO;
bool byteAddressBuffer;
bool dynamicResource;
};
// Scan the IR module and determine which lowering/legalization passes are needed based
// on the instructions we see.
//
void calcRequiredLoweringPassSet(
RequiredLoweringPassSet& result,
CodeGenContext* codeGenContext,
IRInst* inst)
{
switch (inst->getOp())
{
case kIROp_ResultType: result.resultType = true; break;
case kIROp_OptionalType: result.optionalType = true; break;
case kIROp_TextureType:
if (!isKhronosTarget(codeGenContext->getTargetReq()))
{
if (auto texType = as<IRTextureType>(inst))
{
auto isCombined = texType->getIsCombinedInst();
if (auto isCombinedVal = as<IRIntLit>(isCombined))
{
if (isCombinedVal->getValue() != 0)
{
result.combinedTextureSamplers = true;
}
}
else
{
result.combinedTextureSamplers = true;
}
}
}
break;
case kIROp_PseudoPtrType:
case kIROp_BoundInterfaceType:
case kIROp_BindExistentialsType:
result.generics = true;
result.existentialTypeLayout = true;
break;
case kIROp_GetRegisterIndex:
case kIROp_GetRegisterSpace: result.bindingQuery = true; break;
case kIROp_BackwardDifferentiate:
case kIROp_ForwardDifferentiate:
case kIROp_MakeDifferentialPairUserCode: result.autodiff = true; break;
case kIROp_VerticesType:
case kIROp_IndicesType:
case kIROp_PrimitivesType: result.meshOutput = true; break;
case kIROp_CreateExistentialObject:
case kIROp_MakeExistential:
case kIROp_ExtractExistentialType:
case kIROp_ExtractExistentialValue:
case kIROp_ExtractExistentialWitnessTable:
case kIROp_WrapExistential:
case kIROp_LookupWitness: result.generics = true; break;
case kIROp_Specialize:
{
auto specInst = as<IRSpecialize>(inst);
if (!findAnyTargetIntrinsicDecoration(getResolvedInstForDecorations(specInst)))
result.generics = true;
}
break;
case kIROp_Reinterpret: result.reinterpret = true; break;
case kIROp_BitCast: result.bitcast = true; break;
case kIROp_AutoPyBindCudaDecoration: result.derivativePyBindWrapper = true; break;
case kIROp_Param:
if (as<IRFuncType>(inst->getDataType()))
result.higherOrderFunc = true;
break;
case kIROp_GlobalInputDecoration:
case kIROp_GlobalOutputDecoration:
case kIROp_GetWorkGroupSize: result.glslGlobalVar = true; break;
case kIROp_BindExistentialSlotsDecoration:
result.bindExistential = true;
result.generics = true;
result.existentialTypeLayout = true;
break;
case kIROp_GLSLShaderStorageBufferType: result.glslSSBO = true; break;
case kIROp_ByteAddressBufferLoad:
case kIROp_ByteAddressBufferStore:
case kIROp_HLSLRWByteAddressBufferType:
case kIROp_HLSLByteAddressBufferType: result.byteAddressBuffer = true; break;
case kIROp_DynamicResourceType: result.dynamicResource = true; break;
}
if (!result.generics || !result.existentialTypeLayout)
{
// If any instruction has an interface type, we need to run
// the generics lowering pass.
auto type = inst->getDataType();
if (type && type->getOp() == kIROp_InterfaceType)
{
result.generics = true;
result.existentialTypeLayout = true;
}
}
for (auto child : inst->getDecorationsAndChildren())
{
calcRequiredLoweringPassSet(result, codeGenContext, child);
}
}
bool checkStaticAssert(IRInst* inst, DiagnosticSink* sink)
{
switch (inst->getOp())
{
case kIROp_StaticAssert:
{
IRInst* condi = inst->getOperand(0);
if (auto condiLit = as<IRBoolLit>(condi))
{
if (!condiLit->getValue())
{
IRInst* msg = inst->getOperand(1);
if (auto msgLit = as<IRStringLit>(msg))
{
sink->diagnose(
inst,
Diagnostics::staticAssertionFailure,
msgLit->getStringSlice());
}
else
{
sink->diagnose(inst, Diagnostics::staticAssertionFailureWithoutMessage);
}
}
}
else
{
sink->diagnose(condi, Diagnostics::staticAssertionConditionNotConstant);
}
return true;
}
}
List<IRInst*> removeList;
for (auto child : inst->getChildren())
{
if (checkStaticAssert(child, sink))
removeList.add(child);
}
for (auto child : removeList)
{
child->removeAndDeallocate();
}
return false;
}
static void unexportNonEmbeddableIR(CodeGenTarget target, IRModule* irModule)
{
for (auto inst : irModule->getGlobalInsts())
{
if (inst->getOp() == kIROp_Func)
{
bool remove = false;
if (target == CodeGenTarget::HLSL)
{
// DXIL does not permit HLSLStructureBufferType in exported functions
// or sadly Matrices (https://github.com/shader-slang/slang/issues/4880)
auto type = as<IRFuncType>(inst->getFullType());
auto argCount = type->getOperandCount();
for (UInt aa = 0; aa < argCount; ++aa)
{
auto operand = type->getOperand(aa);
if (operand->getOp() == kIROp_HLSLStructuredBufferType ||
operand->getOp() == kIROp_MatrixType)
{
remove = true;
break;
}
}
}
else if (target == CodeGenTarget::SPIRV)
{
// SPIR-V does not allow exporting entry points
if (inst->findDecoration<IREntryPointDecoration>())
{
remove = true;
}
}
if (remove)
{
if (auto dec = inst->findDecoration<IRPublicDecoration>())
{
dec->removeAndDeallocate();
}
if (auto dec = inst->findDecoration<IRDownstreamModuleExportDecoration>())
{
dec->removeAndDeallocate();
}
}
}
}
}
Result linkAndOptimizeIR(
CodeGenContext* codeGenContext,
LinkingAndOptimizationOptions const& options,
LinkedIR& outLinkedIR)
{
SLANG_PROFILE;
auto session = codeGenContext->getSession();
auto sink = codeGenContext->getSink();
auto target = codeGenContext->getTargetFormat();
auto targetRequest = codeGenContext->getTargetReq();
auto targetProgram = codeGenContext->getTargetProgram();
// Get the artifact desc for the target
const auto artifactDesc = ArtifactDescUtil::makeDescForCompileTarget(asExternal(target));
// We start out by performing "linking" at the level of the IR.
// This step will create a fresh IR module to be used for
// code generation, and will copy in any IR definitions that
// the desired entry point requires. Along the way it will
// resolve references to imported/exported symbols across
// modules, and also select between the definitions of
// any "profile-overloaded" symbols.
//
outLinkedIR = linkIR(codeGenContext);
auto irModule = outLinkedIR.module;
auto irEntryPoints = outLinkedIR.entryPoints;
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "LINKED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// If the user specified the flag that they want us to dump
// IR, then do it here, for the target-specific, but
// un-specialized IR.
dumpIRIfEnabled(codeGenContext, irModule, "POST IR VALIDATION");
// Scan the IR module and determine which lowering/legalization passes are needed.
RequiredLoweringPassSet requiredLoweringPassSet = {};
calcRequiredLoweringPassSet(requiredLoweringPassSet, codeGenContext, irModule->getModuleInst());
if (!isKhronosTarget(targetRequest) && requiredLoweringPassSet.glslSSBO)
lowerGLSLShaderStorageBufferObjectsToStructuredBuffers(irModule, sink);
if (requiredLoweringPassSet.glslGlobalVar)
translateGLSLGlobalVar(codeGenContext, irModule);
// Replace any global constants with their values.
//
replaceGlobalConstants(irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "GLOBAL CONSTANTS REPLACED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// When there are top-level existential-type parameters
// to the shader, we need to take the side-band information
// on how the existential "slots" were bound to concrete
// types, and use it to introduce additional explicit
// shader parameters for those slots, to be wired up to
// use sites.
//
if (requiredLoweringPassSet.bindExistential)
bindExistentialSlots(irModule, sink);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "EXISTENTIALS BOUND");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Now that we've linked the IR code, any layout/binding
// information has been attached to shader parameters
// and entry points. Now we are safe to make transformations
// that might move code without worrying about losing
// the connection between a parameter and its layout.
// One example of a transformation that needs to wait until
// we have layout information is the step where we collect
// any global-scope shader parameters with ordinary/uniform
// type into an aggregate `struct`, and then (optionally)
// wrap that `struct` up in a constant buffer.
//
// This step allows shaders to declare parameters of ordinary
// type as globals in the input file, while ensuring that
// downstream passes for graphics APIs like Vulkan and D3D
// can assume that all ordinary/uniform data is strictly
// passed using constant buffers.
//
collectGlobalUniformParameters(irModule, outLinkedIR.globalScopeVarLayout);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "GLOBAL UNIFORMS COLLECTED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Another transformation that needed to wait until we
// had layout information on parameters is to take uniform
// parameters of a shader entry point and move them into
// the global scope instead.
//
// TODO: We should skip this step for CUDA targets.
// (NM): we actually do need to do this step for OptiX based CUDA targets
//
{
CollectEntryPointUniformParamsOptions passOptions;
switch (target)
{
case CodeGenTarget::HostCPPSource: break;
case CodeGenTarget::CUDASource: collectOptiXEntryPointUniformParams(irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "OPTIX ENTRY POINT UNIFORMS COLLECTED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
break;
case CodeGenTarget::CPPSource:
passOptions.alwaysCreateCollectedParam = true;
[[fallthrough]];
default: collectEntryPointUniformParams(irModule, passOptions);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "ENTRY POINT UNIFORMS COLLECTED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
break;
}
}
switch (target)
{
default: moveEntryPointUniformParamsToGlobalScope(irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "ENTRY POINT UNIFORMS MOVED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
break;
case CodeGenTarget::HostCPPSource:
case CodeGenTarget::CPPSource:
case CodeGenTarget::CUDASource: break;
}
if (requiredLoweringPassSet.optionalType)
lowerOptionalType(irModule, sink);
switch (target)
{
case CodeGenTarget::CUDASource:
case CodeGenTarget::PyTorchCppBinding: break;
default: removeTorchAndCUDAEntryPoints(irModule); break;
}
switch (target)
{
case CodeGenTarget::CPPSource:
case CodeGenTarget::HostCPPSource:
{
lowerComInterfaces(irModule, artifactDesc.style, sink);
generateDllImportFuncs(codeGenContext->getTargetProgram(), irModule, sink);
generateDllExportFuncs(irModule, sink);
break;
}
default: break;
}
// Lower `Result<T,E>` types into ordinary struct types.
if (requiredLoweringPassSet.resultType)
lowerResultType(irModule, sink);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "UNIONS DESUGARED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Lower all the LValue implict casts (used for out/inout/ref scenarios)
lowerLValueCast(targetProgram, irModule);
IRSimplificationOptions defaultIRSimplificationOptions =
IRSimplificationOptions::getDefault(targetProgram);
IRSimplificationOptions fastIRSimplificationOptions =
IRSimplificationOptions::getFast(targetProgram);
IRDeadCodeEliminationOptions deadCodeEliminationOptions = IRDeadCodeEliminationOptions();
fastIRSimplificationOptions.minimalOptimization =
defaultIRSimplificationOptions.minimalOptimization;
deadCodeEliminationOptions.useFastAnalysis = fastIRSimplificationOptions.minimalOptimization;
deadCodeEliminationOptions.keepGlobalParamsAlive =
targetProgram->getOptionSet().getBoolOption(CompilerOptionName::PreserveParameters);
simplifyIR(targetProgram, irModule, defaultIRSimplificationOptions, sink);
if (targetProgram->getOptionSet().getBoolOption(CompilerOptionName::ValidateUniformity))
{
validateUniformity(irModule, sink);
if (sink->getErrorCount() != 0)
return SLANG_FAIL;
}
// Fill in default matrix layout into matrix types that left layout unspecified.
specializeMatrixLayout(targetProgram, irModule);
// It's important that this takes place before defunctionalization as we
// want to be able to easily discover the cooperate and fallback funcitons
// being passed to saturated_cooperation
if (!targetProgram->getOptionSet().shouldPerformMinimumOptimizations())
fuseCallsToSaturatedCooperation(irModule);
switch (target)
{
case CodeGenTarget::CUDASource:
case CodeGenTarget::PyTorchCppBinding:
{
// Generate any requested derivative wrappers
if (requiredLoweringPassSet.derivativePyBindWrapper)
generateDerivativeWrappers(irModule, sink);
break;
}
default: break;
}
if (requiredLoweringPassSet.autodiff)
{
// Generate warnings for potentially incorrect or badly-performing autodiff patterns.
checkAutodiffPatterns(targetProgram, irModule, sink);
}
// Next, we need to ensure that the code we emit for
// the target doesn't contain any operations that would
// be illegal on the target platform. For example,
// none of our target supports generics, or interfaces,
// so we need to specialize those away.
//
// Simplification of existential-based and generics-based
// code may each open up opportunities for the other, so
// the relevant specialization transformations are handled in a
// single pass that looks for all simplification opportunities.
//
// TODO: We also need to extend this pass so that it will "expose"
// existential values that are nested inside of other types,
// so that the simplifications can be applied.
//
// TODO: This pass is *also* likely to be the place where we
// perform specialization of functions based on parameter
// values that need to be compile-time constants.
//
// Specialization passes and auto-diff passes runs in an iterative loop
// since each pass can enable the other pass to progress further.
for (;;)
{
bool changed = false;
dumpIRIfEnabled(codeGenContext, irModule, "BEFORE-SPECIALIZE");
if (!codeGenContext->isSpecializationDisabled())
changed |= specializeModule(targetProgram, irModule, codeGenContext->getSink());
if (codeGenContext->getSink()->getErrorCount() != 0)
return SLANG_FAIL;
dumpIRIfEnabled(codeGenContext, irModule, "AFTER-SPECIALIZE");
if (changed)
{
applySparseConditionalConstantPropagation(irModule, codeGenContext->getSink());
}
validateIRModuleIfEnabled(codeGenContext, irModule);
// Inline calls to any functions marked with [__unsafeInlineEarly] again,
// since we may be missing out cases prevented by the functions that we just specialzied.
performMandatoryEarlyInlining(irModule);
eliminateDeadCode(irModule, deadCodeEliminationOptions);
// Unroll loops.
if (!fastIRSimplificationOptions.minimalOptimization)
{
if (codeGenContext->getSink()->getErrorCount() == 0)
{
if (!unrollLoopsInModule(targetProgram, irModule, codeGenContext->getSink()))
return SLANG_FAIL;
}
}
// Few of our targets support higher order functions, and
// we don't have the backend code to emit higher order functions for those
// which do.
// Specialize away these parameters
// TODO: We should implement a proper defunctionalization pass
if (requiredLoweringPassSet.higherOrderFunc)
changed |= specializeHigherOrderParameters(codeGenContext, irModule);
if (requiredLoweringPassSet.autodiff)
{
dumpIRIfEnabled(codeGenContext, irModule, "BEFORE-AUTODIFF");
enableIRValidationAtInsert();
changed |= processAutodiffCalls(targetProgram, irModule, sink);
disableIRValidationAtInsert();
dumpIRIfEnabled(codeGenContext, irModule, "AFTER-AUTODIFF");
}
if (!changed)
break;
}
// Report checkpointing information
if (codeGenContext->shouldReportCheckpointIntermediates())
reportCheckpointIntermediates(codeGenContext, sink, irModule);
// Finalization is always run so AD-related instructions can be removed,
// even the AD pass itself is not run.
//
finalizeAutoDiffPass(targetProgram, irModule);
finalizeSpecialization(irModule);
requiredLoweringPassSet = {};
calcRequiredLoweringPassSet(requiredLoweringPassSet, codeGenContext, irModule->getModuleInst());
switch (target)
{
case CodeGenTarget::PyTorchCppBinding:
generateHostFunctionsForAutoBindCuda(irModule, sink);
lowerBuiltinTypesForKernelEntryPoints(irModule, sink);
generatePyTorchCppBinding(irModule, sink);
handleAutoBindNames(irModule);
break;
case CodeGenTarget::CUDASource:
lowerBuiltinTypesForKernelEntryPoints(irModule, sink);
removeTorchKernels(irModule);
handleAutoBindNames(irModule);
break;
default: break;
}
if (codeGenContext->removeAvailableInDownstreamIR)
{
removeAvailableInDownstreamModuleDecorations(target, irModule);
}
if (targetProgram->getOptionSet().shouldRunNonEssentialValidation())
{
checkForRecursiveTypes(irModule, sink);
// For some targets, we are more restrictive about what types are allowed
// to be used as shader parameters in ConstantBuffer/ParameterBlock.
// We will check for these restrictions here.
checkForInvalidShaderParameterType(targetRequest, irModule, sink);
}
if (sink->getErrorCount() != 0)
return SLANG_FAIL;
// If we have a target that is GPU like we use the string hashing mechanism
// but for that to work we need to inline such that calls (or returns) of strings
// boil down into getStringHash(stringLiteral)
if (!ArtifactDescUtil::isCpuLikeTarget(artifactDesc))
{
// We could fail because
// 1) It's not inlinable for some reason (for example if it's recursive)
SLANG_RETURN_ON_FAIL(performTypeInlining(irModule, sink));
}
if (requiredLoweringPassSet.reinterpret)
lowerReinterpret(targetProgram, irModule, sink);
if (sink->getErrorCount() != 0)
return SLANG_FAIL;
validateIRModuleIfEnabled(codeGenContext, irModule);
// If we have any witness tables that are marked as `KeepAlive`,
// but are not used for dynamic dispatch, unpin them so we don't
// do unnecessary work to lower them.
unpinWitnessTables(irModule);
if (!fastIRSimplificationOptions.minimalOptimization)
{
simplifyIR(targetProgram, irModule, fastIRSimplificationOptions, sink);
}
else if (requiredLoweringPassSet.generics)
{
eliminateDeadCode(irModule, fastIRSimplificationOptions.deadCodeElimOptions);
}
if (!ArtifactDescUtil::isCpuLikeTarget(artifactDesc) &&
targetProgram->getOptionSet().shouldRunNonEssentialValidation())
{
// We could fail because (perhaps, somehow) end up with getStringHash that the operand is
// not a string literal
SLANG_RETURN_ON_FAIL(checkGetStringHashInsts(irModule, sink));
}
// For targets that supports dynamic dispatch, we need to lower the
// generics / interface types to ordinary functions and types using
// function pointers.
dumpIRIfEnabled(codeGenContext, irModule, "BEFORE-LOWER-GENERICS");
if (requiredLoweringPassSet.generics)
lowerGenerics(targetProgram, irModule, sink);
else
cleanupGenerics(targetProgram, irModule, sink);
dumpIRIfEnabled(codeGenContext, irModule, "AFTER-LOWER-GENERICS");
if (sink->getErrorCount() != 0)
return SLANG_FAIL;
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "SPECIALIZED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Inline calls to any functions marked with [__unsafeInlineEarly] or [ForceInline].
performForceInlining(irModule);
// Specialization can introduce dead code that could trip
// up downstream passes like type legalization, so we
// will run a DCE pass to clean up after the specialization.
//
if (fastIRSimplificationOptions.minimalOptimization)
{
eliminateDeadCode(irModule, deadCodeEliminationOptions);
}
else
{
simplifyIR(targetProgram, irModule, defaultIRSimplificationOptions, sink);
}
validateIRModuleIfEnabled(codeGenContext, irModule);
// On non-HLSL targets, there isn't an implementation of `AppendStructuredBuffer`
// and `ConsumeStructuredBuffer` types, so we lower them into normal struct types
// of `RWStructuredBuffer` typed fields now.
if (target != CodeGenTarget::HLSL)
{
lowerAppendConsumeStructuredBuffers(targetProgram, irModule, sink);
}
switch (target)
{
default:
if (!ArtifactDescUtil::isCpuLikeTarget(artifactDesc))
break;
[[fallthrough]];
case CodeGenTarget::HLSL:
case CodeGenTarget::Metal:
case CodeGenTarget::MetalLib:
case CodeGenTarget::MetalLibAssembly:
case CodeGenTarget::WGSL:
if (requiredLoweringPassSet.combinedTextureSamplers)
lowerCombinedTextureSamplers(codeGenContext, irModule, sink);
break;
}
if (codeGenContext->getTargetProgram()->getOptionSet().getBoolOption(
CompilerOptionName::VulkanEmitReflection))
{
addUserTypeHintDecorations(irModule);
}
// We don't need the legalize pass for C/C++ based types
if (options.shouldLegalizeExistentialAndResourceTypes)
{
// The Slang language allows interfaces to be used like
// ordinary types (including placing them in constant
// buffers and entry-point parameter lists), but then
// getting them to lay out in a reasonable way requires
// us to treat fields/variables with interface type
// *as if* they were pointers to heap-allocated "objects."
//
// Specialization will have replaced fields/variables
// with interface types like `IFoo` with fields/variables
// with pointer-like types like `ExistentialBox<SomeType>`.
//
// We need to legalize these pointer-like types away,
// which involves two main changes:
//
// 1. Any `ExistentialBox<...>` fields need to be moved
// out of their enclosing `struct` type, so that the layout
// of the enclosing type is computed as if the field had
// zero size.
//
// 2. Once an `ExistentialBox<X>` has been floated out
// of its parent and landed somwhere permanent (e.g., either
// a dedicated variable, or a field of constant buffer),
// we need to replace it with just an `X`, after which we
// will have (more) legal shader code.
//
if (requiredLoweringPassSet.existentialTypeLayout)
{
legalizeExistentialTypeLayout(targetProgram, irModule, sink);
}
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "EXISTENTIALS LEGALIZED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Many of our target languages and/or downstream compilers
// don't support `struct` types that have resource-type fields.
// In order to work around this limitation, we will rewrite the
// IR so that any structure types with resource-type fields get
// split into a "tuple" that comprises the ordinary fields (still
// bundles up as a `struct`) and one element for each resource-type
// field (recursively).
//
// What used to be individual variables/parameters/arguments/etc.
// then become multiple variables/parameters/arguments/etc.
//
legalizeResourceTypes(targetProgram, irModule, sink);
// Debugging output of legalization
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "LEGALIZED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
}
else
{
// On CPU/CUDA targets, we simply elminate any empty types if
// they are not part of public interface.
legalizeEmptyTypes(targetProgram, irModule, sink);
}
legalizeVectorTypes(irModule, sink);
// Once specialization and type legalization have been performed,
// we should perform some of our basic optimization steps again,
// to see if we can clean up any temporaries created by legalization.
// (e.g., things that used to be aggregated might now be split up,
// so that we can work with the individual fields).
if (fastIRSimplificationOptions.minimalOptimization)
eliminateDeadCode(irModule, deadCodeEliminationOptions);
else
simplifyIR(targetProgram, irModule, fastIRSimplificationOptions, sink);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "AFTER SSA");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// After type legalization and subsequent SSA cleanup we expect
// that any resource types passed to functions are exposed
// as their own top-level parameters (which might have
// resource or array-of-...-resource types).
//
// Many of our targets place restrictions on how certain
// resource types can be used, so that having them as
// function parameters, reults, etc. is invalid.
// We clean up the usages of resource values here.
specializeResourceUsage(codeGenContext, irModule);
specializeFuncsForBufferLoadArgs(codeGenContext, irModule);
// We also want to specialize calls to functions that
// takes unsized array parameters if possible.
// Moreover, for Khronos targets, we also want to specialize calls to functions
// that takes arrays/structs containing arrays as parameters with the actual
// global array object to avoid loading big arrays into SSA registers, which seems
// to cause performance issues.
specializeArrayParameters(codeGenContext, irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "AFTER RESOURCE SPECIALIZATION");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// Process `static_assert` after the specialization is done.
// Some information for `static_assert` is available only after the specialization.
checkStaticAssert(irModule->getModuleInst(), sink);
// For HLSL (and fxc/dxc) only, we need to "wrap" any
// structured buffers defined over matrix types so
// that they instead use an intermediate `struct`.
// This is required to get those targets to respect
// the options for matrix layout set via `#pragma`
// or command-line options.
//
switch (target)
{
case CodeGenTarget::HLSL:
{
wrapStructuredBuffersOfMatrices(irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "STRUCTURED BUFFERS WRAPPED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
}
break;
default: break;
}
// For all targets, we translate load/store operations
// of aggregate types from/to byte-address buffers into
// stores of individual scalar or vector values.
//
if (requiredLoweringPassSet.byteAddressBuffer)
{
ByteAddressBufferLegalizationOptions byteAddressBufferOptions;
// Depending on the target, we may decide to do
// more aggressive translation that reduces the
// load/store operations down to invididual scalars
// (splitting up vector ops).
//
switch (target)
{
default: break;
case CodeGenTarget::GLSL:
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
// For GLSL targets, we want to translate the vector load/store
// operations into scalar ops. This is in part as a simplification,
// but it also ensures that our generated code respects the lax
// alignment rules for D3D byte-address buffers (the base address
// of a buffer need not be more than 4-byte aligned, and loads
// of vectors need only be aligned based on their element type).
//
// Slang IR supports a variant of `Load<T>` on byte-address buffers
// that will have greater alignment than required by D3D. The
// alignment information is inferred from the operation like a
// `Load4Aligned<T>` that returns a `vector<4,T>` that assumes a
// `4*sizeof(T)` alignment. We may choose to disable that in favor
// of byte-address indexing by setting this flag to true.
byteAddressBufferOptions.scalarizeVectorLoadStore = false;
// For GLSL targets, there really isn't a low-level concept
// of a byte-address buffer at all, and the standard "shader storage
// buffer" (SSBO) feature is a lot closer to an HLSL structured
// buffer for our purposes.
//
// In particular, each SSBO can only have a single element type,
// so that even with bitcasts we can't have a single buffer declaration
// (e.g., one with `uint` elements) service all load/store operations
// (e.g., a `half` value can't be stored atomically if there are
// `uint` elements, unless we use explicit atomics).
//
// In order to simplify things, we will translate byte-address buffer
// ops to equivalent structured-buffer ops for GLSL targets, where
// each unique type being loaded/stored yields a different global
// parameter declaration of the buffer.
//
byteAddressBufferOptions.translateToStructuredBufferOps = true;
break;
case CodeGenTarget::Metal:
case CodeGenTarget::MetalLib:
case CodeGenTarget::MetalLibAssembly:
byteAddressBufferOptions.scalarizeVectorLoadStore = true;
byteAddressBufferOptions.treatGetEquivalentStructuredBufferAsGetThis = true;
byteAddressBufferOptions.translateToStructuredBufferOps = false;
byteAddressBufferOptions.lowerBasicTypeOps = true;
break;
}
// We also need to decide whether to translate
// any "leaf" load/store operations over to
// use only unsigned-integer types and then
// bit-cast, or if we prefer to leave them
// as load/store of the original type.
//
switch (target)
{
case CodeGenTarget::HLSL:
{
auto profile = codeGenContext->getTargetProgram()->getOptionSet().getProfile();
if (profile.getFamily() == ProfileFamily::DX)
{
if (profile.getVersion() <= ProfileVersion::DX_5_0)
{
// Fxc and earlier dxc versions do not support
// a templates `.Load<T>` operation on byte-address
// buffers, and instead need us to emit separate
// `uint` loads and then bit-cast over to
// the correct type.
//
byteAddressBufferOptions.useBitCastFromUInt = true;
}
}
}
break;
default: break;
}
legalizeByteAddressBufferOps(
session,
targetProgram,
irModule,
codeGenContext->getSink(),
byteAddressBufferOptions);
}
// For CUDA targets only, we will need to turn operations
// the implicitly reference the "active mask" into ones
// that use (and pass around) an explicit mask instead.
//
switch (target)
{
case CodeGenTarget::CUDASource:
case CodeGenTarget::PTX:
{
synthesizeActiveMask(irModule, codeGenContext->getSink());
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "AFTER synthesizeActiveMask");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
}
break;
default: break;
}
switch (target)
{
case CodeGenTarget::GLSL:
case CodeGenTarget::SPIRV:
case CodeGenTarget::WGSL: resolveTextureFormat(irModule); break;
}
// For GLSL only, we will need to perform "legalization" of
// the entry point and any entry-point parameters.
//
// TODO: We should consider moving this legalization work
// as late as possible, so that it doesn't affect how other
// optimization passes need to work.
//
switch (target)
{
case CodeGenTarget::GLSL:
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
{
GLSLExtensionTracker glslExtensionTracker;
GLSLExtensionTracker* glslExtensionTrackerPtr =
options.sourceEmitter
? as<GLSLExtensionTracker>(options.sourceEmitter->getExtensionTracker())
: &glslExtensionTracker;
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "PRE GLSL LEGALIZED");
#endif
legalizeEntryPointsForGLSL(
session,
irModule,
irEntryPoints,
codeGenContext,
glslExtensionTrackerPtr);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "GLSL LEGALIZED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
}
break;
case CodeGenTarget::Metal:
case CodeGenTarget::MetalLib:
case CodeGenTarget::MetalLibAssembly:
{
legalizeIRForMetal(irModule, sink);
}
break;
case CodeGenTarget::CSource:
case CodeGenTarget::CPPSource:
{
legalizeEntryPointVaryingParamsForCPU(irModule, codeGenContext->getSink());
}
break;
case CodeGenTarget::CUDASource:
{
legalizeEntryPointVaryingParamsForCUDA(irModule, codeGenContext->getSink());
}
break;
case CodeGenTarget::WGSL:
case CodeGenTarget::WGSLSPIRV:
case CodeGenTarget::WGSLSPIRVAssembly:
{
legalizeIRForWGSL(irModule, sink);
}
break;
default: break;
}
// Legalize non struct parameters that are expected to be structs for HLSL.
if (isD3DTarget(targetRequest))
legalizeNonStructParameterToStructForHLSL(irModule);
// Create aliases for all dynamic resource parameters.
if (requiredLoweringPassSet.dynamicResource && isKhronosTarget(targetRequest))
legalizeDynamicResourcesForGLSL(codeGenContext, irModule);
// Legalize `ImageSubscript` loads.
switch (target)
{
case CodeGenTarget::MetalLibAssembly:
case CodeGenTarget::MetalLib:
case CodeGenTarget::Metal:
case CodeGenTarget::GLSL:
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
{
legalizeImageSubscript(targetRequest, irModule, sink);
}
break;
default: break;
}
// Legalize constant buffer loads.
switch (target)
{
case CodeGenTarget::GLSL:
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
{
legalizeConstantBufferLoadForGLSL(irModule);
legalizeDispatchMeshPayloadForGLSL(irModule);
}
break;
default: break;
}
switch (target)
{
default: break;
case CodeGenTarget::GLSL: moveGlobalVarInitializationToEntryPoints(irModule); break;
// For SPIR-V to SROA across 2 entry-points a value must not be a global
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
moveGlobalVarInitializationToEntryPoints(irModule);
if (targetProgram->getOptionSet().getBoolOption(
CompilerOptionName::EnableExperimentalPasses))
introduceExplicitGlobalContext(irModule, target);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "EXPLICIT GLOBAL CONTEXT INTRODUCED");
#endif
break;
case CodeGenTarget::Metal:
case CodeGenTarget::CPPSource:
case CodeGenTarget::CUDASource:
moveGlobalVarInitializationToEntryPoints(irModule);
introduceExplicitGlobalContext(irModule, target);
if (target == CodeGenTarget::CPPSource)
{
convertEntryPointPtrParamsToRawPtrs(irModule);
}
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "EXPLICIT GLOBAL CONTEXT INTRODUCED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
break;
}
stripCachedDictionaries(irModule);
// TODO: our current dynamic dispatch pass will remove all uses of witness tables.
// If we are going to support function-pointer based, "real" modular dynamic dispatch,
// we will need to disable this pass.
stripWitnessTables(irModule);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "AFTER STRIP WITNESS TABLES");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
// The resource-based specialization pass above
// may create specialized versions of functions, but
// it does not try to completely eliminate the original
// functions, so there might still be invalid code in
// our IR module.
//
// We run DCE pass again to clean things up.
//
eliminateDeadCode(irModule, deadCodeEliminationOptions);
if (isKhronosTarget(targetRequest))
{
// As a fallback, if the above specialization steps failed to remove resource type
// parameters, we will inline the functions in question to make sure we can produce valid
// GLSL.
performGLSLResourceReturnFunctionInlining(targetProgram, irModule);
}
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "AFTER DCE");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
cleanUpVoidType(irModule);
// Lower the `getRegisterIndex` and `getRegisterSpace` intrinsics.
//
if (requiredLoweringPassSet.bindingQuery)
lowerBindingQueries(irModule, sink);
// For some small improvement in type safety we represent these as opaque
// structs instead of regular arrays.
//
// If any have survived this far, change them back to regular (decorated)
// arrays that the emitters can deal with.
if (requiredLoweringPassSet.meshOutput)
legalizeMeshOutputTypes(irModule);
lowerBufferElementTypeToStorageType(targetProgram, irModule);
// Rewrite functions that return arrays to return them via `out` parameter,
// since our target languages doesn't allow returning arrays.
if (!isMetalTarget(targetRequest))
legalizeArrayReturnType(irModule);
if (isKhronosTarget(targetRequest) || target == CodeGenTarget::HLSL)
{
legalizeUniformBufferLoad(irModule);
if (targetProgram->getOptionSet().getBoolOption(CompilerOptionName::VulkanInvertY))
invertYOfPositionOutput(irModule);
if (targetProgram->getOptionSet().getBoolOption(CompilerOptionName::VulkanUseDxPositionW))
rcpWOfPositionInput(irModule);
}
// Lower all bit_cast operations on complex types into leaf-level
// bit_cast on basic types.
if (requiredLoweringPassSet.bitcast)
lowerBitCast(targetProgram, irModule, sink);
bool emitSpirvDirectly = targetProgram->shouldEmitSPIRVDirectly();
if (emitSpirvDirectly)
{
performIntrinsicFunctionInlining(irModule);
eliminateDeadCode(irModule, deadCodeEliminationOptions);
}
eliminateMultiLevelBreak(irModule);
if (!fastIRSimplificationOptions.minimalOptimization)
{
IRSimplificationOptions simplificationOptions = fastIRSimplificationOptions;
simplificationOptions.cfgOptions.removeTrivialSingleIterationLoops = true;
simplifyIR(targetProgram, irModule, simplificationOptions, sink);
}
// As a late step, we need to take the SSA-form IR and move things *out*
// of SSA form, by eliminating all "phi nodes" (block parameters) and
// introducing explicit temporaries instead. Doing this at the IR level
// means that subsequent emit logic doesn't need to contend with the
// complexities of blocks with parameters.
//
{
// Get the liveness mode.
const LivenessMode livenessMode =
codeGenContext->shouldTrackLiveness() ? LivenessMode::Enabled : LivenessMode::Disabled;
//
// Downstream targets may benefit from having live-range information for
// local variables, and our IR currently encodes a reasonably good version
// of that information. At this point we will insert live-range markers
// for local variables, on when such markers are requested.
//
// After this point in optimization, any passes that introduce new
// temporary variables into the IR module should take responsibility for
// producing their own live-range information.
//
if (isEnabled(livenessMode))
{
LivenessUtil::addVariableRangeStarts(irModule, livenessMode);
}
// We only want to accumulate locations if liveness tracking is enabled.
PhiEliminationOptions phiEliminationOptions;
if (isKhronosTarget(targetRequest) && emitSpirvDirectly)
{
phiEliminationOptions.eliminateCompositeTypedPhiOnly = false;
phiEliminationOptions.useRegisterAllocation = true;
}
eliminatePhis(livenessMode, irModule, phiEliminationOptions);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "PHIS ELIMINATED");
#endif
// If liveness is enabled add liveness ranges based on the accumulated liveness locations
if (isEnabled(livenessMode))
{
LivenessUtil::addRangeEnds(irModule, livenessMode);
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "LIVENESS");
#endif
}
}
// TODO: We need to insert the logic that fixes variable scoping issues
// here (rather than doing it very late in the emit process), because
// otherwise the `applyGLSLLiveness()` operation below wouldn't be
// able to see the live-range information that pass would need to add.
// For now we are avoiding that problem by simply *not* emitting live-range
// information when we fix variable scoping later on.
// Depending on the target, certain things that were represented ass
// single IR instructions will need to be emitted with the help of
// function declaratons in output high-level code.
//
// One example of this is the live-range information, which needs
// to be output to GLSL code that uses a glslang extension for
// supporting function declarations that map directly to SPIR-V opcodes.
//
// We execute a pass here to transform any live-range instructions
// in the module into function calls, for the targets that require it.
//
if (codeGenContext->shouldTrackLiveness())
{
if (isKhronosTarget(targetRequest))
{
applyGLSLLiveness(irModule);
}
}
if (isKhronosTarget(targetRequest) && emitSpirvDirectly)
{
replaceLocationIntrinsicsWithRaytracingObject(targetProgram, irModule, sink);
}
validateIRModuleIfEnabled(codeGenContext, irModule);
// Run a final round of simplifications to clean up unused things after phi-elimination.
simplifyNonSSAIR(targetProgram, irModule, fastIRSimplificationOptions);
// We include one final step to (optionally) dump the IR and validate
// it after all of the optimization passes are complete. This should
// reflect the IR that code is generated from as closely as possible.
//
#if 0
dumpIRIfEnabled(codeGenContext, irModule, "OPTIMIZED");
#endif
validateIRModuleIfEnabled(codeGenContext, irModule);
if ((target != CodeGenTarget::SPIRV) && (target != CodeGenTarget::SPIRVAssembly))
{
// We need to perform a final pass to ensure that all the
// variables in the IR module have their scopes set correctly.
//
// This is a separate pass because it needs to run after
// all the other optimization passes have been performed.
applyVariableScopeCorrection(irModule, targetRequest);
validateIRModuleIfEnabled(codeGenContext, irModule);
}
auto metadata = new ArtifactPostEmitMetadata;
outLinkedIR.metadata = metadata;
if (targetProgram->getOptionSet().getBoolOption(CompilerOptionName::EmbedDownstreamIR))
{
unexportNonEmbeddableIR(target, irModule);
}
collectMetadata(irModule, *metadata);
outLinkedIR.metadata = metadata;
if (!targetProgram->getOptionSet().shouldPerformMinimumOptimizations())
checkUnsupportedInst(codeGenContext->getTargetReq(), irModule, sink);
return sink->getErrorCount() == 0 ? SLANG_OK : SLANG_FAIL;
}
SlangResult CodeGenContext::emitEntryPointsSourceFromIR(ComPtr<IArtifact>& outArtifact)
{
SLANG_PROFILE;
outArtifact.setNull();
auto session = getSession();
auto sink = getSink();
auto sourceManager = getSourceManager();
auto target = getTargetFormat();
auto targetRequest = getTargetReq();
auto targetProgram = getTargetProgram();
auto lineDirectiveMode = targetProgram->getOptionSet().getEnumOption<LineDirectiveMode>(
CompilerOptionName::LineDirectiveMode);
// We will generally use C-style line directives in order to give the user good
// source locations on error messages from downstream compilers, but there are
// a few exceptions.
if (lineDirectiveMode == LineDirectiveMode::Default)
{
switch (targetRequest->getTarget())
{
case CodeGenTarget::GLSL:
// We want to maximize compatibility with downstream tools.
lineDirectiveMode = LineDirectiveMode::GLSL;
break;
case CodeGenTarget::WGSLSPIRVAssembly:
case CodeGenTarget::WGSLSPIRV:
case CodeGenTarget::WGSL:
// WGSL doesn't support line directives.
// See https://github.com/gpuweb/gpuweb/issues/606.
lineDirectiveMode = LineDirectiveMode::None;
break;
}
}
ComPtr<IBoxValue<SourceMap>> sourceMap;
// If SourceMap is enabled, we create one and associate it with the sourceWriter
if (lineDirectiveMode == LineDirectiveMode::SourceMap)
{
sourceMap = new BoxValue<SourceMap>;
}
SourceWriter sourceWriter(sourceManager, lineDirectiveMode, sourceMap);
CLikeSourceEmitter::Desc desc;
desc.codeGenContext = this;
if (getEntryPointCount() == 1)
{
auto entryPoint = getEntryPoint(getSingleEntryPointIndex());
desc.entryPointStage = entryPoint->getStage();
desc.effectiveProfile = getEffectiveProfile(entryPoint, targetRequest);
}
else
{
desc.entryPointStage = Stage::Unknown;
desc.effectiveProfile = targetProgram->getOptionSet().getProfile();
}
desc.sourceWriter = &sourceWriter;
// Define here, because must be in scope longer than the sourceEmitter, as sourceEmitter might
// reference items in the linkedIR module
LinkedIR linkedIR;
RefPtr<CLikeSourceEmitter> sourceEmitter;
SourceLanguage sourceLanguage = CLikeSourceEmitter::getSourceLanguage(target);
switch (target)
{
default:
switch (sourceLanguage)
{
case SourceLanguage::CPP:
{
sourceEmitter = new CPPSourceEmitter(desc);
break;
}
case SourceLanguage::GLSL:
{
sourceEmitter = new GLSLSourceEmitter(desc);
break;
}
case SourceLanguage::HLSL:
{
sourceEmitter = new HLSLSourceEmitter(desc);
break;
}
case SourceLanguage::CUDA:
{
sourceEmitter = new CUDASourceEmitter(desc);
break;
}
case SourceLanguage::Metal:
{
sourceEmitter = new MetalSourceEmitter(desc);
break;
}
case SourceLanguage::WGSL:
{
sourceEmitter = new WGSLSourceEmitter(desc);
break;
}
default: break;
}
break;
case CodeGenTarget::PyTorchCppBinding: sourceEmitter = new TorchCppSourceEmitter(desc); break;
}
if (!sourceEmitter)
{
sink->diagnose(
SourceLoc(),
Diagnostics::unableToGenerateCodeForTarget,
TypeTextUtil::getCompileTargetName(SlangCompileTarget(target)));
return SLANG_FAIL;
}
SLANG_RETURN_ON_FAIL(sourceEmitter->init());
ComPtr<IArtifactPostEmitMetadata> metadata;
{
LinkingAndOptimizationOptions linkingAndOptimizationOptions;
linkingAndOptimizationOptions.sourceEmitter = sourceEmitter;
switch (sourceLanguage)
{
default: break;
case SourceLanguage::CPP:
case SourceLanguage::C:
case SourceLanguage::CUDA:
linkingAndOptimizationOptions.shouldLegalizeExistentialAndResourceTypes = false;
break;
}
SLANG_RETURN_ON_FAIL(linkAndOptimizeIR(this, linkingAndOptimizationOptions, linkedIR));
auto irModule = linkedIR.module;
// Perform final simplifications to help emit logic to generate more compact code.
simplifyForEmit(irModule, targetRequest);
metadata = linkedIR.metadata;
// After all of the required optimization and legalization
// passes have been performed, we can emit target code from
// the IR module.
//
sourceEmitter->emitModule(irModule, sink);
}
String code = sourceWriter.getContent();
sourceWriter.clearContent();
// Now that we've emitted the code for all the declarations in the file,
// it is time to stitch together the final output.
// There may be global-scope modifiers that we should emit now
// Supress emitting line directives when emitting preprocessor directives since
// these preprocessor directives may be required to appear in the first line
// of the output. An example is that the "#version" line in a GLSL source must
// appear before anything else.
sourceWriter.supressLineDirective();
// When emitting front matter we can emit the target-language-specific directives
// needed to get the default matrix layout to match what was requested
// for the given target.
//
// Note: we do not rely on the defaults for the target language,
// because a user could take the HLSL/GLSL generated by Slang and pass
// it to another compiler with non-default options specified on
// the command line, leading to all kinds of trouble.
//
// TODO: We need an approach to "global" layout directives that will work
// in the presence of multiple modules. If modules A and B were each
// compiled with different assumptions about how layout is performed,
// then types/variables defined in those modules should be emitted in
// a way that is consistent with that layout...
// Emit any front matter
sourceEmitter->emitFrontMatter(targetRequest);
switch (target)
{
case CodeGenTarget::PyTorchCppBinding: sourceWriter.emit(get_slang_torch_prelude()); break;
default:
if (isHeterogeneousTarget(target))
{
sourceWriter.emit(get_slang_cpp_host_prelude());
}
else
{
// Get the prelude
String prelude = session->getPreludeForLanguage(sourceLanguage);
sourceWriter.emit(prelude);
}
break;
}
// Emit anything that goes before the contents of the code generated for the module
sourceEmitter->emitPreModule();
sourceWriter.resumeLineDirective();
// Get the content built so far from the front matter/prelude/preModule
// By getting in this way, the content is no longer referenced by the sourceWriter.
String finalResult = sourceWriter.getContentAndClear();
// Append the modules output code
finalResult.append(code);
// Append all content that should be at the end of a module
sourceEmitter->emitPostModule();
finalResult.append(sourceWriter.getContentAndClear());
// Write out the result
auto artifact = ArtifactUtil::createArtifactForCompileTarget(asExternal(target));
artifact->addRepresentationUnknown(StringBlob::moveCreate(finalResult));
ArtifactUtil::addAssociated(artifact, metadata);
if (sourceMap)
{
auto sourceMapArtifact = ArtifactUtil::createArtifact(ArtifactDesc::make(
ArtifactKind::Json,
ArtifactPayload::SourceMap,
ArtifactStyle::None));
sourceMapArtifact->addRepresentation(sourceMap);
artifact->addAssociated(sourceMapArtifact);
}
outArtifact.swap(artifact);
return SLANG_OK;
}
SlangResult emitSPIRVFromIR(
CodeGenContext* codeGenContext,
IRModule* irModule,
const List<IRFunc*>& irEntryPoints,
List<uint8_t>& spirvOut);
SlangResult emitSPIRVForEntryPointsDirectly(
CodeGenContext* codeGenContext,
ComPtr<IArtifact>& outArtifact)
{
// Outside because we want to keep IR in scope whilst we are processing emits
LinkedIR linkedIR;
LinkingAndOptimizationOptions linkingAndOptimizationOptions;
SLANG_RETURN_ON_FAIL(
linkAndOptimizeIR(codeGenContext, linkingAndOptimizationOptions, linkedIR));
auto irModule = linkedIR.module;
auto irEntryPoints = linkedIR.entryPoints;
List<uint8_t> spirv, outSpirv;
emitSPIRVFromIR(codeGenContext, irModule, irEntryPoints, spirv);
#if 0
String optErr;
if (SLANG_FAILED(optimizeSPIRV(spirv, optErr, outSpirv)))
{
codeGenContext->getSink()->diagnose(SourceLoc(), Diagnostics::spirvOptFailed, optErr);
spirv = _Move(outSpirv);
}
#endif
auto artifact =
ArtifactUtil::createArtifactForCompileTarget(asExternal(codeGenContext->getTargetFormat()));
artifact->addRepresentationUnknown(ListBlob::moveCreate(spirv));
#if 0
// Dump the unoptimized SPIRV after lowering from slang IR -> SPIRV
String err; String dis;
disassembleSPIRV(spirv, err, dis);
printf("%s", dis.begin());
#endif
IDownstreamCompiler* compiler = codeGenContext->getSession()->getOrLoadDownstreamCompiler(
PassThroughMode::SpirvOpt,
codeGenContext->getSink());
if (compiler)
{
if (!codeGenContext->shouldSkipSPIRVValidation())
{
StringBuilder runSpirvValEnvVar;
PlatformUtil::getEnvironmentVariable(
UnownedStringSlice("SLANG_RUN_SPIRV_VALIDATION"),
runSpirvValEnvVar);
if (runSpirvValEnvVar.getUnownedSlice() == "1")
{
if (SLANG_FAILED(compiler->validate(
(uint32_t*)spirv.getBuffer(),
int(spirv.getCount() / 4))))
{
String err;
String dis;
disassembleSPIRV(spirv, err, dis);
codeGenContext->getSink()->diagnoseWithoutSourceView(
SourceLoc{},
Diagnostics::spirvValidationFailed,
dis);
}
}
}
ComPtr<IArtifact> optimizedArtifact;
DownstreamCompileOptions downstreamOptions;
downstreamOptions.sourceArtifacts = makeSlice(artifact.readRef(), 1);
downstreamOptions.targetType = SLANG_SPIRV;
downstreamOptions.sourceLanguage = SLANG_SOURCE_LANGUAGE_SPIRV;
switch (codeGenContext->getTargetProgram()->getOptionSet().getEnumOption<OptimizationLevel>(
CompilerOptionName::Optimization))
{
case OptimizationLevel::None:
downstreamOptions.optimizationLevel = DownstreamCompileOptions::OptimizationLevel::None;
break;
case OptimizationLevel::Default:
downstreamOptions.optimizationLevel =
DownstreamCompileOptions::OptimizationLevel::Default;
break;
case OptimizationLevel::High:
downstreamOptions.optimizationLevel = DownstreamCompileOptions::OptimizationLevel::High;
break;
case OptimizationLevel::Maximal:
downstreamOptions.optimizationLevel =
DownstreamCompileOptions::OptimizationLevel::Maximal;
break;
default: SLANG_ASSERT(!"Unhandled optimization level"); break;
}
auto downstreamStartTime = std::chrono::high_resolution_clock::now();
if (SLANG_SUCCEEDED(compiler->compile(downstreamOptions, optimizedArtifact.writeRef())))
{
artifact = _Move(optimizedArtifact);
}
auto downstreamElapsedTime =
(std::chrono::high_resolution_clock::now() - downstreamStartTime).count() * 0.000000001;
codeGenContext->getSession()->addDownstreamCompileTime(downstreamElapsedTime);
SLANG_RETURN_ON_FAIL(
passthroughDownstreamDiagnostics(codeGenContext->getSink(), compiler, artifact));
}
ArtifactUtil::addAssociated(artifact, linkedIR.metadata);
outArtifact.swap(artifact);
return SLANG_OK;
}
} // namespace Slang
|