如何查看 CLR 生成的本机代码?
有没有办法查看CLR生成的本机代码?
在java中,有一个选项“-XX:+PrintOptoAssembly”可以查看JIT编译的本机代码。那么CLR有类似的东西吗?
Is there any way to see the native code generated by CLR?
In java there is a option "-XX:+PrintOptoAssembly" to see the native code compiled by JIT. So is there any similar thing for CLR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 WinDbg+SOS 来反汇编 JIT 生成的代码。更具体地说,您可能会发现
!u
命令对您的需求特别有用:Yes, you could use WinDbg+SOS to dissassemble the JIT's generated code. More specifically, you may find that the
!u
command especially useful for your needs: