diff src/share/vm/runtime/stubRoutines.hpp @ 11083:8b789ce47503

Merge
author roland
date Thu, 04 Jul 2013 01:42:34 -0700
parents b800986664f4
children 980532a806a5 6cc7093e1341
line wrap: on
line diff
--- a/src/share/vm/runtime/stubRoutines.hpp	Wed Jul 03 15:04:53 2013 -0700
+++ b/src/share/vm/runtime/stubRoutines.hpp	Thu Jul 04 01:42:34 2013 -0700
@@ -204,6 +204,9 @@
   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
@@ -342,6 +345,9 @@
   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; }