←back to thread

204 points mfiguiere | 6 comments | | HN request time: 0.801s | source | bottom
1. nightpool ◴[] No.43540125[source]

    [Speculative optimizations] may not suffice in this case as future planned optimizations may wish to rely not only on immutability within the lifetime of the process, but also on the immutability of fields from one run of the application to the next.
Can someone elaborate a little more on what this means? I'm very surprised to hear that this was considered a blocker important enough to add all of this complicated machinery (and breaking several deserialization libraries...), when I've never even heard of such an optimization and can't imagine what sort of form it would take
replies(3): >>43540170 #>>43540492 #>>43540608 #
2. Misdicorl ◴[] No.43540170[source]
I suppose serializing the JVM state itself to avoid the cold start problem might take advantage of this?
replies(1): >>43540322 #
3. nightpool ◴[] No.43540322[source]
Why would that prevent the JVM from using the same speculative optimization JIT with deoptimization hooks approach?
replies(1): >>43540337 #
4. Misdicorl ◴[] No.43540337{3}[source]
It wouldn't, but it might preclude using (future) optimizations that forgo those de-optimization hooks?
5. pron ◴[] No.43540492[source]
There's ongoing work, as part of Project Leyden, to cache certain computations -- either performed by the user code or the JVM -- from one run of the program to the next, including the caching of JIT-compiled machine code. The early parts of this work were discussed here: https://www.morling.dev/blog/jep-483-aot-class-loading-linki...
6. xxs ◴[] No.43540608[source]
This is rather old[0] but still relevant.

Surprise #2! A popular open-source framework writes to final fields after object construction via generated bytecodes!... This optimization of the final field is *the* main optimization performed on final fields.

[0] https://web.archive.org/web/20121016082428/http://www.azulsy...