|
|
|
|
|
by xapata
3192 days ago
|
|
Yes. A jit compiler can compile based on both code and data, and can compile all the dependencies. In contrast an aot compiler must only use the code and links to other pre-compiled binaries. Further, a jit can compile to specific hardware. An aot must anticipate what hardware is possible. If you aot compile to several possible hardware configs, then you'll bloat the binary. |
|
Not since the development of "profile-guided optimisation", no.