InterviewSolution
Saved Bookmarks
| 1. |
What Is Jit And Its Use? |
|
Answer» Really, just a very fast compiler… In this incarnation, PRETTY much a one-pass compiler — no OFFLINE COMPUTATIONS. So you can’t look at the whole method, rank the expressions according to which ones are re-used the most, and then generate CODE. In theory terms, it’s an on-line problem. Really, just a very fast compiler… In this incarnation, pretty much a one-pass compiler — no offline computations. So you can’t look at the whole method, rank the expressions according to which ones are re-used the most, and then generate code. In theory terms, it’s an on-line problem. |
|