-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathInteropGeneratorEmitState.cs
More file actions
398 lines (352 loc) · 17 KB
/
Copy pathInteropGeneratorEmitState.cs
File metadata and controls
398 lines (352 loc) · 17 KB
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using AsmResolver.DotNet;
using AsmResolver.DotNet.Code.Cil;
using AsmResolver.DotNet.Signatures;
using AsmResolver.PE.DotNet.Cil;
using WindowsRuntime.Generator;
using WindowsRuntime.InteropGenerator.Errors;
using WindowsRuntime.InteropGenerator.Models;
#pragma warning disable IDE0046
namespace WindowsRuntime.InteropGenerator.Generation;
/// <summary>
/// Global state tracking type for <see cref="InteropGenerator"/>, specifically for the emit phase.
/// </summary>
internal sealed class InteropGeneratorEmitState
{
/// <summary>
/// A map to provide fast lookup for generated types that need to be referenced in different parts of the emit phase.
/// </summary>
private readonly ConcurrentDictionary<string, ConcurrentDictionary<TypeSignature, TypeDefinition>> _typeDefinitionLookup = [];
/// <summary>
/// A map to provide fast lookup for generated methods that need to be referenced in different parts of the emit phase.
/// </summary>
private readonly ConcurrentDictionary<string, ConcurrentDictionary<TypeSignature, MethodDefinition>> _methodDefinitionLookup = [];
/// <summary>
/// The collection of method rewrite infos to process for two-pass code generation.
/// </summary>
private readonly ConcurrentBag<MethodRewriteInfo> _methodRewriteInfos = [];
/// <summary>
/// A map to allow reusing vtable types for applicable <c>IMapView<K, V></c> interfaces.
/// </summary>
private readonly ConcurrentDictionary<TypeSignature, TypeDefinition> _mapViewVftblTypes = new(SignatureComparer.IgnoreVersion);
/// <summary>
/// A map to allow reusing vtable types for applicable <c>IMap<K, V></c> interfaces.
/// </summary>
private readonly ConcurrentDictionary<(TypeSignature Key, TypeSignature Value), TypeDefinition> _mapVftblTypes = new(SignatureComparer.IgnoreVersion.MakeValueTupleComparer());
/// <summary>
/// A map to allow reusing vtable types for applicable <c>IDelegate</c> interfaces.
/// </summary>
private readonly ConcurrentDictionary<(TypeSignature Sender, TypeSignature Args), TypeDefinition> _delegateVftblTypes = new(SignatureComparer.IgnoreVersion.MakeValueTupleComparer());
/// <summary>
/// Indicates whether the current state is readonly.
/// </summary>
private volatile bool _isReadOnly;
/// <summary>
/// Tracks a new type generation for a given signature and key, for fast lookup.
/// </summary>
/// <param name="typeDefinition">The <see cref="TypeDefinition"/> to track.</param>
/// <param name="typeSignature">The <see cref="TypeSignature"/> associated with <paramref name="typeDefinition"/>.</param>
/// <param name="key">The key for <paramref name="typeDefinition"/>.</param>
public void TrackTypeDefinition(TypeDefinition typeDefinition, TypeSignature typeSignature, string key)
{
ThrowIfReadOnly();
ConcurrentDictionary<TypeSignature, TypeDefinition> innerLookup = _typeDefinitionLookup.GetOrAdd(
key: key,
valueFactory: static _ => new ConcurrentDictionary<TypeSignature, TypeDefinition>(SignatureComparer.IgnoreVersion));
if (!innerLookup.TryAdd(typeSignature, typeDefinition))
{
throw WellKnownInteropExceptions.AddingDuplicateTrackedTypeDefinition(typeSignature, key);
}
}
/// <summary>
/// Looks up a type definition previously registered with <see cref="TrackTypeDefinition"/>.
/// </summary>
/// <param name="typeSignature">The <see cref="TypeSignature"/> to use for lookup.</param>
/// <param name="key">The key to use for lookup.</param>
/// <returns>The resulting <see cref="TypeDefinition"/> instance.</returns>
public TypeDefinition LookupTypeDefinition(TypeSignature typeSignature, string key)
{
if (_typeDefinitionLookup.TryGetValue(key, out ConcurrentDictionary<TypeSignature, TypeDefinition>? innerLookup) &&
innerLookup.TryGetValue(typeSignature, out TypeDefinition? typeDefinition))
{
return typeDefinition;
}
throw WellKnownInteropExceptions.TrackedTypeDefinitionLookupError(typeSignature, key);
}
/// <summary>
/// Tracks a new method generation for a given signature and key, for fast lookup.
/// </summary>
/// <param name="methodDefinition">The <see cref="MethodDefinition"/> to track.</param>
/// <param name="typeSignature">The <see cref="TypeSignature"/> associated with <paramref name="methodDefinition"/>.</param>
/// <param name="key">The key for <paramref name="methodDefinition"/>.</param>
public void TrackMethodDefinition(MethodDefinition methodDefinition, TypeSignature typeSignature, string key)
{
ThrowIfReadOnly();
ConcurrentDictionary<TypeSignature, MethodDefinition> innerLookup = _methodDefinitionLookup.GetOrAdd(
key: key,
valueFactory: static _ => new ConcurrentDictionary<TypeSignature, MethodDefinition>(SignatureComparer.IgnoreVersion));
if (!innerLookup.TryAdd(typeSignature, methodDefinition))
{
throw WellKnownInteropExceptions.AddingDuplicateTrackedMethodDefinition(typeSignature, key);
}
}
/// <summary>
/// Looks up a method definition previously registered with <see cref="TrackMethodDefinition"/>.
/// </summary>
/// <param name="typeSignature">The <see cref="TypeSignature"/> to use for lookup.</param>
/// <param name="key">The key to use for lookup.</param>
/// <returns>The resulting <see cref="MethodDefinition"/> instance.</returns>
public MethodDefinition LookupMethodDefinition(TypeSignature typeSignature, string key)
{
if (_methodDefinitionLookup.TryGetValue(key, out ConcurrentDictionary<TypeSignature, MethodDefinition>? innerLookup) &&
innerLookup.TryGetValue(typeSignature, out MethodDefinition? methodDefinition))
{
return methodDefinition;
}
throw WellKnownInteropExceptions.TrackedMethodDefinitionLookupError(typeSignature, key);
}
/// <summary>
/// Tracks a method rewrite that involves returning a value from the specified method at a given marker instruction.
/// </summary>
/// <param name="returnType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
/// <param name="source"><inheritdoc cref="MethodRewriteInfo.ReturnValue.Source" path="/node()"/></param>
public void TrackReturnValueMethodRewrite(
TypeSignature returnType,
MethodDefinition method,
CilInstruction marker,
CilLocalVariable source)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.ReturnValue
{
Type = returnType,
Method = method,
Marker = marker,
Source = source
});
}
/// <summary>
/// Tracks a method rewrite that involves returning a native value from the specified method.
/// </summary>
/// <param name="retValType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
public void TrackRetValValueMethodRewrite(
TypeSignature retValType,
MethodDefinition method,
CilInstruction marker)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.RetVal
{
Type = retValType,
Method = method,
Marker = marker
});
}
/// <summary>
/// Tracks a method rewrite that involves emitting direct calls to <c>ConvertToUnmanaged</c> in the specified method.
/// </summary>
/// <param name="parameterType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
public void TrackRawRetValMethodRewrite(
TypeSignature parameterType,
MethodDefinition method,
CilInstruction marker)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.RawRetVal
{
Type = parameterType,
Method = method,
Marker = marker
});
}
/// <summary>
/// Tracks a method rewrite that involves loading a managed parameter in the specified method.
/// </summary>
/// <param name="parameterType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
/// <param name="parameterIndex"><inheritdoc cref="MethodRewriteInfo.ManagedParameter.ParameterIndex" path="/node()"/></param>
public void TrackManagedParameterMethodRewrite(
TypeSignature parameterType,
MethodDefinition method,
CilInstruction marker,
int parameterIndex)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.ManagedParameter
{
Type = parameterType,
Method = method,
Marker = marker,
ParameterIndex = parameterIndex
});
}
/// <summary>
/// Tracks a method rewrite that involves marshalling a managed value in the specified method.
/// </summary>
/// <param name="parameterType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
public void TrackManagedValueMethodRewrite(
TypeSignature parameterType,
MethodDefinition method,
CilInstruction marker)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.ManagedValue
{
Type = parameterType,
Method = method,
Marker = marker
});
}
/// <summary>
/// Tracks a method rewrite that involves loading a native parameter in the specified method.
/// </summary>
/// <param name="parameterType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="tryMarker"><inheritdoc cref="MethodRewriteInfo.NativeParameter.TryMarker" path="/node()"/></param>
/// <param name="loadMarker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
/// <param name="finallyMarker"><inheritdoc cref="MethodRewriteInfo.NativeParameter.FinallyMarker" path="/node()"/></param>
/// <param name="parameterIndex"><inheritdoc cref="MethodRewriteInfo.NativeParameter.ParameterIndex" path="/node()"/></param>
public void TrackNativeParameterMethodRewrite(
TypeSignature parameterType,
MethodDefinition method,
CilInstruction tryMarker,
CilInstruction loadMarker,
CilInstruction finallyMarker,
int parameterIndex)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.NativeParameter
{
Type = parameterType,
Method = method,
TryMarker = tryMarker,
Marker = loadMarker,
FinallyMarker = finallyMarker,
ParameterIndex = parameterIndex
});
}
/// <summary>
/// Tracks a method rewrite that involves emitting calls to dispose (or release) a given value in the specified method.
/// </summary>
/// <param name="parameterType"><inheritdoc cref="MethodRewriteInfo.Type" path="/node()"/></param>
/// <param name="method"><inheritdoc cref="MethodRewriteInfo.Method" path="/node()"/></param>
/// <param name="marker"><inheritdoc cref="MethodRewriteInfo.Marker" path="/node()"/></param>
public void TrackDisposeRewrite(
TypeSignature parameterType,
MethodDefinition method,
CilInstruction marker)
{
ThrowIfReadOnly();
_methodRewriteInfos.Add(new MethodRewriteInfo.Dispose
{
Type = parameterType,
Method = method,
Marker = marker
});
}
/// <summary>
/// Enumerates all <see cref="MethodRewriteInfo"/> instances with info on two-pass code generation steps to perform.
/// </summary>
/// <returns>The <see cref="MethodRewriteInfo"/> instances to process.</returns>
public IEnumerable<MethodRewriteInfo> EnumerateMethodRewriteInfos()
{
return _methodRewriteInfos;
}
/// <summary>
/// Tries to get a previously registered vtable type for an <c>IMapView<K, V></c> interface.
/// </summary>
/// <param name="keyType">The key type.</param>
/// <param name="vftblType">The resulting vtable type, if present.</param>
/// <returns>Whether <paramref name="vftblType"/> was successfully retrieved.</returns>
public bool TryGetIMapView2VftblType(TypeSignature keyType, [NotNullWhen(true)] out TypeDefinition? vftblType)
{
return _mapViewVftblTypes.TryGetValue(keyType, out vftblType);
}
/// <summary>
/// Gets or adds a vtable type for an <c>IMapView<K, V></c> interface.
/// </summary>
/// <param name="keyType">The key type.</param>
/// <param name="vftblType">The created vtable type for <paramref name="keyType"/>.</param>
/// <returns>The vtable type that should be used.</returns>
public TypeDefinition GetOrAddIMapView2VftblType(TypeSignature keyType, TypeDefinition vftblType)
{
ThrowIfReadOnly();
return _mapViewVftblTypes.GetOrAdd(keyType, vftblType);
}
/// <summary>
/// Tries to get a previously registered vtable type for an <c>IMap<K, V></c> interface.
/// </summary>
/// <param name="keyType">The key type.</param>
/// <param name="valueType">The value type.</param>
/// <param name="vftblType">The resulting vtable type, if present.</param>
/// <returns>Whether <paramref name="vftblType"/> was successfully retrieved.</returns>
public bool TryGetIMap2VftblType(TypeSignature keyType, TypeSignature valueType, [NotNullWhen(true)] out TypeDefinition? vftblType)
{
return _mapVftblTypes.TryGetValue((keyType, valueType), out vftblType);
}
/// <summary>
/// Gets or adds a vtable type for an <c>IMap<K, V></c> interface.
/// </summary>
/// <param name="keyType">The key type.</param>
/// <param name="valueType">The value type.</param>
/// <param name="vftblType">The created vtable type for <paramref name="keyType"/>.</param>
/// <returns>The vtable type that should be used.</returns>
public TypeDefinition GetOrAddIMap2VftblType(TypeSignature keyType, TypeSignature valueType, TypeDefinition vftblType)
{
ThrowIfReadOnly();
return _mapVftblTypes.GetOrAdd((keyType, valueType), vftblType);
}
/// <summary>
/// Tries to get a previously registered vtable type for an <c>IDelegate</c> interface.
/// </summary>
/// <param name="senderType">The sender type.</param>
/// <param name="argsType">The args type.</param>
/// <param name="vftblType">The resulting vtable type, if present.</param>
/// <returns>Whether <paramref name="vftblType"/> was successfully retrieved.</returns>
public bool TryGetDelegateVftblType(TypeSignature senderType, TypeSignature argsType, [NotNullWhen(true)] out TypeDefinition? vftblType)
{
return _delegateVftblTypes.TryGetValue((senderType, argsType), out vftblType);
}
/// <summary>
/// Gets or adds a vtable type for an <c>IDelegate</c> interface.
/// </summary>
/// <param name="senderType">The key type.</param>
/// <param name="argsType">The value type.</param>
/// <param name="vftblType">The created vtable type for <paramref name="senderType"/>.</param>
/// <returns>The vtable type that should be used.</returns>
public TypeDefinition GetOrAddDelegateVftblType(TypeSignature senderType, TypeSignature argsType, TypeDefinition vftblType)
{
ThrowIfReadOnly();
return _delegateVftblTypes.GetOrAdd((senderType, argsType), vftblType);
}
/// <summary>
/// Marks the current state as readonly.
/// </summary>
public void MakeReadOnly()
{
_isReadOnly = true;
}
/// <summary>
/// Throws if <see cref="MakeReadOnly"/> was called.
/// </summary>
private void ThrowIfReadOnly()
{
if (_isReadOnly)
{
throw WellKnownInteropExceptions.EmitStateChangeAfterMakeReadOnlyError();
}
}
}