←back to thread

204 points mfiguiere | 2 comments | | HN request time: 0.42s | source
Show context
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 #
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 #
1. nightpool ◴[] No.43540322[source]
Why would that prevent the JVM from using the same speculative optimization JIT with deoptimization hooks approach?
replies(1): >>43540337 #
2. Misdicorl ◴[] No.43540337[source]
It wouldn't, but it might preclude using (future) optimizations that forgo those de-optimization hooks?