7 references to JitInfo
System.Diagnostics.DiagnosticSource (3)
System\Diagnostics\Metrics\RuntimeMetrics.cs (3)
76() => Runtime.JitInfo.GetCompiledILBytes(), 82() => Runtime.JitInfo.GetCompiledMethodCount(), 88() => Runtime.JitInfo.GetCompilationTime().TotalSeconds,
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\RuntimeEventSource.cs (3)
116_ilBytesJittedCounter ??= new PollingCounter("il-bytes-jitted", this, () => Runtime.JitInfo.GetCompiledILBytes()) { DisplayName = "IL Bytes Jitted", DisplayUnits = "B" }; 117_methodsJittedCounter ??= new PollingCounter("methods-jitted-count", this, () => Runtime.JitInfo.GetCompiledMethodCount()) { DisplayName = "Number of Methods Jitted" }; 118_jitTimeCounter ??= new IncrementingPollingCounter("time-in-jit", this, () => Runtime.JitInfo.GetCompilationTime().TotalMilliseconds) { DisplayName = "Time spent in JIT", DisplayUnits = "ms", DisplayRateTimeScale = new TimeSpan(0, 0, 1) };
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
674[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.JitInfo))]