mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8205528: Base64 encoding algorithm using AVX512 instructions
Reviewed-by: kvn, psandoz
This commit is contained in:
parent
a937d2876b
commit
3feaefd75f
28 changed files with 1851 additions and 23 deletions
|
@ -735,6 +735,9 @@ bool vmIntrinsics::is_disabled_by_flags(vmIntrinsics::ID id) {
|
|||
case vmIntrinsics::_ghash_processBlocks:
|
||||
if (!UseGHASHIntrinsics) return true;
|
||||
break;
|
||||
case vmIntrinsics::_base64_encodeBlock:
|
||||
if (!UseBASE64Intrinsics) return true;
|
||||
break;
|
||||
case vmIntrinsics::_updateBytesCRC32C:
|
||||
case vmIntrinsics::_updateDirectByteBufferCRC32C:
|
||||
if (!UseCRC32CIntrinsics) return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue