How does JVM/CLR execute JIT compiled native code? Is it by some code injection or by copying code to executable memory? What are the system calls that allows dynamic code execution?
|
feedback
|
|
I can explain how we do it in CACAO VM (a research JIT-only JVM). First, the machine code for a method is generated into some heap-allocated memory block. After compilation, the final code length is known, and a chunk of executable memory is allocated using | ||||
feedback
|
|
I don't know specifically how Java does it, but in general you'd insert "trap" opcodes into the interpreter's instruction stream. There are two opcodes in the JVM spec that seem tailor-made for this purpose. If you want to know for sure, there's no better answer than the source: http://download.java.net/jdk6/source/ | ||||
|
feedback
|
|
The Common Language Runtime has a methodtable for each type with entries pointing to native code or a native stub to JIT managed code and then fixup the methodtable with the pointer to the just created native code. MSDN has a more in depth explanation in the MethodDesc section This blog entry by Dave Notario explains how the CLR JIT compiler works. | ||||
|
feedback
|