src/share/vm/runtime/stubRoutines.hpp

changeset 6454
6cc7093e1341
parent 6442
b5c8a61d7fa0
parent 5353
b800986664f4
child 6457
94c202aa2646
     1.1 --- a/src/share/vm/runtime/stubRoutines.hpp	Fri Jul 05 22:17:47 2013 +0200
     1.2 +++ b/src/share/vm/runtime/stubRoutines.hpp	Thu Jul 11 12:56:29 2013 -0700
     1.3 @@ -207,6 +207,9 @@
     1.4    static address _cipherBlockChaining_encryptAESCrypt;
     1.5    static address _cipherBlockChaining_decryptAESCrypt;
     1.6  
     1.7 +  static address _updateBytesCRC32;
     1.8 +  static address _crc_table_adr;
     1.9 +
    1.10    // These are versions of the java.lang.Math methods which perform
    1.11    // the same operations as the intrinsic version.  They are used for
    1.12    // constant folding in the compiler to ensure equivalence.  If the
    1.13 @@ -345,6 +348,9 @@
    1.14    static address cipherBlockChaining_encryptAESCrypt()  { return _cipherBlockChaining_encryptAESCrypt; }
    1.15    static address cipherBlockChaining_decryptAESCrypt()  { return _cipherBlockChaining_decryptAESCrypt; }
    1.16  
    1.17 +  static address updateBytesCRC32()    { return _updateBytesCRC32; }
    1.18 +  static address crc_table_addr()      { return _crc_table_adr; }
    1.19 +
    1.20    static address select_fill_function(BasicType t, bool aligned, const char* &name);
    1.21  
    1.22    static address zero_aligned_words()   { return _zero_aligned_words; }

mercurial