Where is the JIT???
hai,
guys,
Please tell me in which portion of the Jnode surce code
structure;the " JIT " compiler is present???I want to know that..please tell me..
Please tell me also some web URL that saying about the JIT..pls..
regards
Tango
- tango_java_06's blog
- Login to post comments
have a look at
have a look at "core/src/core/org/jnode/vm/x86/compiler/", that's
all part of the JIT. To make it short: The class of main interesst for you, probably is the l1a compiler and especially the bytecode transformation. Look at:
"core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java"
This is a good class to start reading imho. If you understand that class, you allready know much about our JIT