1 write to SchemaData
ILCompiler.ReadyToRun (1)
Compiler\ProfileData.cs (1)
46SchemaData = schemaData;
12 references to SchemaData
ILCompiler.ReadyToRun (12)
Compiler\DependencyAnalysis\ReadyToRun\InstrumentationDataTableNode.cs (4)
194PgoSchemaElem[] schema = _profileDataManager[md].SchemaData; 219PgoSchemaElem[] schema = _profileDataManager[method].SchemaData; 256PgoSchemaElem[] schema = _profileDataManager[method].SchemaData; 272PgoProcessor.EncodePgoData(CorInfoImpl.ConvertTypeHandleHistogramsToCompactTypeHistogramFormat(_profileDataManager[method].SchemaData, factory.CompilationModuleGroup), pgoEmitter, false);
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
1022if (ProfileDataManager[method].SchemaData != null)
Compiler\ProfileData.cs (6)
96if (data.SchemaData == null) 98mergedSchemaData = dataToMerge.SchemaData; 100else if (dataToMerge.SchemaData == null) 102mergedSchemaData = data.SchemaData; 107schemaElemMergerArray[0] = dataToMerge.SchemaData; 108schemaElemMergerArray[1] = data.SchemaData;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
4611PgoSchemaElem[] pgoResultsSchemas = _compilation.ProfileData.GetAllowSynthesis(_compilation, methodDesc, out bool isSynthesized)?.SchemaData;