RFR: 8278874: tighten VerifyStack constraints [v2]
Dean Long
dlong at openjdk.org
Wed Jul 23 21:42:54 UTC 2025
On Fri, 4 Jul 2025 02:33:33 GMT, Dean Long <dlong at openjdk.org> wrote:
>> The VerifyStack logic in Deoptimization::unpack_frames() attempts to check the expression stack size of the interpreter frame against what GenerateOopMap computes. To do this, it needs to know if the state at the current bci represents the "before" state, meaning the bytecode will be reexecuted, or the "after" state, meaning we will advance to the next bytecode. The old code didn't know how to determine exactly what state we were in, so it checked both. This PR cleans that up, so we only have to compute the oopmap once. It also removes old SPARC support.
>
> Dean Long has updated the pull request incrementally with one additional commit since the last revision:
>
> fix optimized build
@eme64 and @mhaessig, this is somewhat a followup to 8336906, so you may be the best candidates to volunteer to look at this :-)
-------------
PR Comment: https://git.openjdk.org/jdk/pull/26121#issuecomment-3110272992
More information about the hotspot-compiler-dev
mailing list