< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp

Print this page
*** 69,10 ***
--- 69,14 ---
  };
  
  /**
   *  crc_table[] from jdk/src/share/native/java/util/zip/zlib-1.2.5/crc32.h
   */
+ 
+ address StubRoutines::crc_table_addr()    { return (address)StubRoutines::aarch64::_crc_table; }
+ address StubRoutines::crc32c_table_addr() { ShouldNotCallThis(); return nullptr; }
+ 
  ATTRIBUTE_ALIGNED(4096) juint StubRoutines::aarch64::_crc_table[] =
  {
      // Table 0
      0x00000000UL, 0x77073096UL, 0xee0e612cUL, 0x990951baUL, 0x076dc419UL,
      0x706af48fUL, 0xe963a535UL, 0x9e6495a3UL, 0x0edb8832UL, 0x79dcb8a4UL,
< prev index next >