-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSemanticModel.cs
441 lines (390 loc) · 17.2 KB
/
SemanticModel.cs
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
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Draco.Compiler.Api.Diagnostics;
using Draco.Compiler.Api.Syntax;
using Draco.Compiler.Api.Syntax.Extensions;
using Draco.Compiler.Internal.Binding;
using Draco.Compiler.Internal.BoundTree;
using Draco.Compiler.Internal.Diagnostics;
using Draco.Compiler.Internal.Symbols;
using Draco.Compiler.Internal.Symbols.Source;
using Draco.Compiler.Internal.Symbols.Syntax;
using Draco.Compiler.Internal.Utilities;
namespace Draco.Compiler.Api.Semantics;
/// <summary>
/// The semantic model of a subtree.
/// </summary>
public sealed partial class SemanticModel : IBinderProvider
{
/// <summary>
/// The the tree that the semantic model is for.
/// </summary>
public SyntaxTree Tree { get; }
/// <summary>
/// All <see cref="Diagnostic"/>s in this model.
/// </summary>
public ImmutableArray<Diagnostic> Diagnostics =>
InterlockedUtils.InitializeDefault(ref this.diagnostics, () => this.GetDiagnostics());
private ImmutableArray<Diagnostic> diagnostics;
internal DiagnosticBag DiagnosticBag { get; } = new ConcurrentDiagnosticBag();
DiagnosticBag IBinderProvider.DiagnosticBag => this.DiagnosticBag;
private readonly Compilation compilation;
// Filled out by incremental binding
private readonly ConcurrentDictionary<SyntaxFunctionSymbol, BoundStatement> boundFunctions = new();
private readonly ConcurrentDictionary<SyntaxFieldSymbol, GlobalBinding> boundGlobals = new();
private readonly ConcurrentDictionary<SyntaxNode, BoundNode> boundNodeMap = new();
private readonly ConcurrentDictionary<SyntaxNode, Symbol> symbolMap = new();
internal SemanticModel(Compilation compilation, SyntaxTree tree)
{
this.Tree = tree;
this.compilation = compilation;
}
/// <summary>
/// Retrieves all <see cref="Diagnostic"/>s on <see cref="Tree"/>.
/// </summary>
/// <param name="span">The span to retrieve the diagnostics in. If null, it retrieves all diagnostics
/// regardless of the location.</param>
/// <returns>All <see cref="Diagnostic"/>s for <see cref="Tree"/>.</returns>
private ImmutableArray<Diagnostic> GetDiagnostics(SourceSpan? span = null)
{
var syntaxNodes = span is null
? this.Tree.Root.PreOrderTraverse()
: this.Tree.Root.TraverseIntersectingSpan(span.Value);
var addedImportBinders = new HashSet<ImportBinder>();
foreach (var syntaxNode in syntaxNodes)
{
// Add syntax diagnostics
var syntaxDiagnostics = this.Tree.SyntaxDiagnosticTable.Get(syntaxNode);
this.DiagnosticBag.AddRange(syntaxDiagnostics);
// Get the symbol this embodies
var binder = this.GetBinder(syntaxNode);
var containingSymbol = binder.ContainingSymbol as ISourceSymbol;
// We want exact syntax matches to avoid duplication
// This is a cheap way to not to attempt finding a function symbol from its body
// and from its signature
switch (syntaxNode)
{
case CompilationUnitSyntax:
case FunctionDeclarationSyntax:
case ScriptEntrySyntax:
{
containingSymbol?.Bind(this);
break;
}
case VariableDeclarationSyntax varDecl when varDecl.FieldModifier is null:
{
// We need to search for this global
var globalSymbol = binder.ContainingSymbol?.Members
.OfType<SyntaxAutoPropertySymbol>()
.FirstOrDefault(s => s.Name == varDecl.Name.Text);
globalSymbol?.Bind(this);
break;
}
case VariableDeclarationSyntax varDecl when varDecl.FieldModifier is not null:
{
// We need to search for this global
var globalSymbol = binder.ContainingSymbol?.Members
.OfType<SyntaxFieldSymbol>()
.FirstOrDefault(s => s.Name == varDecl.Name.Text);
globalSymbol?.Bind(this);
break;
}
case ImportDeclarationSyntax:
{
// We get the binder, and if this binder wasn't added yet, we add its import errors
var importBinder = this.GetImportBinder(syntaxNode);
if (addedImportBinders.Add(importBinder))
{
// New binder, add errors
// First, enforce binding
_ = importBinder.ImportItems;
this.DiagnosticBag.AddRange(importBinder.ImportDiagnostics);
}
break;
}
}
}
return [.. this.DiagnosticBag];
}
/// <summary>
/// Retrieves all <see cref="ISymbol"/>s accesible from given <paramref name="node"/>.
/// </summary>
/// <param name="node">The <see cref="SyntaxNode"/> from which to start looking for declared symbols.</param>
/// <returns>All the <see cref="ISymbol"/>s accesible from the <paramref name="node"/>.</returns>
public ImmutableArray<ISymbol> GetAllAccessibleSymbols(SyntaxNode? node)
{
var startBinder = this.compilation.GetBinder(node ?? this.Tree.Root);
var result = new SymbolCollectionBuilder() { VisibleFrom = startBinder.ContainingSymbol };
foreach (var binder in startBinder.AncestorChain)
{
result.AddRange(binder.DeclaredSymbols);
}
return result
.EnumerateResult()
.Select(s => s.ToApiSymbol())
.ToImmutableArray();
}
/// <summary>
/// Retrieves the <see cref="ISymbol"/> declared by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The tree that is asked for the defined <see cref="ISymbol"/>.</param>
/// <returns>The defined <see cref="ISymbol"/> by <paramref name="syntax"/>, or null if it does not
/// declared any.</returns>
public ISymbol? GetDeclaredSymbol(SyntaxNode syntax) => this
.GetDeclaredSymbolInternal(syntax)
?.ToApiSymbol();
internal Symbol? GetDeclaredSymbolInternal(SyntaxNode syntax)
{
if (this.symbolMap.TryGetValue(syntax, out var existing)) return existing;
// Get enclosing context
var binder = this.GetBinder(syntax);
var containingSymbol = binder.ContainingSymbol;
switch (containingSymbol)
{
case SyntaxFunctionSymbol func:
{
// This is just the function itself
if (func.DeclaringSyntax == syntax) return containingSymbol;
// Could be a generic parameter
if (syntax is GenericParameterSyntax genericParam)
{
var paramSymbol = containingSymbol.GenericParameters
.FirstOrDefault(p => p.DeclaringSyntax == syntax);
return paramSymbol;
}
// Bind the function contents
func.Bind(this);
// Look up inside the binder
var symbol = binder.DeclaredSymbols
.SingleOrDefault(sym => sym.DeclaringSyntax == syntax);
return symbol;
}
case SourceModuleSymbol module:
{
// The module itself
if (module.DeclaringSyntaxes.Contains(syntax)) return containingSymbol;
// Just search for the corresponding syntax
var symbol = module.Members
.SingleOrDefault(sym => sym.DeclaringSyntax == syntax);
return symbol;
}
case SourceClassSymbol classSymbol:
{
// Could be the class itself
if (classSymbol.DeclaringSyntax == syntax) return containingSymbol;
// Search for the corresponding syntax
var symbol = classSymbol.Members
.SingleOrDefault(sym => sym.DeclaringSyntax == syntax);
return symbol;
}
default:
return null;
}
}
/// <summary>
/// Retrieves the <see cref="ISymbol"/> referenced by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The tree that is asked for the referenced <see cref="ISymbol"/>.</param>
/// <returns>The referenced <see cref="ISymbol"/> by <paramref name="syntax"/>, or null
/// if it does not reference any.</returns>
public ISymbol? GetReferencedSymbol(SyntaxNode syntax) => this
.GetReferencedSymbolInternal(syntax)
?.ToApiSymbol();
internal Symbol? GetReferencedSymbolInternal(SyntaxNode syntax)
{
// If it's a token, we assume it's wrapped in a more sensible syntax node
if (syntax is SyntaxToken token && token.Parent is not null)
{
return this.GetReferencedSymbolInternal(token.Parent);
}
if (syntax is ImportPathSyntax)
{
// Imports are special, we need to search in the binder
var importBinder = this.GetImportBinder(syntax);
var importItems = importBinder.ImportItems;
var importSyntax = GetImportSyntax(syntax);
// Search for the import item
var importItem = importItems.SingleOrDefault(i => i.Syntax == importSyntax);
// Not found in item
if (importItem is null) return null;
// Search for path element
// NOTE: Yes, this could be simplified to a SingleOrDefault to a predicate,
// but the default for a KeyValuePair is not nullable, so a null-warn would be swallowed
// Decided to write it this way, in case the code gets shuffled around later
var pathSymbol = importItem.Path
.Where(i => i.Key == syntax)
.Select(i => i.Value)
.SingleOrDefault();
// Not found in path
if (pathSymbol is null) return null;
return pathSymbol;
}
if (this.symbolMap.TryGetValue(syntax, out var existing)) return existing;
// Get enclosing context
var binder = this.GetBinder(syntax);
var containingSymbol = binder.ContainingSymbol;
// Source containers need to get bound
if (containingSymbol is ISourceSymbol sourceSymbol)
{
sourceSymbol.Bind(this);
foreach (var nested in containingSymbol.Members.OfType<ISourceSymbol>()) nested.Bind(this);
}
// Attempt to retrieve
this.symbolMap.TryGetValue(syntax, out var symbol);
if (symbol is null)
{
// Apply some fallback strategies
// Resolve calls to a function
if (syntax is NameExpressionSyntax name)
{
// If it's a method of a call, we want the method referenced by the call instead
var called = syntax;
if (name.Parent is GenericExpressionSyntax generic && generic.Instantiated.Equals(called))
{
called = generic;
}
if (called.Parent is CallExpressionSyntax call && call.Function.Equals(called))
{
// This is a call, we want the function
return this.GetReferencedSymbolInternal(call);
}
}
}
return symbol;
}
private ImportBinder GetImportBinder(SyntaxNode syntax) => this.compilation
.GetBinder(syntax)
.AncestorChain
.OfType<ImportBinder>()
.First();
/// <summary>
/// Retrieves the type of the expression represented by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The expression that the type will be checked of.</param>
/// <returns>The <see cref="ITypeSymbol"/> that <paramref name="syntax"/> will evaluate to,
/// or null if it does not evaluate to a value with type.</returns>
public ITypeSymbol? TypeOf(ExpressionSyntax syntax) => this.TypeOfInternal(syntax)?.ToApiSymbol();
/// <summary>
/// Retrieves the type of the expression represented by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The expression that the type will be checked of.</param>
/// <returns>The <see cref="TypeSymbol"/> that <paramref name="syntax"/> will evaluate to,
/// or null if it does not evaluate to a value with type.</returns>
internal Internal.Symbols.TypeSymbol? TypeOfInternal(ExpressionSyntax syntax)
{
if (this.TryGetBoundNode(syntax, out var existing))
{
return (existing as BoundExpression)?.Type;
}
// NOTE: Very similar logic to GetReferencedSymbol, maybe factor out?
// Get enclosing context
var binder = this.GetBinder(syntax);
var containingSymbol = binder.ContainingSymbol;
// Source containers need to get bound
if (containingSymbol is ISourceSymbol sourceSymbol) sourceSymbol.Bind(this);
// Attempt to retrieve
this.TryGetBoundNode(syntax, out var node);
return (node as BoundExpression)?.Type;
}
private bool TryGetBoundNode(SyntaxNode syntax, [MaybeNullWhen(false)] out BoundNode node) =>
this.boundNodeMap.TryGetValue(syntax, out node);
/// <summary>
/// Retrieves the function overloads referenced by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The tree that is asked for the referenced overloads.</param>
/// <returns>The referenced overloads by <paramref name="syntax"/>, or empty array
/// if it does not reference any.</returns>
public ImmutableArray<IFunctionSymbol> GetReferencedOverloads(ExpressionSyntax syntax) => this
.GetReferencedOverloadsInternal(syntax)
.Select(s => s.ToApiSymbol())
.ToImmutableArray();
/// <summary>
/// Retrieves the function overloads referenced by <paramref name="syntax"/>.
/// </summary>
/// <param name="syntax">The tree that is asked for the referenced overloads.</param>
/// <returns>The referenced overloads by <paramref name="syntax"/>, or empty array
/// if it does not reference any.</returns>
internal ImmutableArray<Internal.Symbols.FunctionSymbol> GetReferencedOverloadsInternal(ExpressionSyntax syntax)
{
var startBinder = this.compilation.GetBinder(syntax);
var result = new SymbolCollectionBuilder() { VisibleFrom = startBinder.ContainingSymbol };
// NOTE: Duplication with MemberCompletionProvider
if (syntax is MemberExpressionSyntax member)
{
var receiverSymbol = this.GetReferencedSymbolInternal(member.Accessed);
// NOTE: This is how we check for static access
if (receiverSymbol?.IsDotnetType == true)
{
result.AddRange(receiverSymbol.StaticMembers.Where(m => m.Name == member.Member.Text));
}
else
{
// Assume instance access
var receiverType = this.TypeOfInternal(member.Accessed);
if (receiverType is not null)
{
result.AddRange(receiverType.InstanceMembers.Where(m => m.Name == member.Member.Text));
}
}
}
else
{
// We look up syntax based on the symbol in context
foreach (var binder in startBinder.AncestorChain)
{
var symbols = binder.DeclaredSymbols
.Where(x => x is Internal.Symbols.FunctionSymbol
&& x.Name == syntax.ToString());
result.AddRange(symbols);
}
}
if (result.Count == 0) return [];
if (result.Count == 1)
{
// Just a single method added
var function = result
.EnumerateResult()
.Cast<Internal.Symbols.FunctionSymbol>()
.Single();
return [function];
}
else
{
// It's a set of overloads grouped under a single name
var group = result
.EnumerateResult()
.Cast<Internal.Symbols.Synthetized.FunctionGroupSymbol>()
.Single();
return group.Functions;
}
}
/// <summary>
/// Retrieves the symbol that <paramref name="syntax"/> is bound inside of.
/// </summary>
/// <param name="syntax">The syntax node to get the binding symbol of.</param>
/// <returns>The symbol that <paramref name="syntax"/> is bound inside of.</returns>
internal Symbol? GetBindingSymbol(SyntaxNode syntax) => this.GetBinder(syntax).ContainingSymbol;
private IncrementalBinder GetBinder(SyntaxNode syntax)
{
var binder = this.compilation.GetBinder(syntax);
return new(binder, this);
}
private IncrementalBinder GetBinder(Symbol symbol)
{
var binder = this.compilation.GetBinder(symbol);
return new(binder, this);
}
Binder IBinderProvider.GetBinder(SyntaxNode syntax) => this.GetBinder(syntax);
Binder IBinderProvider.GetBinder(Symbol symbol) => this.GetBinder(symbol);
private static ImportDeclarationSyntax GetImportSyntax(SyntaxNode syntax)
{
while (true)
{
if (syntax is ImportDeclarationSyntax decl) return decl;
syntax = syntax.Parent!;
}
}
}