< prev index next > src/hotspot/cpu/riscv/stubRoutines_riscv.cpp
Print this page
bool StubRoutines::riscv::_completed = false;
/**
* crc_table[] from jdk/src/java.base/share/native/libzip/zlib/crc32.h
*/
+
+ address StubRoutines::crc_table_addr() { return (address)StubRoutines::riscv::_crc_table; }
+ address StubRoutines::crc32c_table_addr() { ShouldNotCallThis(); return nullptr; }
+
ATTRIBUTE_ALIGNED(4096) juint StubRoutines::riscv::_crc_table[] =
{
// Table 0
0x00000000UL, 0x77073096UL, 0xee0e612cUL, 0x990951baUL, 0x076dc419UL,
0x706af48fUL, 0xe963a535UL, 0x9e6495a3UL, 0x0edb8832UL, 0x79dcb8a4UL,
< prev index next >