JIT overhead shows you the time spent by the .NET JIT compiler compiling methods. In the call tree and call graph, they are shown as the child of the method that needs to perform the compilation.
For example, if MethodA calls MethodB and discovers that MethodB has not yet been jitted, it will call the JIT, and then MethodB. (JIT Overhead) and MethodB will be shown as children of MethodA.
Typically, (JIT Overhead) will be about a millisecond per method.
Comments
For example, if MethodA calls MethodB and discovers that MethodB has not yet been jitted, it will call the JIT, and then MethodB. (JIT Overhead) and MethodB will be shown as children of MethodA.
Typically, (JIT Overhead) will be about a millisecond per method.
Red Gate Software