forked from shader-slang/slang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
1502 lines (1282 loc) · 42.1 KB
/
main.cpp
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
// main.cpp
// Reflection API Example Program
// ==============================
//
// This file provides the application code for the `reflection-api` example.
// This example uses the Slang reflection API to travserse the structure
// of the parameters of a Slang program and their types.
//
// This program is a companion Slang reflection API documentation:
// https://shader-slang.org/slang/user-guide/compiling.html
//
// Boilerplate
// -----------
//
// The following lines are boilerplate common to set up this example
// to use the infrastructure for example programs in the Slang
// repository.
//
#include "slang-com-ptr.h"
#include "slang.h"
typedef SlangResult Result;
#include "core/slang-basic.h"
#include "examples/example-base/example-base.h"
using Slang::ComPtr;
using Slang::String;
using Slang::List;
static const ExampleResources resourceBase("reflection-api");
// Configuration
// -------------
//
// For simplicity, this example uses a hard-coded list of shader programs
// to compile, each represented as the name of a `.slang` file, along with
// a hard-coded list of targets to compile and reflect the programs for.
//
static const char* kSourceFileNames[] = {
"raster-simple.slang",
"compute-simple.slang",
};
static const struct
{
SlangCompileTarget format;
const char* profile;
} kTargets[] = {
{SLANG_DXIL, "sm_6_0"},
{SLANG_SPIRV, "sm_6_0"},
};
static const int kTargetCount = SLANG_COUNT_OF(kTargets);
// The `ReflectingPrinting` Type
// -------------------------
//
// We wrap most of the code for this example in a `struct`
// type, in order to provide a bit more freedom in order
// of declaration.
//
// When possible, we will follow the order of declarations
// in the accompanying document, to help readers who want
// to following along in the code while reading.
//
struct ReflectingPrinting
{
// Scoping things in a type allows us to declare functions
// out of order more easily, but we still have to forward-declare
// types when they will be used before they are declared.
//
struct AccessPath;
// Output Formatting
// -----------------
//
// This example program outputs reflection information in a format
// that is (or at least is intended to be) compatible with YAML.
//
// We do not want the code to be overly complicated with issues
// around formatting, so the details of the actual printing logic
// are largely left until later. However, there are a pair of
// macros that help to keep things tidy that we need to introduce
// here, before they are used.
//
#define WITH_ARRAY() for (int _i = (beginArray(), 1); _i; _i = (endArray(), 0))
#define SCOPED_OBJECT() ScopedObject scopedObject##__COUNTER__(this)
// Compiling a Program
// -------------------
//
Result compileAndReflectProgram(slang::ISession* session, const char* sourceFileName)
{
SCOPED_OBJECT();
printComment("program");
key("file name");
printQuotedString(sourceFileName);
String sourceFilePath = resourceBase.resolveResource(sourceFileName);
ComPtr<slang::IBlob> diagnostics;
Result result = SLANG_OK;
// ### Loading a Module
//
ComPtr<slang::IModule> module;
module = session->loadModule(sourceFilePath.getBuffer(), diagnostics.writeRef());
diagnoseIfNeeded(diagnostics);
if (!module)
return SLANG_FAIL;
List<ComPtr<slang::IComponentType>> componentsToLink;
// ### Variable decls
//
key("global constants");
WITH_ARRAY()
for (auto decl : module->getModuleReflection()->getChildren())
{
if (auto varDecl = decl->asVariable(); varDecl &&
varDecl->findModifier(slang::Modifier::Const) &&
varDecl->findModifier(slang::Modifier::Static))
{
element();
printVariable(varDecl);
}
}
// ### Finding Entry Points
//
key("defined entry points");
int definedEntryPointCount = module->getDefinedEntryPointCount();
WITH_ARRAY()
for (int i = 0; i < definedEntryPointCount; i++)
{
ComPtr<slang::IEntryPoint> entryPoint;
SLANG_RETURN_ON_FAIL(module->getDefinedEntryPoint(i, entryPoint.writeRef()));
element();
SCOPED_OBJECT();
key("name");
printQuotedString(entryPoint->getFunctionReflection()->getName());
componentsToLink.add(ComPtr<slang::IComponentType>(entryPoint.get()));
}
// ### Composing and Linking
//
ComPtr<slang::IComponentType> composed;
result = session->createCompositeComponentType(
(slang::IComponentType**)componentsToLink.getBuffer(),
componentsToLink.getCount(),
composed.writeRef(),
diagnostics.writeRef());
diagnoseIfNeeded(diagnostics);
SLANG_RETURN_ON_FAIL(result);
ComPtr<slang::IComponentType> program;
result = composed->link(program.writeRef(), diagnostics.writeRef());
diagnoseIfNeeded(diagnostics);
SLANG_RETURN_ON_FAIL(result);
key("layouts");
WITH_ARRAY()
for (int targetIndex = 0; targetIndex < kTargetCount; ++targetIndex)
{
element();
// ### Getting the Program Layout
//
slang::ProgramLayout* programLayout =
program->getLayout(targetIndex, diagnostics.writeRef());
diagnoseIfNeeded(diagnostics);
if (!programLayout)
{
result = SLANG_FAIL;
continue;
}
SLANG_RETURN_ON_FAIL(
collectEntryPointMetadata(program, targetIndex, definedEntryPointCount));
_programLayout = programLayout;
auto targetFormat = kTargets[targetIndex].format;
printProgramLayout(programLayout, targetFormat);
}
return result;
}
slang::ProgramLayout* _programLayout = nullptr;
Result compileAndReflectPrograms(slang::ISession* session)
{
Result result = SLANG_OK;
WITH_ARRAY()
for (auto fileName : kSourceFileNames)
{
element();
auto programResult = compileAndReflectProgram(session, fileName);
if (SLANG_FAILED(programResult))
{
result = programResult;
}
}
return result;
}
// Types and Variables
// -------------------
//
// ### Variables
//
void printVariable(slang::VariableReflection* variable)
{
SCOPED_OBJECT();
const char* name = variable->getName();
slang::TypeReflection* type = variable->getType();
key("name");
printQuotedString(name);
key("type");
printType(type);
int64_t value;
if (SLANG_SUCCEEDED(variable->getDefaultValueInt(&value)))
{
key("value");
printf("%" PRId64, value);
}
}
// ### Types
//
void printType(slang::TypeReflection* type)
{
SCOPED_OBJECT();
const char* name = type->getName();
slang::TypeReflection::Kind kind = type->getKind();
key("name");
printQuotedString(name);
key("kind");
printTypeKind(kind);
// There is information that we would like to
// print for both types and type layouts, so
// we will factor the common logic into a
// subroutine so that we can share the code.
//
printCommonTypeInfo(type);
switch (type->getKind())
{
default:
break;
// #### Structure Types
//
case slang::TypeReflection::Kind::Struct:
{
key("fields");
int fieldCount = type->getFieldCount();
WITH_ARRAY();
for (int f = 0; f < fieldCount; f++)
{
element();
auto field = type->getFieldByIndex(f);
printVariable(field);
}
}
break;
// #### Array Types
// #### Vector Types
// #### Matrix Types
//
case slang::TypeReflection::Kind::Array:
case slang::TypeReflection::Kind::Vector:
case slang::TypeReflection::Kind::Matrix:
{
key("element type");
printType(type->getElementType());
}
break;
// #### Resource Types
//
case slang::TypeReflection::Kind::Resource:
{
key("result type");
printType(type->getResourceResultType());
}
break;
// #### Single-Element Container Types
//
case slang::TypeReflection::Kind::ConstantBuffer:
case slang::TypeReflection::Kind::ParameterBlock:
case slang::TypeReflection::Kind::TextureBuffer:
case slang::TypeReflection::Kind::ShaderStorageBuffer:
{
key("element type");
printType(type->getElementType());
}
break;
}
}
// #### Array Types
//
void printPossiblyUnbounded(size_t value)
{
if (value == ~size_t(0))
{
printf("unbounded");
}
else
{
printf("%u", unsigned(value));
}
}
void printCommonTypeInfo(slang::TypeReflection* type)
{
switch (type->getKind())
{
// #### Scalar Types
//
case slang::TypeReflection::Kind::Scalar:
{
key("scalar type");
printScalarType(type->getScalarType());
}
break;
// #### Array Types
//
case slang::TypeReflection::Kind::Array:
{
key("element count");
printPossiblyUnbounded(type->getElementCount());
}
break;
// #### Vector Types
//
case slang::TypeReflection::Kind::Vector:
{
key("element count");
print(type->getElementCount());
}
break;
// #### Matrix Types
//
case slang::TypeReflection::Kind::Matrix:
{
key("row count");
print(type->getRowCount());
key("column count");
print(type->getColumnCount());
}
break;
// #### Resource Types
//
case slang::TypeReflection::Kind::Resource:
{
key("shape");
printResourceShape(type->getResourceShape());
key("access");
printResourceAccess(type->getResourceAccess());
}
break;
default:
break;
}
}
// Layout for Types and Variables
// ------------------------------
//
// ### Variable Layouts
//
void printVariableLayout(slang::VariableLayoutReflection* variableLayout, AccessPath accessPath)
{
SCOPED_OBJECT();
key("name");
printQuotedString(variableLayout->getName());
printOffsets(variableLayout, accessPath);
printVaryingParameterInfo(variableLayout);
ExtendedAccessPath variablePath(accessPath, variableLayout);
key("type layout");
printTypeLayout(variableLayout->getTypeLayout(), variablePath);
}
// #### Offsets
void printRelativeOffsets(slang::VariableLayoutReflection* variableLayout)
{
key("relative");
int usedLayoutUnitCount = variableLayout->getCategoryCount();
WITH_ARRAY();
for (int i = 0; i < usedLayoutUnitCount; ++i)
{
element();
auto layoutUnit = variableLayout->getCategoryByIndex(i);
printOffset(variableLayout, layoutUnit);
}
}
void printOffset(
slang::VariableLayoutReflection* variableLayout,
slang::ParameterCategory layoutUnit)
{
printOffset(
layoutUnit,
variableLayout->getOffset(layoutUnit),
variableLayout->getBindingSpace(layoutUnit));
}
void printOffset(slang::ParameterCategory layoutUnit, size_t offset, size_t spaceOffset)
{
SCOPED_OBJECT();
key("value");
print(offset);
key("unit");
printLayoutUnit(layoutUnit);
// #### Spaces / Sets
switch (layoutUnit)
{
default:
break;
case slang::ParameterCategory::ConstantBuffer:
case slang::ParameterCategory::ShaderResource:
case slang::ParameterCategory::UnorderedAccess:
case slang::ParameterCategory::SamplerState:
case slang::ParameterCategory::DescriptorTableSlot:
key("space");
print(spaceOffset);
break;
}
}
// ### Type Layouts
//
void printTypeLayout(slang::TypeLayoutReflection* typeLayout, AccessPath accessPath)
{
SCOPED_OBJECT();
key("name");
printQuotedString(typeLayout->getName());
key("kind");
printTypeKind(typeLayout->getKind());
printCommonTypeInfo(typeLayout->getType());
printSizes(typeLayout);
printKindSpecificInfo(typeLayout, accessPath);
}
// #### Size
//
void printSizes(slang::TypeLayoutReflection* typeLayout)
{
key("size");
int usedLayoutUnitCount = typeLayout->getCategoryCount();
WITH_ARRAY()
for (int i = 0; i < usedLayoutUnitCount; ++i)
{
element();
auto layoutUnit = typeLayout->getCategoryByIndex(i);
printSize(typeLayout, layoutUnit);
}
// #### Alignment and Stride
if (typeLayout->getSize() != 0)
{
key("alignment in bytes");
print(typeLayout->getAlignment());
key("stride in bytes");
print(typeLayout->getStride());
}
}
void printSize(slang::TypeLayoutReflection* typeLayout, slang::ParameterCategory layoutUnit)
{
printSize(layoutUnit, typeLayout->getSize(layoutUnit));
}
void printSize(slang::ParameterCategory layoutUnit, size_t size)
{
SCOPED_OBJECT();
key("value");
printPossiblyUnbounded(size);
key("unit");
printLayoutUnit(layoutUnit);
}
// #### Kind-Specific Information
//
void printKindSpecificInfo(slang::TypeLayoutReflection* typeLayout, AccessPath accessPath)
{
switch (typeLayout->getKind())
{
// #### Structure Type Layouts
//
case slang::TypeReflection::Kind::Struct:
{
key("fields");
int fieldCount = typeLayout->getFieldCount();
WITH_ARRAY()
for (int f = 0; f < fieldCount; f++)
{
element();
auto field = typeLayout->getFieldByIndex(f);
printVariableLayout(field, accessPath);
}
}
break;
// #### Array Type Layouts
//
case slang::TypeReflection::Kind::Array:
{
key("element type layout");
printTypeLayout(typeLayout->getElementTypeLayout(), AccessPath());
}
break;
// #### Matrix Type Layouts
//
case slang::TypeReflection::Kind::Matrix:
{
key("matrix layout mode");
printMatrixLayoutMode(typeLayout->getMatrixLayoutMode());
key("element type layout");
printTypeLayout(typeLayout->getElementTypeLayout(), AccessPath());
}
break;
case slang::TypeReflection::Kind::Vector:
{
key("element type layout");
printTypeLayout(typeLayout->getElementTypeLayout(), AccessPath());
}
break;
// #### Single-Element Containers
//
case slang::TypeReflection::Kind::ConstantBuffer:
case slang::TypeReflection::Kind::ParameterBlock:
case slang::TypeReflection::Kind::TextureBuffer:
case slang::TypeReflection::Kind::ShaderStorageBuffer:
{
auto containerVarLayout = typeLayout->getContainerVarLayout();
auto elementVarLayout = typeLayout->getElementVarLayout();
key("container");
{
SCOPED_OBJECT();
printOffsets(containerVarLayout, accessPath);
}
AccessPath innerOffsets = accessPath;
innerOffsets.deepestConstantBufer = innerOffsets.leaf;
if (containerVarLayout->getTypeLayout()->getSize(
slang::ParameterCategory::SubElementRegisterSpace) != 0)
{
innerOffsets.deepestParameterBlock = innerOffsets.leaf;
}
key("content");
{
SCOPED_OBJECT();
printOffsets(elementVarLayout, innerOffsets);
ExtendedAccessPath elementOffsets(innerOffsets, elementVarLayout);
key("type layout");
printTypeLayout(elementVarLayout->getTypeLayout(), elementOffsets);
}
}
break;
case slang::TypeReflection::Kind::Resource:
{
if ((typeLayout->getResourceShape() & SLANG_RESOURCE_BASE_SHAPE_MASK) ==
SLANG_STRUCTURED_BUFFER)
{
key("element type layout");
printTypeLayout(typeLayout->getElementTypeLayout(), accessPath);
}
else
{
key("result type");
printType(typeLayout->getResourceResultType());
}
}
break;
default:
break;
}
}
// Programs and Scopes
// -------------------
//
void printProgramLayout(slang::ProgramLayout* programLayout, SlangCompileTarget targetFormat)
{
SCOPED_OBJECT();
key("target");
printTargetFormat(targetFormat);
AccessPath rootOffsets;
rootOffsets.valid = true;
key("global scope");
{
SCOPED_OBJECT();
printScope(programLayout->getGlobalParamsVarLayout(), rootOffsets);
}
key("entry points");
int entryPointCount = programLayout->getEntryPointCount();
WITH_ARRAY()
for (int i = 0; i < entryPointCount; ++i)
{
element();
printEntryPointLayout(programLayout->getEntryPointByIndex(i), rootOffsets);
}
}
// ### Global Scope
//
void printScope(slang::VariableLayoutReflection* scopeVarLayout, AccessPath accessPath)
{
ExtendedAccessPath scopeOffsets(accessPath, scopeVarLayout);
auto scopeTypeLayout = scopeVarLayout->getTypeLayout();
switch (scopeTypeLayout->getKind())
{
// #### Parameters are Grouped Into a Structure
//
case slang::TypeReflection::Kind::Struct:
{
key("parameters");
int paramCount = scopeTypeLayout->getFieldCount();
for (int i = 0; i < paramCount; i++)
{
element();
auto param = scopeTypeLayout->getFieldByIndex(i);
printVariableLayout(param, scopeOffsets);
}
}
break;
// #### Wrapped in a Constant Buffer If Needed
//
case slang::TypeReflection::Kind::ConstantBuffer:
key("automatically-introduced constant buffer");
{
SCOPED_OBJECT();
printOffsets(scopeTypeLayout->getContainerVarLayout(), scopeOffsets);
}
printScope(scopeTypeLayout->getElementVarLayout(), scopeOffsets);
break;
// #### Wrapped in a Parameter Block If Needed
//
case slang::TypeReflection::Kind::ParameterBlock:
key("automatically-introduced parameter block");
{
SCOPED_OBJECT();
printOffsets(scopeTypeLayout->getContainerVarLayout(), scopeOffsets);
}
printScope(scopeTypeLayout->getElementVarLayout(), scopeOffsets);
break;
default:
// Note that this default case is never expected to
// arise with the current Slang compiler and reflection
// API, but we include it here as a kind of failsafe.
//
key("variable layout");
printVariableLayout(scopeVarLayout, accessPath);
break;
}
}
// ### Entry Points
//
void printEntryPointLayout(slang::EntryPointReflection* entryPointLayout, AccessPath accessPath)
{
SCOPED_OBJECT();
key("stage");
printStage(entryPointLayout->getStage());
printStageSpecificInfo(entryPointLayout);
printScope(entryPointLayout->getVarLayout(), accessPath);
auto resultVariableLayout = entryPointLayout->getResultVarLayout();
if (resultVariableLayout->getTypeLayout()->getKind() != slang::TypeReflection::Kind::None)
{
key("result");
printVariableLayout(resultVariableLayout, accessPath);
}
}
// #### Stage-Specific Information
//
void printStageSpecificInfo(slang::EntryPointReflection* entryPointLayout)
{
switch (entryPointLayout->getStage())
{
default:
break;
case SLANG_STAGE_COMPUTE:
{
static const int kAxisCount = 3;
SlangUInt sizes[kAxisCount];
entryPointLayout->getComputeThreadGroupSize(kAxisCount, sizes);
key("thread group size");
SCOPED_OBJECT();
key("x");
print(sizes[0]);
key("y");
print(sizes[1]);
key("z");
print(sizes[2]);
}
break;
case SLANG_STAGE_FRAGMENT:
key("uses any sample-rate inputs");
printBool(entryPointLayout->usesAnySampleRateInput());
break;
}
}
// #### Varying Parameters
//
void printVaryingParameterInfo(slang::VariableLayoutReflection* variableLayout)
{
if (auto semanticName = variableLayout->getSemanticName())
{
key("semantic");
SCOPED_OBJECT();
key("name");
printQuotedString(semanticName);
key("index");
print(variableLayout->getSemanticIndex());
}
}
// Calculating Cumulative Offsets
// ------------------------------
//
struct CumulativeOffset
{
size_t value = 0;
size_t space = 0;
};
// ### Access Paths
struct AccessPathNode
{
slang::VariableLayoutReflection* variableLayout = nullptr;
AccessPathNode* outer = nullptr;
};
struct AccessPath
{
AccessPath() {}
bool valid = false;
AccessPathNode* deepestConstantBufer = nullptr;
AccessPathNode* deepestParameterBlock = nullptr;
AccessPathNode* leaf = nullptr;
};
void printCumulativeOffsets(
slang::VariableLayoutReflection* variableLayout,
AccessPath accessPath)
{
key("cumulative");
int usedLayoutUnitCount = variableLayout->getCategoryCount();
WITH_ARRAY();
for (int i = 0; i < usedLayoutUnitCount; ++i)
{
element();
auto layoutUnit = variableLayout->getCategoryByIndex(i);
printCumulativeOffset(variableLayout, layoutUnit, accessPath);
}
}
CumulativeOffset calculateCumulativeOffset(
slang::VariableLayoutReflection* variableLayout,
slang::ParameterCategory layoutUnit,
AccessPath accessPath)
{
CumulativeOffset result = calculateCumulativeOffset(layoutUnit, accessPath);
result.value += variableLayout->getOffset(layoutUnit);
result.space += variableLayout->getBindingSpace(layoutUnit);
return result;
}
void printCumulativeOffset(
slang::VariableLayoutReflection* variableLayout,
slang::ParameterCategory layoutUnit,
AccessPath accessPath)
{
CumulativeOffset cumulativeOffset =
calculateCumulativeOffset(variableLayout, layoutUnit, accessPath);
printOffset(layoutUnit, cumulativeOffset.value, cumulativeOffset.space);
}
// ### Tracking Access Paths
struct ExtendedAccessPath : AccessPath
{
ExtendedAccessPath(AccessPath const& base, slang::VariableLayoutReflection* variableLayout)
: AccessPath(base)
{
if (!valid)
return;
element.variableLayout = variableLayout;
element.outer = leaf;
leaf = &element;
}
AccessPathNode element;
};
// ### Accumulating Offsets Along An Access Path
CumulativeOffset calculateCumulativeOffset(
slang::ParameterCategory layoutUnit,
AccessPath accessPath)
{
CumulativeOffset result;
switch (layoutUnit)
{
// #### Layout Units That Don't Require Special Handling
//
default:
for (auto node = accessPath.leaf; node != nullptr; node = node->outer)
{
result.value += node->variableLayout->getOffset(layoutUnit);
}
break;
// #### Bytes
//
case slang::ParameterCategory::Uniform:
for (auto node = accessPath.leaf; node != accessPath.deepestConstantBufer;
node = node->outer)
{
result.value += node->variableLayout->getOffset(layoutUnit);
}
break;
// #### Layout Units That Care About Spaces
//
case slang::ParameterCategory::ConstantBuffer:
case slang::ParameterCategory::ShaderResource:
case slang::ParameterCategory::UnorderedAccess:
case slang::ParameterCategory::SamplerState:
case slang::ParameterCategory::DescriptorTableSlot:
for (auto node = accessPath.leaf; node != accessPath.deepestParameterBlock;
node = node->outer)
{
result.value += node->variableLayout->getOffset(layoutUnit);
result.space += node->variableLayout->getBindingSpace(layoutUnit);
}
for (auto node = accessPath.deepestParameterBlock; node != nullptr; node = node->outer)
{
result.space += node->variableLayout->getOffset(
slang::ParameterCategory::SubElementRegisterSpace);
}
break;
}
return result;
}
// Determining Whether Parameters Are Used
// ---------------------------------------
Result collectEntryPointMetadata(
slang::IComponentType* program,
int targetIndex,
int entryPointCount)
{
_metadataForEntryPoints.setCount(entryPointCount);
for (int entryPointIndex = 0; entryPointIndex < entryPointCount; entryPointIndex++)
{
ComPtr<slang::IMetadata> entryPointMetadata;
ComPtr<slang::IBlob> diagnostics;
SLANG_RETURN_ON_FAIL(program->getEntryPointMetadata(
entryPointIndex,
targetIndex,
entryPointMetadata.writeRef(),
diagnostics.writeRef()));
diagnoseIfNeeded(diagnostics);
_metadataForEntryPoints[entryPointIndex] = entryPointMetadata;
}
return SLANG_OK;
}
Slang::List<ComPtr<slang::IMetadata>> _metadataForEntryPoints;
typedef unsigned int StageMask;
StageMask calculateParameterStageMask(
slang::ParameterCategory layoutUnit,
CumulativeOffset offset)
{
unsigned mask = 0;
auto entryPointCount = _metadataForEntryPoints.getCount();
for (int i = 0; i < entryPointCount; ++i)
{
bool isUsed = false;
_metadataForEntryPoints[i]->isParameterLocationUsed(
SlangParameterCategory(layoutUnit),
offset.space,
offset.value,
isUsed);
if (isUsed)
{
auto entryPointStage = _programLayout->getEntryPointByIndex(i)->getStage();
mask |= 1 << unsigned(entryPointStage);
}
}
return mask;
}
StageMask calculateStageMask(
slang::VariableLayoutReflection* variableLayout,
AccessPath accessPath)
{
StageMask mask = 0;
int usedLayoutUnitCount = variableLayout->getCategoryCount();
for (int i = 0; i < usedLayoutUnitCount; ++i)
{
auto layoutUnit = variableLayout->getCategoryByIndex(i);
auto offset = calculateCumulativeOffset(variableLayout, layoutUnit, accessPath);
mask |= calculateParameterStageMask(layoutUnit, offset);
}