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