2 types derived from ProfileData
ILCompiler.ReadyToRun (2)
Compiler\ProfileData.cs (1)
121public class EmptyProfileData : ProfileData
IBC\IBCProfileData.cs (1)
47public class IBCProfileData : ProfileData
8 references to ProfileData
ILCompiler.ReadyToRun (8)
Compiler\ProfileData.cs (1)
65public static void MergeProfileData(Dictionary<MethodDesc, MethodProfileData> mergedProfileData, ProfileData profileData)
Compiler\ProfileDataManager.cs (5)
20private readonly List<ProfileData> _inputData = new List<ProfileData>(); 335public void LoadByMerging(IEnumerable<ProfileData> data) 338foreach (ProfileData profileData in data) 340ProfileData.MergeProfileData(_profileData, profileData);
IBC\IBCProfileParser.cs (1)
31public ProfileData ParseIBCDataFromModule(EcmaModule ecmaModule)
IBC\MIbcProfileParser.cs (1)
176public static ProfileData ParseMIbcFile(TypeSystemContext tsc, PEReader peReader, HashSet<string> assemblyNamesInVersionBubble, string onlyDefinedInAssembly, MibcGroupParseRules parseRule = MibcGroupParseRules.VersionBubble, HashSet<string> crossModuleInlineModules = null)