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
|
// slang-check-conformance.cpp
#include "slang-check-impl.h"
// This file provides semantic checking services related
// to checking and representing the conformance of types
// to interfaces, as well as other subtype relationships.
namespace Slang
{
DeclaredSubtypeWitness* SemanticsVisitor::createSimpleSubtypeWitness(
TypeWitnessBreadcrumb* breadcrumb)
{
DeclaredSubtypeWitness* witness = m_astBuilder->create<DeclaredSubtypeWitness>();
witness->sub = breadcrumb->sub;
witness->sup = breadcrumb->sup;
witness->declRef = breadcrumb->declRef;
return witness;
}
Val* SemanticsVisitor::createTypeWitness(
Type* subType,
DeclRef<AggTypeDecl> superTypeDeclRef,
TypeWitnessBreadcrumb* inBreadcrumbs)
{
SLANG_UNUSED(subType);
SLANG_UNUSED(superTypeDeclRef);
if(!inBreadcrumbs)
{
// We need to construct a witness to the fact
// that `subType` has been proven to be *equal*
// to `superTypeDeclRef`.
//
SLANG_UNEXPECTED("reflexive type witness");
UNREACHABLE_RETURN(nullptr);
}
// We might have one or more steps in the breadcrumb trail, e.g.:
//
// {A : B} {B : C} {C : D}
//
// The chain is stored as a reversed linked list, so that
// the first entry would be the `(C : D)` relationship
// above.
//
// We need to walk the list and build up a suitable witness,
// which in the above case would look like:
//
// Transitive(
// Transitive(
// Declared({A : B}),
// {B : C}),
// {C : D})
//
// Because of the ordering of the breadcrumb trail, along
// with the way the `Transitive` case nests, we will be
// building these objects outside-in, and keeping
// track of the "hole" where the next step goes.
//
auto bb = inBreadcrumbs;
// `witness` here will hold the first (outer-most) object
// we create, which is the overall result.
SubtypeWitness* witness = nullptr;
// `link` will point at the remaining "hole" in the
// data structure, to be filled in.
SubtypeWitness** link = &witness;
// As long as there is more than one breadcrumb, we
// need to be creating transitive witnesses.
while(bb->prev)
{
// On the first iteration when processing the list
// above, the breadcrumb would be for `{ C : D }`,
// and so we'd create:
//
// Transitive(
// [...],
// { C : D})
//
// where `[...]` represents the "hole" we leave
// open to fill in next.
//
DeclaredSubtypeWitness* declaredWitness = m_astBuilder->create<DeclaredSubtypeWitness>();
declaredWitness->sub = bb->sub;
declaredWitness->sup = bb->sup;
declaredWitness->declRef = bb->declRef;
TransitiveSubtypeWitness* transitiveWitness = m_astBuilder->create<TransitiveSubtypeWitness>();
transitiveWitness->sub = subType;
transitiveWitness->sup = bb->sup;
transitiveWitness->midToSup = declaredWitness;
// Fill in the current hole, and then set the
// hole to point into the node we just created.
*link = transitiveWitness;
link = &transitiveWitness->subToMid;
// Move on with the list.
bb = bb->prev;
}
// If we exit the loop, then there is only one breadcrumb left.
// In our running example this would be `{ A : B }`. We create
// a simple (declared) subtype witness for it, and plug the
// final hole, after which there shouldn't be a hole to deal with.
DeclaredSubtypeWitness* declaredWitness = createSimpleSubtypeWitness(bb);
*link = declaredWitness;
// We now know that our original `witness` variable has been
// filled in, and there are no other holes.
return witness;
}
bool SemanticsVisitor::isInterfaceSafeForTaggedUnion(
DeclRef<InterfaceDecl> interfaceDeclRef)
{
for( auto memberDeclRef : getMembers(interfaceDeclRef) )
{
if(!isInterfaceRequirementSafeForTaggedUnion(interfaceDeclRef, memberDeclRef))
return false;
}
return true;
}
bool SemanticsVisitor::isInterfaceRequirementSafeForTaggedUnion(
DeclRef<InterfaceDecl> interfaceDeclRef,
DeclRef<Decl> requirementDeclRef)
{
SLANG_UNUSED(interfaceDeclRef);
if(auto callableDeclRef = requirementDeclRef.as<CallableDecl>())
{
// A `static` method requirement can't be satisfied by a
// tagged union, because there is no tag to dispatch on.
//
if(requirementDeclRef.getDecl()->hasModifier<HLSLStaticModifier>())
return false;
// TODO: We will eventually want to check that any callable
// requirements do not use the `This` type or any associated
// types in ways that could lead to errors.
//
// For now we are disallowing interfaces that have associated
// types completely, and we haven't implemented the `This`
// type, so we should be safe.
return true;
}
else
{
return false;
}
}
bool SemanticsVisitor::_isDeclaredSubtype(
Type* originalSubType,
Type* subType,
DeclRef<AggTypeDecl> superTypeDeclRef,
Val** outWitness,
TypeWitnessBreadcrumb* inBreadcrumbs)
{
// for now look up a conformance member...
if(auto declRefType = as<DeclRefType>(subType))
{
auto declRef = declRefType->declRef;
// Easy case: a type conforms to itself.
//
// TODO: This is actually a bit more complicated, as
// the interface needs to be "object-safe" for us to
// really make this determination...
if(declRef == superTypeDeclRef)
{
if(outWitness)
{
*outWitness = createTypeWitness(originalSubType, superTypeDeclRef, inBreadcrumbs);
}
return true;
}
if (auto dynamicType = as<DynamicType>(subType))
{
// A __Dynamic type always conforms to the interface via its witness table.
if (outWitness)
{
*outWitness = m_astBuilder->create<DynamicSubtypeWitness>();
}
return true;
}
else if( auto aggTypeDeclRef = declRef.as<AggTypeDecl>() )
{
ensureDecl(aggTypeDeclRef, DeclCheckState::CanEnumerateBases);
bool found = false;
foreachDirectOrExtensionMemberOfType<InheritanceDecl>(this, aggTypeDeclRef, [&](DeclRef<InheritanceDecl> const& inheritanceDeclRef)
{
ensureDecl(inheritanceDeclRef, DeclCheckState::CanUseBaseOfInheritanceDecl);
// Here we will recursively look up conformance on the type
// that is being inherited from. This is dangerous because
// it might lead to infinite loops.
//
// TODO: A better approach would be to create a linearized list
// of all the interfaces that a given type directly or indirectly
// inherits, and store it with the type, so that we don't have
// to recurse in places like this (and can maybe catch infinite
// loops better). This would also help avoid checking multiply-inherited
// conformances multiple times.
auto inheritedType = getBaseType(m_astBuilder, inheritanceDeclRef);
// There's one annoying corner case where something that *looks* like an inheritnace
// declaration isn't actually one, and that is when an `enum` type includes an explicit
// declaration of its "tag type."
//
if (auto enumDeclRef = declRef.as<EnumDecl>())
{
if (inheritedType->equals(getTagType(m_astBuilder, enumDeclRef)))
{
return;
}
}
// We need to ensure that the witness that gets created
// is a composite one, reflecting lookup through
// the inheritance declaration.
TypeWitnessBreadcrumb breadcrumb;
breadcrumb.prev = inBreadcrumbs;
breadcrumb.sub = subType;
breadcrumb.sup = inheritedType;
breadcrumb.declRef = inheritanceDeclRef;
if(_isDeclaredSubtype(originalSubType, inheritedType, superTypeDeclRef, outWitness, &breadcrumb))
{
found = true;
}
});
if(found)
return true;
// if an inheritance decl is not found, try to find a GenericTypeConstraintDecl
for (auto genConstraintDeclRef : getMembersOfType<GenericTypeConstraintDecl>(aggTypeDeclRef))
{
ensureDecl(genConstraintDeclRef, DeclCheckState::CanUseBaseOfInheritanceDecl);
auto inheritedType = getSup(m_astBuilder, genConstraintDeclRef);
TypeWitnessBreadcrumb breadcrumb;
breadcrumb.prev = inBreadcrumbs;
breadcrumb.sub = subType;
breadcrumb.sup = inheritedType;
breadcrumb.declRef = genConstraintDeclRef;
if (_isDeclaredSubtype(originalSubType, inheritedType, superTypeDeclRef, outWitness, &breadcrumb))
{
return true;
}
}
}
else if( auto genericTypeParamDeclRef = declRef.as<GenericTypeParamDecl>() )
{
// We need to enumerate the constraints placed on this type by its outer
// generic declaration, and see if any of them guarantees that we
// satisfy the given interface..
auto genericDeclRef = genericTypeParamDeclRef.getParent().as<GenericDecl>();
SLANG_ASSERT(genericDeclRef);
for( auto constraintDeclRef : getMembersOfType<GenericTypeConstraintDecl>(genericDeclRef) )
{
auto sub = getSub(m_astBuilder, constraintDeclRef);
auto sup = getSup(m_astBuilder, constraintDeclRef);
auto subDeclRef = as<DeclRefType>(sub);
if(!subDeclRef)
continue;
if(subDeclRef->declRef != genericTypeParamDeclRef)
continue;
// The witness that we create needs to reflect that
// it found the needed conformance by lookup through
// a generic type constraint.
TypeWitnessBreadcrumb breadcrumb;
breadcrumb.prev = inBreadcrumbs;
breadcrumb.sub = sub;
breadcrumb.sup = sup;
breadcrumb.declRef = constraintDeclRef;
if(_isDeclaredSubtype(originalSubType, sup, superTypeDeclRef, outWitness, &breadcrumb))
{
return true;
}
}
}
}
else if (auto extractExistentialType = as<ExtractExistentialType>(subType))
{
// An ExtractExistentialType from an existential value of type I
// is a subtype of I.
// We need to check and make sure the interface type of the `ExtractExistentialType`
// is equal to `superType`.
//
auto interfaceDeclRef = extractExistentialType->originalInterfaceDeclRef;
if (interfaceDeclRef.equals(superTypeDeclRef))
{
if (outWitness)
{
*outWitness = extractExistentialType->getSubtypeWitness();
}
return true;
}
return false;
}
else if(auto taggedUnionType = as<TaggedUnionType>(subType))
{
// A tagged union type conforms to an interface if all of
// the constituent types in the tagged union conform.
//
// We will iterate over the "case" types in the tagged
// union, and check if they conform to the interface.
// Along the way we will collect the conformance witness
// values *if* we are being asked to produce a witness
// value for the tagged union itself (that is, if
// `outWitness` is non-null).
//
List<Val*> caseWitnesses;
for(auto caseType : taggedUnionType->caseTypes)
{
Val* caseWitness = nullptr;
if(!_isDeclaredSubtype(
caseType,
caseType,
superTypeDeclRef,
outWitness ? &caseWitness : nullptr,
nullptr))
{
return false;
}
if(outWitness)
{
caseWitnesses.add(caseWitness);
}
}
// We also need to validate the requirements on
// the interface to make sure that they are suitable for
// use with a tagged-union type.
//
// For example, if the interface includes a `static` method
// (which can therefore be called without a particular instance),
// then we wouldn't know what implementation of that method
// to use because there is no tag value to dispatch on.
//
// We will start out being conservative about what we accept
// here, just to keep things simple.
//
if( auto superInterfaceDeclRef = superTypeDeclRef.as<InterfaceDecl>() )
{
if(!isInterfaceSafeForTaggedUnion(superInterfaceDeclRef))
return false;
}
// If we reach this point then we have a concrete
// witness for each of the case types, and that is
// enough to build a witness for the tagged union.
//
if(outWitness)
{
TaggedUnionSubtypeWitness* taggedUnionWitness = m_astBuilder->create<TaggedUnionSubtypeWitness>();
taggedUnionWitness->sub = taggedUnionType;
taggedUnionWitness->sup = DeclRefType::create(m_astBuilder, superTypeDeclRef);
taggedUnionWitness->caseWitnesses.swapWith(caseWitnesses);
*outWitness = taggedUnionWitness;
}
return true;
}
// default is failure
return false;
}
bool SemanticsVisitor::isDeclaredSubtype(
Type* subType,
DeclRef<AggTypeDecl> superTypeDeclRef)
{
return _isDeclaredSubtype(subType, subType, superTypeDeclRef, nullptr, nullptr);
}
Val* SemanticsVisitor::tryGetSubtypeWitness(
Type* subType,
DeclRef<AggTypeDecl> superTypeDeclRef)
{
Val* result = nullptr;
_isDeclaredSubtype(subType, subType, superTypeDeclRef, &result, nullptr);
return result;
}
Val* SemanticsVisitor::tryGetInterfaceConformanceWitness(
Type* type,
DeclRef<InterfaceDecl> interfaceDeclRef)
{
return tryGetSubtypeWitness(type, interfaceDeclRef);
}
Val* SemanticsVisitor::createTypeEqualityWitness(
Type* type)
{
TypeEqualityWitness* rs = m_astBuilder->create<TypeEqualityWitness>();
rs->sub = type;
rs->sup = type;
return rs;
}
Val* SemanticsVisitor::tryGetSubtypeWitness(
Type* sub,
Type* sup)
{
if(sub->equals(sup))
{
// They are the same type, so we just need a witness
// for type equality.
return createTypeEqualityWitness(sub);
}
if(auto supDeclRefType = as<DeclRefType>(sup))
{
auto supDeclRef = supDeclRefType->declRef;
if(auto supInterfaceDeclRef = supDeclRef.as<InterfaceDecl>())
{
if(auto witness = tryGetInterfaceConformanceWitness(sub, supInterfaceDeclRef))
{
return witness;
}
}
}
else if( auto andType = as<AndType>(sup) )
{
// A type `T` is a subtype of `A & B` if `T` is a
// subtype of `A` and `T` is a subtype of `B`.
//
auto leftWitness = tryGetSubtypeWitness(sub, andType->left);
if(!leftWitness) return nullptr;
auto rightWitness = tryGetSubtypeWitness(sub, andType->right);
if(!rightWitness) return nullptr;
ConjunctionSubtypeWitness* w = m_astBuilder->create<ConjunctionSubtypeWitness>();
w->leftWitness = leftWitness;
w->rightWitness = rightWitness;
w->sub = sub;
w->sup = sup;
return w;
}
return nullptr;
}
}
|