On Thu, 7 May 2026 02:17:03 GMT, Ashutosh Mehra <[email protected]> wrote:

> supports_sse2 is used to exit VM if the sse2 feature is not present

The check is useless and can go away as well. ABI mandates SSE2, so any 
non-trivial binary has a dependency on it. And graceful failure mode doesn't 
help much here.   

(The check can be turned into a `guarantee(std_cpuid1_edx.bits.sse2 != 0, "")` 
in `VM_Version::CpuidInfo::feature_flags()`.)

-------------

PR Comment: https://git.openjdk.org/jdk/pull/31045#issuecomment-4399051595

Reply via email to