开发者

Does JITting occur per-assembly or per-method? How does this affect the working set

开发者 https://www.devze.com 2023-01-12 04:40 出处:网络
Does JITtin开发者_如何学Pythong occur per-assembly or per-method? How does this affect the working setPer method.Methods that are not called are not compiled thus reducing impact on the working set.

Does JITtin开发者_如何学Pythong occur per-assembly or per-method? How does this affect the working set


Per method. Methods that are not called are not compiled thus reducing impact on the working set.

This may help: Does the .NET CLR JIT compile every method, every time?


I agree with Daniel.

If you have access to it, Jeffrey Richter's CLR via C# book provides an excellent overview of how JIT'ing occurs and how the CLR handles the results. It's a clear and concise explanation.

0

精彩评论

暂无评论...
验证码 换一张
取 消