7 references to MethodProfilingDataFlags
ILCompiler.ReadyToRun (7)
Compiler\ProfileData.cs (2)
37public MethodProfileData(MethodDesc method, MethodProfilingDataFlags flags, double exclusiveWeight, Dictionary<MethodDesc, int> callWeights, uint scenarioMask, PgoSchemaElem[] schemaData) 50public readonly MethodProfilingDataFlags Flags;
Compiler\ProfileDataManager.cs (3)
158profileData = new MethodProfileData(method, MethodProfilingDataFlags.ReadMethodCode, 0, null, 0, SynthesizeSchema(comp, method)); 355if (profileData.Flags.HasFlag(MethodProfilingDataFlags.ExcludeHotMethodCode) || 356profileData.Flags.HasFlag(MethodProfilingDataFlags.ExcludeColdMethodCode))
IBC\IBCProfileParser.cs (1)
151methodProfileData.Add(new MethodProfileData(associatedMethod, (MethodProfilingDataFlags)entry.Flags, 0, null, scenarioMask, null));
IBC\MIbcProfileParser.cs (1)
557methodProfileData.Add(new MethodProfileData((MethodDesc)methodInProgress, MethodProfilingDataFlags.ReadMethodCode, exclusiveWeight, weights, 0xFFFFFFFF, pgoSchemaData));