aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/stubRoutines.hpp
diff options
context:
space:
mode:
authorkvn <none@none>2013-07-11 12:56:29 -0700
committerkvn <none@none>2013-07-11 12:56:29 -0700
commit10c278d8a6ecf5c9d608dbf60126ffdf57ae8787 (patch)
treea334f629c331e4a85fd636480c2bbe79eedd3e21 /src/share/vm/runtime/stubRoutines.hpp
parent41cbeef8bd61f45a41c43672d52e76305d2a1cb7 (diff)
parent460549f6d55d53fd8cb8d9106070205d2d0e9f26 (diff)
downloadjdk8u_hotspot-10c278d8a6ecf5c9d608dbf60126ffdf57ae8787.tar.gz
Merge
Diffstat (limited to 'src/share/vm/runtime/stubRoutines.hpp')
-rw-r--r--src/share/vm/runtime/stubRoutines.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/share/vm/runtime/stubRoutines.hpp b/src/share/vm/runtime/stubRoutines.hpp
index defccd71e..37e780bb0 100644
--- a/src/share/vm/runtime/stubRoutines.hpp
+++ b/src/share/vm/runtime/stubRoutines.hpp
@@ -207,6 +207,9 @@ class StubRoutines: AllStatic {
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
@@ -345,6 +348,9 @@ class StubRoutines: AllStatic {
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; }