Retrieve JIT output

后端 未结 5 2062
Happy的楠姐
Happy的楠姐 2020-12-03 15:00

I\'m interested in viewing the actual x86 assembly output by a C# program (not the CLR bytecode instructions). Is there a good way to do this?

5条回答
  •  忘掉有多难
    2020-12-03 15:28

    You can do a memory dump. However, note that the in-memory code does not necessarily contain every method.

    ngen does AOT, or Ahead-of-time code generation, which can be different from JIT code.

提交回复
热议问题