Reputation: 3232
I've collected some PerfView results for my ASP.NET application, and can see that it is spending an enormous amount of time JITting. This conclusion is matched by the performance counter "% time spent in JIT" - this averages around 30%, which is pretty bad.
As I have a high throughput application (100s of requests per second) this is causing an enormous stress on the CPU.
I can see a huge amount of JITs for a particular method:
dynamicClass.lambda_method(pMT: 000007FE9AE54688)
How can I map that address to my source code to determine what the bad code is?
Upvotes: 2
Views: 168