Can I get asm-implementation of .NET application after JIT-compilation in Mono 3.2.3 (namely assembler, not IL). In Visual Studio I can use different debug tools for getting asm-code, registers state, memory, etc. : VisualStudioScreenshot

Is there some way to get this data in Mono? Can I also get dump of memory in runtime? Previously, for these purposes, I could use Hard debugger, but it's not supported now.

有帮助吗?

解决方案

Run with:

mono -v -v yourprogram.exe

This will dump lots of info about jit compilation, including the assembly code.

其他提示

You can compile with AOT in Mono, which achieves the equivalent. Not sure about debugging this binary in an IDE though.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top