2 instantiations of MibcConfig
ILCompiler.RyuJit (2)
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\Compiler\ProfileData.cs (1)
129public override MibcConfig Config { get; } = new();
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\IBC\IBCProfileData.cs (1)
32MibcConfig config = new();
9 references to MibcConfig
ILCompiler.RyuJit (9)
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\Compiler\ProfileData.cs (2)
59public abstract MibcConfig Config { get; } 129public override MibcConfig Config { get; } = new();
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\IBC\IBCProfileData.cs (5)
30public static MibcConfig FromKeyValueMap(Dictionary<string, string> kvMap) 32MibcConfig config = new(); 49public IBCProfileData(MibcConfig config, bool partialNGen, IEnumerable<MethodProfileData> methodData) 62private readonly MibcConfig _config; 64public override MibcConfig Config => _config;
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\IBC\MIbcProfileParser.cs (2)
267public static MibcConfig ParseMibcConfig(TypeSystemContext tsc, PEReader pEReader) 319return MibcConfig.FromKeyValueMap(keyValue);