25 references to SectionFormat
ILCompiler.RyuJit (25)
parent\ILCompiler.ReadyToRun\IBC\IBCDataModel.cs (25)
35public SectionTypeInfo(TokenType tokenType, SectionFormat section) 49SectionTypeInfo[] sectionTypeInfo = new SectionTypeInfo[(int)SectionFormat.SectionFormatCount]; 52sectionTypeInfo[(int)SectionFormat.BasicBlockInfo] = new SectionTypeInfo(tokenType, SectionFormat.BasicBlockInfo); 53sectionTypeInfo[(int)SectionFormat.BlobStream] = new SectionTypeInfo(tokenType, SectionFormat.BlobStream); 55for (SectionFormat section = 0; section < SectionFormat.SectionFormatCount; section++) 68case SectionFormat.ScenarioInfo: 69case SectionFormat.BasicBlockInfo: 70case SectionFormat.BlobStream: 74case SectionFormat.TypeProfilingData: 75case SectionFormat.GenericTypeProfilingData: 79case SectionFormat.MethodProfilingData: 90public static bool IsTokenList(SectionFormat sectionType) 103public static IEnumerable<SectionFormat> SectionIterator(SectionIteratorKind iteratorKind) 108yield return SectionFormat.BasicBlockInfo; 109yield return SectionFormat.MethodProfilingData; 114for (SectionFormat section = 0; section < SectionFormat.SectionFormatCount; section++) 173public static uint InitialTokenForSection(SectionFormat format) 283Tokens = new Dictionary<SectionFormat, List<TokenData>>(); 295public Dictionary<SectionFormat, List<TokenData>> Tokens { get; private set; } 468public const SectionFormat FirstTokenFlagSection = SectionFormat.BlobStream + 1;