IL does not skip anything.
JIT recompiles PPC instructions straight to x86 or x86-64 instructions in blocks.
JITIL recompiles PPC instructions to an IL (intermediate language) instructions in blocks. A second pass then recompiles the IL to x86 or x86-64 code.
The second pass in JITIL can make the emulator faster because inefficient code found in the first pass is easier to identify and fix.
JIT recompiles PPC instructions straight to x86 or x86-64 instructions in blocks.
JITIL recompiles PPC instructions to an IL (intermediate language) instructions in blocks. A second pass then recompiles the IL to x86 or x86-64 code.
The second pass in JITIL can make the emulator faster because inefficient code found in the first pass is easier to identify and fix.
