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
|
// slang-ast-print.cpp
#include "slang-ast-print.h"
#include "slang-check-impl.h"
namespace Slang {
ASTPrinter::Part::Kind ASTPrinter::Part::getKind(ASTPrinter::Part::Type type)
{
typedef ASTPrinter::Part::Kind Kind;
typedef ASTPrinter::Part::Type Type;
switch (type)
{
case Type::ParamType: return Kind::Type;
case Type::ParamName: return Kind::Name;
case Type::ReturnType: return Kind::Type;
case Type::DeclPath: return Kind::Name;
case Type::GenericParamType: return Kind::Type;
case Type::GenericParamValue: return Kind::Value;
case Type::GenericParamValueType: return Kind::Type;
default: break;
}
return Kind::None;
}
void ASTPrinter::addType(Type* type)
{
type->toText(m_builder);
}
void ASTPrinter::addVal(Val* val)
{
val->toText(m_builder);
}
/* static */void ASTPrinter::appendDeclName(Decl* decl, StringBuilder& out)
{
if (as<ConstructorDecl>(decl))
{
out << "init";
}
else if (as<SubscriptDecl>(decl))
{
out << "subscript";
}
else
{
out << getText(decl->getName());
}
}
void ASTPrinter::_addDeclName(Decl* decl)
{
appendDeclName(decl, m_builder);
}
void ASTPrinter::addOverridableDeclPath(const DeclRef<Decl>& declRef)
{
ScopePart scopePart(this, Part::Type::DeclPath);
_addDeclPathRec(declRef, 0);
}
void ASTPrinter::addDeclPath(const DeclRef<Decl>& declRef)
{
ScopePart scopePart(this, Part::Type::DeclPath);
_addDeclPathRec(declRef, 1);
}
void ASTPrinter::_addDeclPathRec(const DeclRef<Decl>& declRef, Index depth)
{
auto& sb = m_builder;
// Find the parent declaration
auto parentDeclRef = declRef.getParent();
// If the immediate parent is a generic, then we probably
// want the declaration above that...
auto parentGenericDeclRef = parentDeclRef.as<GenericDecl>();
if (parentGenericDeclRef)
{
parentDeclRef = parentGenericDeclRef.getParent();
}
// Depending on what the parent is, we may want to format things specially
if (auto aggTypeDeclRef = parentDeclRef.as<AggTypeDecl>())
{
_addDeclPathRec(aggTypeDeclRef, depth + 1);
sb << toSlice(".");
}
else if (auto namespaceDeclRef = parentDeclRef.as<NamespaceDecl>())
{
_addDeclPathRec(namespaceDeclRef, depth + 1);
// Hmm, it could be argued that we follow the . as seen in AggType as is followed in some other languages
// like Java.
// That it is useful to have a distinction between something that is a member/method and something that is
// in a scope (such as a namespace), and is something that has returned to later languages probably for that
// reason (Slang accepts . or ::). So for now this is follows the :: convention.
//
// It could be argued them that the previous '.' use should vary depending on that distinction.
sb << toSlice("::");
}
else if (auto extensionDeclRef = parentDeclRef.as<ExtensionDecl>())
{
ExtensionDecl* extensionDecl = as<ExtensionDecl>(parentDeclRef.getDecl());
Type* type = extensionDecl->targetType.type;
addType(type);
sb << toSlice(".");
}
else if (auto moduleDecl = as<ModuleDecl>(parentDeclRef.getDecl()))
{
Name* moduleName = moduleDecl->getName();
if ((m_optionFlags & OptionFlag::ModuleName) && moduleName)
{
// Use to say in modules scope
sb << moduleName->text << toSlice("::");
}
}
// If this decl is the module, we only output it's name if that feature is enabled
if (ModuleDecl* moduleDecl = as<ModuleDecl>(declRef.getDecl()))
{
Name* moduleName = moduleDecl->getName();
if ((m_optionFlags & OptionFlag::ModuleName) && moduleName)
{
sb << moduleName->text;
}
return;
}
_addDeclName(declRef.getDecl());
// If the parent declaration is a generic, then we need to print out its
// signature
if (parentGenericDeclRef)
{
auto genSubst = as<GenericSubstitution>(declRef.substitutions.substitutions);
if (genSubst)
{
SLANG_RELEASE_ASSERT(genSubst);
SLANG_RELEASE_ASSERT(genSubst->genericDecl == parentGenericDeclRef.getDecl());
// If the name we printed previously was an operator
// that ends with `<`, then immediately printing the
// generic arguments inside `<...>` may cause it to
// be hard to parse the operator name visually.
//
// We thus include a space between the declaration name
// and its generic arguments in this case.
//
if (sb.endsWith("<"))
{
sb << " ";
}
sb << "<";
bool first = true;
for (auto arg : genSubst->args)
{
// When printing the representation of a specialized
// generic declaration we don't want to include the
// argument values for subtype witnesses since these
// do not correspond to parameters of the generic
// as the user sees it.
//
if (as<Witness>(arg))
continue;
if (!first) sb << ", ";
addVal(arg);
first = false;
}
sb << ">";
}
else if (depth > 0)
{
// Write out the generic parameters (only if the depth allows it)
addGenericParams(parentGenericDeclRef);
}
}
}
void ASTPrinter::addGenericParams(const DeclRef<GenericDecl>& genericDeclRef)
{
auto& sb = m_builder;
sb << "<";
bool first = true;
for (auto paramDeclRef : getMembers(genericDeclRef))
{
if (auto genericTypeParam = paramDeclRef.as<GenericTypeParamDecl>())
{
if (!first) sb << ", ";
first = false;
{
ScopePart scopePart(this, Part::Type::GenericParamType);
sb << getText(genericTypeParam.getName());
}
}
else if (auto genericValParam = paramDeclRef.as<GenericValueParamDecl>())
{
if (!first) sb << ", ";
first = false;
{
ScopePart scopePart(this, Part::Type::GenericParamValue);
sb << getText(genericValParam.getName());
}
sb << ":";
{
ScopePart scopePart(this, Part::Type::GenericParamValueType);
addType(getType(m_astBuilder, genericValParam));
}
}
else
{
}
}
sb << ">";
}
void ASTPrinter::addDeclParams(const DeclRef<Decl>& declRef)
{
auto& sb = m_builder;
if (auto funcDeclRef = declRef.as<CallableDecl>())
{
// This is something callable, so we need to also print parameter types for overloading
sb << "(";
bool first = true;
for (auto paramDeclRef : getParameters(funcDeclRef))
{
if (!first) sb << ", ";
ParamDecl* paramDecl = paramDeclRef;
{
ScopePart scopePart(this, Part::Type::ParamType);
// Seems these apply to parameters/VarDeclBase and are not part of the 'type'
// but seems more appropriate to put in the Type Part
if (paramDecl->hasModifier<InOutModifier>())
{
sb << toSlice("inout ");
}
else if (paramDecl->hasModifier<OutModifier>())
{
sb << toSlice("out ");
}
else if (paramDecl->hasModifier<InModifier>())
{
sb << toSlice("in ");
}
// And this to params/variables (not the type)
if (paramDecl->hasModifier<ConstModifier>())
{
sb << toSlice("const ");
}
addType(getType(m_astBuilder, paramDeclRef));
}
// Output the parameter name if there is one, and it's enabled in the options
if (m_optionFlags & OptionFlag::ParamNames && paramDecl->getName())
{
sb << " ";
{
ScopePart scopePart(this, Part::Type::ParamName);
sb << paramDecl->getName()->text;
}
}
first = false;
}
sb << ")";
}
else if (auto genericDeclRef = declRef.as<GenericDecl>())
{
addGenericParams(genericDeclRef);
addDeclParams(DeclRef<Decl>(getInner(genericDeclRef), genericDeclRef.substitutions));
}
else
{
}
}
void ASTPrinter::addDeclKindPrefix(Decl* decl)
{
if (auto genericDecl = as<GenericDecl>(decl))
{
decl = genericDecl->inner;
}
if (as<FuncDecl>(decl))
{
m_builder << "func ";
}
}
void ASTPrinter::addDeclResultType(const DeclRef<Decl>& inDeclRef)
{
DeclRef<Decl> declRef = inDeclRef;
if (auto genericDeclRef = declRef.as<GenericDecl>())
{
declRef = DeclRef<Decl>(getInner(genericDeclRef), genericDeclRef.substitutions);
}
if (as<ConstructorDecl>(declRef))
{
}
else if (auto callableDeclRef = declRef.as<CallableDecl>())
{
m_builder << " -> ";
{
ScopePart scopePart(this, Part::Type::ReturnType);
addType(getResultType(m_astBuilder, callableDeclRef));
}
}
}
/* static */void ASTPrinter::addDeclSignature(const DeclRef<Decl>& declRef)
{
addDeclKindPrefix(declRef.getDecl());
addDeclPath(declRef);
addDeclParams(declRef);
addDeclResultType(declRef);
}
/* static */String ASTPrinter::getDeclSignatureString(DeclRef<Decl> declRef, ASTBuilder* astBuilder)
{
ASTPrinter astPrinter(astBuilder);
astPrinter.addDeclSignature(declRef);
return astPrinter.getString();
}
/* static */String ASTPrinter::getDeclSignatureString(const LookupResultItem& item, ASTBuilder* astBuilder)
{
return getDeclSignatureString(item.declRef, astBuilder);
}
/* static */UnownedStringSlice ASTPrinter::getPart(Part::Type partType, const UnownedStringSlice& slice, const List<Part>& parts)
{
const Index index = parts.findFirstIndex([&](const Part& part) -> bool { return part.type == partType; });
return index >= 0 ? getPart(slice, parts[index]) : UnownedStringSlice();
}
UnownedStringSlice ASTPrinter::getPartSlice(Part::Type partType) const
{
return m_parts ? getPart(partType, getSlice(), *m_parts) : UnownedStringSlice();
}
} // namespace Slang
|