AOT compilation - AshokBhat/notes GitHub Wiki

About

  • Ahead-Of-Time compilation
  • Compile the program before it runs
  • Usually converts VM's intermediate bytecode into machine code

vs other methods

  • AOT compiler: compiles before running
  • JIT compiler: compiles while running
  • Interpreter: runs

Examples

  • Android RunTime aka ART