src/share/vm/runtime/stubRoutines.hpp

Mon, 03 Jan 2011 14:09:11 -0500

author
coleenp
date
Mon, 03 Jan 2011 14:09:11 -0500
changeset 2418
36c186bcc085
parent 2314
f95d63e2154a
child 2508
b92c45f2bc75
permissions
-rw-r--r--

6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
Summary: enhance the error reporting mechanism to help user to fix the problem rather than making it look like a VM error.
Reviewed-by: kvn, kamg

duke@435 1 /*
trims@1907 2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_RUNTIME_STUBROUTINES_HPP
stefank@2314 26 #define SHARE_VM_RUNTIME_STUBROUTINES_HPP
stefank@2314 27
stefank@2314 28 #include "code/codeBlob.hpp"
stefank@2314 29 #include "memory/allocation.hpp"
stefank@2314 30 #include "runtime/frame.hpp"
stefank@2314 31 #include "runtime/mutexLocker.hpp"
stefank@2314 32 #include "runtime/stubCodeGenerator.hpp"
stefank@2314 33 #include "utilities/top.hpp"
stefank@2314 34 #ifdef TARGET_ARCH_x86
stefank@2314 35 # include "nativeInst_x86.hpp"
stefank@2314 36 #endif
stefank@2314 37 #ifdef TARGET_ARCH_sparc
stefank@2314 38 # include "nativeInst_sparc.hpp"
stefank@2314 39 #endif
stefank@2314 40 #ifdef TARGET_ARCH_zero
stefank@2314 41 # include "nativeInst_zero.hpp"
stefank@2314 42 #endif
stefank@2314 43
duke@435 44 // StubRoutines provides entry points to assembly routines used by
duke@435 45 // compiled code and the run-time system. Platform-specific entry
duke@435 46 // points are defined in the platform-specific inner class.
duke@435 47 //
duke@435 48 // Class scheme:
duke@435 49 //
duke@435 50 // platform-independent platform-dependent
duke@435 51 //
duke@435 52 // stubRoutines.hpp <-- included -- stubRoutines_<arch>.hpp
duke@435 53 // ^ ^
duke@435 54 // | |
duke@435 55 // implements implements
duke@435 56 // | |
duke@435 57 // | |
duke@435 58 // stubRoutines.cpp stubRoutines_<arch>.cpp
duke@435 59 // stubRoutines_<os_family>.cpp stubGenerator_<arch>.cpp
duke@435 60 // stubRoutines_<os_arch>.cpp
duke@435 61 //
duke@435 62 // Note 1: The important thing is a clean decoupling between stub
duke@435 63 // entry points (interfacing to the whole vm; i.e., 1-to-n
duke@435 64 // relationship) and stub generators (interfacing only to
duke@435 65 // the entry points implementation; i.e., 1-to-1 relationship).
duke@435 66 // This significantly simplifies changes in the generator
duke@435 67 // structure since the rest of the vm is not affected.
duke@435 68 //
duke@435 69 // Note 2: stubGenerator_<arch>.cpp contains a minimal portion of
duke@435 70 // machine-independent code; namely the generator calls of
duke@435 71 // the generator functions that are used platform-independently.
duke@435 72 // However, it comes with the advantage of having a 1-file
duke@435 73 // implementation of the generator. It should be fairly easy
duke@435 74 // to change, should it become a problem later.
duke@435 75 //
duke@435 76 // Scheme for adding a new entry point:
duke@435 77 //
duke@435 78 // 1. determine if it's a platform-dependent or independent entry point
duke@435 79 // a) if platform independent: make subsequent changes in the independent files
duke@435 80 // b) if platform dependent: make subsequent changes in the dependent files
duke@435 81 // 2. add a private instance variable holding the entry point address
duke@435 82 // 3. add a public accessor function to the instance variable
duke@435 83 // 4. implement the corresponding generator function in the platform-dependent
duke@435 84 // stubGenerator_<arch>.cpp file and call the function in generate_all() of that file
duke@435 85
duke@435 86
duke@435 87 class StubRoutines: AllStatic {
duke@435 88
duke@435 89 public:
duke@435 90 enum platform_independent_constants {
duke@435 91 max_size_of_parameters = 256 // max. parameter size supported by megamorphic lookups
duke@435 92 };
duke@435 93
duke@435 94 // Dependencies
duke@435 95 friend class StubGenerator;
stefank@2314 96 #ifdef TARGET_ARCH_MODEL_x86_32
stefank@2314 97 # include "stubRoutines_x86_32.hpp"
stefank@2314 98 #endif
stefank@2314 99 #ifdef TARGET_ARCH_MODEL_x86_64
stefank@2314 100 # include "stubRoutines_x86_64.hpp"
stefank@2314 101 #endif
stefank@2314 102 #ifdef TARGET_ARCH_MODEL_sparc
stefank@2314 103 # include "stubRoutines_sparc.hpp"
stefank@2314 104 #endif
stefank@2314 105 #ifdef TARGET_ARCH_MODEL_zero
stefank@2314 106 # include "stubRoutines_zero.hpp"
stefank@2314 107 #endif
stefank@2314 108
duke@435 109
duke@435 110 static jint _verify_oop_count;
duke@435 111 static address _verify_oop_subroutine_entry;
duke@435 112
duke@435 113 static address _call_stub_return_address; // the return PC, when returning to a call stub
duke@435 114 static address _call_stub_entry;
duke@435 115 static address _forward_exception_entry;
duke@435 116 static address _catch_exception_entry;
duke@435 117 static address _throw_AbstractMethodError_entry;
dcubed@451 118 static address _throw_IncompatibleClassChangeError_entry;
duke@435 119 static address _throw_ArithmeticException_entry;
duke@435 120 static address _throw_NullPointerException_entry;
duke@435 121 static address _throw_NullPointerException_at_call_entry;
duke@435 122 static address _throw_StackOverflowError_entry;
duke@435 123 static address _handler_for_unsafe_access_entry;
duke@435 124
duke@435 125 static address _atomic_xchg_entry;
duke@435 126 static address _atomic_xchg_ptr_entry;
duke@435 127 static address _atomic_store_entry;
duke@435 128 static address _atomic_store_ptr_entry;
duke@435 129 static address _atomic_cmpxchg_entry;
duke@435 130 static address _atomic_cmpxchg_ptr_entry;
duke@435 131 static address _atomic_cmpxchg_long_entry;
duke@435 132 static address _atomic_add_entry;
duke@435 133 static address _atomic_add_ptr_entry;
duke@435 134 static address _fence_entry;
duke@435 135 static address _d2i_wrapper;
duke@435 136 static address _d2l_wrapper;
duke@435 137
duke@435 138 static jint _fpu_cntrl_wrd_std;
duke@435 139 static jint _fpu_cntrl_wrd_24;
duke@435 140 static jint _fpu_cntrl_wrd_64;
duke@435 141 static jint _fpu_cntrl_wrd_trunc;
duke@435 142 static jint _mxcsr_std;
duke@435 143 static jint _fpu_subnormal_bias1[3];
duke@435 144 static jint _fpu_subnormal_bias2[3];
duke@435 145
duke@435 146 static BufferBlob* _code1; // code buffer for initial routines
duke@435 147 static BufferBlob* _code2; // code buffer for all other routines
duke@435 148
duke@435 149 // Leaf routines which implement arraycopy and their addresses
duke@435 150 // arraycopy operands aligned on element type boundary
duke@435 151 static address _jbyte_arraycopy;
duke@435 152 static address _jshort_arraycopy;
duke@435 153 static address _jint_arraycopy;
duke@435 154 static address _jlong_arraycopy;
duke@435 155 static address _oop_arraycopy;
duke@435 156 static address _jbyte_disjoint_arraycopy;
duke@435 157 static address _jshort_disjoint_arraycopy;
duke@435 158 static address _jint_disjoint_arraycopy;
duke@435 159 static address _jlong_disjoint_arraycopy;
duke@435 160 static address _oop_disjoint_arraycopy;
duke@435 161
duke@435 162 // arraycopy operands aligned on zero'th element boundary
duke@435 163 // These are identical to the ones aligned aligned on an
duke@435 164 // element type boundary, except that they assume that both
duke@435 165 // source and destination are HeapWord aligned.
duke@435 166 static address _arrayof_jbyte_arraycopy;
duke@435 167 static address _arrayof_jshort_arraycopy;
duke@435 168 static address _arrayof_jint_arraycopy;
duke@435 169 static address _arrayof_jlong_arraycopy;
duke@435 170 static address _arrayof_oop_arraycopy;
duke@435 171 static address _arrayof_jbyte_disjoint_arraycopy;
duke@435 172 static address _arrayof_jshort_disjoint_arraycopy;
duke@435 173 static address _arrayof_jint_disjoint_arraycopy;
duke@435 174 static address _arrayof_jlong_disjoint_arraycopy;
duke@435 175 static address _arrayof_oop_disjoint_arraycopy;
duke@435 176
duke@435 177 // these are recommended but optional:
duke@435 178 static address _checkcast_arraycopy;
duke@435 179 static address _unsafe_arraycopy;
duke@435 180 static address _generic_arraycopy;
duke@435 181
never@2118 182 static address _jbyte_fill;
never@2118 183 static address _jshort_fill;
never@2118 184 static address _jint_fill;
never@2118 185 static address _arrayof_jbyte_fill;
never@2118 186 static address _arrayof_jshort_fill;
never@2118 187 static address _arrayof_jint_fill;
never@2118 188
never@1609 189 // These are versions of the java.lang.Math methods which perform
never@1609 190 // the same operations as the intrinsic version. They are used for
never@1609 191 // constant folding in the compiler to ensure equivalence. If the
never@1609 192 // intrinsic version returns the same result as the strict version
never@1609 193 // then they can be set to the appropriate function from
never@1609 194 // SharedRuntime.
never@1609 195 static double (*_intrinsic_log)(double);
never@1609 196 static double (*_intrinsic_log10)(double);
never@1609 197 static double (*_intrinsic_exp)(double);
never@1609 198 static double (*_intrinsic_pow)(double, double);
never@1609 199 static double (*_intrinsic_sin)(double);
never@1609 200 static double (*_intrinsic_cos)(double);
never@1609 201 static double (*_intrinsic_tan)(double);
never@1609 202
duke@435 203 public:
duke@435 204 // Initialization/Testing
duke@435 205 static void initialize1(); // must happen before universe::genesis
duke@435 206 static void initialize2(); // must happen after universe::genesis
duke@435 207
duke@435 208 static bool contains(address addr) {
duke@435 209 return
duke@435 210 (_code1 != NULL && _code1->blob_contains(addr)) ||
duke@435 211 (_code2 != NULL && _code2->blob_contains(addr)) ;
duke@435 212 }
duke@435 213
duke@435 214 // Debugging
duke@435 215 static jint verify_oop_count() { return _verify_oop_count; }
duke@435 216 static jint* verify_oop_count_addr() { return &_verify_oop_count; }
duke@435 217 // a subroutine for debugging the GC
duke@435 218 static address verify_oop_subroutine_entry_address() { return (address)&_verify_oop_subroutine_entry; }
duke@435 219
duke@435 220 static address catch_exception_entry() { return _catch_exception_entry; }
duke@435 221
duke@435 222 // Calls to Java
duke@435 223 typedef void (*CallStub)(
duke@435 224 address link,
duke@435 225 intptr_t* result,
duke@435 226 BasicType result_type,
duke@435 227 methodOopDesc* method,
duke@435 228 address entry_point,
duke@435 229 intptr_t* parameters,
duke@435 230 int size_of_parameters,
duke@435 231 TRAPS
duke@435 232 );
duke@435 233
duke@435 234 static CallStub call_stub() { return CAST_TO_FN_PTR(CallStub, _call_stub_entry); }
duke@435 235
duke@435 236 // Exceptions
duke@435 237 static address forward_exception_entry() { return _forward_exception_entry; }
duke@435 238 // Implicit exceptions
duke@435 239 static address throw_AbstractMethodError_entry() { return _throw_AbstractMethodError_entry; }
dcubed@451 240 static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; }
duke@435 241 static address throw_ArithmeticException_entry() { return _throw_ArithmeticException_entry; }
duke@435 242 static address throw_NullPointerException_entry() { return _throw_NullPointerException_entry; }
duke@435 243 static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; }
duke@435 244 static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; }
duke@435 245
duke@435 246 // Exceptions during unsafe access - should throw Java exception rather
duke@435 247 // than crash.
duke@435 248 static address handler_for_unsafe_access() { return _handler_for_unsafe_access_entry; }
duke@435 249
duke@435 250 static address atomic_xchg_entry() { return _atomic_xchg_entry; }
duke@435 251 static address atomic_xchg_ptr_entry() { return _atomic_xchg_ptr_entry; }
duke@435 252 static address atomic_store_entry() { return _atomic_store_entry; }
duke@435 253 static address atomic_store_ptr_entry() { return _atomic_store_ptr_entry; }
duke@435 254 static address atomic_cmpxchg_entry() { return _atomic_cmpxchg_entry; }
duke@435 255 static address atomic_cmpxchg_ptr_entry() { return _atomic_cmpxchg_ptr_entry; }
duke@435 256 static address atomic_cmpxchg_long_entry() { return _atomic_cmpxchg_long_entry; }
duke@435 257 static address atomic_add_entry() { return _atomic_add_entry; }
duke@435 258 static address atomic_add_ptr_entry() { return _atomic_add_ptr_entry; }
duke@435 259 static address fence_entry() { return _fence_entry; }
duke@435 260
duke@435 261 static address d2i_wrapper() { return _d2i_wrapper; }
duke@435 262 static address d2l_wrapper() { return _d2l_wrapper; }
duke@435 263 static jint fpu_cntrl_wrd_std() { return _fpu_cntrl_wrd_std; }
duke@435 264 static address addr_fpu_cntrl_wrd_std() { return (address)&_fpu_cntrl_wrd_std; }
duke@435 265 static address addr_fpu_cntrl_wrd_24() { return (address)&_fpu_cntrl_wrd_24; }
duke@435 266 static address addr_fpu_cntrl_wrd_64() { return (address)&_fpu_cntrl_wrd_64; }
duke@435 267 static address addr_fpu_cntrl_wrd_trunc() { return (address)&_fpu_cntrl_wrd_trunc; }
duke@435 268 static address addr_mxcsr_std() { return (address)&_mxcsr_std; }
duke@435 269 static address addr_fpu_subnormal_bias1() { return (address)&_fpu_subnormal_bias1; }
duke@435 270 static address addr_fpu_subnormal_bias2() { return (address)&_fpu_subnormal_bias2; }
duke@435 271
duke@435 272
duke@435 273 static address jbyte_arraycopy() { return _jbyte_arraycopy; }
duke@435 274 static address jshort_arraycopy() { return _jshort_arraycopy; }
duke@435 275 static address jint_arraycopy() { return _jint_arraycopy; }
duke@435 276 static address jlong_arraycopy() { return _jlong_arraycopy; }
duke@435 277 static address oop_arraycopy() { return _oop_arraycopy; }
duke@435 278 static address jbyte_disjoint_arraycopy() { return _jbyte_disjoint_arraycopy; }
duke@435 279 static address jshort_disjoint_arraycopy() { return _jshort_disjoint_arraycopy; }
duke@435 280 static address jint_disjoint_arraycopy() { return _jint_disjoint_arraycopy; }
duke@435 281 static address jlong_disjoint_arraycopy() { return _jlong_disjoint_arraycopy; }
duke@435 282 static address oop_disjoint_arraycopy() { return _oop_disjoint_arraycopy; }
duke@435 283
duke@435 284 static address arrayof_jbyte_arraycopy() { return _arrayof_jbyte_arraycopy; }
duke@435 285 static address arrayof_jshort_arraycopy() { return _arrayof_jshort_arraycopy; }
duke@435 286 static address arrayof_jint_arraycopy() { return _arrayof_jint_arraycopy; }
duke@435 287 static address arrayof_jlong_arraycopy() { return _arrayof_jlong_arraycopy; }
duke@435 288 static address arrayof_oop_arraycopy() { return _arrayof_oop_arraycopy; }
duke@435 289
duke@435 290 static address arrayof_jbyte_disjoint_arraycopy() { return _arrayof_jbyte_disjoint_arraycopy; }
duke@435 291 static address arrayof_jshort_disjoint_arraycopy() { return _arrayof_jshort_disjoint_arraycopy; }
duke@435 292 static address arrayof_jint_disjoint_arraycopy() { return _arrayof_jint_disjoint_arraycopy; }
duke@435 293 static address arrayof_jlong_disjoint_arraycopy() { return _arrayof_jlong_disjoint_arraycopy; }
duke@435 294 static address arrayof_oop_disjoint_arraycopy() { return _arrayof_oop_disjoint_arraycopy; }
duke@435 295
duke@435 296 static address checkcast_arraycopy() { return _checkcast_arraycopy; }
duke@435 297 static address unsafe_arraycopy() { return _unsafe_arraycopy; }
duke@435 298 static address generic_arraycopy() { return _generic_arraycopy; }
duke@435 299
never@2118 300 static address jbyte_fill() { return _jbyte_fill; }
never@2118 301 static address jshort_fill() { return _jshort_fill; }
never@2118 302 static address jint_fill() { return _jint_fill; }
never@2118 303 static address arrayof_jbyte_fill() { return _arrayof_jbyte_fill; }
never@2118 304 static address arrayof_jshort_fill() { return _arrayof_jshort_fill; }
never@2118 305 static address arrayof_jint_fill() { return _arrayof_jint_fill; }
never@2118 306
never@2118 307 static address select_fill_function(BasicType t, bool aligned, const char* &name);
never@2118 308
never@2118 309
never@1609 310 static double intrinsic_log(double d) {
never@1609 311 assert(_intrinsic_log != NULL, "must be defined");
never@1609 312 return _intrinsic_log(d);
never@1609 313 }
never@1609 314 static double intrinsic_log10(double d) {
never@1609 315 assert(_intrinsic_log != NULL, "must be defined");
never@1609 316 return _intrinsic_log10(d);
never@1609 317 }
never@1609 318 static double intrinsic_exp(double d) {
never@1609 319 assert(_intrinsic_exp != NULL, "must be defined");
never@1609 320 return _intrinsic_exp(d);
never@1609 321 }
never@1609 322 static double intrinsic_pow(double d, double d2) {
never@1609 323 assert(_intrinsic_pow != NULL, "must be defined");
never@1609 324 return _intrinsic_pow(d, d2);
never@1609 325 }
never@1609 326 static double intrinsic_sin(double d) {
never@1609 327 assert(_intrinsic_sin != NULL, "must be defined");
never@1609 328 return _intrinsic_sin(d);
never@1609 329 }
never@1609 330 static double intrinsic_cos(double d) {
never@1609 331 assert(_intrinsic_cos != NULL, "must be defined");
never@1609 332 return _intrinsic_cos(d);
never@1609 333 }
never@1609 334 static double intrinsic_tan(double d) {
never@1609 335 assert(_intrinsic_tan != NULL, "must be defined");
never@1609 336 return _intrinsic_tan(d);
never@1609 337 }
never@1609 338
duke@435 339 //
duke@435 340 // Default versions of the above arraycopy functions for platforms which do
duke@435 341 // not have specialized versions
duke@435 342 //
duke@435 343 static void jbyte_copy (jbyte* src, jbyte* dest, size_t count);
duke@435 344 static void jshort_copy(jshort* src, jshort* dest, size_t count);
duke@435 345 static void jint_copy (jint* src, jint* dest, size_t count);
duke@435 346 static void jlong_copy (jlong* src, jlong* dest, size_t count);
duke@435 347 static void oop_copy (oop* src, oop* dest, size_t count);
duke@435 348
duke@435 349 static void arrayof_jbyte_copy (HeapWord* src, HeapWord* dest, size_t count);
duke@435 350 static void arrayof_jshort_copy(HeapWord* src, HeapWord* dest, size_t count);
duke@435 351 static void arrayof_jint_copy (HeapWord* src, HeapWord* dest, size_t count);
duke@435 352 static void arrayof_jlong_copy (HeapWord* src, HeapWord* dest, size_t count);
duke@435 353 static void arrayof_oop_copy (HeapWord* src, HeapWord* dest, size_t count);
duke@435 354 };
stefank@2314 355
stefank@2314 356 #endif // SHARE_VM_RUNTIME_STUBROUTINES_HPP

mercurial