blob: 261378b9a4a2f6068181b1cd6aa0f3f087f8c67b (
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
|
// slang-ast-decl.cpp
#include "slang-ast-builder.h"
#include "slang-syntax.h"
#include <assert.h>
#include "slang-generated-ast-macro.h"
namespace Slang {
const TypeExp& TypeConstraintDecl::getSup() const
{
SLANG_AST_NODE_CONST_VIRTUAL_CALL(TypeConstraintDecl, getSup, ())
}
const TypeExp& TypeConstraintDecl::_getSupOverride() const
{
SLANG_UNEXPECTED("TypeConstraintDecl::_getSupOverride not overridden");
//return TypeExp::empty;
}
InterfaceDecl* findParentInterfaceDecl(Decl* decl)
{
auto ancestor = decl->parentDecl;
for (; ancestor; ancestor = ancestor->parentDecl)
{
if (auto interfaceDecl = as<InterfaceDecl>(ancestor))
return interfaceDecl;
if (as<ExtensionDecl>(ancestor))
return nullptr;
}
return nullptr;
}
bool isInterfaceRequirement(Decl* decl)
{
auto ancestor = decl->parentDecl;
for (; ancestor; ancestor = ancestor->parentDecl)
{
if (as<InterfaceDecl>(ancestor))
return true;
if (as<ExtensionDecl>(ancestor))
return false;
}
return false;
}
void ContainerDecl::buildMemberDictionary()
{
// Don't rebuild if already built
if (isMemberDictionaryValid())
return;
// If it's < 0 it means that the dictionaries are entirely invalid
if (dictionaryLastCount < 0)
{
dictionaryLastCount = 0;
memberDictionary.clear();
transparentMembers.clear();
}
// are we a generic?
GenericDecl* genericDecl = as<GenericDecl>(this);
const Index membersCount = members.getCount();
SLANG_ASSERT(dictionaryLastCount >= 0 && dictionaryLastCount <= membersCount);
for (Index i = dictionaryLastCount; i < membersCount; ++i)
{
Decl* m = members[i];
auto name = m->getName();
// Add any transparent members to a separate list for lookup
if (m->hasModifier<TransparentModifier>())
{
TransparentMemberInfo info;
info.decl = m;
transparentMembers.add(info);
}
// Ignore members with no name
if (!name)
continue;
// Ignore the "inner" member of a generic declaration
if (genericDecl && m == genericDecl->inner)
continue;
m->nextInContainerWithSameName = nullptr;
Decl* next = nullptr;
if (memberDictionary.tryGetValue(name, next))
m->nextInContainerWithSameName = next;
memberDictionary[name] = m;
}
dictionaryLastCount = membersCount;
SLANG_ASSERT(isMemberDictionaryValid());
}
} // namespace Slang
|