1 write to CallWeights
ILCompiler.RyuJit (1)
parent\ILCompiler.ReadyToRun\Compiler\ProfileData.cs (1)
45CallWeights = callWeights;
7 references to CallWeights
ILCompiler.RyuJit (7)
parent\ILCompiler.ReadyToRun\Compiler\FileLayoutOptimizer.cs (2)
342if (data == null || data.CallWeights == null) 345foreach ((MethodDesc other, int count) in data.CallWeights)
parent\ILCompiler.ReadyToRun\Compiler\ProfileData.cs (5)
74var mergedCallWeights = data.CallWeights; 77mergedCallWeights = dataToMerge.CallWeights; 79else if (dataToMerge.CallWeights != null) 81mergedCallWeights = new Dictionary<MethodDesc, int>(data.CallWeights); 82foreach (var entry in dataToMerge.CallWeights)