Hacker News new | ask | show | jobs
by flohofwoe 979 days ago
This just seems to prove my point that AOT is usually better than JIT?
1 comments

Not really, because not only it uses PGO, which most people using AOT languages never bother to learn, it only AOT compiles the code paths that JIT validated as being used, instead of the whole application.

JIT + AOT with PGO data shared across all Android devices on the planet, gets the best of both worlds.