forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PrepareForReadyToRunCompilation.cs
541 lines (466 loc) · 25.5 KB
/
PrepareForReadyToRunCompilation.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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Microsoft.NET.Build.Tasks
{
public class PrepareForReadyToRunCompilation : TaskBase
{
[Required]
public ITaskItem MainAssembly { get; set; }
public ITaskItem[] Assemblies { get; set; }
public string[] ExcludeList { get; set; }
public bool EmitSymbols { get; set; }
public bool ReadyToRunUseCrossgen2 { get; set; }
public bool Crossgen2Composite { get; set; }
[Required]
public string OutputPath { get; set; }
[Required]
public bool IncludeSymbolsInSingleFile { get; set; }
public string[] PublishReadyToRunCompositeExclusions { get; set; }
public ITaskItem CrossgenTool { get; set; }
public ITaskItem Crossgen2Tool { get; set; }
// Output lists of files to compile. Currently crossgen has to run in two steps, the first to generate the R2R image
// and the second to create native PDBs for the compiled images (the output of the first step is an input to the second step)
[Output]
public ITaskItem[] ReadyToRunCompileList => _compileList.ToArray();
[Output]
public ITaskItem[] ReadyToRunSymbolsCompileList => _symbolsCompileList.ToArray();
// Output files to publish after compilation. These lists are equivalent to the input list, but contain the new
// paths to the compiled R2R images and native PDBs.
[Output]
public ITaskItem[] ReadyToRunFilesToPublish => _r2rFiles.ToArray();
[Output]
public ITaskItem[] ReadyToRunAssembliesToReference => _r2rReferences.ToArray();
[Output]
public ITaskItem[] ReadyToRunCompositeBuildReferences => _r2rCompositeReferences.ToArray();
[Output]
public ITaskItem[] ReadyToRunCompositeBuildInput => _r2rCompositeInput.ToArray();
private bool _crossgen2IsVersion5;
private int _perfmapFormatVersion;
private List<ITaskItem> _compileList = new();
private List<ITaskItem> _symbolsCompileList = new();
private List<ITaskItem> _r2rFiles = new();
private List<ITaskItem> _r2rReferences = new();
private List<ITaskItem> _r2rCompositeReferences = new();
private List<ITaskItem> _r2rCompositeInput = new();
private bool IsTargetWindows
{
get
{
// Crossgen2 V6 and above always has TargetOS metadata available
if (ReadyToRunUseCrossgen2 && !string.IsNullOrEmpty(Crossgen2Tool.GetMetadata(MetadataKeys.TargetOS)))
return Crossgen2Tool.GetMetadata(MetadataKeys.TargetOS) == "windows";
else
return RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
}
}
private bool IsTargetLinux
{
get
{
// Crossgen2 V6 and above always has TargetOS metadata available
if (ReadyToRunUseCrossgen2 && !string.IsNullOrEmpty(Crossgen2Tool.GetMetadata(MetadataKeys.TargetOS)))
return Crossgen2Tool.GetMetadata(MetadataKeys.TargetOS) == "linux";
else
return RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
}
}
protected override void ExecuteCore()
{
if (ReadyToRunUseCrossgen2)
{
string isVersion5 = Crossgen2Tool.GetMetadata(MetadataKeys.IsVersion5);
_crossgen2IsVersion5 = !string.IsNullOrEmpty(isVersion5) && bool.Parse(isVersion5);
string perfmapVersion = Crossgen2Tool.GetMetadata(MetadataKeys.PerfmapFormatVersion);
_perfmapFormatVersion = !string.IsNullOrEmpty(perfmapVersion) ? int.Parse(perfmapVersion) : 0;
if (Crossgen2Composite && EmitSymbols && _crossgen2IsVersion5)
{
Log.LogError(Strings.Crossgen5CannotEmitSymbolsInCompositeMode);
return;
}
}
string diaSymReaderPath = CrossgenTool?.GetMetadata(MetadataKeys.DiaSymReader);
bool hasValidDiaSymReaderLib =
ReadyToRunUseCrossgen2 && !_crossgen2IsVersion5 ||
!string.IsNullOrEmpty(diaSymReaderPath) && File.Exists(diaSymReaderPath);
// Process input lists of files
ProcessInputFileList(Assemblies, _compileList, _symbolsCompileList, _r2rFiles, _r2rReferences, _r2rCompositeReferences, _r2rCompositeInput, hasValidDiaSymReaderLib);
}
private void ProcessInputFileList(
ITaskItem[] inputFiles,
List<ITaskItem> imageCompilationList,
List<ITaskItem> symbolsCompilationList,
List<ITaskItem> r2rFilesPublishList,
List<ITaskItem> r2rReferenceList,
List<ITaskItem> r2rCompositeReferenceList,
List<ITaskItem> r2rCompositeInputList,
bool hasValidDiaSymReaderLib)
{
if (inputFiles == null)
{
return;
}
var exclusionSet = ExcludeList == null || Crossgen2Composite ? null : new HashSet<string>(ExcludeList, StringComparer.OrdinalIgnoreCase);
var compositeExclusionSet = PublishReadyToRunCompositeExclusions == null || !Crossgen2Composite ? null : new HashSet<string>(PublishReadyToRunCompositeExclusions, StringComparer.OrdinalIgnoreCase);
foreach (var file in inputFiles)
{
var eligibility = GetInputFileEligibility(file, Crossgen2Composite, exclusionSet, compositeExclusionSet);
if (eligibility.NoEligibility)
{
continue;
}
if (eligibility.IsReference)
r2rReferenceList.Add(file);
if (eligibility.IsReference && !eligibility.ReferenceHiddenFromCompositeBuild && !eligibility.Compile)
r2rCompositeReferenceList.Add(file);
if (!eligibility.Compile)
{
continue;
}
var outputR2RImageRelativePath = file.GetMetadata(MetadataKeys.RelativePath);
var outputR2RImage = Path.Combine(OutputPath, outputR2RImageRelativePath);
string outputPDBImage = null;
string outputPDBImageRelativePath = null;
string crossgen1CreatePDBCommand = null;
if (EmitSymbols)
{
if (IsTargetWindows)
{
if (hasValidDiaSymReaderLib)
{
outputPDBImage = Path.ChangeExtension(outputR2RImage, "ni.pdb");
outputPDBImageRelativePath = Path.ChangeExtension(outputR2RImageRelativePath, "ni.pdb");
crossgen1CreatePDBCommand = $"/CreatePDB \"{Path.GetDirectoryName(outputPDBImage)}\"";
}
}
else if ((ReadyToRunUseCrossgen2 && !_crossgen2IsVersion5) || IsTargetLinux)
{
string perfmapExtension;
if (ReadyToRunUseCrossgen2 && !_crossgen2IsVersion5 && _perfmapFormatVersion >= 1)
{
perfmapExtension = ".ni.r2rmap";
}
else
{
using (FileStream fs = new(file.ItemSpec, FileMode.Open, FileAccess.Read))
{
PEReader pereader = new(fs);
MetadataReader mdReader = pereader.GetMetadataReader();
Guid mvid = mdReader.GetGuid(mdReader.GetModuleDefinition().Mvid);
perfmapExtension = ".ni.{" + mvid + "}.map";
}
}
outputPDBImage = Path.ChangeExtension(outputR2RImage, perfmapExtension);
outputPDBImageRelativePath = Path.ChangeExtension(outputR2RImageRelativePath, perfmapExtension);
crossgen1CreatePDBCommand = $"/CreatePerfMap \"{Path.GetDirectoryName(outputPDBImage)}\"";
}
}
if (eligibility.CompileSeparately)
{
// This TaskItem is the IL->R2R entry, for an input assembly that needs to be compiled into a R2R image. This will be used as
// an input to the ReadyToRunCompiler task
TaskItem r2rCompilationEntry = new(file);
r2rCompilationEntry.SetMetadata(MetadataKeys.OutputR2RImage, outputR2RImage);
if (outputPDBImage != null && ReadyToRunUseCrossgen2 && !_crossgen2IsVersion5)
{
r2rCompilationEntry.SetMetadata(MetadataKeys.EmitSymbols, "true");
r2rCompilationEntry.SetMetadata(MetadataKeys.OutputPDBImage, outputPDBImage);
}
r2rCompilationEntry.RemoveMetadata(MetadataKeys.OriginalItemSpec);
imageCompilationList.Add(r2rCompilationEntry);
}
else if (eligibility.CompileIntoCompositeImage)
{
r2rCompositeInputList.Add(file);
}
// This TaskItem corresponds to the output R2R image. It is equivalent to the input TaskItem, only the ItemSpec for it points to the new path
// for the newly created R2R image
TaskItem r2rFileToPublish = new(file)
{
ItemSpec = outputR2RImage
};
r2rFileToPublish.RemoveMetadata(MetadataKeys.OriginalItemSpec);
r2rFilesPublishList.Add(r2rFileToPublish);
// Note: ReadyToRun PDB/Map files are not needed for debugging. They are only used for profiling, therefore the default behavior is to not generate them
// unless an explicit PublishReadyToRunEmitSymbols flag is enabled by the app developer. There is also another way to profile that the runtime supports, which does
// not rely on the native PDBs/Map files, so creating them is really an opt-in option, typically used by advanced users.
// For debugging, only the IL PDBs are required.
if (eligibility.CompileSeparately && outputPDBImage != null)
{
if (!ReadyToRunUseCrossgen2 || _crossgen2IsVersion5)
{
// This TaskItem is the R2R->R2RPDB entry, for a R2R image that was just created, and for which we need to create native PDBs. This will be used as
// an input to the ReadyToRunCompiler task
TaskItem pdbCompilationEntry = new(file)
{
ItemSpec = outputR2RImage
};
pdbCompilationEntry.SetMetadata(MetadataKeys.OutputPDBImage, outputPDBImage);
pdbCompilationEntry.SetMetadata(MetadataKeys.CreatePDBCommand, crossgen1CreatePDBCommand);
symbolsCompilationList.Add(pdbCompilationEntry);
}
// This TaskItem corresponds to the output PDB image. It is equivalent to the input TaskItem, only the ItemSpec for it points to the new path
// for the newly created PDB image.
TaskItem r2rSymbolsFileToPublish = new(file)
{
ItemSpec = outputPDBImage
};
r2rSymbolsFileToPublish.SetMetadata(MetadataKeys.RelativePath, outputPDBImageRelativePath);
r2rSymbolsFileToPublish.RemoveMetadata(MetadataKeys.OriginalItemSpec);
if (!IncludeSymbolsInSingleFile)
{
r2rSymbolsFileToPublish.SetMetadata(MetadataKeys.ExcludeFromSingleFile, "true");
}
r2rFilesPublishList.Add(r2rSymbolsFileToPublish);
}
}
if (Crossgen2Composite)
{
MainAssembly.SetMetadata(MetadataKeys.RelativePath, Path.GetFileName(MainAssembly.ItemSpec));
var compositeR2RImageRelativePath = MainAssembly.GetMetadata(MetadataKeys.RelativePath);
compositeR2RImageRelativePath = Path.ChangeExtension(compositeR2RImageRelativePath, "r2r" + Path.GetExtension(compositeR2RImageRelativePath));
var compositeR2RImage = Path.Combine(OutputPath, compositeR2RImageRelativePath);
TaskItem r2rCompilationEntry = new(MainAssembly)
{
ItemSpec = r2rCompositeInputList[0].ItemSpec
};
r2rCompilationEntry.SetMetadata(MetadataKeys.OutputR2RImage, compositeR2RImage);
r2rCompilationEntry.SetMetadata(MetadataKeys.CreateCompositeImage, "true");
r2rCompilationEntry.RemoveMetadata(MetadataKeys.OriginalItemSpec);
if (EmitSymbols)
{
string compositePDBImage = null;
string compositePDBRelativePath = null;
if (IsTargetWindows)
{
if (hasValidDiaSymReaderLib)
{
compositePDBImage = Path.ChangeExtension(compositeR2RImage, ".ni.pdb");
compositePDBRelativePath = Path.ChangeExtension(compositeR2RImageRelativePath, ".ni.pdb");
}
}
else
{
string perfmapExtension = (_perfmapFormatVersion >= 1 ? ".ni.r2rmap" : ".ni.{composite}.map");
compositePDBImage = Path.ChangeExtension(compositeR2RImage, perfmapExtension);
compositePDBRelativePath = Path.ChangeExtension(compositeR2RImageRelativePath, perfmapExtension);
}
if (compositePDBImage != null && ReadyToRunUseCrossgen2 && !_crossgen2IsVersion5)
{
r2rCompilationEntry.SetMetadata(MetadataKeys.EmitSymbols, "true");
r2rCompilationEntry.SetMetadata(MetadataKeys.OutputPDBImage, compositePDBImage);
// Publish composite PDB file
TaskItem r2rSymbolsFileToPublish = new(MainAssembly)
{
ItemSpec = compositePDBImage
};
r2rSymbolsFileToPublish.SetMetadata(MetadataKeys.RelativePath, compositePDBRelativePath);
r2rSymbolsFileToPublish.RemoveMetadata(MetadataKeys.OriginalItemSpec);
if (!IncludeSymbolsInSingleFile)
{
r2rSymbolsFileToPublish.SetMetadata(MetadataKeys.ExcludeFromSingleFile, "true");
}
r2rFilesPublishList.Add(r2rSymbolsFileToPublish);
}
}
imageCompilationList.Add(r2rCompilationEntry);
// Publish it
TaskItem compositeR2RFileToPublish = new(MainAssembly)
{
ItemSpec = compositeR2RImage
};
compositeR2RFileToPublish.RemoveMetadata(MetadataKeys.OriginalItemSpec);
compositeR2RFileToPublish.SetMetadata(MetadataKeys.RelativePath, compositeR2RImageRelativePath);
r2rFilesPublishList.Add(compositeR2RFileToPublish);
}
}
private struct Eligibility
{
[Flags]
private enum EligibilityEnum
{
None = 0,
Reference = 1,
HideReferenceFromComposite = 2,
CompileSeparately = 4,
CompileIntoCompositeImage = 8,
}
private readonly EligibilityEnum _flags;
public static Eligibility None => new(EligibilityEnum.None);
public bool NoEligibility => _flags == EligibilityEnum.None;
public bool IsReference => (_flags & EligibilityEnum.Reference) == EligibilityEnum.Reference;
public bool ReferenceHiddenFromCompositeBuild => (_flags & EligibilityEnum.HideReferenceFromComposite) == EligibilityEnum.HideReferenceFromComposite;
public bool CompileIntoCompositeImage => (_flags & EligibilityEnum.CompileIntoCompositeImage) == EligibilityEnum.CompileIntoCompositeImage;
public bool CompileSeparately => (_flags & EligibilityEnum.CompileSeparately) == EligibilityEnum.CompileSeparately;
public bool Compile => CompileIntoCompositeImage || CompileSeparately;
private Eligibility(EligibilityEnum flags)
{
_flags = flags;
}
public static Eligibility CreateReferenceEligibility(bool hideFromCompositeBuilds)
{
if (hideFromCompositeBuilds)
return new Eligibility(EligibilityEnum.Reference | EligibilityEnum.HideReferenceFromComposite);
else
return new Eligibility(EligibilityEnum.Reference);
}
public static Eligibility CreateCompileEligibility(bool doNotBuildIntoComposite)
{
if (doNotBuildIntoComposite)
return new Eligibility(EligibilityEnum.Reference | EligibilityEnum.HideReferenceFromComposite | EligibilityEnum.CompileSeparately);
else
return new Eligibility(EligibilityEnum.Reference | EligibilityEnum.CompileIntoCompositeImage);
}
};
private static bool IsNonCompositeReadyToRunImage(PEReader peReader)
{
if (peReader.PEHeaders == null)
return false;
if (peReader.PEHeaders.CorHeader == null)
return false;
if ((peReader.PEHeaders.CorHeader.Flags & CorFlags.ILLibrary) == 0)
{
// This is likely a composite image, but those can't be re-r2r'd
return false;
}
else
{
return peReader.PEHeaders.CorHeader.ManagedNativeHeaderDirectory.Size != 0;
}
}
private static Eligibility GetInputFileEligibility(ITaskItem file, bool compositeCompile, HashSet<string> exclusionSet, HashSet<string> r2rCompositeExclusionSet)
{
// Check to see if this is a valid ILOnly image that we can compile
if (!file.ItemSpec.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) && !file.ItemSpec.EndsWith(".exe", StringComparison.OrdinalIgnoreCase))
{
// If it isn't a dll or an exe, it certainly isn't a valid ILOnly image for compilation
return Eligibility.None;
}
using (FileStream fs = new(file.ItemSpec, FileMode.Open, FileAccess.Read))
{
try
{
using (var pereader = new PEReader(fs))
{
if (!pereader.HasMetadata)
{
return Eligibility.None;
}
MetadataReader mdReader = pereader.GetMetadataReader();
if (!mdReader.IsAssembly)
{
return Eligibility.None;
}
if (IsReferenceAssembly(mdReader))
{
// crossgen can only take implementation assemblies, even as references
return Eligibility.None;
}
bool excludeFromR2R = (exclusionSet != null && exclusionSet.Contains(Path.GetFileName(file.ItemSpec)));
bool excludeFromComposite = (r2rCompositeExclusionSet != null && r2rCompositeExclusionSet.Contains(Path.GetFileName(file.ItemSpec))) || excludeFromR2R;
if ((pereader.PEHeaders.CorHeader.Flags & CorFlags.ILOnly) != CorFlags.ILOnly)
{
// This can happen due to C++/CLI binaries or due to previously R2R compiled binaries.
if (!IsNonCompositeReadyToRunImage(pereader))
{
// For C++/CLI always treat as only a reference
return Eligibility.CreateReferenceEligibility(excludeFromComposite);
}
else
{
// If previously compiled as R2R, treat as reference if this would be compiled seperately
if (!compositeCompile || excludeFromComposite)
{
return Eligibility.CreateReferenceEligibility(excludeFromComposite);
}
}
}
if (file.HasMetadataValue(MetadataKeys.ReferenceOnly, "true"))
{
return Eligibility.CreateReferenceEligibility(excludeFromComposite);
}
if (excludeFromR2R)
{
return Eligibility.CreateReferenceEligibility(excludeFromComposite);
}
// save these most expensive checks for last. We don't want to scan all references for IL code
if (ReferencesWinMD(mdReader) || !HasILCode(pereader, mdReader))
{
// Forwarder assemblies are not separately compiled via R2R, but when performing composite compilation, they are included in the bundle
if (excludeFromComposite || !compositeCompile)
return Eligibility.CreateReferenceEligibility(excludeFromComposite);
}
return Eligibility.CreateCompileEligibility(!compositeCompile || excludeFromComposite);
}
}
catch (BadImageFormatException)
{
// Not a valid assembly file
return Eligibility.None;
}
}
}
private static bool IsReferenceAssembly(MetadataReader mdReader)
{
foreach (var attributeHandle in mdReader.GetAssemblyDefinition().GetCustomAttributes())
{
EntityHandle attributeCtor = mdReader.GetCustomAttribute(attributeHandle).Constructor;
StringHandle attributeTypeName = default;
StringHandle attributeTypeNamespace = default;
if (attributeCtor.Kind == HandleKind.MemberReference)
{
EntityHandle attributeMemberParent = mdReader.GetMemberReference((MemberReferenceHandle)attributeCtor).Parent;
if (attributeMemberParent.Kind == HandleKind.TypeReference)
{
TypeReference attributeTypeRef = mdReader.GetTypeReference((TypeReferenceHandle)attributeMemberParent);
attributeTypeName = attributeTypeRef.Name;
attributeTypeNamespace = attributeTypeRef.Namespace;
}
}
else if (attributeCtor.Kind == HandleKind.MethodDefinition)
{
TypeDefinitionHandle attributeTypeDefHandle = mdReader.GetMethodDefinition((MethodDefinitionHandle)attributeCtor).GetDeclaringType();
TypeDefinition attributeTypeDef = mdReader.GetTypeDefinition(attributeTypeDefHandle);
attributeTypeName = attributeTypeDef.Name;
attributeTypeNamespace = attributeTypeDef.Namespace;
}
if (!attributeTypeName.IsNil &&
!attributeTypeNamespace.IsNil &&
mdReader.StringComparer.Equals(attributeTypeName, "ReferenceAssemblyAttribute") &&
mdReader.StringComparer.Equals(attributeTypeNamespace, "System.Runtime.CompilerServices"))
{
return true;
}
}
return false;
}
private static bool ReferencesWinMD(MetadataReader mdReader)
{
foreach (var assemblyRefHandle in mdReader.AssemblyReferences)
{
AssemblyReference assemblyRef = mdReader.GetAssemblyReference(assemblyRefHandle);
if ((assemblyRef.Flags & AssemblyFlags.WindowsRuntime) == AssemblyFlags.WindowsRuntime)
{
return true;
}
}
return false;
}
private static bool HasILCode(PEReader peReader, MetadataReader mdReader)
{
foreach (var methoddefHandle in mdReader.MethodDefinitions)
{
MethodDefinition methodDef = mdReader.GetMethodDefinition(methoddefHandle);
if (methodDef.RelativeVirtualAddress > 0)
{
return true;
}
}
return false;
}
}
}