- #1
Chromium
- 56
- 0
Does "JIT" only occur when translating some intermediate form of the program into native code? Or can it also occur in other ways? For example, say you have a compiler that kind of acts like an interpreter in that for each line it compiles that source code into native code and immediately after compiling that line it executes it.
So for each line, you go through these steps:
1) Compile
2) Execute
To me it seems that something like this would be slow because constantly compiling & executing seems like a pretty inefficient way of computing. But, it was the only example I could think of.
Thanks,
--Jonathan
So for each line, you go through these steps:
1) Compile
2) Execute
To me it seems that something like this would be slow because constantly compiling & executing seems like a pretty inefficient way of computing. But, it was the only example I could think of.
Thanks,
--Jonathan