hotspot/src/share/vm/runtime/stubRoutines.hpp
changeset 18507 61bfc8995bb3
parent 18025 b7bcf7497f93
child 18740 db44b1599483
child 22820 70660a78baaf
--- a/hotspot/src/share/vm/runtime/stubRoutines.hpp	Tue Jul 02 07:51:31 2013 +0200
+++ b/hotspot/src/share/vm/runtime/stubRoutines.hpp	Tue Jul 02 20:42:12 2013 -0400
@@ -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; }