< prev index next >

src/share/vm/runtime/stubRoutines.cpp

Print this page


   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


 108 
 109 address StubRoutines::_zero_aligned_words = CAST_FROM_FN_PTR(address, Copy::zero_to_words);
 110 
 111 address StubRoutines::_checkcast_arraycopy               = NULL;
 112 address StubRoutines::_checkcast_arraycopy_uninit        = NULL;
 113 address StubRoutines::_unsafe_arraycopy                  = NULL;
 114 address StubRoutines::_generic_arraycopy                 = NULL;
 115 
 116 
 117 address StubRoutines::_jbyte_fill;
 118 address StubRoutines::_jshort_fill;
 119 address StubRoutines::_jint_fill;
 120 address StubRoutines::_arrayof_jbyte_fill;
 121 address StubRoutines::_arrayof_jshort_fill;
 122 address StubRoutines::_arrayof_jint_fill;
 123 
 124 address StubRoutines::_aescrypt_encryptBlock               = NULL;
 125 address StubRoutines::_aescrypt_decryptBlock               = NULL;
 126 address StubRoutines::_cipherBlockChaining_encryptAESCrypt = NULL;
 127 address StubRoutines::_cipherBlockChaining_decryptAESCrypt = NULL;

 128 
 129 address StubRoutines::_sha1_implCompress     = NULL;
 130 address StubRoutines::_sha1_implCompressMB   = NULL;
 131 address StubRoutines::_sha256_implCompress   = NULL;
 132 address StubRoutines::_sha256_implCompressMB = NULL;
 133 address StubRoutines::_sha512_implCompress   = NULL;
 134 address StubRoutines::_sha512_implCompressMB = NULL;
 135 
 136 address StubRoutines::_updateBytesCRC32 = NULL;
 137 address StubRoutines::_crc_table_adr = NULL;
 138 
 139 address StubRoutines::_multiplyToLen = NULL;
 140 
 141 double (* StubRoutines::_intrinsic_log   )(double) = NULL;
 142 double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
 143 double (* StubRoutines::_intrinsic_exp   )(double) = NULL;
 144 double (* StubRoutines::_intrinsic_pow   )(double, double) = NULL;
 145 double (* StubRoutines::_intrinsic_sin   )(double) = NULL;
 146 double (* StubRoutines::_intrinsic_cos   )(double) = NULL;
 147 double (* StubRoutines::_intrinsic_tan   )(double) = NULL;


   1 /*
   2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


 108 
 109 address StubRoutines::_zero_aligned_words = CAST_FROM_FN_PTR(address, Copy::zero_to_words);
 110 
 111 address StubRoutines::_checkcast_arraycopy               = NULL;
 112 address StubRoutines::_checkcast_arraycopy_uninit        = NULL;
 113 address StubRoutines::_unsafe_arraycopy                  = NULL;
 114 address StubRoutines::_generic_arraycopy                 = NULL;
 115 
 116 
 117 address StubRoutines::_jbyte_fill;
 118 address StubRoutines::_jshort_fill;
 119 address StubRoutines::_jint_fill;
 120 address StubRoutines::_arrayof_jbyte_fill;
 121 address StubRoutines::_arrayof_jshort_fill;
 122 address StubRoutines::_arrayof_jint_fill;
 123 
 124 address StubRoutines::_aescrypt_encryptBlock               = NULL;
 125 address StubRoutines::_aescrypt_decryptBlock               = NULL;
 126 address StubRoutines::_cipherBlockChaining_encryptAESCrypt = NULL;
 127 address StubRoutines::_cipherBlockChaining_decryptAESCrypt = NULL;
 128 address StubRoutines::_ghash_processBlocks                 = NULL;
 129 
 130 address StubRoutines::_sha1_implCompress     = NULL;
 131 address StubRoutines::_sha1_implCompressMB   = NULL;
 132 address StubRoutines::_sha256_implCompress   = NULL;
 133 address StubRoutines::_sha256_implCompressMB = NULL;
 134 address StubRoutines::_sha512_implCompress   = NULL;
 135 address StubRoutines::_sha512_implCompressMB = NULL;
 136 
 137 address StubRoutines::_updateBytesCRC32 = NULL;
 138 address StubRoutines::_crc_table_adr = NULL;
 139 
 140 address StubRoutines::_multiplyToLen = NULL;
 141 
 142 double (* StubRoutines::_intrinsic_log   )(double) = NULL;
 143 double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
 144 double (* StubRoutines::_intrinsic_exp   )(double) = NULL;
 145 double (* StubRoutines::_intrinsic_pow   )(double, double) = NULL;
 146 double (* StubRoutines::_intrinsic_sin   )(double) = NULL;
 147 double (* StubRoutines::_intrinsic_cos   )(double) = NULL;
 148 double (* StubRoutines::_intrinsic_tan   )(double) = NULL;


< prev index next >