< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp

Print this page
rev 50904 : Move Shenandoah stubs generation into ShenandoahBarrierSetAssembler


  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "runtime/deoptimization.hpp"
  28 #include "runtime/frame.inline.hpp"
  29 #include "runtime/stubRoutines.hpp"
  30 #include "runtime/thread.inline.hpp"
  31 #include "utilities/globalDefinitions.hpp"
  32 
  33 // Implementation of the platform-specific part of StubRoutines - for
  34 // a description of how to extend it, see the stubRoutines.hpp file.
  35 
  36 address StubRoutines::aarch64::_shenandoah_wb = NULL;
  37 address StubRoutines::aarch64::_get_previous_fp_entry = NULL;
  38 address StubRoutines::aarch64::_get_previous_sp_entry = NULL;
  39 
  40 address StubRoutines::aarch64::_f2i_fixup = NULL;
  41 address StubRoutines::aarch64::_f2l_fixup = NULL;
  42 address StubRoutines::aarch64::_d2i_fixup = NULL;
  43 address StubRoutines::aarch64::_d2l_fixup = NULL;
  44 address StubRoutines::aarch64::_float_sign_mask = NULL;
  45 address StubRoutines::aarch64::_float_sign_flip = NULL;
  46 address StubRoutines::aarch64::_double_sign_mask = NULL;
  47 address StubRoutines::aarch64::_double_sign_flip = NULL;
  48 address StubRoutines::aarch64::_zero_blocks = NULL;
  49 address StubRoutines::aarch64::_has_negatives = NULL;
  50 address StubRoutines::aarch64::_has_negatives_long = NULL;
  51 address StubRoutines::aarch64::_large_array_equals = NULL;
  52 bool StubRoutines::aarch64::_completed = false;
  53 
  54 /**
  55  *  crc_table[] from jdk/src/share/native/java/util/zip/zlib-1.2.5/crc32.h
  56  */




  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "runtime/deoptimization.hpp"
  28 #include "runtime/frame.inline.hpp"
  29 #include "runtime/stubRoutines.hpp"
  30 #include "runtime/thread.inline.hpp"
  31 #include "utilities/globalDefinitions.hpp"
  32 
  33 // Implementation of the platform-specific part of StubRoutines - for
  34 // a description of how to extend it, see the stubRoutines.hpp file.
  35 

  36 address StubRoutines::aarch64::_get_previous_fp_entry = NULL;
  37 address StubRoutines::aarch64::_get_previous_sp_entry = NULL;
  38 
  39 address StubRoutines::aarch64::_f2i_fixup = NULL;
  40 address StubRoutines::aarch64::_f2l_fixup = NULL;
  41 address StubRoutines::aarch64::_d2i_fixup = NULL;
  42 address StubRoutines::aarch64::_d2l_fixup = NULL;
  43 address StubRoutines::aarch64::_float_sign_mask = NULL;
  44 address StubRoutines::aarch64::_float_sign_flip = NULL;
  45 address StubRoutines::aarch64::_double_sign_mask = NULL;
  46 address StubRoutines::aarch64::_double_sign_flip = NULL;
  47 address StubRoutines::aarch64::_zero_blocks = NULL;
  48 address StubRoutines::aarch64::_has_negatives = NULL;
  49 address StubRoutines::aarch64::_has_negatives_long = NULL;
  50 address StubRoutines::aarch64::_large_array_equals = NULL;
  51 bool StubRoutines::aarch64::_completed = false;
  52 
  53 /**
  54  *  crc_table[] from jdk/src/share/native/java/util/zip/zlib-1.2.5/crc32.h
  55  */


< prev index next >