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