RFR: 8341052: SHA-512 implementation using SHA-NI

Sandhya Viswanathan sviswanathan at openjdk.org
Fri Oct 4 18:29:39 UTC 2024


On Mon, 19 Aug 2024 21:34:05 GMT, Smita Kamath <svkamath at openjdk.org> wrote:

> 8341052: SHA-512 implementation using SHA-NI

The line 1306 in vm_version_x86.cpp needs to be changed from:
 if (UseSHA && supports_avx2() && supports_bmi2()) {
to
  if (UseSHA && supports_avx2() && (supports_bmi2() || supports_sha512())) {

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

PR Comment: https://git.openjdk.org/jdk/pull/20633#issuecomment-2394336870


More information about the hotspot-dev mailing list