1 write to CallType
ILCompiler.ReadyToRun (1)
ObjectWriter\ProfileFileBuilder.cs (1)
51CallType = callType;
8 references to CallType
ILCompiler.ReadyToRun (8)
ObjectWriter\ProfileFileBuilder.cs (8)
90int resolvedPairCount = _callInfo.Sum(info => info.CallType == CrossPageCall.Unresolved ? 0 : 1); 91int resolvedCallCount = _callInfo.Sum(info => info.CallType == CrossPageCall.Unresolved ? 0 : info.CallCount); 96int nearPairCount = _callInfo.Sum(info => info.CallType == CrossPageCall.No ? 1 : 0); 97int nearCallCount = _callInfo.Sum(info => info.CallType == CrossPageCall.No ? info.CallCount : 0); 99int farPairCount = _callInfo.Sum(info => info.CallType == CrossPageCall.Yes ? 1 : 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));