Where is the .NET JIT-compiled code cached?

前端 未结 6 2189
长发绾君心
长发绾君心 2020-12-02 09:52

A .NET program is first compiled into MSIL code. When it is executed, the JIT compiler will compile it into native machine code.

I am wondering:

Where is th

6条回答
  •  悲&欢浪女
    2020-12-02 10:22

    In short, the IL is JIT-compiled for each invocation of the program and is maintained in code pages of the process address space. See Chapter 1 of Richter for great coverage of the .NET execution model.

提交回复
热议问题