src/share/vm/runtime/sharedRuntime.cpp

Thu, 24 May 2018 17:06:56 +0800

author
aoqi
date
Thu, 24 May 2018 17:06:56 +0800
changeset 8604
04d83ba48607
parent 8562
56e96eb12a4b
parent 7997
6cbff0651f1a
child 8856
ac27a9c85bea
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2014, 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
aoqi@0 587 assert( cb && 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,
aoqi@0 680 bool force_unwind, bool top_frame_only) {
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).
aoqi@0 708 exception = Handle(THREAD, PENDING_EXCEPTION);
aoqi@0 709 CLEAR_PENDING_EXCEPTION;
aoqi@0 710 if (handler_bci >= 0) {
aoqi@0 711 bci = handler_bci;
aoqi@0 712 handler_bci = -1;
aoqi@0 713 skip_scope_increment = true;
aoqi@0 714 }
aoqi@0 715 }
aoqi@0 716 else {
aoqi@0 717 recursive_exception = false;
aoqi@0 718 }
aoqi@0 719 if (!top_frame_only && handler_bci < 0 && !skip_scope_increment) {
aoqi@0 720 sd = sd->sender();
aoqi@0 721 if (sd != NULL) {
aoqi@0 722 bci = sd->bci();
aoqi@0 723 }
aoqi@0 724 ++scope_depth;
aoqi@0 725 }
aoqi@0 726 } while (recursive_exception || (!top_frame_only && handler_bci < 0 && sd != NULL));
aoqi@0 727 }
aoqi@0 728
aoqi@0 729 // found handling method => lookup exception handler
aoqi@0 730 int catch_pco = ret_pc - nm->code_begin();
aoqi@0 731
aoqi@0 732 ExceptionHandlerTable table(nm);
aoqi@0 733 HandlerTableEntry *t = table.entry_for(catch_pco, handler_bci, scope_depth);
aoqi@0 734 if (t == NULL && (nm->is_compiled_by_c1() || handler_bci != -1)) {
aoqi@0 735 // Allow abbreviated catch tables. The idea is to allow a method
aoqi@0 736 // to materialize its exceptions without committing to the exact
aoqi@0 737 // routing of exceptions. In particular this is needed for adding
aoqi@0 738 // a synthethic handler to unlock monitors when inlining
aoqi@0 739 // synchonized methods since the unlock path isn't represented in
aoqi@0 740 // the bytecodes.
aoqi@0 741 t = table.entry_for(catch_pco, -1, 0);
aoqi@0 742 }
aoqi@0 743
aoqi@0 744 #ifdef COMPILER1
aoqi@0 745 if (t == NULL && nm->is_compiled_by_c1()) {
aoqi@0 746 assert(nm->unwind_handler_begin() != NULL, "");
aoqi@0 747 return nm->unwind_handler_begin();
aoqi@0 748 }
aoqi@0 749 #endif
aoqi@0 750
aoqi@0 751 if (t == NULL) {
aoqi@0 752 tty->print_cr("MISSING EXCEPTION HANDLER for pc " INTPTR_FORMAT " and handler bci %d", ret_pc, handler_bci);
aoqi@0 753 tty->print_cr(" Exception:");
aoqi@0 754 exception->print();
aoqi@0 755 tty->cr();
aoqi@0 756 tty->print_cr(" Compiled exception table :");
aoqi@0 757 table.print();
aoqi@0 758 nm->print_code();
aoqi@0 759 guarantee(false, "missing exception handler");
aoqi@0 760 return NULL;
aoqi@0 761 }
aoqi@0 762
aoqi@0 763 return nm->code_begin() + t->pco();
aoqi@0 764 }
aoqi@0 765
aoqi@0 766 JRT_ENTRY(void, SharedRuntime::throw_AbstractMethodError(JavaThread* thread))
aoqi@0 767 // These errors occur only at call sites
aoqi@0 768 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_AbstractMethodError());
aoqi@0 769 JRT_END
aoqi@0 770
aoqi@0 771 JRT_ENTRY(void, SharedRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
aoqi@0 772 // These errors occur only at call sites
aoqi@0 773 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError(), "vtable stub");
aoqi@0 774 JRT_END
aoqi@0 775
aoqi@0 776 JRT_ENTRY(void, SharedRuntime::throw_ArithmeticException(JavaThread* thread))
aoqi@0 777 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
aoqi@0 778 JRT_END
aoqi@0 779
aoqi@0 780 JRT_ENTRY(void, SharedRuntime::throw_NullPointerException(JavaThread* thread))
aoqi@0 781 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
aoqi@0 782 JRT_END
aoqi@0 783
aoqi@0 784 JRT_ENTRY(void, SharedRuntime::throw_NullPointerException_at_call(JavaThread* thread))
aoqi@0 785 // This entry point is effectively only used for NullPointerExceptions which occur at inline
aoqi@0 786 // cache sites (when the callee activation is not yet set up) so we are at a call site
aoqi@0 787 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_NullPointerException());
aoqi@0 788 JRT_END
aoqi@0 789
aoqi@0 790 JRT_ENTRY(void, SharedRuntime::throw_StackOverflowError(JavaThread* thread))
aoqi@0 791 // We avoid using the normal exception construction in this case because
aoqi@0 792 // it performs an upcall to Java, and we're already out of stack space.
aoqi@0 793 Klass* k = SystemDictionary::StackOverflowError_klass();
aoqi@0 794 oop exception_oop = InstanceKlass::cast(k)->allocate_instance(CHECK);
aoqi@0 795 Handle exception (thread, exception_oop);
aoqi@0 796 if (StackTraceInThrowable) {
aoqi@0 797 java_lang_Throwable::fill_in_stack_trace(exception);
aoqi@0 798 }
aoqi@0 799 throw_and_post_jvmti_exception(thread, exception);
aoqi@0 800 JRT_END
aoqi@0 801
aoqi@0 802 address SharedRuntime::continuation_for_implicit_exception(JavaThread* thread,
aoqi@0 803 address pc,
aoqi@0 804 SharedRuntime::ImplicitExceptionKind exception_kind)
aoqi@0 805 {
aoqi@0 806 address target_pc = NULL;
aoqi@0 807
aoqi@0 808 if (Interpreter::contains(pc)) {
aoqi@0 809 #ifdef CC_INTERP
aoqi@0 810 // C++ interpreter doesn't throw implicit exceptions
aoqi@0 811 ShouldNotReachHere();
aoqi@0 812 #else
aoqi@0 813 switch (exception_kind) {
aoqi@0 814 case IMPLICIT_NULL: return Interpreter::throw_NullPointerException_entry();
aoqi@0 815 case IMPLICIT_DIVIDE_BY_ZERO: return Interpreter::throw_ArithmeticException_entry();
aoqi@0 816 case STACK_OVERFLOW: return Interpreter::throw_StackOverflowError_entry();
aoqi@0 817 default: ShouldNotReachHere();
aoqi@0 818 }
aoqi@0 819 #endif // !CC_INTERP
aoqi@0 820 } else {
aoqi@0 821 switch (exception_kind) {
aoqi@0 822 case STACK_OVERFLOW: {
aoqi@0 823 // Stack overflow only occurs upon frame setup; the callee is
aoqi@0 824 // going to be unwound. Dispatch to a shared runtime stub
aoqi@0 825 // which will cause the StackOverflowError to be fabricated
aoqi@0 826 // and processed.
aoqi@0 827 // Stack overflow should never occur during deoptimization:
aoqi@0 828 // the compiled method bangs the stack by as much as the
aoqi@0 829 // interpreter would need in case of a deoptimization. The
aoqi@0 830 // deoptimization blob and uncommon trap blob bang the stack
aoqi@0 831 // in a debug VM to verify the correctness of the compiled
aoqi@0 832 // method stack banging.
aoqi@0 833 assert(thread->deopt_mark() == NULL, "no stack overflow from deopt blob/uncommon trap");
aoqi@0 834 Events::log_exception(thread, "StackOverflowError at " INTPTR_FORMAT, pc);
aoqi@0 835 return StubRoutines::throw_StackOverflowError_entry();
aoqi@0 836 }
aoqi@0 837
aoqi@0 838 case IMPLICIT_NULL: {
aoqi@0 839 if (VtableStubs::contains(pc)) {
aoqi@0 840 // We haven't yet entered the callee frame. Fabricate an
aoqi@0 841 // exception and begin dispatching it in the caller. Since
aoqi@0 842 // the caller was at a call site, it's safe to destroy all
aoqi@0 843 // caller-saved registers, as these entry points do.
aoqi@0 844 VtableStub* vt_stub = VtableStubs::stub_containing(pc);
aoqi@0 845
aoqi@0 846 // If vt_stub is NULL, then return NULL to signal handler to report the SEGV error.
aoqi@0 847 if (vt_stub == NULL) return NULL;
aoqi@0 848
aoqi@0 849 if (vt_stub->is_abstract_method_error(pc)) {
aoqi@0 850 assert(!vt_stub->is_vtable_stub(), "should never see AbstractMethodErrors from vtable-type VtableStubs");
aoqi@0 851 Events::log_exception(thread, "AbstractMethodError at " INTPTR_FORMAT, pc);
aoqi@0 852 return StubRoutines::throw_AbstractMethodError_entry();
aoqi@0 853 } else {
aoqi@0 854 Events::log_exception(thread, "NullPointerException at vtable entry " INTPTR_FORMAT, pc);
aoqi@0 855 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 856 }
aoqi@0 857 } else {
aoqi@0 858 CodeBlob* cb = CodeCache::find_blob(pc);
aoqi@0 859
aoqi@0 860 // If code blob is NULL, then return NULL to signal handler to report the SEGV error.
aoqi@0 861 if (cb == NULL) return NULL;
aoqi@0 862
aoqi@0 863 // Exception happened in CodeCache. Must be either:
aoqi@0 864 // 1. Inline-cache check in C2I handler blob,
aoqi@0 865 // 2. Inline-cache check in nmethod, or
aoqi@0 866 // 3. Implict null exception in nmethod
aoqi@0 867
aoqi@0 868 if (!cb->is_nmethod()) {
aoqi@0 869 bool is_in_blob = cb->is_adapter_blob() || cb->is_method_handles_adapter_blob();
aoqi@0 870 if (!is_in_blob) {
aoqi@0 871 cb->print();
aoqi@0 872 fatal(err_msg("exception happened outside interpreter, nmethods and vtable stubs at pc " INTPTR_FORMAT, pc));
aoqi@0 873 }
aoqi@0 874 Events::log_exception(thread, "NullPointerException in code blob at " INTPTR_FORMAT, pc);
aoqi@0 875 // There is no handler here, so we will simply unwind.
aoqi@0 876 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 877 }
aoqi@0 878
aoqi@0 879 // Otherwise, it's an nmethod. Consult its exception handlers.
aoqi@0 880 nmethod* nm = (nmethod*)cb;
aoqi@0 881 if (nm->inlinecache_check_contains(pc)) {
aoqi@0 882 // exception happened inside inline-cache check code
aoqi@0 883 // => the nmethod is not yet active (i.e., the frame
aoqi@0 884 // is not set up yet) => use return address pushed by
aoqi@0 885 // caller => don't push another return address
aoqi@0 886 Events::log_exception(thread, "NullPointerException in IC check " INTPTR_FORMAT, pc);
aoqi@0 887 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 888 }
aoqi@0 889
aoqi@0 890 if (nm->method()->is_method_handle_intrinsic()) {
aoqi@0 891 // exception happened inside MH dispatch code, similar to a vtable stub
aoqi@0 892 Events::log_exception(thread, "NullPointerException in MH adapter " INTPTR_FORMAT, pc);
aoqi@0 893 return StubRoutines::throw_NullPointerException_at_call_entry();
aoqi@0 894 }
aoqi@0 895
aoqi@0 896 #ifndef PRODUCT
aoqi@0 897 _implicit_null_throws++;
aoqi@0 898 #endif
aoqi@0 899 target_pc = nm->continuation_for_implicit_exception(pc);
aoqi@0 900 // If there's an unexpected fault, target_pc might be NULL,
aoqi@0 901 // in which case we want to fall through into the normal
aoqi@0 902 // error handling code.
aoqi@0 903 }
aoqi@0 904
aoqi@0 905 break; // fall through
aoqi@0 906 }
aoqi@0 907
aoqi@0 908
aoqi@0 909 case IMPLICIT_DIVIDE_BY_ZERO: {
aoqi@0 910 nmethod* nm = CodeCache::find_nmethod(pc);
aoqi@0 911 guarantee(nm != NULL, "must have containing nmethod for implicit division-by-zero exceptions");
aoqi@0 912 #ifndef PRODUCT
aoqi@0 913 _implicit_div0_throws++;
aoqi@0 914 #endif
aoqi@0 915 target_pc = nm->continuation_for_implicit_exception(pc);
aoqi@0 916 // If there's an unexpected fault, target_pc might be NULL,
aoqi@0 917 // in which case we want to fall through into the normal
aoqi@0 918 // error handling code.
aoqi@0 919 break; // fall through
aoqi@0 920 }
aoqi@0 921
aoqi@0 922 default: ShouldNotReachHere();
aoqi@0 923 }
aoqi@0 924
aoqi@0 925 assert(exception_kind == IMPLICIT_NULL || exception_kind == IMPLICIT_DIVIDE_BY_ZERO, "wrong implicit exception kind");
aoqi@0 926
aoqi@0 927 // for AbortVMOnException flag
aoqi@0 928 NOT_PRODUCT(Exceptions::debug_check_abort("java.lang.NullPointerException"));
aoqi@0 929 if (exception_kind == IMPLICIT_NULL) {
aoqi@0 930 Events::log_exception(thread, "Implicit null exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
aoqi@0 931 } else {
aoqi@0 932 Events::log_exception(thread, "Implicit division by zero exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
aoqi@0 933 }
aoqi@0 934 return target_pc;
aoqi@0 935 }
aoqi@0 936
aoqi@0 937 ShouldNotReachHere();
aoqi@0 938 return NULL;
aoqi@0 939 }
aoqi@0 940
aoqi@0 941
aoqi@0 942 /**
aoqi@0 943 * Throws an java/lang/UnsatisfiedLinkError. The address of this method is
aoqi@0 944 * installed in the native function entry of all native Java methods before
aoqi@0 945 * they get linked to their actual native methods.
aoqi@0 946 *
aoqi@0 947 * \note
aoqi@0 948 * This method actually never gets called! The reason is because
aoqi@0 949 * the interpreter's native entries call NativeLookup::lookup() which
aoqi@0 950 * throws the exception when the lookup fails. The exception is then
aoqi@0 951 * caught and forwarded on the return from NativeLookup::lookup() call
aoqi@0 952 * before the call to the native function. This might change in the future.
aoqi@0 953 */
aoqi@0 954 JNI_ENTRY(void*, throw_unsatisfied_link_error(JNIEnv* env, ...))
aoqi@0 955 {
aoqi@0 956 // We return a bad value here to make sure that the exception is
aoqi@0 957 // forwarded before we look at the return value.
aoqi@0 958 THROW_(vmSymbols::java_lang_UnsatisfiedLinkError(), (void*)badJNIHandle);
aoqi@0 959 }
aoqi@0 960 JNI_END
aoqi@0 961
aoqi@0 962 address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
aoqi@0 963 return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
aoqi@0 964 }
aoqi@0 965
aoqi@0 966
aoqi@0 967 #ifndef PRODUCT
aoqi@0 968 JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
aoqi@0 969 const frame f = thread->last_frame();
aoqi@0 970 assert(f.is_interpreted_frame(), "must be an interpreted frame");
aoqi@0 971 #ifndef PRODUCT
aoqi@0 972 methodHandle mh(THREAD, f.interpreter_frame_method());
aoqi@0 973 BytecodeTracer::trace(mh, f.interpreter_frame_bcp(), tos, tos2);
aoqi@0 974 #endif // !PRODUCT
aoqi@0 975 return preserve_this_value;
aoqi@0 976 JRT_END
aoqi@0 977 #endif // !PRODUCT
aoqi@0 978
aoqi@0 979
aoqi@0 980 JRT_ENTRY(void, SharedRuntime::yield_all(JavaThread* thread, int attempts))
aoqi@0 981 os::yield_all(attempts);
aoqi@0 982 JRT_END
aoqi@0 983
aoqi@0 984
aoqi@0 985 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::register_finalizer(JavaThread* thread, oopDesc* obj))
aoqi@0 986 assert(obj->is_oop(), "must be a valid oop");
aoqi@0 987 assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
aoqi@0 988 InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
aoqi@0 989 JRT_END
aoqi@0 990
aoqi@0 991
aoqi@0 992 jlong SharedRuntime::get_java_tid(Thread* thread) {
aoqi@0 993 if (thread != NULL) {
aoqi@0 994 if (thread->is_Java_thread()) {
aoqi@0 995 oop obj = ((JavaThread*)thread)->threadObj();
aoqi@0 996 return (obj == NULL) ? 0 : java_lang_Thread::thread_id(obj);
aoqi@0 997 }
aoqi@0 998 }
aoqi@0 999 return 0;
aoqi@0 1000 }
aoqi@0 1001
aoqi@0 1002 /**
aoqi@0 1003 * This function ought to be a void function, but cannot be because
aoqi@0 1004 * it gets turned into a tail-call on sparc, which runs into dtrace bug
aoqi@0 1005 * 6254741. Once that is fixed we can remove the dummy return value.
aoqi@0 1006 */
aoqi@0 1007 int SharedRuntime::dtrace_object_alloc(oopDesc* o, int size) {
aoqi@0 1008 return dtrace_object_alloc_base(Thread::current(), o, size);
aoqi@0 1009 }
aoqi@0 1010
aoqi@0 1011 int SharedRuntime::dtrace_object_alloc_base(Thread* thread, oopDesc* o, int size) {
aoqi@0 1012 assert(DTraceAllocProbes, "wrong call");
aoqi@0 1013 Klass* klass = o->klass();
aoqi@0 1014 Symbol* name = klass->name();
aoqi@0 1015 #ifndef USDT2
aoqi@0 1016 HS_DTRACE_PROBE4(hotspot, object__alloc, get_java_tid(thread),
aoqi@0 1017 name->bytes(), name->utf8_length(), size * HeapWordSize);
aoqi@0 1018 #else /* USDT2 */
aoqi@0 1019 HOTSPOT_OBJECT_ALLOC(
aoqi@0 1020 get_java_tid(thread),
aoqi@0 1021 (char *) name->bytes(), name->utf8_length(), size * HeapWordSize);
aoqi@0 1022 #endif /* USDT2 */
aoqi@0 1023 return 0;
aoqi@0 1024 }
aoqi@0 1025
aoqi@0 1026 JRT_LEAF(int, SharedRuntime::dtrace_method_entry(
aoqi@0 1027 JavaThread* thread, Method* method))
aoqi@0 1028 assert(DTraceMethodProbes, "wrong call");
aoqi@0 1029 Symbol* kname = method->klass_name();
aoqi@0 1030 Symbol* name = method->name();
aoqi@0 1031 Symbol* sig = method->signature();
aoqi@0 1032 #ifndef USDT2
aoqi@0 1033 HS_DTRACE_PROBE7(hotspot, method__entry, get_java_tid(thread),
aoqi@0 1034 kname->bytes(), kname->utf8_length(),
aoqi@0 1035 name->bytes(), name->utf8_length(),
aoqi@0 1036 sig->bytes(), sig->utf8_length());
aoqi@0 1037 #else /* USDT2 */
aoqi@0 1038 HOTSPOT_METHOD_ENTRY(
aoqi@0 1039 get_java_tid(thread),
aoqi@0 1040 (char *) kname->bytes(), kname->utf8_length(),
aoqi@0 1041 (char *) name->bytes(), name->utf8_length(),
aoqi@0 1042 (char *) sig->bytes(), sig->utf8_length());
aoqi@0 1043 #endif /* USDT2 */
aoqi@0 1044 return 0;
aoqi@0 1045 JRT_END
aoqi@0 1046
aoqi@0 1047 JRT_LEAF(int, SharedRuntime::dtrace_method_exit(
aoqi@0 1048 JavaThread* thread, Method* method))
aoqi@0 1049 assert(DTraceMethodProbes, "wrong call");
aoqi@0 1050 Symbol* kname = method->klass_name();
aoqi@0 1051 Symbol* name = method->name();
aoqi@0 1052 Symbol* sig = method->signature();
aoqi@0 1053 #ifndef USDT2
aoqi@0 1054 HS_DTRACE_PROBE7(hotspot, method__return, get_java_tid(thread),
aoqi@0 1055 kname->bytes(), kname->utf8_length(),
aoqi@0 1056 name->bytes(), name->utf8_length(),
aoqi@0 1057 sig->bytes(), sig->utf8_length());
aoqi@0 1058 #else /* USDT2 */
aoqi@0 1059 HOTSPOT_METHOD_RETURN(
aoqi@0 1060 get_java_tid(thread),
aoqi@0 1061 (char *) kname->bytes(), kname->utf8_length(),
aoqi@0 1062 (char *) name->bytes(), name->utf8_length(),
aoqi@0 1063 (char *) sig->bytes(), sig->utf8_length());
aoqi@0 1064 #endif /* USDT2 */
aoqi@0 1065 return 0;
aoqi@0 1066 JRT_END
aoqi@0 1067
aoqi@0 1068
aoqi@0 1069 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode)
aoqi@0 1070 // for a call current in progress, i.e., arguments has been pushed on stack
aoqi@0 1071 // put callee has not been invoked yet. Used by: resolve virtual/static,
aoqi@0 1072 // vtable updates, etc. Caller frame must be compiled.
aoqi@0 1073 Handle SharedRuntime::find_callee_info(JavaThread* thread, Bytecodes::Code& bc, CallInfo& callinfo, TRAPS) {
aoqi@0 1074 ResourceMark rm(THREAD);
aoqi@0 1075
aoqi@0 1076 // last java frame on stack (which includes native call frames)
aoqi@0 1077 vframeStream vfst(thread, true); // Do not skip and javaCalls
aoqi@0 1078
aoqi@0 1079 return find_callee_info_helper(thread, vfst, bc, callinfo, CHECK_(Handle()));
aoqi@0 1080 }
aoqi@0 1081
aoqi@0 1082
aoqi@0 1083 // Finds receiver, CallInfo (i.e. receiver method), and calling bytecode
aoqi@0 1084 // for a call current in progress, i.e., arguments has been pushed on stack
aoqi@0 1085 // but callee has not been invoked yet. Caller frame must be compiled.
aoqi@0 1086 Handle SharedRuntime::find_callee_info_helper(JavaThread* thread,
aoqi@0 1087 vframeStream& vfst,
aoqi@0 1088 Bytecodes::Code& bc,
aoqi@0 1089 CallInfo& callinfo, TRAPS) {
aoqi@0 1090 Handle receiver;
aoqi@0 1091 Handle nullHandle; //create a handy null handle for exception returns
aoqi@0 1092
aoqi@0 1093 assert(!vfst.at_end(), "Java frame must exist");
aoqi@0 1094
aoqi@0 1095 // Find caller and bci from vframe
aoqi@0 1096 methodHandle caller(THREAD, vfst.method());
aoqi@0 1097 int bci = vfst.bci();
aoqi@0 1098
aoqi@0 1099 // Find bytecode
aoqi@0 1100 Bytecode_invoke bytecode(caller, bci);
aoqi@0 1101 bc = bytecode.invoke_code();
aoqi@0 1102 int bytecode_index = bytecode.index();
aoqi@0 1103
aoqi@0 1104 // Find receiver for non-static call
aoqi@0 1105 if (bc != Bytecodes::_invokestatic &&
aoqi@0 1106 bc != Bytecodes::_invokedynamic &&
aoqi@0 1107 bc != Bytecodes::_invokehandle) {
aoqi@0 1108 // This register map must be update since we need to find the receiver for
aoqi@0 1109 // compiled frames. The receiver might be in a register.
aoqi@0 1110 RegisterMap reg_map2(thread);
aoqi@0 1111 frame stubFrame = thread->last_frame();
aoqi@0 1112 // Caller-frame is a compiled frame
aoqi@0 1113 frame callerFrame = stubFrame.sender(&reg_map2);
aoqi@0 1114
aoqi@0 1115 methodHandle callee = bytecode.static_target(CHECK_(nullHandle));
aoqi@0 1116 if (callee.is_null()) {
aoqi@0 1117 THROW_(vmSymbols::java_lang_NoSuchMethodException(), nullHandle);
aoqi@0 1118 }
aoqi@0 1119 // Retrieve from a compiled argument list
aoqi@0 1120 receiver = Handle(THREAD, callerFrame.retrieve_receiver(&reg_map2));
aoqi@0 1121
aoqi@0 1122 if (receiver.is_null()) {
aoqi@0 1123 THROW_(vmSymbols::java_lang_NullPointerException(), nullHandle);
aoqi@0 1124 }
aoqi@0 1125 }
aoqi@0 1126
aoqi@0 1127 // Resolve method. This is parameterized by bytecode.
aoqi@0 1128 constantPoolHandle constants(THREAD, caller->constants());
aoqi@0 1129 assert(receiver.is_null() || receiver->is_oop(), "wrong receiver");
aoqi@0 1130 LinkResolver::resolve_invoke(callinfo, receiver, constants, bytecode_index, bc, CHECK_(nullHandle));
aoqi@0 1131
aoqi@0 1132 #ifdef ASSERT
aoqi@0 1133 // Check that the receiver klass is of the right subtype and that it is initialized for virtual calls
aoqi@0 1134 if (bc != Bytecodes::_invokestatic && bc != Bytecodes::_invokedynamic && bc != Bytecodes::_invokehandle) {
aoqi@0 1135 assert(receiver.not_null(), "should have thrown exception");
aoqi@0 1136 KlassHandle receiver_klass(THREAD, receiver->klass());
aoqi@0 1137 Klass* rk = constants->klass_ref_at(bytecode_index, CHECK_(nullHandle));
aoqi@0 1138 // klass is already loaded
aoqi@0 1139 KlassHandle static_receiver_klass(THREAD, rk);
aoqi@0 1140 // Method handle invokes might have been optimized to a direct call
aoqi@0 1141 // so don't check for the receiver class.
aoqi@0 1142 // FIXME this weakens the assert too much
aoqi@0 1143 methodHandle callee = callinfo.selected_method();
aoqi@0 1144 assert(receiver_klass->is_subtype_of(static_receiver_klass()) ||
aoqi@0 1145 callee->is_method_handle_intrinsic() ||
aoqi@0 1146 callee->is_compiled_lambda_form(),
aoqi@0 1147 "actual receiver must be subclass of static receiver klass");
aoqi@0 1148 if (receiver_klass->oop_is_instance()) {
aoqi@0 1149 if (InstanceKlass::cast(receiver_klass())->is_not_initialized()) {
aoqi@0 1150 tty->print_cr("ERROR: Klass not yet initialized!!");
aoqi@0 1151 receiver_klass()->print();
aoqi@0 1152 }
aoqi@0 1153 assert(!InstanceKlass::cast(receiver_klass())->is_not_initialized(), "receiver_klass must be initialized");
aoqi@0 1154 }
aoqi@0 1155 }
aoqi@0 1156 #endif
aoqi@0 1157
aoqi@0 1158 return receiver;
aoqi@0 1159 }
aoqi@0 1160
aoqi@0 1161 methodHandle SharedRuntime::find_callee_method(JavaThread* thread, TRAPS) {
aoqi@0 1162 ResourceMark rm(THREAD);
aoqi@0 1163 // We need first to check if any Java activations (compiled, interpreted)
aoqi@0 1164 // exist on the stack since last JavaCall. If not, we need
aoqi@0 1165 // to get the target method from the JavaCall wrapper.
aoqi@0 1166 vframeStream vfst(thread, true); // Do not skip any javaCalls
aoqi@0 1167 methodHandle callee_method;
aoqi@0 1168 if (vfst.at_end()) {
aoqi@0 1169 // No Java frames were found on stack since we did the JavaCall.
aoqi@0 1170 // Hence the stack can only contain an entry_frame. We need to
aoqi@0 1171 // find the target method from the stub frame.
aoqi@0 1172 RegisterMap reg_map(thread, false);
aoqi@0 1173 frame fr = thread->last_frame();
aoqi@0 1174 assert(fr.is_runtime_frame(), "must be a runtimeStub");
aoqi@0 1175 fr = fr.sender(&reg_map);
aoqi@0 1176 assert(fr.is_entry_frame(), "must be");
aoqi@0 1177 // fr is now pointing to the entry frame.
aoqi@0 1178 callee_method = methodHandle(THREAD, fr.entry_frame_call_wrapper()->callee_method());
aoqi@0 1179 assert(fr.entry_frame_call_wrapper()->receiver() == NULL || !callee_method->is_static(), "non-null receiver for static call??");
aoqi@0 1180 } else {
aoqi@0 1181 Bytecodes::Code bc;
aoqi@0 1182 CallInfo callinfo;
aoqi@0 1183 find_callee_info_helper(thread, vfst, bc, callinfo, CHECK_(methodHandle()));
aoqi@0 1184 callee_method = callinfo.selected_method();
aoqi@0 1185 }
aoqi@0 1186 assert(callee_method()->is_method(), "must be");
aoqi@0 1187 return callee_method;
aoqi@0 1188 }
aoqi@0 1189
aoqi@0 1190 // Resolves a call.
aoqi@0 1191 methodHandle SharedRuntime::resolve_helper(JavaThread *thread,
aoqi@0 1192 bool is_virtual,
aoqi@0 1193 bool is_optimized, TRAPS) {
aoqi@0 1194 methodHandle callee_method;
aoqi@0 1195 callee_method = resolve_sub_helper(thread, is_virtual, is_optimized, THREAD);
aoqi@0 1196 if (JvmtiExport::can_hotswap_or_post_breakpoint()) {
aoqi@0 1197 int retry_count = 0;
aoqi@0 1198 while (!HAS_PENDING_EXCEPTION && callee_method->is_old() &&
aoqi@0 1199 callee_method->method_holder() != SystemDictionary::Object_klass()) {
aoqi@0 1200 // If has a pending exception then there is no need to re-try to
aoqi@0 1201 // resolve this method.
aoqi@0 1202 // If the method has been redefined, we need to try again.
aoqi@0 1203 // Hack: we have no way to update the vtables of arrays, so don't
aoqi@0 1204 // require that java.lang.Object has been updated.
aoqi@0 1205
aoqi@0 1206 // It is very unlikely that method is redefined more than 100 times
aoqi@0 1207 // in the middle of resolve. If it is looping here more than 100 times
aoqi@0 1208 // means then there could be a bug here.
aoqi@0 1209 guarantee((retry_count++ < 100),
aoqi@0 1210 "Could not resolve to latest version of redefined method");
aoqi@0 1211 // method is redefined in the middle of resolve so re-try.
aoqi@0 1212 callee_method = resolve_sub_helper(thread, is_virtual, is_optimized, THREAD);
aoqi@0 1213 }
aoqi@0 1214 }
aoqi@0 1215 return callee_method;
aoqi@0 1216 }
aoqi@0 1217
aoqi@0 1218 // Resolves a call. The compilers generate code for calls that go here
aoqi@0 1219 // and are patched with the real destination of the call.
aoqi@0 1220 methodHandle SharedRuntime::resolve_sub_helper(JavaThread *thread,
aoqi@0 1221 bool is_virtual,
aoqi@0 1222 bool is_optimized, TRAPS) {
aoqi@0 1223
aoqi@0 1224 ResourceMark rm(thread);
aoqi@0 1225 RegisterMap cbl_map(thread, false);
aoqi@0 1226 frame caller_frame = thread->last_frame().sender(&cbl_map);
aoqi@0 1227
aoqi@0 1228 CodeBlob* caller_cb = caller_frame.cb();
aoqi@0 1229 guarantee(caller_cb != NULL && caller_cb->is_nmethod(), "must be called from nmethod");
aoqi@0 1230 nmethod* caller_nm = caller_cb->as_nmethod_or_null();
aoqi@0 1231
aoqi@0 1232 // make sure caller is not getting deoptimized
aoqi@0 1233 // and removed before we are done with it.
aoqi@0 1234 // CLEANUP - with lazy deopt shouldn't need this lock
aoqi@0 1235 nmethodLocker caller_lock(caller_nm);
aoqi@0 1236
aoqi@0 1237 // determine call info & receiver
aoqi@0 1238 // note: a) receiver is NULL for static calls
aoqi@0 1239 // b) an exception is thrown if receiver is NULL for non-static calls
aoqi@0 1240 CallInfo call_info;
aoqi@0 1241 Bytecodes::Code invoke_code = Bytecodes::_illegal;
aoqi@0 1242 Handle receiver = find_callee_info(thread, invoke_code,
aoqi@0 1243 call_info, CHECK_(methodHandle()));
aoqi@0 1244 methodHandle callee_method = call_info.selected_method();
aoqi@0 1245
aoqi@0 1246 assert((!is_virtual && invoke_code == Bytecodes::_invokestatic ) ||
aoqi@0 1247 (!is_virtual && invoke_code == Bytecodes::_invokehandle ) ||
aoqi@0 1248 (!is_virtual && invoke_code == Bytecodes::_invokedynamic) ||
aoqi@0 1249 ( is_virtual && invoke_code != Bytecodes::_invokestatic ), "inconsistent bytecode");
aoqi@0 1250
thartmann@7193 1251 assert(caller_nm->is_alive(), "It should be alive");
aoqi@0 1252
aoqi@0 1253 #ifndef PRODUCT
aoqi@0 1254 // tracing/debugging/statistics
aoqi@0 1255 int *addr = (is_optimized) ? (&_resolve_opt_virtual_ctr) :
aoqi@0 1256 (is_virtual) ? (&_resolve_virtual_ctr) :
aoqi@0 1257 (&_resolve_static_ctr);
aoqi@0 1258 Atomic::inc(addr);
aoqi@0 1259
aoqi@0 1260 if (TraceCallFixup) {
aoqi@0 1261 ResourceMark rm(thread);
aoqi@0 1262 tty->print("resolving %s%s (%s) call to",
aoqi@0 1263 (is_optimized) ? "optimized " : "", (is_virtual) ? "virtual" : "static",
aoqi@0 1264 Bytecodes::name(invoke_code));
aoqi@0 1265 callee_method->print_short_name(tty);
aoqi@0 1266 tty->print_cr(" at pc: " INTPTR_FORMAT " to code: " INTPTR_FORMAT, caller_frame.pc(), callee_method->code());
aoqi@0 1267 }
aoqi@0 1268 #endif
aoqi@0 1269
aoqi@0 1270 // JSR 292 key invariant:
zmajo@7854 1271 // If the resolved method is a MethodHandle invoke target, the call
aoqi@0 1272 // site must be a MethodHandle call site, because the lambda form might tail-call
aoqi@0 1273 // leaving the stack in a state unknown to either caller or callee
aoqi@0 1274 // TODO detune for now but we might need it again
aoqi@0 1275 // assert(!callee_method->is_compiled_lambda_form() ||
aoqi@0 1276 // caller_nm->is_method_handle_return(caller_frame.pc()), "must be MH call site");
aoqi@0 1277
aoqi@0 1278 // Compute entry points. This might require generation of C2I converter
aoqi@0 1279 // frames, so we cannot be holding any locks here. Furthermore, the
aoqi@0 1280 // computation of the entry points is independent of patching the call. We
aoqi@0 1281 // always return the entry-point, but we only patch the stub if the call has
aoqi@0 1282 // not been deoptimized. Return values: For a virtual call this is an
aoqi@0 1283 // (cached_oop, destination address) pair. For a static call/optimized
aoqi@0 1284 // virtual this is just a destination address.
aoqi@0 1285
aoqi@0 1286 StaticCallInfo static_call_info;
aoqi@0 1287 CompiledICInfo virtual_call_info;
aoqi@0 1288
aoqi@0 1289 // Make sure the callee nmethod does not get deoptimized and removed before
aoqi@0 1290 // we are done patching the code.
aoqi@0 1291 nmethod* callee_nm = callee_method->code();
aoqi@0 1292 if (callee_nm != NULL && !callee_nm->is_in_use()) {
aoqi@0 1293 // Patch call site to C2I adapter if callee nmethod is deoptimized or unloaded.
aoqi@0 1294 callee_nm = NULL;
aoqi@0 1295 }
aoqi@0 1296 nmethodLocker nl_callee(callee_nm);
aoqi@0 1297 #ifdef ASSERT
aoqi@0 1298 address dest_entry_point = callee_nm == NULL ? 0 : callee_nm->entry_point(); // used below
aoqi@0 1299 #endif
aoqi@0 1300
aoqi@0 1301 if (is_virtual) {
aoqi@0 1302 assert(receiver.not_null() || invoke_code == Bytecodes::_invokehandle, "sanity check");
aoqi@0 1303 bool static_bound = call_info.resolved_method()->can_be_statically_bound();
aoqi@0 1304 KlassHandle h_klass(THREAD, invoke_code == Bytecodes::_invokehandle ? NULL : receiver->klass());
aoqi@0 1305 CompiledIC::compute_monomorphic_entry(callee_method, h_klass,
aoqi@0 1306 is_optimized, static_bound, virtual_call_info,
aoqi@0 1307 CHECK_(methodHandle()));
aoqi@0 1308 } else {
aoqi@0 1309 // static call
aoqi@0 1310 CompiledStaticCall::compute_entry(callee_method, static_call_info);
aoqi@0 1311 }
aoqi@0 1312
aoqi@0 1313 // grab lock, check for deoptimization and potentially patch caller
aoqi@0 1314 {
aoqi@0 1315 MutexLocker ml_patch(CompiledIC_lock);
aoqi@0 1316
aoqi@0 1317 // Lock blocks for safepoint during which both nmethods can change state.
aoqi@0 1318
aoqi@0 1319 // Now that we are ready to patch if the Method* was redefined then
aoqi@0 1320 // don't update call site and let the caller retry.
aoqi@0 1321 // Don't update call site if callee nmethod was unloaded or deoptimized.
aoqi@0 1322 // Don't update call site if callee nmethod was replaced by an other nmethod
aoqi@0 1323 // which may happen when multiply alive nmethod (tiered compilation)
aoqi@0 1324 // will be supported.
thartmann@7193 1325 if (!callee_method->is_old() &&
aoqi@0 1326 (callee_nm == NULL || callee_nm->is_in_use() && (callee_method->code() == callee_nm))) {
aoqi@0 1327 #ifdef ASSERT
aoqi@0 1328 // We must not try to patch to jump to an already unloaded method.
aoqi@0 1329 if (dest_entry_point != 0) {
aoqi@0 1330 CodeBlob* cb = CodeCache::find_blob(dest_entry_point);
aoqi@0 1331 assert((cb != NULL) && cb->is_nmethod() && (((nmethod*)cb) == callee_nm),
aoqi@0 1332 "should not call unloaded nmethod");
aoqi@0 1333 }
aoqi@0 1334 #endif
aoqi@0 1335 if (is_virtual) {
aoqi@0 1336 nmethod* nm = callee_nm;
aoqi@0 1337 if (nm == NULL) CodeCache::find_blob(caller_frame.pc());
aoqi@0 1338 CompiledIC* inline_cache = CompiledIC_before(caller_nm, caller_frame.pc());
aoqi@0 1339 if (inline_cache->is_clean()) {
aoqi@0 1340 inline_cache->set_to_monomorphic(virtual_call_info);
aoqi@0 1341 }
aoqi@0 1342 } else {
aoqi@0 1343 CompiledStaticCall* ssc = compiledStaticCall_before(caller_frame.pc());
aoqi@0 1344 if (ssc->is_clean()) ssc->set(static_call_info);
aoqi@0 1345 }
aoqi@0 1346 }
aoqi@0 1347
aoqi@0 1348 } // unlock CompiledIC_lock
aoqi@0 1349
aoqi@0 1350 return callee_method;
aoqi@0 1351 }
aoqi@0 1352
aoqi@0 1353
aoqi@0 1354 // Inline caches exist only in compiled code
aoqi@0 1355 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method_ic_miss(JavaThread* thread))
aoqi@0 1356 #ifdef ASSERT
aoqi@0 1357 RegisterMap reg_map(thread, false);
aoqi@0 1358 frame stub_frame = thread->last_frame();
aoqi@0 1359 assert(stub_frame.is_runtime_frame(), "sanity check");
aoqi@0 1360 frame caller_frame = stub_frame.sender(&reg_map);
aoqi@0 1361 assert(!caller_frame.is_interpreted_frame() && !caller_frame.is_entry_frame(), "unexpected frame");
aoqi@0 1362 #endif /* ASSERT */
aoqi@0 1363
aoqi@0 1364 methodHandle callee_method;
aoqi@0 1365 JRT_BLOCK
aoqi@0 1366 callee_method = SharedRuntime::handle_ic_miss_helper(thread, CHECK_NULL);
aoqi@0 1367 // Return Method* through TLS
aoqi@0 1368 thread->set_vm_result_2(callee_method());
aoqi@0 1369 JRT_BLOCK_END
aoqi@0 1370 // return compiled code entry point after potential safepoints
aoqi@0 1371 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1372 return callee_method->verified_code_entry();
aoqi@0 1373 JRT_END
aoqi@0 1374
aoqi@0 1375
aoqi@0 1376 // Handle call site that has been made non-entrant
aoqi@0 1377 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method(JavaThread* thread))
aoqi@0 1378 // 6243940 We might end up in here if the callee is deoptimized
aoqi@0 1379 // as we race to call it. We don't want to take a safepoint if
aoqi@0 1380 // the caller was interpreted because the caller frame will look
aoqi@0 1381 // interpreted to the stack walkers and arguments are now
aoqi@0 1382 // "compiled" so it is much better to make this transition
aoqi@0 1383 // invisible to the stack walking code. The i2c path will
aoqi@0 1384 // place the callee method in the callee_target. It is stashed
aoqi@0 1385 // there because if we try and find the callee by normal means a
aoqi@0 1386 // safepoint is possible and have trouble gc'ing the compiled args.
aoqi@0 1387 RegisterMap reg_map(thread, false);
aoqi@0 1388 frame stub_frame = thread->last_frame();
aoqi@0 1389 assert(stub_frame.is_runtime_frame(), "sanity check");
aoqi@0 1390 frame caller_frame = stub_frame.sender(&reg_map);
aoqi@0 1391
aoqi@0 1392 if (caller_frame.is_interpreted_frame() ||
aoqi@0 1393 caller_frame.is_entry_frame()) {
aoqi@0 1394 Method* callee = thread->callee_target();
aoqi@0 1395 guarantee(callee != NULL && callee->is_method(), "bad handshake");
aoqi@0 1396 thread->set_vm_result_2(callee);
aoqi@0 1397 thread->set_callee_target(NULL);
aoqi@0 1398 return callee->get_c2i_entry();
aoqi@0 1399 }
aoqi@0 1400
aoqi@0 1401 // Must be compiled to compiled path which is safe to stackwalk
aoqi@0 1402 methodHandle callee_method;
aoqi@0 1403 JRT_BLOCK
aoqi@0 1404 // Force resolving of caller (if we called from compiled frame)
aoqi@0 1405 callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_NULL);
aoqi@0 1406 thread->set_vm_result_2(callee_method());
aoqi@0 1407 JRT_BLOCK_END
aoqi@0 1408 // return compiled code entry point after potential safepoints
aoqi@0 1409 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1410 return callee_method->verified_code_entry();
aoqi@0 1411 JRT_END
aoqi@0 1412
aoqi@0 1413 // Handle abstract method call
aoqi@0 1414 JRT_BLOCK_ENTRY(address, SharedRuntime::handle_wrong_method_abstract(JavaThread* thread))
aoqi@0 1415 return StubRoutines::throw_AbstractMethodError_entry();
aoqi@0 1416 JRT_END
aoqi@0 1417
aoqi@0 1418
aoqi@0 1419 // resolve a static call and patch code
aoqi@0 1420 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_static_call_C(JavaThread *thread ))
aoqi@0 1421 methodHandle callee_method;
aoqi@0 1422 JRT_BLOCK
aoqi@0 1423 callee_method = SharedRuntime::resolve_helper(thread, false, false, CHECK_NULL);
aoqi@0 1424 thread->set_vm_result_2(callee_method());
aoqi@0 1425 JRT_BLOCK_END
aoqi@0 1426 // return compiled code entry point after potential safepoints
aoqi@0 1427 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1428 return callee_method->verified_code_entry();
aoqi@0 1429 JRT_END
aoqi@0 1430
aoqi@0 1431
aoqi@0 1432 // resolve virtual call and update inline cache to monomorphic
aoqi@0 1433 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_virtual_call_C(JavaThread *thread ))
aoqi@0 1434 methodHandle callee_method;
aoqi@0 1435 JRT_BLOCK
aoqi@0 1436 callee_method = SharedRuntime::resolve_helper(thread, true, false, CHECK_NULL);
aoqi@0 1437 thread->set_vm_result_2(callee_method());
aoqi@0 1438 JRT_BLOCK_END
aoqi@0 1439 // return compiled code entry point after potential safepoints
aoqi@0 1440 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1441 return callee_method->verified_code_entry();
aoqi@0 1442 JRT_END
aoqi@0 1443
aoqi@0 1444
aoqi@0 1445 // Resolve a virtual call that can be statically bound (e.g., always
aoqi@0 1446 // monomorphic, so it has no inline cache). Patch code to resolved target.
aoqi@0 1447 JRT_BLOCK_ENTRY(address, SharedRuntime::resolve_opt_virtual_call_C(JavaThread *thread))
aoqi@0 1448 methodHandle callee_method;
aoqi@0 1449 JRT_BLOCK
aoqi@0 1450 callee_method = SharedRuntime::resolve_helper(thread, true, true, CHECK_NULL);
aoqi@0 1451 thread->set_vm_result_2(callee_method());
aoqi@0 1452 JRT_BLOCK_END
aoqi@0 1453 // return compiled code entry point after potential safepoints
aoqi@0 1454 assert(callee_method->verified_code_entry() != NULL, " Jump to zero!");
aoqi@0 1455 return callee_method->verified_code_entry();
aoqi@0 1456 JRT_END
aoqi@0 1457
aoqi@0 1458
aoqi@0 1459
aoqi@0 1460
aoqi@0 1461
aoqi@0 1462 methodHandle SharedRuntime::handle_ic_miss_helper(JavaThread *thread, TRAPS) {
aoqi@0 1463 ResourceMark rm(thread);
aoqi@0 1464 CallInfo call_info;
aoqi@0 1465 Bytecodes::Code bc;
aoqi@0 1466
aoqi@0 1467 // receiver is NULL for static calls. An exception is thrown for NULL
aoqi@0 1468 // receivers for non-static calls
aoqi@0 1469 Handle receiver = find_callee_info(thread, bc, call_info,
aoqi@0 1470 CHECK_(methodHandle()));
aoqi@0 1471 // Compiler1 can produce virtual call sites that can actually be statically bound
aoqi@0 1472 // If we fell thru to below we would think that the site was going megamorphic
aoqi@0 1473 // when in fact the site can never miss. Worse because we'd think it was megamorphic
aoqi@0 1474 // we'd try and do a vtable dispatch however methods that can be statically bound
aoqi@0 1475 // don't have vtable entries (vtable_index < 0) and we'd blow up. So we force a
aoqi@0 1476 // reresolution of the call site (as if we did a handle_wrong_method and not an
aoqi@0 1477 // plain ic_miss) and the site will be converted to an optimized virtual call site
aoqi@0 1478 // never to miss again. I don't believe C2 will produce code like this but if it
aoqi@0 1479 // did this would still be the correct thing to do for it too, hence no ifdef.
aoqi@0 1480 //
aoqi@0 1481 if (call_info.resolved_method()->can_be_statically_bound()) {
aoqi@0 1482 methodHandle callee_method = SharedRuntime::reresolve_call_site(thread, CHECK_(methodHandle()));
aoqi@0 1483 if (TraceCallFixup) {
aoqi@0 1484 RegisterMap reg_map(thread, false);
aoqi@0 1485 frame caller_frame = thread->last_frame().sender(&reg_map);
aoqi@0 1486 ResourceMark rm(thread);
aoqi@0 1487 tty->print("converting IC miss to reresolve (%s) call to", Bytecodes::name(bc));
aoqi@0 1488 callee_method->print_short_name(tty);
aoqi@0 1489 tty->print_cr(" from pc: " INTPTR_FORMAT, caller_frame.pc());
aoqi@0 1490 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1491 }
aoqi@0 1492 return callee_method;
aoqi@0 1493 }
aoqi@0 1494
aoqi@0 1495 methodHandle callee_method = call_info.selected_method();
aoqi@0 1496
aoqi@0 1497 bool should_be_mono = false;
aoqi@0 1498
aoqi@0 1499 #ifndef PRODUCT
aoqi@0 1500 Atomic::inc(&_ic_miss_ctr);
aoqi@0 1501
aoqi@0 1502 // Statistics & Tracing
aoqi@0 1503 if (TraceCallFixup) {
aoqi@0 1504 ResourceMark rm(thread);
aoqi@0 1505 tty->print("IC miss (%s) call to", Bytecodes::name(bc));
aoqi@0 1506 callee_method->print_short_name(tty);
aoqi@0 1507 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1508 }
aoqi@0 1509
aoqi@0 1510 if (ICMissHistogram) {
aoqi@0 1511 MutexLocker m(VMStatistic_lock);
aoqi@0 1512 RegisterMap reg_map(thread, false);
aoqi@0 1513 frame f = thread->last_frame().real_sender(&reg_map);// skip runtime stub
aoqi@0 1514 // produce statistics under the lock
aoqi@0 1515 trace_ic_miss(f.pc());
aoqi@0 1516 }
aoqi@0 1517 #endif
aoqi@0 1518
aoqi@0 1519 // install an event collector so that when a vtable stub is created the
aoqi@0 1520 // profiler can be notified via a DYNAMIC_CODE_GENERATED event. The
aoqi@0 1521 // event can't be posted when the stub is created as locks are held
aoqi@0 1522 // - instead the event will be deferred until the event collector goes
aoqi@0 1523 // out of scope.
aoqi@0 1524 JvmtiDynamicCodeEventCollector event_collector;
aoqi@0 1525
thartmann@7193 1526 // Update inline cache to megamorphic. Skip update if we are called from interpreted.
aoqi@0 1527 { MutexLocker ml_patch (CompiledIC_lock);
aoqi@0 1528 RegisterMap reg_map(thread, false);
aoqi@0 1529 frame caller_frame = thread->last_frame().sender(&reg_map);
aoqi@0 1530 CodeBlob* cb = caller_frame.cb();
thartmann@7193 1531 if (cb->is_nmethod()) {
aoqi@0 1532 CompiledIC* inline_cache = CompiledIC_before(((nmethod*)cb), caller_frame.pc());
aoqi@0 1533 bool should_be_mono = false;
aoqi@0 1534 if (inline_cache->is_optimized()) {
aoqi@0 1535 if (TraceCallFixup) {
aoqi@0 1536 ResourceMark rm(thread);
aoqi@0 1537 tty->print("OPTIMIZED IC miss (%s) call to", Bytecodes::name(bc));
aoqi@0 1538 callee_method->print_short_name(tty);
aoqi@0 1539 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1540 }
aoqi@0 1541 should_be_mono = true;
aoqi@0 1542 } else if (inline_cache->is_icholder_call()) {
aoqi@0 1543 CompiledICHolder* ic_oop = inline_cache->cached_icholder();
aoqi@0 1544 if ( ic_oop != NULL) {
aoqi@0 1545
aoqi@0 1546 if (receiver()->klass() == ic_oop->holder_klass()) {
aoqi@0 1547 // This isn't a real miss. We must have seen that compiled code
aoqi@0 1548 // is now available and we want the call site converted to a
aoqi@0 1549 // monomorphic compiled call site.
aoqi@0 1550 // We can't assert for callee_method->code() != NULL because it
aoqi@0 1551 // could have been deoptimized in the meantime
aoqi@0 1552 if (TraceCallFixup) {
aoqi@0 1553 ResourceMark rm(thread);
aoqi@0 1554 tty->print("FALSE IC miss (%s) converting to compiled call to", Bytecodes::name(bc));
aoqi@0 1555 callee_method->print_short_name(tty);
aoqi@0 1556 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1557 }
aoqi@0 1558 should_be_mono = true;
aoqi@0 1559 }
aoqi@0 1560 }
aoqi@0 1561 }
aoqi@0 1562
aoqi@0 1563 if (should_be_mono) {
aoqi@0 1564
aoqi@0 1565 // We have a path that was monomorphic but was going interpreted
aoqi@0 1566 // and now we have (or had) a compiled entry. We correct the IC
aoqi@0 1567 // by using a new icBuffer.
aoqi@0 1568 CompiledICInfo info;
aoqi@0 1569 KlassHandle receiver_klass(THREAD, receiver()->klass());
aoqi@0 1570 inline_cache->compute_monomorphic_entry(callee_method,
aoqi@0 1571 receiver_klass,
aoqi@0 1572 inline_cache->is_optimized(),
aoqi@0 1573 false,
aoqi@0 1574 info, CHECK_(methodHandle()));
aoqi@0 1575 inline_cache->set_to_monomorphic(info);
aoqi@0 1576 } else if (!inline_cache->is_megamorphic() && !inline_cache->is_clean()) {
aoqi@0 1577 // Potential change to megamorphic
aoqi@0 1578 bool successful = inline_cache->set_to_megamorphic(&call_info, bc, CHECK_(methodHandle()));
aoqi@0 1579 if (!successful) {
aoqi@0 1580 inline_cache->set_to_clean();
aoqi@0 1581 }
aoqi@0 1582 } else {
aoqi@0 1583 // Either clean or megamorphic
aoqi@0 1584 }
aoqi@0 1585 }
aoqi@0 1586 } // Release CompiledIC_lock
aoqi@0 1587
aoqi@0 1588 return callee_method;
aoqi@0 1589 }
aoqi@0 1590
aoqi@0 1591 //
aoqi@0 1592 // Resets a call-site in compiled code so it will get resolved again.
aoqi@0 1593 // This routines handles both virtual call sites, optimized virtual call
aoqi@0 1594 // sites, and static call sites. Typically used to change a call sites
aoqi@0 1595 // destination from compiled to interpreted.
aoqi@0 1596 //
aoqi@0 1597 methodHandle SharedRuntime::reresolve_call_site(JavaThread *thread, TRAPS) {
aoqi@0 1598 ResourceMark rm(thread);
aoqi@0 1599 RegisterMap reg_map(thread, false);
aoqi@0 1600 frame stub_frame = thread->last_frame();
aoqi@0 1601 assert(stub_frame.is_runtime_frame(), "must be a runtimeStub");
aoqi@0 1602 frame caller = stub_frame.sender(&reg_map);
aoqi@0 1603
aoqi@0 1604 // Do nothing if the frame isn't a live compiled frame.
aoqi@0 1605 // nmethod could be deoptimized by the time we get here
aoqi@0 1606 // so no update to the caller is needed.
aoqi@0 1607
aoqi@0 1608 if (caller.is_compiled_frame() && !caller.is_deoptimized_frame()) {
aoqi@0 1609
aoqi@0 1610 address pc = caller.pc();
aoqi@0 1611
aoqi@0 1612 // Default call_addr is the location of the "basic" call.
aoqi@0 1613 // Determine the address of the call we a reresolving. With
aoqi@0 1614 // Inline Caches we will always find a recognizable call.
aoqi@0 1615 // With Inline Caches disabled we may or may not find a
aoqi@0 1616 // recognizable call. We will always find a call for static
aoqi@0 1617 // calls and for optimized virtual calls. For vanilla virtual
aoqi@0 1618 // calls it depends on the state of the UseInlineCaches switch.
aoqi@0 1619 //
aoqi@0 1620 // With Inline Caches disabled we can get here for a virtual call
aoqi@0 1621 // for two reasons:
aoqi@0 1622 // 1 - calling an abstract method. The vtable for abstract methods
aoqi@0 1623 // will run us thru handle_wrong_method and we will eventually
aoqi@0 1624 // end up in the interpreter to throw the ame.
aoqi@0 1625 // 2 - a racing deoptimization. We could be doing a vanilla vtable
aoqi@0 1626 // call and between the time we fetch the entry address and
aoqi@0 1627 // we jump to it the target gets deoptimized. Similar to 1
aoqi@0 1628 // we will wind up in the interprter (thru a c2i with c2).
aoqi@0 1629 //
aoqi@0 1630 address call_addr = NULL;
aoqi@0 1631 {
aoqi@0 1632 // Get call instruction under lock because another thread may be
aoqi@0 1633 // busy patching it.
aoqi@0 1634 MutexLockerEx ml_patch(Patching_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 1635 // Location of call instruction
aoqi@0 1636 if (NativeCall::is_call_before(pc)) {
aoqi@0 1637 NativeCall *ncall = nativeCall_before(pc);
aoqi@0 1638 call_addr = ncall->instruction_address();
aoqi@0 1639 }
aoqi@0 1640 }
aoqi@0 1641
aoqi@0 1642 // Check for static or virtual call
aoqi@0 1643 bool is_static_call = false;
aoqi@0 1644 nmethod* caller_nm = CodeCache::find_nmethod(pc);
aoqi@0 1645 // Make sure nmethod doesn't get deoptimized and removed until
aoqi@0 1646 // this is done with it.
aoqi@0 1647 // CLEANUP - with lazy deopt shouldn't need this lock
aoqi@0 1648 nmethodLocker nmlock(caller_nm);
aoqi@0 1649
aoqi@0 1650 if (call_addr != NULL) {
aoqi@0 1651 RelocIterator iter(caller_nm, call_addr, call_addr+1);
aoqi@0 1652 int ret = iter.next(); // Get item
aoqi@0 1653 if (ret) {
aoqi@0 1654 assert(iter.addr() == call_addr, "must find call");
aoqi@0 1655 if (iter.type() == relocInfo::static_call_type) {
aoqi@0 1656 is_static_call = true;
aoqi@0 1657 } else {
aoqi@0 1658 assert(iter.type() == relocInfo::virtual_call_type ||
aoqi@0 1659 iter.type() == relocInfo::opt_virtual_call_type
aoqi@0 1660 , "unexpected relocInfo. type");
aoqi@0 1661 }
aoqi@0 1662 } else {
aoqi@0 1663 assert(!UseInlineCaches, "relocation info. must exist for this address");
aoqi@0 1664 }
aoqi@0 1665
aoqi@0 1666 // Cleaning the inline cache will force a new resolve. This is more robust
aoqi@0 1667 // than directly setting it to the new destination, since resolving of calls
aoqi@0 1668 // is always done through the same code path. (experience shows that it
aoqi@0 1669 // leads to very hard to track down bugs, if an inline cache gets updated
aoqi@0 1670 // to a wrong method). It should not be performance critical, since the
aoqi@0 1671 // resolve is only done once.
aoqi@0 1672
aoqi@0 1673 MutexLocker ml(CompiledIC_lock);
thartmann@7193 1674 if (is_static_call) {
thartmann@7193 1675 CompiledStaticCall* ssc= compiledStaticCall_at(call_addr);
thartmann@7193 1676 ssc->set_to_clean();
thartmann@7193 1677 } else {
thartmann@7193 1678 // compiled, dispatched call (which used to call an interpreted method)
thartmann@7193 1679 CompiledIC* inline_cache = CompiledIC_at(caller_nm, call_addr);
thartmann@7193 1680 inline_cache->set_to_clean();
aoqi@0 1681 }
aoqi@0 1682 }
aoqi@0 1683
aoqi@0 1684 }
aoqi@0 1685
aoqi@0 1686 methodHandle callee_method = find_callee_method(thread, CHECK_(methodHandle()));
aoqi@0 1687
aoqi@0 1688
aoqi@0 1689 #ifndef PRODUCT
aoqi@0 1690 Atomic::inc(&_wrong_method_ctr);
aoqi@0 1691
aoqi@0 1692 if (TraceCallFixup) {
aoqi@0 1693 ResourceMark rm(thread);
aoqi@0 1694 tty->print("handle_wrong_method reresolving call to");
aoqi@0 1695 callee_method->print_short_name(tty);
aoqi@0 1696 tty->print_cr(" code: " INTPTR_FORMAT, callee_method->code());
aoqi@0 1697 }
aoqi@0 1698 #endif
aoqi@0 1699
aoqi@0 1700 return callee_method;
aoqi@0 1701 }
aoqi@0 1702
aoqi@0 1703 #ifdef ASSERT
aoqi@0 1704 void SharedRuntime::check_member_name_argument_is_last_argument(methodHandle method,
aoqi@0 1705 const BasicType* sig_bt,
aoqi@0 1706 const VMRegPair* regs) {
aoqi@0 1707 ResourceMark rm;
aoqi@0 1708 const int total_args_passed = method->size_of_parameters();
aoqi@0 1709 const VMRegPair* regs_with_member_name = regs;
aoqi@0 1710 VMRegPair* regs_without_member_name = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed - 1);
aoqi@0 1711
aoqi@0 1712 const int member_arg_pos = total_args_passed - 1;
aoqi@0 1713 assert(member_arg_pos >= 0 && member_arg_pos < total_args_passed, "oob");
aoqi@0 1714 assert(sig_bt[member_arg_pos] == T_OBJECT, "dispatch argument must be an object");
aoqi@0 1715
aoqi@0 1716 const bool is_outgoing = method->is_method_handle_intrinsic();
aoqi@0 1717 int comp_args_on_stack = java_calling_convention(sig_bt, regs_without_member_name, total_args_passed - 1, is_outgoing);
aoqi@0 1718
aoqi@0 1719 for (int i = 0; i < member_arg_pos; i++) {
aoqi@0 1720 VMReg a = regs_with_member_name[i].first();
aoqi@0 1721 VMReg b = regs_without_member_name[i].first();
aoqi@0 1722 assert(a->value() == b->value(), err_msg_res("register allocation mismatch: a=%d, b=%d", a->value(), b->value()));
aoqi@0 1723 }
aoqi@0 1724 assert(regs_with_member_name[member_arg_pos].first()->is_valid(), "bad member arg");
aoqi@0 1725 }
aoqi@0 1726 #endif
aoqi@0 1727
aoqi@0 1728 // ---------------------------------------------------------------------------
aoqi@0 1729 // We are calling the interpreter via a c2i. Normally this would mean that
aoqi@0 1730 // we were called by a compiled method. However we could have lost a race
aoqi@0 1731 // where we went int -> i2c -> c2i and so the caller could in fact be
aoqi@0 1732 // interpreted. If the caller is compiled we attempt to patch the caller
aoqi@0 1733 // so he no longer calls into the interpreter.
aoqi@0 1734 IRT_LEAF(void, SharedRuntime::fixup_callers_callsite(Method* method, address caller_pc))
aoqi@0 1735 Method* moop(method);
aoqi@0 1736
aoqi@0 1737 address entry_point = moop->from_compiled_entry();
aoqi@0 1738
aoqi@0 1739 // It's possible that deoptimization can occur at a call site which hasn't
aoqi@0 1740 // been resolved yet, in which case this function will be called from
aoqi@0 1741 // an nmethod that has been patched for deopt and we can ignore the
aoqi@0 1742 // request for a fixup.
aoqi@0 1743 // Also it is possible that we lost a race in that from_compiled_entry
aoqi@0 1744 // is now back to the i2c in that case we don't need to patch and if
aoqi@0 1745 // we did we'd leap into space because the callsite needs to use
aoqi@0 1746 // "to interpreter" stub in order to load up the Method*. Don't
aoqi@0 1747 // ask me how I know this...
aoqi@0 1748
aoqi@0 1749 CodeBlob* cb = CodeCache::find_blob(caller_pc);
aoqi@0 1750 if (!cb->is_nmethod() || entry_point == moop->get_c2i_entry()) {
aoqi@0 1751 return;
aoqi@0 1752 }
aoqi@0 1753
aoqi@0 1754 // The check above makes sure this is a nmethod.
aoqi@0 1755 nmethod* nm = cb->as_nmethod_or_null();
aoqi@0 1756 assert(nm, "must be");
aoqi@0 1757
aoqi@0 1758 // Get the return PC for the passed caller PC.
aoqi@0 1759 address return_pc = caller_pc + frame::pc_return_offset;
aoqi@0 1760
aoqi@0 1761 // There is a benign race here. We could be attempting to patch to a compiled
aoqi@0 1762 // entry point at the same time the callee is being deoptimized. If that is
aoqi@0 1763 // the case then entry_point may in fact point to a c2i and we'd patch the
aoqi@0 1764 // call site with the same old data. clear_code will set code() to NULL
aoqi@0 1765 // at the end of it. If we happen to see that NULL then we can skip trying
aoqi@0 1766 // to patch. If we hit the window where the callee has a c2i in the
aoqi@0 1767 // from_compiled_entry and the NULL isn't present yet then we lose the race
aoqi@0 1768 // and patch the code with the same old data. Asi es la vida.
aoqi@0 1769
aoqi@0 1770 if (moop->code() == NULL) return;
aoqi@0 1771
aoqi@0 1772 if (nm->is_in_use()) {
aoqi@0 1773
aoqi@0 1774 // Expect to find a native call there (unless it was no-inline cache vtable dispatch)
aoqi@0 1775 MutexLockerEx ml_patch(Patching_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 1776 if (NativeCall::is_call_before(return_pc)) {
aoqi@0 1777 NativeCall *call = nativeCall_before(return_pc);
aoqi@0 1778 //
aoqi@0 1779 // bug 6281185. We might get here after resolving a call site to a vanilla
aoqi@0 1780 // virtual call. Because the resolvee uses the verified entry it may then
aoqi@0 1781 // see compiled code and attempt to patch the site by calling us. This would
aoqi@0 1782 // then incorrectly convert the call site to optimized and its downhill from
aoqi@0 1783 // there. If you're lucky you'll get the assert in the bugid, if not you've
aoqi@0 1784 // just made a call site that could be megamorphic into a monomorphic site
aoqi@0 1785 // for the rest of its life! Just another racing bug in the life of
aoqi@0 1786 // fixup_callers_callsite ...
aoqi@0 1787 //
aoqi@0 1788 RelocIterator iter(nm, call->instruction_address(), call->next_instruction_address());
aoqi@0 1789 iter.next();
aoqi@0 1790 assert(iter.has_current(), "must have a reloc at java call site");
aoqi@0 1791 relocInfo::relocType typ = iter.reloc()->type();
aoqi@0 1792 if ( typ != relocInfo::static_call_type &&
aoqi@0 1793 typ != relocInfo::opt_virtual_call_type &&
aoqi@0 1794 typ != relocInfo::static_stub_type) {
aoqi@0 1795 return;
aoqi@0 1796 }
aoqi@0 1797 address destination = call->destination();
aoqi@0 1798 if (destination != entry_point) {
aoqi@0 1799 CodeBlob* callee = CodeCache::find_blob(destination);
aoqi@0 1800 // callee == cb seems weird. It means calling interpreter thru stub.
aoqi@0 1801 if (callee == cb || callee->is_adapter_blob()) {
aoqi@0 1802 // static call or optimized virtual
aoqi@0 1803 if (TraceCallFixup) {
aoqi@0 1804 tty->print("fixup callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1805 moop->print_short_name(tty);
aoqi@0 1806 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1807 }
aoqi@0 1808 call->set_destination_mt_safe(entry_point);
aoqi@0 1809 } else {
aoqi@0 1810 if (TraceCallFixup) {
aoqi@0 1811 tty->print("failed to fixup callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1812 moop->print_short_name(tty);
aoqi@0 1813 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1814 }
aoqi@0 1815 // assert is too strong could also be resolve destinations.
aoqi@0 1816 // assert(InlineCacheBuffer::contains(destination) || VtableStubs::contains(destination), "must be");
aoqi@0 1817 }
aoqi@0 1818 } else {
aoqi@0 1819 if (TraceCallFixup) {
aoqi@0 1820 tty->print("already patched callsite at " INTPTR_FORMAT " to compiled code for", caller_pc);
aoqi@0 1821 moop->print_short_name(tty);
aoqi@0 1822 tty->print_cr(" to " INTPTR_FORMAT, entry_point);
aoqi@0 1823 }
aoqi@0 1824 }
aoqi@0 1825 }
aoqi@0 1826 }
aoqi@0 1827 IRT_END
aoqi@0 1828
aoqi@0 1829
aoqi@0 1830 // same as JVM_Arraycopy, but called directly from compiled code
aoqi@0 1831 JRT_ENTRY(void, SharedRuntime::slow_arraycopy_C(oopDesc* src, jint src_pos,
aoqi@0 1832 oopDesc* dest, jint dest_pos,
aoqi@0 1833 jint length,
aoqi@0 1834 JavaThread* thread)) {
aoqi@0 1835 #ifndef PRODUCT
aoqi@0 1836 _slow_array_copy_ctr++;
aoqi@0 1837 #endif
aoqi@0 1838 // Check if we have null pointers
aoqi@0 1839 if (src == NULL || dest == NULL) {
aoqi@0 1840 THROW(vmSymbols::java_lang_NullPointerException());
aoqi@0 1841 }
aoqi@0 1842 // Do the copy. The casts to arrayOop are necessary to the copy_array API,
aoqi@0 1843 // even though the copy_array API also performs dynamic checks to ensure
aoqi@0 1844 // that src and dest are truly arrays (and are conformable).
aoqi@0 1845 // The copy_array mechanism is awkward and could be removed, but
aoqi@0 1846 // the compilers don't call this function except as a last resort,
aoqi@0 1847 // so it probably doesn't matter.
aoqi@0 1848 src->klass()->copy_array((arrayOopDesc*)src, src_pos,
aoqi@0 1849 (arrayOopDesc*)dest, dest_pos,
aoqi@0 1850 length, thread);
aoqi@0 1851 }
aoqi@0 1852 JRT_END
aoqi@0 1853
aoqi@0 1854 char* SharedRuntime::generate_class_cast_message(
aoqi@0 1855 JavaThread* thread, const char* objName) {
aoqi@0 1856
aoqi@0 1857 // Get target class name from the checkcast instruction
aoqi@0 1858 vframeStream vfst(thread, true);
aoqi@0 1859 assert(!vfst.at_end(), "Java frame must exist");
aoqi@0 1860 Bytecode_checkcast cc(vfst.method(), vfst.method()->bcp_from(vfst.bci()));
aoqi@0 1861 Klass* targetKlass = vfst.method()->constants()->klass_at(
aoqi@0 1862 cc.index(), thread);
aoqi@0 1863 return generate_class_cast_message(objName, targetKlass->external_name());
aoqi@0 1864 }
aoqi@0 1865
aoqi@0 1866 char* SharedRuntime::generate_class_cast_message(
aoqi@0 1867 const char* objName, const char* targetKlassName, const char* desc) {
aoqi@0 1868 size_t msglen = strlen(objName) + strlen(desc) + strlen(targetKlassName) + 1;
aoqi@0 1869
aoqi@0 1870 char* message = NEW_RESOURCE_ARRAY(char, msglen);
aoqi@0 1871 if (NULL == message) {
aoqi@0 1872 // Shouldn't happen, but don't cause even more problems if it does
aoqi@0 1873 message = const_cast<char*>(objName);
aoqi@0 1874 } else {
aoqi@0 1875 jio_snprintf(message, msglen, "%s%s%s", objName, desc, targetKlassName);
aoqi@0 1876 }
aoqi@0 1877 return message;
aoqi@0 1878 }
aoqi@0 1879
aoqi@0 1880 JRT_LEAF(void, SharedRuntime::reguard_yellow_pages())
aoqi@0 1881 (void) JavaThread::current()->reguard_stack();
aoqi@0 1882 JRT_END
aoqi@0 1883
aoqi@0 1884
aoqi@0 1885 // Handles the uncommon case in locking, i.e., contention or an inflated lock.
aoqi@0 1886 #ifndef PRODUCT
aoqi@0 1887 int SharedRuntime::_monitor_enter_ctr=0;
aoqi@0 1888 #endif
aoqi@0 1889 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::complete_monitor_locking_C(oopDesc* _obj, BasicLock* lock, JavaThread* thread))
aoqi@0 1890 oop obj(_obj);
aoqi@0 1891 #ifndef PRODUCT
aoqi@0 1892 _monitor_enter_ctr++; // monitor enter slow
aoqi@0 1893 #endif
aoqi@0 1894 if (PrintBiasedLockingStatistics) {
aoqi@0 1895 Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
aoqi@0 1896 }
aoqi@0 1897 Handle h_obj(THREAD, obj);
aoqi@0 1898 if (UseBiasedLocking) {
aoqi@0 1899 // Retry fast entry if bias is revoked to avoid unnecessary inflation
aoqi@0 1900 ObjectSynchronizer::fast_enter(h_obj, lock, true, CHECK);
aoqi@0 1901 } else {
aoqi@0 1902 ObjectSynchronizer::slow_enter(h_obj, lock, CHECK);
aoqi@0 1903 }
aoqi@0 1904 assert(!HAS_PENDING_EXCEPTION, "Should have no exception here");
aoqi@0 1905 JRT_END
aoqi@0 1906
aoqi@0 1907 #ifndef PRODUCT
aoqi@0 1908 int SharedRuntime::_monitor_exit_ctr=0;
aoqi@0 1909 #endif
aoqi@0 1910 // Handles the uncommon cases of monitor unlocking in compiled code
aoqi@0 1911 JRT_LEAF(void, SharedRuntime::complete_monitor_unlocking_C(oopDesc* _obj, BasicLock* lock))
aoqi@0 1912 oop obj(_obj);
aoqi@0 1913 #ifndef PRODUCT
aoqi@0 1914 _monitor_exit_ctr++; // monitor exit slow
aoqi@0 1915 #endif
aoqi@0 1916 Thread* THREAD = JavaThread::current();
aoqi@0 1917 // I'm not convinced we need the code contained by MIGHT_HAVE_PENDING anymore
aoqi@0 1918 // testing was unable to ever fire the assert that guarded it so I have removed it.
aoqi@0 1919 assert(!HAS_PENDING_EXCEPTION, "Do we need code below anymore?");
aoqi@0 1920 #undef MIGHT_HAVE_PENDING
aoqi@0 1921 #ifdef MIGHT_HAVE_PENDING
aoqi@0 1922 // Save and restore any pending_exception around the exception mark.
aoqi@0 1923 // While the slow_exit must not throw an exception, we could come into
aoqi@0 1924 // this routine with one set.
aoqi@0 1925 oop pending_excep = NULL;
aoqi@0 1926 const char* pending_file;
aoqi@0 1927 int pending_line;
aoqi@0 1928 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1929 pending_excep = PENDING_EXCEPTION;
aoqi@0 1930 pending_file = THREAD->exception_file();
aoqi@0 1931 pending_line = THREAD->exception_line();
aoqi@0 1932 CLEAR_PENDING_EXCEPTION;
aoqi@0 1933 }
aoqi@0 1934 #endif /* MIGHT_HAVE_PENDING */
aoqi@0 1935
aoqi@0 1936 {
aoqi@0 1937 // Exit must be non-blocking, and therefore no exceptions can be thrown.
aoqi@0 1938 EXCEPTION_MARK;
aoqi@0 1939 ObjectSynchronizer::slow_exit(obj, lock, THREAD);
aoqi@0 1940 }
aoqi@0 1941
aoqi@0 1942 #ifdef MIGHT_HAVE_PENDING
aoqi@0 1943 if (pending_excep != NULL) {
aoqi@0 1944 THREAD->set_pending_exception(pending_excep, pending_file, pending_line);
aoqi@0 1945 }
aoqi@0 1946 #endif /* MIGHT_HAVE_PENDING */
aoqi@0 1947 JRT_END
aoqi@0 1948
aoqi@0 1949 #ifndef PRODUCT
aoqi@0 1950
aoqi@0 1951 void SharedRuntime::print_statistics() {
aoqi@0 1952 ttyLocker ttyl;
aoqi@0 1953 if (xtty != NULL) xtty->head("statistics type='SharedRuntime'");
aoqi@0 1954
aoqi@0 1955 if (_monitor_enter_ctr ) tty->print_cr("%5d monitor enter slow", _monitor_enter_ctr);
aoqi@0 1956 if (_monitor_exit_ctr ) tty->print_cr("%5d monitor exit slow", _monitor_exit_ctr);
aoqi@0 1957 if (_throw_null_ctr) tty->print_cr("%5d implicit null throw", _throw_null_ctr);
aoqi@0 1958
aoqi@0 1959 SharedRuntime::print_ic_miss_histogram();
aoqi@0 1960
aoqi@0 1961 if (CountRemovableExceptions) {
aoqi@0 1962 if (_nof_removable_exceptions > 0) {
aoqi@0 1963 Unimplemented(); // this counter is not yet incremented
aoqi@0 1964 tty->print_cr("Removable exceptions: %d", _nof_removable_exceptions);
aoqi@0 1965 }
aoqi@0 1966 }
aoqi@0 1967
aoqi@0 1968 // Dump the JRT_ENTRY counters
aoqi@0 1969 if( _new_instance_ctr ) tty->print_cr("%5d new instance requires GC", _new_instance_ctr);
aoqi@0 1970 if( _new_array_ctr ) tty->print_cr("%5d new array requires GC", _new_array_ctr);
aoqi@0 1971 if( _multi1_ctr ) tty->print_cr("%5d multianewarray 1 dim", _multi1_ctr);
aoqi@0 1972 if( _multi2_ctr ) tty->print_cr("%5d multianewarray 2 dim", _multi2_ctr);
aoqi@0 1973 if( _multi3_ctr ) tty->print_cr("%5d multianewarray 3 dim", _multi3_ctr);
aoqi@0 1974 if( _multi4_ctr ) tty->print_cr("%5d multianewarray 4 dim", _multi4_ctr);
aoqi@0 1975 if( _multi5_ctr ) tty->print_cr("%5d multianewarray 5 dim", _multi5_ctr);
aoqi@0 1976
aoqi@0 1977 tty->print_cr("%5d inline cache miss in compiled", _ic_miss_ctr );
aoqi@0 1978 tty->print_cr("%5d wrong method", _wrong_method_ctr );
aoqi@0 1979 tty->print_cr("%5d unresolved static call site", _resolve_static_ctr );
aoqi@0 1980 tty->print_cr("%5d unresolved virtual call site", _resolve_virtual_ctr );
aoqi@0 1981 tty->print_cr("%5d unresolved opt virtual call site", _resolve_opt_virtual_ctr );
aoqi@0 1982
aoqi@0 1983 if( _mon_enter_stub_ctr ) tty->print_cr("%5d monitor enter stub", _mon_enter_stub_ctr );
aoqi@0 1984 if( _mon_exit_stub_ctr ) tty->print_cr("%5d monitor exit stub", _mon_exit_stub_ctr );
aoqi@0 1985 if( _mon_enter_ctr ) tty->print_cr("%5d monitor enter slow", _mon_enter_ctr );
aoqi@0 1986 if( _mon_exit_ctr ) tty->print_cr("%5d monitor exit slow", _mon_exit_ctr );
aoqi@0 1987 if( _partial_subtype_ctr) tty->print_cr("%5d slow partial subtype", _partial_subtype_ctr );
aoqi@0 1988 if( _jbyte_array_copy_ctr ) tty->print_cr("%5d byte array copies", _jbyte_array_copy_ctr );
aoqi@0 1989 if( _jshort_array_copy_ctr ) tty->print_cr("%5d short array copies", _jshort_array_copy_ctr );
aoqi@0 1990 if( _jint_array_copy_ctr ) tty->print_cr("%5d int array copies", _jint_array_copy_ctr );
aoqi@0 1991 if( _jlong_array_copy_ctr ) tty->print_cr("%5d long array copies", _jlong_array_copy_ctr );
aoqi@0 1992 if( _oop_array_copy_ctr ) tty->print_cr("%5d oop array copies", _oop_array_copy_ctr );
aoqi@0 1993 if( _checkcast_array_copy_ctr ) tty->print_cr("%5d checkcast array copies", _checkcast_array_copy_ctr );
aoqi@0 1994 if( _unsafe_array_copy_ctr ) tty->print_cr("%5d unsafe array copies", _unsafe_array_copy_ctr );
aoqi@0 1995 if( _generic_array_copy_ctr ) tty->print_cr("%5d generic array copies", _generic_array_copy_ctr );
aoqi@0 1996 if( _slow_array_copy_ctr ) tty->print_cr("%5d slow array copies", _slow_array_copy_ctr );
aoqi@0 1997 if( _find_handler_ctr ) tty->print_cr("%5d find exception handler", _find_handler_ctr );
aoqi@0 1998 if( _rethrow_ctr ) tty->print_cr("%5d rethrow handler", _rethrow_ctr );
aoqi@0 1999
aoqi@0 2000 AdapterHandlerLibrary::print_statistics();
aoqi@0 2001
aoqi@0 2002 if (xtty != NULL) xtty->tail("statistics");
aoqi@0 2003 }
aoqi@0 2004
aoqi@0 2005 inline double percent(int x, int y) {
aoqi@0 2006 return 100.0 * x / MAX2(y, 1);
aoqi@0 2007 }
aoqi@0 2008
aoqi@0 2009 class MethodArityHistogram {
aoqi@0 2010 public:
aoqi@0 2011 enum { MAX_ARITY = 256 };
aoqi@0 2012 private:
aoqi@0 2013 static int _arity_histogram[MAX_ARITY]; // histogram of #args
aoqi@0 2014 static int _size_histogram[MAX_ARITY]; // histogram of arg size in words
aoqi@0 2015 static int _max_arity; // max. arity seen
aoqi@0 2016 static int _max_size; // max. arg size seen
aoqi@0 2017
aoqi@0 2018 static void add_method_to_histogram(nmethod* nm) {
aoqi@0 2019 Method* m = nm->method();
aoqi@0 2020 ArgumentCount args(m->signature());
aoqi@0 2021 int arity = args.size() + (m->is_static() ? 0 : 1);
aoqi@0 2022 int argsize = m->size_of_parameters();
aoqi@0 2023 arity = MIN2(arity, MAX_ARITY-1);
aoqi@0 2024 argsize = MIN2(argsize, MAX_ARITY-1);
aoqi@0 2025 int count = nm->method()->compiled_invocation_count();
aoqi@0 2026 _arity_histogram[arity] += count;
aoqi@0 2027 _size_histogram[argsize] += count;
aoqi@0 2028 _max_arity = MAX2(_max_arity, arity);
aoqi@0 2029 _max_size = MAX2(_max_size, argsize);
aoqi@0 2030 }
aoqi@0 2031
aoqi@0 2032 void print_histogram_helper(int n, int* histo, const char* name) {
aoqi@0 2033 const int N = MIN2(5, n);
aoqi@0 2034 tty->print_cr("\nHistogram of call arity (incl. rcvr, calls to compiled methods only):");
aoqi@0 2035 double sum = 0;
aoqi@0 2036 double weighted_sum = 0;
aoqi@0 2037 int i;
aoqi@0 2038 for (i = 0; i <= n; i++) { sum += histo[i]; weighted_sum += i*histo[i]; }
aoqi@0 2039 double rest = sum;
aoqi@0 2040 double percent = sum / 100;
aoqi@0 2041 for (i = 0; i <= N; i++) {
aoqi@0 2042 rest -= histo[i];
aoqi@0 2043 tty->print_cr("%4d: %7d (%5.1f%%)", i, histo[i], histo[i] / percent);
aoqi@0 2044 }
aoqi@0 2045 tty->print_cr("rest: %7d (%5.1f%%))", (int)rest, rest / percent);
aoqi@0 2046 tty->print_cr("(avg. %s = %3.1f, max = %d)", name, weighted_sum / sum, n);
aoqi@0 2047 }
aoqi@0 2048
aoqi@0 2049 void print_histogram() {
aoqi@0 2050 tty->print_cr("\nHistogram of call arity (incl. rcvr, calls to compiled methods only):");
aoqi@0 2051 print_histogram_helper(_max_arity, _arity_histogram, "arity");
aoqi@0 2052 tty->print_cr("\nSame for parameter size (in words):");
aoqi@0 2053 print_histogram_helper(_max_size, _size_histogram, "size");
aoqi@0 2054 tty->cr();
aoqi@0 2055 }
aoqi@0 2056
aoqi@0 2057 public:
aoqi@0 2058 MethodArityHistogram() {
aoqi@0 2059 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 2060 _max_arity = _max_size = 0;
aoqi@0 2061 for (int i = 0; i < MAX_ARITY; i++) _arity_histogram[i] = _size_histogram [i] = 0;
aoqi@0 2062 CodeCache::nmethods_do(add_method_to_histogram);
aoqi@0 2063 print_histogram();
aoqi@0 2064 }
aoqi@0 2065 };
aoqi@0 2066
aoqi@0 2067 int MethodArityHistogram::_arity_histogram[MethodArityHistogram::MAX_ARITY];
aoqi@0 2068 int MethodArityHistogram::_size_histogram[MethodArityHistogram::MAX_ARITY];
aoqi@0 2069 int MethodArityHistogram::_max_arity;
aoqi@0 2070 int MethodArityHistogram::_max_size;
aoqi@0 2071
aoqi@0 2072 void SharedRuntime::print_call_statistics(int comp_total) {
aoqi@0 2073 tty->print_cr("Calls from compiled code:");
aoqi@0 2074 int total = _nof_normal_calls + _nof_interface_calls + _nof_static_calls;
aoqi@0 2075 int mono_c = _nof_normal_calls - _nof_optimized_calls - _nof_megamorphic_calls;
aoqi@0 2076 int mono_i = _nof_interface_calls - _nof_optimized_interface_calls - _nof_megamorphic_interface_calls;
aoqi@0 2077 tty->print_cr("\t%9d (%4.1f%%) total non-inlined ", total, percent(total, total));
aoqi@0 2078 tty->print_cr("\t%9d (%4.1f%%) virtual calls ", _nof_normal_calls, percent(_nof_normal_calls, total));
aoqi@0 2079 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_calls, percent(_nof_inlined_calls, _nof_normal_calls));
aoqi@0 2080 tty->print_cr("\t %9d (%3.0f%%) optimized ", _nof_optimized_calls, percent(_nof_optimized_calls, _nof_normal_calls));
aoqi@0 2081 tty->print_cr("\t %9d (%3.0f%%) monomorphic ", mono_c, percent(mono_c, _nof_normal_calls));
aoqi@0 2082 tty->print_cr("\t %9d (%3.0f%%) megamorphic ", _nof_megamorphic_calls, percent(_nof_megamorphic_calls, _nof_normal_calls));
aoqi@0 2083 tty->print_cr("\t%9d (%4.1f%%) interface calls ", _nof_interface_calls, percent(_nof_interface_calls, total));
aoqi@0 2084 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_interface_calls, percent(_nof_inlined_interface_calls, _nof_interface_calls));
aoqi@0 2085 tty->print_cr("\t %9d (%3.0f%%) optimized ", _nof_optimized_interface_calls, percent(_nof_optimized_interface_calls, _nof_interface_calls));
aoqi@0 2086 tty->print_cr("\t %9d (%3.0f%%) monomorphic ", mono_i, percent(mono_i, _nof_interface_calls));
aoqi@0 2087 tty->print_cr("\t %9d (%3.0f%%) megamorphic ", _nof_megamorphic_interface_calls, percent(_nof_megamorphic_interface_calls, _nof_interface_calls));
aoqi@0 2088 tty->print_cr("\t%9d (%4.1f%%) static/special calls", _nof_static_calls, percent(_nof_static_calls, total));
aoqi@0 2089 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_static_calls, percent(_nof_inlined_static_calls, _nof_static_calls));
aoqi@0 2090 tty->cr();
aoqi@0 2091 tty->print_cr("Note 1: counter updates are not MT-safe.");
aoqi@0 2092 tty->print_cr("Note 2: %% in major categories are relative to total non-inlined calls;");
aoqi@0 2093 tty->print_cr(" %% in nested categories are relative to their category");
aoqi@0 2094 tty->print_cr(" (and thus add up to more than 100%% with inlining)");
aoqi@0 2095 tty->cr();
aoqi@0 2096
aoqi@0 2097 MethodArityHistogram h;
aoqi@0 2098 }
aoqi@0 2099 #endif
aoqi@0 2100
aoqi@0 2101
aoqi@0 2102 // A simple wrapper class around the calling convention information
aoqi@0 2103 // that allows sharing of adapters for the same calling convention.
aoqi@0 2104 class AdapterFingerPrint : public CHeapObj<mtCode> {
aoqi@0 2105 private:
aoqi@0 2106 enum {
aoqi@0 2107 _basic_type_bits = 4,
aoqi@0 2108 _basic_type_mask = right_n_bits(_basic_type_bits),
aoqi@0 2109 _basic_types_per_int = BitsPerInt / _basic_type_bits,
aoqi@0 2110 _compact_int_count = 3
aoqi@0 2111 };
aoqi@0 2112 // TO DO: Consider integrating this with a more global scheme for compressing signatures.
aoqi@0 2113 // For now, 4 bits per components (plus T_VOID gaps after double/long) is not excessive.
aoqi@0 2114
aoqi@0 2115 union {
aoqi@0 2116 int _compact[_compact_int_count];
aoqi@0 2117 int* _fingerprint;
aoqi@0 2118 } _value;
aoqi@0 2119 int _length; // A negative length indicates the fingerprint is in the compact form,
aoqi@0 2120 // Otherwise _value._fingerprint is the array.
aoqi@0 2121
aoqi@0 2122 // Remap BasicTypes that are handled equivalently by the adapters.
aoqi@0 2123 // These are correct for the current system but someday it might be
aoqi@0 2124 // necessary to make this mapping platform dependent.
aoqi@0 2125 static int adapter_encoding(BasicType in) {
aoqi@0 2126 switch(in) {
aoqi@0 2127 case T_BOOLEAN:
aoqi@0 2128 case T_BYTE:
aoqi@0 2129 case T_SHORT:
aoqi@0 2130 case T_CHAR:
aoqi@0 2131 // There are all promoted to T_INT in the calling convention
aoqi@0 2132 return T_INT;
aoqi@0 2133
aoqi@0 2134 case T_OBJECT:
aoqi@0 2135 case T_ARRAY:
aoqi@0 2136 // In other words, we assume that any register good enough for
aoqi@0 2137 // an int or long is good enough for a managed pointer.
aoqi@0 2138 #ifdef _LP64
aoqi@0 2139 return T_LONG;
aoqi@0 2140 #else
aoqi@0 2141 return T_INT;
aoqi@0 2142 #endif
aoqi@0 2143
aoqi@0 2144 case T_INT:
aoqi@0 2145 case T_LONG:
aoqi@0 2146 case T_FLOAT:
aoqi@0 2147 case T_DOUBLE:
aoqi@0 2148 case T_VOID:
aoqi@0 2149 return in;
aoqi@0 2150
aoqi@0 2151 default:
aoqi@0 2152 ShouldNotReachHere();
aoqi@0 2153 return T_CONFLICT;
aoqi@0 2154 }
aoqi@0 2155 }
aoqi@0 2156
aoqi@0 2157 public:
aoqi@0 2158 AdapterFingerPrint(int total_args_passed, BasicType* sig_bt) {
aoqi@0 2159 // The fingerprint is based on the BasicType signature encoded
aoqi@0 2160 // into an array of ints with eight entries per int.
aoqi@0 2161 int* ptr;
aoqi@0 2162 int len = (total_args_passed + (_basic_types_per_int-1)) / _basic_types_per_int;
aoqi@0 2163 if (len <= _compact_int_count) {
aoqi@0 2164 assert(_compact_int_count == 3, "else change next line");
aoqi@0 2165 _value._compact[0] = _value._compact[1] = _value._compact[2] = 0;
aoqi@0 2166 // Storing the signature encoded as signed chars hits about 98%
aoqi@0 2167 // of the time.
aoqi@0 2168 _length = -len;
aoqi@0 2169 ptr = _value._compact;
aoqi@0 2170 } else {
aoqi@0 2171 _length = len;
aoqi@0 2172 _value._fingerprint = NEW_C_HEAP_ARRAY(int, _length, mtCode);
aoqi@0 2173 ptr = _value._fingerprint;
aoqi@0 2174 }
aoqi@0 2175
aoqi@0 2176 // Now pack the BasicTypes with 8 per int
aoqi@0 2177 int sig_index = 0;
aoqi@0 2178 for (int index = 0; index < len; index++) {
aoqi@0 2179 int value = 0;
aoqi@0 2180 for (int byte = 0; byte < _basic_types_per_int; byte++) {
aoqi@0 2181 int bt = ((sig_index < total_args_passed)
aoqi@0 2182 ? adapter_encoding(sig_bt[sig_index++])
aoqi@0 2183 : 0);
aoqi@0 2184 assert((bt & _basic_type_mask) == bt, "must fit in 4 bits");
aoqi@0 2185 value = (value << _basic_type_bits) | bt;
aoqi@0 2186 }
aoqi@0 2187 ptr[index] = value;
aoqi@0 2188 }
aoqi@0 2189 }
aoqi@0 2190
aoqi@0 2191 ~AdapterFingerPrint() {
aoqi@0 2192 if (_length > 0) {
aoqi@0 2193 FREE_C_HEAP_ARRAY(int, _value._fingerprint, mtCode);
aoqi@0 2194 }
aoqi@0 2195 }
aoqi@0 2196
aoqi@0 2197 int value(int index) {
aoqi@0 2198 if (_length < 0) {
aoqi@0 2199 return _value._compact[index];
aoqi@0 2200 }
aoqi@0 2201 return _value._fingerprint[index];
aoqi@0 2202 }
aoqi@0 2203 int length() {
aoqi@0 2204 if (_length < 0) return -_length;
aoqi@0 2205 return _length;
aoqi@0 2206 }
aoqi@0 2207
aoqi@0 2208 bool is_compact() {
aoqi@0 2209 return _length <= 0;
aoqi@0 2210 }
aoqi@0 2211
aoqi@0 2212 unsigned int compute_hash() {
aoqi@0 2213 int hash = 0;
aoqi@0 2214 for (int i = 0; i < length(); i++) {
aoqi@0 2215 int v = value(i);
aoqi@0 2216 hash = (hash << 8) ^ v ^ (hash >> 5);
aoqi@0 2217 }
aoqi@0 2218 return (unsigned int)hash;
aoqi@0 2219 }
aoqi@0 2220
aoqi@0 2221 const char* as_string() {
aoqi@0 2222 stringStream st;
aoqi@0 2223 st.print("0x");
aoqi@0 2224 for (int i = 0; i < length(); i++) {
aoqi@0 2225 st.print("%08x", value(i));
aoqi@0 2226 }
aoqi@0 2227 return st.as_string();
aoqi@0 2228 }
aoqi@0 2229
aoqi@0 2230 bool equals(AdapterFingerPrint* other) {
aoqi@0 2231 if (other->_length != _length) {
aoqi@0 2232 return false;
aoqi@0 2233 }
aoqi@0 2234 if (_length < 0) {
aoqi@0 2235 assert(_compact_int_count == 3, "else change next line");
aoqi@0 2236 return _value._compact[0] == other->_value._compact[0] &&
aoqi@0 2237 _value._compact[1] == other->_value._compact[1] &&
aoqi@0 2238 _value._compact[2] == other->_value._compact[2];
aoqi@0 2239 } else {
aoqi@0 2240 for (int i = 0; i < _length; i++) {
aoqi@0 2241 if (_value._fingerprint[i] != other->_value._fingerprint[i]) {
aoqi@0 2242 return false;
aoqi@0 2243 }
aoqi@0 2244 }
aoqi@0 2245 }
aoqi@0 2246 return true;
aoqi@0 2247 }
aoqi@0 2248 };
aoqi@0 2249
aoqi@0 2250
aoqi@0 2251 // A hashtable mapping from AdapterFingerPrints to AdapterHandlerEntries
aoqi@0 2252 class AdapterHandlerTable : public BasicHashtable<mtCode> {
aoqi@0 2253 friend class AdapterHandlerTableIterator;
aoqi@0 2254
aoqi@0 2255 private:
aoqi@0 2256
aoqi@0 2257 #ifndef PRODUCT
aoqi@0 2258 static int _lookups; // number of calls to lookup
aoqi@0 2259 static int _buckets; // number of buckets checked
aoqi@0 2260 static int _equals; // number of buckets checked with matching hash
aoqi@0 2261 static int _hits; // number of successful lookups
aoqi@0 2262 static int _compact; // number of equals calls with compact signature
aoqi@0 2263 #endif
aoqi@0 2264
aoqi@0 2265 AdapterHandlerEntry* bucket(int i) {
aoqi@0 2266 return (AdapterHandlerEntry*)BasicHashtable<mtCode>::bucket(i);
aoqi@0 2267 }
aoqi@0 2268
aoqi@0 2269 public:
aoqi@0 2270 AdapterHandlerTable()
aoqi@0 2271 : BasicHashtable<mtCode>(293, sizeof(AdapterHandlerEntry)) { }
aoqi@0 2272
aoqi@0 2273 // Create a new entry suitable for insertion in the table
aoqi@0 2274 AdapterHandlerEntry* new_entry(AdapterFingerPrint* fingerprint, address i2c_entry, address c2i_entry, address c2i_unverified_entry) {
aoqi@0 2275 AdapterHandlerEntry* entry = (AdapterHandlerEntry*)BasicHashtable<mtCode>::new_entry(fingerprint->compute_hash());
aoqi@0 2276 entry->init(fingerprint, i2c_entry, c2i_entry, c2i_unverified_entry);
aoqi@0 2277 return entry;
aoqi@0 2278 }
aoqi@0 2279
aoqi@0 2280 // Insert an entry into the table
aoqi@0 2281 void add(AdapterHandlerEntry* entry) {
aoqi@0 2282 int index = hash_to_index(entry->hash());
aoqi@0 2283 add_entry(index, entry);
aoqi@0 2284 }
aoqi@0 2285
aoqi@0 2286 void free_entry(AdapterHandlerEntry* entry) {
aoqi@0 2287 entry->deallocate();
aoqi@0 2288 BasicHashtable<mtCode>::free_entry(entry);
aoqi@0 2289 }
aoqi@0 2290
aoqi@0 2291 // Find a entry with the same fingerprint if it exists
aoqi@0 2292 AdapterHandlerEntry* lookup(int total_args_passed, BasicType* sig_bt) {
aoqi@0 2293 NOT_PRODUCT(_lookups++);
aoqi@0 2294 AdapterFingerPrint fp(total_args_passed, sig_bt);
aoqi@0 2295 unsigned int hash = fp.compute_hash();
aoqi@0 2296 int index = hash_to_index(hash);
aoqi@0 2297 for (AdapterHandlerEntry* e = bucket(index); e != NULL; e = e->next()) {
aoqi@0 2298 NOT_PRODUCT(_buckets++);
aoqi@0 2299 if (e->hash() == hash) {
aoqi@0 2300 NOT_PRODUCT(_equals++);
aoqi@0 2301 if (fp.equals(e->fingerprint())) {
aoqi@0 2302 #ifndef PRODUCT
aoqi@0 2303 if (fp.is_compact()) _compact++;
aoqi@0 2304 _hits++;
aoqi@0 2305 #endif
aoqi@0 2306 return e;
aoqi@0 2307 }
aoqi@0 2308 }
aoqi@0 2309 }
aoqi@0 2310 return NULL;
aoqi@0 2311 }
aoqi@0 2312
aoqi@0 2313 #ifndef PRODUCT
aoqi@0 2314 void print_statistics() {
aoqi@0 2315 ResourceMark rm;
aoqi@0 2316 int longest = 0;
aoqi@0 2317 int empty = 0;
aoqi@0 2318 int total = 0;
aoqi@0 2319 int nonempty = 0;
aoqi@0 2320 for (int index = 0; index < table_size(); index++) {
aoqi@0 2321 int count = 0;
aoqi@0 2322 for (AdapterHandlerEntry* e = bucket(index); e != NULL; e = e->next()) {
aoqi@0 2323 count++;
aoqi@0 2324 }
aoqi@0 2325 if (count != 0) nonempty++;
aoqi@0 2326 if (count == 0) empty++;
aoqi@0 2327 if (count > longest) longest = count;
aoqi@0 2328 total += count;
aoqi@0 2329 }
aoqi@0 2330 tty->print_cr("AdapterHandlerTable: empty %d longest %d total %d average %f",
aoqi@0 2331 empty, longest, total, total / (double)nonempty);
aoqi@0 2332 tty->print_cr("AdapterHandlerTable: lookups %d buckets %d equals %d hits %d compact %d",
aoqi@0 2333 _lookups, _buckets, _equals, _hits, _compact);
aoqi@0 2334 }
aoqi@0 2335 #endif
aoqi@0 2336 };
aoqi@0 2337
aoqi@0 2338
aoqi@0 2339 #ifndef PRODUCT
aoqi@0 2340
aoqi@0 2341 int AdapterHandlerTable::_lookups;
aoqi@0 2342 int AdapterHandlerTable::_buckets;
aoqi@0 2343 int AdapterHandlerTable::_equals;
aoqi@0 2344 int AdapterHandlerTable::_hits;
aoqi@0 2345 int AdapterHandlerTable::_compact;
aoqi@0 2346
aoqi@0 2347 #endif
aoqi@0 2348
aoqi@0 2349 class AdapterHandlerTableIterator : public StackObj {
aoqi@0 2350 private:
aoqi@0 2351 AdapterHandlerTable* _table;
aoqi@0 2352 int _index;
aoqi@0 2353 AdapterHandlerEntry* _current;
aoqi@0 2354
aoqi@0 2355 void scan() {
aoqi@0 2356 while (_index < _table->table_size()) {
aoqi@0 2357 AdapterHandlerEntry* a = _table->bucket(_index);
aoqi@0 2358 _index++;
aoqi@0 2359 if (a != NULL) {
aoqi@0 2360 _current = a;
aoqi@0 2361 return;
aoqi@0 2362 }
aoqi@0 2363 }
aoqi@0 2364 }
aoqi@0 2365
aoqi@0 2366 public:
aoqi@0 2367 AdapterHandlerTableIterator(AdapterHandlerTable* table): _table(table), _index(0), _current(NULL) {
aoqi@0 2368 scan();
aoqi@0 2369 }
aoqi@0 2370 bool has_next() {
aoqi@0 2371 return _current != NULL;
aoqi@0 2372 }
aoqi@0 2373 AdapterHandlerEntry* next() {
aoqi@0 2374 if (_current != NULL) {
aoqi@0 2375 AdapterHandlerEntry* result = _current;
aoqi@0 2376 _current = _current->next();
aoqi@0 2377 if (_current == NULL) scan();
aoqi@0 2378 return result;
aoqi@0 2379 } else {
aoqi@0 2380 return NULL;
aoqi@0 2381 }
aoqi@0 2382 }
aoqi@0 2383 };
aoqi@0 2384
aoqi@0 2385
aoqi@0 2386 // ---------------------------------------------------------------------------
aoqi@0 2387 // Implementation of AdapterHandlerLibrary
aoqi@0 2388 AdapterHandlerTable* AdapterHandlerLibrary::_adapters = NULL;
aoqi@0 2389 AdapterHandlerEntry* AdapterHandlerLibrary::_abstract_method_handler = NULL;
aoqi@0 2390 const int AdapterHandlerLibrary_size = 16*K;
aoqi@0 2391 BufferBlob* AdapterHandlerLibrary::_buffer = NULL;
aoqi@0 2392
aoqi@0 2393 BufferBlob* AdapterHandlerLibrary::buffer_blob() {
aoqi@0 2394 // Should be called only when AdapterHandlerLibrary_lock is active.
aoqi@0 2395 if (_buffer == NULL) // Initialize lazily
aoqi@0 2396 _buffer = BufferBlob::create("adapters", AdapterHandlerLibrary_size);
aoqi@0 2397 return _buffer;
aoqi@0 2398 }
aoqi@0 2399
aoqi@0 2400 void AdapterHandlerLibrary::initialize() {
aoqi@0 2401 if (_adapters != NULL) return;
aoqi@0 2402 _adapters = new AdapterHandlerTable();
aoqi@0 2403
aoqi@0 2404 // Create a special handler for abstract methods. Abstract methods
aoqi@0 2405 // are never compiled so an i2c entry is somewhat meaningless, but
aoqi@0 2406 // throw AbstractMethodError just in case.
aoqi@0 2407 // Pass wrong_method_abstract for the c2i transitions to return
aoqi@0 2408 // AbstractMethodError for invalid invocations.
aoqi@0 2409 address wrong_method_abstract = SharedRuntime::get_handle_wrong_method_abstract_stub();
aoqi@0 2410 _abstract_method_handler = AdapterHandlerLibrary::new_entry(new AdapterFingerPrint(0, NULL),
aoqi@0 2411 StubRoutines::throw_AbstractMethodError_entry(),
aoqi@0 2412 wrong_method_abstract, wrong_method_abstract);
aoqi@0 2413 }
aoqi@0 2414
aoqi@0 2415 AdapterHandlerEntry* AdapterHandlerLibrary::new_entry(AdapterFingerPrint* fingerprint,
aoqi@0 2416 address i2c_entry,
aoqi@0 2417 address c2i_entry,
aoqi@0 2418 address c2i_unverified_entry) {
aoqi@0 2419 return _adapters->new_entry(fingerprint, i2c_entry, c2i_entry, c2i_unverified_entry);
aoqi@0 2420 }
aoqi@0 2421
aoqi@0 2422 AdapterHandlerEntry* AdapterHandlerLibrary::get_adapter(methodHandle method) {
aoqi@0 2423 // Use customized signature handler. Need to lock around updates to
aoqi@0 2424 // the AdapterHandlerTable (it is not safe for concurrent readers
aoqi@0 2425 // and a single writer: this could be fixed if it becomes a
aoqi@0 2426 // problem).
aoqi@0 2427
aoqi@0 2428 // Get the address of the ic_miss handlers before we grab the
aoqi@0 2429 // AdapterHandlerLibrary_lock. This fixes bug 6236259 which
aoqi@0 2430 // was caused by the initialization of the stubs happening
aoqi@0 2431 // while we held the lock and then notifying jvmti while
aoqi@0 2432 // holding it. This just forces the initialization to be a little
aoqi@0 2433 // earlier.
aoqi@0 2434 address ic_miss = SharedRuntime::get_ic_miss_stub();
aoqi@0 2435 assert(ic_miss != NULL, "must have handler");
aoqi@0 2436
aoqi@0 2437 ResourceMark rm;
aoqi@0 2438
aoqi@0 2439 NOT_PRODUCT(int insts_size);
aoqi@0 2440 AdapterBlob* new_adapter = NULL;
aoqi@0 2441 AdapterHandlerEntry* entry = NULL;
aoqi@0 2442 AdapterFingerPrint* fingerprint = NULL;
aoqi@0 2443 {
aoqi@0 2444 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2445 // make sure data structure is initialized
aoqi@0 2446 initialize();
aoqi@0 2447
aoqi@0 2448 if (method->is_abstract()) {
aoqi@0 2449 return _abstract_method_handler;
aoqi@0 2450 }
aoqi@0 2451
aoqi@0 2452 // Fill in the signature array, for the calling-convention call.
aoqi@0 2453 int total_args_passed = method->size_of_parameters(); // All args on stack
aoqi@0 2454
aoqi@0 2455 BasicType* sig_bt = NEW_RESOURCE_ARRAY(BasicType, total_args_passed);
aoqi@0 2456 VMRegPair* regs = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed);
aoqi@0 2457 int i = 0;
aoqi@0 2458 if (!method->is_static()) // Pass in receiver first
aoqi@0 2459 sig_bt[i++] = T_OBJECT;
aoqi@0 2460 for (SignatureStream ss(method->signature()); !ss.at_return_type(); ss.next()) {
aoqi@0 2461 sig_bt[i++] = ss.type(); // Collect remaining bits of signature
aoqi@0 2462 if (ss.type() == T_LONG || ss.type() == T_DOUBLE)
aoqi@0 2463 sig_bt[i++] = T_VOID; // Longs & doubles take 2 Java slots
aoqi@0 2464 }
aoqi@0 2465 assert(i == total_args_passed, "");
aoqi@0 2466
aoqi@0 2467 // Lookup method signature's fingerprint
aoqi@0 2468 entry = _adapters->lookup(total_args_passed, sig_bt);
aoqi@0 2469
aoqi@0 2470 #ifdef ASSERT
aoqi@0 2471 AdapterHandlerEntry* shared_entry = NULL;
aoqi@0 2472 // Start adapter sharing verification only after the VM is booted.
aoqi@0 2473 if (VerifyAdapterSharing && (entry != NULL)) {
aoqi@0 2474 shared_entry = entry;
aoqi@0 2475 entry = NULL;
aoqi@0 2476 }
aoqi@0 2477 #endif
aoqi@0 2478
aoqi@0 2479 if (entry != NULL) {
aoqi@0 2480 return entry;
aoqi@0 2481 }
aoqi@0 2482
aoqi@0 2483 // Get a description of the compiled java calling convention and the largest used (VMReg) stack slot usage
aoqi@0 2484 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, false);
aoqi@0 2485
aoqi@0 2486 // Make a C heap allocated version of the fingerprint to store in the adapter
aoqi@0 2487 fingerprint = new AdapterFingerPrint(total_args_passed, sig_bt);
aoqi@0 2488
aoqi@0 2489 // StubRoutines::code2() is initialized after this function can be called. As a result,
aoqi@0 2490 // VerifyAdapterCalls and VerifyAdapterSharing can fail if we re-use code that generated
aoqi@0 2491 // prior to StubRoutines::code2() being set. Checks refer to checks generated in an I2C
aoqi@0 2492 // stub that ensure that an I2C stub is called from an interpreter frame.
aoqi@0 2493 bool contains_all_checks = StubRoutines::code2() != NULL;
aoqi@0 2494
aoqi@0 2495 // Create I2C & C2I handlers
aoqi@0 2496 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2497 if (buf != NULL) {
aoqi@0 2498 CodeBuffer buffer(buf);
aoqi@0 2499 short buffer_locs[20];
aoqi@0 2500 buffer.insts()->initialize_shared_locs((relocInfo*)buffer_locs,
aoqi@0 2501 sizeof(buffer_locs)/sizeof(relocInfo));
aoqi@0 2502
aoqi@0 2503 MacroAssembler _masm(&buffer);
aoqi@0 2504 entry = SharedRuntime::generate_i2c2i_adapters(&_masm,
aoqi@0 2505 total_args_passed,
aoqi@0 2506 comp_args_on_stack,
aoqi@0 2507 sig_bt,
aoqi@0 2508 regs,
aoqi@0 2509 fingerprint);
aoqi@0 2510 #ifdef ASSERT
aoqi@0 2511 if (VerifyAdapterSharing) {
aoqi@0 2512 if (shared_entry != NULL) {
aoqi@0 2513 assert(shared_entry->compare_code(buf->code_begin(), buffer.insts_size()), "code must match");
aoqi@0 2514 // Release the one just created and return the original
aoqi@0 2515 _adapters->free_entry(entry);
aoqi@0 2516 return shared_entry;
aoqi@0 2517 } else {
aoqi@0 2518 entry->save_code(buf->code_begin(), buffer.insts_size());
aoqi@0 2519 }
aoqi@0 2520 }
aoqi@0 2521 #endif
aoqi@0 2522
aoqi@0 2523 new_adapter = AdapterBlob::create(&buffer);
aoqi@0 2524 NOT_PRODUCT(insts_size = buffer.insts_size());
aoqi@0 2525 }
aoqi@0 2526 if (new_adapter == NULL) {
aoqi@0 2527 // CodeCache is full, disable compilation
aoqi@0 2528 // Ought to log this but compile log is only per compile thread
aoqi@0 2529 // and we're some non descript Java thread.
aoqi@0 2530 MutexUnlocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2531 CompileBroker::handle_full_code_cache();
aoqi@0 2532 return NULL; // Out of CodeCache space
aoqi@0 2533 }
aoqi@0 2534 entry->relocate(new_adapter->content_begin());
aoqi@0 2535 #ifndef PRODUCT
aoqi@0 2536 // debugging suppport
aoqi@0 2537 if (PrintAdapterHandlers || PrintStubCode) {
aoqi@0 2538 ttyLocker ttyl;
aoqi@0 2539 entry->print_adapter_on(tty);
aoqi@0 2540 tty->print_cr("i2c argument handler #%d for: %s %s (%d bytes generated)",
aoqi@0 2541 _adapters->number_of_entries(), (method->is_static() ? "static" : "receiver"),
aoqi@0 2542 method->signature()->as_C_string(), insts_size);
aoqi@0 2543 tty->print_cr("c2i argument handler starts at %p",entry->get_c2i_entry());
aoqi@0 2544 if (Verbose || PrintStubCode) {
aoqi@0 2545 address first_pc = entry->base_address();
aoqi@0 2546 if (first_pc != NULL) {
aoqi@0 2547 Disassembler::decode(first_pc, first_pc + insts_size);
aoqi@0 2548 tty->cr();
aoqi@0 2549 }
aoqi@0 2550 }
aoqi@0 2551 }
aoqi@0 2552 #endif
aoqi@0 2553 // Add the entry only if the entry contains all required checks (see sharedRuntime_xxx.cpp)
aoqi@0 2554 // The checks are inserted only if -XX:+VerifyAdapterCalls is specified.
aoqi@0 2555 if (contains_all_checks || !VerifyAdapterCalls) {
aoqi@0 2556 _adapters->add(entry);
aoqi@0 2557 }
aoqi@0 2558 }
aoqi@0 2559 // Outside of the lock
aoqi@0 2560 if (new_adapter != NULL) {
aoqi@0 2561 char blob_id[256];
aoqi@0 2562 jio_snprintf(blob_id,
aoqi@0 2563 sizeof(blob_id),
aoqi@0 2564 "%s(%s)@" PTR_FORMAT,
aoqi@0 2565 new_adapter->name(),
aoqi@0 2566 fingerprint->as_string(),
aoqi@0 2567 new_adapter->content_begin());
aoqi@0 2568 Forte::register_stub(blob_id, new_adapter->content_begin(),new_adapter->content_end());
aoqi@0 2569
aoqi@0 2570 if (JvmtiExport::should_post_dynamic_code_generated()) {
aoqi@0 2571 JvmtiExport::post_dynamic_code_generated(blob_id, new_adapter->content_begin(), new_adapter->content_end());
aoqi@0 2572 }
aoqi@0 2573 }
aoqi@0 2574 return entry;
aoqi@0 2575 }
aoqi@0 2576
aoqi@0 2577 address AdapterHandlerEntry::base_address() {
aoqi@0 2578 address base = _i2c_entry;
aoqi@0 2579 if (base == NULL) base = _c2i_entry;
aoqi@0 2580 assert(base <= _c2i_entry || _c2i_entry == NULL, "");
aoqi@0 2581 assert(base <= _c2i_unverified_entry || _c2i_unverified_entry == NULL, "");
aoqi@0 2582 return base;
aoqi@0 2583 }
aoqi@0 2584
aoqi@0 2585 void AdapterHandlerEntry::relocate(address new_base) {
aoqi@0 2586 address old_base = base_address();
aoqi@0 2587 assert(old_base != NULL, "");
aoqi@0 2588 ptrdiff_t delta = new_base - old_base;
aoqi@0 2589 if (_i2c_entry != NULL)
aoqi@0 2590 _i2c_entry += delta;
aoqi@0 2591 if (_c2i_entry != NULL)
aoqi@0 2592 _c2i_entry += delta;
aoqi@0 2593 if (_c2i_unverified_entry != NULL)
aoqi@0 2594 _c2i_unverified_entry += delta;
aoqi@0 2595 assert(base_address() == new_base, "");
aoqi@0 2596 }
aoqi@0 2597
aoqi@0 2598
aoqi@0 2599 void AdapterHandlerEntry::deallocate() {
aoqi@0 2600 delete _fingerprint;
aoqi@0 2601 #ifdef ASSERT
aoqi@0 2602 if (_saved_code) FREE_C_HEAP_ARRAY(unsigned char, _saved_code, mtCode);
aoqi@0 2603 #endif
aoqi@0 2604 }
aoqi@0 2605
aoqi@0 2606
aoqi@0 2607 #ifdef ASSERT
aoqi@0 2608 // Capture the code before relocation so that it can be compared
aoqi@0 2609 // against other versions. If the code is captured after relocation
aoqi@0 2610 // then relative instructions won't be equivalent.
aoqi@0 2611 void AdapterHandlerEntry::save_code(unsigned char* buffer, int length) {
aoqi@0 2612 _saved_code = NEW_C_HEAP_ARRAY(unsigned char, length, mtCode);
aoqi@0 2613 _saved_code_length = length;
aoqi@0 2614 memcpy(_saved_code, buffer, length);
aoqi@0 2615 }
aoqi@0 2616
aoqi@0 2617
aoqi@0 2618 bool AdapterHandlerEntry::compare_code(unsigned char* buffer, int length) {
aoqi@0 2619 if (length != _saved_code_length) {
aoqi@0 2620 return false;
aoqi@0 2621 }
aoqi@0 2622
aoqi@0 2623 return (memcmp(buffer, _saved_code, length) == 0) ? true : false;
aoqi@0 2624 }
aoqi@0 2625 #endif
aoqi@0 2626
aoqi@0 2627
aoqi@0 2628 /**
aoqi@0 2629 * Create a native wrapper for this native method. The wrapper converts the
aoqi@0 2630 * Java-compiled calling convention to the native convention, handles
aoqi@0 2631 * arguments, and transitions to native. On return from the native we transition
aoqi@0 2632 * back to java blocking if a safepoint is in progress.
aoqi@0 2633 */
aoqi@0 2634 void AdapterHandlerLibrary::create_native_wrapper(methodHandle method) {
aoqi@0 2635 ResourceMark rm;
aoqi@0 2636 nmethod* nm = NULL;
aoqi@0 2637
aoqi@0 2638 assert(method->is_native(), "must be native");
aoqi@0 2639 assert(method->is_method_handle_intrinsic() ||
aoqi@0 2640 method->has_native_function(), "must have something valid to call!");
aoqi@0 2641
aoqi@0 2642 {
aoqi@0 2643 // Perform the work while holding the lock, but perform any printing outside the lock
aoqi@0 2644 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2645 // See if somebody beat us to it
aoqi@0 2646 nm = method->code();
aoqi@0 2647 if (nm != NULL) {
aoqi@0 2648 return;
aoqi@0 2649 }
aoqi@0 2650
aoqi@0 2651 const int compile_id = CompileBroker::assign_compile_id(method, CompileBroker::standard_entry_bci);
aoqi@0 2652 assert(compile_id > 0, "Must generate native wrapper");
aoqi@0 2653
aoqi@0 2654
aoqi@0 2655 ResourceMark rm;
aoqi@0 2656 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2657 if (buf != NULL) {
aoqi@0 2658 CodeBuffer buffer(buf);
aoqi@0 2659 double locs_buf[20];
aoqi@0 2660 buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo));
aoqi@0 2661 MacroAssembler _masm(&buffer);
aoqi@0 2662
aoqi@0 2663 // Fill in the signature array, for the calling-convention call.
aoqi@0 2664 const int total_args_passed = method->size_of_parameters();
aoqi@0 2665
aoqi@0 2666 BasicType* sig_bt = NEW_RESOURCE_ARRAY(BasicType, total_args_passed);
aoqi@0 2667 VMRegPair* regs = NEW_RESOURCE_ARRAY(VMRegPair, total_args_passed);
aoqi@0 2668 int i=0;
aoqi@0 2669 if( !method->is_static() ) // Pass in receiver first
aoqi@0 2670 sig_bt[i++] = T_OBJECT;
aoqi@0 2671 SignatureStream ss(method->signature());
aoqi@0 2672 for( ; !ss.at_return_type(); ss.next()) {
aoqi@0 2673 sig_bt[i++] = ss.type(); // Collect remaining bits of signature
aoqi@0 2674 if( ss.type() == T_LONG || ss.type() == T_DOUBLE )
aoqi@0 2675 sig_bt[i++] = T_VOID; // Longs & doubles take 2 Java slots
aoqi@0 2676 }
aoqi@0 2677 assert(i == total_args_passed, "");
aoqi@0 2678 BasicType ret_type = ss.type();
aoqi@0 2679
aoqi@0 2680 // Now get the compiled-Java layout as input (or output) arguments.
aoqi@0 2681 // NOTE: Stubs for compiled entry points of method handle intrinsics
aoqi@0 2682 // are just trampolines so the argument registers must be outgoing ones.
aoqi@0 2683 const bool is_outgoing = method->is_method_handle_intrinsic();
aoqi@0 2684 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, is_outgoing);
aoqi@0 2685
aoqi@0 2686 // Generate the compiled-to-native wrapper code
aoqi@0 2687 nm = SharedRuntime::generate_native_wrapper(&_masm, method, compile_id, sig_bt, regs, ret_type);
aoqi@0 2688
aoqi@0 2689 if (nm != NULL) {
aoqi@0 2690 method->set_code(method, nm);
aoqi@0 2691 }
aoqi@0 2692 }
aoqi@0 2693 } // Unlock AdapterHandlerLibrary_lock
aoqi@0 2694
aoqi@0 2695
aoqi@0 2696 // Install the generated code.
aoqi@0 2697 if (nm != NULL) {
aoqi@0 2698 if (PrintCompilation) {
aoqi@0 2699 ttyLocker ttyl;
aoqi@0 2700 CompileTask::print_compilation(tty, nm, method->is_static() ? "(static)" : "");
aoqi@0 2701 }
aoqi@0 2702 nm->post_compiled_method_load_event();
aoqi@0 2703 } else {
aoqi@0 2704 // CodeCache is full, disable compilation
aoqi@0 2705 CompileBroker::handle_full_code_cache();
aoqi@0 2706 }
aoqi@0 2707 }
aoqi@0 2708
aoqi@0 2709 JRT_ENTRY_NO_ASYNC(void, SharedRuntime::block_for_jni_critical(JavaThread* thread))
aoqi@0 2710 assert(thread == JavaThread::current(), "must be");
aoqi@0 2711 // The code is about to enter a JNI lazy critical native method and
aoqi@0 2712 // _needs_gc is true, so if this thread is already in a critical
aoqi@0 2713 // section then just return, otherwise this thread should block
aoqi@0 2714 // until needs_gc has been cleared.
aoqi@0 2715 if (thread->in_critical()) {
aoqi@0 2716 return;
aoqi@0 2717 }
aoqi@0 2718 // Lock and unlock a critical section to give the system a chance to block
aoqi@0 2719 GC_locker::lock_critical(thread);
aoqi@0 2720 GC_locker::unlock_critical(thread);
aoqi@0 2721 JRT_END
aoqi@0 2722
aoqi@0 2723 #ifdef HAVE_DTRACE_H
aoqi@0 2724 /**
aoqi@0 2725 * Create a dtrace nmethod for this method. The wrapper converts the
aoqi@0 2726 * Java-compiled calling convention to the native convention, makes a dummy call
aoqi@0 2727 * (actually nops for the size of the call instruction, which become a trap if
aoqi@0 2728 * probe is enabled), and finally returns to the caller. Since this all looks like a
aoqi@0 2729 * leaf, no thread transition is needed.
aoqi@0 2730 */
aoqi@0 2731 nmethod *AdapterHandlerLibrary::create_dtrace_nmethod(methodHandle method) {
aoqi@0 2732 ResourceMark rm;
aoqi@0 2733 nmethod* nm = NULL;
aoqi@0 2734
aoqi@0 2735 if (PrintCompilation) {
aoqi@0 2736 ttyLocker ttyl;
aoqi@0 2737 tty->print("--- n ");
aoqi@0 2738 method->print_short_name(tty);
aoqi@0 2739 if (method->is_static()) {
aoqi@0 2740 tty->print(" (static)");
aoqi@0 2741 }
aoqi@0 2742 tty->cr();
aoqi@0 2743 }
aoqi@0 2744
aoqi@0 2745 {
aoqi@0 2746 // perform the work while holding the lock, but perform any printing
aoqi@0 2747 // outside the lock
aoqi@0 2748 MutexLocker mu(AdapterHandlerLibrary_lock);
aoqi@0 2749 // See if somebody beat us to it
aoqi@0 2750 nm = method->code();
aoqi@0 2751 if (nm) {
aoqi@0 2752 return nm;
aoqi@0 2753 }
aoqi@0 2754
aoqi@0 2755 ResourceMark rm;
aoqi@0 2756
aoqi@0 2757 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
aoqi@0 2758 if (buf != NULL) {
aoqi@0 2759 CodeBuffer buffer(buf);
aoqi@0 2760 // Need a few relocation entries
aoqi@0 2761 double locs_buf[20];
aoqi@0 2762 buffer.insts()->initialize_shared_locs(
aoqi@0 2763 (relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo));
aoqi@0 2764 MacroAssembler _masm(&buffer);
aoqi@0 2765
aoqi@0 2766 // Generate the compiled-to-native wrapper code
aoqi@0 2767 nm = SharedRuntime::generate_dtrace_nmethod(&_masm, method);
aoqi@0 2768 }
aoqi@0 2769 }
aoqi@0 2770 return nm;
aoqi@0 2771 }
aoqi@0 2772
aoqi@0 2773 // the dtrace method needs to convert java lang string to utf8 string.
aoqi@0 2774 void SharedRuntime::get_utf(oopDesc* src, address dst) {
aoqi@0 2775 typeArrayOop jlsValue = java_lang_String::value(src);
aoqi@0 2776 int jlsOffset = java_lang_String::offset(src);
aoqi@0 2777 int jlsLen = java_lang_String::length(src);
aoqi@0 2778 jchar* jlsPos = (jlsLen == 0) ? NULL :
aoqi@0 2779 jlsValue->char_at_addr(jlsOffset);
aoqi@0 2780 assert(TypeArrayKlass::cast(jlsValue->klass())->element_type() == T_CHAR, "compressed string");
aoqi@0 2781 (void) UNICODE::as_utf8(jlsPos, jlsLen, (char *)dst, max_dtrace_string_size);
aoqi@0 2782 }
aoqi@0 2783 #endif // ndef HAVE_DTRACE_H
aoqi@0 2784
aoqi@0 2785 int SharedRuntime::convert_ints_to_longints_argcnt(int in_args_count, BasicType* in_sig_bt) {
aoqi@0 2786 int argcnt = in_args_count;
aoqi@0 2787 if (CCallingConventionRequiresIntsAsLongs) {
aoqi@0 2788 for (int in = 0; in < in_args_count; in++) {
aoqi@0 2789 BasicType bt = in_sig_bt[in];
aoqi@0 2790 switch (bt) {
aoqi@0 2791 case T_BOOLEAN:
aoqi@0 2792 case T_CHAR:
aoqi@0 2793 case T_BYTE:
aoqi@0 2794 case T_SHORT:
aoqi@0 2795 case T_INT:
aoqi@0 2796 argcnt++;
aoqi@0 2797 break;
aoqi@0 2798 default:
aoqi@0 2799 break;
aoqi@0 2800 }
aoqi@0 2801 }
aoqi@0 2802 } else {
aoqi@0 2803 assert(0, "This should not be needed on this platform");
aoqi@0 2804 }
aoqi@0 2805
aoqi@0 2806 return argcnt;
aoqi@0 2807 }
aoqi@0 2808
aoqi@0 2809 void SharedRuntime::convert_ints_to_longints(int i2l_argcnt, int& in_args_count,
aoqi@0 2810 BasicType*& in_sig_bt, VMRegPair*& in_regs) {
aoqi@0 2811 if (CCallingConventionRequiresIntsAsLongs) {
aoqi@0 2812 VMRegPair *new_in_regs = NEW_RESOURCE_ARRAY(VMRegPair, i2l_argcnt);
aoqi@0 2813 BasicType *new_in_sig_bt = NEW_RESOURCE_ARRAY(BasicType, i2l_argcnt);
aoqi@0 2814
aoqi@0 2815 int argcnt = 0;
aoqi@0 2816 for (int in = 0; in < in_args_count; in++, argcnt++) {
aoqi@0 2817 BasicType bt = in_sig_bt[in];
aoqi@0 2818 VMRegPair reg = in_regs[in];
aoqi@0 2819 switch (bt) {
aoqi@0 2820 case T_BOOLEAN:
aoqi@0 2821 case T_CHAR:
aoqi@0 2822 case T_BYTE:
aoqi@0 2823 case T_SHORT:
aoqi@0 2824 case T_INT:
aoqi@0 2825 // Convert (bt) to (T_LONG,bt).
aoqi@0 2826 new_in_sig_bt[argcnt ] = T_LONG;
aoqi@0 2827 new_in_sig_bt[argcnt+1] = bt;
aoqi@0 2828 assert(reg.first()->is_valid() && !reg.second()->is_valid(), "");
aoqi@0 2829 new_in_regs[argcnt ].set2(reg.first());
aoqi@0 2830 new_in_regs[argcnt+1].set_bad();
aoqi@0 2831 argcnt++;
aoqi@0 2832 break;
aoqi@0 2833 default:
aoqi@0 2834 // No conversion needed.
aoqi@0 2835 new_in_sig_bt[argcnt] = bt;
aoqi@0 2836 new_in_regs[argcnt] = reg;
aoqi@0 2837 break;
aoqi@0 2838 }
aoqi@0 2839 }
aoqi@0 2840 assert(argcnt == i2l_argcnt, "must match");
aoqi@0 2841
aoqi@0 2842 in_regs = new_in_regs;
aoqi@0 2843 in_sig_bt = new_in_sig_bt;
aoqi@0 2844 in_args_count = i2l_argcnt;
aoqi@0 2845 } else {
aoqi@0 2846 assert(0, "This should not be needed on this platform");
aoqi@0 2847 }
aoqi@0 2848 }
aoqi@0 2849
aoqi@0 2850 // -------------------------------------------------------------------------
aoqi@0 2851 // Java-Java calling convention
aoqi@0 2852 // (what you use when Java calls Java)
aoqi@0 2853
aoqi@0 2854 //------------------------------name_for_receiver----------------------------------
aoqi@0 2855 // For a given signature, return the VMReg for parameter 0.
aoqi@0 2856 VMReg SharedRuntime::name_for_receiver() {
aoqi@0 2857 VMRegPair regs;
aoqi@0 2858 BasicType sig_bt = T_OBJECT;
aoqi@0 2859 (void) java_calling_convention(&sig_bt, &regs, 1, true);
aoqi@0 2860 // Return argument 0 register. In the LP64 build pointers
aoqi@0 2861 // take 2 registers, but the VM wants only the 'main' name.
aoqi@0 2862 return regs.first();
aoqi@0 2863 }
aoqi@0 2864
aoqi@0 2865 VMRegPair *SharedRuntime::find_callee_arguments(Symbol* sig, bool has_receiver, bool has_appendix, int* arg_size) {
aoqi@0 2866 // This method is returning a data structure allocating as a
aoqi@0 2867 // ResourceObject, so do not put any ResourceMarks in here.
aoqi@0 2868 char *s = sig->as_C_string();
aoqi@0 2869 int len = (int)strlen(s);
aoqi@0 2870 s++; len--; // Skip opening paren
aoqi@0 2871
aoqi@0 2872 BasicType *sig_bt = NEW_RESOURCE_ARRAY( BasicType, 256 );
aoqi@0 2873 VMRegPair *regs = NEW_RESOURCE_ARRAY( VMRegPair, 256 );
aoqi@0 2874 int cnt = 0;
aoqi@0 2875 if (has_receiver) {
aoqi@0 2876 sig_bt[cnt++] = T_OBJECT; // Receiver is argument 0; not in signature
aoqi@0 2877 }
aoqi@0 2878
vkempik@8562 2879 while( *s != ')' ) { // Find closing right paren
aoqi@0 2880 switch( *s++ ) { // Switch on signature character
aoqi@0 2881 case 'B': sig_bt[cnt++] = T_BYTE; break;
aoqi@0 2882 case 'C': sig_bt[cnt++] = T_CHAR; break;
aoqi@0 2883 case 'D': sig_bt[cnt++] = T_DOUBLE; sig_bt[cnt++] = T_VOID; break;
aoqi@0 2884 case 'F': sig_bt[cnt++] = T_FLOAT; break;
aoqi@0 2885 case 'I': sig_bt[cnt++] = T_INT; break;
aoqi@0 2886 case 'J': sig_bt[cnt++] = T_LONG; sig_bt[cnt++] = T_VOID; break;
aoqi@0 2887 case 'S': sig_bt[cnt++] = T_SHORT; break;
aoqi@0 2888 case 'Z': sig_bt[cnt++] = T_BOOLEAN; break;
aoqi@0 2889 case 'V': sig_bt[cnt++] = T_VOID; break;
aoqi@0 2890 case 'L': // Oop
aoqi@0 2891 while( *s++ != ';' ) ; // Skip signature
aoqi@0 2892 sig_bt[cnt++] = T_OBJECT;
aoqi@0 2893 break;
aoqi@0 2894 case '[': { // Array
aoqi@0 2895 do { // Skip optional size
aoqi@0 2896 while( *s >= '0' && *s <= '9' ) s++;
aoqi@0 2897 } while( *s++ == '[' ); // Nested arrays?
aoqi@0 2898 // Skip element type
aoqi@0 2899 if( s[-1] == 'L' )
aoqi@0 2900 while( *s++ != ';' ) ; // Skip signature
aoqi@0 2901 sig_bt[cnt++] = T_ARRAY;
aoqi@0 2902 break;
aoqi@0 2903 }
aoqi@0 2904 default : ShouldNotReachHere();
aoqi@0 2905 }
aoqi@0 2906 }
aoqi@0 2907
aoqi@0 2908 if (has_appendix) {
aoqi@0 2909 sig_bt[cnt++] = T_OBJECT;
aoqi@0 2910 }
aoqi@0 2911
aoqi@0 2912 assert( cnt < 256, "grow table size" );
aoqi@0 2913
aoqi@0 2914 int comp_args_on_stack;
aoqi@0 2915 comp_args_on_stack = java_calling_convention(sig_bt, regs, cnt, true);
aoqi@0 2916
aoqi@0 2917 // the calling convention doesn't count out_preserve_stack_slots so
aoqi@0 2918 // we must add that in to get "true" stack offsets.
aoqi@0 2919
aoqi@0 2920 if (comp_args_on_stack) {
aoqi@0 2921 for (int i = 0; i < cnt; i++) {
aoqi@0 2922 VMReg reg1 = regs[i].first();
aoqi@0 2923 if( reg1->is_stack()) {
aoqi@0 2924 // Yuck
aoqi@0 2925 reg1 = reg1->bias(out_preserve_stack_slots());
aoqi@0 2926 }
aoqi@0 2927 VMReg reg2 = regs[i].second();
aoqi@0 2928 if( reg2->is_stack()) {
aoqi@0 2929 // Yuck
aoqi@0 2930 reg2 = reg2->bias(out_preserve_stack_slots());
aoqi@0 2931 }
aoqi@0 2932 regs[i].set_pair(reg2, reg1);
aoqi@0 2933 }
aoqi@0 2934 }
aoqi@0 2935
aoqi@0 2936 // results
aoqi@0 2937 *arg_size = cnt;
aoqi@0 2938 return regs;
aoqi@0 2939 }
aoqi@0 2940
aoqi@0 2941 // OSR Migration Code
aoqi@0 2942 //
aoqi@0 2943 // This code is used convert interpreter frames into compiled frames. It is
aoqi@0 2944 // called from very start of a compiled OSR nmethod. A temp array is
aoqi@0 2945 // allocated to hold the interesting bits of the interpreter frame. All
aoqi@0 2946 // active locks are inflated to allow them to move. The displaced headers and
aoqi@0 2947 // active interpeter locals are copied into the temp buffer. Then we return
aoqi@0 2948 // back to the compiled code. The compiled code then pops the current
aoqi@0 2949 // interpreter frame off the stack and pushes a new compiled frame. Then it
aoqi@0 2950 // copies the interpreter locals and displaced headers where it wants.
aoqi@0 2951 // Finally it calls back to free the temp buffer.
aoqi@0 2952 //
aoqi@0 2953 // All of this is done NOT at any Safepoint, nor is any safepoint or GC allowed.
aoqi@0 2954
aoqi@0 2955 JRT_LEAF(intptr_t*, SharedRuntime::OSR_migration_begin( JavaThread *thread) )
aoqi@0 2956
aoqi@0 2957 //
aoqi@0 2958 // This code is dependent on the memory layout of the interpreter local
aoqi@0 2959 // array and the monitors. On all of our platforms the layout is identical
aoqi@0 2960 // so this code is shared. If some platform lays the their arrays out
aoqi@0 2961 // differently then this code could move to platform specific code or
aoqi@0 2962 // the code here could be modified to copy items one at a time using
aoqi@0 2963 // frame accessor methods and be platform independent.
aoqi@0 2964
aoqi@0 2965 frame fr = thread->last_frame();
aoqi@0 2966 assert( fr.is_interpreted_frame(), "" );
aoqi@0 2967 assert( fr.interpreter_frame_expression_stack_size()==0, "only handle empty stacks" );
aoqi@0 2968
aoqi@0 2969 // Figure out how many monitors are active.
aoqi@0 2970 int active_monitor_count = 0;
aoqi@0 2971 for( BasicObjectLock *kptr = fr.interpreter_frame_monitor_end();
aoqi@0 2972 kptr < fr.interpreter_frame_monitor_begin();
aoqi@0 2973 kptr = fr.next_monitor_in_interpreter_frame(kptr) ) {
aoqi@0 2974 if( kptr->obj() != NULL ) active_monitor_count++;
aoqi@0 2975 }
aoqi@0 2976
aoqi@0 2977 // QQQ we could place number of active monitors in the array so that compiled code
aoqi@0 2978 // could double check it.
aoqi@0 2979
aoqi@0 2980 Method* moop = fr.interpreter_frame_method();
aoqi@0 2981 int max_locals = moop->max_locals();
aoqi@0 2982 // Allocate temp buffer, 1 word per local & 2 per active monitor
aoqi@0 2983 int buf_size_words = max_locals + active_monitor_count*2;
aoqi@0 2984 intptr_t *buf = NEW_C_HEAP_ARRAY(intptr_t,buf_size_words, mtCode);
aoqi@0 2985
aoqi@0 2986 // Copy the locals. Order is preserved so that loading of longs works.
aoqi@0 2987 // Since there's no GC I can copy the oops blindly.
aoqi@0 2988 assert( sizeof(HeapWord)==sizeof(intptr_t), "fix this code");
aoqi@0 2989 Copy::disjoint_words((HeapWord*)fr.interpreter_frame_local_at(max_locals-1),
aoqi@0 2990 (HeapWord*)&buf[0],
aoqi@0 2991 max_locals);
aoqi@0 2992
aoqi@0 2993 // Inflate locks. Copy the displaced headers. Be careful, there can be holes.
aoqi@0 2994 int i = max_locals;
aoqi@0 2995 for( BasicObjectLock *kptr2 = fr.interpreter_frame_monitor_end();
aoqi@0 2996 kptr2 < fr.interpreter_frame_monitor_begin();
aoqi@0 2997 kptr2 = fr.next_monitor_in_interpreter_frame(kptr2) ) {
aoqi@0 2998 if( kptr2->obj() != NULL) { // Avoid 'holes' in the monitor array
aoqi@0 2999 BasicLock *lock = kptr2->lock();
aoqi@0 3000 // Inflate so the displaced header becomes position-independent
aoqi@0 3001 if (lock->displaced_header()->is_unlocked())
aoqi@0 3002 ObjectSynchronizer::inflate_helper(kptr2->obj());
aoqi@0 3003 // Now the displaced header is free to move
aoqi@0 3004 buf[i++] = (intptr_t)lock->displaced_header();
aoqi@0 3005 buf[i++] = cast_from_oop<intptr_t>(kptr2->obj());
aoqi@0 3006 }
aoqi@0 3007 }
aoqi@0 3008 assert( i - max_locals == active_monitor_count*2, "found the expected number of monitors" );
aoqi@0 3009
aoqi@0 3010 return buf;
aoqi@0 3011 JRT_END
aoqi@0 3012
aoqi@0 3013 JRT_LEAF(void, SharedRuntime::OSR_migration_end( intptr_t* buf) )
aoqi@0 3014 FREE_C_HEAP_ARRAY(intptr_t,buf, mtCode);
aoqi@0 3015 JRT_END
aoqi@0 3016
aoqi@0 3017 bool AdapterHandlerLibrary::contains(CodeBlob* b) {
aoqi@0 3018 AdapterHandlerTableIterator iter(_adapters);
aoqi@0 3019 while (iter.has_next()) {
aoqi@0 3020 AdapterHandlerEntry* a = iter.next();
aoqi@0 3021 if ( b == CodeCache::find_blob(a->get_i2c_entry()) ) return true;
aoqi@0 3022 }
aoqi@0 3023 return false;
aoqi@0 3024 }
aoqi@0 3025
aoqi@0 3026 void AdapterHandlerLibrary::print_handler_on(outputStream* st, CodeBlob* b) {
aoqi@0 3027 AdapterHandlerTableIterator iter(_adapters);
aoqi@0 3028 while (iter.has_next()) {
aoqi@0 3029 AdapterHandlerEntry* a = iter.next();
aoqi@0 3030 if (b == CodeCache::find_blob(a->get_i2c_entry())) {
aoqi@0 3031 st->print("Adapter for signature: ");
aoqi@0 3032 a->print_adapter_on(tty);
aoqi@0 3033 return;
aoqi@0 3034 }
aoqi@0 3035 }
aoqi@0 3036 assert(false, "Should have found handler");
aoqi@0 3037 }
aoqi@0 3038
aoqi@0 3039 void AdapterHandlerEntry::print_adapter_on(outputStream* st) const {
aoqi@0 3040 st->print_cr("AHE@" INTPTR_FORMAT ": %s i2c: " INTPTR_FORMAT " c2i: " INTPTR_FORMAT " c2iUV: " INTPTR_FORMAT,
aoqi@0 3041 (intptr_t) this, fingerprint()->as_string(),
aoqi@0 3042 get_i2c_entry(), get_c2i_entry(), get_c2i_unverified_entry());
aoqi@0 3043
aoqi@0 3044 }
aoqi@0 3045
aoqi@0 3046 #ifndef PRODUCT
aoqi@0 3047
aoqi@0 3048 void AdapterHandlerLibrary::print_statistics() {
aoqi@0 3049 _adapters->print_statistics();
aoqi@0 3050 }
aoqi@0 3051
aoqi@0 3052 #endif /* PRODUCT */

mercurial