Search code examples
.netclrjit

How to see JIT-Compiled code in .NET VM (CLR)


How can I have a trace of native code generated by the JIT-Compiler ?

Thanks


Solution

  • In Visual Studio place a breakpoint in the code and start debugging. When it breaks, open the Disassembly window (Debug > Windows > Disassembly or Alt+Ctrl+D).