1 /* 2 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. 8 * 9 * This code is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * version 2 for more details (a copy is included in the LICENSE file that 13 * accompanied this code). 14 * 15 * You should have received a copy of the GNU General Public License version 16 * 2 along with this work; if not, write to the Free Software Foundation, 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 * 23 */ 24 25 #include "precompiled.hpp" 26 #include "ci/ciConstant.hpp" 27 #include "ci/ciEnv.hpp" 28 #include "ci/ciField.hpp" 29 #include "ci/ciInstance.hpp" 30 #include "ci/ciInstanceKlass.hpp" 31 #include "ci/ciMethod.hpp" 32 #include "ci/ciNullObject.hpp" 33 #include "ci/ciReplay.hpp" 34 #include "ci/ciUtilities.hpp" 35 #include "classfile/systemDictionary.hpp" 36 #include "classfile/vmSymbols.hpp" 37 #include "code/codeCache.hpp" 38 #include "code/scopeDesc.hpp" 39 #include "compiler/compileBroker.hpp" 40 #include "compiler/compileLog.hpp" 41 #include "compiler/disassembler.hpp" 42 #include "gc/shared/collectedHeap.inline.hpp" 43 #include "interpreter/linkResolver.hpp" 44 #include "memory/allocation.inline.hpp" 45 #include "memory/oopFactory.hpp" 46 #include "memory/resourceArea.hpp" 47 #include "memory/universe.inline.hpp" 48 #include "oops/methodData.hpp" 49 #include "oops/objArrayKlass.hpp" 50 #include "oops/objArrayOop.inline.hpp" 51 #include "oops/oop.inline.hpp" 52 #include "prims/jvmtiExport.hpp" 53 #include "runtime/init.hpp" 54 #include "runtime/reflection.hpp" 55 #include "runtime/sharedRuntime.hpp" 56 #include "runtime/thread.inline.hpp" 57 #include "trace/tracing.hpp" 58 #include "utilities/dtrace.hpp" 59 #include "utilities/macros.hpp" 60 #ifdef COMPILER1 61 #include "c1/c1_Runtime1.hpp" 62 #endif 63 #ifdef COMPILER2 64 #include "opto/runtime.hpp" 65 #endif 66 67 // ciEnv 68 // 69 // This class is the top level broker for requests from the compiler 70 // to the VM. 71 72 ciObject* ciEnv::_null_object_instance; 73 74 #define WK_KLASS_DEFN(name, ignore_s, ignore_o) ciInstanceKlass* ciEnv::_##name = NULL; 75 WK_KLASSES_DO(WK_KLASS_DEFN) 76 #undef WK_KLASS_DEFN 77 78 ciSymbol* ciEnv::_unloaded_cisymbol = NULL; 79 ciInstanceKlass* ciEnv::_unloaded_ciinstance_klass = NULL; 80 ciObjArrayKlass* ciEnv::_unloaded_ciobjarrayklass = NULL; 81 82 jobject ciEnv::_ArrayIndexOutOfBoundsException_handle = NULL; 83 jobject ciEnv::_ArrayStoreException_handle = NULL; 84 jobject ciEnv::_ClassCastException_handle = NULL; 85 86 #ifndef PRODUCT 87 static bool firstEnv = true; 88 #endif /* PRODUCT */ 89 90 // ------------------------------------------------------------------ 91 // ciEnv::ciEnv 92 ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) 93 : _ciEnv_arena(mtCompiler) { 94 VM_ENTRY_MARK; 95 96 // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc. 97 thread->set_env(this); 98 assert(ciEnv::current() == this, "sanity"); 99 100 _oop_recorder = NULL; 101 _debug_info = NULL; 102 _dependencies = NULL; 103 _failure_reason = NULL; 104 _inc_decompile_count_on_failure = true; 105 _compilable = MethodCompilable; 106 _break_at_compile = false; 107 _compiler_data = NULL; 108 #ifndef PRODUCT 109 assert(!firstEnv, "not initialized properly"); 110 #endif /* !PRODUCT */ 111 112 _system_dictionary_modification_counter = system_dictionary_modification_counter; 113 _num_inlined_bytecodes = 0; 114 assert(task == NULL || thread->task() == task, "sanity"); 115 _task = task; 116 _log = NULL; 117 118 // Temporary buffer for creating symbols and such. 119 _name_buffer = NULL; 120 _name_buffer_len = 0; 121 122 _arena = &_ciEnv_arena; 123 _factory = new (_arena) ciObjectFactory(_arena, 128); 124 125 // Preload commonly referenced system ciObjects. 126 127 // During VM initialization, these instances have not yet been created. 128 // Assertions ensure that these instances are not accessed before 129 // their initialization. 130 131 assert(Universe::is_fully_initialized(), "should be complete"); 132 133 oop o = Universe::null_ptr_exception_instance(); 134 assert(o != NULL, "should have been initialized"); 135 _NullPointerException_instance = get_object(o)->as_instance(); 136 o = Universe::arithmetic_exception_instance(); 137 assert(o != NULL, "should have been initialized"); 138 _ArithmeticException_instance = get_object(o)->as_instance(); 139 140 _ArrayIndexOutOfBoundsException_instance = NULL; 141 _ArrayStoreException_instance = NULL; 142 _ClassCastException_instance = NULL; 143 _the_null_string = NULL; 144 _the_min_jint_string = NULL; 145 146 _jvmti_can_hotswap_or_post_breakpoint = false; 147 _jvmti_can_access_local_variables = false; 148 _jvmti_can_post_on_exceptions = false; 149 _jvmti_can_pop_frame = false; 150 } 151 152 ciEnv::ciEnv(Arena* arena) : _ciEnv_arena(mtCompiler) { 153 ASSERT_IN_VM; 154 155 // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc. 156 CompilerThread* current_thread = CompilerThread::current(); 157 assert(current_thread->env() == NULL, "must be"); 158 current_thread->set_env(this); 159 assert(ciEnv::current() == this, "sanity"); 160 161 _oop_recorder = NULL; 162 _debug_info = NULL; 163 _dependencies = NULL; 164 _failure_reason = NULL; 165 _inc_decompile_count_on_failure = true; 166 _compilable = MethodCompilable_never; 167 _break_at_compile = false; 168 _compiler_data = NULL; 169 #ifndef PRODUCT 170 assert(firstEnv, "must be first"); 171 firstEnv = false; 172 #endif /* !PRODUCT */ 173 174 _system_dictionary_modification_counter = 0; 175 _num_inlined_bytecodes = 0; 176 _task = NULL; 177 _log = NULL; 178 179 // Temporary buffer for creating symbols and such. 180 _name_buffer = NULL; 181 _name_buffer_len = 0; 182 183 _arena = arena; 184 _factory = new (_arena) ciObjectFactory(_arena, 128); 185 186 // Preload commonly referenced system ciObjects. 187 188 // During VM initialization, these instances have not yet been created. 189 // Assertions ensure that these instances are not accessed before 190 // their initialization. 191 192 assert(Universe::is_fully_initialized(), "must be"); 193 194 _NullPointerException_instance = NULL; 195 _ArithmeticException_instance = NULL; 196 _ArrayIndexOutOfBoundsException_instance = NULL; 197 _ArrayStoreException_instance = NULL; 198 _ClassCastException_instance = NULL; 199 _the_null_string = NULL; 200 _the_min_jint_string = NULL; 201 202 _jvmti_can_hotswap_or_post_breakpoint = false; 203 _jvmti_can_access_local_variables = false; 204 _jvmti_can_post_on_exceptions = false; 205 _jvmti_can_pop_frame = false; 206 } 207 208 ciEnv::~ciEnv() { 209 GUARDED_VM_ENTRY( 210 CompilerThread* current_thread = CompilerThread::current(); 211 _factory->remove_symbols(); 212 // Need safepoint to clear the env on the thread. RedefineClasses might 213 // be reading it. 214 current_thread->set_env(NULL); 215 ) 216 } 217 218 // ------------------------------------------------------------------ 219 // Cache Jvmti state 220 void ciEnv::cache_jvmti_state() { 221 VM_ENTRY_MARK; 222 // Get Jvmti capabilities under lock to get consistant values. 223 MutexLocker mu(JvmtiThreadState_lock); 224 _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint(); 225 _jvmti_can_access_local_variables = JvmtiExport::can_access_local_variables(); 226 _jvmti_can_post_on_exceptions = JvmtiExport::can_post_on_exceptions(); 227 _jvmti_can_pop_frame = JvmtiExport::can_pop_frame(); 228 } 229 230 bool ciEnv::should_retain_local_variables() const { 231 return _jvmti_can_access_local_variables || _jvmti_can_pop_frame; 232 } 233 234 bool ciEnv::jvmti_state_changed() const { 235 if (!_jvmti_can_access_local_variables && 236 JvmtiExport::can_access_local_variables()) { 237 return true; 238 } 239 if (!_jvmti_can_hotswap_or_post_breakpoint && 240 JvmtiExport::can_hotswap_or_post_breakpoint()) { 241 return true; 242 } 243 if (!_jvmti_can_post_on_exceptions && 244 JvmtiExport::can_post_on_exceptions()) { 245 return true; 246 } 247 if (!_jvmti_can_pop_frame && 248 JvmtiExport::can_pop_frame()) { 249 return true; 250 } 251 return false; 252 } 253 254 // ------------------------------------------------------------------ 255 // Cache DTrace flags 256 void ciEnv::cache_dtrace_flags() { 257 // Need lock? 258 _dtrace_extended_probes = ExtendedDTraceProbes; 259 if (_dtrace_extended_probes) { 260 _dtrace_monitor_probes = true; 261 _dtrace_method_probes = true; 262 _dtrace_alloc_probes = true; 263 } else { 264 _dtrace_monitor_probes = DTraceMonitorProbes; 265 _dtrace_method_probes = DTraceMethodProbes; 266 _dtrace_alloc_probes = DTraceAllocProbes; 267 } 268 } 269 270 // ------------------------------------------------------------------ 271 // helper for lazy exception creation 272 ciInstance* ciEnv::get_or_create_exception(jobject& handle, Symbol* name) { 273 VM_ENTRY_MARK; 274 if (handle == NULL) { 275 // Cf. universe.cpp, creation of Universe::_null_ptr_exception_instance. 276 Klass* k = SystemDictionary::find(name, Handle(), Handle(), THREAD); 277 jobject objh = NULL; 278 if (!HAS_PENDING_EXCEPTION && k != NULL) { 279 oop obj = InstanceKlass::cast(k)->allocate_instance(THREAD); 280 if (!HAS_PENDING_EXCEPTION) 281 objh = JNIHandles::make_global(Handle(THREAD, obj)); 282 } 283 if (HAS_PENDING_EXCEPTION) { 284 CLEAR_PENDING_EXCEPTION; 285 } else { 286 handle = objh; 287 } 288 } 289 oop obj = JNIHandles::resolve(handle); 290 return obj == NULL? NULL: get_object(obj)->as_instance(); 291 } 292 293 ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance() { 294 if (_ArrayIndexOutOfBoundsException_instance == NULL) { 295 _ArrayIndexOutOfBoundsException_instance 296 = get_or_create_exception(_ArrayIndexOutOfBoundsException_handle, 297 vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); 298 } 299 return _ArrayIndexOutOfBoundsException_instance; 300 } 301 ciInstance* ciEnv::ArrayStoreException_instance() { 302 if (_ArrayStoreException_instance == NULL) { 303 _ArrayStoreException_instance 304 = get_or_create_exception(_ArrayStoreException_handle, 305 vmSymbols::java_lang_ArrayStoreException()); 306 } 307 return _ArrayStoreException_instance; 308 } 309 ciInstance* ciEnv::ClassCastException_instance() { 310 if (_ClassCastException_instance == NULL) { 311 _ClassCastException_instance 312 = get_or_create_exception(_ClassCastException_handle, 313 vmSymbols::java_lang_ClassCastException()); 314 } 315 return _ClassCastException_instance; 316 } 317 318 ciInstance* ciEnv::the_null_string() { 319 if (_the_null_string == NULL) { 320 VM_ENTRY_MARK; 321 _the_null_string = get_object(Universe::the_null_string())->as_instance(); 322 } 323 return _the_null_string; 324 } 325 326 ciInstance* ciEnv::the_min_jint_string() { 327 if (_the_min_jint_string == NULL) { 328 VM_ENTRY_MARK; 329 _the_min_jint_string = get_object(Universe::the_min_jint_string())->as_instance(); 330 } 331 return _the_min_jint_string; 332 } 333 334 // ------------------------------------------------------------------ 335 // ciEnv::get_method_from_handle 336 ciMethod* ciEnv::get_method_from_handle(Method* method) { 337 VM_ENTRY_MARK; 338 return get_metadata(method)->as_method(); 339 } 340 341 // ------------------------------------------------------------------ 342 // ciEnv::array_element_offset_in_bytes 343 int ciEnv::array_element_offset_in_bytes(ciArray* a_h, ciObject* o_h) { 344 VM_ENTRY_MARK; 345 objArrayOop a = (objArrayOop)a_h->get_oop(); 346 assert(a->is_objArray(), ""); 347 int length = a->length(); 348 oop o = o_h->get_oop(); 349 for (int i = 0; i < length; i++) { 350 if (a->obj_at(i) == o) return i; 351 } 352 return -1; 353 } 354 355 356 // ------------------------------------------------------------------ 357 // ciEnv::check_klass_accessiblity 358 // 359 // Note: the logic of this method should mirror the logic of 360 // ConstantPool::verify_constant_pool_resolve. 361 bool ciEnv::check_klass_accessibility(ciKlass* accessing_klass, 362 Klass* resolved_klass) { 363 if (accessing_klass == NULL || !accessing_klass->is_loaded()) { 364 return true; 365 } 366 if (accessing_klass->is_obj_array_klass()) { 367 accessing_klass = accessing_klass->as_obj_array_klass()->base_element_klass(); 368 } 369 if (!accessing_klass->is_instance_klass()) { 370 return true; 371 } 372 373 if (resolved_klass->is_objArray_klass()) { 374 // Find the element klass, if this is an array. 375 resolved_klass = ObjArrayKlass::cast(resolved_klass)->bottom_klass(); 376 } 377 if (resolved_klass->is_instance_klass()) { 378 return (Reflection::verify_class_access(accessing_klass->get_Klass(), 379 InstanceKlass::cast(resolved_klass), 380 true) == Reflection::ACCESS_OK); 381 } 382 return true; 383 } 384 385 // ------------------------------------------------------------------ 386 // ciEnv::get_klass_by_name_impl 387 ciKlass* ciEnv::get_klass_by_name_impl(ciKlass* accessing_klass, 388 const constantPoolHandle& cpool, 389 ciSymbol* name, 390 bool require_local) { 391 ASSERT_IN_VM; 392 EXCEPTION_CONTEXT; 393 394 // Now we need to check the SystemDictionary 395 Symbol* sym = name->get_symbol(); 396 if (sym->byte_at(0) == 'L' && 397 sym->byte_at(sym->utf8_length()-1) == ';') { 398 // This is a name from a signature. Strip off the trimmings. 399 // Call recursive to keep scope of strippedsym. 400 TempNewSymbol strippedsym = SymbolTable::new_symbol(sym->as_utf8()+1, 401 sym->utf8_length()-2, 402 KILL_COMPILE_ON_FATAL_(_unloaded_ciinstance_klass)); 403 ciSymbol* strippedname = get_symbol(strippedsym); 404 return get_klass_by_name_impl(accessing_klass, cpool, strippedname, require_local); 405 } 406 407 // Check for prior unloaded klass. The SystemDictionary's answers 408 // can vary over time but the compiler needs consistency. 409 ciKlass* unloaded_klass = check_get_unloaded_klass(accessing_klass, name); 410 if (unloaded_klass != NULL) { 411 if (require_local) return NULL; 412 return unloaded_klass; 413 } 414 415 Handle loader(THREAD, (oop)NULL); 416 Handle domain(THREAD, (oop)NULL); 417 if (accessing_klass != NULL) { 418 loader = Handle(THREAD, accessing_klass->loader()); 419 domain = Handle(THREAD, accessing_klass->protection_domain()); 420 } 421 422 // setup up the proper type to return on OOM 423 ciKlass* fail_type; 424 if (sym->byte_at(0) == '[') { 425 fail_type = _unloaded_ciobjarrayklass; 426 } else { 427 fail_type = _unloaded_ciinstance_klass; 428 } 429 KlassHandle found_klass; 430 { 431 ttyUnlocker ttyul; // release tty lock to avoid ordering problems 432 MutexLocker ml(Compile_lock); 433 Klass* kls; 434 if (!require_local) { 435 kls = SystemDictionary::find_constrained_instance_or_array_klass(sym, loader, 436 KILL_COMPILE_ON_FATAL_(fail_type)); 437 } else { 438 kls = SystemDictionary::find_instance_or_array_klass(sym, loader, domain, 439 KILL_COMPILE_ON_FATAL_(fail_type)); 440 } 441 found_klass = KlassHandle(THREAD, kls); 442 } 443 444 // If we fail to find an array klass, look again for its element type. 445 // The element type may be available either locally or via constraints. 446 // In either case, if we can find the element type in the system dictionary, 447 // we must build an array type around it. The CI requires array klasses 448 // to be loaded if their element klasses are loaded, except when memory 449 // is exhausted. 450 if (sym->byte_at(0) == '[' && 451 (sym->byte_at(1) == '[' || sym->byte_at(1) == 'L')) { 452 // We have an unloaded array. 453 // Build it on the fly if the element class exists. 454 TempNewSymbol elem_sym = SymbolTable::new_symbol(sym->as_utf8()+1, 455 sym->utf8_length()-1, 456 KILL_COMPILE_ON_FATAL_(fail_type)); 457 458 // Get element ciKlass recursively. 459 ciKlass* elem_klass = 460 get_klass_by_name_impl(accessing_klass, 461 cpool, 462 get_symbol(elem_sym), 463 require_local); 464 if (elem_klass != NULL && elem_klass->is_loaded()) { 465 // Now make an array for it 466 return ciObjArrayKlass::make_impl(elem_klass); 467 } 468 } 469 470 if (found_klass() == NULL && !cpool.is_null() && cpool->has_preresolution()) { 471 // Look inside the constant pool for pre-resolved class entries. 472 for (int i = cpool->length() - 1; i >= 1; i--) { 473 if (cpool->tag_at(i).is_klass()) { 474 Klass* kls = cpool->resolved_klass_at(i); 475 if (kls->name() == sym) { 476 found_klass = KlassHandle(THREAD, kls); 477 break; 478 } 479 } 480 } 481 } 482 483 if (found_klass() != NULL) { 484 // Found it. Build a CI handle. 485 return get_klass(found_klass()); 486 } 487 488 if (require_local) return NULL; 489 490 // Not yet loaded into the VM, or not governed by loader constraints. 491 // Make a CI representative for it. 492 return get_unloaded_klass(accessing_klass, name); 493 } 494 495 // ------------------------------------------------------------------ 496 // ciEnv::get_klass_by_name 497 ciKlass* ciEnv::get_klass_by_name(ciKlass* accessing_klass, 498 ciSymbol* klass_name, 499 bool require_local) { 500 GUARDED_VM_ENTRY(return get_klass_by_name_impl(accessing_klass, 501 constantPoolHandle(), 502 klass_name, 503 require_local);) 504 } 505 506 // ------------------------------------------------------------------ 507 // ciEnv::get_klass_by_index_impl 508 // 509 // Implementation of get_klass_by_index. 510 ciKlass* ciEnv::get_klass_by_index_impl(const constantPoolHandle& cpool, 511 int index, 512 bool& is_accessible, 513 ciInstanceKlass* accessor) { 514 EXCEPTION_CONTEXT; 515 KlassHandle klass; // = NULL; 516 Symbol* klass_name = NULL; 517 518 if (cpool->tag_at(index).is_symbol()) { 519 klass_name = cpool->symbol_at(index); 520 } else { 521 // Check if it's resolved if it's not a symbol constant pool entry. 522 klass = KlassHandle(THREAD, ConstantPool::klass_at_if_loaded(cpool, index)); 523 // Try to look it up by name. 524 if (klass.is_null()) { 525 klass_name = cpool->klass_name_at(index); 526 } 527 } 528 529 if (klass.is_null()) { 530 // Not found in constant pool. Use the name to do the lookup. 531 ciKlass* k = get_klass_by_name_impl(accessor, 532 cpool, 533 get_symbol(klass_name), 534 false); 535 // Calculate accessibility the hard way. 536 if (!k->is_loaded()) { 537 is_accessible = false; 538 } else if (k->loader() != accessor->loader() && 539 get_klass_by_name_impl(accessor, cpool, k->name(), true) == NULL) { 540 // Loaded only remotely. Not linked yet. 541 is_accessible = false; 542 } else { 543 // Linked locally, and we must also check public/private, etc. 544 is_accessible = check_klass_accessibility(accessor, k->get_Klass()); 545 } 546 return k; 547 } 548 549 // Check for prior unloaded klass. The SystemDictionary's answers 550 // can vary over time but the compiler needs consistency. 551 ciSymbol* name = get_symbol(klass()->name()); 552 ciKlass* unloaded_klass = check_get_unloaded_klass(accessor, name); 553 if (unloaded_klass != NULL) { 554 is_accessible = false; 555 return unloaded_klass; 556 } 557 558 // It is known to be accessible, since it was found in the constant pool. 559 is_accessible = true; 560 return get_klass(klass()); 561 } 562 563 // ------------------------------------------------------------------ 564 // ciEnv::get_klass_by_index 565 // 566 // Get a klass from the constant pool. 567 ciKlass* ciEnv::get_klass_by_index(const constantPoolHandle& cpool, 568 int index, 569 bool& is_accessible, 570 ciInstanceKlass* accessor) { 571 GUARDED_VM_ENTRY(return get_klass_by_index_impl(cpool, index, is_accessible, accessor);) 572 } 573 574 // ------------------------------------------------------------------ 575 // ciEnv::get_constant_by_index_impl 576 // 577 // Implementation of get_constant_by_index(). 578 ciConstant ciEnv::get_constant_by_index_impl(const constantPoolHandle& cpool, 579 int pool_index, int cache_index, 580 ciInstanceKlass* accessor) { 581 bool ignore_will_link; 582 EXCEPTION_CONTEXT; 583 int index = pool_index; 584 if (cache_index >= 0) { 585 assert(index < 0, "only one kind of index at a time"); 586 oop obj = cpool->resolved_references()->obj_at(cache_index); 587 if (obj != NULL) { 588 ciObject* ciobj = get_object(obj); 589 if (ciobj->is_array()) { 590 return ciConstant(T_ARRAY, ciobj); 591 } else { 592 assert(ciobj->is_instance(), "should be an instance"); 593 return ciConstant(T_OBJECT, ciobj); 594 } 595 } 596 index = cpool->object_to_cp_index(cache_index); 597 } 598 constantTag tag = cpool->tag_at(index); 599 if (tag.is_int()) { 600 return ciConstant(T_INT, (jint)cpool->int_at(index)); 601 } else if (tag.is_long()) { 602 return ciConstant((jlong)cpool->long_at(index)); 603 } else if (tag.is_float()) { 604 return ciConstant((jfloat)cpool->float_at(index)); 605 } else if (tag.is_double()) { 606 return ciConstant((jdouble)cpool->double_at(index)); 607 } else if (tag.is_string()) { 608 oop string = NULL; 609 assert(cache_index >= 0, "should have a cache index"); 610 if (cpool->is_pseudo_string_at(index)) { 611 string = cpool->pseudo_string_at(index, cache_index); 612 } else { 613 string = cpool->string_at(index, cache_index, THREAD); 614 if (HAS_PENDING_EXCEPTION) { 615 CLEAR_PENDING_EXCEPTION; 616 record_out_of_memory_failure(); 617 return ciConstant(); 618 } 619 } 620 ciObject* constant = get_object(string); 621 if (constant->is_array()) { 622 return ciConstant(T_ARRAY, constant); 623 } else { 624 assert (constant->is_instance(), "must be an instance, or not? "); 625 return ciConstant(T_OBJECT, constant); 626 } 627 } else if (tag.is_klass() || tag.is_unresolved_klass()) { 628 // 4881222: allow ldc to take a class type 629 ciKlass* klass = get_klass_by_index_impl(cpool, index, ignore_will_link, accessor); 630 if (HAS_PENDING_EXCEPTION) { 631 CLEAR_PENDING_EXCEPTION; 632 record_out_of_memory_failure(); 633 return ciConstant(); 634 } 635 assert (klass->is_instance_klass() || klass->is_array_klass(), 636 "must be an instance or array klass "); 637 return ciConstant(T_OBJECT, klass->java_mirror()); 638 } else if (tag.is_method_type()) { 639 // must execute Java code to link this CP entry into cache[i].f1 640 ciSymbol* signature = get_symbol(cpool->method_type_signature_at(index)); 641 ciObject* ciobj = get_unloaded_method_type_constant(signature); 642 return ciConstant(T_OBJECT, ciobj); 643 } else if (tag.is_method_handle()) { 644 // must execute Java code to link this CP entry into cache[i].f1 645 int ref_kind = cpool->method_handle_ref_kind_at(index); 646 int callee_index = cpool->method_handle_klass_index_at(index); 647 ciKlass* callee = get_klass_by_index_impl(cpool, callee_index, ignore_will_link, accessor); 648 ciSymbol* name = get_symbol(cpool->method_handle_name_ref_at(index)); 649 ciSymbol* signature = get_symbol(cpool->method_handle_signature_ref_at(index)); 650 ciObject* ciobj = get_unloaded_method_handle_constant(callee, name, signature, ref_kind); 651 return ciConstant(T_OBJECT, ciobj); 652 } else { 653 ShouldNotReachHere(); 654 return ciConstant(); 655 } 656 } 657 658 // ------------------------------------------------------------------ 659 // ciEnv::get_constant_by_index 660 // 661 // Pull a constant out of the constant pool. How appropriate. 662 // 663 // Implementation note: this query is currently in no way cached. 664 ciConstant ciEnv::get_constant_by_index(const constantPoolHandle& cpool, 665 int pool_index, int cache_index, 666 ciInstanceKlass* accessor) { 667 GUARDED_VM_ENTRY(return get_constant_by_index_impl(cpool, pool_index, cache_index, accessor);) 668 } 669 670 // ------------------------------------------------------------------ 671 // ciEnv::get_field_by_index_impl 672 // 673 // Implementation of get_field_by_index. 674 // 675 // Implementation note: the results of field lookups are cached 676 // in the accessor klass. 677 ciField* ciEnv::get_field_by_index_impl(ciInstanceKlass* accessor, 678 int index) { 679 ciConstantPoolCache* cache = accessor->field_cache(); 680 if (cache == NULL) { 681 ciField* field = new (arena()) ciField(accessor, index); 682 return field; 683 } else { 684 ciField* field = (ciField*)cache->get(index); 685 if (field == NULL) { 686 field = new (arena()) ciField(accessor, index); 687 cache->insert(index, field); 688 } 689 return field; 690 } 691 } 692 693 // ------------------------------------------------------------------ 694 // ciEnv::get_field_by_index 695 // 696 // Get a field by index from a klass's constant pool. 697 ciField* ciEnv::get_field_by_index(ciInstanceKlass* accessor, 698 int index) { 699 GUARDED_VM_ENTRY(return get_field_by_index_impl(accessor, index);) 700 } 701 702 // ------------------------------------------------------------------ 703 // ciEnv::lookup_method 704 // 705 // Perform an appropriate method lookup based on accessor, holder, 706 // name, signature, and bytecode. 707 Method* ciEnv::lookup_method(InstanceKlass* accessor, 708 InstanceKlass* holder, 709 Symbol* name, 710 Symbol* sig, 711 Bytecodes::Code bc, 712 constantTag tag) { 713 EXCEPTION_CONTEXT; 714 KlassHandle h_accessor(THREAD, accessor); 715 KlassHandle h_holder(THREAD, holder); 716 LinkResolver::check_klass_accessability(h_accessor, h_holder, KILL_COMPILE_ON_FATAL_(NULL)); 717 methodHandle dest_method; 718 LinkInfo link_info(h_holder, name, sig, h_accessor, LinkInfo::needs_access_check, tag); 719 switch (bc) { 720 case Bytecodes::_invokestatic: 721 dest_method = 722 LinkResolver::resolve_static_call_or_null(link_info); 723 break; 724 case Bytecodes::_invokespecial: 725 dest_method = 726 LinkResolver::resolve_special_call_or_null(link_info); 727 break; 728 case Bytecodes::_invokeinterface: 729 dest_method = 730 LinkResolver::linktime_resolve_interface_method_or_null(link_info); 731 break; 732 case Bytecodes::_invokevirtual: 733 dest_method = 734 LinkResolver::linktime_resolve_virtual_method_or_null(link_info); 735 break; 736 default: ShouldNotReachHere(); 737 } 738 739 return dest_method(); 740 } 741 742 743 // ------------------------------------------------------------------ 744 // ciEnv::get_method_by_index_impl 745 ciMethod* ciEnv::get_method_by_index_impl(const constantPoolHandle& cpool, 746 int index, Bytecodes::Code bc, 747 ciInstanceKlass* accessor) { 748 if (bc == Bytecodes::_invokedynamic) { 749 ConstantPoolCacheEntry* cpce = cpool->invokedynamic_cp_cache_entry_at(index); 750 bool is_resolved = !cpce->is_f1_null(); 751 // FIXME: code generation could allow for null (unlinked) call site 752 // The call site could be made patchable as follows: 753 // Load the appendix argument from the constant pool. 754 // Test the appendix argument and jump to a known deopt routine if it is null. 755 // Jump through a patchable call site, which is initially a deopt routine. 756 // Patch the call site to the nmethod entry point of the static compiled lambda form. 757 // As with other two-component call sites, both values must be independently verified. 758 759 if (is_resolved) { 760 // Get the invoker Method* from the constant pool. 761 // (The appendix argument, if any, will be noted in the method's signature.) 762 Method* adapter = cpce->f1_as_method(); 763 return get_method(adapter); 764 } 765 766 // Fake a method that is equivalent to a declared method. 767 ciInstanceKlass* holder = get_instance_klass(SystemDictionary::MethodHandle_klass()); 768 ciSymbol* name = ciSymbol::invokeBasic_name(); 769 ciSymbol* signature = get_symbol(cpool->signature_ref_at(index)); 770 return get_unloaded_method(holder, name, signature, accessor); 771 } else { 772 const int holder_index = cpool->klass_ref_index_at(index); 773 bool holder_is_accessible; 774 ciKlass* holder = get_klass_by_index_impl(cpool, holder_index, holder_is_accessible, accessor); 775 ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder); 776 777 // Get the method's name and signature. 778 Symbol* name_sym = cpool->name_ref_at(index); 779 Symbol* sig_sym = cpool->signature_ref_at(index); 780 781 if (cpool->has_preresolution() 782 || ((holder == ciEnv::MethodHandle_klass() || holder == ciEnv::VarHandle_klass()) && 783 MethodHandles::is_signature_polymorphic_name(holder->get_Klass(), name_sym))) { 784 // Short-circuit lookups for JSR 292-related call sites. 785 // That is, do not rely only on name-based lookups, because they may fail 786 // if the names are not resolvable in the boot class loader (7056328). 787 switch (bc) { 788 case Bytecodes::_invokevirtual: 789 case Bytecodes::_invokeinterface: 790 case Bytecodes::_invokespecial: 791 case Bytecodes::_invokestatic: 792 { 793 Method* m = ConstantPool::method_at_if_loaded(cpool, index); 794 if (m != NULL) { 795 return get_method(m); 796 } 797 } 798 break; 799 } 800 } 801 802 if (holder_is_accessible) { // Our declared holder is loaded. 803 InstanceKlass* lookup = declared_holder->get_instanceKlass(); 804 constantTag tag = cpool->tag_ref_at(index); 805 assert(accessor->get_instanceKlass() == cpool->pool_holder(), "not the pool holder?"); 806 Method* m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc, tag); 807 if (m != NULL && 808 (bc == Bytecodes::_invokestatic 809 ? m->method_holder()->is_not_initialized() 810 : !m->method_holder()->is_loaded())) { 811 m = NULL; 812 } 813 #ifdef ASSERT 814 if (m != NULL && ReplayCompiles && !ciReplay::is_loaded(m)) { 815 m = NULL; 816 } 817 #endif 818 if (m != NULL) { 819 // We found the method. 820 return get_method(m); 821 } 822 } 823 824 // Either the declared holder was not loaded, or the method could 825 // not be found. Create a dummy ciMethod to represent the failed 826 // lookup. 827 ciSymbol* name = get_symbol(name_sym); 828 ciSymbol* signature = get_symbol(sig_sym); 829 return get_unloaded_method(declared_holder, name, signature, accessor); 830 } 831 } 832 833 834 // ------------------------------------------------------------------ 835 // ciEnv::get_instance_klass_for_declared_method_holder 836 ciInstanceKlass* ciEnv::get_instance_klass_for_declared_method_holder(ciKlass* method_holder) { 837 // For the case of <array>.clone(), the method holder can be a ciArrayKlass 838 // instead of a ciInstanceKlass. For that case simply pretend that the 839 // declared holder is Object.clone since that's where the call will bottom out. 840 // A more correct fix would trickle out through many interfaces in CI, 841 // requiring ciInstanceKlass* to become ciKlass* and many more places would 842 // require checks to make sure the expected type was found. Given that this 843 // only occurs for clone() the more extensive fix seems like overkill so 844 // instead we simply smear the array type into Object. 845 guarantee(method_holder != NULL, "no method holder"); 846 if (method_holder->is_instance_klass()) { 847 return method_holder->as_instance_klass(); 848 } else if (method_holder->is_array_klass()) { 849 return current()->Object_klass(); 850 } else { 851 ShouldNotReachHere(); 852 } 853 return NULL; 854 } 855 856 857 // ------------------------------------------------------------------ 858 // ciEnv::get_method_by_index 859 ciMethod* ciEnv::get_method_by_index(const constantPoolHandle& cpool, 860 int index, Bytecodes::Code bc, 861 ciInstanceKlass* accessor) { 862 GUARDED_VM_ENTRY(return get_method_by_index_impl(cpool, index, bc, accessor);) 863 } 864 865 866 // ------------------------------------------------------------------ 867 // ciEnv::name_buffer 868 char *ciEnv::name_buffer(int req_len) { 869 if (_name_buffer_len < req_len) { 870 if (_name_buffer == NULL) { 871 _name_buffer = (char*)arena()->Amalloc(sizeof(char)*req_len); 872 _name_buffer_len = req_len; 873 } else { 874 _name_buffer = 875 (char*)arena()->Arealloc(_name_buffer, _name_buffer_len, req_len); 876 _name_buffer_len = req_len; 877 } 878 } 879 return _name_buffer; 880 } 881 882 // ------------------------------------------------------------------ 883 // ciEnv::is_in_vm 884 bool ciEnv::is_in_vm() { 885 return JavaThread::current()->thread_state() == _thread_in_vm; 886 } 887 888 bool ciEnv::system_dictionary_modification_counter_changed() { 889 return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications(); 890 } 891 892 // ------------------------------------------------------------------ 893 // ciEnv::validate_compile_task_dependencies 894 // 895 // Check for changes during compilation (e.g. class loads, evolution, 896 // breakpoints, call site invalidation). 897 void ciEnv::validate_compile_task_dependencies(ciMethod* target) { 898 if (failing()) return; // no need for further checks 899 900 // First, check non-klass dependencies as we might return early and 901 // not check klass dependencies if the system dictionary 902 // modification counter hasn't changed (see below). 903 for (Dependencies::DepStream deps(dependencies()); deps.next(); ) { 904 if (deps.is_klass_type()) continue; // skip klass dependencies 905 Klass* witness = deps.check_dependency(); 906 if (witness != NULL) { 907 if (deps.type() == Dependencies::call_site_target_value) { 908 _inc_decompile_count_on_failure = false; 909 record_failure("call site target change"); 910 } else { 911 record_failure("invalid non-klass dependency"); 912 } 913 return; 914 } 915 } 916 917 // Klass dependencies must be checked when the system dictionary 918 // changes. If logging is enabled all violated dependences will be 919 // recorded in the log. In debug mode check dependencies even if 920 // the system dictionary hasn't changed to verify that no invalid 921 // dependencies were inserted. Any violated dependences in this 922 // case are dumped to the tty. 923 bool counter_changed = system_dictionary_modification_counter_changed(); 924 925 bool verify_deps = trueInDebug; 926 if (!counter_changed && !verify_deps) return; 927 928 int klass_violations = 0; 929 for (Dependencies::DepStream deps(dependencies()); deps.next(); ) { 930 if (!deps.is_klass_type()) continue; // skip non-klass dependencies 931 Klass* witness = deps.check_dependency(); 932 if (witness != NULL) { 933 klass_violations++; 934 if (!counter_changed) { 935 // Dependence failed but counter didn't change. Log a message 936 // describing what failed and allow the assert at the end to 937 // trigger. 938 deps.print_dependency(witness); 939 } else if (xtty == NULL) { 940 // If we're not logging then a single violation is sufficient, 941 // otherwise we want to log all the dependences which were 942 // violated. 943 break; 944 } 945 } 946 } 947 948 if (klass_violations != 0) { 949 #ifdef ASSERT 950 if (!counter_changed && !PrintCompilation) { 951 // Print out the compile task that failed 952 _task->print_tty(); 953 } 954 #endif 955 assert(counter_changed, "failed dependencies, but counter didn't change"); 956 record_failure("concurrent class loading"); 957 } 958 } 959 960 // ------------------------------------------------------------------ 961 // ciEnv::register_method 962 void ciEnv::register_method(ciMethod* target, 963 int entry_bci, 964 CodeOffsets* offsets, 965 int orig_pc_offset, 966 CodeBuffer* code_buffer, 967 int frame_words, 968 OopMapSet* oop_map_set, 969 ExceptionHandlerTable* handler_table, 970 ImplicitExceptionTable* inc_table, 971 AbstractCompiler* compiler, 972 bool has_unsafe_access, 973 bool has_wide_vectors, 974 RTMState rtm_state) { 975 VM_ENTRY_MARK; 976 nmethod* nm = NULL; 977 { 978 // To prevent compile queue updates. 979 MutexLocker locker(MethodCompileQueue_lock, THREAD); 980 981 // Prevent SystemDictionary::add_to_hierarchy from running 982 // and invalidating our dependencies until we install this method. 983 // No safepoints are allowed. Otherwise, class redefinition can occur in between. 984 MutexLocker ml(Compile_lock); 985 NoSafepointVerifier nsv; 986 987 // Change in Jvmti state may invalidate compilation. 988 if (!failing() && jvmti_state_changed()) { 989 record_failure("Jvmti state change invalidated dependencies"); 990 } 991 992 // Change in DTrace flags may invalidate compilation. 993 if (!failing() && 994 ( (!dtrace_extended_probes() && ExtendedDTraceProbes) || 995 (!dtrace_method_probes() && DTraceMethodProbes) || 996 (!dtrace_alloc_probes() && DTraceAllocProbes) )) { 997 record_failure("DTrace flags change invalidated dependencies"); 998 } 999 1000 if (!failing()) { 1001 if (log() != NULL) { 1002 // Log the dependencies which this compilation declares. 1003 dependencies()->log_all_dependencies(); 1004 } 1005 1006 // Encode the dependencies now, so we can check them right away. 1007 dependencies()->encode_content_bytes(); 1008 1009 // Check for {class loads, evolution, breakpoints, ...} during compilation 1010 validate_compile_task_dependencies(target); 1011 } 1012 1013 methodHandle method(THREAD, target->get_Method()); 1014 1015 #if INCLUDE_RTM_OPT 1016 if (!failing() && (rtm_state != NoRTM) && 1017 (method()->method_data() != NULL) && 1018 (method()->method_data()->rtm_state() != rtm_state)) { 1019 // Preemptive decompile if rtm state was changed. 1020 record_failure("RTM state change invalidated rtm code"); 1021 } 1022 #endif 1023 1024 if (failing()) { 1025 // While not a true deoptimization, it is a preemptive decompile. 1026 MethodData* mdo = method()->method_data(); 1027 if (mdo != NULL && _inc_decompile_count_on_failure) { 1028 mdo->inc_decompile_count(); 1029 } 1030 1031 // All buffers in the CodeBuffer are allocated in the CodeCache. 1032 // If the code buffer is created on each compile attempt 1033 // as in C2, then it must be freed. 1034 code_buffer->free_blob(); 1035 return; 1036 } 1037 1038 assert(offsets->value(CodeOffsets::Deopt) != -1, "must have deopt entry"); 1039 assert(offsets->value(CodeOffsets::Exceptions) != -1, "must have exception entry"); 1040 1041 nm = nmethod::new_nmethod(method, 1042 compile_id(), 1043 entry_bci, 1044 offsets, 1045 orig_pc_offset, 1046 debug_info(), dependencies(), code_buffer, 1047 frame_words, oop_map_set, 1048 handler_table, inc_table, 1049 compiler, task()->comp_level()); 1050 1051 // Free codeBlobs 1052 code_buffer->free_blob(); 1053 1054 if (nm != NULL) { 1055 nm->set_has_unsafe_access(has_unsafe_access); 1056 nm->set_has_wide_vectors(has_wide_vectors); 1057 #if INCLUDE_RTM_OPT 1058 nm->set_rtm_state(rtm_state); 1059 #endif 1060 1061 // Record successful registration. 1062 // (Put nm into the task handle *before* publishing to the Java heap.) 1063 if (task() != NULL) { 1064 task()->set_code(nm); 1065 } 1066 1067 if (entry_bci == InvocationEntryBci) { 1068 if (TieredCompilation) { 1069 // If there is an old version we're done with it 1070 CompiledMethod* old = method->code(); 1071 if (TraceMethodReplacement && old != NULL) { 1072 ResourceMark rm; 1073 char *method_name = method->name_and_sig_as_C_string(); 1074 tty->print_cr("Replacing method %s", method_name); 1075 } 1076 if (old != NULL) { 1077 old->make_not_used(); 1078 } 1079 } 1080 if (TraceNMethodInstalls) { 1081 ResourceMark rm; 1082 char *method_name = method->name_and_sig_as_C_string(); 1083 ttyLocker ttyl; 1084 tty->print_cr("Installing method (%d) %s ", 1085 task()->comp_level(), 1086 method_name); 1087 } 1088 // Allow the code to be executed 1089 method->set_code(method, nm); 1090 } else { 1091 if (TraceNMethodInstalls) { 1092 ResourceMark rm; 1093 char *method_name = method->name_and_sig_as_C_string(); 1094 ttyLocker ttyl; 1095 tty->print_cr("Installing osr method (%d) %s @ %d", 1096 task()->comp_level(), 1097 method_name, 1098 entry_bci); 1099 } 1100 method->method_holder()->add_osr_nmethod(nm); 1101 } 1102 } 1103 } // safepoints are allowed again 1104 1105 if (nm != NULL) { 1106 // JVMTI -- compiled method notification (must be done outside lock) 1107 nm->post_compiled_method_load_event(); 1108 } else { 1109 // The CodeCache is full. 1110 record_failure("code cache is full"); 1111 } 1112 } 1113 1114 1115 // ------------------------------------------------------------------ 1116 // ciEnv::find_system_klass 1117 ciKlass* ciEnv::find_system_klass(ciSymbol* klass_name) { 1118 VM_ENTRY_MARK; 1119 return get_klass_by_name_impl(NULL, constantPoolHandle(), klass_name, false); 1120 } 1121 1122 // ------------------------------------------------------------------ 1123 // ciEnv::comp_level 1124 int ciEnv::comp_level() { 1125 if (task() == NULL) return CompLevel_highest_tier; 1126 return task()->comp_level(); 1127 } 1128 1129 // ------------------------------------------------------------------ 1130 // ciEnv::compile_id 1131 uint ciEnv::compile_id() { 1132 if (task() == NULL) return 0; 1133 return task()->compile_id(); 1134 } 1135 1136 // ------------------------------------------------------------------ 1137 // ciEnv::notice_inlined_method() 1138 void ciEnv::notice_inlined_method(ciMethod* method) { 1139 _num_inlined_bytecodes += method->code_size_for_inlining(); 1140 } 1141 1142 // ------------------------------------------------------------------ 1143 // ciEnv::num_inlined_bytecodes() 1144 int ciEnv::num_inlined_bytecodes() const { 1145 return _num_inlined_bytecodes; 1146 } 1147 1148 // ------------------------------------------------------------------ 1149 // ciEnv::record_failure() 1150 void ciEnv::record_failure(const char* reason) { 1151 if (_failure_reason == NULL) { 1152 // Record the first failure reason. 1153 _failure_reason = reason; 1154 } 1155 } 1156 1157 void ciEnv::report_failure(const char* reason) { 1158 // Create and fire JFR event 1159 EventCompilationFailure event; 1160 if (event.should_commit()) { 1161 event.set_compileId(compile_id()); 1162 event.set_failureMessage(reason); 1163 event.commit(); 1164 } 1165 } 1166 1167 // ------------------------------------------------------------------ 1168 // ciEnv::record_method_not_compilable() 1169 void ciEnv::record_method_not_compilable(const char* reason, bool all_tiers) { 1170 int new_compilable = 1171 all_tiers ? MethodCompilable_never : MethodCompilable_not_at_tier ; 1172 1173 // Only note transitions to a worse state 1174 if (new_compilable > _compilable) { 1175 if (log() != NULL) { 1176 if (all_tiers) { 1177 log()->elem("method_not_compilable"); 1178 } else { 1179 log()->elem("method_not_compilable_at_tier level='%d'", 1180 current()->task()->comp_level()); 1181 } 1182 } 1183 _compilable = new_compilable; 1184 1185 // Reset failure reason; this one is more important. 1186 _failure_reason = NULL; 1187 record_failure(reason); 1188 } 1189 } 1190 1191 // ------------------------------------------------------------------ 1192 // ciEnv::record_out_of_memory_failure() 1193 void ciEnv::record_out_of_memory_failure() { 1194 // If memory is low, we stop compiling methods. 1195 record_method_not_compilable("out of memory"); 1196 } 1197 1198 ciInstance* ciEnv::unloaded_ciinstance() { 1199 GUARDED_VM_ENTRY(return _factory->get_unloaded_object_constant();) 1200 } 1201 1202 // ------------------------------------------------------------------ 1203 // ciEnv::dump_replay_data* 1204 1205 // Don't change thread state and acquire any locks. 1206 // Safe to call from VM error reporter. 1207 1208 void ciEnv::dump_compile_data(outputStream* out) { 1209 CompileTask* task = this->task(); 1210 Method* method = task->method(); 1211 int entry_bci = task->osr_bci(); 1212 int comp_level = task->comp_level(); 1213 out->print("compile %s %s %s %d %d", 1214 method->klass_name()->as_quoted_ascii(), 1215 method->name()->as_quoted_ascii(), 1216 method->signature()->as_quoted_ascii(), 1217 entry_bci, comp_level); 1218 if (compiler_data() != NULL) { 1219 if (is_c2_compile(comp_level)) { // C2 or Shark 1220 #ifdef COMPILER2 1221 // Dump C2 inlining data. 1222 ((Compile*)compiler_data())->dump_inline_data(out); 1223 #endif 1224 } else if (is_c1_compile(comp_level)) { // C1 1225 #ifdef COMPILER1 1226 // Dump C1 inlining data. 1227 ((Compilation*)compiler_data())->dump_inline_data(out); 1228 #endif 1229 } 1230 } 1231 out->cr(); 1232 } 1233 1234 void ciEnv::dump_replay_data_unsafe(outputStream* out) { 1235 ResourceMark rm; 1236 #if INCLUDE_JVMTI 1237 out->print_cr("JvmtiExport can_access_local_variables %d", _jvmti_can_access_local_variables); 1238 out->print_cr("JvmtiExport can_hotswap_or_post_breakpoint %d", _jvmti_can_hotswap_or_post_breakpoint); 1239 out->print_cr("JvmtiExport can_post_on_exceptions %d", _jvmti_can_post_on_exceptions); 1240 #endif // INCLUDE_JVMTI 1241 1242 GrowableArray<ciMetadata*>* objects = _factory->get_ci_metadata(); 1243 out->print_cr("# %d ciObject found", objects->length()); 1244 for (int i = 0; i < objects->length(); i++) { 1245 objects->at(i)->dump_replay_data(out); 1246 } 1247 dump_compile_data(out); 1248 out->flush(); 1249 } 1250 1251 void ciEnv::dump_replay_data(outputStream* out) { 1252 GUARDED_VM_ENTRY( 1253 MutexLocker ml(Compile_lock); 1254 dump_replay_data_unsafe(out); 1255 ) 1256 } 1257 1258 void ciEnv::dump_replay_data(int compile_id) { 1259 static char buffer[O_BUFLEN]; 1260 int ret = jio_snprintf(buffer, O_BUFLEN, "replay_pid%p_compid%d.log", os::current_process_id(), compile_id); 1261 if (ret > 0) { 1262 int fd = open(buffer, O_RDWR | O_CREAT | O_TRUNC, 0666); 1263 if (fd != -1) { 1264 FILE* replay_data_file = os::open(fd, "w"); 1265 if (replay_data_file != NULL) { 1266 fileStream replay_data_stream(replay_data_file, /*need_close=*/true); 1267 dump_replay_data(&replay_data_stream); 1268 tty->print_cr("# Compiler replay data is saved as: %s", buffer); 1269 } else { 1270 tty->print_cr("# Can't open file to dump replay data."); 1271 } 1272 } 1273 } 1274 } 1275 1276 void ciEnv::dump_inline_data(int compile_id) { 1277 static char buffer[O_BUFLEN]; 1278 int ret = jio_snprintf(buffer, O_BUFLEN, "inline_pid%p_compid%d.log", os::current_process_id(), compile_id); 1279 if (ret > 0) { 1280 int fd = open(buffer, O_RDWR | O_CREAT | O_TRUNC, 0666); 1281 if (fd != -1) { 1282 FILE* inline_data_file = os::open(fd, "w"); 1283 if (inline_data_file != NULL) { 1284 fileStream replay_data_stream(inline_data_file, /*need_close=*/true); 1285 GUARDED_VM_ENTRY( 1286 MutexLocker ml(Compile_lock); 1287 dump_compile_data(&replay_data_stream); 1288 ) 1289 replay_data_stream.flush(); 1290 tty->print("# Compiler inline data is saved as: "); 1291 tty->print_cr("%s", buffer); 1292 } else { 1293 tty->print_cr("# Can't open file to dump inline data."); 1294 } 1295 } 1296 } 1297 } --- EOF ---