src/share/vm/runtime/stubRoutines.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7088419 Cdiff src/share/vm/runtime/stubRoutines.hpp

src/share/vm/runtime/stubRoutines.hpp

Print this page

        

*** 202,211 **** --- 202,214 ---- static address _aescrypt_encryptBlock; static address _aescrypt_decryptBlock; static address _cipherBlockChaining_encryptAESCrypt; static address _cipherBlockChaining_decryptAESCrypt; + static address _updateBytesCRC32; + static address _crc_table_adr; + // These are versions of the java.lang.Math methods which perform // the same operations as the intrinsic version. They are used for // constant folding in the compiler to ensure equivalence. If the // intrinsic version returns the same result as the strict version // then they can be set to the appropriate function from
*** 340,349 **** --- 343,355 ---- static address aescrypt_encryptBlock() { return _aescrypt_encryptBlock; } static address aescrypt_decryptBlock() { return _aescrypt_decryptBlock; } static address cipherBlockChaining_encryptAESCrypt() { return _cipherBlockChaining_encryptAESCrypt; } static address cipherBlockChaining_decryptAESCrypt() { return _cipherBlockChaining_decryptAESCrypt; } + static address updateBytesCRC32() { return _updateBytesCRC32; } + static address crc_table_addr() { return _crc_table_adr; } + static address select_fill_function(BasicType t, bool aligned, const char* &name); static address zero_aligned_words() { return _zero_aligned_words; } static double intrinsic_log(double d) {
src/share/vm/runtime/stubRoutines.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File