summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-type-layout.h
blob: d4798190400244c9bbd41c240a1e895b9a53f848 (plain)
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
#ifndef SLANG_TYPE_LAYOUT_H
#define SLANG_TYPE_LAYOUT_H

#include "../core/slang-basic.h"
#include "slang-compiler.h"
#include "slang-profile.h"
#include "slang-syntax.h"
#include "slang.h"

namespace Slang
{

// Forward declarations

enum class BaseType;
class Type;

struct IRLayout;

//

#if 0
enum class LayoutRulesFamily
{
    HLSL,
    GLSL,
};
#endif

// A "size" that can either be a simple finite size or
// the special case of an infinite/unbounded size.
//
struct LayoutSize
{
    typedef size_t RawValue;

    LayoutSize()
        : raw(0)
    {
    }

    LayoutSize(RawValue size)
        : raw(size)
    {
        SLANG_ASSERT(size != RawValue(-1));
    }

    static LayoutSize fromRaw(RawValue raw)
    {
        LayoutSize size;
        size.raw = raw;
        return size;
    }

    static LayoutSize infinite()
    {
        LayoutSize result;
        result.raw = RawValue(-1);
        return result;
    }

    bool isInfinite() const { return raw == RawValue(-1); }

    bool isFinite() const { return raw != RawValue(-1); }
    RawValue getFiniteValue() const
    {
        SLANG_ASSERT(isFinite());
        return raw;
    }

    bool operator==(LayoutSize that) const { return raw == that.raw; }

    bool operator!=(LayoutSize that) const { return raw != that.raw; }

    bool operator>(LayoutSize that) const
    {
        if (that.isFinite())
        {
            if (this->isFinite())
                return this->raw > that.raw;
            return true;
        }
        else
        {
            if (that.isInfinite())
                return false;
            return true;
        }
    }

    void operator+=(LayoutSize right)
    {
        if (isInfinite())
        {
        }
        else if (right.isInfinite())
        {
            *this = LayoutSize::infinite();
        }
        else
        {
            *this = LayoutSize(raw + right.raw);
        }
    }

    void operator*=(LayoutSize right)
    {
        // Deal with zero first, so that anything (even the "infinite" value) times zero is zero.
        if (raw == 0)
        {
            return;
        }

        if (right.raw == 0)
        {
            raw = 0;
            return;
        }

        // Next we deal with infinite cases, so that infinite times anything non-zero is infinite
        if (isInfinite())
        {
            return;
        }

        if (right.isInfinite())
        {
            *this = LayoutSize::infinite();
            return;
        }

        // Finally deal with the case where both sides are finite
        *this = LayoutSize(raw * right.raw);
    }

    void operator-=(RawValue right)
    {
        if (isInfinite())
        {
        }
        else
        {
            *this = LayoutSize(raw - right);
        }
    }

    void operator/=(RawValue right)
    {
        if (isInfinite())
        {
        }
        else
        {
            *this = LayoutSize(raw / right);
        }
    }
    RawValue raw;
};

inline LayoutSize operator+(LayoutSize left, LayoutSize right)
{
    LayoutSize result(left);
    result += right;
    return result;
}

inline LayoutSize operator*(LayoutSize left, LayoutSize right)
{
    LayoutSize result(left);
    result *= right;
    return result;
}

inline LayoutSize operator-(LayoutSize left, LayoutSize::RawValue right)
{
    LayoutSize result(left);
    result -= right;
    return result;
}

inline LayoutSize operator/(LayoutSize left, LayoutSize::RawValue right)
{
    LayoutSize result(left);
    result /= right;
    return result;
}

inline LayoutSize maximum(LayoutSize left, LayoutSize right)
{
    if (left.isInfinite() || right.isInfinite())
        return LayoutSize::infinite();

    return LayoutSize(Math::Max(left.getFiniteValue(), right.getFiniteValue()));
}

inline bool operator>(LayoutSize left, LayoutSize::RawValue right)
{
    return left.isInfinite() || (left.getFiniteValue() > right);
}

inline bool operator<=(LayoutSize left, LayoutSize::RawValue right)
{
    return left.isFinite() && (left.getFiniteValue() <= right);
}

// Layout appropriate to "just memory" scenarios,
// such as laying out the members of a constant buffer.
struct UniformLayoutInfo
{
    LayoutSize size;
    size_t alignment;

    UniformLayoutInfo()
        : size(0), alignment(1)
    {
    }

    UniformLayoutInfo(LayoutSize size, size_t alignment)
        : size(size), alignment(alignment)
    {
    }
};

// Extended information required for an array of uniform data,
// including the "stride" of the array (the space between
// consecutive elements).
struct UniformArrayLayoutInfo : UniformLayoutInfo
{
    size_t elementStride;

    UniformArrayLayoutInfo()
        : elementStride(0)
    {
    }

    UniformArrayLayoutInfo(LayoutSize size, size_t alignment, size_t elementStride)
        : UniformLayoutInfo(size, alignment), elementStride(elementStride)
    {
    }
};

typedef slang::ParameterCategory LayoutResourceKind;

// Any change to slang::ParameterCategory, requires a change to this macro.
// clang-format off
#define SLANG_PARAMETER_CATEGORIES(x) \
    x(None) \
    x(Mixed) \
    x(ConstantBuffer) \
    x(ShaderResource) \
    x(UnorderedAccess) \
    x(VaryingInput) \
    x(VaryingOutput) \
    x(SamplerState) \
    x(Uniform) \
    x(DescriptorTableSlot) \
    x(SpecializationConstant) \
    x(PushConstantBuffer) \
    x(RegisterSpace) \
    x(GenericResource) \
    \
    x(RayPayload) \
    x(HitAttributes) \
    x(CallablePayload) \
    \
    x(ShaderRecord) \
    \
    x(ExistentialTypeParam) \
    x(ExistentialObjectParam) \
    \
    x(SubElementRegisterSpace) \
    x(VertexInput) \
    x(FragmentOutput) \
    x(InputAttachmentIndex) \
    \
    x(MetalBuffer) \
    x(MetalTexture) \
    x(MetalArgumentBufferElement)
// clang-format on

#define SLANG_PARAMETER_CATEGORY_FLAG(x) x = ParameterCategoryFlags(1) << int(slang::x),

typedef uint32_t ParameterCategoryFlags;
struct ParameterCategoryFlag
{
    enum Enum : ParameterCategoryFlags
    {
        SLANG_PARAMETER_CATEGORIES(SLANG_PARAMETER_CATEGORY_FLAG)
    };

    /// Make a flag from a category
    SLANG_FORCE_INLINE static Enum make(slang::ParameterCategory cat)
    {
        return Enum(ParameterCategoryFlags(1) << int(cat));
    }
};

typedef ParameterCategoryFlags LayoutResourceKindFlags;
typedef ParameterCategoryFlag LayoutResourceKindFlag;

// Layout information for a value that only consumes
// a single resource kind.
struct SimpleLayoutInfo
{
    // What kind of resource should we consume?
    LayoutResourceKind kind;

    // How many resources of that kind?
    //
    // For uniform, the size is the number of bytes "reserved" exclusively for an instance of that
    // type. In *general* it is not necessary for a size to be rounded up to the alignment. Some
    // targets do though - for example C++ and CUDA targets always have size as a multiple of
    // alignment.
    LayoutSize size;

    // only useful in the uniform case
    size_t alignment;

    SimpleLayoutInfo()
        : kind(LayoutResourceKind::None), size(0), alignment(1)
    {
    }

    SimpleLayoutInfo(UniformLayoutInfo uniformInfo)
        : kind(LayoutResourceKind::Uniform)
        , size(uniformInfo.size)
        , alignment(uniformInfo.alignment)
    {
    }

    SimpleLayoutInfo(LayoutResourceKind kind, LayoutSize size, size_t alignment = 1)
        : kind(kind), size(size), alignment(alignment)
    {
    }

    // Convert to layout for uniform data
    UniformLayoutInfo getUniformLayout()
    {
        if (kind == LayoutResourceKind::Uniform)
        {
            return UniformLayoutInfo(size, alignment);
        }
        else
        {
            return UniformLayoutInfo(0, 1);
        }
    }
};

// Only useful in the case of a homogeneous array
struct SimpleArrayLayoutInfo : SimpleLayoutInfo
{
    // This field is only useful in the uniform case
    size_t elementStride;

    // Convert to layout for uniform data
    UniformArrayLayoutInfo getUniformLayout()
    {
        if (kind == LayoutResourceKind::Uniform)
        {
            return UniformArrayLayoutInfo(size, alignment, elementStride);
        }
        else
        {
            return UniformArrayLayoutInfo(0, 1, 0);
        }
    }
};

struct ObjectLayoutInfo
{
    ShortList<SimpleLayoutInfo, 2> layoutInfos;
    ObjectLayoutInfo() = default;
    ObjectLayoutInfo(SimpleLayoutInfo layoutInfo) { layoutInfos.add(layoutInfo); }
    SimpleLayoutInfo getSimple()
    {
        SLANG_ASSERT(layoutInfos.getCount() == 1);
        return layoutInfos[0];
    }
};

struct LayoutRulesImpl;
class VarLayout;

// Base class for things that store layout info
class Layout : public RefObject
{
};

// A reified representation of a particular laid-out type
class TypeLayout : public Layout
{
public:
    // The type that was laid out
    Type* type = nullptr;
    Type* getType() { return type; }

    // The layout rules that were used to produce this type
    LayoutRulesImpl* rules;

    struct ResourceInfo
    {
        // What kind of register was it?
        LayoutResourceKind kind = LayoutResourceKind::None;

        // How many registers of the above kind did we use?
        LayoutSize count;
    };

    List<ResourceInfo> resourceInfos;

    // For uniform data, alignment matters, but not for
    // any other resource category, so we don't waste
    // the space storing it in the above array
    UInt uniformAlignment = 1;


    /// The layout for data that is conceptually owned by this type, but which is pending layout.
    ///
    /// When a type contains interface/existential fields (recursively), the
    /// actual data referenced by these fields needs to get allocated somewhere,
    /// but it cannot go inline at the point where the interface/existential
    /// type appears, or else the layout of a composite object would change
    /// when the concrete type(s) we plug in change.
    ///
    /// We solve this problem by tracking this data that is "pending" layout,
    /// and then "flushing" the pending data at appropriate places during
    /// the layout process.
    ///
    RefPtr<TypeLayout> pendingDataTypeLayout;

    ResourceInfo* FindResourceInfo(LayoutResourceKind kind)
    {
        for (auto& rr : resourceInfos)
        {
            if (rr.kind == kind)
                return &rr;
        }
        return nullptr;
    }

    ResourceInfo* findOrAddResourceInfo(LayoutResourceKind kind)
    {
        auto existing = FindResourceInfo(kind);
        if (existing)
            return existing;

        ResourceInfo info;
        info.kind = kind;
        info.count = 0;
        resourceInfos.add(info);
        return &resourceInfos.getLast();
    }

    void addResourceUsage(ResourceInfo info)
    {
        if (info.count == 0)
            return;

        findOrAddResourceInfo(info.kind)->count += info.count;
    }

    void addResourceUsage(LayoutResourceKind kind, LayoutSize count)
    {
        ResourceInfo info;
        info.kind = kind;
        info.count = count;
        addResourceUsage(info);
    }

    void removeResourceUsage(LayoutResourceKind kind);

    void addResourceUsageFrom(TypeLayout* otherTypeLayout);

    /// "Unwrap" any layers of array-ness from this type layout.
    ///
    /// If this is an `ArrayTypeLayout`, returns the result of unwrapping the element type layout.
    /// Otherwise, returns this type layout.
    ///
    RefPtr<TypeLayout> unwrapArray();


    /// Extended information about type layout, used for "flat" reflection API
    struct ExtendedInfo : public RefObject
    {
        struct DescriptorRangeInfo
        {
            SlangBindingType bindingType;
            LayoutResourceKind kind;
            LayoutSize count;
            Int indexOffset;
        };

        struct DescriptorSetInfo : public RefObject
        {
            Int spaceOffset;
            List<DescriptorRangeInfo> descriptorRanges;
        };

        struct BindingRangeInfo
        {
            VarDeclBase* leafVariable;
            TypeLayout* leafTypeLayout;
            SlangBindingType bindingType;
            LayoutSize count;
            Int descriptorSetIndex;
            Int firstDescriptorRangeIndex;
            Int descriptorRangeCount;
        };

        struct SubObjectRangeInfo
        {
            Int bindingRangeIndex = 0;
            Int spaceOffset = 0;
            RefPtr<VarLayout> offsetVarLayout;
        };

        List<RefPtr<DescriptorSetInfo>> m_descriptorSets;
        List<BindingRangeInfo> m_bindingRanges;
        List<SubObjectRangeInfo> m_subObjectRanges;
    };

    RefPtr<ExtendedInfo> m_extendedInfo;
};

typedef unsigned int VarLayoutFlags;
enum VarLayoutFlag : VarLayoutFlags
{
    HasSemantic = 1 << 0
};

// A reified layout for a particular variable, field, etc.
class VarLayout : public Layout
{
public:
    // The variable we are laying out
    DeclRef<Decl> varDecl;
    VarDeclBase* getVariable() { return varDecl.as<VarDeclBase>().getDecl(); }

    Name* getName() { return getVariable()->getName(); }

    // The result of laying out the variable's type
    TransformablePtr<TypeLayout> typeLayout;
    TypeLayout* getTypeLayout() { return typeLayout.Ptr(); }

    // Additional flags
    VarLayoutFlags flags = 0;

    // System-value semantic (and index) if this is a system value
    String systemValueSemantic;
    int systemValueSemanticIndex;

    // General case semantic name and index
    // TODO: this and the system-value field are redundant
    // TODO: the `VarLayout` type is getting bloated; we need to not store this
    // information unless actually required.
    String semanticName;
    int semanticIndex;

    // The stage this variable belongs to, in case it is
    // stage-specific.
    // TODO: This is wasteful to be storing on every single
    // variable layout.
    Stage stage = Stage::Unknown;

    // The start register(s) for any resources
    struct ResourceInfo
    {
        // What kind of register was it?
        LayoutResourceKind kind = LayoutResourceKind::None;

        // What binding space (HLSL) or set (Vulkan) are we placed in?
        UInt space;

        // What is our starting register in that space?
        //
        // (In the case of uniform data, this is a byte offset)
        UInt index;
    };
    List<ResourceInfo> resourceInfos;

    ResourceInfo* FindResourceInfo(LayoutResourceKind kind)
    {
        for (auto& rr : resourceInfos)
        {
            if (rr.kind == kind)
                return &rr;
        }
        return nullptr;
    }

    ResourceInfo* AddResourceInfo(LayoutResourceKind kind)
    {
        ResourceInfo info;
        info.kind = kind;
        info.space = 0;
        info.index = 0;

        resourceInfos.add(info);
        return &resourceInfos.getLast();
    }

    ResourceInfo* findOrAddResourceInfo(LayoutResourceKind kind)
    {
        auto existing = FindResourceInfo(kind);
        if (existing)
            return existing;

        return AddResourceInfo(kind);
    }

    void removeResourceUsage(LayoutResourceKind kind);

    RefPtr<VarLayout> pendingVarLayout;

    /// Offset in binding ranges within the parent type
    ///
    /// Note: only usable when extended layout information has been calculated.
    ///
    Index bindingRangeOffset = -1;
};

// type layout for a variable that has a constant-buffer type
class ParameterGroupTypeLayout : public TypeLayout
{
public:
    // The layout of the "container" part itself.
    // E.g., for a constant buffer, this would reflect
    // the resource usage of the container, without
    // the element type factored in. All of the offsets
    // for this variable should be zero, but it is included
    // for completeness.
    RefPtr<VarLayout> containerVarLayout;

    // A variable layout for the element of the container.
    // The offsets of the variable layout will reflect
    // the offsets that need to applied to get past the
    // container types resource usage, while the actual
    // type layout won't have offsets applied (unlike
    // `offsetElementTypeLayout` below).
    RefPtr<VarLayout> elementVarLayout;

    // The layout of the element type, with offsets applied
    // so that any fields (if the element type is a `struct`)
    // will be offset by the resource usage of the container.
    RefPtr<TypeLayout> offsetElementTypeLayout;
};

// type layout for a variable that has a constant-buffer type
class StructuredBufferTypeLayout : public TypeLayout
{
public:
    RefPtr<TypeLayout> elementTypeLayout;
    // If required, this is the VarLayout for a buffer which contains the
    // counter associated with the buffer, most often used for
    // AppendStructuredBuffer or ConsumeStructuredBuffer
    RefPtr<VarLayout> counterVarLayout;
};

/// Type layout for a logical sequence type
class SequenceTypeLayout : public TypeLayout
{
public:
    /// The layout of the element type.
    ///
    /// This layout may include adjustments to make lookups in elements
    /// of the array Just Work, and may not be the same as the layout
    /// of the element type when used in a non-array context.
    ///
    RefPtr<TypeLayout> elementTypeLayout;

    /// The stride in bytes between elements.
    size_t uniformStride = 0;
};

/// Type layout for an array type
class ArrayTypeLayout : public SequenceTypeLayout
{
public:
    /// The original layout of the element type.
    ///
    /// This layout does not include any adjustments that
    /// were made to the element type in order to make
    /// lookup into array elements Just Work.
    ///
    RefPtr<TypeLayout> originalElementTypeLayout;
};

/// Type layout for an pointer type
class PointerTypeLayout : public TypeLayout
{
public:
    // TODO(JS):
    // Should this derive from SequenceTypeLayout? A pointer is kind of like an array without
    // bounds - in that it can be indexed. Of it it can be looked at as an indirection to a value.
    // Is the "Just Work"iness applicable?
    // TODO(Yong):
    // This reference can lead to memory leak when we have `struct S{  S* f; };`
    // where `f` will have a var layout whose type layout is a pointer type layout
    // whose valueTypeLayout is the layout for `S` itself, forming a cycle.
    // We need to stop using reference pointers for layouts and instead allocate all
    // type layout object from MemoryArena on the linkage.
    RefPtr<TypeLayout> valueTypeLayout;
};

// type layout for a variable with stream-output type
class StreamOutputTypeLayout : public TypeLayout
{
public:
    RefPtr<TypeLayout> elementTypeLayout;
};

class VectorTypeLayout : public SequenceTypeLayout
{
public:
};


class MatrixTypeLayout : public SequenceTypeLayout
{
public:
    /// Is this matrix laid out as row-major or column-major?
    ///
    /// Note that this does *not* affect the interpretation
    /// of the `elementTypeLayout` field, which always represents
    /// the logical elements of the matrix type, which are its
    /// rows.
    ///
    MatrixLayoutMode mode;
};

// Specific case of type layout for a struct
class StructTypeLayout : public TypeLayout
{
public:
    // An ordered list of layouts for the known per *instance* fields
    List<RefPtr<VarLayout>> fields;

    // Map a variable to its layout directly.
    //
    // Note that in the general case, there may be entries
    // in the `fields` array that came from multiple
    // translation units, and in cases where there are
    // multiple declarations of the same parameter, only
    // one will appear in `fields`, while all of
    // them will be reflected in `mapVarToLayout`.
    //
    // TODO: This should map from a declaration to the *index*
    // in the array above, rather than to the actual pointer,
    // so that we
    Dictionary<Decl*, RefPtr<VarLayout>> mapVarToLayout;
};

class GenericParamTypeLayout : public TypeLayout
{
public:
    GlobalGenericParamDecl* getGlobalGenericParamDecl();
    Index paramIndex = 0;
};

/// Layout information for an interface/existential type
///
/// This class is used to represent the layout of an interface type
/// such as `IThing`, including both the information about the
/// space consumed by the existential itself (including, e.g., the
/// RTTI and witness-table infromation), along with any
/// "pending" data related to legacy static specialization.
///
class ExistentialTypeLayout : public TypeLayout
{
public:
};

/// Layout information for a type with existential (sub-)field types specialized.
///
/// This class is used to represent a type like `SomeStruct` that
/// contains nested existential-type fields, and which has been explicitly
/// specialized with concrete type information for those fields.
///
/// Note that the front-end language should not ever produce types that
/// make use of layouts like this. The only way such a type layout can
/// arise is if a user explicitly specialized a type with existential-type
/// fields using the Slang API, and then used that specialized type as
/// a type argument for a shader. This type layout class serves to remember
/// the specialization information (and resulting layout) for the type.
///
/// TODO: Given our changes to how layout for existential types is being
/// handled, the details of this type probably need to be re-thought.
///
class ExistentialSpecializedTypeLayout : public TypeLayout
{
public:
    RefPtr<TypeLayout> baseTypeLayout;
    RefPtr<VarLayout> pendingDataVarLayout;
};

/// Layout for a scoped entity like a program, module, or entry point
class ScopeLayout : public Layout
{
public:
    // The layout for the parameters of this entity.
    //
    RefPtr<VarLayout> parametersLayout;
};

StructTypeLayout* getScopeStructLayout(ScopeLayout* programLayout);

// Layout information for a single shader entry point
// within a program
//
// Treated as a subclass of `StructTypeLayout` because
// it needs to include computed layout information
// for the parameters of the entry point.
//
// TODO: where to store layout info for the return
// type of the function?
class EntryPointLayout : public ScopeLayout
{
public:
    // The corresponding function declaration
    DeclRef<FuncDecl> entryPoint;

    ComponentType* program = nullptr;

    DeclRef<FuncDecl> getFuncDeclRef() { return entryPoint; }
    FuncDecl* getFuncDecl() { return entryPoint.getDecl(); }

    // The shader profile that was used to compile the entry point
    Profile profile;

    // The name of the entry point. Always available even if entryPoint is nullptr (for example when
    // it came from a library)
    Name* name = nullptr;

    // The overrided name of the entry point.
    String nameOverride;

    // Layout for any results of the entry point
    RefPtr<VarLayout> resultLayout;

    enum Flag : unsigned
    {
        usesAnySampleRateInput = 0x1,
    };
    unsigned flags = 0;

    //    EntryPointLayout* getAbsoluteLayout(VarLayout* parentLayout);

    //    RefPtr<EntryPointLayout> m_absoluteLayout;
};

/// Reflection/layout information about a specialization parameter
class SpecializationParamLayout : public Layout
{
public:
    Index index;
};

/// Reflection/layout information about a generic specialization parameter
class GenericSpecializationParamLayout : public SpecializationParamLayout
{
public:
    /// The declaration of the generic parameter.
    ///
    /// Could be any subclass of `Decl` that represents a generic value or type parameter.
    Decl* decl = nullptr;
};

/// Reflection/layout information about an existential/interface specialization parameter.
class ExistentialSpecializationParamLayout : public SpecializationParamLayout
{
public:
    /// The type that needs to be specialized.
    ///
    /// Currently, this will be an `interface` type that any concrete
    /// type argument getting plugged in must conform to.
    ///
    Type* type = nullptr;
};

// Layout information for the global scope of a program
class ProgramLayout : public ScopeLayout
{
public:
    /*
    // We store a layout for the declarations at the global
    // scope. Note that this will *either* be a single
    // `StructTypeLayout` with the fields stored directly,
    // or it will be a single `ParameterGroupTypeLayout`,
    // where the global-scope fields are the members of
    // that constant buffer.
    //
    // The `struct` case will be used if there are no
    // "naked" global-scope uniform variables, and the
    // constant-buffer case will be used if there are
    // (since a constant buffer will have to be allocated
    // to store them).
    //
    RefPtr<VarLayout> globalScopeLayout;
    */

    /// The target and program for which layout was computed
    TargetProgram* targetProgram;

    TargetProgram* getTargetProgram() { return targetProgram; }
    TargetRequest* getTargetReq() { return targetProgram->getTargetReq(); }
    ComponentType* getProgram() { return targetProgram->getProgram(); }

    ProgramLayout()
        : hashedStringLiteralPool(StringSlicePool::Style::Empty)
    {
    }

    // We catalog the requested entry points here,
    // and any entry-point-specific parameter data
    // will (eventually) belong there...
    List<RefPtr<EntryPointLayout>> entryPoints;

    /// Reflection information on (unspecialized) specialization parameters.
    List<RefPtr<SpecializationParamLayout>> specializationParams;

    /// Concrete argument values that were provided to specific global generic parameters.
    ///
    /// Not useful for reflection, but valuable for code generation.
    ///
    Dictionary<GlobalGenericParamDecl*, Val*> globalGenericArgs;

    /// Holds all of the string literals that have been hashed
    StringSlicePool hashedStringLiteralPool;
};

StructTypeLayout* getGlobalStructLayout(ProgramLayout* programLayout);

struct LayoutRulesFamilyImpl;

// A delineation of shader parameter types into fine-grained
// categories that can then be mapped down to actual resources
// by a given set of rules.
//
// TODO(tfoley): `SlangParameterCategory` and `slang::ParameterCategory`
// are badly named, and need to be revised so they can't be confused
// with this concept.
enum class ShaderParameterKind
{
    ConstantBuffer,
    TextureUniformBuffer,
    ShaderStorageBuffer,

    StructuredBuffer,
    MutableStructuredBuffer,

    RawBuffer,
    MutableRawBuffer,

    Buffer,
    MutableBuffer,

    Texture,
    MutableTexture,

    TextureSampler,
    MutableTextureSampler,

    InputRenderTarget,

    SamplerState,

    Image,
    MutableImage,

    RegisterSpace,

    AppendConsumeStructuredBuffer,

    AtomicUint,

    SubpassInput,
    AccelerationStructure,
    ParameterBlock,
};

struct SimpleLayoutRulesImpl
{
    // Get size and alignment for a single value of base type.
    virtual SimpleLayoutInfo GetScalarLayout(BaseType baseType) = 0;

    // Get size and alignment for an array of elements
    virtual SimpleArrayLayoutInfo GetArrayLayout(
        SimpleLayoutInfo elementInfo,
        LayoutSize elementCount) = 0;

    /// Get pointer layout
    virtual SimpleLayoutInfo GetPointerLayout() = 0;

    // Get layout for a vector or matrix type
    virtual SimpleLayoutInfo GetVectorLayout(
        BaseType elementType,
        SimpleLayoutInfo elementInfo,
        size_t elementCount) = 0;
    virtual SimpleArrayLayoutInfo GetMatrixLayout(
        BaseType elementType,
        SimpleLayoutInfo elementInfo,
        size_t rowCount,
        size_t columnCount) = 0;

    // Begin doing layout on a `struct` type
    virtual UniformLayoutInfo BeginStructLayout() = 0;

    // Add a field to a `struct` type, and return the offset for the field
    virtual LayoutSize AddStructField(
        UniformLayoutInfo* ioStructInfo,
        UniformLayoutInfo fieldInfo) = 0;

    // End layout for a struct, and finalize its size/alignment.
    virtual void EndStructLayout(UniformLayoutInfo* ioStructInfo) = 0;

    // Do structured buffers need a separate binding for the counter buffer?
    // (DirectX is the exception in managing these together)
    virtual bool DoStructuredBuffersNeedSeparateCounterBuffer() = 0;
};

struct ObjectLayoutRulesImpl
{
    struct Options
    {
        HLSLToVulkanLayoutOptions::KindFlags hlslToVulkanKindFlags = 0;
    };

    // Compute layout info for an object type
    virtual ObjectLayoutInfo GetObjectLayout(ShaderParameterKind kind, const Options& options) = 0;
};

struct LayoutRulesImpl
{
    LayoutRulesFamilyImpl* family;
    SimpleLayoutRulesImpl* simpleRules;
    ObjectLayoutRulesImpl* objectRules;

    // Forward `SimpleLayoutRulesImpl` interface

    SimpleLayoutInfo GetScalarLayout(BaseType baseType)
    {
        return simpleRules->GetScalarLayout(baseType);
    }
    SimpleLayoutInfo GetPointerLayout() { return simpleRules->GetPointerLayout(); }
    SimpleArrayLayoutInfo GetArrayLayout(SimpleLayoutInfo elementInfo, LayoutSize elementCount)
    {
        return simpleRules->GetArrayLayout(elementInfo, elementCount);
    }

    SimpleLayoutInfo GetVectorLayout(
        BaseType elementType,
        SimpleLayoutInfo elementInfo,
        size_t elementCount)
    {
        return simpleRules->GetVectorLayout(elementType, elementInfo, elementCount);
    }

    SimpleArrayLayoutInfo GetMatrixLayout(
        BaseType elementType,
        SimpleLayoutInfo elementInfo,
        size_t rowCount,
        size_t columnCount)
    {
        return simpleRules->GetMatrixLayout(elementType, elementInfo, rowCount, columnCount);
    }

    UniformLayoutInfo BeginStructLayout()
    {
        SLANG_ASSERT(simpleRules);
        return simpleRules->BeginStructLayout();
    }

    LayoutSize AddStructField(UniformLayoutInfo* ioStructInfo, UniformLayoutInfo fieldInfo)
    {
        SLANG_ASSERT(simpleRules);
        return simpleRules->AddStructField(ioStructInfo, fieldInfo);
    }

    void EndStructLayout(UniformLayoutInfo* ioStructInfo)
    {
        SLANG_ASSERT(simpleRules);
        return simpleRules->EndStructLayout(ioStructInfo);
    }

    // Do structured buffers need a separate binding for the counter buffer?
    // (DirectX is the exception in managing these together)
    bool DoStructuredBuffersNeedSeparateCounterBuffer()
    {
        return simpleRules->DoStructuredBuffersNeedSeparateCounterBuffer();
    }

    // Forward `ObjectLayoutRulesImpl` interface

    ObjectLayoutInfo GetObjectLayout(
        ShaderParameterKind kind,
        const ObjectLayoutRulesImpl::Options& options)
    {
        return objectRules->GetObjectLayout(kind, options);
    }

    //

    LayoutRulesFamilyImpl* getLayoutRulesFamily() { return family; }
};

struct LayoutRulesFamilyImpl
{
    virtual LayoutRulesImpl* getAnyValueRules() = 0;
    virtual LayoutRulesImpl* getConstantBufferRules(
        CompilerOptionSet& compilerOptions,
        Type* containerType) = 0;
    virtual LayoutRulesImpl* getPushConstantBufferRules() = 0;
    virtual LayoutRulesImpl* getTextureBufferRules(CompilerOptionSet& compilerOptions) = 0;
    virtual LayoutRulesImpl* getVaryingInputRules() = 0;
    virtual LayoutRulesImpl* getVaryingOutputRules() = 0;
    virtual LayoutRulesImpl* getSpecializationConstantRules() = 0;
    virtual LayoutRulesImpl* getShaderStorageBufferRules(CompilerOptionSet& compilerOptions) = 0;
    virtual LayoutRulesImpl* getParameterBlockRules(CompilerOptionSet& compilerOptions) = 0;

    virtual LayoutRulesImpl* getRayPayloadParameterRules() = 0;
    virtual LayoutRulesImpl* getCallablePayloadParameterRules() = 0;
    virtual LayoutRulesImpl* getHitAttributesParameterRules() = 0;

    virtual LayoutRulesImpl* getShaderRecordConstantBufferRules() = 0;

    virtual LayoutRulesImpl* getStructuredBufferRules(CompilerOptionSet& compilerOptions) = 0;
};

/// A custom tuple to capture the outputs of type layout
struct TypeLayoutResult
{
    /// The actual heap-allocated layout object with all the details
    RefPtr<TypeLayout> layout;

    /// A simplified representation of layout information.
    ///
    /// This information is suitable for the case where a type only
    /// consumes a single resource.
    ///
    SimpleLayoutInfo info;

    /// Default constructor.
    TypeLayoutResult() {}

    /// Construct a result from the given layout object and simple layout info.
    TypeLayoutResult(RefPtr<TypeLayout> inLayout, SimpleLayoutInfo const& inInfo)
        : layout(inLayout), info(inInfo)
    {
    }
};

struct TypeLayoutContext
{
    ASTBuilder* astBuilder;

    // The layout rules to use (e.g., we compute
    // layout differently in a `cbuffer` vs. the
    // parameter list of a fragment shader).
    LayoutRulesImpl* rules;

    // The target request that is triggering layout
    TargetRequest* targetReq;

    // A parent program layout that will establish the ordering
    // of all global generic type parameters.
    //
    ProgramLayout* programLayout;

    // Whether to lay out matrices column-major
    // or row-major.
    MatrixLayoutMode matrixLayoutMode;

    // The concrete types (if any) to plug into the currently in-scope
    // specialization params.
    //
    Int specializationArgCount = 0;
    ExpandedSpecializationArg const* specializationArgs = nullptr;

    // Map types to their type layout
    Dictionary<Type*, TypeLayoutResult> layoutMap;

    // Options passed to object layout
    ObjectLayoutRulesImpl::Options objectLayoutOptions;

    // Mangled names to Type, this is used to match up 'extern' types to
    // their linked in definitions during layout generation
    std::optional<Dictionary<String, Type*>> externTypeMap;

    Type* lookupExternDeclRefType(DeclRefType* declRefType);
    void buildExternTypeMap();

    LayoutRulesImpl* getRules() { return rules; }
    LayoutRulesFamilyImpl* getRulesFamily() const { return rules->getLayoutRulesFamily(); }

    TypeLayoutContext with(LayoutRulesImpl* inRules) const
    {
        TypeLayoutContext result = *this;
        result.rules = inRules;
        return result;
    }

    TypeLayoutContext with(MatrixLayoutMode inMatrixLayoutMode) const
    {
        TypeLayoutContext result = *this;
        result.matrixLayoutMode = inMatrixLayoutMode;
        return result;
    }

    TypeLayoutContext withSpecializationArgs(ExpandedSpecializationArg const* args, Int argCount)
        const
    {
        TypeLayoutContext result = *this;
        result.specializationArgCount = argCount;
        result.specializationArgs = args;
        return result;
    }

    TypeLayoutContext withSpecializationArgsOffsetBy(Int offset) const
    {
        TypeLayoutContext result = *this;
        if (specializationArgCount > offset)
        {
            result.specializationArgCount = specializationArgCount - offset;
            result.specializationArgs = specializationArgs + offset;
        }
        else
        {
            result.specializationArgCount = 0;
            result.specializationArgs = nullptr;
        }
        return result;
    }

    IntVal* tryResolveLinkTimeVal(IntVal* inVal) const
    {
        if (!programLayout)
            return inVal;
        auto constIntVal = programLayout->getProgram()->tryFoldIntVal(inVal);
        if (constIntVal)
            return constIntVal;
        return inVal;
    }
};

//


/// Helper type for building `struct` type layouts
struct StructTypeLayoutBuilder
{
public:
    /// Begin the layout process for `type`, using `rules`
    void beginLayout(Type* type, LayoutRulesImpl* rules);

    /// Begin the layout process for `type`, using `rules`, if it hasn't already been begun.
    ///
    /// This functions allows for a `StructTypeLayoutBuilder` to be use lazily,
    /// only allocating a type layout object if it is actaully needed.
    ///
    void beginLayoutIfNeeded(Type* type, LayoutRulesImpl* rules);

    /// Add a field to the struct type layout.
    ///
    /// One of the `beginLayout*()` functions must have been called previously.
    ///
    RefPtr<VarLayout> addField(DeclRef<Decl> field, TypeLayoutResult fieldResult);

    RefPtr<VarLayout> addExplicitUniformField(
        DeclRef<VarDeclBase> field,
        TypeLayoutResult fieldResult);

    /// Add a field to the struct type layout.
    ///
    /// One of the `beginLayout*()` functions must have been called previously.
    ///
    RefPtr<VarLayout> addField(DeclRef<VarDeclBase> field, RefPtr<TypeLayout> fieldTypeLayout);

    /// Complete layout.
    ///
    /// If layout was begun, ensures that the result of `getTypeLayout()` is usable.
    /// If layout was never begin, does nothing.
    ///
    void endLayout();

    /// Get the type layout.
    ///
    /// This can be called any time after `beginLayout*()`.
    /// In particular, it can be called before `endLayout`.
    ///
    RefPtr<StructTypeLayout> getTypeLayout();

    /// The the type layout result.
    ///
    /// This is primarily useful for implementation code in `_createTypeLayout`.
    ///
    TypeLayoutResult getTypeLayoutResult();

    UniformLayoutInfo* getStructLayoutInfo() { return &m_info; }

private:
    /// The layout rules being used, if layout has begun.
    LayoutRulesImpl* m_rules = nullptr;

    /// The type layout being computed, if layout has begun.
    RefPtr<StructTypeLayout> m_typeLayout;

    /// Uniform offset/alignment statte used when computing offset for uniform fields.
    UniformLayoutInfo m_info;
};

//

// Get an appropriate set of layout rules (packaged up
// as a `TypeLayoutContext`) to perform type layout
// for the given target.
//
// The provided `programLayout` is used to establish
// the ordering of all global generic type paramters.
//
TypeLayoutContext getInitialLayoutContextForTarget(
    TargetRequest* targetRequest,
    ProgramLayout* programLayout,
    slang::LayoutRules rules);

/// Direction(s) of a varying shader parameter
typedef unsigned int EntryPointParameterDirectionMask;
enum
{
    kEntryPointParameterDirection_Input = 0x1,
    kEntryPointParameterDirection_Output = 0x2,
};


/// Get layout information for a simple varying parameter type.
///
/// A simple varying parameter is a scalar, vector, or matrix.
///
RefPtr<TypeLayout> getSimpleVaryingParameterTypeLayout(
    TypeLayoutContext const& context,
    Type* type,
    EntryPointParameterDirectionMask directionMask);

// Create a full type-layout object for a type,
// according to the layout rules in `context`.
RefPtr<TypeLayout> createTypeLayout(TypeLayoutContext& context, Type* type);

// A wrapper for createTypeLayout which copies the context applying the
// provided rules with TypeLayoutContext::with
RefPtr<TypeLayout> createTypeLayoutWith(
    const TypeLayoutContext& context,
    LayoutRulesImpl* rules,
    Type* type);

//

/// Create a layout for a parameter-group type (a `ConstantBuffer` or `ParameterBlock`).
RefPtr<TypeLayout> createParameterGroupTypeLayout(
    TypeLayoutContext const& context,
    ParameterGroupType* parameterGroupType);

/// Create a wrapper constant buffer type layout, if needed.
///
/// When dealing with entry-point `uniform` and global-scope parameters,
/// we want to create a wrapper constant buffer for all the parameters
/// if and only if there exist some parameters that use "ordinary" data
/// (`LayoutResourceKind::Uniform`).
///
/// This function determines whether such a wrapper is needed, based
/// on the `elementTypeLayout` given, and either creates and returns
/// the layout for the wrapper, or the unmodified `elementTypeLayout`.
///
RefPtr<TypeLayout> createConstantBufferTypeLayoutIfNeeded(
    TypeLayoutContext const& context,
    RefPtr<TypeLayout> elementTypeLayout);

// Create a type layout for a structured buffer type.
RefPtr<StructuredBufferTypeLayout> createStructuredBufferTypeLayout(
    TypeLayoutContext const& context,
    ShaderParameterKind kind,
    Type* structuredBufferType,
    Type* elementType);

RefPtr<StructuredBufferTypeLayout> createStructuredBufferTypeLayout(
    TypeLayoutContext const& context,
    ShaderParameterKind kind,
    Type* structuredBufferType,
    RefPtr<TypeLayout> elementTypeLayout);

/// Create a type layout for an unspecialized `globalGenericParamDecl`.
RefPtr<TypeLayout> createTypeLayoutForGlobalGenericTypeParam(
    TypeLayoutContext const& context,
    Type* type,
    GlobalGenericParamDecl* globalGenericParamDecl);

/// Find the concrete type (if any) that was plugged in for the global generic type parameter
/// `decl`.
Type* findGlobalGenericSpecializationArg(
    TypeLayoutContext const& context,
    GlobalGenericParamDecl* decl);

// Given an existing type layout `oldTypeLayout`, apply offsets
// to any contained fields based on the resource infos in `offsetVarLayout`.
RefPtr<TypeLayout> applyOffsetToTypeLayout(
    RefPtr<TypeLayout> oldTypeLayout,
    RefPtr<VarLayout> offsetVarLayout);

struct IRBuilder;
struct IRTypeLayout;
struct IRVarLayout;

IRTypeLayout* applyOffsetToTypeLayout(
    IRBuilder* irBuilder,
    IRTypeLayout* oldTypeLayout,
    IRVarLayout* offsetVarLayout);

/// Create a layout like `baseLayout`, but offset by `offsetLayout`
IRVarLayout* applyOffsetToVarLayout(
    IRBuilder* irBuilder,
    IRVarLayout* baseLayout,
    IRVarLayout* offsetLayout);

bool canTypeDirectlyUseRegisterSpace(TypeLayout* layout);

} // namespace Slang

#endif