|
|
|
|
|
by jonhohle
5503 days ago
|
|
The Polymorphic Inline Caching paper refers to AOT compiling with runtime hints. In the case of non-dynamic languages like C and C++ that clang generally targets, are there other examples of where JIT would make things possible that are not possible in AOT? |
|
Optimizing for the specific processor you're running on, as opposed to being forced to compile for a lowest common denominator.
A whole bunch of other small things like that.