mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
8134553: CRC32C implementations for x86/x64 targets
Reviewed-by: kvn
This commit is contained in:
parent
d49d1ea740
commit
61b77b8590
24 changed files with 1092 additions and 19 deletions
|
@ -197,6 +197,7 @@ class StubRoutines: AllStatic {
|
|||
static address _updateBytesCRC32;
|
||||
static address _crc_table_adr;
|
||||
|
||||
static address _crc32c_table_addr;
|
||||
static address _updateBytesCRC32C;
|
||||
static address _updateBytesAdler32;
|
||||
|
||||
|
@ -364,6 +365,7 @@ class StubRoutines: AllStatic {
|
|||
static address updateBytesCRC32() { return _updateBytesCRC32; }
|
||||
static address crc_table_addr() { return _crc_table_adr; }
|
||||
|
||||
static address crc32c_table_addr() { return _crc32c_table_addr; }
|
||||
static address updateBytesCRC32C() { return _updateBytesCRC32C; }
|
||||
static address updateBytesAdler32() { return _updateBytesAdler32; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue