src/share/vm/runtime/sharedRuntime.cpp

Thu, 04 Apr 2019 17:56:29 +0800

author
aoqi
date
Thu, 04 Apr 2019 17:56:29 +0800
changeset 9572
624a0741915c
parent 9532
da06fcb19387
parent 9448
73d689add964
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
shshahma@9301 2 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@1 25 /*
aoqi@1 26 * This file has been modified by Loongson Technology in 2015. These
aoqi@1 27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
aoqi@1 28 * available on the same license terms set forth above.
aoqi@1 29 */
aoqi@1 30
aoqi@0 31 #include "precompiled.hpp"
aoqi@0 32 #include "classfile/systemDictionary.hpp"
aoqi@0 33 #include "classfile/vmSymbols.hpp"
aoqi@0 34 #include "code/compiledIC.hpp"
aoqi@0 35 #include "code/scopeDesc.hpp"
aoqi@0 36 #include "code/vtableStubs.hpp"
aoqi@0 37 #include "compiler/abstractCompiler.hpp"
aoqi@0 38 #include "compiler/compileBroker.hpp"
aoqi@0 39 #include "compiler/compilerOracle.hpp"
aoqi@0 40 #include "compiler/disassembler.hpp"
aoqi@0 41 #include "interpreter/interpreter.hpp"
aoqi@0 42 #include "interpreter/interpreterRuntime.hpp"
aoqi@0 43 #include "memory/gcLocker.inline.hpp"
aoqi@0 44 #include "memory/universe.inline.hpp"
aoqi@0 45 #include "oops/oop.inline.hpp"
aoqi@0 46 #include "prims/forte.hpp"
aoqi@0 47 #include "prims/jvmtiExport.hpp"
aoqi@0 48 #include "prims/jvmtiRedefineClassesTrace.hpp"
aoqi@0 49 #include "prims/methodHandles.hpp"
aoqi@0 50 #include "prims/nativeLookup.hpp"
aoqi@0 51 #include "runtime/arguments.hpp"
aoqi@0 52 #include "runtime/biasedLocking.hpp"
aoqi@0 53 #include "runtime/handles.inline.hpp"
aoqi@0 54 #include "runtime/init.hpp"
aoqi@0 55 #include "runtime/interfaceSupport.hpp"
aoqi@0 56 #include "runtime/javaCalls.hpp"
aoqi@0 57 #include "runtime/sharedRuntime.hpp"
aoqi@0 58 #include "runtime/stubRoutines.hpp"
aoqi@0 59 #include "runtime/vframe.hpp"
aoqi@0 60 #include "runtime/vframeArray.hpp"
aoqi@0 61 #include "utilities/copy.hpp"
aoqi@0 62 #include "utilities/dtrace.hpp"
aoqi@0 63 #include "utilities/events.hpp"
aoqi@0 64 #include "utilities/hashtable.inline.hpp"
aoqi@0 65 #include "utilities/macros.hpp"
aoqi@0 66 #include "utilities/xmlstream.hpp"
aoqi@0 67 #ifdef TARGET_ARCH_x86
aoqi@0 68 # include "nativeInst_x86.hpp"
aoqi@0 69 # include "vmreg_x86.inline.hpp"
aoqi@0 70 #endif
aoqi@0 71 #ifdef TARGET_ARCH_sparc
aoqi@0 72 # include "nativeInst_sparc.hpp"
aoqi@0 73 # include "vmreg_sparc.inline.hpp"
aoqi@0 74 #endif
aoqi@0 75 #ifdef TARGET_ARCH_zero
aoqi@0 76 # include "nativeInst_zero.hpp"
aoqi@0 77 # include "vmreg_zero.inline.hpp"
aoqi@0 78 #endif
aoqi@0 79 #ifdef TARGET_ARCH_arm
aoqi@0 80 # include "nativeInst_arm.hpp"
aoqi@0 81 # include "vmreg_arm.inline.hpp"
aoqi@0 82 #endif
aoqi@0 83 #ifdef TARGET_ARCH_ppc
aoqi@0 84 # include "nativeInst_ppc.hpp"
aoqi@0 85 # include "vmreg_ppc.inline.hpp"
aoqi@0 86 #endif
aoqi@1 87 #ifdef TARGET_ARCH_mips
aoqi@1 88 # include "nativeInst_mips.hpp"
aoqi@1 89 # include "vmreg_mips.inline.hpp"
aoqi@1 90 #endif
aoqi@1 91
aoqi@0 92 #ifdef COMPILER1
aoqi@0 93 #include "c1/c1_Runtime1.hpp"
aoqi@0 94 #endif
aoqi@0 95
aoqi@0 96 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
aoqi@0 97
aoqi@0 98 // Shared stub locations
aoqi@0 99 RuntimeStub* SharedRuntime::_wrong_method_blob;
aoqi@0 100 RuntimeStub* SharedRuntime::_wrong_method_abstract_blob;
aoqi@0 101 RuntimeStub* SharedRuntime::_ic_miss_blob;
aoqi@0 102 RuntimeStub* SharedRuntime::_resolve_opt_virtual_call_blob;
aoqi@0 103 RuntimeStub* SharedRuntime::_resolve_virtual_call_blob;
aoqi@0 104 RuntimeStub* SharedRuntime::_resolve_static_call_blob;
aoqi@0 105
aoqi@0 106 DeoptimizationBlob* SharedRuntime::_deopt_blob;
aoqi@0 107 SafepointBlob* SharedRuntime::_polling_page_vectors_safepoint_handler_blob;
aoqi@0 108 SafepointBlob* SharedRuntime::_polling_page_safepoint_handler_blob;
aoqi@0 109 SafepointBlob* SharedRuntime::_polling_page_return_handler_blob;
aoqi@0 110
aoqi@0 111 #ifdef COMPILER2
aoqi@0 112 UncommonTrapBlob* SharedRuntime::_uncommon_trap_blob;
aoqi@0 113 #endif // COMPILER2
aoqi@0 114
aoqi@0 115
aoqi@0 116 //----------------------------generate_stubs-----------------------------------
aoqi@0 117 void SharedRuntime::generate_stubs() {
aoqi@0 118 _wrong_method_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::handle_wrong_method), "wrong_method_stub");
aoqi@0 119 _wrong_method_abstract_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::handle_wrong_method_abstract), "wrong_method_abstract_stub");
aoqi@0 120 _ic_miss_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::handle_wrong_method_ic_miss), "ic_miss_stub");
aoqi@0 121 _resolve_opt_virtual_call_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::resolve_opt_virtual_call_C), "resolve_opt_virtual_call");
aoqi@0 122 _resolve_virtual_call_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::resolve_virtual_call_C), "resolve_virtual_call");
aoqi@0 123 _resolve_static_call_blob = generate_resolve_blob(CAST_FROM_FN_PTR(address, SharedRuntime::resolve_static_call_C), "resolve_static_call");
aoqi@0 124
aoqi@0 125 #ifdef COMPILER2
aoqi@0 126 // Vectors are generated only by C2.
aoqi@0 127 if (is_wide_vector(MaxVectorSize)) {
aoqi@0 128 _polling_page_vectors_safepoint_handler_blob = generate_handler_blob(CAST_FROM_FN_PTR(address, SafepointSynchronize::handle_polling_page_exception), POLL_AT_VECTOR_LOOP);
aoqi@0 129 }
aoqi@0 130 #endif // COMPILER2
aoqi@0 131 _polling_page_safepoint_handler_blob = generate_handler_blob(CAST_FROM_FN_PTR(address, SafepointSynchronize::handle_polling_page_exception), POLL_AT_LOOP);
aoqi@0 132 _polling_page_return_handler_blob = generate_handler_blob(CAST_FROM_FN_PTR(address, SafepointSynchronize::handle_polling_page_exception), POLL_AT_RETURN);
aoqi@0 133
aoqi@0 134 generate_deopt_blob();
aoqi@0 135
aoqi@0 136 #ifdef COMPILER2
aoqi@0 137 generate_uncommon_trap_blob();
aoqi@0 138 #endif // COMPILER2
aoqi@0 139 }
aoqi@0 140
aoqi@0 141 #include <math.h>
aoqi@0 142
aoqi@0 143 #ifndef USDT2
aoqi@0 144 HS_DTRACE_PROBE_DECL4(hotspot, object__alloc, Thread*, char*, int, size_t);
aoqi@0 145 HS_DTRACE_PROBE_DECL7(hotspot, method__entry, int,
aoqi@0 146 char*, int, char*, int, char*, int);
aoqi@0 147 HS_DTRACE_PROBE_DECL7(hotspot, method__return, int,
aoqi@0 148 char*, int, char*, int, char*, int);
aoqi@0 149 #endif /* !USDT2 */
aoqi@0 150
aoqi@0 151 // Implementation of SharedRuntime
aoqi@0 152
aoqi@0 153 #ifndef PRODUCT
aoqi@0 154 // For statistics
aoqi@0 155 int SharedRuntime::_ic_miss_ctr = 0;
aoqi@0 156 int SharedRuntime::_wrong_method_ctr = 0;
aoqi@0 157 int SharedRuntime::_resolve_static_ctr = 0;
aoqi@0 158 int SharedRuntime::_resolve_virtual_ctr = 0;
aoqi@0 159 int SharedRuntime::_resolve_opt_virtual_ctr = 0;
aoqi@0 160 int SharedRuntime::_implicit_null_throws = 0;
aoqi@0 161 int SharedRuntime::_implicit_div0_throws = 0;
aoqi@0 162 int SharedRuntime::_throw_null_ctr = 0;
aoqi@0 163
aoqi@0 164 int SharedRuntime::_nof_normal_calls = 0;
aoqi@0 165 int SharedRuntime::_nof_optimized_calls = 0;
aoqi@0 166 int SharedRuntime::_nof_inlined_calls = 0;
aoqi@0 167 int SharedRuntime::_nof_megamorphic_calls = 0;
aoqi@0 168 int SharedRuntime::_nof_static_calls = 0;
aoqi@0 169 int SharedRuntime::_nof_inlined_static_calls = 0;
aoqi@0 170 int SharedRuntime::_nof_interface_calls = 0;
aoqi@0 171 int SharedRuntime::_nof_optimized_interface_calls = 0;
aoqi@0 172 int SharedRuntime::_nof_inlined_interface_calls = 0;
aoqi@0 173 int SharedRuntime::_nof_megamorphic_interface_calls = 0;
aoqi@0 174 int SharedRuntime::_nof_removable_exceptions = 0;
aoqi@0 175
aoqi@0 176 int SharedRuntime::_new_instance_ctr=0;
aoqi@0 177 int SharedRuntime::_new_array_ctr=0;
aoqi@0 178 int SharedRuntime::_multi1_ctr=0;
aoqi@0 179 int SharedRuntime::_multi2_ctr=0;
aoqi@0 180 int SharedRuntime::_multi3_ctr=0;
aoqi@0 181 int SharedRuntime::_multi4_ctr=0;
aoqi@0 182 int SharedRuntime::_multi5_ctr=0;
aoqi@0 183 int SharedRuntime::_mon_enter_stub_ctr=0;
aoqi@0 184 int SharedRuntime::_mon_exit_stub_ctr=0;
aoqi@0 185 int SharedRuntime::_mon_enter_ctr=0;
aoqi@0 186 int SharedRuntime::_mon_exit_ctr=0;
aoqi@0 187 int SharedRuntime::_partial_subtype_ctr=0;
aoqi@0 188 int SharedRuntime::_jbyte_array_copy_ctr=0;
aoqi@0 189 int SharedRuntime::_jshort_array_copy_ctr=0;
aoqi@0 190 int SharedRuntime::_jint_array_copy_ctr=0;
aoqi@0 191 int SharedRuntime::_jlong_array_copy_ctr=0;
aoqi@0 192 int SharedRuntime::_oop_array_copy_ctr=0;
aoqi@0 193 int SharedRuntime::_checkcast_array_copy_ctr=0;
aoqi@0 194 int SharedRuntime::_unsafe_array_copy_ctr=0;
aoqi@0 195 int SharedRuntime::_generic_array_copy_ctr=0;
aoqi@0 196 int SharedRuntime::_slow_array_copy_ctr=0;
aoqi@0 197 int SharedRuntime::_find_handler_ctr=0;
aoqi@0 198 int SharedRuntime::_rethrow_ctr=0;
aoqi@0 199
aoqi@0 200 int SharedRuntime::_ICmiss_index = 0;
aoqi@0 201 int SharedRuntime::_ICmiss_count[SharedRuntime::maxICmiss_count];
aoqi@0 202 address SharedRuntime::_ICmiss_at[SharedRuntime::maxICmiss_count];
aoqi@0 203
aoqi@0 204
aoqi@0 205 void SharedRuntime::trace_ic_miss(address at) {
aoqi@0 206 for (int i = 0; i < _ICmiss_index; i++) {
aoqi@0 207 if (_ICmiss_at[i] == at) {
aoqi@0 208 _ICmiss_count[i]++;
aoqi@0 209 return;
aoqi@0 210 }
aoqi@0 211 }
aoqi@0 212 int index = _ICmiss_index++;
aoqi@0 213 if (_ICmiss_index >= maxICmiss_count) _ICmiss_index = maxICmiss_count - 1;
aoqi@0 214 _ICmiss_at[index] = at;
aoqi@0 215 _ICmiss_count[index] = 1;
aoqi@0 216 }
aoqi@0 217
aoqi@0 218 void SharedRuntime::print_ic_miss_histogram() {
aoqi@0 219 if (ICMissHistogram) {
aoqi@0 220 tty->print_cr ("IC Miss Histogram:");
aoqi@0 221 int tot_misses = 0;
aoqi@0 222 for (int i = 0; i < _ICmiss_index; i++) {
aoqi@0 223 tty->print_cr(" at: " INTPTR_FORMAT " nof: %d", _ICmiss_at[i], _ICmiss_count[i]);
aoqi@0 224 tot_misses += _ICmiss_count[i];
aoqi@0 225 }
aoqi@0 226 tty->print_cr ("Total IC misses: %7d", tot_misses);
aoqi@0 227 }
aoqi@0 228 }
aoqi@0 229 #endif // PRODUCT
aoqi@7997 230 void SharedRuntime::print_long(long long i) {
aoqi@7997 231 tty->print("%llx", i);
aoqi@1 232 }
aoqi@1 233
aoqi@7997 234 void SharedRuntime::print_int(int i) {
aoqi@7997 235 tty->print("%x", i);
aoqi@1 236 }
aoqi@1 237
aoqi@7997 238 void SharedRuntime::print_float(float f) {
aoqi@7997 239 tty->print("ld:%ld ", f);
aoqi@7997 240 tty->print("lx:%lx ", f);
aoqi@7997 241 tty->print("lf:%g ", f);
aoqi@1 242 }
aoqi@1 243
aoqi@7997 244 void SharedRuntime::print_double(double f) {
aoqi@7997 245 tty->print("%ld ", f);
aoqi@7997 246 tty->print("0x%lx ", f);
aoqi@7997 247 tty->print("%g ", f);
aoqi@1 248 }
aoqi@1 249
aoqi@1 250 void SharedRuntime::print_str(char *str) {
aoqi@7997 251 tty->print("%s", str);
aoqi@1 252 }
aoqi@1 253
aoqi@1 254 void SharedRuntime::print_reg_with_pc(char *reg_name, long i, long pc) {
aoqi@1 255 tty->print_cr("%s: %lx pc: %lx", reg_name, i, pc);
aoqi@1 256 }
aoqi@0 257
aoqi@0 258 #if INCLUDE_ALL_GCS
aoqi@0 259
aoqi@0 260 // G1 write-barrier pre: executed before a pointer store.
aoqi@0 261 JRT_LEAF(void, SharedRuntime::g1_wb_pre(oopDesc* orig, JavaThread *thread))
aoqi@0 262 if (orig == NULL) {
aoqi@0 263 assert(false, "should be optimized out");
aoqi@0 264 return;
aoqi@0 265 }
aoqi@0 266 assert(orig->is_oop(true /* ignore mark word */), "Error");
aoqi@0 267 // store the original value that was in the field reference
aoqi@0 268 thread->satb_mark_queue().enqueue(orig);
aoqi@0 269 JRT_END
aoqi@0 270
aoqi@0 271 // G1 write-barrier post: executed after a pointer store.
aoqi@0 272 JRT_LEAF(void, SharedRuntime::g1_wb_post(void* card_addr, JavaThread* thread))
aoqi@0 273 thread->dirty_card_queue().enqueue(card_addr);
aoqi@0 274 JRT_END
aoqi@0 275
aoqi@0 276 #endif // INCLUDE_ALL_GCS
aoqi@0 277
aoqi@0 278
aoqi@0 279 JRT_LEAF(jlong, SharedRuntime::lmul(jlong y, jlong x))
aoqi@0 280 return x * y;
aoqi@0 281 JRT_END
aoqi@0 282
aoqi@0 283
aoqi@0 284 JRT_LEAF(jlong, SharedRuntime::ldiv(jlong y, jlong x))
aoqi@0 285 if (x == min_jlong && y == CONST64(-1)) {
aoqi@0 286 return x;
aoqi@0 287 } else {
aoqi@0 288 return x / y;
aoqi@0 289 }
aoqi@0 290 JRT_END
aoqi@0 291
aoqi@0 292
aoqi@0 293 JRT_LEAF(jlong, SharedRuntime::lrem(jlong y, jlong x))
aoqi@0 294 if (x == min_jlong && y == CONST64(-1)) {
aoqi@0 295 return 0;
aoqi@0 296 } else {
aoqi@0 297 return x % y;
aoqi@0 298 }
aoqi@0 299 JRT_END
aoqi@0 300
aoqi@0 301
aoqi@0 302 const juint float_sign_mask = 0x7FFFFFFF;
aoqi@0 303 const juint float_infinity = 0x7F800000;
aoqi@0 304 const julong double_sign_mask = CONST64(0x7FFFFFFFFFFFFFFF);
aoqi@0 305 const julong double_infinity = CONST64(0x7FF0000000000000);
aoqi@0 306
aoqi@0 307 JRT_LEAF(jfloat, SharedRuntime::frem(jfloat x, jfloat y))
aoqi@0 308 #ifdef _WIN64
aoqi@0 309 // 64-bit Windows on amd64 returns the wrong values for
aoqi@0 310 // infinity operands.
aoqi@0 311 union { jfloat f; juint i; } xbits, ybits;
aoqi@0 312 xbits.f = x;
aoqi@0 313 ybits.f = y;
aoqi@0 314 // x Mod Infinity == x unless x is infinity
aoqi@0 315 if ( ((xbits.i & float_sign_mask) != float_infinity) &&
aoqi@0 316 ((ybits.i & float_sign_mask) == float_infinity) ) {
aoqi@0 317 return x;
aoqi@0 318 }
aoqi@0 319 #endif
aoqi@0 320 return ((jfloat)fmod((double)x,(double)y));
aoqi@0 321 JRT_END
aoqi@0 322
aoqi@0 323
aoqi@0 324 JRT_LEAF(jdouble, SharedRuntime::drem(jdouble x, jdouble y))
aoqi@0 325 #ifdef _WIN64
aoqi@0 326 union { jdouble d; julong l; } xbits, ybits;
aoqi@0 327 xbits.d = x;
aoqi@0 328 ybits.d = y;
aoqi@0 329 // x Mod Infinity == x unless x is infinity
aoqi@0 330 if ( ((xbits.l & double_sign_mask) != double_infinity) &&
aoqi@0 331 ((ybits.l & double_sign_mask) == double_infinity) ) {
aoqi@0 332 return x;
aoqi@0 333 }
aoqi@0 334 #endif
aoqi@0 335 return ((jdouble)fmod((double)x,(double)y));
aoqi@0 336 JRT_END
aoqi@0 337
aoqi@0 338 #ifdef __SOFTFP__
aoqi@0 339 JRT_LEAF(jfloat, SharedRuntime::fadd(jfloat x, jfloat y))
aoqi@0 340 return x + y;
aoqi@0 341 JRT_END
aoqi@0 342
aoqi@0 343 JRT_LEAF(jfloat, SharedRuntime::fsub(jfloat x, jfloat y))
aoqi@0 344 return x - y;
aoqi@0 345 JRT_END
aoqi@0 346
aoqi@0 347 JRT_LEAF(jfloat, SharedRuntime::fmul(jfloat x, jfloat y))
aoqi@0 348 return x * y;
aoqi@0 349 JRT_END
aoqi@0 350
aoqi@0 351 JRT_LEAF(jfloat, SharedRuntime::fdiv(jfloat x, jfloat y))
aoqi@0 352 return x / y;
aoqi@0 353 JRT_END
aoqi@0 354
aoqi@0 355 JRT_LEAF(jdouble, SharedRuntime::dadd(jdouble x, jdouble y))
aoqi@0 356 return x + y;
aoqi@0 357 JRT_END
aoqi@0 358
aoqi@0 359 JRT_LEAF(jdouble, SharedRuntime::dsub(jdouble x, jdouble y))
aoqi@0 360 return x - y;
aoqi@0 361 JRT_END
aoqi@0 362
aoqi@0 363 JRT_LEAF(jdouble, SharedRuntime::dmul(jdouble x, jdouble y))
aoqi@0 364 return x * y;
aoqi@0 365 JRT_END
aoqi@0 366
aoqi@0 367 JRT_LEAF(jdouble, SharedRuntime::ddiv(jdouble x, jdouble y))
aoqi@0 368 return x / y;
aoqi@0 369 JRT_END
aoqi@0 370
aoqi@0 371 JRT_LEAF(jfloat, SharedRuntime::i2f(jint x))
aoqi@0 372 return (jfloat)x;
aoqi@0 373 JRT_END
aoqi@0 374
aoqi@0 375 JRT_LEAF(jdouble, SharedRuntime::i2d(jint x))
aoqi@0 376 return (jdouble)x;
aoqi@0 377 JRT_END
aoqi@0 378
aoqi@0 379 JRT_LEAF(jdouble, SharedRuntime::f2d(jfloat x))
aoqi@0 380 return (jdouble)x;
aoqi@0 381 JRT_END
aoqi@0 382
aoqi@0 383 JRT_LEAF(int, SharedRuntime::fcmpl(float x, float y))
aoqi@0 384 return x>y ? 1 : (x==y ? 0 : -1); /* x<y or is_nan*/
aoqi@0 385 JRT_END
aoqi@0 386
aoqi@0 387 JRT_LEAF(int, SharedRuntime::fcmpg(float x, float y))
aoqi@0 388 return x<y ? -1 : (x==y ? 0 : 1); /* x>y or is_nan */
aoqi@0 389 JRT_END
aoqi@0 390
aoqi@0 391 JRT_LEAF(int, SharedRuntime::dcmpl(double x, double y))
aoqi@0 392 return x>y ? 1 : (x==y ? 0 : -1); /* x<y or is_nan */
aoqi@0 393 JRT_END
aoqi@0 394
aoqi@0 395 JRT_LEAF(int, SharedRuntime::dcmpg(double x, double y))
aoqi@0 396 return x<y ? -1 : (x==y ? 0 : 1); /* x>y or is_nan */
aoqi@0 397 JRT_END
aoqi@0 398
aoqi@0 399 // Functions to return the opposite of the aeabi functions for nan.
aoqi@0 400 JRT_LEAF(int, SharedRuntime::unordered_fcmplt(float x, float y))
aoqi@0 401 return (x < y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 402 JRT_END
aoqi@0 403
aoqi@0 404 JRT_LEAF(int, SharedRuntime::unordered_dcmplt(double x, double y))
aoqi@0 405 return (x < y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 406 JRT_END
aoqi@0 407
aoqi@0 408 JRT_LEAF(int, SharedRuntime::unordered_fcmple(float x, float y))
aoqi@0 409 return (x <= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 410 JRT_END
aoqi@0 411
aoqi@0 412 JRT_LEAF(int, SharedRuntime::unordered_dcmple(double x, double y))
aoqi@0 413 return (x <= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 414 JRT_END
aoqi@0 415
aoqi@0 416 JRT_LEAF(int, SharedRuntime::unordered_fcmpge(float x, float y))
aoqi@0 417 return (x >= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 418 JRT_END
aoqi@0 419
aoqi@0 420 JRT_LEAF(int, SharedRuntime::unordered_dcmpge(double x, double y))
aoqi@0 421 return (x >= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 422 JRT_END
aoqi@0 423
aoqi@0 424 JRT_LEAF(int, SharedRuntime::unordered_fcmpgt(float x, float y))
aoqi@0 425 return (x > y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 426 JRT_END
aoqi@0 427
aoqi@0 428 JRT_LEAF(int, SharedRuntime::unordered_dcmpgt(double x, double y))
aoqi@0 429 return (x > y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
aoqi@0 430 JRT_END
aoqi@0 431
aoqi@0 432 // Intrinsics make gcc generate code for these.
aoqi@0 433 float SharedRuntime::fneg(float f) {
aoqi@0 434 return -f;
aoqi@0 435 }
aoqi@0 436
aoqi@0 437 double SharedRuntime::dneg(double f) {
aoqi@0 438 return -f;
aoqi@0 439 }
aoqi@0 440
aoqi@0 441 #endif // __SOFTFP__
aoqi@0 442
aoqi@0 443 #if defined(__SOFTFP__) || defined(E500V2)
aoqi@0 444 // Intrinsics make gcc generate code for these.
aoqi@0 445 double SharedRuntime::dabs(double f) {
aoqi@0 446 return (f <= (double)0.0) ? (double)0.0 - f : f;
aoqi@0 447 }
aoqi@0 448
aoqi@0 449 #endif
aoqi@0 450
aoqi@0 451 #if defined(__SOFTFP__) || defined(PPC32)
aoqi@0 452 double SharedRuntime::dsqrt(double f) {
aoqi@0 453 return sqrt(f);
aoqi@0 454 }
aoqi@0 455 #endif
aoqi@0 456
aoqi@0 457 JRT_LEAF(jint, SharedRuntime::f2i(jfloat x))
aoqi@0 458 if (g_isnan(x))
aoqi@0 459 return 0;
aoqi@0 460 if (x >= (jfloat) max_jint)
aoqi@0 461 return max_jint;
aoqi@0 462 if (x <= (jfloat) min_jint)
aoqi@0 463 return min_jint;
aoqi@0 464 return (jint) x;
aoqi@0 465 JRT_END
aoqi@0 466
aoqi@0 467
aoqi@0 468 JRT_LEAF(jlong, SharedRuntime::f2l(jfloat x))
aoqi@0 469 if (g_isnan(x))
aoqi@0 470 return 0;
aoqi@0 471 if (x >= (jfloat) max_jlong)
aoqi@0 472 return max_jlong;
aoqi@0 473 if (x <= (jfloat) min_jlong)
aoqi@0 474 return min_jlong;
aoqi@0 475 return (jlong) x;
aoqi@0 476 JRT_END
aoqi@0 477
aoqi@0 478
aoqi@0 479 JRT_LEAF(jint, SharedRuntime::d2i(jdouble x))
aoqi@0 480 if (g_isnan(x))
aoqi@0 481 return 0;
aoqi@0 482 if (x >= (jdouble) max_jint)
aoqi@0 483 return max_jint;
aoqi@0 484 if (x <= (jdouble) min_jint)
aoqi@0 485 return min_jint;
aoqi@0 486 return (jint) x;
aoqi@0 487 JRT_END
aoqi@0 488
aoqi@0 489
aoqi@0 490 JRT_LEAF(jlong, SharedRuntime::d2l(jdouble x))
aoqi@0 491 if (g_isnan(x))
aoqi@0 492 return 0;
aoqi@0 493 if (x >= (jdouble) max_jlong)
aoqi@0 494 return max_jlong;
aoqi@0 495 if (x <= (jdouble) min_jlong)
aoqi@0 496 return min_jlong;
aoqi@0 497 return (jlong) x;
aoqi@0 498 JRT_END
aoqi@0 499
aoqi@0 500
aoqi@0 501 JRT_LEAF(jfloat, SharedRuntime::d2f(jdouble x))
aoqi@0 502 return (jfloat)x;
aoqi@0 503 JRT_END
aoqi@0 504
aoqi@0 505
aoqi@0 506 JRT_LEAF(jfloat, SharedRuntime::l2f(jlong x))
aoqi@0 507 return (jfloat)x;
aoqi@0 508 JRT_END
aoqi@0 509
aoqi@0 510
aoqi@0 511 JRT_LEAF(jdouble, SharedRuntime::l2d(jlong x))
aoqi@0 512 return (jdouble)x;
aoqi@0 513 JRT_END
aoqi@0 514
aoqi@0 515 // Exception handling accross interpreter/compiler boundaries
aoqi@0 516 //
aoqi@0 517 // exception_handler_for_return_address(...) returns the continuation address.
aoqi@0 518 // The continuation address is the entry point of the exception handler of the
aoqi@0 519 // previous frame depending on the return address.
aoqi@0 520
aoqi@0 521 address SharedRuntime::raw_exception_handler_for_return_address(JavaThread* thread, address return_address) {
aoqi@0 522 assert(frame::verify_return_pc(return_address), err_msg("must be a return address: " INTPTR_FORMAT, return_address));
roland@7419 523 assert(thread->frames_to_pop_failed_realloc() == 0 || Interpreter::contains(return_address), "missed frames to pop?");
aoqi@0 524
aoqi@0 525 // Reset method handle flag.
aoqi@0 526 thread->set_is_method_handle_return(false);
aoqi@0 527
aoqi@0 528 // The fastest case first
aoqi@0 529 CodeBlob* blob = CodeCache::find_blob(return_address);
aoqi@0 530 nmethod* nm = (blob != NULL) ? blob->as_nmethod_or_null() : NULL;
aoqi@0 531 if (nm != NULL) {
aoqi@0 532 // Set flag if return address is a method handle call site.
aoqi@0 533 thread->set_is_method_handle_return(nm->is_method_handle_return(return_address));
aoqi@0 534 // native nmethods don't have exception handlers
aoqi@0 535 assert(!nm->is_native_method(), "no exception handler");
aoqi@0 536 assert(nm->header_begin() != nm->exception_begin(), "no exception handler");
aoqi@0 537 if (nm->is_deopt_pc(return_address)) {
aoqi@0 538 // If we come here because of a stack overflow, the stack may be
aoqi@0 539 // unguarded. Reguard the stack otherwise if we return to the
aoqi@0 540 // deopt blob and the stack bang causes a stack overflow we
aoqi@0 541 // crash.
aoqi@0 542 bool guard_pages_enabled = thread->stack_yellow_zone_enabled();
aoqi@0 543 if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack();
aoqi@0 544 assert(guard_pages_enabled, "stack banging in deopt blob may cause crash");
aoqi@0 545 return SharedRuntime::deopt_blob()->unpack_with_exception();
aoqi@0 546 } else {
aoqi@0 547 return nm->exception_begin();
aoqi@0 548 }
aoqi@0 549 }
aoqi@0 550
aoqi@0 551 // Entry code
aoqi@0 552 if (StubRoutines::returns_to_call_stub(return_address)) {
aoqi@0 553 return StubRoutines::catch_exception_entry();
aoqi@0 554 }
aoqi@0 555 // Interpreted code
aoqi@0 556 if (Interpreter::contains(return_address)) {
aoqi@0 557 return Interpreter::rethrow_exception_entry();
aoqi@0 558 }
aoqi@0 559
aoqi@0 560 guarantee(blob == NULL || !blob->is_runtime_stub(), "caller should have skipped stub");
aoqi@0 561 guarantee(!VtableStubs::contains(return_address), "NULL exceptions in vtables should have been handled already!");
aoqi@0 562
aoqi@0 563 #ifndef PRODUCT
aoqi@0 564 { ResourceMark rm;
aoqi@0 565 tty->print_cr("No exception handler found for exception at " INTPTR_FORMAT " - potential problems:", return_address);
aoqi@0 566 tty->print_cr("a) exception happened in (new?) code stubs/buffers that is not handled here");
aoqi@0 567 tty->print_cr("b) other problem");
aoqi@0 568 }
aoqi@0 569 #endif // PRODUCT
aoqi@0 570
aoqi@0 571 ShouldNotReachHere();
aoqi@0 572 return NULL;
aoqi@0 573 }
aoqi@0 574
aoqi@0 575
aoqi@0 576 JRT_LEAF(address, SharedRuntime::exception_handler_for_return_address(JavaThread* thread, address return_address))
aoqi@0 577 return raw_exception_handler_for_return_address(thread, return_address);
aoqi@0 578 JRT_END
aoqi@0 579
aoqi@0 580
aoqi@0 581 address SharedRuntime::get_poll_stub(address pc) {
aoqi@0 582 address stub;
aoqi@0 583 // Look up the code blob
aoqi@0 584 CodeBlob *cb = CodeCache::find_blob(pc);
aoqi@0 585
aoqi@0 586 // Should be an nmethod
thartmann@8773 587 guarantee(cb != NULL && cb->is_nmethod(), "safepoint polling: pc must refer to an nmethod");
aoqi@0 588
aoqi@0 589 // Look up the relocation information
aoqi@0 590 assert( ((nmethod*)cb)->is_at_poll_or_poll_return(pc),
aoqi@0 591 "safepoint polling: type must be poll" );
aoqi@0 592
aoqi@0 593 assert( ((NativeInstruction*)pc)->is_safepoint_poll(),
aoqi@0 594 "Only polling locations are used for safepoint");
aoqi@0 595
aoqi@0 596 bool at_poll_return = ((nmethod*)cb)->is_at_poll_return(pc);
aoqi@0 597 bool has_wide_vectors = ((nmethod*)cb)->has_wide_vectors();
aoqi@0 598 if (at_poll_return) {
aoqi@0 599 assert(SharedRuntime::polling_page_return_handler_blob() != NULL,
aoqi@0 600 "polling page return stub not created yet");
aoqi@0 601 stub = SharedRuntime::polling_page_return_handler_blob()->entry_point();
aoqi@0 602 } else if (has_wide_vectors) {
aoqi@0 603 assert(SharedRuntime::polling_page_vectors_safepoint_handler_blob() != NULL,
aoqi@0 604 "polling page vectors safepoint stub not created yet");
aoqi@0 605 stub = SharedRuntime::polling_page_vectors_safepoint_handler_blob()->entry_point();
aoqi@0 606 } else {
aoqi@0 607 assert(SharedRuntime::polling_page_safepoint_handler_blob() != NULL,
aoqi@0 608 "polling page safepoint stub not created yet");
aoqi@0 609 stub = SharedRuntime::polling_page_safepoint_handler_blob()->entry_point();
aoqi@0 610 }
aoqi@0 611 #ifndef PRODUCT
aoqi@0 612 if( TraceSafepoint ) {
aoqi@0 613 char buf[256];
aoqi@0 614 jio_snprintf(buf, sizeof(buf),
aoqi@0 615 "... found polling page %s exception at pc = "
aoqi@0 616 INTPTR_FORMAT ", stub =" INTPTR_FORMAT,
aoqi@0 617 at_poll_return ? "return" : "loop",
aoqi@0 618 (intptr_t)pc, (intptr_t)stub);
aoqi@0 619 tty->print_raw_cr(buf);
aoqi@0 620 }
aoqi@0 621 #endif // PRODUCT
aoqi@0 622 return stub;
aoqi@0 623 }
aoqi@0 624
aoqi@0 625
aoqi@0 626 oop SharedRuntime::retrieve_receiver( Symbol* sig, frame caller ) {
aoqi@0 627 assert(caller.is_interpreted_frame(), "");
aoqi@0 628 int args_size = ArgumentSizeComputer(sig).size() + 1;
aoqi@0 629 assert(args_size <= caller.interpreter_frame_expression_stack_size(), "receiver must be on interpreter stack");
aoqi@0 630 oop result = cast_to_oop(*caller.interpreter_frame_tos_at(args_size - 1));
aoqi@0 631 assert(Universe::heap()->is_in(result) && result->is_oop(), "receiver must be an oop");
aoqi@0 632 return result;
aoqi@0 633 }
aoqi@0 634
aoqi@0 635
aoqi@0 636 void SharedRuntime::throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception) {
aoqi@0 637 if (JvmtiExport::can_post_on_exceptions()) {
aoqi@0 638 vframeStream vfst(thread, true);
aoqi@0 639 methodHandle method = methodHandle(thread, vfst.method());
aoqi@0 640 address bcp = method()->bcp_from(vfst.bci());
aoqi@0 641 JvmtiExport::post_exception_throw(thread, method(), bcp, h_exception());
aoqi@0 642 }
aoqi@0 643 Exceptions::_throw(thread, __FILE__, __LINE__, h_exception);
aoqi@0 644 }
aoqi@0 645
aoqi@0 646 void SharedRuntime::throw_and_post_jvmti_exception(JavaThread *thread, Symbol* name, const char *message) {
aoqi@0 647 Handle h_exception = Exceptions::new_exception(thread, name, message);
aoqi@0 648 throw_and_post_jvmti_exception(thread, h_exception);
aoqi@0 649 }
aoqi@0 650
aoqi@0 651 // The interpreter code to call this tracing function is only
aoqi@0 652 // called/generated when TraceRedefineClasses has the right bits
aoqi@0 653 // set. Since obsolete methods are never compiled, we don't have
aoqi@0 654 // to modify the compilers to generate calls to this function.
aoqi@0 655 //
aoqi@0 656 JRT_LEAF(int, SharedRuntime::rc_trace_method_entry(
aoqi@0 657 JavaThread* thread, Method* method))
aoqi@0 658 assert(RC_TRACE_IN_RANGE(0x00001000, 0x00002000), "wrong call");
aoqi@0 659
aoqi@0 660 if (method->is_obsolete()) {
aoqi@0 661 // We are calling an obsolete method, but this is not necessarily
aoqi@0 662 // an error. Our method could have been redefined just after we
aoqi@0 663 // fetched the Method* from the constant pool.
aoqi@0 664
aoqi@0 665 // RC_TRACE macro has an embedded ResourceMark
aoqi@0 666 RC_TRACE_WITH_THREAD(0x00001000, thread,
aoqi@0 667 ("calling obsolete method '%s'",
aoqi@0 668 method->name_and_sig_as_C_string()));
aoqi@0 669 if (RC_TRACE_ENABLED(0x00002000)) {
aoqi@0 670 // this option is provided to debug calls to obsolete methods
aoqi@0 671 guarantee(false, "faulting at call to an obsolete method.");
aoqi@0 672 }
aoqi@0 673 }
aoqi@0 674 return 0;
aoqi@0 675 JRT_END
aoqi@0 676
aoqi@0 677 // ret_pc points into caller; we are returning caller's exception handler
aoqi@0 678 // for given exception
aoqi@0 679 address SharedRuntime::compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception,
shshahma@9396 680 bool force_unwind, bool top_frame_only, bool& recursive_exception_occurred) {
aoqi@0 681 assert(nm != NULL, "must exist");
aoqi@0 682 ResourceMark rm;
aoqi@0 683
aoqi@0 684 ScopeDesc* sd = nm->scope_desc_at(ret_pc);
aoqi@0 685 // determine handler bci, if any
aoqi@0 686 EXCEPTION_MARK;
aoqi@0 687
aoqi@0 688 int handler_bci = -1;
aoqi@0 689 int scope_depth = 0;
aoqi@0 690 if (!force_unwind) {
aoqi@0 691 int bci = sd->bci();
aoqi@0 692 bool recursive_exception = false;
aoqi@0 693 do {
aoqi@0 694 bool skip_scope_increment = false;
aoqi@0 695 // exception handler lookup
aoqi@0 696 KlassHandle ek (THREAD, exception->klass());
aoqi@0 697 methodHandle mh(THREAD, sd->method());
aoqi@0 698 handler_bci = Method::fast_exception_handler_bci_for(mh, ek, bci, THREAD);
aoqi@0 699 if (HAS_PENDING_EXCEPTION) {
aoqi@0 700 recursive_exception = true;
aoqi@0 701 // We threw an exception while trying to find the exception handler.
aoqi@0 702 // Transfer the new exception to the exception handle which will
aoqi@0 703 // be set into thread local storage, and do another lookup for an
aoqi@0 704 // exception handler for this exception, this time starting at the
aoqi@0 705 // BCI of the exception handler which caused the exception to be
aoqi@0 706 // thrown (bugs 4307310 and 4546590). Set "exception" reference
aoqi@0 707 // argument to ensure that the correct exception is thrown (4870175).
shshahma@9396 708 recursive_exception_occurred = true;
aoqi@0 709 exception = Handle(THREAD, PENDING_EXCEPTION);
aoqi@0 710 CLEAR_PENDING_EXCEPTION;
aoqi@0 711 if (handler_bci >= 0) {
aoqi@0 712 bci = handler_bci;
aoqi@0 713 handler_bci = -1;
aoqi@0 714 skip_scope_increment = true;
aoqi@0 715 }
aoqi@0 716 }
aoqi@0 717 else {
aoqi@0 718 recursive_exception = false;
aoqi@0 719 }
aoqi@0 720 if (!top_frame_only && handler_bci < 0 && !skip_scope_increment) {
aoqi@0 721 sd = sd->sender();
aoqi@0 722 if (sd != NULL) {
aoqi@0 723 bci = sd->bci();
aoqi@0 724 }
aoqi@0 725 ++scope_depth;
aoqi@0 726 }
aoqi@0 727 } while (recursive_exception || (!top_frame_only && handler_bci < 0 && sd != NULL));
aoqi@0 728 }
aoqi@0 729
aoqi@0 730 // found handling method => lookup exception handler
aoqi@0 731 int catch_pco = ret_pc - nm->code_begin();
aoqi@0 732
aoqi@0 733 ExceptionHandlerTable table(nm);
aoqi@0 734 HandlerTableEntry *t = table.entry_for(catch_pco, handler_bci, scope_depth);
aoqi@0 735 if (t == NULL && (nm->is_compiled_by_c1() || handler_bci != -1)) {
aoqi@0 736 // Allow abbreviated catch tables. The idea is to allow a method
aoqi@0 737 // to materialize its exceptions without committing to the exact
aoqi@0 738 // routing of exceptions. In particular this is needed for adding
aoqi@0 739 // a synthethic handler to unlock monitors when inlining
aoqi@0 740 // synchonized methods since the unlock path isn't represented in
aoqi@0 741 // the bytecodes.
aoqi@0 742 t = table.entry_for(catch_pco, -1, 0);
aoqi@0 743 }
aoqi@0 744
aoqi@0 745 #ifdef COMPILER1
aoqi@0 746 if (t == NULL && nm->is_compiled_by_c1()) {
aoqi@0 747 assert(nm->unwind_handler_begin() != NULL, "");
aoqi@0 748 return nm->unwind_handler_begin();
aoqi@0 749 }
aoqi@0 750 #endif
aoqi@0 751
aoqi@0 752 if (t == NULL) {
aoqi@0 753 tty->print_cr("MISSING EXCEPTION HANDLER for pc " INTPTR_FORMAT " and handler bci %d", ret_pc, handler_bci);
aoqi@0 754 tty->print_cr(" Exception:");
aoqi@0 755 exception->print();
aoqi@0 756 tty->cr();
aoqi@0 757 tty->print_cr(" Compiled exception table :");
aoqi@0 758 table.print();
aoqi@0 759 nm->print_code();
aoqi@0 760 guarantee(false, "missing exception handler");
aoqi@0 761 return NULL;
aoqi@0 762 }
aoqi@0 763
aoqi@0 764 return nm->code_begin() + t->pco();
aoqi@0 765 }
aoqi@0 766
aoqi@0 767 JRT_ENTRY(void, SharedRuntime::throw_AbstractMethodError(JavaThread* thread))
aoqi@0 768 // These errors occur only at call sites
aoqi@0 769 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_AbstractMethodError());
aoqi@0 770 JRT_END
aoqi@0 771
aoqi@0 772 JRT_ENTRY(void, SharedRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
aoqi@0 773 // These errors occur only at call sites
aoqi@0 774 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError(), "vtable stub");
aoqi@0 775 JRT_END
aoqi@0 776
aoqi@0 777 JRT_ENTRY(void, SharedRuntime::throw_ArithmeticException(JavaThread* thread))
aoqi@0 778 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
aoqi@0 779 JRT_END
aoqi@0 780
aoqi@0 781 JRT_ENTRY(void, SharedRuntime::throw_NullPointerException(JavaThread* thread))
aoqi@0 782 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
aoqi@0 783 JRT_END
aoqi@0 784
aoqi@0 785 JRT_ENTRY(void, SharedRuntime::throw_NullPointerException_at_call(JavaThread* thread))
aoqi@0 786 // This entry point is effectively only used for NullPointerExceptions which occur at inline
aoqi@0 787 // cache sites (when the callee activation is not yet set up) so we are at a call site
aoqi@0 788 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
aoqi@0 789 JRT_END
aoqi@0 790
aoqi@0 791 JRT_ENTRY(void, SharedRuntime::throw_StackOverflowError(JavaThread* thread))
aoqi@0 792 // We avoid using the normal exception construction in this case because
aoqi@0 793 // it performs an upcall to Java, and we're already out of stack space.
aoqi@0 794 Klass* k = SystemDictionary::StackOverflowError_klass();
aoqi@0 795 oop exception_oop = InstanceKlass::cast(k)->allocate_instance(CHECK);
aoqi@0 796 Handle exception (thread, exception_oop);
aoqi@0 797 if (StackTraceInThrowable) {
aoqi@0 798 java_lang_Throwable::fill_in_stack_trace(exception);
aoqi@0 799 }
shshahma@9301 800 // Increment counter for hs_err file reporting
shshahma@9301 801 Atomic::inc(&Exceptions::_stack_overflow_errors);
aoqi@0 802 throw_and_post_jvmti_exception(thread, exception);
aoqi@0 803 JRT_END
aoqi@0 804
aoqi@0 805 address SharedRuntime::continuation_for_implicit_exception(JavaThread* thread,
aoqi@0 806 address pc,
aoqi@0 807 SharedRuntime::ImplicitExceptionKind exception_kind)
aoqi@0 808 {
aoqi@0 809 address target_pc = NULL;
aoqi@0 810
aoqi@0 811 if (Interpreter::contains(pc)) {
aoqi@0 812 #ifdef CC_INTERP
aoqi@0 813 // C++ interpreter doesn't throw implicit exceptions
aoqi@0 814 ShouldNotReachHere();
aoqi@0 815 #else
aoqi@0 816 switch (exception_kind) {
aoqi@0 817 case IMPLICIT_NULL: return Interpreter::throw_NullPointerException_entry();
aoqi@0 818 case IMPLICIT_DIVIDE_BY_ZERO: return Interpreter::throw_ArithmeticException_entry();
aoqi@0 819 case STACK_OVERFLOW: return Interpreter::throw_StackOverflowError_entry();
aoqi@0 820 default: ShouldNotReachHere();
aoqi@0 821 }
aoqi@0 822 #endif // !CC_INTERP
aoqi@0 823 } else {
aoqi@0 824 switch (exception_kind) {
aoqi@0 825 case STACK_OVERFLOW: {
aoqi@0 826 // Stack overflow only occurs upon frame setup; the callee is
aoqi@0 827 // going to be unwound. Dispatch to a shared runtime stub
aoqi@0 828 // which will cause the StackOverflowError to be fabricated
aoqi@0 829 // and processed.
aoqi@0 830 // Stack overflow should never occur during deoptimization:
aoqi@0 831 // the compiled method bangs the stack by as much as the
aoqi@0 832 // interpreter would need in case of a deoptimization. The
aoqi@0 833 // deoptimization blob and uncommon trap blob bang the stack
aoqi@0 834 // in a debug VM to verify the correctness of the compiled
aoqi@0 835 // method stack banging.
aoqi@0 836 assert(thread->deopt_mark() == NULL, "no stack overflow from deopt blob/uncommon trap");
aoqi@0 837 Events::log_exception(thread, "StackOverflowError at " INTPTR_FORMAT, pc);
aoqi@0 838 return StubRoutines::throw_StackOverflowError_entry();
aoqi@0 839 }
aoqi@0 840
aoqi@0 841 case IMPLICIT_NULL: {
aoqi@0 842 if (VtableStubs::contains(pc)) {
aoqi@0 843 // We haven't yet entered the callee frame. Fabricate an
aoqi@0 844 // exception and begin dispatching it in the caller. Since
aoqi@0 845 // the caller was at a call site, it's safe to destroy all
aoqi@0 846 // caller-saved registers, as these entry points do.
aoqi@0 847 VtableStub* vt_stub = VtableStubs::stub_containing(pc);
aoqi@0 848
aoqi@0 849 // If vt_stub is NULL, then return NULL to signal handler to report the SEGV error.
aoqi@0 850 if (vt_stub == NULL) return NULL;
aoqi@0 851
aoqi@0 852 if (vt_stub->is_abstract_method_error(pc)) {
aoqi@0 853 assert(!vt_stub->is_vtable_stub(), "should never see AbstractMethodErrors from vtable-type VtableStubs");
aoqi@0 854 Events::log_exception(thread, "AbstractMethodError at " INTPTR_FORMAT, pc);
aoqi@0 855 return StubRoutines::throw_AbstractMethodError_entry();
aoqi@0 856 } else {
aoqi@0 857 Events::log_exception(thread, "NullPointerException at vtable entry " INTPTR_FORMAT, pc);
aoqi@0 858 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 859 }
aoqi@0 860 } else {
aoqi@0 861 CodeBlob* cb = CodeCache::find_blob(pc);
aoqi@0 862
aoqi@0 863 // If code blob is NULL, then return NULL to signal handler to report the SEGV error.
aoqi@0 864 if (cb == NULL) return NULL;
aoqi@0 865
aoqi@0 866 // Exception happened in CodeCache. Must be either:
aoqi@0 867 // 1. Inline-cache check in C2I handler blob,
aoqi@0 868 // 2. Inline-cache check in nmethod, or
aoqi@0 869 // 3. Implict null exception in nmethod
aoqi@0 870
aoqi@0 871 if (!cb->is_nmethod()) {
aoqi@0 872 bool is_in_blob = cb->is_adapter_blob() || cb->is_method_handles_adapter_blob();
aoqi@0 873 if (!is_in_blob) {
aoqi@0 874 cb->print();
aoqi@0 875 fatal(err_msg("exception happened outside interpreter, nmethods and vtable stubs at pc " INTPTR_FORMAT, pc));
aoqi@0 876 }
aoqi@0 877 Events::log_exception(thread, "NullPointerException in code blob at " INTPTR_FORMAT, pc);
aoqi@0 878 // There is no handler here, so we will simply unwind.
aoqi@0 879 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 880 }
aoqi@0 881
aoqi@0 882 // Otherwise, it's an nmethod. Consult its exception handlers.
aoqi@0 883 nmethod* nm = (nmethod*)cb;
aoqi@0 884 if (nm->inlinecache_check_contains(pc)) {
aoqi@0 885 // exception happened inside inline-cache check code
aoqi@0 886 // => the nmethod is not yet active (i.e., the frame
aoqi@0 887 // is not set up yet) => use return address pushed by
aoqi@0 888 // caller => don't push another return address
aoqi@0 889 Events::log_exception(thread, "NullPointerException in IC check " INTPTR_FORMAT, pc);
aoqi@0 890 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 891 }
aoqi@0 892
aoqi@0 893 if (nm->method()->is_method_handle_intrinsic()) {
aoqi@0 894 // exception happened inside MH dispatch code, similar to a vtable stub
aoqi@0 895 Events::log_exception(thread, "NullPointerException in MH adapter " INTPTR_FORMAT, pc);
aoqi@0 896 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 897 }
aoqi@0 898
aoqi@0 899 #ifndef PRODUCT
aoqi@0 900 _implicit_null_throws++;
aoqi@0 901 #endif
aoqi@0 902 target_pc = nm->continuation_for_implicit_exception(pc);
aoqi@0 903 // If there's an unexpected fault, target_pc might be NULL,
aoqi@0 904 // in which case we want to fall through into the normal
aoqi@0 905 // error handling code.
aoqi@0 906 }
aoqi@0 907
aoqi@0 908 break; // fall through
aoqi@0 909 }
aoqi@0 910
aoqi@0 911
aoqi@0 912 case IMPLICIT_DIVIDE_BY_ZERO: {
aoqi@0 913 nmethod* nm = CodeCache::find_nmethod(pc);
aoqi@0 914 guarantee(nm != NULL, "must have containing nmethod for implicit division-by-zero exceptions");
aoqi@0 915 #ifndef PRODUCT
aoqi@0 916 _implicit_div0_throws++;
aoqi@0 917 #endif
aoqi@0 918 target_pc = nm->continuation_for_implicit_exception(pc);
aoqi@0 919 // If there's an unexpected fault, target_pc might be NULL,
aoqi@0 920 // in which case we want to fall through into the normal
aoqi@0 921 // error handling code.
aoqi@0 922 break; // fall through
aoqi@0 923 }
aoqi@0 924
aoqi@0 925 default: ShouldNotReachHere();
aoqi@0 926 }
aoqi@0 927
aoqi@0 928 assert(exception_kind == IMPLICIT_NULL || exception_kind == IMPLICIT_DIVIDE_BY_ZERO, "wrong implicit exception kind");
aoqi@0 929
aoqi@0 930 // for AbortVMOnException flag
aoqi@0 931 NOT_PRODUCT(Exceptions::debug_check_abort("java.lang.NullPointerException"));
aoqi@0 932 if (exception_kind == IMPLICIT_NULL) {
aoqi@0 933 Events::log_exception(thread, "Implicit null exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
aoqi@0 934 } else {
aoqi@0 935 Events::log_exception(thread, "Implicit division by zero exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
aoqi@0 936 }
aoqi@0 937 return target_pc;
aoqi@0 938 }
aoqi@0 939
aoqi@0 940 ShouldNotReachHere();
aoqi@0 941 return NULL;
aoqi@0 942 }
aoqi@0 943
aoqi@0 944
aoqi@0 945 /**
aoqi@0 946 * Throws an java/lang/UnsatisfiedLinkError. The address of this method is
aoqi@0 947 * installed in the native function entry of all native Java methods before
aoqi@0 948 * they get linked to their actual native methods.
aoqi@0 949 *
aoqi@0 950 * \note
aoqi@0 951 * This method actually never gets called! The reason is because
aoqi@0 952 * the interpreter's native entries call NativeLookup::lookup() which
aoqi@0 953 * throws the exception when the lookup fails. The exception is then
aoqi@0 954 * caught and forwarded on the return from NativeLookup::lookup() call
aoqi@0 955 * before the call to the native function. This might change in the future.
aoqi@0 956 */
aoqi@0 957 JNI_ENTRY(void*, throw_unsatisfied_link_error(JNIEnv* env, ...))
aoqi@0 958 {
aoqi@0 959 // We return a bad value here to make sure that the exception is
aoqi@0 960 // forwarded before we look at the return value.
aoqi@0 961 THROW_(vmSymbols::java_lang_UnsatisfiedLinkError(), (void*)badJNIHandle);
aoqi@0 962 }
aoqi@0 963 JNI_END
aoqi@0 964
aoqi@0 965 address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
aoqi@0 966 return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
aoqi@0 967 }
aoqi@0 968
aoqi@0 969
aoqi@0 970 #ifndef PRODUCT
aoqi@0 971 JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
aoqi@0 972 const frame f = thread->last_frame();
aoqi@0 973 assert(f.is_interpreted_frame(), "must be an interpreted frame");
aoqi@0 974 #ifndef PRODUCT
aoqi@0 975 methodHandle mh(THREAD, f.interpreter_frame_method());
aoqi@0 976 BytecodeTracer::trace(mh, f.interpreter_frame_bcp(), tos, tos2);
aoqi@0 977 #endif // !PRODUCT
aoqi@0 978 return preserve_this_value;
aoqi@0 979 JRT_END
aoqi@0 980 #endif // !PRODUCT
aoqi@0 981
aoqi@0 982
aoqi@0 983 JRT_ENTRY(void, SharedRuntime::yield_all(JavaThread* thread, int attempts))
aoqi@0 984 os::yield_all(attempts);
aoqi@0 985 JRT_END
aoqi@0 986
aoqi@0 987
aoqi@0 988 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::register_finalizer(JavaThread* thread, oopDesc* obj))
aoqi@0 989 assert(obj->is_oop(), "must be a valid oop");
aoqi@0 990 assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
aoqi@0 991 InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
aoqi@0 992 JRT_END
aoqi@0 993
aoqi@0 994
aoqi@0 995 jlong SharedRuntime::get_java_tid(Thread* thread) {
aoqi@0 996 if (thread != NULL) {
aoqi@0 997 if (thread->is_Java_thread()) {
aoqi@0 998 oop obj = ((JavaThread*)thread)->threadObj();
aoqi@0 999 return (obj == NULL) ? 0 : java_lang_Thread::thread_id(obj);
aoqi@0 1000 }
aoqi@0 1001 }
aoqi@0 1002 return 0;
aoqi@0 1003 }
aoqi@0 1004
aoqi@0 1005 /**
aoqi@0 1006 * This function ought to be a void function, but cannot be because
aoqi@0 1007 * it gets turned into a tail-call on sparc, which runs into dtrace bug
aoqi@0 1008 * 6254741. Once that is fixed we can remove the dummy return value.
aoqi@0 1009 */
aoqi@0 1010 int SharedRuntime::dtrace_object_alloc(oopDesc* o, int size) {
aoqi@0 1011 return dtrace_object_alloc_base(Thread::current(), o, size);
aoqi@0 1012 }
aoqi@0 1013
aoqi@0 1014 int SharedRuntime::dtrace_object_alloc_base(Thread* thread, oopDesc* o, int size) {
aoqi@0 1015 assert(DTraceAllocProbes, "wrong call");
aoqi@0 1016 Klass* klass = o->klass();
aoqi@0 1017 Symbol* name = klass->name();
aoqi@0 1018 #ifndef USDT2
aoqi@0 1019 HS_DTRACE_PROBE4(hotspot, object__alloc, get_java_tid(thread),
aoqi@0 1020 name->bytes(), name->utf8_length(), size * HeapWordSize);
aoqi@0 1021 #else /* USDT2 */
aoqi@0 1022 HOTSPOT_OBJECT_ALLOC(
aoqi@0 1023 get_java_tid(thread),
aoqi@0 1024 (char *) name->bytes(), name->utf8_length(), size * HeapWordSize);
aoqi@0 1025 #endif /* USDT2 */
aoqi@0 1026 return 0;
aoqi@0 1027 }
aoqi@0 1028
aoqi@0 1029 JRT_LEAF(int, SharedRuntime::dtrace_method_entry(
aoqi@0 1030 JavaThread* thread, Method* method))
aoqi@0 1031 assert(DTraceMethodProbes, "wrong call");
aoqi@0 1032 Symbol* kname = method->klass_name();
aoqi@0 1033 Symbol* name = method->name();
aoqi@0 1034 Symbol* sig = method->signature();
aoqi@0 1035 #ifndef USDT2
aoqi@0 1036 HS_DTRACE_PROBE7(hotspot, method__entry, get_java_tid(thread),
aoqi@0 1037 kname->bytes(), kname->utf8_length(),
aoqi@0 1038 name->bytes(), name->utf8_length(),
aoqi@0 1039 sig->bytes(), sig->utf8_length());
aoqi@0 1040 #else /* USDT2 */
aoqi@0 1041 HOTSPOT_METHOD_ENTRY(
aoqi@0 1042 get_java_tid(thread),
aoqi@0 1043 (char *) kname->bytes(), kname->utf8_length(),
aoqi@0 1044 (char *) name->bytes(), name->utf8_length(),
aoqi@0 1045 (char *) sig->bytes(), sig->utf8_length());
aoqi@0 1046 #endif /* USDT2 */
aoqi@0 1047 return 0;
aoqi@0 1048 JRT_END
aoqi@0 1049
aoqi@0 1050 JRT_LEAF(int, SharedRuntime::dtrace_method_exit(
aoqi@0 1051 JavaThread* thread, Method* method))
aoqi@0 1052 assert(DTraceMethodProbes, "wrong call");
aoqi@0 1053 Symbol* kname = method->klass_name();
aoqi@0 1054 Symbol* name = method->name();
aoqi@0 1055 Symbol* sig = method->signature();
aoqi@0 1056 #ifndef USDT2
aoqi@0 1057 HS_DTRACE_PROBE7(hotspot, method__return, get_java_tid(thread),
aoqi@0 1058 kname->bytes(), kname->utf8_length(),
aoqi@0 1059 name->bytes(), name->utf8_length(),
aoqi@0 1060 sig->bytes(), sig->utf8_length());
aoqi@0 1061 #else /* USDT2 */
aoqi@0 1062 HOTSPOT_METHOD_RETURN(
aoqi@0 1063 get_java_tid(thread),
aoqi@0 1064 (char *) kname->bytes(), kname->utf8_length(),
aoqi@0 1065 (char *) name->bytes(), name->utf8_length(),
aoqi@0 1066 (char *) sig->bytes(), sig->utf8_length());
aoqi@0 1067 #endif /* USDT2 */
aoqi@0 1068 return 0;
aoqi@0 1069 JRT_END
aoqi@0 1070
aoqi@0 1071
aoqi@0 1072 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode)
aoqi@0 1073 // for a call current in progress, i.e., arguments has been pushed on stack
aoqi@0 1074 // put callee has not been invoked yet. Used by: resolve virtual/static,
aoqi@0 1075 // vtable updates, etc. Caller frame must be compiled.
aoqi@0 1076 Handle SharedRuntime::find_callee_info(JavaThread* thread, Bytecodes::Code& bc, CallInfo& callinfo, TRAPS) {
aoqi@0 1077 ResourceMark rm(THREAD);
aoqi@0 1078
aoqi@0 1079 // last java frame on stack (which includes native call frames)
aoqi@0 1080 vframeStream vfst(thread, true); // Do not skip and javaCalls
aoqi@0 1081
aoqi@0 1082 return find_callee_info_helper(thread, vfst, bc, callinfo, CHECK_(Handle()));
aoqi@0 1083 }
aoqi@0 1084
aoqi@0 1085
aoqi@0 1086 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode
aoqi@0 1087 // for a call current in progress, i.e., arguments has been pushed on stack
aoqi@0 1088 // but callee has not been invoked yet. Caller frame must be compiled.
aoqi@0 1089 Handle SharedRuntime::find_callee_info_helper(JavaThread* thread,
aoqi@0 1090 vframeStream& vfst,
aoqi@0 1091 Bytecodes::Code& bc,
aoqi@0 1092 CallInfo& callinfo, TRAPS) {
aoqi@0 1093 Handle receiver;
aoqi@0 1094 Handle nullHandle; //create a handy null handle for exception returns
aoqi@0 1095
aoqi@0 1096 assert(!vfst.at_end(), "Java frame must exist");
aoqi@0 1097
aoqi@0 1098 // Find caller and bci from vframe
aoqi@0 1099 methodHandle caller(THREAD, vfst.method());
aoqi@0 1100 int bci = vfst.bci();
aoqi@0 1101
aoqi@0 1102 // Find bytecode
aoqi@0 1103 Bytecode_invoke bytecode(caller, bci);
aoqi@0 1104 bc = bytecode.invoke_code();
aoqi@0 1105 int bytecode_index = bytecode.index();
aoqi@0 1106
aoqi@0 1107 // Find receiver for non-static call
aoqi@0 1108 if (bc != Bytecodes::_invokestatic &&
aoqi@0 1109 bc != Bytecodes::_invokedynamic &&
aoqi@0 1110 bc != Bytecodes::_invokehandle) {
aoqi@0 1111 // This register map must be update since we need to find the receiver for
aoqi@0 1112 // compiled frames. The receiver might be in a register.
aoqi@0 1113 RegisterMap reg_map2(thread);
aoqi@0 1114 frame stubFrame = thread->last_frame();
aoqi@0 1115 // Caller-frame is a compiled frame
aoqi@0 1116 frame callerFrame = stubFrame.sender(&reg_map2);
aoqi@0 1117
aoqi@0 1118 methodHandle callee = bytecode.static_target(CHECK_(nullHandle));
aoqi@0 1119 if (callee.is_null()) {
aoqi@0 1120 THROW_(vmSymbols::java_lang_NoSuchMethodException(), nullHandle);
aoqi@0 1121 }
aoqi@0 1122 // Retrieve from a compiled argument list
aoqi@0 1123 receiver = Handle(THREAD, callerFrame.retrieve_receiver(&reg_map2));
aoqi@0 1124
aoqi@0 1125 if (receiver.is_null()) {
aoqi@0 1126 THROW_(vmSymbols::java_lang_NullPointerException(), nullHandle);
aoqi@0 1127 }
aoqi@0 1128 }
aoqi@0 1129
aoqi@0 1130 // Resolve method. This is parameterized by bytecode.
aoqi@0 1131 constantPoolHandle constants(THREAD, caller->constants());
aoqi@0 1132 assert(receiver.is_null() || receiver->is_oop(), "wrong receiver");
aoqi@0 1133 LinkResolver::resolve_invoke(callinfo, receiver, constants, bytecode_index, bc, CHECK_(nullHandle));
aoqi@0 1134
aoqi@0 1135 #ifdef ASSERT
aoqi@0 1136 // Check that the receiver klass is of the right subtype and that it is initialized for virtual calls
aoqi@0 1137 if (bc != Bytecodes::_invokestatic && bc != Bytecodes::_invokedynamic && bc != Bytecodes::_invokehandle) {
aoqi@0 1138 assert(receiver.not_null(), "should have thrown exception");
aoqi@0 1139 KlassHandle receiver_klass(THREAD, receiver->klass());
aoqi@0 1140 Klass* rk = constants->klass_ref_at(bytecode_index, CHECK_(nullHandle));
aoqi@0 1141 // klass is already loaded
aoqi@0 1142 KlassHandle static_receiver_klass(THREAD, rk);
aoqi@0 1143 // Method handle invokes might have been optimized to a direct call
aoqi@0 1144 // so don't check for the receiver class.
aoqi@0 1145 // FIXME this weakens the assert too much
aoqi@0 1146 methodHandle callee = callinfo.selected_method();
aoqi@0 1147 assert(receiver_klass->is_subtype_of(static_receiver_klass()) ||
aoqi@0 1148 callee->is_method_handle_intrinsic() ||
aoqi@0 1149 callee->is_compiled_lambda_form(),
aoqi@0 1150 "actual receiver must be subclass of static receiver klass");
aoqi@0 1151 if (receiver_klass->oop_is_instance()) {
aoqi@0 1152 if (InstanceKlass::cast(receiver_klass())->is_not_initialized()) {
aoqi@0 1153 tty->print_cr("ERROR: Klass not yet initialized!!");
aoqi@0 1154 receiver_klass()->print();
aoqi@0 1155 }
aoqi@0 1156 assert(!InstanceKlass::cast(receiver_klass())->is_not_initialized(), "receiver_klass must be initialized");
aoqi@0 1157 }
aoqi@0 1158 }
aoqi@0 1159 #endif
aoqi@0 1160
aoqi@0 1161 return receiver;
aoqi@0 1162 }
aoqi@0 1163
aoqi@0 1164 methodHandle SharedRuntime::find_callee_method(JavaThread* thread, TRAPS) {
aoqi@0 1165 ResourceMark rm(THREAD);
aoqi@0 1166 // We need first to check if any Java activations (compiled, interpreted)
aoqi@0 1167 // exist on the stack since last JavaCall. If not, we need
aoqi@0 1168 // to get the target method from the JavaCall wrapper.
aoqi@0 1169 vframeStream vfst(thread, true); // Do not skip any javaCalls
aoqi@0 1170 methodHandle callee_method;
aoqi@0 1171 if (vfst.at_end()) {
aoqi@0 1172 // No Java frames were found on stack since we did the JavaCall.
aoqi@0 1173 // Hence the stack can only contain an entry_frame. We need to
aoqi@0 1174 // find the target method from the stub frame.
aoqi@0 1175 RegisterMap reg_map(thread, false);
aoqi@0 1176 frame fr = thread->last_frame();
aoqi@0 1177 assert(fr.is_runtime_frame(), "must be a runtimeStub");
aoqi@0 1178 fr = fr.sender(&reg_map);
aoqi@0 1179 assert(fr.is_entry_frame(), "must be");
aoqi@0 1180 // fr is now pointing to the entry frame.
aoqi@0 1181 callee_method = methodHandle(THREAD, fr.entry_frame_call_wrapper()->callee_method());
aoqi@0 1182 assert(fr.entry_frame_call_wrapper()->receiver() == NULL || !callee_method->is_static(), "non-null receiver for static call??");
aoqi@0 1183 } else {
aoqi@0 1184 Bytecodes::Code bc;
aoqi@0 1185 CallInfo callinfo;
aoqi@0 1186 find_callee_info_helper(thread, vfst, bc, callinfo, CHECK_(methodHandle()));
aoqi@0 1187 callee_method = callinfo.selected_method();
aoqi@0 1188 }
aoqi@0 1189 assert(callee_method()->is_method(), "must be");
aoqi@0 1190 return callee_method;
aoqi@0 1191 }
aoqi@0 1192
aoqi@0 1193 // Resolves a call.
aoqi@0 1194 methodHandle SharedRuntime::resolve_helper(JavaThread *thread,
aoqi@0 1195 bool is_virtual,
aoqi@0 1196 bool is_optimized, TRAPS) {
aoqi@0 1197 methodHandle callee_method;
aoqi@0 1198 callee_method = resolve_sub_helper(thread, is_virtual, is_optimized, THREAD);
aoqi@0 1199 if (JvmtiExport::can_hotswap_or_post_breakpoint()) {
aoqi@0 1200 int retry_count = 0;
aoqi@0 1201 while (!HAS_PENDING_EXCEPTION && callee_method->is_old() &&
aoqi@0 1202 callee_method->method_holder() != SystemDictionary::Object_klass()) {
aoqi@0 1203 // If has a pending exception then there is no need to re-try to
aoqi@0 1204 // resolve this method.
aoqi@0 1205 // If the method has been redefined, we need to try again.
aoqi@0 1206 // Hack: we have no way to update the vtables of arrays, so don't
aoqi@0 1207 // require that java.lang.Object has been updated.
aoqi@0 1208
aoqi@0 1209 // It is very unlikely that method is redefined more than 100 times
aoqi@0 1210 // in the middle of resolve. If it is looping here more than 100 times
aoqi@0 1211 // means then there could be a bug here.
aoqi@0 1212 guarantee((retry_count++ < 100),
aoqi@0 1213 "Could not resolve to latest version of redefined method");
aoqi@0 1214 // method is redefined in the middle of resolve so re-try.
aoqi@0 1215 callee_method = resolve_sub_helper(thread, is_virtual, is_optimized, THREAD);
aoqi@0 1216 }
aoqi@0 1217 }
aoqi@0 1218 return callee_method;
aoqi@0 1219 }
aoqi@0 1220
aoqi@0 1221 // Resolves a call. The compilers generate code for calls that go here
aoqi@0 1222 // and are patched with the real destination of the call.
aoqi@0 1223 methodHandle SharedRuntime::resolve_sub_helper(JavaThread *thread,
aoqi@0 1224 bool is_virtual,
aoqi@0 1225 bool is_optimized, TRAPS) {
aoqi@0 1226
aoqi@0 1227 ResourceMark rm(thread);
aoqi@0 1228 RegisterMap cbl_map(thread, false);
aoqi@0 1229 frame caller_frame = thread->last_frame().sender(&cbl_map);
aoqi@0 1230
aoqi@0 1231 CodeBlob* caller_cb = caller_frame.cb();
aoqi@0 1232 guarantee(caller_cb != NULL && caller_cb->is_nmethod(), "must be called from nmethod");
aoqi@0 1233 nmethod* caller_nm = caller_cb->as_nmethod_or_null();
aoqi@0 1234
aoqi@0 1235 // make sure caller is not getting deoptimized
aoqi@0 1236 // and removed before we are done with it.
aoqi@0 1237 // CLEANUP - with lazy deopt shouldn't need this lock
aoqi@0 1238 nmethodLocker caller_lock(caller_nm);
aoqi@0 1239
aoqi@0 1240 // determine call info & receiver
aoqi@0 1241 // note: a) receiver is NULL for static calls
aoqi@0 1242 // b) an exception is thrown if receiver is NULL for non-static calls
aoqi@0 1243 CallInfo call_info;
aoqi@0 1244 Bytecodes::Code invoke_code = Bytecodes::_illegal;
aoqi@0 1245 Handle receiver = find_callee_info(thread, invoke_code,
aoqi@0 1246 call_info, CHECK_(methodHandle()));
aoqi@0 1247 methodHandle callee_method = call_info.selected_method();
aoqi@0 1248
aoqi@0 1249 assert((!is_virtual && invoke_code == Bytecodes::_invokestatic ) ||
aoqi@0 1250 (!is_virtual && invoke_code == Bytecodes::_invokehandle ) ||
aoqi@0 1251 (!is_virtual && invoke_code == Bytecodes::_invokedynamic) ||
aoqi@0 1252 ( is_virtual && invoke_code != Bytecodes::_invokestatic ), "inconsistent bytecode");
aoqi@0 1253
thartmann@7193 1254 assert(caller_nm->is_alive(), "It should be alive");
aoqi@0 1255
aoqi@0 1256 #ifndef PRODUCT
aoqi@0 1257 // tracing/debugging/statistics
aoqi@0 1258 int *addr = (is_optimized) ? (&_resolve_opt_virtual_ctr) :
aoqi@0 1259 (is_virtual) ? (&_resolve_virtual_ctr) :
aoqi@0 1260 (&_resolve_static_ctr);
aoqi@0 1261 Atomic::inc(addr);
aoqi@0 1262
aoqi@0 1263 if (TraceCallFixup) {
aoqi@0 1264 ResourceMark rm(thread);
aoqi@0 1265 tty->print("resolving %s%s (%s) call to",
aoqi@0 1266 (is_optimized) ? "optimized " : "", (is_virtual) ? "virtual" : "static",
aoqi@0 1267 Bytecodes::name(invoke_code));
aoqi@0 1268 callee_method->print_short_name(tty);
aoqi@0 1269 tty->print_cr(" at pc: " INTPTR_FORMAT " to code: " INTPTR_FORMAT, caller_frame.pc(), callee_method->code());
aoqi@0 1270 }
aoqi@0 1271 #endif
aoqi@0 1272
dholmes@9532 1273 // Do not patch call site for static call when the class is not
dholmes@9532 1274 // fully initialized.
dholmes@9532 1275 if (invoke_code == Bytecodes::_invokestatic &&
dholmes@9532 1276 !callee_method->method_holder()->is_initialized()) {
dholmes@9532 1277 assert(callee_method->method_holder()->is_linked(), "must be");
dholmes@9532 1278 return callee_method;
dholmes@9532 1279 }
dholmes@9532 1280
aoqi@0 1281 // JSR 292 key invariant:
zmajo@7854 1282 // If the resolved method is a MethodHandle invoke target, the call
aoqi@0 1283 // site must be a MethodHandle call site, because the lambda form might tail-call
aoqi@0 1284 // leaving the stack in a state unknown to either caller or callee
aoqi@0 1285 // TODO detune for now but we might need it again
aoqi@0 1286 // assert(!callee_method->is_compiled_lambda_form() ||
aoqi@0 1287 // caller_nm->is_method_handle_return(caller_frame.pc()), "must be MH call site");
aoqi@0 1288
aoqi@0 1289 // Compute entry points. This might require generation of C2I converter
aoqi@0 1290 // frames, so we cannot be holding any locks here. Furthermore, the
aoqi@0 1291 // computation of the entry points is independent of patching the call. We
aoqi@0 1292 // always return the entry-point, but we only patch the stub if the call has
aoqi@0 1293 // not been deoptimized. Return values: For a virtual call this is an
aoqi@0 1294 // (cached_oop, destination address) pair. For a static call/optimized
aoqi@0 1295 // virtual this is just a destination address.
aoqi@0 1296
aoqi@0 1297 StaticCallInfo static_call_info;
aoqi@0 1298 CompiledICInfo virtual_call_info;
aoqi@0 1299
aoqi@0 1300 // Make sure the callee nmethod does not get deoptimized and removed before
aoqi@0 1301 // we are done patching the code.
aoqi@0 1302 nmethod* callee_nm = callee_method->code();
aoqi@0 1303 if (callee_nm != NULL && !callee_nm->is_in_use()) {
aoqi@0 1304 // Patch call site to C2I adapter if callee nmethod is deoptimized or unloaded.
aoqi@0 1305 callee_nm = NULL;
aoqi@0 1306 }
aoqi@0 1307 nmethodLocker nl_callee(callee_nm);
aoqi@0 1308 #ifdef ASSERT
aoqi@0 1309 address dest_entry_point = callee_nm == NULL ? 0 : callee_nm->entry_point(); // used below
aoqi@0 1310 #endif
aoqi@0 1311
aoqi@0 1312 if (is_virtual) {
aoqi@0 1313 assert(receiver.not_null() || invoke_code == Bytecodes::_invokehandle, "sanity check");
aoqi@0 1314 bool static_bound = call_info.resolved_method()->can_be_statically_bound();
aoqi@0 1315 KlassHandle h_klass(THREAD, invoke_code == Bytecodes::_invokehandle ? NULL : receiver->klass());
aoqi@0 1316 CompiledIC::compute_monomorphic_entry(callee_method, h_klass,
aoqi@0 1317 is_optimized, static_bound, virtual_call_info,
aoqi@0 1318 CHECK_(methodHandle()));
aoqi@0 1319 } else {
aoqi@0 1320 // static call
aoqi@0 1321 CompiledStaticCall::compute_entry(callee_method, static_call_info);
aoqi@0 1322 }
aoqi@0 1323
aoqi@0 1324 // grab lock, check for deoptimization and potentially patch caller
aoqi@0 1325 {
aoqi@0 1326 MutexLocker ml_patch(CompiledIC_lock);
aoqi@0 1327
aoqi@0 1328 // Lock blocks for safepoint during which both nmethods can change state.
aoqi@0 1329
aoqi@0 1330 // Now that we are ready to patch if the Method* was redefined then
aoqi@0 1331 // don't update call site and let the caller retry.
aoqi@0 1332 // Don't update call site if callee nmethod was unloaded or deoptimized.
aoqi@0 1333 // Don't update call site if callee nmethod was replaced by an other nmethod
aoqi@0 1334 // which may happen when multiply alive nmethod (tiered compilation)
aoqi@0 1335 // will be supported.
thartmann@7193 1336 if (!callee_method->is_old() &&
aoqi@0 1337 (callee_nm == NULL || callee_nm->is_in_use() && (callee_method->code() == callee_nm))) {
aoqi@0 1338 #ifdef ASSERT
aoqi@0 1339 // We must not try to patch to jump to an already unloaded method.
aoqi@0 1340 if (dest_entry_point != 0) {
aoqi@0 1341 CodeBlob* cb = CodeCache::find_blob(dest_entry_point);
aoqi@0 1342 assert((cb != NULL) && cb->is_nmethod() && (((nmethod*)cb) == callee_nm),
aoqi@0 1343 "should not call unloaded nmethod");
aoqi@0 1344 }
aoqi@0 1345 #endif
aoqi@0 1346 if (is_virtual) {
aoqi@0 1347 nmethod* nm = callee_nm;
aoqi@0 1348 if (nm == NULL) CodeCache::find_blob(caller_frame.pc());
aoqi@0 1349 CompiledIC* inline_cache = CompiledIC_before(caller_nm, caller_frame.pc());
aoqi@0 1350 if (inline_cache->is_clean()) {
aoqi@0 1351 inline_cache->set_to_monomorphic(virtual_call_info);
aoqi@0 1352 }
aoqi@0 1353 } else {
aoqi@0 1354 CompiledStaticCall* ssc = compiledStaticCall_before(caller_frame.pc());
aoqi@0 1355 if (ssc->is_clean()) ssc->set(static_call_info);
aoqi@0 1356 }
aoqi@0 1357 }
aoqi@0 1358
aoqi@0 1359 } // unlock CompiledIC_lock
aoqi@0 1360
aoqi@0 1361 return callee_method;
aoqi@0 1362 }
aoqi@0 1363
aoqi@0 1364
aoqi@0 1365 // Inline caches exist only in compiled code
aoqi@0 1366 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method_ic_miss(JavaThread* thread))
aoqi@0 1367 #ifdef ASSERT
aoqi@0 1368 RegisterMap reg_map(thread, false);
aoqi@0 1369 frame stub_frame = thread->last_frame();
aoqi@0 1370 assert(stub_frame.is_runtime_frame(), "sanity check");
aoqi@0 1371 frame caller_frame = stub_frame.sender(&reg_map);
aoqi@0 1372 assert(!caller_frame.is_interpreted_frame() && !caller_frame.is_entry_frame(), "unexpected frame");
aoqi@0 1373 #endif /* ASSERT */
aoqi@0 1374
aoqi@0 1375 methodHandle callee_method;
aoqi@0 1376 JRT_BLOCK
aoqi@0 1377 callee_method = SharedRuntime::handle_ic_miss_helper(thread, CHECK_NULL);
aoqi@0 1378 // Return Method* through TLS
aoqi@0 1379 thread->set_vm_result_2(callee_method());
aoqi@0 1380 JRT_BLOCK_END
aoqi@0 1381 // return compiled code entry point after potential safepoints
aoqi@0 1382 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1383 return callee_method->verified_code_entry();
aoqi@0 1384 JRT_END
aoqi@0 1385
aoqi@0 1386
aoqi@0 1387 // Handle call site that has been made non-entrant
aoqi@0 1388 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method(JavaThread* thread))
aoqi@0 1389 // 6243940 We might end up in here if the callee is deoptimized
aoqi@0 1390 // as we race to call it. We don't want to take a safepoint if
aoqi@0 1391 // the caller was interpreted because the caller frame will look
aoqi@0 1392 // interpreted to the stack walkers and arguments are now
aoqi@0 1393 // "compiled" so it is much better to make this transition
aoqi@0 1394 // invisible to the stack walking code. The i2c path will
aoqi@0 1395 // place the callee method in the callee_target. It is stashed
aoqi@0 1396 // there because if we try and find the callee by normal means a
aoqi@0 1397 // safepoint is possible and have trouble gc'ing the compiled args.
aoqi@0 1398 RegisterMap reg_map(thread, false);
aoqi@0 1399 frame stub_frame = thread->last_frame();
aoqi@0 1400 assert(stub_frame.is_runtime_frame(), "sanity check");
aoqi@0 1401 frame caller_frame = stub_frame.sender(&reg_map);
aoqi@0 1402
aoqi@0 1403 if (caller_frame.is_interpreted_frame() ||
aoqi@0 1404 caller_frame.is_entry_frame()) {
aoqi@0 1405 Method* callee = thread->callee_target();
aoqi@0 1406 guarantee(callee != NULL && callee->is_method(), "bad handshake");
aoqi@0 1407 thread->set_vm_result_2(callee);
aoqi@0 1408 thread->set_callee_target(NULL);
aoqi@0 1409 return callee->get_c2i_entry();
aoqi@0 1410 }
aoqi@0 1411
aoqi@0 1412 // Must be compiled to compiled path which is safe to stackwalk
aoqi@0 1413 methodHandle callee_method;
aoqi@0 1414 JRT_BLOCK
aoqi@0 1415 // Force resolving of caller (if we called from compiled frame)
aoqi@0 1416 callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_NULL);
aoqi@0 1417 thread->set_vm_result_2(callee_method());
aoqi@0 1418 JRT_BLOCK_END
aoqi@0 1419 // return compiled code entry point after potential safepoints
aoqi@0 1420 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1421 return callee_method->verified_code_entry();
aoqi@0 1422 JRT_END
aoqi@0 1423
aoqi@0 1424 // Handle abstract method call
aoqi@0 1425 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method_abstract(JavaThread* thread))
aoqi@0 1426 return StubRoutines::throw_AbstractMethodError_entry();
aoqi@0 1427 JRT_END
aoqi@0 1428
aoqi@0 1429
aoqi@0 1430 // resolve a static call and patch code
aoqi@0 1431 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_static_call_C(JavaThread *thread ))
aoqi@0 1432 methodHandle callee_method;
aoqi@0 1433 JRT_BLOCK
aoqi@0 1434 callee_method = SharedRuntime::resolve_helper(thread, false, false, CHECK_NULL);
aoqi@0 1435 thread->set_vm_result_2(callee_method());
aoqi@0 1436 JRT_BLOCK_END
aoqi@0 1437 // return compiled code entry point after potential safepoints
aoqi@0 1438 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1439 return callee_method->verified_code_entry();
aoqi@0 1440 JRT_END
aoqi@0 1441
aoqi@0 1442
aoqi@0 1443 // resolve virtual call and update inline cache to monomorphic
aoqi@0 1444 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_virtual_call_C(JavaThread *thread ))
aoqi@0 1445 methodHandle callee_method;
aoqi@0 1446 JRT_BLOCK
aoqi@0 1447 callee_method = SharedRuntime::resolve_helper(thread, true, false, CHECK_NULL);
aoqi@0 1448 thread->set_vm_result_2(callee_method());
aoqi@0 1449 JRT_BLOCK_END
aoqi@0 1450 // return compiled code entry point after potential safepoints
aoqi@0 1451 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1452 return callee_method->verified_code_entry();
aoqi@0 1453 JRT_END
aoqi@0 1454
aoqi@0 1455
aoqi@0 1456 // Resolve a virtual call that can be statically bound (e.g., always
aoqi@0 1457 // monomorphic, so it has no inline cache). Patch code to resolved target.
aoqi@0 1458 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_opt_virtual_call_C(JavaThread *thread))
aoqi@0 1459 methodHandle callee_method;
aoqi@0 1460 JRT_BLOCK
aoqi@0 1461 callee_method = SharedRuntime::resolve_helper(thread, true, true, CHECK_NULL);
aoqi@0 1462 thread->set_vm_result_2(callee_method());
aoqi@0 1463 JRT_BLOCK_END
aoqi@0 1464 // return compiled code entry point after potential safepoints
aoqi@0 1465 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1466 return callee_method->verified_code_entry();
aoqi@0 1467 JRT_END
aoqi@0 1468
aoqi@0 1469
aoqi@0 1470
aoqi@0 1471
aoqi@0 1472
aoqi@0 1473 methodHandle SharedRuntime::handle_ic_miss_helper(JavaThread *thread, TRAPS) {
aoqi@0 1474 ResourceMark rm(thread);
aoqi@0 1475 CallInfo call_info;
aoqi@0 1476 Bytecodes::Code bc;
aoqi@0 1477
aoqi@0 1478 // receiver is NULL for static calls. An exception is thrown for NULL
aoqi@0 1479 // receivers for non-static calls
aoqi@0 1480 Handle receiver = find_callee_info(thread, bc, call_info,
aoqi@0 1481 CHECK_(methodHandle()));
aoqi@0 1482 // Compiler1 can produce virtual call sites that can actually be statically bound
aoqi@0 1483 // If we fell thru to below we would think that the site was going megamorphic
aoqi@0 1484 // when in fact the site can never miss. Worse because we'd think it was megamorphic
aoqi@0 1485 // we'd try and do a vtable dispatch however methods that can be statically bound
aoqi@0 1486 // don't have vtable entries (vtable_index < 0) and we'd blow up. So we force a
aoqi@0 1487 // reresolution of the call site (as if we did a handle_wrong_method and not an
aoqi@0 1488 // plain ic_miss) and the site will be converted to an optimized virtual call site
aoqi@0 1489 // never to miss again. I don't believe C2 will produce code like this but if it
aoqi@0 1490 // did this would still be the correct thing to do for it too, hence no ifdef.
aoqi@0 1491 //
aoqi@0 1492 if (call_info.resolved_method()->can_be_statically_bound()) {
aoqi@0 1493 methodHandle callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_(methodHandle()));
aoqi@0 1494 if (TraceCallFixup) {
aoqi@0 1495 RegisterMap reg_map(thread, false);
aoqi@0 1496 frame caller_frame = thread->last_frame().sender(&reg_map);
aoqi@0 1497 ResourceMark rm(thread);
aoqi@0 1498 tty->print("converting IC miss to reresolve (%s) call to", Bytecodes::name(bc));
aoqi@0 1499 callee_method->print_short_name(tty);
aoqi@0 1500 tty->print_cr(" from pc: " INTPTR_FORMAT, caller_frame.pc());
aoqi@0 1501 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1502 }
aoqi@0 1503 return callee_method;
aoqi@0 1504 }
aoqi@0 1505
aoqi@0 1506 methodHandle callee_method = call_info.selected_method();
aoqi@0 1507
aoqi@0 1508 bool should_be_mono = false;
aoqi@0 1509
aoqi@0 1510 #ifndef PRODUCT
aoqi@0 1511 Atomic::inc(&_ic_miss_ctr);
aoqi@0 1512
aoqi@0 1513 // Statistics & Tracing
aoqi@0 1514 if (TraceCallFixup) {
aoqi@0 1515 ResourceMark rm(thread);
aoqi@0 1516 tty->print("IC miss (%s) call to", Bytecodes::name(bc));
aoqi@0 1517 callee_method->print_short_name(tty);
aoqi@0 1518 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1519 }
aoqi@0 1520
aoqi@0 1521 if (ICMissHistogram) {
aoqi@0 1522 MutexLocker m(VMStatistic_lock);
aoqi@0 1523 RegisterMap reg_map(thread, false);
aoqi@0 1524 frame f = thread->last_frame().real_sender(&reg_map);// skip runtime stub
aoqi@0 1525 // produce statistics under the lock
aoqi@0 1526 trace_ic_miss(f.pc());
aoqi@0 1527 }
aoqi@0 1528 #endif
aoqi@0 1529
aoqi@0 1530 // install an event collector so that when a vtable stub is created the
aoqi@0 1531 // profiler can be notified via a DYNAMIC_CODE_GENERATED event. The
aoqi@0 1532 // event can't be posted when the stub is created as locks are held
aoqi@0 1533 // - instead the event will be deferred until the event collector goes
aoqi@0 1534 // out of scope.
aoqi@0 1535 JvmtiDynamicCodeEventCollector event_collector;
aoqi@0 1536
thartmann@7193 1537 // Update inline cache to megamorphic. Skip update if we are called from interpreted.
aoqi@0 1538 { MutexLocker ml_patch (CompiledIC_lock);
aoqi@0 1539 RegisterMap reg_map(thread, false);
aoqi@0 1540 frame caller_frame = thread->last_frame().sender(&reg_map);
aoqi@0 1541 CodeBlob* cb = caller_frame.cb();
thartmann@7193 1542 if (cb->is_nmethod()) {
aoqi@0 1543 CompiledIC* inline_cache = CompiledIC_before(((nmethod*)cb), caller_frame.pc());
aoqi@0 1544 bool should_be_mono = false;
aoqi@0 1545 if (inline_cache->is_optimized()) {
aoqi@0 1546 if (TraceCallFixup) {
aoqi@0 1547 ResourceMark rm(thread);
aoqi@0 1548 tty->print("OPTIMIZED IC miss (%s) call to", Bytecodes::name(bc));
aoqi@0 1549 callee_method->print_short_name(tty);
aoqi@0 1550 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1551 }
aoqi@0 1552 should_be_mono = true;
aoqi@0 1553 } else if (inline_cache->is_icholder_call()) {
aoqi@0 1554 CompiledICHolder* ic_oop = inline_cache->cached_icholder();
aoqi@0 1555 if ( ic_oop != NULL) {
aoqi@0 1556
aoqi@0 1557 if (receiver()->klass() == ic_oop->holder_klass()) {
aoqi@0 1558 // This isn't a real miss. We must have seen that compiled code
aoqi@0 1559 // is now available and we want the call site converted to a
aoqi@0 1560 // monomorphic compiled call site.
aoqi@0 1561 // We can't assert for callee_method->code() != NULL because it
aoqi@0 1562 // could have been deoptimized in the meantime
aoqi@0 1563 if (TraceCallFixup) {
aoqi@0 1564 ResourceMark rm(thread);
aoqi@0 1565 tty->print("FALSE IC miss (%s) converting to compiled call to", Bytecodes::name(bc));
aoqi@0 1566 callee_method->print_short_name(tty);
aoqi@0 1567 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1568 }
aoqi@0 1569 should_be_mono = true;
aoqi@0 1570 }
aoqi@0 1571 }
aoqi@0 1572 }
aoqi@0 1573
aoqi@0 1574 if (should_be_mono) {
aoqi@0 1575
aoqi@0 1576 // We have a path that was monomorphic but was going interpreted
aoqi@0 1577 // and now we have (or had) a compiled entry. We correct the IC
aoqi@0 1578 // by using a new icBuffer.
aoqi@0 1579 CompiledICInfo info;
aoqi@0 1580 KlassHandle receiver_klass(THREAD, receiver()->klass());
aoqi@0 1581 inline_cache->compute_monomorphic_entry(callee_method,
aoqi@0 1582 receiver_klass,
aoqi@0 1583 inline_cache->is_optimized(),
aoqi@0 1584 false,
aoqi@0 1585 info, CHECK_(methodHandle()));
aoqi@0 1586 inline_cache->set_to_monomorphic(info);
aoqi@0 1587 } else if (!inline_cache->is_megamorphic() && !inline_cache->is_clean()) {
aoqi@0 1588 // Potential change to megamorphic
aoqi@0 1589 bool successful = inline_cache->set_to_megamorphic(&call_info, bc, CHECK_(methodHandle()));
aoqi@0 1590 if (!successful) {
aoqi@0 1591 inline_cache->set_to_clean();
aoqi@0 1592 }
aoqi@0 1593 } else {
aoqi@0 1594 // Either clean or megamorphic
aoqi@0 1595 }
aoqi@0 1596 }
aoqi@0 1597 } // Release CompiledIC_lock
aoqi@0 1598
aoqi@0 1599 return callee_method;
aoqi@0 1600 }
aoqi@0 1601
aoqi@0 1602 //
aoqi@0 1603 // Resets a call-site in compiled code so it will get resolved again.
aoqi@0 1604 // This routines handles both virtual call sites, optimized virtual call
aoqi@0 1605 // sites, and static call sites. Typically used to change a call sites
aoqi@0 1606 // destination from compiled to interpreted.
aoqi@0 1607 //
aoqi@0 1608 methodHandle SharedRuntime::reresolve_call_site(JavaThread *thread, TRAPS) {
aoqi@0 1609 ResourceMark rm(thread);
aoqi@0 1610 RegisterMap reg_map(thread, false);
aoqi@0 1611 frame stub_frame = thread->last_frame();
aoqi@0 1612 assert(stub_frame.is_runtime_frame(), "must be a runtimeStub");
aoqi@0 1613 frame caller = stub_frame.sender(&reg_map);
aoqi@0 1614
aoqi@0 1615 // Do nothing if the frame isn't a live compiled frame.
aoqi@0 1616 // nmethod could be deoptimized by the time we get here
aoqi@0 1617 // so no update to the caller is needed.
aoqi@0 1618
aoqi@0 1619 if (caller.is_compiled_frame() && !caller.is_deoptimized_frame()) {
aoqi@0 1620
aoqi@0 1621 address pc = caller.pc();
aoqi@0 1622
aoqi@0 1623 // Default call_addr is the location of the "basic" call.
aoqi@0 1624 // Determine the address of the call we a reresolving. With
aoqi@0 1625 // Inline Caches we will always find a recognizable call.
aoqi@0 1626 // With Inline Caches disabled we may or may not find a
aoqi@0 1627 // recognizable call. We will always find a call for static
aoqi@0 1628 // calls and for optimized virtual calls. For vanilla virtual
aoqi@0 1629 // calls it depends on the state of the UseInlineCaches switch.
aoqi@0 1630 //
aoqi@0 1631 // With Inline Caches disabled we can get here for a virtual call
aoqi@0 1632 // for two reasons:
aoqi@0 1633 // 1 - calling an abstract method. The vtable for abstract methods
aoqi@0 1634 // will run us thru handle_wrong_method and we will eventually
aoqi@0 1635 // end up in the interpreter to throw the ame.
aoqi@0 1636 // 2 - a racing deoptimization. We could be doing a vanilla vtable
aoqi@0 1637 // call and between the time we fetch the entry address and
aoqi@0 1638 // we jump to it the target gets deoptimized. Similar to 1
aoqi@0 1639 // we will wind up in the interprter (thru a c2i with c2).
aoqi@0 1640 //
aoqi@0 1641 address call_addr = NULL;
aoqi@0 1642 {
aoqi@0 1643 // Get call instruction under lock because another thread may be
aoqi@0 1644 // busy patching it.
aoqi@0 1645 MutexLockerEx ml_patch(Patching_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 1646 // Location of call instruction
aoqi@0 1647 if (NativeCall::is_call_before(pc)) {
aoqi@0 1648 NativeCall *ncall = nativeCall_before(pc);
aoqi@0 1649 call_addr = ncall->instruction_address();
aoqi@0 1650 }
aoqi@0 1651 }
aoqi@0 1652
aoqi@0 1653 // Check for static or virtual call
aoqi@0 1654 bool is_static_call = false;
aoqi@0 1655 nmethod* caller_nm = CodeCache::find_nmethod(pc);
aoqi@0 1656 // Make sure nmethod doesn't get deoptimized and removed until
aoqi@0 1657 // this is done with it.
aoqi@0 1658 // CLEANUP - with lazy deopt shouldn't need this lock
aoqi@0 1659 nmethodLocker nmlock(caller_nm);
aoqi@0 1660
aoqi@0 1661 if (call_addr != NULL) {
aoqi@0 1662 RelocIterator iter(caller_nm, call_addr, call_addr+1);
aoqi@0 1663 int ret = iter.next(); // Get item
aoqi@0 1664 if (ret) {
aoqi@0 1665 assert(iter.addr() == call_addr, "must find call");
aoqi@0 1666 if (iter.type() == relocInfo::static_call_type) {
aoqi@0 1667 is_static_call = true;
aoqi@0 1668 } else {
aoqi@0 1669 assert(iter.type() == relocInfo::virtual_call_type ||
aoqi@0 1670 iter.type() == relocInfo::opt_virtual_call_type
aoqi@0 1671 , "unexpected relocInfo. type");
aoqi@0 1672 }
aoqi@0 1673 } else {
aoqi@0 1674 assert(!UseInlineCaches, "relocation info. must exist for this address");
aoqi@0 1675 }
aoqi@0 1676
aoqi@0 1677 // Cleaning the inline cache will force a new resolve. This is more robust
aoqi@0 1678 // than directly setting it to the new destination, since resolving of calls
aoqi@0 1679 // is always done through the same code path. (experience shows that it
aoqi@0 1680 // leads to very hard to track down bugs, if an inline cache gets updated
aoqi@0 1681 // to a wrong method). It should not be performance critical, since the
aoqi@0 1682 // resolve is only done once.
aoqi@0 1683
aoqi@0 1684 MutexLocker ml(CompiledIC_lock);
thartmann@7193 1685 if (is_static_call) {
thartmann@7193 1686 CompiledStaticCall* ssc= compiledStaticCall_at(call_addr);
thartmann@7193 1687 ssc->set_to_clean();
thartmann@7193 1688 } else {
thartmann@7193 1689 // compiled, dispatched call (which used to call an interpreted method)
thartmann@7193 1690 CompiledIC* inline_cache = CompiledIC_at(caller_nm, call_addr);
thartmann@7193 1691 inline_cache->set_to_clean();
aoqi@0 1692 }
aoqi@0 1693 }
aoqi@0 1694
aoqi@0 1695 }
aoqi@0 1696
aoqi@0 1697 methodHandle callee_method = find_callee_method(thread, CHECK_(methodHandle()));
aoqi@0 1698
aoqi@0 1699
aoqi@0 1700 #ifndef PRODUCT
aoqi@0 1701 Atomic::inc(&_wrong_method_ctr);
aoqi@0 1702
aoqi@0 1703 if (TraceCallFixup) {
aoqi@0 1704 ResourceMark rm(thread);
aoqi@0 1705 tty->print("handle_wrong_method reresolving call to");
aoqi@0 1706 callee_method->print_short_name(tty);
aoqi@0 1707 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1708 }
aoqi@0 1709 #endif
aoqi@0 1710
aoqi@0 1711 return callee_method;
aoqi@0 1712 }
aoqi@0 1713
aoqi@0 1714 #ifdef ASSERT
aoqi@0 1715 void SharedRuntime::check_member_name_argument_is_last_argument(methodHandle method,
aoqi@0 1716 const BasicType* sig_bt,
aoqi@0 1717 const VMRegPair* regs) {
aoqi@0 1718 ResourceMark rm;
aoqi@0 1719 const int total_args_passed = method->size_of_parameters();
aoqi@0 1720 const VMRegPair* regs_with_member_name = regs;
aoqi@0 1721 VMRegPair* regs_without_member_name = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed - 1);
aoqi@0 1722
aoqi@0 1723 const int member_arg_pos = total_args_passed - 1;
aoqi@0 1724 assert(member_arg_pos >= 0 && member_arg_pos < total_args_passed, "oob");
aoqi@0 1725 assert(sig_bt[member_arg_pos] == T_OBJECT, "dispatch argument must be an object");
aoqi@0 1726
aoqi@0 1727 const bool is_outgoing = method->is_method_handle_intrinsic();
aoqi@0 1728 int comp_args_on_stack = java_calling_convention(sig_bt, regs_without_member_name, total_args_passed - 1, is_outgoing);
aoqi@0 1729
aoqi@0 1730 for (int i = 0; i < member_arg_pos; i++) {
aoqi@0 1731 VMReg a = regs_with_member_name[i].first();
aoqi@0 1732 VMReg b = regs_without_member_name[i].first();
aoqi@0 1733 assert(a->value() == b->value(), err_msg_res("register allocation mismatch: a=%d, b=%d", a->value(), b->value()));
aoqi@0 1734 }
aoqi@0 1735 assert(regs_with_member_name[member_arg_pos].first()->is_valid(), "bad member arg");
aoqi@0 1736 }
aoqi@0 1737 #endif
aoqi@0 1738
aoqi@0 1739 // ---------------------------------------------------------------------------
aoqi@0 1740 // We are calling the interpreter via a c2i. Normally this would mean that
aoqi@0 1741 // we were called by a compiled method. However we could have lost a race
aoqi@0 1742 // where we went int -> i2c -> c2i and so the caller could in fact be
aoqi@0 1743 // interpreted. If the caller is compiled we attempt to patch the caller
aoqi@0 1744 // so he no longer calls into the interpreter.
aoqi@0 1745 IRT_LEAF(void, SharedRuntime::fixup_callers_callsite(Method* method, address caller_pc))
aoqi@0 1746 Method* moop(method);
aoqi@0 1747
aoqi@0 1748 address entry_point = moop->from_compiled_entry();
aoqi@0 1749
aoqi@0 1750 // It's possible that deoptimization can occur at a call site which hasn't
aoqi@0 1751 // been resolved yet, in which case this function will be called from
aoqi@0 1752 // an nmethod that has been patched for deopt and we can ignore the
aoqi@0 1753 // request for a fixup.
aoqi@0 1754 // Also it is possible that we lost a race in that from_compiled_entry
aoqi@0 1755 // is now back to the i2c in that case we don't need to patch and if
aoqi@0 1756 // we did we'd leap into space because the callsite needs to use
aoqi@0 1757 // "to interpreter" stub in order to load up the Method*. Don't
aoqi@0 1758 // ask me how I know this...
aoqi@0 1759
aoqi@0 1760 CodeBlob* cb = CodeCache::find_blob(caller_pc);
thartmann@8773 1761 if (cb == NULL || !cb->is_nmethod() || entry_point == moop->get_c2i_entry()) {
aoqi@0 1762 return;
aoqi@0 1763 }
aoqi@0 1764
aoqi@0 1765 // The check above makes sure this is a nmethod.
aoqi@0 1766 nmethod* nm = cb->as_nmethod_or_null();
aoqi@0 1767 assert(nm, "must be");
aoqi@0 1768
aoqi@0 1769 // Get the return PC for the passed caller PC.
aoqi@0 1770 address return_pc = caller_pc + frame::pc_return_offset;
aoqi@0 1771
aoqi@0 1772 // There is a benign race here. We could be attempting to patch to a compiled
aoqi@0 1773 // entry point at the same time the callee is being deoptimized. If that is
aoqi@0 1774 // the case then entry_point may in fact point to a c2i and we'd patch the
aoqi@0 1775 // call site with the same old data. clear_code will set code() to NULL
aoqi@0 1776 // at the end of it. If we happen to see that NULL then we can skip trying
aoqi@0 1777 // to patch. If we hit the window where the callee has a c2i in the
aoqi@0 1778 // from_compiled_entry and the NULL isn't present yet then we lose the race
aoqi@0 1779 // and patch the code with the same old data. Asi es la vida.
aoqi@0 1780
aoqi@0 1781 if (moop->code() == NULL) return;
aoqi@0 1782
aoqi@0 1783 if (nm->is_in_use()) {
aoqi@0 1784
aoqi@0 1785 // Expect to find a native call there (unless it was no-inline cache vtable dispatch)
aoqi@0 1786 MutexLockerEx ml_patch(Patching_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 1787 if (NativeCall::is_call_before(return_pc)) {
aoqi@0 1788 NativeCall *call = nativeCall_before(return_pc);
aoqi@0 1789 //
aoqi@0 1790 // bug 6281185. We might get here after resolving a call site to a vanilla
aoqi@0 1791 // virtual call. Because the resolvee uses the verified entry it may then
aoqi@0 1792 // see compiled code and attempt to patch the site by calling us. This would
aoqi@0 1793 // then incorrectly convert the call site to optimized and its downhill from
aoqi@0 1794 // there. If you're lucky you'll get the assert in the bugid, if not you've
aoqi@0 1795 // just made a call site that could be megamorphic into a monomorphic site
aoqi@0 1796 // for the rest of its life! Just another racing bug in the life of
aoqi@0 1797 // fixup_callers_callsite ...
aoqi@0 1798 //
aoqi@0 1799 RelocIterator iter(nm, call->instruction_address(), call->next_instruction_address());
aoqi@0 1800 iter.next();
aoqi@0 1801 assert(iter.has_current(), "must have a reloc at java call site");
aoqi@0 1802 relocInfo::relocType typ = iter.reloc()->type();
aoqi@0 1803 if ( typ != relocInfo::static_call_type &&
aoqi@0 1804 typ != relocInfo::opt_virtual_call_type &&
aoqi@0 1805 typ != relocInfo::static_stub_type) {
aoqi@0 1806 return;
aoqi@0 1807 }
aoqi@0 1808 address destination = call->destination();
aoqi@0 1809 if (destination != entry_point) {
aoqi@0 1810 CodeBlob* callee = CodeCache::find_blob(destination);
aoqi@0 1811 // callee == cb seems weird. It means calling interpreter thru stub.
thartmann@8773 1812 if (callee != NULL && (callee == cb || callee->is_adapter_blob())) {
aoqi@0 1813 // static call or optimized virtual
aoqi@0 1814 if (TraceCallFixup) {
aoqi@0 1815 tty->print("fixup callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1816 moop->print_short_name(tty);
aoqi@0 1817 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1818 }
aoqi@0 1819 call->set_destination_mt_safe(entry_point);
aoqi@0 1820 } else {
aoqi@0 1821 if (TraceCallFixup) {
aoqi@0 1822 tty->print("failed to fixup callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1823 moop->print_short_name(tty);
aoqi@0 1824 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1825 }
aoqi@0 1826 // assert is too strong could also be resolve destinations.
aoqi@0 1827 // assert(InlineCacheBuffer::contains(destination) || VtableStubs::contains(destination), "must be");
aoqi@0 1828 }
aoqi@0 1829 } else {
aoqi@0 1830 if (TraceCallFixup) {
aoqi@0 1831 tty->print("already patched callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1832 moop->print_short_name(tty);
aoqi@0 1833 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1834 }
aoqi@0 1835 }
aoqi@0 1836 }
aoqi@0 1837 }
aoqi@0 1838 IRT_END
aoqi@0 1839
aoqi@0 1840
aoqi@0 1841 // same as JVM_Arraycopy, but called directly from compiled code
aoqi@0 1842 JRT_ENTRY(void, SharedRuntime::slow_arraycopy_C(oopDesc* src, jint src_pos,
aoqi@0 1843 oopDesc* dest, jint dest_pos,
aoqi@0 1844 jint length,
aoqi@0 1845 JavaThread* thread)) {
aoqi@0 1846 #ifndef PRODUCT
aoqi@0 1847 _slow_array_copy_ctr++;
aoqi@0 1848 #endif
aoqi@0 1849 // Check if we have null pointers
aoqi@0 1850 if (src == NULL || dest == NULL) {
aoqi@0 1851 THROW(vmSymbols::java_lang_NullPointerException());
aoqi@0 1852 }
aoqi@0 1853 // Do the copy. The casts to arrayOop are necessary to the copy_array API,
aoqi@0 1854 // even though the copy_array API also performs dynamic checks to ensure
aoqi@0 1855 // that src and dest are truly arrays (and are conformable).
aoqi@0 1856 // The copy_array mechanism is awkward and could be removed, but
aoqi@0 1857 // the compilers don't call this function except as a last resort,
aoqi@0 1858 // so it probably doesn't matter.
aoqi@0 1859 src->klass()->copy_array((arrayOopDesc*)src, src_pos,
aoqi@0 1860 (arrayOopDesc*)dest, dest_pos,
aoqi@0 1861 length, thread);
aoqi@0 1862 }
aoqi@0 1863 JRT_END
aoqi@0 1864
aoqi@0 1865 char* SharedRuntime::generate_class_cast_message(
aoqi@0 1866 JavaThread* thread, const char* objName) {
aoqi@0 1867
aoqi@0 1868 // Get target class name from the checkcast instruction
aoqi@0 1869 vframeStream vfst(thread, true);
aoqi@0 1870 assert(!vfst.at_end(), "Java frame must exist");
aoqi@0 1871 Bytecode_checkcast cc(vfst.method(), vfst.method()->bcp_from(vfst.bci()));
aoqi@0 1872 Klass* targetKlass = vfst.method()->constants()->klass_at(
aoqi@0 1873 cc.index(), thread);
aoqi@0 1874 return generate_class_cast_message(objName, targetKlass->external_name());
aoqi@0 1875 }
aoqi@0 1876
aoqi@0 1877 char* SharedRuntime::generate_class_cast_message(
aoqi@0 1878 const char* objName, const char* targetKlassName, const char* desc) {
aoqi@0 1879 size_t msglen = strlen(objName) + strlen(desc) + strlen(targetKlassName) + 1;
aoqi@0 1880
aoqi@0 1881 char* message = NEW_RESOURCE_ARRAY(char, msglen);
aoqi@0 1882 if (NULL == message) {
aoqi@0 1883 // Shouldn't happen, but don't cause even more problems if it does
aoqi@0 1884 message = const_cast<char*>(objName);
aoqi@0 1885 } else {
aoqi@0 1886 jio_snprintf(message, msglen, "%s%s%s", objName, desc, targetKlassName);
aoqi@0 1887 }
aoqi@0 1888 return message;
aoqi@0 1889 }
aoqi@0 1890
aoqi@0 1891 JRT_LEAF(void, SharedRuntime::reguard_yellow_pages())
aoqi@0 1892 (void) JavaThread::current()->reguard_stack();
aoqi@0 1893 JRT_END
aoqi@0 1894
aoqi@0 1895
aoqi@0 1896 // Handles the uncommon case in locking, i.e., contention or an inflated lock.
aoqi@0 1897 #ifndef PRODUCT
aoqi@0 1898 int SharedRuntime::_monitor_enter_ctr=0;
aoqi@0 1899 #endif
aoqi@0 1900 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::complete_monitor_locking_C(oopDesc* _obj, BasicLock* lock, JavaThread* thread))
aoqi@0 1901 oop obj(_obj);
aoqi@0 1902 #ifndef PRODUCT
aoqi@0 1903 _monitor_enter_ctr++; // monitor enter slow
aoqi@0 1904 #endif
aoqi@0 1905 if (PrintBiasedLockingStatistics) {
aoqi@0 1906 Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
aoqi@0 1907 }
aoqi@0 1908 Handle h_obj(THREAD, obj);
aoqi@0 1909 if (UseBiasedLocking) {
aoqi@0 1910 // Retry fast entry if bias is revoked to avoid unnecessary inflation
aoqi@0 1911 ObjectSynchronizer::fast_enter(h_obj, lock, true, CHECK);
aoqi@0 1912 } else {
aoqi@0 1913 ObjectSynchronizer::slow_enter(h_obj, lock, CHECK);
aoqi@0 1914 }
aoqi@0 1915 assert(!HAS_PENDING_EXCEPTION, "Should have no exception here");
aoqi@0 1916 JRT_END
aoqi@0 1917
aoqi@0 1918 #ifndef PRODUCT
aoqi@0 1919 int SharedRuntime::_monitor_exit_ctr=0;
aoqi@0 1920 #endif
aoqi@0 1921 // Handles the uncommon cases of monitor unlocking in compiled code
aoqi@0 1922 JRT_LEAF(void, SharedRuntime::complete_monitor_unlocking_C(oopDesc* _obj, BasicLock* lock))
aoqi@0 1923 oop obj(_obj);
aoqi@0 1924 #ifndef PRODUCT
aoqi@0 1925 _monitor_exit_ctr++; // monitor exit slow
aoqi@0 1926 #endif
aoqi@0 1927 Thread* THREAD = JavaThread::current();
aoqi@0 1928 // I'm not convinced we need the code contained by MIGHT_HAVE_PENDING anymore
aoqi@0 1929 // testing was unable to ever fire the assert that guarded it so I have removed it.
aoqi@0 1930 assert(!HAS_PENDING_EXCEPTION, "Do we need code below anymore?");
aoqi@0 1931 #undef MIGHT_HAVE_PENDING
aoqi@0 1932 #ifdef MIGHT_HAVE_PENDING
aoqi@0 1933 // Save and restore any pending_exception around the exception mark.
aoqi@0 1934 // While the slow_exit must not throw an exception, we could come into
aoqi@0 1935 // this routine with one set.
aoqi@0 1936 oop pending_excep = NULL;
aoqi@0 1937 const char* pending_file;
aoqi@0 1938 int pending_line;
aoqi@0 1939 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1940 pending_excep = PENDING_EXCEPTION;
aoqi@0 1941 pending_file = THREAD->exception_file();
aoqi@0 1942 pending_line = THREAD->exception_line();
aoqi@0 1943 CLEAR_PENDING_EXCEPTION;
aoqi@0 1944 }
aoqi@0 1945 #endif /* MIGHT_HAVE_PENDING */
aoqi@0 1946
aoqi@0 1947 {
aoqi@0 1948 // Exit must be non-blocking, and therefore no exceptions can be thrown.
aoqi@0 1949 EXCEPTION_MARK;
aoqi@0 1950 ObjectSynchronizer::slow_exit(obj, lock, THREAD);
aoqi@0 1951 }
aoqi@0 1952
aoqi@0 1953 #ifdef MIGHT_HAVE_PENDING
aoqi@0 1954 if (pending_excep != NULL) {
aoqi@0 1955 THREAD->set_pending_exception(pending_excep, pending_file, pending_line);
aoqi@0 1956 }
aoqi@0 1957 #endif /* MIGHT_HAVE_PENDING */
aoqi@0 1958 JRT_END
aoqi@0 1959
aoqi@0 1960 #ifndef PRODUCT
aoqi@0 1961
aoqi@0 1962 void SharedRuntime::print_statistics() {
aoqi@0 1963 ttyLocker ttyl;
aoqi@0 1964 if (xtty != NULL) xtty->head("statistics type='SharedRuntime'");
aoqi@0 1965
aoqi@0 1966 if (_monitor_enter_ctr ) tty->print_cr("%5d monitor enter slow", _monitor_enter_ctr);
aoqi@0 1967 if (_monitor_exit_ctr ) tty->print_cr("%5d monitor exit slow", _monitor_exit_ctr);
aoqi@0 1968 if (_throw_null_ctr) tty->print_cr("%5d implicit null throw", _throw_null_ctr);
aoqi@0 1969
aoqi@0 1970 SharedRuntime::print_ic_miss_histogram();
aoqi@0 1971
aoqi@0 1972 if (CountRemovableExceptions) {
aoqi@0 1973 if (_nof_removable_exceptions > 0) {
aoqi@0 1974 Unimplemented(); // this counter is not yet incremented
aoqi@0 1975 tty->print_cr("Removable exceptions: %d", _nof_removable_exceptions);
aoqi@0 1976 }
aoqi@0 1977 }
aoqi@0 1978
aoqi@0 1979 // Dump the JRT_ENTRY counters
aoqi@0 1980 if( _new_instance_ctr ) tty->print_cr("%5d new instance requires GC", _new_instance_ctr);
aoqi@0 1981 if( _new_array_ctr ) tty->print_cr("%5d new array requires GC", _new_array_ctr);
aoqi@0 1982 if( _multi1_ctr ) tty->print_cr("%5d multianewarray 1 dim", _multi1_ctr);
aoqi@0 1983 if( _multi2_ctr ) tty->print_cr("%5d multianewarray 2 dim", _multi2_ctr);
aoqi@0 1984 if( _multi3_ctr ) tty->print_cr("%5d multianewarray 3 dim", _multi3_ctr);
aoqi@0 1985 if( _multi4_ctr ) tty->print_cr("%5d multianewarray 4 dim", _multi4_ctr);
aoqi@0 1986 if( _multi5_ctr ) tty->print_cr("%5d multianewarray 5 dim", _multi5_ctr);
aoqi@0 1987
aoqi@0 1988 tty->print_cr("%5d inline cache miss in compiled", _ic_miss_ctr );
aoqi@0 1989 tty->print_cr("%5d wrong method", _wrong_method_ctr );
aoqi@0 1990 tty->print_cr("%5d unresolved static call site", _resolve_static_ctr );
aoqi@0 1991 tty->print_cr("%5d unresolved virtual call site", _resolve_virtual_ctr );
aoqi@0 1992 tty->print_cr("%5d unresolved opt virtual call site", _resolve_opt_virtual_ctr );
aoqi@0 1993
aoqi@0 1994 if( _mon_enter_stub_ctr ) tty->print_cr("%5d monitor enter stub", _mon_enter_stub_ctr );
aoqi@0 1995 if( _mon_exit_stub_ctr ) tty->print_cr("%5d monitor exit stub", _mon_exit_stub_ctr );
aoqi@0 1996 if( _mon_enter_ctr ) tty->print_cr("%5d monitor enter slow", _mon_enter_ctr );
aoqi@0 1997 if( _mon_exit_ctr ) tty->print_cr("%5d monitor exit slow", _mon_exit_ctr );
aoqi@0 1998 if( _partial_subtype_ctr) tty->print_cr("%5d slow partial subtype", _partial_subtype_ctr );
aoqi@0 1999 if( _jbyte_array_copy_ctr ) tty->print_cr("%5d byte array copies", _jbyte_array_copy_ctr );
aoqi@0 2000 if( _jshort_array_copy_ctr ) tty->print_cr("%5d short array copies", _jshort_array_copy_ctr );
aoqi@0 2001 if( _jint_array_copy_ctr ) tty->print_cr("%5d int array copies", _jint_array_copy_ctr );
aoqi@0 2002 if( _jlong_array_copy_ctr ) tty->print_cr("%5d long array copies", _jlong_array_copy_ctr );
aoqi@0 2003 if( _oop_array_copy_ctr ) tty->print_cr("%5d oop array copies", _oop_array_copy_ctr );
aoqi@0 2004 if( _checkcast_array_copy_ctr ) tty->print_cr("%5d checkcast array copies", _checkcast_array_copy_ctr );
aoqi@0 2005 if( _unsafe_array_copy_ctr ) tty->print_cr("%5d unsafe array copies", _unsafe_array_copy_ctr );
aoqi@0 2006 if( _generic_array_copy_ctr ) tty->print_cr("%5d generic array copies", _generic_array_copy_ctr );
aoqi@0 2007 if( _slow_array_copy_ctr ) tty->print_cr("%5d slow array copies", _slow_array_copy_ctr );
aoqi@0 2008 if( _find_handler_ctr ) tty->print_cr("%5d find exception handler", _find_handler_ctr );
aoqi@0 2009 if( _rethrow_ctr ) tty->print_cr("%5d rethrow handler", _rethrow_ctr );
aoqi@0 2010
aoqi@0 2011 AdapterHandlerLibrary::print_statistics();
aoqi@0 2012
aoqi@0 2013 if (xtty != NULL) xtty->tail("statistics");
aoqi@0 2014 }
aoqi@0 2015
aoqi@0 2016 inline double percent(int x, int y) {
aoqi@0 2017 return 100.0 * x / MAX2(y, 1);
aoqi@0 2018 }
aoqi@0 2019
aoqi@0 2020 class MethodArityHistogram {
aoqi@0 2021 public:
aoqi@0 2022 enum { MAX_ARITY = 256 };
aoqi@0 2023 private:
aoqi@0 2024 static int _arity_histogram[MAX_ARITY]; // histogram of #args
aoqi@0 2025 static int _size_histogram[MAX_ARITY]; // histogram of arg size in words
aoqi@0 2026 static int _max_arity; // max. arity seen
aoqi@0 2027 static int _max_size; // max. arg size seen
aoqi@0 2028
aoqi@0 2029 static void add_method_to_histogram(nmethod* nm) {
aoqi@0 2030 Method* m = nm->method();
aoqi@0 2031 ArgumentCount args(m->signature());
aoqi@0 2032 int arity = args.size() + (m->is_static() ? 0 : 1);
aoqi@0 2033 int argsize = m->size_of_parameters();
aoqi@0 2034 arity = MIN2(arity, MAX_ARITY-1);
aoqi@0 2035 argsize = MIN2(argsize, MAX_ARITY-1);
aoqi@0 2036 int count = nm->method()->compiled_invocation_count();
aoqi@0 2037 _arity_histogram[arity] += count;
aoqi@0 2038 _size_histogram[argsize] += count;
aoqi@0 2039 _max_arity = MAX2(_max_arity, arity);
aoqi@0 2040 _max_size = MAX2(_max_size, argsize);
aoqi@0 2041 }
aoqi@0 2042
aoqi@0 2043 void print_histogram_helper(int n, int* histo, const char* name) {
aoqi@0 2044 const int N = MIN2(5, n);
aoqi@0 2045 tty->print_cr("\nHistogram of call arity (incl. rcvr, calls to compiled methods only):");
aoqi@0 2046 double sum = 0;
aoqi@0 2047 double weighted_sum = 0;
aoqi@0 2048 int i;
aoqi@0 2049 for (i = 0; i <= n; i++) { sum += histo[i]; weighted_sum += i*histo[i]; }
aoqi@0 2050 double rest = sum;
aoqi@0 2051 double percent = sum / 100;
aoqi@0 2052 for (i = 0; i <= N; i++) {
aoqi@0 2053 rest -= histo[i];
aoqi@0 2054 tty->print_cr("%4d: %7d (%5.1f%%)", i, histo[i], histo[i] / percent);
aoqi@0 2055 }
aoqi@0 2056 tty->print_cr("rest: %7d (%5.1f%%))", (int)rest, rest / percent);
aoqi@0 2057 tty->print_cr("(avg. %s = %3.1f, max = %d)", name, weighted_sum / sum, n);
aoqi@0 2058 }
aoqi@0 2059
aoqi@0 2060 void print_histogram() {
aoqi@0 2061 tty->print_cr("\nHistogram of call arity (incl. rcvr, calls to compiled methods only):");
aoqi@0 2062 print_histogram_helper(_max_arity, _arity_histogram, "arity");
aoqi@0 2063 tty->print_cr("\nSame for parameter size (in words):");
aoqi@0 2064 print_histogram_helper(_max_size, _size_histogram, "size");
aoqi@0 2065 tty->cr();
aoqi@0 2066 }
aoqi@0 2067
aoqi@0 2068 public:
aoqi@0 2069 MethodArityHistogram() {
aoqi@0 2070 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 2071 _max_arity = _max_size = 0;
aoqi@0 2072 for (int i = 0; i < MAX_ARITY; i++) _arity_histogram[i] = _size_histogram [i] = 0;
aoqi@0 2073 CodeCache::nmethods_do(add_method_to_histogram);
aoqi@0 2074 print_histogram();
aoqi@0 2075 }
aoqi@0 2076 };
aoqi@0 2077
aoqi@0 2078 int MethodArityHistogram::_arity_histogram[MethodArityHistogram::MAX_ARITY];
aoqi@0 2079 int MethodArityHistogram::_size_histogram[MethodArityHistogram::MAX_ARITY];
aoqi@0 2080 int MethodArityHistogram::_max_arity;
aoqi@0 2081 int MethodArityHistogram::_max_size;
aoqi@0 2082
aoqi@0 2083 void SharedRuntime::print_call_statistics(int comp_total) {
aoqi@0 2084 tty->print_cr("Calls from compiled code:");
aoqi@0 2085 int total = _nof_normal_calls + _nof_interface_calls + _nof_static_calls;
aoqi@0 2086 int mono_c = _nof_normal_calls - _nof_optimized_calls - _nof_megamorphic_calls;
aoqi@0 2087 int mono_i = _nof_interface_calls - _nof_optimized_interface_calls - _nof_megamorphic_interface_calls;
aoqi@0 2088 tty->print_cr("\t%9d (%4.1f%%) total non-inlined ", total, percent(total, total));
aoqi@0 2089 tty->print_cr("\t%9d (%4.1f%%) virtual calls ", _nof_normal_calls, percent(_nof_normal_calls, total));
aoqi@0 2090 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_calls, percent(_nof_inlined_calls, _nof_normal_calls));
aoqi@0 2091 tty->print_cr("\t %9d (%3.0f%%) optimized ", _nof_optimized_calls, percent(_nof_optimized_calls, _nof_normal_calls));
aoqi@0 2092 tty->print_cr("\t %9d (%3.0f%%) monomorphic ", mono_c, percent(mono_c, _nof_normal_calls));
aoqi@0 2093 tty->print_cr("\t %9d (%3.0f%%) megamorphic ", _nof_megamorphic_calls, percent(_nof_megamorphic_calls, _nof_normal_calls));
aoqi@0 2094 tty->print_cr("\t%9d (%4.1f%%) interface calls ", _nof_interface_calls, percent(_nof_interface_calls, total));
aoqi@0 2095 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_interface_calls, percent(_nof_inlined_interface_calls, _nof_interface_calls));
aoqi@0 2096 tty->print_cr("\t %9d (%3.0f%%) optimized ", _nof_optimized_interface_calls, percent(_nof_optimized_interface_calls, _nof_interface_calls));
aoqi@0 2097 tty->print_cr("\t %9d (%3.0f%%) monomorphic ", mono_i, percent(mono_i, _nof_interface_calls));
aoqi@0 2098 tty->print_cr("\t %9d (%3.0f%%) megamorphic ", _nof_megamorphic_interface_calls, percent(_nof_megamorphic_interface_calls, _nof_interface_calls));
aoqi@0 2099 tty->print_cr("\t%9d (%4.1f%%) static/special calls", _nof_static_calls, percent(_nof_static_calls, total));
aoqi@0 2100 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_static_calls, percent(_nof_inlined_static_calls, _nof_static_calls));
aoqi@0 2101 tty->cr();
aoqi@0 2102 tty->print_cr("Note 1: counter updates are not MT-safe.");
aoqi@0 2103 tty->print_cr("Note 2: %% in major categories are relative to total non-inlined calls;");
aoqi@0 2104 tty->print_cr(" %% in nested categories are relative to their category");
aoqi@0 2105 tty->print_cr(" (and thus add up to more than 100%% with inlining)");
aoqi@0 2106 tty->cr();
aoqi@0 2107
aoqi@0 2108 MethodArityHistogram h;
aoqi@0 2109 }
aoqi@0 2110 #endif
aoqi@0 2111
aoqi@0 2112
aoqi@0 2113 // A simple wrapper class around the calling convention information
aoqi@0 2114 // that allows sharing of adapters for the same calling convention.
aoqi@0 2115 class AdapterFingerPrint : public CHeapObj<mtCode> {
aoqi@0 2116 private:
aoqi@0 2117 enum {
aoqi@0 2118 _basic_type_bits = 4,
aoqi@0 2119 _basic_type_mask = right_n_bits(_basic_type_bits),
aoqi@0 2120 _basic_types_per_int = BitsPerInt / _basic_type_bits,
aoqi@0 2121 _compact_int_count = 3
aoqi@0 2122 };
aoqi@0 2123 // TO DO: Consider integrating this with a more global scheme for compressing signatures.
aoqi@0 2124 // For now, 4 bits per components (plus T_VOID gaps after double/long) is not excessive.
aoqi@0 2125
aoqi@0 2126 union {
aoqi@0 2127 int _compact[_compact_int_count];
aoqi@0 2128 int* _fingerprint;
aoqi@0 2129 } _value;
aoqi@0 2130 int _length; // A negative length indicates the fingerprint is in the compact form,
aoqi@0 2131 // Otherwise _value._fingerprint is the array.
aoqi@0 2132
aoqi@0 2133 // Remap BasicTypes that are handled equivalently by the adapters.
aoqi@0 2134 // These are correct for the current system but someday it might be
aoqi@0 2135 // necessary to make this mapping platform dependent.
aoqi@0 2136 static int adapter_encoding(BasicType in) {
aoqi@0 2137 switch(in) {
aoqi@0 2138 case T_BOOLEAN:
aoqi@0 2139 case T_BYTE:
aoqi@0 2140 case T_SHORT:
aoqi@0 2141 case T_CHAR:
aoqi@0 2142 // There are all promoted to T_INT in the calling convention
aoqi@0 2143 return T_INT;
aoqi@0 2144
aoqi@0 2145 case T_OBJECT:
aoqi@0 2146 case T_ARRAY:
aoqi@0 2147 // In other words, we assume that any register good enough for
aoqi@0 2148 // an int or long is good enough for a managed pointer.
aoqi@0 2149 #ifdef _LP64
aoqi@0 2150 return T_LONG;
aoqi@0 2151 #else
aoqi@0 2152 return T_INT;
aoqi@0 2153 #endif
aoqi@0 2154
aoqi@0 2155 case T_INT:
aoqi@0 2156 case T_LONG:
aoqi@0 2157 case T_FLOAT:
aoqi@0 2158 case T_DOUBLE:
aoqi@0 2159 case T_VOID:
aoqi@0 2160 return in;
aoqi@0 2161
aoqi@0 2162 default:
aoqi@0 2163 ShouldNotReachHere();
aoqi@0 2164 return T_CONFLICT;
aoqi@0 2165 }
aoqi@0 2166 }
aoqi@0 2167
aoqi@0 2168 public:
aoqi@0 2169 AdapterFingerPrint(int total_args_passed, BasicType* sig_bt) {
aoqi@0 2170 // The fingerprint is based on the BasicType signature encoded
aoqi@0 2171 // into an array of ints with eight entries per int.
aoqi@0 2172 int* ptr;
aoqi@0 2173 int len = (total_args_passed + (_basic_types_per_int-1)) / _basic_types_per_int;
aoqi@0 2174 if (len <= _compact_int_count) {
aoqi@0 2175 assert(_compact_int_count == 3, "else change next line");
aoqi@0 2176 _value._compact[0] = _value._compact[1] = _value._compact[2] = 0;
aoqi@0 2177 // Storing the signature encoded as signed chars hits about 98%
aoqi@0 2178 // of the time.
aoqi@0 2179 _length = -len;
aoqi@0 2180 ptr = _value._compact;
aoqi@0 2181 } else {
aoqi@0 2182 _length = len;
aoqi@0 2183 _value._fingerprint = NEW_C_HEAP_ARRAY(int, _length, mtCode);
aoqi@0 2184 ptr = _value._fingerprint;
aoqi@0 2185 }
aoqi@0 2186
aoqi@0 2187 // Now pack the BasicTypes with 8 per int
aoqi@0 2188 int sig_index = 0;
aoqi@0 2189 for (int index = 0; index < len; index++) {
aoqi@0 2190 int value = 0;
aoqi@0 2191 for (int byte = 0; byte < _basic_types_per_int; byte++) {
aoqi@0 2192 int bt = ((sig_index < total_args_passed)
aoqi@0 2193 ? adapter_encoding(sig_bt[sig_index++])
aoqi@0 2194 : 0);
aoqi@0 2195 assert((bt & _basic_type_mask) == bt, "must fit in 4 bits");
aoqi@0 2196 value = (value << _basic_type_bits) | bt;
aoqi@0 2197 }
aoqi@0 2198 ptr[index] = value;
aoqi@0 2199 }
aoqi@0 2200 }
aoqi@0 2201
aoqi@0 2202 ~AdapterFingerPrint() {
aoqi@0 2203 if (_length > 0) {
aoqi@0 2204 FREE_C_HEAP_ARRAY(int, _value._fingerprint, mtCode);
aoqi@0 2205 }
aoqi@0 2206 }
aoqi@0 2207
aoqi@0 2208 int value(int index) {
aoqi@0 2209 if (_length < 0) {
aoqi@0 2210 return _value._compact[index];
aoqi@0 2211 }
aoqi@0 2212 return _value._fingerprint[index];
aoqi@0 2213 }
aoqi@0 2214 int length() {
aoqi@0 2215 if (_length < 0) return -_length;
aoqi@0 2216 return _length;
aoqi@0 2217 }
aoqi@0 2218
aoqi@0 2219 bool is_compact() {
aoqi@0 2220 return _length <= 0;
aoqi@0 2221 }
aoqi@0 2222
aoqi@0 2223 unsigned int compute_hash() {
aoqi@0 2224 int hash = 0;
aoqi@0 2225 for (int i = 0; i < length(); i++) {
aoqi@0 2226 int v = value(i);
aoqi@0 2227 hash = (hash << 8) ^ v ^ (hash >> 5);
aoqi@0 2228 }
aoqi@0 2229 return (unsigned int)hash;
aoqi@0 2230 }
aoqi@0 2231
aoqi@0 2232 const char* as_string() {
aoqi@0 2233 stringStream st;
aoqi@0 2234 st.print("0x");
aoqi@0 2235 for (int i = 0; i < length(); i++) {
aoqi@0 2236 st.print("%08x", value(i));
aoqi@0 2237 }
aoqi@0 2238 return st.as_string();
aoqi@0 2239 }
aoqi@0 2240
aoqi@0 2241 bool equals(AdapterFingerPrint* other) {
aoqi@0 2242 if (other->_length != _length) {
aoqi@0 2243 return false;
aoqi@0 2244 }
aoqi@0 2245 if (_length < 0) {
aoqi@0 2246 assert(_compact_int_count == 3, "else change next line");
aoqi@0 2247 return _value._compact[0] == other->_value._compact[0] &&
aoqi@0 2248 _value._compact[1] == other->_value._compact[1] &&
aoqi@0 2249 _value._compact[2] == other->_value._compact[2];
aoqi@0 2250 } else {
aoqi@0 2251 for (int i = 0; i < _length; i++) {
aoqi@0 2252 if (_value._fingerprint[i] != other->_value._fingerprint[i]) {
aoqi@0 2253 return false;
aoqi@0 2254 }
aoqi@0 2255 }
aoqi@0 2256 }
aoqi@0 2257 return true;
aoqi@0 2258 }
aoqi@0 2259 };
aoqi@0 2260
aoqi@0 2261
aoqi@0 2262 // A hashtable mapping from AdapterFingerPrints to AdapterHandlerEntries
aoqi@0 2263 class AdapterHandlerTable : public BasicHashtable<mtCode> {
aoqi@0 2264 friend class AdapterHandlerTableIterator;
aoqi@0 2265
aoqi@0 2266 private:
aoqi@0 2267
aoqi@0 2268 #ifndef PRODUCT
aoqi@0 2269 static int _lookups; // number of calls to lookup
aoqi@0 2270 static int _buckets; // number of buckets checked
aoqi@0 2271 static int _equals; // number of buckets checked with matching hash
aoqi@0 2272 static int _hits; // number of successful lookups
aoqi@0 2273 static int _compact; // number of equals calls with compact signature
aoqi@0 2274 #endif
aoqi@0 2275
aoqi@0 2276 AdapterHandlerEntry* bucket(int i) {
aoqi@0 2277 return (AdapterHandlerEntry*)BasicHashtable<mtCode>::bucket(i);
aoqi@0 2278 }
aoqi@0 2279
aoqi@0 2280 public:
aoqi@0 2281 AdapterHandlerTable()
aoqi@0 2282 : BasicHashtable<mtCode>(293, sizeof(AdapterHandlerEntry)) { }
aoqi@0 2283
aoqi@0 2284 // Create a new entry suitable for insertion in the table
aoqi@0 2285 AdapterHandlerEntry* new_entry(AdapterFingerPrint* fingerprint, address i2c_entry, address c2i_entry, address c2i_unverified_entry) {
aoqi@0 2286 AdapterHandlerEntry* entry = (AdapterHandlerEntry*)BasicHashtable<mtCode>::new_entry(fingerprint->compute_hash());
aoqi@0 2287 entry->init(fingerprint, i2c_entry, c2i_entry, c2i_unverified_entry);
aoqi@0 2288 return entry;
aoqi@0 2289 }
aoqi@0 2290
aoqi@0 2291 // Insert an entry into the table
aoqi@0 2292 void add(AdapterHandlerEntry* entry) {
aoqi@0 2293 int index = hash_to_index(entry->hash());
aoqi@0 2294 add_entry(index, entry);
aoqi@0 2295 }
aoqi@0 2296
aoqi@0 2297 void free_entry(AdapterHandlerEntry* entry) {
aoqi@0 2298 entry->deallocate();
aoqi@0 2299 BasicHashtable<mtCode>::free_entry(entry);
aoqi@0 2300 }
aoqi@0 2301
aoqi@0 2302 // Find a entry with the same fingerprint if it exists
aoqi@0 2303 AdapterHandlerEntry* lookup(int total_args_passed, BasicType* sig_bt) {
aoqi@0 2304 NOT_PRODUCT(_lookups++);
aoqi@0 2305 AdapterFingerPrint fp(total_args_passed, sig_bt);
aoqi@0 2306 unsigned int hash = fp.compute_hash();
aoqi@0 2307 int index = hash_to_index(hash);
aoqi@0 2308 for (AdapterHandlerEntry* e = bucket(index); e != NULL; e = e->next()) {
aoqi@0 2309 NOT_PRODUCT(_buckets++);
aoqi@0 2310 if (e->hash() == hash) {
aoqi@0 2311 NOT_PRODUCT(_equals++);
aoqi@0 2312 if (fp.equals(e->fingerprint())) {
aoqi@0 2313 #ifndef PRODUCT
aoqi@0 2314 if (fp.is_compact()) _compact++;
aoqi@0 2315 _hits++;
aoqi@0 2316 #endif
aoqi@0 2317 return e;
aoqi@0 2318 }
aoqi@0 2319 }
aoqi@0 2320 }
aoqi@0 2321 return NULL;
aoqi@0 2322 }
aoqi@0 2323
aoqi@0 2324 #ifndef PRODUCT
aoqi@0 2325 void print_statistics() {
aoqi@0 2326 ResourceMark rm;
aoqi@0 2327 int longest = 0;
aoqi@0 2328 int empty = 0;
aoqi@0 2329 int total = 0;
aoqi@0 2330 int nonempty = 0;
aoqi@0 2331 for (int index = 0; index < table_size(); index++) {
aoqi@0 2332 int count = 0;
aoqi@0 2333 for (AdapterHandlerEntry* e = bucket(index); e != NULL; e = e->next()) {
aoqi@0 2334 count++;
aoqi@0 2335 }
aoqi@0 2336 if (count != 0) nonempty++;
aoqi@0 2337 if (count == 0) empty++;
aoqi@0 2338 if (count > longest) longest = count;
aoqi@0 2339 total += count;
aoqi@0 2340 }
aoqi@0 2341 tty->print_cr("AdapterHandlerTable: empty %d longest %d total %d average %f",
aoqi@0 2342 empty, longest, total, total / (double)nonempty);
aoqi@0 2343 tty->print_cr("AdapterHandlerTable: lookups %d buckets %d equals %d hits %d compact %d",
aoqi@0 2344 _lookups, _buckets, _equals, _hits, _compact);
aoqi@0 2345 }
aoqi@0 2346 #endif
aoqi@0 2347 };
aoqi@0 2348
aoqi@0 2349
aoqi@0 2350 #ifndef PRODUCT
aoqi@0 2351
aoqi@0 2352 int AdapterHandlerTable::_lookups;
aoqi@0 2353 int AdapterHandlerTable::_buckets;
aoqi@0 2354 int AdapterHandlerTable::_equals;
aoqi@0 2355 int AdapterHandlerTable::_hits;
aoqi@0 2356 int AdapterHandlerTable::_compact;
aoqi@0 2357
aoqi@0 2358 #endif
aoqi@0 2359
aoqi@0 2360 class AdapterHandlerTableIterator : public StackObj {
aoqi@0 2361 private:
aoqi@0 2362 AdapterHandlerTable* _table;
aoqi@0 2363 int _index;
aoqi@0 2364 AdapterHandlerEntry* _current;
aoqi@0 2365
aoqi@0 2366 void scan() {
aoqi@0 2367 while (_index < _table->table_size()) {
aoqi@0 2368 AdapterHandlerEntry* a = _table->bucket(_index);
aoqi@0 2369 _index++;
aoqi@0 2370 if (a != NULL) {
aoqi@0 2371 _current = a;
aoqi@0 2372 return;
aoqi@0 2373 }
aoqi@0 2374 }
aoqi@0 2375 }
aoqi@0 2376
aoqi@0 2377 public:
aoqi@0 2378 AdapterHandlerTableIterator(AdapterHandlerTable* table): _table(table), _index(0), _current(NULL) {
aoqi@0 2379 scan();
aoqi@0 2380 }
aoqi@0 2381 bool has_next() {
aoqi@0 2382 return _current != NULL;
aoqi@0 2383 }
aoqi@0 2384 AdapterHandlerEntry* next() {
aoqi@0 2385 if (_current != NULL) {
aoqi@0 2386 AdapterHandlerEntry* result = _current;
aoqi@0 2387 _current = _current->next();
aoqi@0 2388 if (_current == NULL) scan();
aoqi@0 2389 return result;
aoqi@0 2390 } else {
aoqi@0 2391 return NULL;
aoqi@0 2392 }
aoqi@0 2393 }
aoqi@0 2394 };
aoqi@0 2395
aoqi@0 2396
aoqi@0 2397 // ---------------------------------------------------------------------------
aoqi@0 2398 // Implementation of AdapterHandlerLibrary
aoqi@0 2399 AdapterHandlerTable* AdapterHandlerLibrary::_adapters = NULL;
aoqi@0 2400 AdapterHandlerEntry* AdapterHandlerLibrary::_abstract_method_handler = NULL;
aoqi@0 2401 const int AdapterHandlerLibrary_size = 16*K;
aoqi@0 2402 BufferBlob* AdapterHandlerLibrary::_buffer = NULL;
aoqi@0 2403
aoqi@0 2404 BufferBlob* AdapterHandlerLibrary::buffer_blob() {
aoqi@0 2405 // Should be called only when AdapterHandlerLibrary_lock is active.
aoqi@0 2406 if (_buffer == NULL) // Initialize lazily
aoqi@0 2407 _buffer = BufferBlob::create("adapters", AdapterHandlerLibrary_size);
aoqi@0 2408 return _buffer;
aoqi@0 2409 }
aoqi@0 2410
aoqi@0 2411 void AdapterHandlerLibrary::initialize() {
aoqi@0 2412 if (_adapters != NULL) return;
aoqi@0 2413 _adapters = new AdapterHandlerTable();
aoqi@0 2414
aoqi@0 2415 // Create a special handler for abstract methods. Abstract methods
aoqi@0 2416 // are never compiled so an i2c entry is somewhat meaningless, but
aoqi@0 2417 // throw AbstractMethodError just in case.
aoqi@0 2418 // Pass wrong_method_abstract for the c2i transitions to return
aoqi@0 2419 // AbstractMethodError for invalid invocations.
aoqi@0 2420 address wrong_method_abstract = SharedRuntime::get_handle_wrong_method_abstract_stub();
aoqi@0 2421 _abstract_method_handler = AdapterHandlerLibrary::new_entry(new AdapterFingerPrint(0, NULL),
aoqi@0 2422 StubRoutines::throw_AbstractMethodError_entry(),
aoqi@0 2423 wrong_method_abstract, wrong_method_abstract);
aoqi@0 2424 }
aoqi@0 2425
aoqi@0 2426 AdapterHandlerEntry* AdapterHandlerLibrary::new_entry(AdapterFingerPrint* fingerprint,
aoqi@0 2427 address i2c_entry,
aoqi@0 2428 address c2i_entry,
aoqi@0 2429 address c2i_unverified_entry) {
aoqi@0 2430 return _adapters->new_entry(fingerprint, i2c_entry, c2i_entry, c2i_unverified_entry);
aoqi@0 2431 }
aoqi@0 2432
aoqi@0 2433 AdapterHandlerEntry* AdapterHandlerLibrary::get_adapter(methodHandle method) {
aoqi@0 2434 // Use customized signature handler. Need to lock around updates to
aoqi@0 2435 // the AdapterHandlerTable (it is not safe for concurrent readers
aoqi@0 2436 // and a single writer: this could be fixed if it becomes a
aoqi@0 2437 // problem).
aoqi@0 2438
aoqi@0 2439 // Get the address of the ic_miss handlers before we grab the
aoqi@0 2440 // AdapterHandlerLibrary_lock. This fixes bug 6236259 which
aoqi@0 2441 // was caused by the initialization of the stubs happening
aoqi@0 2442 // while we held the lock and then notifying jvmti while
aoqi@0 2443 // holding it. This just forces the initialization to be a little
aoqi@0 2444 // earlier.
aoqi@0 2445 address ic_miss = SharedRuntime::get_ic_miss_stub();
aoqi@0 2446 assert(ic_miss != NULL, "must have handler");
aoqi@0 2447
aoqi@0 2448 ResourceMark rm;
aoqi@0 2449
aoqi@0 2450 NOT_PRODUCT(int insts_size);
aoqi@0 2451 AdapterBlob* new_adapter = NULL;
aoqi@0 2452 AdapterHandlerEntry* entry = NULL;
aoqi@0 2453 AdapterFingerPrint* fingerprint = NULL;
aoqi@0 2454 {
aoqi@0 2455 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2456 // make sure data structure is initialized
aoqi@0 2457 initialize();
aoqi@0 2458
aoqi@0 2459 if (method->is_abstract()) {
aoqi@0 2460 return _abstract_method_handler;
aoqi@0 2461 }
aoqi@0 2462
aoqi@0 2463 // Fill in the signature array, for the calling-convention call.
aoqi@0 2464 int total_args_passed = method->size_of_parameters(); // All args on stack
aoqi@0 2465
aoqi@0 2466 BasicType* sig_bt = NEW_RESOURCE_ARRAY(BasicType, total_args_passed);
aoqi@0 2467 VMRegPair* regs = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed);
aoqi@0 2468 int i = 0;
aoqi@0 2469 if (!method->is_static()) // Pass in receiver first
aoqi@0 2470 sig_bt[i++] = T_OBJECT;
aoqi@0 2471 for (SignatureStream ss(method->signature()); !ss.at_return_type(); ss.next()) {
aoqi@0 2472 sig_bt[i++] = ss.type(); // Collect remaining bits of signature
aoqi@0 2473 if (ss.type() == T_LONG || ss.type() == T_DOUBLE)
aoqi@0 2474 sig_bt[i++] = T_VOID; // Longs & doubles take 2 Java slots
aoqi@0 2475 }
aoqi@0 2476 assert(i == total_args_passed, "");
aoqi@0 2477
aoqi@0 2478 // Lookup method signature's fingerprint
aoqi@0 2479 entry = _adapters->lookup(total_args_passed, sig_bt);
aoqi@0 2480
aoqi@0 2481 #ifdef ASSERT
aoqi@0 2482 AdapterHandlerEntry* shared_entry = NULL;
aoqi@0 2483 // Start adapter sharing verification only after the VM is booted.
aoqi@0 2484 if (VerifyAdapterSharing && (entry != NULL)) {
aoqi@0 2485 shared_entry = entry;
aoqi@0 2486 entry = NULL;
aoqi@0 2487 }
aoqi@0 2488 #endif
aoqi@0 2489
aoqi@0 2490 if (entry != NULL) {
aoqi@0 2491 return entry;
aoqi@0 2492 }
aoqi@0 2493
aoqi@0 2494 // Get a description of the compiled java calling convention and the largest used (VMReg) stack slot usage
aoqi@0 2495 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, false);
aoqi@0 2496
aoqi@0 2497 // Make a C heap allocated version of the fingerprint to store in the adapter
aoqi@0 2498 fingerprint = new AdapterFingerPrint(total_args_passed, sig_bt);
aoqi@0 2499
aoqi@0 2500 // StubRoutines::code2() is initialized after this function can be called. As a result,
aoqi@0 2501 // VerifyAdapterCalls and VerifyAdapterSharing can fail if we re-use code that generated
aoqi@0 2502 // prior to StubRoutines::code2() being set. Checks refer to checks generated in an I2C
aoqi@0 2503 // stub that ensure that an I2C stub is called from an interpreter frame.
aoqi@0 2504 bool contains_all_checks = StubRoutines::code2() != NULL;
aoqi@0 2505
aoqi@0 2506 // Create I2C & C2I handlers
aoqi@0 2507 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2508 if (buf != NULL) {
aoqi@0 2509 CodeBuffer buffer(buf);
aoqi@0 2510 short buffer_locs[20];
aoqi@0 2511 buffer.insts()->initialize_shared_locs((relocInfo*)buffer_locs,
aoqi@0 2512 sizeof(buffer_locs)/sizeof(relocInfo));
aoqi@0 2513
aoqi@0 2514 MacroAssembler _masm(&buffer);
aoqi@0 2515 entry = SharedRuntime::generate_i2c2i_adapters(&_masm,
aoqi@0 2516 total_args_passed,
aoqi@0 2517 comp_args_on_stack,
aoqi@0 2518 sig_bt,
aoqi@0 2519 regs,
aoqi@0 2520 fingerprint);
aoqi@0 2521 #ifdef ASSERT
aoqi@0 2522 if (VerifyAdapterSharing) {
aoqi@0 2523 if (shared_entry != NULL) {
aoqi@0 2524 assert(shared_entry->compare_code(buf->code_begin(), buffer.insts_size()), "code must match");
aoqi@0 2525 // Release the one just created and return the original
aoqi@0 2526 _adapters->free_entry(entry);
aoqi@0 2527 return shared_entry;
aoqi@0 2528 } else {
aoqi@0 2529 entry->save_code(buf->code_begin(), buffer.insts_size());
aoqi@0 2530 }
aoqi@0 2531 }
aoqi@0 2532 #endif
aoqi@0 2533
aoqi@0 2534 new_adapter = AdapterBlob::create(&buffer);
aoqi@0 2535 NOT_PRODUCT(insts_size = buffer.insts_size());
aoqi@0 2536 }
aoqi@0 2537 if (new_adapter == NULL) {
aoqi@0 2538 // CodeCache is full, disable compilation
aoqi@0 2539 // Ought to log this but compile log is only per compile thread
aoqi@0 2540 // and we're some non descript Java thread.
aoqi@0 2541 MutexUnlocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2542 CompileBroker::handle_full_code_cache();
aoqi@0 2543 return NULL; // Out of CodeCache space
aoqi@0 2544 }
aoqi@0 2545 entry->relocate(new_adapter->content_begin());
aoqi@0 2546 #ifndef PRODUCT
aoqi@0 2547 // debugging suppport
aoqi@0 2548 if (PrintAdapterHandlers || PrintStubCode) {
aoqi@0 2549 ttyLocker ttyl;
aoqi@0 2550 entry->print_adapter_on(tty);
aoqi@0 2551 tty->print_cr("i2c argument handler #%d for: %s %s (%d bytes generated)",
aoqi@0 2552 _adapters->number_of_entries(), (method->is_static() ? "static" : "receiver"),
aoqi@0 2553 method->signature()->as_C_string(), insts_size);
aoqi@0 2554 tty->print_cr("c2i argument handler starts at %p",entry->get_c2i_entry());
aoqi@0 2555 if (Verbose || PrintStubCode) {
aoqi@0 2556 address first_pc = entry->base_address();
aoqi@0 2557 if (first_pc != NULL) {
aoqi@0 2558 Disassembler::decode(first_pc, first_pc + insts_size);
aoqi@0 2559 tty->cr();
aoqi@0 2560 }
aoqi@0 2561 }
aoqi@0 2562 }
aoqi@0 2563 #endif
aoqi@0 2564 // Add the entry only if the entry contains all required checks (see sharedRuntime_xxx.cpp)
aoqi@0 2565 // The checks are inserted only if -XX:+VerifyAdapterCalls is specified.
aoqi@0 2566 if (contains_all_checks || !VerifyAdapterCalls) {
aoqi@0 2567 _adapters->add(entry);
aoqi@0 2568 }
aoqi@0 2569 }
aoqi@0 2570 // Outside of the lock
aoqi@0 2571 if (new_adapter != NULL) {
aoqi@0 2572 char blob_id[256];
aoqi@0 2573 jio_snprintf(blob_id,
aoqi@0 2574 sizeof(blob_id),
aoqi@0 2575 "%s(%s)@" PTR_FORMAT,
aoqi@0 2576 new_adapter->name(),
aoqi@0 2577 fingerprint->as_string(),
aoqi@0 2578 new_adapter->content_begin());
aoqi@0 2579 Forte::register_stub(blob_id, new_adapter->content_begin(),new_adapter->content_end());
aoqi@0 2580
aoqi@0 2581 if (JvmtiExport::should_post_dynamic_code_generated()) {
aoqi@0 2582 JvmtiExport::post_dynamic_code_generated(blob_id, new_adapter->content_begin(), new_adapter->content_end());
aoqi@0 2583 }
aoqi@0 2584 }
aoqi@0 2585 return entry;
aoqi@0 2586 }
aoqi@0 2587
aoqi@0 2588 address AdapterHandlerEntry::base_address() {
aoqi@0 2589 address base = _i2c_entry;
aoqi@0 2590 if (base == NULL) base = _c2i_entry;
aoqi@0 2591 assert(base <= _c2i_entry || _c2i_entry == NULL, "");
aoqi@0 2592 assert(base <= _c2i_unverified_entry || _c2i_unverified_entry == NULL, "");
aoqi@0 2593 return base;
aoqi@0 2594 }
aoqi@0 2595
aoqi@0 2596 void AdapterHandlerEntry::relocate(address new_base) {
aoqi@0 2597 address old_base = base_address();
aoqi@0 2598 assert(old_base != NULL, "");
aoqi@0 2599 ptrdiff_t delta = new_base - old_base;
aoqi@0 2600 if (_i2c_entry != NULL)
aoqi@0 2601 _i2c_entry += delta;
aoqi@0 2602 if (_c2i_entry != NULL)
aoqi@0 2603 _c2i_entry += delta;
aoqi@0 2604 if (_c2i_unverified_entry != NULL)
aoqi@0 2605 _c2i_unverified_entry += delta;
aoqi@0 2606 assert(base_address() == new_base, "");
aoqi@0 2607 }
aoqi@0 2608
aoqi@0 2609
aoqi@0 2610 void AdapterHandlerEntry::deallocate() {
aoqi@0 2611 delete _fingerprint;
aoqi@0 2612 #ifdef ASSERT
aoqi@0 2613 if (_saved_code) FREE_C_HEAP_ARRAY(unsigned char, _saved_code, mtCode);
aoqi@0 2614 #endif
aoqi@0 2615 }
aoqi@0 2616
aoqi@0 2617
aoqi@0 2618 #ifdef ASSERT
aoqi@0 2619 // Capture the code before relocation so that it can be compared
aoqi@0 2620 // against other versions. If the code is captured after relocation
aoqi@0 2621 // then relative instructions won't be equivalent.
aoqi@0 2622 void AdapterHandlerEntry::save_code(unsigned char* buffer, int length) {
aoqi@0 2623 _saved_code = NEW_C_HEAP_ARRAY(unsigned char, length, mtCode);
aoqi@0 2624 _saved_code_length = length;
aoqi@0 2625 memcpy(_saved_code, buffer, length);
aoqi@0 2626 }
aoqi@0 2627
aoqi@0 2628
aoqi@0 2629 bool AdapterHandlerEntry::compare_code(unsigned char* buffer, int length) {
aoqi@0 2630 if (length != _saved_code_length) {
aoqi@0 2631 return false;
aoqi@0 2632 }
aoqi@0 2633
aoqi@0 2634 return (memcmp(buffer, _saved_code, length) == 0) ? true : false;
aoqi@0 2635 }
aoqi@0 2636 #endif
aoqi@0 2637
aoqi@0 2638
aoqi@0 2639 /**
aoqi@0 2640 * Create a native wrapper for this native method. The wrapper converts the
aoqi@0 2641 * Java-compiled calling convention to the native convention, handles
aoqi@0 2642 * arguments, and transitions to native. On return from the native we transition
aoqi@0 2643 * back to java blocking if a safepoint is in progress.
aoqi@0 2644 */
aoqi@0 2645 void AdapterHandlerLibrary::create_native_wrapper(methodHandle method) {
aoqi@0 2646 ResourceMark rm;
aoqi@0 2647 nmethod* nm = NULL;
aoqi@0 2648
aoqi@0 2649 assert(method->is_native(), "must be native");
aoqi@0 2650 assert(method->is_method_handle_intrinsic() ||
aoqi@0 2651 method->has_native_function(), "must have something valid to call!");
aoqi@0 2652
aoqi@0 2653 {
aoqi@0 2654 // Perform the work while holding the lock, but perform any printing outside the lock
aoqi@0 2655 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2656 // See if somebody beat us to it
aoqi@0 2657 nm = method->code();
aoqi@0 2658 if (nm != NULL) {
aoqi@0 2659 return;
aoqi@0 2660 }
aoqi@0 2661
aoqi@0 2662 const int compile_id = CompileBroker::assign_compile_id(method, CompileBroker::standard_entry_bci);
aoqi@0 2663 assert(compile_id > 0, "Must generate native wrapper");
aoqi@0 2664
aoqi@0 2665
aoqi@0 2666 ResourceMark rm;
aoqi@0 2667 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2668 if (buf != NULL) {
aoqi@0 2669 CodeBuffer buffer(buf);
aoqi@0 2670 double locs_buf[20];
aoqi@0 2671 buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo));
aoqi@0 2672 MacroAssembler _masm(&buffer);
aoqi@0 2673
aoqi@0 2674 // Fill in the signature array, for the calling-convention call.
aoqi@0 2675 const int total_args_passed = method->size_of_parameters();
aoqi@0 2676
aoqi@0 2677 BasicType* sig_bt = NEW_RESOURCE_ARRAY(BasicType, total_args_passed);
aoqi@0 2678 VMRegPair* regs = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed);
aoqi@0 2679 int i=0;
aoqi@0 2680 if( !method->is_static() ) // Pass in receiver first
aoqi@0 2681 sig_bt[i++] = T_OBJECT;
aoqi@0 2682 SignatureStream ss(method->signature());
aoqi@0 2683 for( ; !ss.at_return_type(); ss.next()) {
aoqi@0 2684 sig_bt[i++] = ss.type(); // Collect remaining bits of signature
aoqi@0 2685 if( ss.type() == T_LONG || ss.type() == T_DOUBLE )
aoqi@0 2686 sig_bt[i++] = T_VOID; // Longs & doubles take 2 Java slots
aoqi@0 2687 }
aoqi@0 2688 assert(i == total_args_passed, "");
aoqi@0 2689 BasicType ret_type = ss.type();
aoqi@0 2690
aoqi@0 2691 // Now get the compiled-Java layout as input (or output) arguments.
aoqi@0 2692 // NOTE: Stubs for compiled entry points of method handle intrinsics
aoqi@0 2693 // are just trampolines so the argument registers must be outgoing ones.
aoqi@0 2694 const bool is_outgoing = method->is_method_handle_intrinsic();
aoqi@0 2695 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, is_outgoing);
aoqi@0 2696
aoqi@0 2697 // Generate the compiled-to-native wrapper code
aoqi@0 2698 nm = SharedRuntime::generate_native_wrapper(&_masm, method, compile_id, sig_bt, regs, ret_type);
aoqi@0 2699
aoqi@0 2700 if (nm != NULL) {
aoqi@0 2701 method->set_code(method, nm);
aoqi@0 2702 }
aoqi@0 2703 }
aoqi@0 2704 } // Unlock AdapterHandlerLibrary_lock
aoqi@0 2705
aoqi@0 2706
aoqi@0 2707 // Install the generated code.
aoqi@0 2708 if (nm != NULL) {
aoqi@0 2709 if (PrintCompilation) {
aoqi@0 2710 ttyLocker ttyl;
aoqi@0 2711 CompileTask::print_compilation(tty, nm, method->is_static() ? "(static)" : "");
aoqi@0 2712 }
aoqi@0 2713 nm->post_compiled_method_load_event();
aoqi@0 2714 } else {
aoqi@0 2715 // CodeCache is full, disable compilation
aoqi@0 2716 CompileBroker::handle_full_code_cache();
aoqi@0 2717 }
aoqi@0 2718 }
aoqi@0 2719
aoqi@0 2720 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::block_for_jni_critical(JavaThread* thread))
aoqi@0 2721 assert(thread == JavaThread::current(), "must be");
aoqi@0 2722 // The code is about to enter a JNI lazy critical native method and
aoqi@0 2723 // _needs_gc is true, so if this thread is already in a critical
aoqi@0 2724 // section then just return, otherwise this thread should block
aoqi@0 2725 // until needs_gc has been cleared.
aoqi@0 2726 if (thread->in_critical()) {
aoqi@0 2727 return;
aoqi@0 2728 }
aoqi@0 2729 // Lock and unlock a critical section to give the system a chance to block
aoqi@0 2730 GC_locker::lock_critical(thread);
aoqi@0 2731 GC_locker::unlock_critical(thread);
aoqi@0 2732 JRT_END
aoqi@0 2733
aoqi@0 2734 #ifdef HAVE_DTRACE_H
aoqi@0 2735 /**
aoqi@0 2736 * Create a dtrace nmethod for this method. The wrapper converts the
aoqi@0 2737 * Java-compiled calling convention to the native convention, makes a dummy call
aoqi@0 2738 * (actually nops for the size of the call instruction, which become a trap if
aoqi@0 2739 * probe is enabled), and finally returns to the caller. Since this all looks like a
aoqi@0 2740 * leaf, no thread transition is needed.
aoqi@0 2741 */
aoqi@0 2742 nmethod *AdapterHandlerLibrary::create_dtrace_nmethod(methodHandle method) {
aoqi@0 2743 ResourceMark rm;
aoqi@0 2744 nmethod* nm = NULL;
aoqi@0 2745
aoqi@0 2746 if (PrintCompilation) {
aoqi@0 2747 ttyLocker ttyl;
aoqi@0 2748 tty->print("--- n ");
aoqi@0 2749 method->print_short_name(tty);
aoqi@0 2750 if (method->is_static()) {
aoqi@0 2751 tty->print(" (static)");
aoqi@0 2752 }
aoqi@0 2753 tty->cr();
aoqi@0 2754 }
aoqi@0 2755
aoqi@0 2756 {
aoqi@0 2757 // perform the work while holding the lock, but perform any printing
aoqi@0 2758 // outside the lock
aoqi@0 2759 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2760 // See if somebody beat us to it
aoqi@0 2761 nm = method->code();
aoqi@0 2762 if (nm) {
aoqi@0 2763 return nm;
aoqi@0 2764 }
aoqi@0 2765
aoqi@0 2766 ResourceMark rm;
aoqi@0 2767
aoqi@0 2768 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2769 if (buf != NULL) {
aoqi@0 2770 CodeBuffer buffer(buf);
aoqi@0 2771 // Need a few relocation entries
aoqi@0 2772 double locs_buf[20];
aoqi@0 2773 buffer.insts()->initialize_shared_locs(
aoqi@0 2774 (relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo));
aoqi@0 2775 MacroAssembler _masm(&buffer);
aoqi@0 2776
aoqi@0 2777 // Generate the compiled-to-native wrapper code
aoqi@0 2778 nm = SharedRuntime::generate_dtrace_nmethod(&_masm, method);
aoqi@0 2779 }
aoqi@0 2780 }
aoqi@0 2781 return nm;
aoqi@0 2782 }
aoqi@0 2783
aoqi@0 2784 // the dtrace method needs to convert java lang string to utf8 string.
aoqi@0 2785 void SharedRuntime::get_utf(oopDesc* src, address dst) {
aoqi@0 2786 typeArrayOop jlsValue = java_lang_String::value(src);
aoqi@0 2787 int jlsOffset = java_lang_String::offset(src);
aoqi@0 2788 int jlsLen = java_lang_String::length(src);
aoqi@0 2789 jchar* jlsPos = (jlsLen == 0) ? NULL :
aoqi@0 2790 jlsValue->char_at_addr(jlsOffset);
aoqi@0 2791 assert(TypeArrayKlass::cast(jlsValue->klass())->element_type() == T_CHAR, "compressed string");
aoqi@0 2792 (void) UNICODE::as_utf8(jlsPos, jlsLen, (char *)dst, max_dtrace_string_size);
aoqi@0 2793 }
aoqi@0 2794 #endif // ndef HAVE_DTRACE_H
aoqi@0 2795
aoqi@0 2796 int SharedRuntime::convert_ints_to_longints_argcnt(int in_args_count, BasicType* in_sig_bt) {
aoqi@0 2797 int argcnt = in_args_count;
aoqi@0 2798 if (CCallingConventionRequiresIntsAsLongs) {
aoqi@0 2799 for (int in = 0; in < in_args_count; in++) {
aoqi@0 2800 BasicType bt = in_sig_bt[in];
aoqi@0 2801 switch (bt) {
aoqi@0 2802 case T_BOOLEAN:
aoqi@0 2803 case T_CHAR:
aoqi@0 2804 case T_BYTE:
aoqi@0 2805 case T_SHORT:
aoqi@0 2806 case T_INT:
aoqi@0 2807 argcnt++;
aoqi@0 2808 break;
aoqi@0 2809 default:
aoqi@0 2810 break;
aoqi@0 2811 }
aoqi@0 2812 }
aoqi@0 2813 } else {
aoqi@0 2814 assert(0, "This should not be needed on this platform");
aoqi@0 2815 }
aoqi@0 2816
aoqi@0 2817 return argcnt;
aoqi@0 2818 }
aoqi@0 2819
aoqi@0 2820 void SharedRuntime::convert_ints_to_longints(int i2l_argcnt, int& in_args_count,
aoqi@0 2821 BasicType*& in_sig_bt, VMRegPair*& in_regs) {
aoqi@0 2822 if (CCallingConventionRequiresIntsAsLongs) {
aoqi@0 2823 VMRegPair *new_in_regs = NEW_RESOURCE_ARRAY(VMRegPair, i2l_argcnt);
aoqi@0 2824 BasicType *new_in_sig_bt = NEW_RESOURCE_ARRAY(BasicType, i2l_argcnt);
aoqi@0 2825
aoqi@0 2826 int argcnt = 0;
aoqi@0 2827 for (int in = 0; in < in_args_count; in++, argcnt++) {
aoqi@0 2828 BasicType bt = in_sig_bt[in];
aoqi@0 2829 VMRegPair reg = in_regs[in];
aoqi@0 2830 switch (bt) {
aoqi@0 2831 case T_BOOLEAN:
aoqi@0 2832 case T_CHAR:
aoqi@0 2833 case T_BYTE:
aoqi@0 2834 case T_SHORT:
aoqi@0 2835 case T_INT:
aoqi@0 2836 // Convert (bt) to (T_LONG,bt).
aoqi@0 2837 new_in_sig_bt[argcnt ] = T_LONG;
aoqi@0 2838 new_in_sig_bt[argcnt+1] = bt;
aoqi@0 2839 assert(reg.first()->is_valid() && !reg.second()->is_valid(), "");
aoqi@0 2840 new_in_regs[argcnt ].set2(reg.first());
aoqi@0 2841 new_in_regs[argcnt+1].set_bad();
aoqi@0 2842 argcnt++;
aoqi@0 2843 break;
aoqi@0 2844 default:
aoqi@0 2845 // No conversion needed.
aoqi@0 2846 new_in_sig_bt[argcnt] = bt;
aoqi@0 2847 new_in_regs[argcnt] = reg;
aoqi@0 2848 break;
aoqi@0 2849 }
aoqi@0 2850 }
aoqi@0 2851 assert(argcnt == i2l_argcnt, "must match");
aoqi@0 2852
aoqi@0 2853 in_regs = new_in_regs;
aoqi@0 2854 in_sig_bt = new_in_sig_bt;
aoqi@0 2855 in_args_count = i2l_argcnt;
aoqi@0 2856 } else {
aoqi@0 2857 assert(0, "This should not be needed on this platform");
aoqi@0 2858 }
aoqi@0 2859 }
aoqi@0 2860
aoqi@0 2861 // -------------------------------------------------------------------------
aoqi@0 2862 // Java-Java calling convention
aoqi@0 2863 // (what you use when Java calls Java)
aoqi@0 2864
aoqi@0 2865 //------------------------------name_for_receiver----------------------------------
aoqi@0 2866 // For a given signature, return the VMReg for parameter 0.
aoqi@0 2867 VMReg SharedRuntime::name_for_receiver() {
aoqi@0 2868 VMRegPair regs;
aoqi@0 2869 BasicType sig_bt = T_OBJECT;
aoqi@0 2870 (void) java_calling_convention(&sig_bt, &regs, 1, true);
aoqi@0 2871 // Return argument 0 register. In the LP64 build pointers
aoqi@0 2872 // take 2 registers, but the VM wants only the 'main' name.
aoqi@0 2873 return regs.first();
aoqi@0 2874 }
aoqi@0 2875
aoqi@0 2876 VMRegPair *SharedRuntime::find_callee_arguments(Symbol* sig, bool has_receiver, bool has_appendix, int* arg_size) {
aoqi@0 2877 // This method is returning a data structure allocating as a
aoqi@0 2878 // ResourceObject, so do not put any ResourceMarks in here.
aoqi@0 2879 char *s = sig->as_C_string();
aoqi@0 2880 int len = (int)strlen(s);
aoqi@0 2881 s++; len--; // Skip opening paren
aoqi@0 2882
aoqi@0 2883 BasicType *sig_bt = NEW_RESOURCE_ARRAY( BasicType, 256 );
aoqi@0 2884 VMRegPair *regs = NEW_RESOURCE_ARRAY( VMRegPair, 256 );
aoqi@0 2885 int cnt = 0;
aoqi@0 2886 if (has_receiver) {
aoqi@0 2887 sig_bt[cnt++] = T_OBJECT; // Receiver is argument 0; not in signature
aoqi@0 2888 }
aoqi@0 2889
vkempik@8562 2890 while( *s != ')' ) { // Find closing right paren
aoqi@0 2891 switch( *s++ ) { // Switch on signature character
aoqi@0 2892 case 'B': sig_bt[cnt++] = T_BYTE; break;
aoqi@0 2893 case 'C': sig_bt[cnt++] = T_CHAR; break;
aoqi@0 2894 case 'D': sig_bt[cnt++] = T_DOUBLE; sig_bt[cnt++] = T_VOID; break;
aoqi@0 2895 case 'F': sig_bt[cnt++] = T_FLOAT; break;
aoqi@0 2896 case 'I': sig_bt[cnt++] = T_INT; break;
aoqi@0 2897 case 'J': sig_bt[cnt++] = T_LONG; sig_bt[cnt++] = T_VOID; break;
aoqi@0 2898 case 'S': sig_bt[cnt++] = T_SHORT; break;
aoqi@0 2899 case 'Z': sig_bt[cnt++] = T_BOOLEAN; break;
aoqi@0 2900 case 'V': sig_bt[cnt++] = T_VOID; break;
aoqi@0 2901 case 'L': // Oop
aoqi@0 2902 while( *s++ != ';' ) ; // Skip signature
aoqi@0 2903 sig_bt[cnt++] = T_OBJECT;
aoqi@0 2904 break;
aoqi@0 2905 case '[': { // Array
aoqi@0 2906 do { // Skip optional size
aoqi@0 2907 while( *s >= '0' && *s <= '9' ) s++;
aoqi@0 2908 } while( *s++ == '[' ); // Nested arrays?
aoqi@0 2909 // Skip element type
aoqi@0 2910 if( s[-1] == 'L' )
aoqi@0 2911 while( *s++ != ';' ) ; // Skip signature
aoqi@0 2912 sig_bt[cnt++] = T_ARRAY;
aoqi@0 2913 break;
aoqi@0 2914 }
aoqi@0 2915 default : ShouldNotReachHere();
aoqi@0 2916 }
aoqi@0 2917 }
aoqi@0 2918
aoqi@0 2919 if (has_appendix) {
aoqi@0 2920 sig_bt[cnt++] = T_OBJECT;
aoqi@0 2921 }
aoqi@0 2922
aoqi@0 2923 assert( cnt < 256, "grow table size" );
aoqi@0 2924
aoqi@0 2925 int comp_args_on_stack;
aoqi@0 2926 comp_args_on_stack = java_calling_convention(sig_bt, regs, cnt, true);
aoqi@0 2927
aoqi@0 2928 // the calling convention doesn't count out_preserve_stack_slots so
aoqi@0 2929 // we must add that in to get "true" stack offsets.
aoqi@0 2930
aoqi@0 2931 if (comp_args_on_stack) {
aoqi@0 2932 for (int i = 0; i < cnt; i++) {
aoqi@0 2933 VMReg reg1 = regs[i].first();
aoqi@0 2934 if( reg1->is_stack()) {
aoqi@0 2935 // Yuck
aoqi@0 2936 reg1 = reg1->bias(out_preserve_stack_slots());
aoqi@0 2937 }
aoqi@0 2938 VMReg reg2 = regs[i].second();
aoqi@0 2939 if( reg2->is_stack()) {
aoqi@0 2940 // Yuck
aoqi@0 2941 reg2 = reg2->bias(out_preserve_stack_slots());
aoqi@0 2942 }
aoqi@0 2943 regs[i].set_pair(reg2, reg1);
aoqi@0 2944 }
aoqi@0 2945 }
aoqi@0 2946
aoqi@0 2947 // results
aoqi@0 2948 *arg_size = cnt;
aoqi@0 2949 return regs;
aoqi@0 2950 }
aoqi@0 2951
aoqi@0 2952 // OSR Migration Code
aoqi@0 2953 //
aoqi@0 2954 // This code is used convert interpreter frames into compiled frames. It is
aoqi@0 2955 // called from very start of a compiled OSR nmethod. A temp array is
aoqi@0 2956 // allocated to hold the interesting bits of the interpreter frame. All
aoqi@0 2957 // active locks are inflated to allow them to move. The displaced headers and
aoqi@0 2958 // active interpeter locals are copied into the temp buffer. Then we return
aoqi@0 2959 // back to the compiled code. The compiled code then pops the current
aoqi@0 2960 // interpreter frame off the stack and pushes a new compiled frame. Then it
aoqi@0 2961 // copies the interpreter locals and displaced headers where it wants.
aoqi@0 2962 // Finally it calls back to free the temp buffer.
aoqi@0 2963 //
aoqi@0 2964 // All of this is done NOT at any Safepoint, nor is any safepoint or GC allowed.
aoqi@0 2965
aoqi@0 2966 JRT_LEAF(intptr_t*, SharedRuntime::OSR_migration_begin( JavaThread *thread) )
aoqi@0 2967
aoqi@0 2968 //
aoqi@0 2969 // This code is dependent on the memory layout of the interpreter local
aoqi@0 2970 // array and the monitors. On all of our platforms the layout is identical
aoqi@0 2971 // so this code is shared. If some platform lays the their arrays out
aoqi@0 2972 // differently then this code could move to platform specific code or
aoqi@0 2973 // the code here could be modified to copy items one at a time using
aoqi@0 2974 // frame accessor methods and be platform independent.
aoqi@0 2975
aoqi@0 2976 frame fr = thread->last_frame();
aoqi@0 2977 assert( fr.is_interpreted_frame(), "" );
aoqi@0 2978 assert( fr.interpreter_frame_expression_stack_size()==0, "only handle empty stacks" );
aoqi@0 2979
aoqi@0 2980 // Figure out how many monitors are active.
aoqi@0 2981 int active_monitor_count = 0;
aoqi@0 2982 for( BasicObjectLock *kptr = fr.interpreter_frame_monitor_end();
aoqi@0 2983 kptr < fr.interpreter_frame_monitor_begin();
aoqi@0 2984 kptr = fr.next_monitor_in_interpreter_frame(kptr) ) {
aoqi@0 2985 if( kptr->obj() != NULL ) active_monitor_count++;
aoqi@0 2986 }
aoqi@0 2987
aoqi@0 2988 // QQQ we could place number of active monitors in the array so that compiled code
aoqi@0 2989 // could double check it.
aoqi@0 2990
aoqi@0 2991 Method* moop = fr.interpreter_frame_method();
aoqi@0 2992 int max_locals = moop->max_locals();
aoqi@0 2993 // Allocate temp buffer, 1 word per local & 2 per active monitor
aoqi@0 2994 int buf_size_words = max_locals + active_monitor_count*2;
aoqi@0 2995 intptr_t *buf = NEW_C_HEAP_ARRAY(intptr_t,buf_size_words, mtCode);
aoqi@0 2996
aoqi@0 2997 // Copy the locals. Order is preserved so that loading of longs works.
aoqi@0 2998 // Since there's no GC I can copy the oops blindly.
aoqi@0 2999 assert( sizeof(HeapWord)==sizeof(intptr_t), "fix this code");
aoqi@0 3000 Copy::disjoint_words((HeapWord*)fr.interpreter_frame_local_at(max_locals-1),
aoqi@0 3001 (HeapWord*)&buf[0],
aoqi@0 3002 max_locals);
aoqi@0 3003
aoqi@0 3004 // Inflate locks. Copy the displaced headers. Be careful, there can be holes.
aoqi@0 3005 int i = max_locals;
aoqi@0 3006 for( BasicObjectLock *kptr2 = fr.interpreter_frame_monitor_end();
aoqi@0 3007 kptr2 < fr.interpreter_frame_monitor_begin();
aoqi@0 3008 kptr2 = fr.next_monitor_in_interpreter_frame(kptr2) ) {
aoqi@0 3009 if( kptr2->obj() != NULL) { // Avoid 'holes' in the monitor array
aoqi@0 3010 BasicLock *lock = kptr2->lock();
aoqi@0 3011 // Inflate so the displaced header becomes position-independent
aoqi@0 3012 if (lock->displaced_header()->is_unlocked())
aoqi@0 3013 ObjectSynchronizer::inflate_helper(kptr2->obj());
aoqi@0 3014 // Now the displaced header is free to move
aoqi@0 3015 buf[i++] = (intptr_t)lock->displaced_header();
aoqi@0 3016 buf[i++] = cast_from_oop<intptr_t>(kptr2->obj());
aoqi@0 3017 }
aoqi@0 3018 }
aoqi@0 3019 assert( i - max_locals == active_monitor_count*2, "found the expected number of monitors" );
aoqi@0 3020
aoqi@0 3021 return buf;
aoqi@0 3022 JRT_END
aoqi@0 3023
aoqi@0 3024 JRT_LEAF(void, SharedRuntime::OSR_migration_end( intptr_t* buf) )
aoqi@0 3025 FREE_C_HEAP_ARRAY(intptr_t,buf, mtCode);
aoqi@0 3026 JRT_END
aoqi@0 3027
aoqi@0 3028 bool AdapterHandlerLibrary::contains(CodeBlob* b) {
aoqi@0 3029 AdapterHandlerTableIterator iter(_adapters);
aoqi@0 3030 while (iter.has_next()) {
aoqi@0 3031 AdapterHandlerEntry* a = iter.next();
aoqi@0 3032 if ( b == CodeCache::find_blob(a->get_i2c_entry()) ) return true;
aoqi@0 3033 }
aoqi@0 3034 return false;
aoqi@0 3035 }
aoqi@0 3036
aoqi@0 3037 void AdapterHandlerLibrary::print_handler_on(outputStream* st, CodeBlob* b) {
aoqi@0 3038 AdapterHandlerTableIterator iter(_adapters);
aoqi@0 3039 while (iter.has_next()) {
aoqi@0 3040 AdapterHandlerEntry* a = iter.next();
aoqi@0 3041 if (b == CodeCache::find_blob(a->get_i2c_entry())) {
aoqi@0 3042 st->print("Adapter for signature: ");
aoqi@0 3043 a->print_adapter_on(tty);
aoqi@0 3044 return;
aoqi@0 3045 }
aoqi@0 3046 }
aoqi@0 3047 assert(false, "Should have found handler");
aoqi@0 3048 }
aoqi@0 3049
aoqi@0 3050 void AdapterHandlerEntry::print_adapter_on(outputStream* st) const {
aoqi@0 3051 st->print_cr("AHE@" INTPTR_FORMAT ": %s i2c: " INTPTR_FORMAT " c2i: " INTPTR_FORMAT " c2iUV: " INTPTR_FORMAT,
aoqi@0 3052 (intptr_t) this, fingerprint()->as_string(),
aoqi@0 3053 get_i2c_entry(), get_c2i_entry(), get_c2i_unverified_entry());
aoqi@0 3054
aoqi@0 3055 }
aoqi@0 3056
aoqi@0 3057 #ifndef PRODUCT
aoqi@0 3058
aoqi@0 3059 void AdapterHandlerLibrary::print_statistics() {
aoqi@0 3060 _adapters->print_statistics();
aoqi@0 3061 }
aoqi@0 3062
aoqi@0 3063 #endif /* PRODUCT */

mercurial