I know that Java's HotSpot JIT will sometimes skip JIT compiling a method if it expects the overhead of compilation to be lower than the overhead of running the method in interpreted mode. Does the .Net CLR have work based upon a similar heuristic?
|
Unlike HotSpot, the CLR JIT always compiles exactly once. It never interprets, and it never recompiles with heavier optimisation than before based on actual usage. This may change, of course, but it's been that way since v1 and I don't expect it to change any time soon. The advantage is that it makes the JIT a lot simpler - there's no need to consider "old" code which is already running, undo optimisations based on premises which are no longer valid etc. One point in .NET's favour is that most CLR languages make methods non-virtual by default, which means a lot more inlining can be done. HotSpot can inline a method until it's first overridden at which point it undoes the optimisation (or does some clever stuff in some cases to conditionally still use the inlined code, based on actual type). With fewer virtual methods to worry about, .NET can largely ignore the pain of not being able to inline anything virtual. EDIT: The above describes the desktop framework. The Compact Framework throws out native code when it wants to, JITting again as necessary. However, this still isn't like HotSpots adaptive optimisation. The micro framework doesn't JIT at all apparently, interpreting the code instead. This makes sense for very constrained devices. (I can't say I know much about the micro framework.) |
|||||||||||||||||
|
|
.net runtime always compiles code JIT before execution. So, it is never interpreted. You can find some more interesting reading @ CLR Design Choices with Anders Hejlsberg. Especially the part:
HTH, Dejan |
|||
|
|
|
It will be nice to see some trace based JIT's in the future for devices with low memory. Would mainly interpret find hot spots and converts those into assembler and cache those. I think this is what google does with their Android jit and MSR has a research project ongoing for trace based jit. I found a link. Maybe some of this will make into the CLR one day? http://research.microsoft.com/apps/pubs/default.aspx?id=121449 |
|||
|
|
|
I don't believe so, and I don't think that it ever should. How could the JIT know how many times a particular method would be called? Wouldn't the frequency of interpretation factor into the decision? I would also question how well a JIT compiler would be able to analyze a function to determine whether or not interpretation would be best without interpreting the function itself. And given that fact (that at least one pass of the method has taken place) wouldn't it be better to simply compile each method to reduce the overhead of trying to determine which methods get compiled in the first place? |
|||||||||
|