src/hotspot/share/runtime/stubRoutines.hpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57804 9b7b9f16dfd9
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50860
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4645
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4645
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4645
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50860
diff changeset
    25
#ifndef SHARE_RUNTIME_STUBROUTINES_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50860
diff changeset
    26
#define SHARE_RUNTIME_STUBROUTINES_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    28
#include "code/codeBlob.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    30
#include "runtime/frame.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    31
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    32
#include "runtime/stubCodeGenerator.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38209
diff changeset
    33
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// StubRoutines provides entry points to assembly routines used by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// compiled code and the run-time system. Platform-specific entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// points are defined in the platform-specific inner class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Class scheme:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//    platform-independent               platform-dependent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//    stubRoutines.hpp  <-- included --  stubRoutines_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//           ^                                  ^
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//           |                                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//       implements                         implements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//           |                                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//           |                                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//    stubRoutines.cpp                   stubRoutines_<arch>.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//    stubRoutines_<os_family>.cpp       stubGenerator_<arch>.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//    stubRoutines_<os_arch>.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// Note 1: The important thing is a clean decoupling between stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//         entry points (interfacing to the whole vm; i.e., 1-to-n
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//         relationship) and stub generators (interfacing only to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//         the entry points implementation; i.e., 1-to-1 relationship).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//         This significantly simplifies changes in the generator
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//         structure since the rest of the vm is not affected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Note 2: stubGenerator_<arch>.cpp contains a minimal portion of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//         machine-independent code; namely the generator calls of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//         the generator functions that are used platform-independently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//         However, it comes with the advantage of having a 1-file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//         implementation of the generator. It should be fairly easy
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//         to change, should it become a problem later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// Scheme for adding a new entry point:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// 1. determine if it's a platform-dependent or independent entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
//    a) if platform independent: make subsequent changes in the independent files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
//    b) if platform   dependent: make subsequent changes in the   dependent files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// 2. add a private instance variable holding the entry point address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// 3. add a public accessor function to the instance variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// 4. implement the corresponding generator function in the platform-dependent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
//    stubGenerator_<arch>.cpp file and call the function in generate_all() of that file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    77
class UnsafeCopyMemory : public CHeapObj<mtCode> {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    78
 private:
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    79
  address _start_pc;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    80
  address _end_pc;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    81
  address _error_exit_pc;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    82
 public:
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    83
  static address           _common_exit_stub_pc;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    84
  static UnsafeCopyMemory* _table;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    85
  static int               _table_length;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    86
  static int               _table_max_length;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    87
  UnsafeCopyMemory() : _start_pc(NULL), _end_pc(NULL), _error_exit_pc(NULL) {}
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    88
  void    set_start_pc(address pc)      { _start_pc = pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    89
  void    set_end_pc(address pc)        { _end_pc = pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    90
  void    set_error_exit_pc(address pc) { _error_exit_pc = pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    91
  address start_pc()      const { return _start_pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    92
  address end_pc()        const { return _end_pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    93
  address error_exit_pc() const { return _error_exit_pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    94
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    95
  static void    set_common_exit_stub_pc(address pc) { _common_exit_stub_pc = pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    96
  static address common_exit_stub_pc()               { return _common_exit_stub_pc; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    97
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    98
  static UnsafeCopyMemory* add_to_table(address start_pc, address end_pc, address error_exit_pc) {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
    99
    guarantee(_table_length < _table_max_length, "Incorrect UnsafeCopyMemory::_table_max_length");
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   100
    UnsafeCopyMemory* entry = &_table[_table_length];
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   101
    entry->set_start_pc(start_pc);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   102
    entry->set_end_pc(end_pc);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   103
    entry->set_error_exit_pc(error_exit_pc);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   104
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   105
    _table_length++;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   106
    return entry;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   107
  }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   108
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   109
  static bool    contains_pc(address pc);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   110
  static address page_error_continue_pc(address pc);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   111
  static void    create_table(int max_size);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   112
};
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   113
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   114
class UnsafeCopyMemoryMark : public StackObj {
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   115
 private:
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   116
  UnsafeCopyMemory*  _ucm_entry;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   117
  StubCodeGenerator* _cgen;
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   118
 public:
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   119
  UnsafeCopyMemoryMark(StubCodeGenerator* cgen, bool add_entry, bool continue_at_scope_end, address error_exit_pc = NULL);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   120
  ~UnsafeCopyMemoryMark();
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   121
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
class StubRoutines: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  friend class StubGenerator;
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38209
diff changeset
   128
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38209
diff changeset
   129
#include CPU_HEADER(stubRoutines)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
   130
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  static jint    _verify_oop_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static address _verify_oop_subroutine_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static address _call_stub_return_address;                // the return PC, when returning to a call stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  static address _call_stub_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  static address _forward_exception_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  static address _catch_exception_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static address _throw_AbstractMethodError_entry;
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   139
  static address _throw_IncompatibleClassChangeError_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static address _throw_NullPointerException_at_call_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  static address _throw_StackOverflowError_entry;
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 33485
diff changeset
   142
  static address _throw_delayed_StackOverflowError_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static address _atomic_xchg_entry;
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   145
  static address _atomic_xchg_long_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static address _atomic_store_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  static address _atomic_cmpxchg_entry;
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 26434
diff changeset
   148
  static address _atomic_cmpxchg_byte_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  static address _atomic_cmpxchg_long_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  static address _atomic_add_entry;
48468
7cc7de9bf4a4 8186903: Remove j-types from Atomic
coleenp
parents: 47634
diff changeset
   151
  static address _atomic_add_long_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  static address _fence_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  static address _d2i_wrapper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static address _d2l_wrapper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static jint    _fpu_cntrl_wrd_std;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  static jint    _fpu_cntrl_wrd_24;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  static jint    _fpu_cntrl_wrd_trunc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  static jint    _mxcsr_std;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  static jint    _fpu_subnormal_bias1[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static jint    _fpu_subnormal_bias2[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static BufferBlob* _code1;                               // code buffer for initial routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static BufferBlob* _code2;                               // code buffer for all other routines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Leaf routines which implement arraycopy and their addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // arraycopy operands aligned on element type boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static address _jbyte_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  static address _jshort_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  static address _jint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  static address _jlong_arraycopy;
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   172
  static address _oop_arraycopy, _oop_arraycopy_uninit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static address _jbyte_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  static address _jshort_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  static address _jint_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  static address _jlong_disjoint_arraycopy;
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   177
  static address _oop_disjoint_arraycopy, _oop_disjoint_arraycopy_uninit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // arraycopy operands aligned on zero'th element boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // These are identical to the ones aligned aligned on an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // element type boundary, except that they assume that both
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // source and destination are HeapWord aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  static address _arrayof_jbyte_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  static address _arrayof_jshort_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static address _arrayof_jint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static address _arrayof_jlong_arraycopy;
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   187
  static address _arrayof_oop_arraycopy, _arrayof_oop_arraycopy_uninit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  static address _arrayof_jbyte_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static address _arrayof_jshort_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  static address _arrayof_jint_disjoint_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  static address _arrayof_jlong_disjoint_arraycopy;
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   192
  static address _arrayof_oop_disjoint_arraycopy, _arrayof_oop_disjoint_arraycopy_uninit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   194
  // cache line writeback
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   195
  static address _data_cache_writeback;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   196
  static address _data_cache_writeback_sync;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   197
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // these are recommended but optional:
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   199
  static address _checkcast_arraycopy, _checkcast_arraycopy_uninit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  static address _unsafe_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  static address _generic_arraycopy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   203
  static address _jbyte_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   204
  static address _jshort_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   205
  static address _jint_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   206
  static address _arrayof_jbyte_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   207
  static address _arrayof_jshort_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   208
  static address _arrayof_jint_fill;
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   209
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10004
diff changeset
   210
  // zero heap space aligned to jlong (8 bytes)
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10004
diff changeset
   211
  static address _zero_aligned_words;
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 10004
diff changeset
   212
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   213
  static address _aescrypt_encryptBlock;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   214
  static address _aescrypt_decryptBlock;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   215
  static address _cipherBlockChaining_encryptAESCrypt;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   216
  static address _cipherBlockChaining_decryptAESCrypt;
57786
948ac3112da8 8225625: AES Electronic Codebook (ECB) encryption and decryption optimization using AVX512 + VAES instructions
srukmannagar
parents: 55490
diff changeset
   217
  static address _electronicCodeBook_encryptAESCrypt;
948ac3112da8 8225625: AES Electronic Codebook (ECB) encryption and decryption optimization using AVX512 + VAES instructions
srukmannagar
parents: 55490
diff changeset
   218
  static address _electronicCodeBook_decryptAESCrypt;
35154
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 35146
diff changeset
   219
  static address _counterMode_AESCrypt;
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 31129
diff changeset
   220
  static address _ghash_processBlocks;
50860
480a96a43b62 8205528: Base64 encoding algorithm using AVX512 instructions
kvn
parents: 48468
diff changeset
   221
  static address _base64_encodeBlock;
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   222
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   223
  static address _sha1_implCompress;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   224
  static address _sha1_implCompressMB;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   225
  static address _sha256_implCompress;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   226
  static address _sha256_implCompressMB;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   227
  static address _sha512_implCompress;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   228
  static address _sha512_implCompressMB;
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   229
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   230
  static address _updateBytesCRC32;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   231
  static address _crc_table_adr;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   232
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32581
diff changeset
   233
  static address _crc32c_table_addr;
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
   234
  static address _updateBytesCRC32C;
32581
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31584
diff changeset
   235
  static address _updateBytesAdler32;
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
   236
26434
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25715
diff changeset
   237
  static address _multiplyToLen;
31129
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30129
diff changeset
   238
  static address _squareToLen;
02ee7609f0e1 8081778: Use Intel x64 CPU instructions for RSA acceleration
kvn
parents: 30129
diff changeset
   239
  static address _mulAdd;
31583
eb5bea7b4835 8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents: 31129
diff changeset
   240
  static address _montgomeryMultiply;
eb5bea7b4835 8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents: 31129
diff changeset
   241
  static address _montgomerySquare;
26434
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25715
diff changeset
   242
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 33485
diff changeset
   243
  static address _vectorizedMismatch;
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 33485
diff changeset
   244
33089
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
   245
  static address _dexp;
33465
6063f28a6efb 8139575: Update for x86 log in the math lib
iveresov
parents: 33089
diff changeset
   246
  static address _dlog;
38018
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 35540
diff changeset
   247
  static address _dlog10;
35146
9ebfec283f56 8145688: Update for x86 pow in the math lib
kvn
parents: 35135
diff changeset
   248
  static address _dpow;
35540
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   249
  static address _dsin;
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   250
  static address _dcos;
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   251
  static address _dlibm_sin_cos_huge;
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   252
  static address _dlibm_reduce_pi04l;
38018
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 35540
diff changeset
   253
  static address _dlibm_tan_cot_huge;
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 35540
diff changeset
   254
  static address _dtan;
33089
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
   255
18740
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   256
  // Safefetch stubs.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   257
  static address _safefetch32_entry;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   258
  static address _safefetch32_fault_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   259
  static address _safefetch32_continuation_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   260
  static address _safefetchN_entry;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   261
  static address _safefetchN_fault_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   262
  static address _safefetchN_continuation_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   263
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Initialization/Testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  static void    initialize1();                            // must happen before universe::genesis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  static void    initialize2();                            // must happen after  universe::genesis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14132
diff changeset
   269
  static bool is_stub_code(address addr)                   { return contains(addr); }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14132
diff changeset
   270
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  static bool contains(address addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      (_code1 != NULL && _code1->blob_contains(addr)) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      (_code2 != NULL && _code2->blob_contains(addr)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38051
diff changeset
   277
  static RuntimeBlob* code1() { return _code1; }
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38051
diff changeset
   278
  static RuntimeBlob* code2() { return _code2; }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10545
diff changeset
   279
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  static jint    verify_oop_count()                        { return _verify_oop_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  static jint*   verify_oop_count_addr()                   { return &_verify_oop_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // a subroutine for debugging the GC
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   284
  static address verify_oop_subroutine_entry_address()     { return (address)&_verify_oop_subroutine_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  static address catch_exception_entry()                   { return _catch_exception_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Calls to Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  typedef void (*CallStub)(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    address   link,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    intptr_t* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    BasicType result_type,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   293
    Method* method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    address   entry_point,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    intptr_t* parameters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    int       size_of_parameters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    TRAPS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  static CallStub call_stub()                              { return CAST_TO_FN_PTR(CallStub, _call_stub_entry); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  static address forward_exception_entry()                 { return _forward_exception_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Implicit exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  static address throw_AbstractMethodError_entry()         { return _throw_AbstractMethodError_entry; }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   306
  static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  static address throw_StackOverflowError_entry()          { return _throw_StackOverflowError_entry; }
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 33485
diff changeset
   309
  static address throw_delayed_StackOverflowError_entry()  { return _throw_delayed_StackOverflowError_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  static address atomic_xchg_entry()                       { return _atomic_xchg_entry; }
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   312
  static address atomic_xchg_long_entry()                  { return _atomic_xchg_long_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  static address atomic_store_entry()                      { return _atomic_store_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  static address atomic_cmpxchg_entry()                    { return _atomic_cmpxchg_entry; }
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 26434
diff changeset
   315
  static address atomic_cmpxchg_byte_entry()               { return _atomic_cmpxchg_byte_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  static address atomic_cmpxchg_long_entry()               { return _atomic_cmpxchg_long_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  static address atomic_add_entry()                        { return _atomic_add_entry; }
48468
7cc7de9bf4a4 8186903: Remove j-types from Atomic
coleenp
parents: 47634
diff changeset
   318
  static address atomic_add_long_entry()                   { return _atomic_add_long_entry; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  static address fence_entry()                             { return _fence_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  static address d2i_wrapper()                             { return _d2i_wrapper; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  static address d2l_wrapper()                             { return _d2l_wrapper; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  static jint    fpu_cntrl_wrd_std()                       { return _fpu_cntrl_wrd_std;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  static address addr_fpu_cntrl_wrd_std()                  { return (address)&_fpu_cntrl_wrd_std;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  static address addr_fpu_cntrl_wrd_24()                   { return (address)&_fpu_cntrl_wrd_24;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  static address addr_fpu_cntrl_wrd_trunc()                { return (address)&_fpu_cntrl_wrd_trunc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  static address addr_mxcsr_std()                          { return (address)&_mxcsr_std; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  static address addr_fpu_subnormal_bias1()                { return (address)&_fpu_subnormal_bias1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  static address addr_fpu_subnormal_bias2()                { return (address)&_fpu_subnormal_bias2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8498
diff changeset
   332
  static address select_arraycopy_function(BasicType t, bool aligned, bool disjoint, const char* &name, bool dest_uninitialized);
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8498
diff changeset
   333
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  static address jbyte_arraycopy()  { return _jbyte_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  static address jshort_arraycopy() { return _jshort_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  static address jint_arraycopy()   { return _jint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  static address jlong_arraycopy()  { return _jlong_arraycopy; }
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   338
  static address oop_arraycopy(bool dest_uninitialized = false) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   339
    return dest_uninitialized ? _oop_arraycopy_uninit : _oop_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   340
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  static address jbyte_disjoint_arraycopy()  { return _jbyte_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  static address jshort_disjoint_arraycopy() { return _jshort_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  static address jint_disjoint_arraycopy()   { return _jint_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  static address jlong_disjoint_arraycopy()  { return _jlong_disjoint_arraycopy; }
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   345
  static address oop_disjoint_arraycopy(bool dest_uninitialized = false) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   346
    return dest_uninitialized ?  _oop_disjoint_arraycopy_uninit : _oop_disjoint_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   347
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  static address arrayof_jbyte_arraycopy()  { return _arrayof_jbyte_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  static address arrayof_jshort_arraycopy() { return _arrayof_jshort_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  static address arrayof_jint_arraycopy()   { return _arrayof_jint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  static address arrayof_jlong_arraycopy()  { return _arrayof_jlong_arraycopy; }
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   353
  static address arrayof_oop_arraycopy(bool dest_uninitialized = false) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   354
    return dest_uninitialized ? _arrayof_oop_arraycopy_uninit : _arrayof_oop_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   355
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  static address arrayof_jbyte_disjoint_arraycopy()  { return _arrayof_jbyte_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  static address arrayof_jshort_disjoint_arraycopy() { return _arrayof_jshort_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  static address arrayof_jint_disjoint_arraycopy()   { return _arrayof_jint_disjoint_arraycopy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  static address arrayof_jlong_disjoint_arraycopy()  { return _arrayof_jlong_disjoint_arraycopy; }
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   361
  static address arrayof_oop_disjoint_arraycopy(bool dest_uninitialized = false) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   362
    return dest_uninitialized ? _arrayof_oop_disjoint_arraycopy_uninit : _arrayof_oop_disjoint_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   363
  }
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   364
  static address data_cache_writeback()              { return _data_cache_writeback; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   365
  static address data_cache_writeback_sync()         { return _data_cache_writeback_sync; }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   366
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   367
  typedef void (*DataCacheWritebackStub)(void *);
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   368
  static DataCacheWritebackStub DataCacheWriteback_stub()         { return CAST_TO_FN_PTR(DataCacheWritebackStub,  _data_cache_writeback); }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   369
  typedef void (*DataCacheWritebackSyncStub)(bool);
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   370
  static DataCacheWritebackSyncStub DataCacheWritebackSync_stub() { return CAST_TO_FN_PTR(DataCacheWritebackSyncStub,  _data_cache_writeback_sync); }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 57786
diff changeset
   371
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   372
  static address checkcast_arraycopy(bool dest_uninitialized = false) {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   373
    return dest_uninitialized ? _checkcast_arraycopy_uninit : _checkcast_arraycopy;
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   374
  }
55490
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   375
  static address unsafe_arraycopy()     { return _unsafe_arraycopy; }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   376
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   377
  typedef void (*UnsafeArrayCopyStub)(const void* src, void* dst, size_t count);
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   378
  static UnsafeArrayCopyStub UnsafeArrayCopy_stub()         { return CAST_TO_FN_PTR(UnsafeArrayCopyStub,  _unsafe_arraycopy); }
3f3dc00a69a5 8191278: MappedByteBuffer bulk access memory failures are not handled gracefully
jcm
parents: 53546
diff changeset
   379
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   380
  static address generic_arraycopy()   { return _generic_arraycopy; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   382
  static address jbyte_fill()          { return _jbyte_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   383
  static address jshort_fill()         { return _jshort_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   384
  static address jint_fill()           { return _jint_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   385
  static address arrayof_jbyte_fill()  { return _arrayof_jbyte_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   386
  static address arrayof_jshort_fill() { return _arrayof_jshort_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   387
  static address arrayof_jint_fill()   { return _arrayof_jint_fill; }
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   388
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   389
  static address aescrypt_encryptBlock()                { return _aescrypt_encryptBlock; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   390
  static address aescrypt_decryptBlock()                { return _aescrypt_decryptBlock; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   391
  static address cipherBlockChaining_encryptAESCrypt()  { return _cipherBlockChaining_encryptAESCrypt; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13728
diff changeset
   392
  static address cipherBlockChaining_decryptAESCrypt()  { return _cipherBlockChaining_decryptAESCrypt; }
57786
948ac3112da8 8225625: AES Electronic Codebook (ECB) encryption and decryption optimization using AVX512 + VAES instructions
srukmannagar
parents: 55490
diff changeset
   393
  static address electronicCodeBook_encryptAESCrypt()   { return _electronicCodeBook_encryptAESCrypt; }
948ac3112da8 8225625: AES Electronic Codebook (ECB) encryption and decryption optimization using AVX512 + VAES instructions
srukmannagar
parents: 55490
diff changeset
   394
  static address electronicCodeBook_decryptAESCrypt()   { return _electronicCodeBook_decryptAESCrypt; }
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   395
  static address counterMode_AESCrypt()  { return _counterMode_AESCrypt; }
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   396
  static address ghash_processBlocks()   { return _ghash_processBlocks; }
50860
480a96a43b62 8205528: Base64 encoding algorithm using AVX512 instructions
kvn
parents: 48468
diff changeset
   397
  static address base64_encodeBlock()    { return _base64_encodeBlock; }
24953
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   398
  static address sha1_implCompress()     { return _sha1_implCompress; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   399
  static address sha1_implCompressMB()   { return _sha1_implCompressMB; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   400
  static address sha256_implCompress()   { return _sha256_implCompress; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   401
  static address sha256_implCompressMB() { return _sha256_implCompressMB; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   402
  static address sha512_implCompress()   { return _sha512_implCompress; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   403
  static address sha512_implCompressMB() { return _sha512_implCompressMB; }
9680119572be 8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents: 22823
diff changeset
   404
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   405
  static address updateBytesCRC32()    { return _updateBytesCRC32; }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   406
  static address crc_table_addr()      { return _crc_table_adr; }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents: 18025
diff changeset
   407
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 32581
diff changeset
   408
  static address crc32c_table_addr()   { return _crc32c_table_addr; }
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
   409
  static address updateBytesCRC32C()   { return _updateBytesCRC32C; }
32581
632402f18fe6 8132081: C2 support for Adler32 on SPARC
kvn
parents: 31584
diff changeset
   410
  static address updateBytesAdler32()  { return _updateBytesAdler32; }
31515
6aed85dadbe6 8073583: C2 support for CRC32C on SPARC
kvn
parents: 31404
diff changeset
   411
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   412
  static address multiplyToLen()       { return _multiplyToLen; }
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   413
  static address squareToLen()         { return _squareToLen; }
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   414
  static address mulAdd()              { return _mulAdd; }
31583
eb5bea7b4835 8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents: 31129
diff changeset
   415
  static address montgomeryMultiply()  { return _montgomeryMultiply; }
eb5bea7b4835 8130150: Implement BigInteger.montgomeryMultiply intrinsic
aph
parents: 31129
diff changeset
   416
  static address montgomerySquare()    { return _montgomerySquare; }
26434
09ad55e5f486 8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method
kvn
parents: 25715
diff changeset
   417
35110
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 33485
diff changeset
   418
  static address vectorizedMismatch()  { return _vectorizedMismatch; }
f19bcdf40799 8143355: Update for addition of vectorizedMismatch intrinsic for x86
kvn
parents: 33485
diff changeset
   419
33465
6063f28a6efb 8139575: Update for x86 log in the math lib
iveresov
parents: 33089
diff changeset
   420
  static address dexp()                { return _dexp; }
6063f28a6efb 8139575: Update for x86 log in the math lib
iveresov
parents: 33089
diff changeset
   421
  static address dlog()                { return _dlog; }
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   422
  static address dlog10()              { return _dlog10; }
35146
9ebfec283f56 8145688: Update for x86 pow in the math lib
kvn
parents: 35135
diff changeset
   423
  static address dpow()                { return _dpow; }
35540
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   424
  static address dsin()                { return _dsin; }
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   425
  static address dcos()                { return _dcos; }
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   426
  static address dlibm_reduce_pi04l()  { return _dlibm_reduce_pi04l; }
e001ad24dcdb 8143353: update for x86 sin and cos in the math lib
vdeshpande
parents: 35154
diff changeset
   427
  static address dlibm_sin_cos_huge()  { return _dlibm_sin_cos_huge; }
38018
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 35540
diff changeset
   428
  static address dlibm_tan_cot_huge()  { return _dlibm_tan_cot_huge; }
1dc6c6f21231 8152907: Update for x86 tan and log10 in the math lib
vdeshpande
parents: 35540
diff changeset
   429
  static address dtan()                { return _dtan; }
33089
f4e956ed8b43 8132207: update for x86 exp in the math lib
iveresov
parents: 33066
diff changeset
   430
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   431
  static address select_fill_function(BasicType t, bool aligned, const char* &name);
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   432
46597
d669fb842ae3 8164888: Intrinsify fused mac operations on SPARC
neliasso
parents: 40010
diff changeset
   433
  static address zero_aligned_words()  { return _zero_aligned_words; }
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 5547
diff changeset
   434
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  //
18740
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   436
  // Safefetch stub support
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   437
  //
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   438
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   439
  typedef int      (*SafeFetch32Stub)(int*      adr, int      errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   440
  typedef intptr_t (*SafeFetchNStub) (intptr_t* adr, intptr_t errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   441
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   442
  static SafeFetch32Stub SafeFetch32_stub() { return CAST_TO_FN_PTR(SafeFetch32Stub, _safefetch32_entry); }
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   443
  static SafeFetchNStub  SafeFetchN_stub()  { return CAST_TO_FN_PTR(SafeFetchNStub,  _safefetchN_entry); }
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   444
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   445
  static bool is_safefetch_fault(address pc) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   446
    return pc != NULL &&
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   447
          (pc == _safefetch32_fault_pc ||
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   448
           pc == _safefetchN_fault_pc);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   449
  }
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   450
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   451
  static address continuation_for_safefetch_fault(address pc) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   452
    assert(_safefetch32_continuation_pc != NULL &&
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   453
           _safefetchN_continuation_pc  != NULL,
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   454
           "not initialized");
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   455
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   456
    if (pc == _safefetch32_fault_pc) return _safefetch32_continuation_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   457
    if (pc == _safefetchN_fault_pc)  return _safefetchN_continuation_pc;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   458
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   459
    ShouldNotReachHere();
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   460
    return NULL;
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   461
  }
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   462
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   463
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  // Default versions of the above arraycopy functions for platforms which do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // not have specialized versions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  //
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   467
  static void jbyte_copy     (jbyte*  src, jbyte*  dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   468
  static void jshort_copy    (jshort* src, jshort* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   469
  static void jint_copy      (jint*   src, jint*   dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   470
  static void jlong_copy     (jlong*  src, jlong*  dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   471
  static void oop_copy       (oop*    src, oop*    dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   472
  static void oop_copy_uninit(oop*    src, oop*    dest, size_t count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   474
  static void arrayof_jbyte_copy     (HeapWord* src, HeapWord* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   475
  static void arrayof_jshort_copy    (HeapWord* src, HeapWord* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   476
  static void arrayof_jint_copy      (HeapWord* src, HeapWord* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   477
  static void arrayof_jlong_copy     (HeapWord* src, HeapWord* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   478
  static void arrayof_oop_copy       (HeapWord* src, HeapWord* dest, size_t count);
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 8107
diff changeset
   479
  static void arrayof_oop_copy_uninit(HeapWord* src, HeapWord* dest, size_t count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
   481
18740
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   482
// Safefetch allows to load a value from a location that's not known
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   483
// to be valid. If the load causes a fault, the error value is returned.
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   484
inline int SafeFetch32(int* adr, int errValue) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   485
  assert(StubRoutines::SafeFetch32_stub(), "stub not yet generated");
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   486
  return StubRoutines::SafeFetch32_stub()(adr, errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   487
}
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   488
inline intptr_t SafeFetchN(intptr_t* adr, intptr_t errValue) {
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   489
  assert(StubRoutines::SafeFetchN_stub(), "stub not yet generated");
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   490
  return StubRoutines::SafeFetchN_stub()(adr, errValue);
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   491
}
db44b1599483 8016697: Use stubs to implement safefetch
goetz
parents: 18507
diff changeset
   492
29573
2d800e5d575f 8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents: 29181
diff changeset
   493
2d800e5d575f 8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents: 29181
diff changeset
   494
// returns true if SafeFetch32 and SafeFetchN can be used safely (stubroutines are already generated)
30118
dadad0daaab4 8075967: Zero interpreter asserts for SafeFetch<32,N> calls in ObjectMonitor
coleenp
parents: 29575
diff changeset
   495
inline bool CanUseSafeFetch32() {
30129
351788433103 8076185: Provide SafeFetchX implementation for zero
dholmes
parents: 30118
diff changeset
   496
  return StubRoutines::SafeFetch32_stub() ? true : false;
30118
dadad0daaab4 8075967: Zero interpreter asserts for SafeFetch<32,N> calls in ObjectMonitor
coleenp
parents: 29575
diff changeset
   497
}
29573
2d800e5d575f 8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents: 29181
diff changeset
   498
30129
351788433103 8076185: Provide SafeFetchX implementation for zero
dholmes
parents: 30118
diff changeset
   499
inline bool CanUseSafeFetchN() {
351788433103 8076185: Provide SafeFetchX implementation for zero
dholmes
parents: 30118
diff changeset
   500
  return StubRoutines::SafeFetchN_stub() ? true : false;
30118
dadad0daaab4 8075967: Zero interpreter asserts for SafeFetch<32,N> calls in ObjectMonitor
coleenp
parents: 29575
diff changeset
   501
}
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50860
diff changeset
   502
#endif // SHARE_RUNTIME_STUBROUTINES_HPP