|
|
|
|
|
by ori_b
5503 days ago
|
|
Profile guided optimizations that are relevant for the specific invocation of the program. Loop optimization based on invocation parameters for that specific run of the program. Hard-coding in the jump target address for calling functions from dynamically loaded libraries (can't do that AOT, because if the library is replaced, the symbol offsets change). 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. |
|