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