RFR: 8341052: SHA-512 implementation using SHA-NI [v2]

Sandhya Viswanathan sviswanathan at openjdk.org
Wed Oct 9 00:18:57 UTC 2024


On Wed, 9 Oct 2024 00:04:38 GMT, Smita Kamath <svkamath at openjdk.org> wrote:

>> 8341052: SHA-512 implementation using SHA-NI
>
> Smita Kamath has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Updated code as per review comment & updated test case

The following comment is still pending:
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-2401027548


More information about the hotspot-dev mailing list