1 write to CallCount
ILCompiler.ReadyToRun (1)
ObjectWriter\ProfileFileBuilder.cs (1)
50CallCount = callCount;
7 references to CallCount
ILCompiler.ReadyToRun (7)
ObjectWriter\ProfileFileBuilder.cs (7)
87int callCount = _callInfo.Sum(info => info.CallCount); 91int resolvedCallCount = _callInfo.Sum(info => info.CallType == CrossPageCall.Unresolved ? 0 : info.CallCount); 97int nearCallCount = _callInfo.Sum(info => info.CallType == CrossPageCall.No ? info.CallCount : 0); 100int farCallCount = _callInfo.Sum(info => info.CallType == CrossPageCall.Yes ? info.CallCount : 0); 106DumpCallInfo(writer, _callInfo.Where(info => info.CallType == CrossPageCall.Yes).OrderByDescending(info => info.CallCount)); 111DumpCallInfo(writer, _callInfo.Where(info => info.CallType == CrossPageCall.No).OrderByDescending(info => info.CallCount)); 123writer.Write($@"{callInfo.CallCount,10} | ");