1 instantiation of ReadyToRunSection
Microsoft.Diagnostics.DataContractReader.Contracts (1)
_generated\172\Microsoft_Diagnostics_DataContractReader_Data.ReadyToRunSection.g.cs (1)
49
=> new
ReadyToRunSection
(target, address);
12 references to ReadyToRunSection
Microsoft.Diagnostics.DataContractReader.Contracts (12)
_generated\168\Microsoft_Diagnostics_DataContractReader_Data.ReadyToRunCoreHeader.g.cs (3)
61
private partial System.Collections.Generic.IReadOnlyList<global::Microsoft.Diagnostics.DataContractReader.Data.
ReadyToRunSection
> InitSections(Target target, TargetPointer address);
62
private System.Collections.Generic.IReadOnlyList<global::Microsoft.Diagnostics.DataContractReader.Data.
ReadyToRunSection
> _Sections__value = default!;
64
public partial System.Collections.Generic.IReadOnlyList<global::Microsoft.Diagnostics.DataContractReader.Data.
ReadyToRunSection
> Sections
_generated\172\Microsoft_Diagnostics_DataContractReader_Data.ReadyToRunSection.g.cs (2)
48
static
ReadyToRunSection
IData<
ReadyToRunSection
>.Create(Target target, TargetPointer address)
Contracts\ExecutionManager\ExecutionManagerCore.ReadyToRunJitManager.cs (1)
334
foreach (Data.
ReadyToRunSection
section in coreInfo.Header.Sections)
Data\ReadyToRunCoreHeader.cs (5)
12
[CustomInit(nameof(InitSections))] public partial IReadOnlyList<
ReadyToRunSection
> Sections { get; }
14
private partial IReadOnlyList<
ReadyToRunSection
> InitSections(Target target, TargetPointer address)
17
uint sectionSize =
ReadyToRunSection
.GetSize(target);
18
List<
ReadyToRunSection
> sections = new((int)NumberOfSections);
22
sections.Add(target.ProcessedData.GetOrAdd<
ReadyToRunSection
>(sectionAddress));
Data\ReadyToRunSection.cs (1)
7
internal sealed partial class ReadyToRunSection : IData<
ReadyToRunSection
>