Just-in-Time Compilation (JITC)
Combine AOT Compilation + Interpreter
Unlike interpreters that execute code line by line, JIT compilation converts all bytecode into native machine code. However, this approach has some drawbacks:
- It applies optimization even to code that doesn't require it, potentially wasting compilation time
- This was the compilation strategy used by early JavaScript engines before more sophisticated approaches were developed
JITCs


Seonglae Cho