1 /*
   2  * Copyright (c) 2012, 2019, 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 #include "precompiled.hpp"
  25 #include "classfile/symbolTable.hpp"
  26 #include "compiler/compileBroker.hpp"
  27 #include "jvmci/jniAccessMark.inline.hpp"
  28 #include "jvmci/jvmciCompilerToVM.hpp"
  29 #include "jvmci/jvmciRuntime.hpp"
  30 #include "logging/log.hpp"
  31 #include "memory/oopFactory.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/constantPool.inline.hpp"
  34 #include "oops/method.inline.hpp"
  35 #include "oops/objArrayKlass.hpp"
  36 #include "oops/oop.inline.hpp"
  37 #include "runtime/biasedLocking.hpp"
  38 #include "runtime/deoptimization.hpp"
  39 #include "runtime/fieldDescriptor.inline.hpp"
  40 #include "runtime/frame.inline.hpp"
  41 #include "runtime/sharedRuntime.hpp"
  42 #if INCLUDE_G1GC
  43 #include "gc/g1/g1ThreadLocalData.hpp"
  44 #endif // INCLUDE_G1GC
  45 
  46 // Simple helper to see if the caller of a runtime stub which
  47 // entered the VM has been deoptimized
  48 
  49 static bool caller_is_deopted() {
  50   JavaThread* thread = JavaThread::current();
  51   RegisterMap reg_map(thread, false);
  52   frame runtime_frame = thread->last_frame();
  53   frame caller_frame = runtime_frame.sender(&reg_map);
  54   assert(caller_frame.is_compiled_frame(), "must be compiled");
  55   return caller_frame.is_deoptimized_frame();
  56 }
  57 
  58 // Stress deoptimization
  59 static void deopt_caller() {
  60   if ( !caller_is_deopted()) {
  61     JavaThread* thread = JavaThread::current();
  62     RegisterMap reg_map(thread, false);
  63     frame runtime_frame = thread->last_frame();
  64     frame caller_frame = runtime_frame.sender(&reg_map);
  65     Deoptimization::deoptimize_frame(thread, caller_frame.id(), Deoptimization::Reason_constraint);
  66     assert(caller_is_deopted(), "Must be deoptimized");
  67   }
  68 }
  69 
  70 // Manages a scope for a JVMCI runtime call that attempts a heap allocation.
  71 // If there is a pending exception upon closing the scope and the runtime
  72 // call is of the variety where allocation failure returns NULL without an
  73 // exception, the following action is taken:
  74 //   1. The pending exception is cleared
  75 //   2. NULL is written to JavaThread::_vm_result
  76 //   3. Checks that an OutOfMemoryError is Universe::out_of_memory_error_retry().
  77 class RetryableAllocationMark: public StackObj {
  78  private:
  79   JavaThread* _thread;
  80  public:
  81   RetryableAllocationMark(JavaThread* thread, bool activate) {
  82     if (activate) {
  83       assert(!thread->in_retryable_allocation(), "retryable allocation scope is non-reentrant");
  84       _thread = thread;
  85       _thread->set_in_retryable_allocation(true);
  86     } else {
  87       _thread = NULL;
  88     }
  89   }
  90   ~RetryableAllocationMark() {
  91     if (_thread != NULL) {
  92       _thread->set_in_retryable_allocation(false);
  93       JavaThread* THREAD = _thread;
  94       if (HAS_PENDING_EXCEPTION) {
  95         oop ex = PENDING_EXCEPTION;
  96         CLEAR_PENDING_EXCEPTION;
  97         oop retry_oome = Universe::out_of_memory_error_retry();
  98         if (ex->is_a(retry_oome->klass()) && retry_oome != ex) {
  99           ResourceMark rm;
 100           fatal("Unexpected exception in scope of retryable allocation: " INTPTR_FORMAT " of type %s", p2i(ex), ex->klass()->external_name());
 101         }
 102         _thread->set_vm_result(NULL);
 103       }
 104     }
 105   }
 106 };
 107 
 108 JRT_BLOCK_ENTRY(void, JVMCIRuntime::new_instance_common(JavaThread* thread, Klass* klass, bool null_on_fail))
 109   JRT_BLOCK;
 110   assert(klass->is_klass(), "not a class");
 111   Handle holder(THREAD, klass->klass_holder()); // keep the klass alive
 112   InstanceKlass* h = InstanceKlass::cast(klass);
 113   {
 114     RetryableAllocationMark ram(thread, null_on_fail);
 115     h->check_valid_for_instantiation(true, CHECK);
 116     oop obj;
 117     if (null_on_fail) {
 118       if (!h->is_initialized()) {
 119         // Cannot re-execute class initialization without side effects
 120         // so return without attempting the initialization
 121         return;
 122       }
 123     } else {
 124       // make sure klass is initialized
 125       h->initialize(CHECK);
 126     }
 127     // allocate instance and return via TLS
 128     obj = h->allocate_instance(CHECK);
 129     thread->set_vm_result(obj);
 130   }
 131   JRT_BLOCK_END;
 132   SharedRuntime::on_slowpath_allocation_exit(thread);
 133 JRT_END
 134 
 135 JRT_BLOCK_ENTRY(void, JVMCIRuntime::new_array_common(JavaThread* thread, Klass* array_klass, jint length, bool null_on_fail))
 136   JRT_BLOCK;
 137   // Note: no handle for klass needed since they are not used
 138   //       anymore after new_objArray() and no GC can happen before.
 139   //       (This may have to change if this code changes!)
 140   assert(array_klass->is_klass(), "not a class");
 141   oop obj;
 142   if (array_klass->is_typeArray_klass()) {
 143     BasicType elt_type = TypeArrayKlass::cast(array_klass)->element_type();
 144     RetryableAllocationMark ram(thread, null_on_fail);
 145     obj = oopFactory::new_typeArray(elt_type, length, CHECK);
 146   } else {
 147     Handle holder(THREAD, array_klass->klass_holder()); // keep the klass alive
 148     Klass* elem_klass = ObjArrayKlass::cast(array_klass)->element_klass();
 149     RetryableAllocationMark ram(thread, null_on_fail);
 150     obj = oopFactory::new_objArray(elem_klass, length, CHECK);
 151   }
 152   thread->set_vm_result(obj);
 153   // This is pretty rare but this runtime patch is stressful to deoptimization
 154   // if we deoptimize here so force a deopt to stress the path.
 155   if (DeoptimizeALot) {
 156     static int deopts = 0;
 157     // Alternate between deoptimizing and raising an error (which will also cause a deopt)
 158     if (deopts++ % 2 == 0) {
 159       if (null_on_fail) {
 160         return;
 161       } else {
 162         ResourceMark rm(THREAD);
 163         THROW(vmSymbols::java_lang_OutOfMemoryError());
 164       }
 165     } else {
 166       deopt_caller();
 167     }
 168   }
 169   JRT_BLOCK_END;
 170   SharedRuntime::on_slowpath_allocation_exit(thread);
 171 JRT_END
 172 
 173 JRT_ENTRY(void, JVMCIRuntime::new_multi_array_common(JavaThread* thread, Klass* klass, int rank, jint* dims, bool null_on_fail))
 174   assert(klass->is_klass(), "not a class");
 175   assert(rank >= 1, "rank must be nonzero");
 176   Handle holder(THREAD, klass->klass_holder()); // keep the klass alive
 177   RetryableAllocationMark ram(thread, null_on_fail);
 178   oop obj = ArrayKlass::cast(klass)->multi_allocate(rank, dims, CHECK);
 179   thread->set_vm_result(obj);
 180 JRT_END
 181 
 182 JRT_ENTRY(void, JVMCIRuntime::dynamic_new_array_common(JavaThread* thread, oopDesc* element_mirror, jint length, bool null_on_fail))
 183   RetryableAllocationMark ram(thread, null_on_fail);
 184   oop obj = Reflection::reflect_new_array(element_mirror, length, CHECK);
 185   thread->set_vm_result(obj);
 186 JRT_END
 187 
 188 JRT_ENTRY(void, JVMCIRuntime::dynamic_new_instance_common(JavaThread* thread, oopDesc* type_mirror, bool null_on_fail))
 189   InstanceKlass* klass = InstanceKlass::cast(java_lang_Class::as_Klass(type_mirror));
 190 
 191   if (klass == NULL) {
 192     ResourceMark rm(THREAD);
 193     THROW(vmSymbols::java_lang_InstantiationException());
 194   }
 195   RetryableAllocationMark ram(thread, null_on_fail);
 196 
 197   // Create new instance (the receiver)
 198   klass->check_valid_for_instantiation(false, CHECK);
 199 
 200   if (null_on_fail) {
 201     if (!klass->is_initialized()) {
 202       // Cannot re-execute class initialization without side effects
 203       // so return without attempting the initialization
 204       return;
 205     }
 206   } else {
 207     // Make sure klass gets initialized
 208     klass->initialize(CHECK);
 209   }
 210 
 211   oop obj = klass->allocate_instance(CHECK);
 212   thread->set_vm_result(obj);
 213 JRT_END
 214 
 215 extern void vm_exit(int code);
 216 
 217 // Enter this method from compiled code handler below. This is where we transition
 218 // to VM mode. This is done as a helper routine so that the method called directly
 219 // from compiled code does not have to transition to VM. This allows the entry
 220 // method to see if the nmethod that we have just looked up a handler for has
 221 // been deoptimized while we were in the vm. This simplifies the assembly code
 222 // cpu directories.
 223 //
 224 // We are entering here from exception stub (via the entry method below)
 225 // If there is a compiled exception handler in this method, we will continue there;
 226 // otherwise we will unwind the stack and continue at the caller of top frame method
 227 // Note: we enter in Java using a special JRT wrapper. This wrapper allows us to
 228 // control the area where we can allow a safepoint. After we exit the safepoint area we can
 229 // check to see if the handler we are going to return is now in a nmethod that has
 230 // been deoptimized. If that is the case we return the deopt blob
 231 // unpack_with_exception entry instead. This makes life for the exception blob easier
 232 // because making that same check and diverting is painful from assembly language.
 233 JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, CompiledMethod*& cm))
 234   // Reset method handle flag.
 235   thread->set_is_method_handle_return(false);
 236 
 237   Handle exception(thread, ex);
 238   cm = CodeCache::find_compiled(pc);
 239   assert(cm != NULL, "this is not a compiled method");
 240   // Adjust the pc as needed/
 241   if (cm->is_deopt_pc(pc)) {
 242     RegisterMap map(thread, false);
 243     frame exception_frame = thread->last_frame().sender(&map);
 244     // if the frame isn't deopted then pc must not correspond to the caller of last_frame
 245     assert(exception_frame.is_deoptimized_frame(), "must be deopted");
 246     pc = exception_frame.pc();
 247   }
 248 #ifdef ASSERT
 249   assert(exception.not_null(), "NULL exceptions should be handled by throw_exception");
 250   assert(oopDesc::is_oop(exception()), "just checking");
 251   // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
 252   if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
 253     if (ExitVMOnVerifyError) vm_exit(-1);
 254     ShouldNotReachHere();
 255   }
 256 #endif
 257 
 258   // Check the stack guard pages and reenable them if necessary and there is
 259   // enough space on the stack to do so.  Use fast exceptions only if the guard
 260   // pages are enabled.
 261   bool guard_pages_enabled = thread->stack_guards_enabled();
 262   if (!guard_pages_enabled) guard_pages_enabled = thread->reguard_stack();
 263 
 264   if (JvmtiExport::can_post_on_exceptions()) {
 265     // To ensure correct notification of exception catches and throws
 266     // we have to deoptimize here.  If we attempted to notify the
 267     // catches and throws during this exception lookup it's possible
 268     // we could deoptimize on the way out of the VM and end back in
 269     // the interpreter at the throw site.  This would result in double
 270     // notifications since the interpreter would also notify about
 271     // these same catches and throws as it unwound the frame.
 272 
 273     RegisterMap reg_map(thread);
 274     frame stub_frame = thread->last_frame();
 275     frame caller_frame = stub_frame.sender(&reg_map);
 276 
 277     // We don't really want to deoptimize the nmethod itself since we
 278     // can actually continue in the exception handler ourselves but I
 279     // don't see an easy way to have the desired effect.
 280     Deoptimization::deoptimize_frame(thread, caller_frame.id(), Deoptimization::Reason_constraint);
 281     assert(caller_is_deopted(), "Must be deoptimized");
 282 
 283     return SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
 284   }
 285 
 286   // ExceptionCache is used only for exceptions at call sites and not for implicit exceptions
 287   if (guard_pages_enabled) {
 288     address fast_continuation = cm->handler_for_exception_and_pc(exception, pc);
 289     if (fast_continuation != NULL) {
 290       // Set flag if return address is a method handle call site.
 291       thread->set_is_method_handle_return(cm->is_method_handle_return(pc));
 292       return fast_continuation;
 293     }
 294   }
 295 
 296   // If the stack guard pages are enabled, check whether there is a handler in
 297   // the current method.  Otherwise (guard pages disabled), force an unwind and
 298   // skip the exception cache update (i.e., just leave continuation==NULL).
 299   address continuation = NULL;
 300   if (guard_pages_enabled) {
 301 
 302     // New exception handling mechanism can support inlined methods
 303     // with exception handlers since the mappings are from PC to PC
 304 
 305     // debugging support
 306     // tracing
 307     if (log_is_enabled(Info, exceptions)) {
 308       ResourceMark rm;
 309       stringStream tempst;
 310       assert(cm->method() != NULL, "Unexpected null method()");
 311       tempst.print("compiled method <%s>\n"
 312                    " at PC" INTPTR_FORMAT " for thread " INTPTR_FORMAT,
 313                    cm->method()->print_value_string(), p2i(pc), p2i(thread));
 314       Exceptions::log_exception(exception, tempst.as_string());
 315     }
 316     // for AbortVMOnException flag
 317     NOT_PRODUCT(Exceptions::debug_check_abort(exception));
 318 
 319     // Clear out the exception oop and pc since looking up an
 320     // exception handler can cause class loading, which might throw an
 321     // exception and those fields are expected to be clear during
 322     // normal bytecode execution.
 323     thread->clear_exception_oop_and_pc();
 324 
 325     bool recursive_exception = false;
 326     continuation = SharedRuntime::compute_compiled_exc_handler(cm, pc, exception, false, false, recursive_exception);
 327     // If an exception was thrown during exception dispatch, the exception oop may have changed
 328     thread->set_exception_oop(exception());
 329     thread->set_exception_pc(pc);
 330 
 331     // The exception cache is used only for non-implicit exceptions
 332     // Update the exception cache only when another exception did
 333     // occur during the computation of the compiled exception handler
 334     // (e.g., when loading the class of the catch type).
 335     // Checking for exception oop equality is not
 336     // sufficient because some exceptions are pre-allocated and reused.
 337     if (continuation != NULL && !recursive_exception && !SharedRuntime::deopt_blob()->contains(continuation)) {
 338       cm->add_handler_for_exception_and_pc(exception, pc, continuation);
 339     }
 340   }
 341 
 342   // Set flag if return address is a method handle call site.
 343   thread->set_is_method_handle_return(cm->is_method_handle_return(pc));
 344 
 345   if (log_is_enabled(Info, exceptions)) {
 346     ResourceMark rm;
 347     log_info(exceptions)("Thread " PTR_FORMAT " continuing at PC " PTR_FORMAT
 348                          " for exception thrown at PC " PTR_FORMAT,
 349                          p2i(thread), p2i(continuation), p2i(pc));
 350   }
 351 
 352   return continuation;
 353 JRT_END
 354 
 355 // Enter this method from compiled code only if there is a Java exception handler
 356 // in the method handling the exception.
 357 // We are entering here from exception stub. We don't do a normal VM transition here.
 358 // We do it in a helper. This is so we can check to see if the nmethod we have just
 359 // searched for an exception handler has been deoptimized in the meantime.
 360 address JVMCIRuntime::exception_handler_for_pc(JavaThread* thread) {
 361   oop exception = thread->exception_oop();
 362   address pc = thread->exception_pc();
 363   // Still in Java mode
 364   DEBUG_ONLY(ResetNoHandleMark rnhm);
 365   CompiledMethod* cm = NULL;
 366   address continuation = NULL;
 367   {
 368     // Enter VM mode by calling the helper
 369     ResetNoHandleMark rnhm;
 370     continuation = exception_handler_for_pc_helper(thread, exception, pc, cm);
 371   }
 372   // Back in JAVA, use no oops DON'T safepoint
 373 
 374   // Now check to see if the compiled method we were called from is now deoptimized.
 375   // If so we must return to the deopt blob and deoptimize the nmethod
 376   if (cm != NULL && caller_is_deopted()) {
 377     continuation = SharedRuntime::deopt_blob()->unpack_with_exception_in_tls();
 378   }
 379 
 380   assert(continuation != NULL, "no handler found");
 381   return continuation;
 382 }
 383 
 384 JRT_ENTRY_NO_ASYNC(void, JVMCIRuntime::monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock))
 385   IF_TRACE_jvmci_3 {
 386     char type[O_BUFLEN];
 387     obj->klass()->name()->as_C_string(type, O_BUFLEN);
 388     markWord mark = obj->mark();
 389     TRACE_jvmci_3("%s: entered locking slow case with obj=" INTPTR_FORMAT ", type=%s, mark=" INTPTR_FORMAT ", lock=" INTPTR_FORMAT, thread->name(), p2i(obj), type, mark.value(), p2i(lock));
 390     tty->flush();
 391   }
 392   if (PrintBiasedLockingStatistics) {
 393     Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
 394   }
 395   Handle h_obj(thread, obj);
 396   assert(oopDesc::is_oop(h_obj()), "must be NULL or an object");
 397   ObjectSynchronizer::enter(h_obj, lock, THREAD);
 398   TRACE_jvmci_3("%s: exiting locking slow with obj=" INTPTR_FORMAT, thread->name(), p2i(obj));
 399 JRT_END
 400 
 401 JRT_LEAF(void, JVMCIRuntime::monitorexit(JavaThread* thread, oopDesc* obj, BasicLock* lock))
 402   assert(thread == JavaThread::current(), "threads must correspond");
 403   assert(thread->last_Java_sp(), "last_Java_sp must be set");
 404   // monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
 405   EXCEPTION_MARK;
 406 
 407 #ifdef ASSERT
 408   if (!oopDesc::is_oop(obj)) {
 409     ResetNoHandleMark rhm;
 410     nmethod* method = thread->last_frame().cb()->as_nmethod_or_null();
 411     if (method != NULL) {
 412       tty->print_cr("ERROR in monitorexit in method %s wrong obj " INTPTR_FORMAT, method->name(), p2i(obj));
 413     }
 414     thread->print_stack_on(tty);
 415     assert(false, "invalid lock object pointer dected");
 416   }
 417 #endif
 418 
 419   ObjectSynchronizer::exit(obj, lock, THREAD);
 420   IF_TRACE_jvmci_3 {
 421     char type[O_BUFLEN];
 422     obj->klass()->name()->as_C_string(type, O_BUFLEN);
 423     TRACE_jvmci_3("%s: exited locking slow case with obj=" INTPTR_FORMAT ", type=%s, mark=" INTPTR_FORMAT ", lock=" INTPTR_FORMAT, thread->name(), p2i(obj), type, obj->mark().value(), p2i(lock));
 424     tty->flush();
 425   }
 426 JRT_END
 427 
 428 // Object.notify() fast path, caller does slow path
 429 JRT_LEAF(jboolean, JVMCIRuntime::object_notify(JavaThread *thread, oopDesc* obj))
 430 
 431   // Very few notify/notifyAll operations find any threads on the waitset, so
 432   // the dominant fast-path is to simply return.
 433   // Relatedly, it's critical that notify/notifyAll be fast in order to
 434   // reduce lock hold times.
 435   if (!SafepointSynchronize::is_synchronizing()) {
 436     if (ObjectSynchronizer::quick_notify(obj, thread, false)) {
 437       return true;
 438     }
 439   }
 440   return false; // caller must perform slow path
 441 
 442 JRT_END
 443 
 444 // Object.notifyAll() fast path, caller does slow path
 445 JRT_LEAF(jboolean, JVMCIRuntime::object_notifyAll(JavaThread *thread, oopDesc* obj))
 446 
 447   if (!SafepointSynchronize::is_synchronizing() ) {
 448     if (ObjectSynchronizer::quick_notify(obj, thread, true)) {
 449       return true;
 450     }
 451   }
 452   return false; // caller must perform slow path
 453 
 454 JRT_END
 455 
 456 JRT_ENTRY(void, JVMCIRuntime::throw_and_post_jvmti_exception(JavaThread* thread, const char* exception, const char* message))
 457   TempNewSymbol symbol = SymbolTable::new_symbol(exception);
 458   SharedRuntime::throw_and_post_jvmti_exception(thread, symbol, message);
 459 JRT_END
 460 
 461 JRT_ENTRY(void, JVMCIRuntime::throw_klass_external_name_exception(JavaThread* thread, const char* exception, Klass* klass))
 462   ResourceMark rm(thread);
 463   TempNewSymbol symbol = SymbolTable::new_symbol(exception);
 464   SharedRuntime::throw_and_post_jvmti_exception(thread, symbol, klass->external_name());
 465 JRT_END
 466 
 467 JRT_ENTRY(void, JVMCIRuntime::throw_class_cast_exception(JavaThread* thread, const char* exception, Klass* caster_klass, Klass* target_klass))
 468   ResourceMark rm(thread);
 469   const char* message = SharedRuntime::generate_class_cast_message(caster_klass, target_klass);
 470   TempNewSymbol symbol = SymbolTable::new_symbol(exception);
 471   SharedRuntime::throw_and_post_jvmti_exception(thread, symbol, message);
 472 JRT_END
 473 
 474 JRT_LEAF(void, JVMCIRuntime::log_object(JavaThread* thread, oopDesc* obj, bool as_string, bool newline))
 475   ttyLocker ttyl;
 476 
 477   if (obj == NULL) {
 478     tty->print("NULL");
 479   } else if (oopDesc::is_oop_or_null(obj, true) && (!as_string || !java_lang_String::is_instance(obj))) {
 480     if (oopDesc::is_oop_or_null(obj, true)) {
 481       char buf[O_BUFLEN];
 482       tty->print("%s@" INTPTR_FORMAT, obj->klass()->name()->as_C_string(buf, O_BUFLEN), p2i(obj));
 483     } else {
 484       tty->print(INTPTR_FORMAT, p2i(obj));
 485     }
 486   } else {
 487     ResourceMark rm;
 488     assert(obj != NULL && java_lang_String::is_instance(obj), "must be");
 489     char *buf = java_lang_String::as_utf8_string(obj);
 490     tty->print_raw(buf);
 491   }
 492   if (newline) {
 493     tty->cr();
 494   }
 495 JRT_END
 496 
 497 #if INCLUDE_G1GC
 498 
 499 JRT_LEAF(void, JVMCIRuntime::write_barrier_pre(JavaThread* thread, oopDesc* obj))
 500   G1ThreadLocalData::satb_mark_queue(thread).enqueue(obj);
 501 JRT_END
 502 
 503 JRT_LEAF(void, JVMCIRuntime::write_barrier_post(JavaThread* thread, void* card_addr))
 504   G1ThreadLocalData::dirty_card_queue(thread).enqueue(card_addr);
 505 JRT_END
 506 
 507 #endif // INCLUDE_G1GC
 508 
 509 JRT_LEAF(jboolean, JVMCIRuntime::validate_object(JavaThread* thread, oopDesc* parent, oopDesc* child))
 510   bool ret = true;
 511   if(!Universe::heap()->is_in(parent)) {
 512     tty->print_cr("Parent Object " INTPTR_FORMAT " not in heap", p2i(parent));
 513     parent->print();
 514     ret=false;
 515   }
 516   if(!Universe::heap()->is_in(child)) {
 517     tty->print_cr("Child Object " INTPTR_FORMAT " not in heap", p2i(child));
 518     child->print();
 519     ret=false;
 520   }
 521   return (jint)ret;
 522 JRT_END
 523 
 524 JRT_ENTRY(void, JVMCIRuntime::vm_error(JavaThread* thread, jlong where, jlong format, jlong value))
 525   ResourceMark rm;
 526   const char *error_msg = where == 0L ? "<internal JVMCI error>" : (char*) (address) where;
 527   char *detail_msg = NULL;
 528   if (format != 0L) {
 529     const char* buf = (char*) (address) format;
 530     size_t detail_msg_length = strlen(buf) * 2;
 531     detail_msg = (char *) NEW_RESOURCE_ARRAY(u_char, detail_msg_length);
 532     jio_snprintf(detail_msg, detail_msg_length, buf, value);
 533   }
 534   report_vm_error(__FILE__, __LINE__, error_msg, "%s", detail_msg);
 535 JRT_END
 536 
 537 JRT_LEAF(oopDesc*, JVMCIRuntime::load_and_clear_exception(JavaThread* thread))
 538   oop exception = thread->exception_oop();
 539   assert(exception != NULL, "npe");
 540   thread->set_exception_oop(NULL);
 541   thread->set_exception_pc(0);
 542   return exception;
 543 JRT_END
 544 
 545 PRAGMA_DIAG_PUSH
 546 PRAGMA_FORMAT_NONLITERAL_IGNORED
 547 JRT_LEAF(void, JVMCIRuntime::log_printf(JavaThread* thread, const char* format, jlong v1, jlong v2, jlong v3))
 548   ResourceMark rm;
 549   tty->print(format, v1, v2, v3);
 550 JRT_END
 551 PRAGMA_DIAG_POP
 552 
 553 static void decipher(jlong v, bool ignoreZero) {
 554   if (v != 0 || !ignoreZero) {
 555     void* p = (void *)(address) v;
 556     CodeBlob* cb = CodeCache::find_blob(p);
 557     if (cb) {
 558       if (cb->is_nmethod()) {
 559         char buf[O_BUFLEN];
 560         tty->print("%s [" INTPTR_FORMAT "+" JLONG_FORMAT "]", cb->as_nmethod_or_null()->method()->name_and_sig_as_C_string(buf, O_BUFLEN), p2i(cb->code_begin()), (jlong)((address)v - cb->code_begin()));
 561         return;
 562       }
 563       cb->print_value_on(tty);
 564       return;
 565     }
 566     if (Universe::heap()->is_in(p)) {
 567       oop obj = oop(p);
 568       obj->print_value_on(tty);
 569       return;
 570     }
 571     tty->print(INTPTR_FORMAT " [long: " JLONG_FORMAT ", double %lf, char %c]",p2i((void *)v), (jlong)v, (jdouble)v, (char)v);
 572   }
 573 }
 574 
 575 PRAGMA_DIAG_PUSH
 576 PRAGMA_FORMAT_NONLITERAL_IGNORED
 577 JRT_LEAF(void, JVMCIRuntime::vm_message(jboolean vmError, jlong format, jlong v1, jlong v2, jlong v3))
 578   ResourceMark rm;
 579   const char *buf = (const char*) (address) format;
 580   if (vmError) {
 581     if (buf != NULL) {
 582       fatal(buf, v1, v2, v3);
 583     } else {
 584       fatal("<anonymous error>");
 585     }
 586   } else if (buf != NULL) {
 587     tty->print(buf, v1, v2, v3);
 588   } else {
 589     assert(v2 == 0, "v2 != 0");
 590     assert(v3 == 0, "v3 != 0");
 591     decipher(v1, false);
 592   }
 593 JRT_END
 594 PRAGMA_DIAG_POP
 595 
 596 JRT_LEAF(void, JVMCIRuntime::log_primitive(JavaThread* thread, jchar typeChar, jlong value, jboolean newline))
 597   union {
 598       jlong l;
 599       jdouble d;
 600       jfloat f;
 601   } uu;
 602   uu.l = value;
 603   switch (typeChar) {
 604     case 'Z': tty->print(value == 0 ? "false" : "true"); break;
 605     case 'B': tty->print("%d", (jbyte) value); break;
 606     case 'C': tty->print("%c", (jchar) value); break;
 607     case 'S': tty->print("%d", (jshort) value); break;
 608     case 'I': tty->print("%d", (jint) value); break;
 609     case 'F': tty->print("%f", uu.f); break;
 610     case 'J': tty->print(JLONG_FORMAT, value); break;
 611     case 'D': tty->print("%lf", uu.d); break;
 612     default: assert(false, "unknown typeChar"); break;
 613   }
 614   if (newline) {
 615     tty->cr();
 616   }
 617 JRT_END
 618 
 619 JRT_ENTRY(jint, JVMCIRuntime::identity_hash_code(JavaThread* thread, oopDesc* obj))
 620   return (jint) obj->identity_hash();
 621 JRT_END
 622 
 623 JRT_ENTRY(jboolean, JVMCIRuntime::thread_is_interrupted(JavaThread* thread, oopDesc* receiver, jboolean clear_interrupted))
 624   Handle receiverHandle(thread, receiver);
 625   // A nested ThreadsListHandle may require the Threads_lock which
 626   // requires thread_in_vm which is why this method cannot be JRT_LEAF.
 627   ThreadsListHandle tlh;
 628 
 629   JavaThread* receiverThread = java_lang_Thread::thread(receiverHandle());
 630   if (receiverThread == NULL || (EnableThreadSMRExtraValidityChecks && !tlh.includes(receiverThread))) {
 631     // The other thread may exit during this process, which is ok so return false.
 632     return JNI_FALSE;
 633   } else {
 634     return (jint) receiverThread->is_interrupted(clear_interrupted != 0);
 635   }
 636 JRT_END
 637 
 638 JRT_ENTRY(jint, JVMCIRuntime::test_deoptimize_call_int(JavaThread* thread, int value))
 639   deopt_caller();
 640   return (jint) value;
 641 JRT_END
 642 
 643 
 644 // private static JVMCIRuntime JVMCI.initializeRuntime()
 645 JVM_ENTRY_NO_ENV(jobject, JVM_GetJVMCIRuntime(JNIEnv *env, jclass c))
 646   JNI_JVMCIENV(thread, env);
 647   if (!EnableJVMCI) {
 648     JVMCI_THROW_MSG_NULL(InternalError, "JVMCI is not enabled");
 649   }
 650   JVMCIENV->runtime()->initialize_HotSpotJVMCIRuntime(JVMCI_CHECK_NULL);
 651   JVMCIObject runtime = JVMCIENV->runtime()->get_HotSpotJVMCIRuntime(JVMCI_CHECK_NULL);
 652   return JVMCIENV->get_jobject(runtime);
 653 JVM_END
 654 
 655 void JVMCIRuntime::call_getCompiler(TRAPS) {
 656   THREAD_JVMCIENV(JavaThread::current());
 657   JVMCIObject jvmciRuntime = JVMCIRuntime::get_HotSpotJVMCIRuntime(JVMCI_CHECK);
 658   initialize(JVMCIENV);
 659   JVMCIENV->call_HotSpotJVMCIRuntime_getCompiler(jvmciRuntime, JVMCI_CHECK);
 660 }
 661 
 662 void JVMCINMethodData::initialize(
 663   int nmethod_mirror_index,
 664   const char* name,
 665   FailedSpeculation** failed_speculations)
 666 {
 667   _failed_speculations = failed_speculations;
 668   _nmethod_mirror_index = nmethod_mirror_index;
 669   if (name != NULL) {
 670     _has_name = true;
 671     char* dest = (char*) this->name();
 672     strcpy(dest, name);
 673   } else {
 674     _has_name = false;
 675   }
 676 }
 677 
 678 void JVMCINMethodData::add_failed_speculation(nmethod* nm, jlong speculation) {
 679   uint index = (speculation >> 32) & 0xFFFFFFFF;
 680   int length = (int) speculation;
 681   if (index + length > (uint) nm->speculations_size()) {
 682     fatal(INTPTR_FORMAT "[index: %d, length: %d] out of bounds wrt encoded speculations of length %u", speculation, index, length, nm->speculations_size());
 683   }
 684   address data = nm->speculations_begin() + index;
 685   FailedSpeculation::add_failed_speculation(nm, _failed_speculations, data, length);
 686 }
 687 
 688 oop JVMCINMethodData::get_nmethod_mirror(nmethod* nm, bool phantom_ref) {
 689   if (_nmethod_mirror_index == -1) {
 690     return NULL;
 691   }
 692   if (phantom_ref) {
 693     return nm->oop_at_phantom(_nmethod_mirror_index);
 694   } else {
 695     return nm->oop_at(_nmethod_mirror_index);
 696   }
 697 }
 698 
 699 void JVMCINMethodData::set_nmethod_mirror(nmethod* nm, oop new_mirror) {
 700   assert(_nmethod_mirror_index != -1, "cannot set JVMCI mirror for nmethod");
 701   oop* addr = nm->oop_addr_at(_nmethod_mirror_index);
 702   assert(new_mirror != NULL, "use clear_nmethod_mirror to clear the mirror");
 703   assert(*addr == NULL, "cannot overwrite non-null mirror");
 704 
 705   *addr = new_mirror;
 706 
 707   // Since we've patched some oops in the nmethod,
 708   // (re)register it with the heap.
 709   Universe::heap()->register_nmethod(nm);
 710 }
 711 
 712 void JVMCINMethodData::clear_nmethod_mirror(nmethod* nm) {
 713   if (_nmethod_mirror_index != -1) {
 714     oop* addr = nm->oop_addr_at(_nmethod_mirror_index);
 715     *addr = NULL;
 716   }
 717 }
 718 
 719 void JVMCINMethodData::invalidate_nmethod_mirror(nmethod* nm) {
 720   oop nmethod_mirror = get_nmethod_mirror(nm, /* phantom_ref */ true);
 721   if (nmethod_mirror == NULL) {
 722     return;
 723   }
 724 
 725   // Update the values in the mirror if it still refers to nm.
 726   // We cannot use JVMCIObject to wrap the mirror as this is called
 727   // during GC, forbidding the creation of JNIHandles.
 728   JVMCIEnv* jvmciEnv = NULL;
 729   nmethod* current = (nmethod*) HotSpotJVMCI::InstalledCode::address(jvmciEnv, nmethod_mirror);
 730   if (nm == current) {
 731     if (!nm->is_alive()) {
 732       // Break the link from the mirror to nm such that
 733       // future invocations via the mirror will result in
 734       // an InvalidInstalledCodeException.
 735       HotSpotJVMCI::InstalledCode::set_address(jvmciEnv, nmethod_mirror, 0);
 736       HotSpotJVMCI::InstalledCode::set_entryPoint(jvmciEnv, nmethod_mirror, 0);
 737     } else if (nm->is_not_entrant()) {
 738       // Zero the entry point so any new invocation will fail but keep
 739       // the address link around that so that existing activations can
 740       // be deoptimized via the mirror (i.e. JVMCIEnv::invalidate_installed_code).
 741       HotSpotJVMCI::InstalledCode::set_entryPoint(jvmciEnv, nmethod_mirror, 0);
 742     }
 743   }
 744 }
 745 
 746 void JVMCIRuntime::initialize_HotSpotJVMCIRuntime(JVMCI_TRAPS) {
 747   if (is_HotSpotJVMCIRuntime_initialized()) {
 748     if (JVMCIENV->is_hotspot() && UseJVMCINativeLibrary) {
 749       JVMCI_THROW_MSG(InternalError, "JVMCI has already been enabled in the JVMCI shared library");
 750     }
 751   }
 752 
 753   initialize(JVMCIENV);
 754 
 755   // This should only be called in the context of the JVMCI class being initialized
 756   JVMCIObject result = JVMCIENV->call_HotSpotJVMCIRuntime_runtime(JVMCI_CHECK);
 757 
 758   _HotSpotJVMCIRuntime_instance = JVMCIENV->make_global(result);
 759 }
 760 
 761 void JVMCIRuntime::initialize(JVMCIEnv* JVMCIENV) {
 762   assert(this != NULL, "sanity");
 763   // Check first without JVMCI_lock
 764   if (_initialized) {
 765     return;
 766   }
 767 
 768   MutexLocker locker(JVMCI_lock);
 769   // Check again under JVMCI_lock
 770   if (_initialized) {
 771     return;
 772   }
 773 
 774   while (_being_initialized) {
 775     JVMCI_lock->wait();
 776     if (_initialized) {
 777       return;
 778     }
 779   }
 780 
 781   _being_initialized = true;
 782 
 783   {
 784     MutexUnlocker unlock(JVMCI_lock);
 785 
 786     HandleMark hm;
 787     ResourceMark rm;
 788     JavaThread* THREAD = JavaThread::current();
 789     if (JVMCIENV->is_hotspot()) {
 790       HotSpotJVMCI::compute_offsets(CHECK_EXIT);
 791     } else {
 792       JNIAccessMark jni(JVMCIENV);
 793 
 794       JNIJVMCI::initialize_ids(jni.env());
 795       if (jni()->ExceptionCheck()) {
 796         jni()->ExceptionDescribe();
 797         fatal("JNI exception during init");
 798       }
 799     }
 800     create_jvmci_primitive_type(T_BOOLEAN, JVMCI_CHECK_EXIT_((void)0));
 801     create_jvmci_primitive_type(T_BYTE, JVMCI_CHECK_EXIT_((void)0));
 802     create_jvmci_primitive_type(T_CHAR, JVMCI_CHECK_EXIT_((void)0));
 803     create_jvmci_primitive_type(T_SHORT, JVMCI_CHECK_EXIT_((void)0));
 804     create_jvmci_primitive_type(T_INT, JVMCI_CHECK_EXIT_((void)0));
 805     create_jvmci_primitive_type(T_LONG, JVMCI_CHECK_EXIT_((void)0));
 806     create_jvmci_primitive_type(T_FLOAT, JVMCI_CHECK_EXIT_((void)0));
 807     create_jvmci_primitive_type(T_DOUBLE, JVMCI_CHECK_EXIT_((void)0));
 808     create_jvmci_primitive_type(T_VOID, JVMCI_CHECK_EXIT_((void)0));
 809 
 810     if (!JVMCIENV->is_hotspot()) {
 811       JVMCIENV->copy_saved_properties();
 812     }
 813   }
 814 
 815   _initialized = true;
 816   _being_initialized = false;
 817   JVMCI_lock->notify_all();
 818 }
 819 
 820 JVMCIObject JVMCIRuntime::create_jvmci_primitive_type(BasicType type, JVMCI_TRAPS) {
 821   Thread* THREAD = Thread::current();
 822   // These primitive types are long lived and are created before the runtime is fully set up
 823   // so skip registering them for scanning.
 824   JVMCIObject mirror = JVMCIENV->get_object_constant(java_lang_Class::primitive_mirror(type), false, true);
 825   if (JVMCIENV->is_hotspot()) {
 826     JavaValue result(T_OBJECT);
 827     JavaCallArguments args;
 828     args.push_oop(Handle(THREAD, HotSpotJVMCI::resolve(mirror)));
 829     args.push_int(type2char(type));
 830     JavaCalls::call_static(&result, HotSpotJVMCI::HotSpotResolvedPrimitiveType::klass(), vmSymbols::fromMetaspace_name(), vmSymbols::primitive_fromMetaspace_signature(), &args, CHECK_(JVMCIObject()));
 831 
 832     return JVMCIENV->wrap(JNIHandles::make_local((oop)result.get_jobject()));
 833   } else {
 834     JNIAccessMark jni(JVMCIENV);
 835     jobject result = jni()->CallStaticObjectMethod(JNIJVMCI::HotSpotResolvedPrimitiveType::clazz(),
 836                                            JNIJVMCI::HotSpotResolvedPrimitiveType_fromMetaspace_method(),
 837                                            mirror.as_jobject(), type2char(type));
 838     if (jni()->ExceptionCheck()) {
 839       return JVMCIObject();
 840     }
 841     return JVMCIENV->wrap(result);
 842   }
 843 }
 844 
 845 void JVMCIRuntime::initialize_JVMCI(JVMCI_TRAPS) {
 846   if (!is_HotSpotJVMCIRuntime_initialized()) {
 847     initialize(JVMCI_CHECK);
 848     JVMCIENV->call_JVMCI_getRuntime(JVMCI_CHECK);
 849   }
 850 }
 851 
 852 JVMCIObject JVMCIRuntime::get_HotSpotJVMCIRuntime(JVMCI_TRAPS) {
 853   initialize(JVMCIENV);
 854   initialize_JVMCI(JVMCI_CHECK_(JVMCIObject()));
 855   return _HotSpotJVMCIRuntime_instance;
 856 }
 857 
 858 
 859 // private void CompilerToVM.registerNatives()
 860 JVM_ENTRY_NO_ENV(void, JVM_RegisterJVMCINatives(JNIEnv *env, jclass c2vmClass))
 861   JNI_JVMCIENV(thread, env);
 862 
 863   if (!EnableJVMCI) {
 864     JVMCI_THROW_MSG(InternalError, "JVMCI is not enabled");
 865   }
 866 
 867   JVMCIENV->runtime()->initialize(JVMCIENV);
 868 
 869   {
 870     ResourceMark rm;
 871     HandleMark hm(thread);
 872     ThreadToNativeFromVM trans(thread);
 873 
 874     // Ensure _non_oop_bits is initialized
 875     Universe::non_oop_word();
 876 
 877     if (JNI_OK != env->RegisterNatives(c2vmClass, CompilerToVM::methods, CompilerToVM::methods_count())) {
 878       if (!env->ExceptionCheck()) {
 879         for (int i = 0; i < CompilerToVM::methods_count(); i++) {
 880           if (JNI_OK != env->RegisterNatives(c2vmClass, CompilerToVM::methods + i, 1)) {
 881             guarantee(false, "Error registering JNI method %s%s", CompilerToVM::methods[i].name, CompilerToVM::methods[i].signature);
 882             break;
 883           }
 884         }
 885       } else {
 886         env->ExceptionDescribe();
 887       }
 888       guarantee(false, "Failed registering CompilerToVM native methods");
 889     }
 890   }
 891 JVM_END
 892 
 893 
 894 void JVMCIRuntime::shutdown() {
 895   if (is_HotSpotJVMCIRuntime_initialized()) {
 896     _shutdown_called = true;
 897 
 898     THREAD_JVMCIENV(JavaThread::current());
 899     JVMCIENV->call_HotSpotJVMCIRuntime_shutdown(_HotSpotJVMCIRuntime_instance);
 900   }
 901 }
 902 
 903 void JVMCIRuntime::bootstrap_finished(TRAPS) {
 904   if (is_HotSpotJVMCIRuntime_initialized()) {
 905     THREAD_JVMCIENV(JavaThread::current());
 906     JVMCIENV->call_HotSpotJVMCIRuntime_bootstrapFinished(_HotSpotJVMCIRuntime_instance, JVMCIENV);
 907   }
 908 }
 909 
 910 void JVMCIRuntime::describe_pending_hotspot_exception(JavaThread* THREAD, bool clear) {
 911   if (HAS_PENDING_EXCEPTION) {
 912     Handle exception(THREAD, PENDING_EXCEPTION);
 913     const char* exception_file = THREAD->exception_file();
 914     int exception_line = THREAD->exception_line();
 915     CLEAR_PENDING_EXCEPTION;
 916     if (exception->is_a(SystemDictionary::ThreadDeath_klass())) {
 917       // Don't print anything if we are being killed.
 918     } else {
 919       java_lang_Throwable::print_stack_trace(exception, tty);
 920 
 921       // Clear and ignore any exceptions raised during printing
 922       CLEAR_PENDING_EXCEPTION;
 923     }
 924     if (!clear) {
 925       THREAD->set_pending_exception(exception(), exception_file, exception_line);
 926     }
 927   }
 928 }
 929 
 930 
 931 void JVMCIRuntime::exit_on_pending_exception(JVMCIEnv* JVMCIENV, const char* message) {
 932   JavaThread* THREAD = JavaThread::current();
 933 
 934   static volatile int report_error = 0;
 935   if (!report_error && Atomic::cmpxchg(1, &report_error, 0) == 0) {
 936     // Only report an error once
 937     tty->print_raw_cr(message);
 938     if (JVMCIENV != NULL) {
 939       JVMCIENV->describe_pending_exception(true);
 940     } else {
 941       describe_pending_hotspot_exception(THREAD, true);
 942     }
 943   } else {
 944     // Allow error reporting thread to print the stack trace.
 945     THREAD->sleep(200);
 946   }
 947 
 948   before_exit(THREAD);
 949   vm_exit(-1);
 950 }
 951 
 952 // ------------------------------------------------------------------
 953 // Note: the logic of this method should mirror the logic of
 954 // constantPoolOopDesc::verify_constant_pool_resolve.
 955 bool JVMCIRuntime::check_klass_accessibility(Klass* accessing_klass, Klass* resolved_klass) {
 956   if (accessing_klass->is_objArray_klass()) {
 957     accessing_klass = ObjArrayKlass::cast(accessing_klass)->bottom_klass();
 958   }
 959   if (!accessing_klass->is_instance_klass()) {
 960     return true;
 961   }
 962 
 963   if (resolved_klass->is_objArray_klass()) {
 964     // Find the element klass, if this is an array.
 965     resolved_klass = ObjArrayKlass::cast(resolved_klass)->bottom_klass();
 966   }
 967   if (resolved_klass->is_instance_klass()) {
 968     Reflection::VerifyClassAccessResults result =
 969       Reflection::verify_class_access(accessing_klass, InstanceKlass::cast(resolved_klass), true);
 970     return result == Reflection::ACCESS_OK;
 971   }
 972   return true;
 973 }
 974 
 975 // ------------------------------------------------------------------
 976 Klass* JVMCIRuntime::get_klass_by_name_impl(Klass*& accessing_klass,
 977                                           const constantPoolHandle& cpool,
 978                                           Symbol* sym,
 979                                           bool require_local) {
 980   JVMCI_EXCEPTION_CONTEXT;
 981 
 982   // Now we need to check the SystemDictionary
 983   if (sym->char_at(0) == JVM_SIGNATURE_CLASS &&
 984       sym->char_at(sym->utf8_length()-1) == JVM_SIGNATURE_ENDCLASS) {
 985     // This is a name from a signature.  Strip off the trimmings.
 986     // Call recursive to keep scope of strippedsym.
 987     TempNewSymbol strippedsym = SymbolTable::new_symbol(sym->as_utf8()+1,
 988                                                         sym->utf8_length()-2);
 989     return get_klass_by_name_impl(accessing_klass, cpool, strippedsym, require_local);
 990   }
 991 
 992   Handle loader(THREAD, (oop)NULL);
 993   Handle domain(THREAD, (oop)NULL);
 994   if (accessing_klass != NULL) {
 995     loader = Handle(THREAD, accessing_klass->class_loader());
 996     domain = Handle(THREAD, accessing_klass->protection_domain());
 997   }
 998 
 999   Klass* found_klass;
1000   {
1001     ttyUnlocker ttyul;  // release tty lock to avoid ordering problems
1002     MutexLocker ml(Compile_lock);
1003     if (!require_local) {
1004       found_klass = SystemDictionary::find_constrained_instance_or_array_klass(sym, loader, CHECK_NULL);
1005     } else {
1006       found_klass = SystemDictionary::find_instance_or_array_klass(sym, loader, domain, CHECK_NULL);
1007     }
1008   }
1009 
1010   // If we fail to find an array klass, look again for its element type.
1011   // The element type may be available either locally or via constraints.
1012   // In either case, if we can find the element type in the system dictionary,
1013   // we must build an array type around it.  The CI requires array klasses
1014   // to be loaded if their element klasses are loaded, except when memory
1015   // is exhausted.
1016   if (sym->char_at(0) == JVM_SIGNATURE_ARRAY &&
1017       (sym->char_at(1) == JVM_SIGNATURE_ARRAY || sym->char_at(1) == JVM_SIGNATURE_CLASS)) {
1018     // We have an unloaded array.
1019     // Build it on the fly if the element class exists.
1020     TempNewSymbol elem_sym = SymbolTable::new_symbol(sym->as_utf8()+1,
1021                                                      sym->utf8_length()-1);
1022 
1023     // Get element Klass recursively.
1024     Klass* elem_klass =
1025       get_klass_by_name_impl(accessing_klass,
1026                              cpool,
1027                              elem_sym,
1028                              require_local);
1029     if (elem_klass != NULL) {
1030       // Now make an array for it
1031       return elem_klass->array_klass(THREAD);
1032     }
1033   }
1034 
1035   if (found_klass == NULL && !cpool.is_null() && cpool->has_preresolution()) {
1036     // Look inside the constant pool for pre-resolved class entries.
1037     for (int i = cpool->length() - 1; i >= 1; i--) {
1038       if (cpool->tag_at(i).is_klass()) {
1039         Klass*  kls = cpool->resolved_klass_at(i);
1040         if (kls->name() == sym) {
1041           return kls;
1042         }
1043       }
1044     }
1045   }
1046 
1047   return found_klass;
1048 }
1049 
1050 // ------------------------------------------------------------------
1051 Klass* JVMCIRuntime::get_klass_by_name(Klass* accessing_klass,
1052                                   Symbol* klass_name,
1053                                   bool require_local) {
1054   ResourceMark rm;
1055   constantPoolHandle cpool;
1056   return get_klass_by_name_impl(accessing_klass,
1057                                                  cpool,
1058                                                  klass_name,
1059                                                  require_local);
1060 }
1061 
1062 // ------------------------------------------------------------------
1063 // Implementation of get_klass_by_index.
1064 Klass* JVMCIRuntime::get_klass_by_index_impl(const constantPoolHandle& cpool,
1065                                         int index,
1066                                         bool& is_accessible,
1067                                         Klass* accessor) {
1068   JVMCI_EXCEPTION_CONTEXT;
1069   Klass* klass = ConstantPool::klass_at_if_loaded(cpool, index);
1070   Symbol* klass_name = NULL;
1071   if (klass == NULL) {
1072     klass_name = cpool->klass_name_at(index);
1073   }
1074 
1075   if (klass == NULL) {
1076     // Not found in constant pool.  Use the name to do the lookup.
1077     Klass* k = get_klass_by_name_impl(accessor,
1078                                         cpool,
1079                                         klass_name,
1080                                         false);
1081     // Calculate accessibility the hard way.
1082     if (k == NULL) {
1083       is_accessible = false;
1084     } else if (k->class_loader() != accessor->class_loader() &&
1085                get_klass_by_name_impl(accessor, cpool, k->name(), true) == NULL) {
1086       // Loaded only remotely.  Not linked yet.
1087       is_accessible = false;
1088     } else {
1089       // Linked locally, and we must also check public/private, etc.
1090       is_accessible = check_klass_accessibility(accessor, k);
1091     }
1092     if (!is_accessible) {
1093       return NULL;
1094     }
1095     return k;
1096   }
1097 
1098   // It is known to be accessible, since it was found in the constant pool.
1099   is_accessible = true;
1100   return klass;
1101 }
1102 
1103 // ------------------------------------------------------------------
1104 // Get a klass from the constant pool.
1105 Klass* JVMCIRuntime::get_klass_by_index(const constantPoolHandle& cpool,
1106                                    int index,
1107                                    bool& is_accessible,
1108                                    Klass* accessor) {
1109   ResourceMark rm;
1110   Klass* result = get_klass_by_index_impl(cpool, index, is_accessible, accessor);
1111   return result;
1112 }
1113 
1114 // ------------------------------------------------------------------
1115 // Implementation of get_field_by_index.
1116 //
1117 // Implementation note: the results of field lookups are cached
1118 // in the accessor klass.
1119 void JVMCIRuntime::get_field_by_index_impl(InstanceKlass* klass, fieldDescriptor& field_desc,
1120                                         int index) {
1121   JVMCI_EXCEPTION_CONTEXT;
1122 
1123   assert(klass->is_linked(), "must be linked before using its constant-pool");
1124 
1125   constantPoolHandle cpool(thread, klass->constants());
1126 
1127   // Get the field's name, signature, and type.
1128   Symbol* name  = cpool->name_ref_at(index);
1129 
1130   int nt_index = cpool->name_and_type_ref_index_at(index);
1131   int sig_index = cpool->signature_ref_index_at(nt_index);
1132   Symbol* signature = cpool->symbol_at(sig_index);
1133 
1134   // Get the field's declared holder.
1135   int holder_index = cpool->klass_ref_index_at(index);
1136   bool holder_is_accessible;
1137   Klass* declared_holder = get_klass_by_index(cpool, holder_index,
1138                                                holder_is_accessible,
1139                                                klass);
1140 
1141   // The declared holder of this field may not have been loaded.
1142   // Bail out with partial field information.
1143   if (!holder_is_accessible) {
1144     return;
1145   }
1146 
1147 
1148   // Perform the field lookup.
1149   Klass*  canonical_holder =
1150     InstanceKlass::cast(declared_holder)->find_field(name, signature, &field_desc);
1151   if (canonical_holder == NULL) {
1152     return;
1153   }
1154 
1155   assert(canonical_holder == field_desc.field_holder(), "just checking");
1156 }
1157 
1158 // ------------------------------------------------------------------
1159 // Get a field by index from a klass's constant pool.
1160 void JVMCIRuntime::get_field_by_index(InstanceKlass* accessor, fieldDescriptor& fd, int index) {
1161   ResourceMark rm;
1162   return get_field_by_index_impl(accessor, fd, index);
1163 }
1164 
1165 // ------------------------------------------------------------------
1166 // Perform an appropriate method lookup based on accessor, holder,
1167 // name, signature, and bytecode.
1168 methodHandle JVMCIRuntime::lookup_method(InstanceKlass* accessor,
1169                                Klass*        holder,
1170                                Symbol*       name,
1171                                Symbol*       sig,
1172                                Bytecodes::Code bc,
1173                                constantTag   tag) {
1174   // Accessibility checks are performed in JVMCIEnv::get_method_by_index_impl().
1175   assert(check_klass_accessibility(accessor, holder), "holder not accessible");
1176 
1177   methodHandle dest_method;
1178   LinkInfo link_info(holder, name, sig, accessor, LinkInfo::needs_access_check, tag);
1179   switch (bc) {
1180   case Bytecodes::_invokestatic:
1181     dest_method =
1182       LinkResolver::resolve_static_call_or_null(link_info);
1183     break;
1184   case Bytecodes::_invokespecial:
1185     dest_method =
1186       LinkResolver::resolve_special_call_or_null(link_info);
1187     break;
1188   case Bytecodes::_invokeinterface:
1189     dest_method =
1190       LinkResolver::linktime_resolve_interface_method_or_null(link_info);
1191     break;
1192   case Bytecodes::_invokevirtual:
1193     dest_method =
1194       LinkResolver::linktime_resolve_virtual_method_or_null(link_info);
1195     break;
1196   default: ShouldNotReachHere();
1197   }
1198 
1199   return dest_method;
1200 }
1201 
1202 
1203 // ------------------------------------------------------------------
1204 methodHandle JVMCIRuntime::get_method_by_index_impl(const constantPoolHandle& cpool,
1205                                           int index, Bytecodes::Code bc,
1206                                           InstanceKlass* accessor) {
1207   if (bc == Bytecodes::_invokedynamic) {
1208     ConstantPoolCacheEntry* cpce = cpool->invokedynamic_cp_cache_entry_at(index);
1209     bool is_resolved = !cpce->is_f1_null();
1210     if (is_resolved) {
1211       // Get the invoker Method* from the constant pool.
1212       // (The appendix argument, if any, will be noted in the method's signature.)
1213       Method* adapter = cpce->f1_as_method();
1214       return methodHandle(adapter);
1215     }
1216 
1217     return NULL;
1218   }
1219 
1220   int holder_index = cpool->klass_ref_index_at(index);
1221   bool holder_is_accessible;
1222   Klass* holder = get_klass_by_index_impl(cpool, holder_index, holder_is_accessible, accessor);
1223 
1224   // Get the method's name and signature.
1225   Symbol* name_sym = cpool->name_ref_at(index);
1226   Symbol* sig_sym  = cpool->signature_ref_at(index);
1227 
1228   if (cpool->has_preresolution()
1229       || ((holder == SystemDictionary::MethodHandle_klass() || holder == SystemDictionary::VarHandle_klass()) &&
1230           MethodHandles::is_signature_polymorphic_name(holder, name_sym))) {
1231     // Short-circuit lookups for JSR 292-related call sites.
1232     // That is, do not rely only on name-based lookups, because they may fail
1233     // if the names are not resolvable in the boot class loader (7056328).
1234     switch (bc) {
1235     case Bytecodes::_invokevirtual:
1236     case Bytecodes::_invokeinterface:
1237     case Bytecodes::_invokespecial:
1238     case Bytecodes::_invokestatic:
1239       {
1240         Method* m = ConstantPool::method_at_if_loaded(cpool, index);
1241         if (m != NULL) {
1242           return m;
1243         }
1244       }
1245       break;
1246     default:
1247       break;
1248     }
1249   }
1250 
1251   if (holder_is_accessible) { // Our declared holder is loaded.
1252     constantTag tag = cpool->tag_ref_at(index);
1253     methodHandle m = lookup_method(accessor, holder, name_sym, sig_sym, bc, tag);
1254     if (!m.is_null()) {
1255       // We found the method.
1256       return m;
1257     }
1258   }
1259 
1260   // Either the declared holder was not loaded, or the method could
1261   // not be found.
1262 
1263   return NULL;
1264 }
1265 
1266 // ------------------------------------------------------------------
1267 InstanceKlass* JVMCIRuntime::get_instance_klass_for_declared_method_holder(Klass* method_holder) {
1268   // For the case of <array>.clone(), the method holder can be an ArrayKlass*
1269   // instead of an InstanceKlass*.  For that case simply pretend that the
1270   // declared holder is Object.clone since that's where the call will bottom out.
1271   if (method_holder->is_instance_klass()) {
1272     return InstanceKlass::cast(method_holder);
1273   } else if (method_holder->is_array_klass()) {
1274     return SystemDictionary::Object_klass();
1275   } else {
1276     ShouldNotReachHere();
1277   }
1278   return NULL;
1279 }
1280 
1281 
1282 // ------------------------------------------------------------------
1283 methodHandle JVMCIRuntime::get_method_by_index(const constantPoolHandle& cpool,
1284                                      int index, Bytecodes::Code bc,
1285                                      InstanceKlass* accessor) {
1286   ResourceMark rm;
1287   return get_method_by_index_impl(cpool, index, bc, accessor);
1288 }
1289 
1290 // ------------------------------------------------------------------
1291 // Check for changes to the system dictionary during compilation
1292 // class loads, evolution, breakpoints
1293 JVMCI::CodeInstallResult JVMCIRuntime::validate_compile_task_dependencies(Dependencies* dependencies, JVMCICompileState* compile_state, char** failure_detail) {
1294   // If JVMTI capabilities were enabled during compile, the compilation is invalidated.
1295   if (compile_state != NULL && compile_state->jvmti_state_changed()) {
1296     *failure_detail = (char*) "Jvmti state change during compilation invalidated dependencies";
1297     return JVMCI::dependencies_failed;
1298   }
1299 
1300   CompileTask* task = compile_state == NULL ? NULL : compile_state->task();
1301   Dependencies::DepType result = dependencies->validate_dependencies(task, failure_detail);
1302   if (result == Dependencies::end_marker) {
1303     return JVMCI::ok;
1304   }
1305 
1306   return JVMCI::dependencies_failed;
1307 }
1308 
1309 // Reports a pending exception and exits the VM.
1310 static void fatal_exception_in_compile(JVMCIEnv* JVMCIENV, JavaThread* thread, const char* msg) {
1311   // Only report a fatal JVMCI compilation exception once
1312   static volatile int report_init_failure = 0;
1313   if (!report_init_failure && Atomic::cmpxchg(1, &report_init_failure, 0) == 0) {
1314       tty->print_cr("%s:", msg);
1315       JVMCIENV->describe_pending_exception(true);
1316   }
1317   JVMCIENV->clear_pending_exception();
1318   before_exit(thread);
1319   vm_exit(-1);
1320 }
1321 
1322 void JVMCIRuntime::compile_method(JVMCIEnv* JVMCIENV, JVMCICompiler* compiler, const methodHandle& method, int entry_bci) {
1323   JVMCI_EXCEPTION_CONTEXT
1324 
1325   JVMCICompileState* compile_state = JVMCIENV->compile_state();
1326 
1327   bool is_osr = entry_bci != InvocationEntryBci;
1328   if (compiler->is_bootstrapping() && is_osr) {
1329     // no OSR compilations during bootstrap - the compiler is just too slow at this point,
1330     // and we know that there are no endless loops
1331     compile_state->set_failure(true, "No OSR during boostrap");
1332     return;
1333   }
1334   if (JVMCI::shutdown_called()) {
1335     compile_state->set_failure(false, "Avoiding compilation during shutdown");
1336     return;
1337   }
1338 
1339   HandleMark hm;
1340   JVMCIObject receiver = get_HotSpotJVMCIRuntime(JVMCIENV);
1341   if (JVMCIENV->has_pending_exception()) {
1342     fatal_exception_in_compile(JVMCIENV, thread, "Exception during HotSpotJVMCIRuntime initialization");
1343   }
1344   JVMCIObject jvmci_method = JVMCIENV->get_jvmci_method(method, JVMCIENV);
1345   if (JVMCIENV->has_pending_exception()) {
1346     JVMCIENV->describe_pending_exception(true);
1347     compile_state->set_failure(false, "exception getting JVMCI wrapper method");
1348     return;
1349   }
1350 
1351   JVMCIObject result_object = JVMCIENV->call_HotSpotJVMCIRuntime_compileMethod(receiver, jvmci_method, entry_bci,
1352                                                                      (jlong) compile_state, compile_state->task()->compile_id());
1353   if (!JVMCIENV->has_pending_exception()) {
1354     if (result_object.is_non_null()) {
1355       JVMCIObject failure_message = JVMCIENV->get_HotSpotCompilationRequestResult_failureMessage(result_object);
1356       if (failure_message.is_non_null()) {
1357         // Copy failure reason into resource memory first ...
1358         const char* failure_reason = JVMCIENV->as_utf8_string(failure_message);
1359         // ... and then into the C heap.
1360         failure_reason = os::strdup(failure_reason, mtJVMCI);
1361         bool retryable = JVMCIENV->get_HotSpotCompilationRequestResult_retry(result_object) != 0;
1362         compile_state->set_failure(retryable, failure_reason, true);
1363       } else {
1364         if (compile_state->task()->code() == NULL) {
1365           compile_state->set_failure(true, "no nmethod produced");
1366         } else {
1367           compile_state->task()->set_num_inlined_bytecodes(JVMCIENV->get_HotSpotCompilationRequestResult_inlinedBytecodes(result_object));
1368           compiler->inc_methods_compiled();
1369         }
1370       }
1371     } else {
1372       assert(false, "JVMCICompiler.compileMethod should always return non-null");
1373     }
1374   } else {
1375     // An uncaught exception here implies failure during compiler initialization.
1376     // The only sensible thing to do here is to exit the VM.
1377     fatal_exception_in_compile(JVMCIENV, thread, "Exception during JVMCI compiler initialization");
1378   }
1379   if (compiler->is_bootstrapping()) {
1380     compiler->set_bootstrap_compilation_request_handled();
1381   }
1382 }
1383 
1384 
1385 // ------------------------------------------------------------------
1386 JVMCI::CodeInstallResult JVMCIRuntime::register_method(JVMCIEnv* JVMCIENV,
1387                                 const methodHandle& method,
1388                                 nmethod*& nm,
1389                                 int entry_bci,
1390                                 CodeOffsets* offsets,
1391                                 int orig_pc_offset,
1392                                 CodeBuffer* code_buffer,
1393                                 int frame_words,
1394                                 OopMapSet* oop_map_set,
1395                                 ExceptionHandlerTable* handler_table,
1396                                 ImplicitExceptionTable* implicit_exception_table,
1397                                 AbstractCompiler* compiler,
1398                                 DebugInformationRecorder* debug_info,
1399                                 Dependencies* dependencies,
1400                                 int compile_id,
1401                                 bool has_unsafe_access,
1402                                 bool has_wide_vector,
1403                                 JVMCIObject compiled_code,
1404                                 JVMCIObject nmethod_mirror,
1405                                 FailedSpeculation** failed_speculations,
1406                                 char* speculations,
1407                                 int speculations_len) {
1408   JVMCI_EXCEPTION_CONTEXT;
1409   nm = NULL;
1410   int comp_level = CompLevel_full_optimization;
1411   char* failure_detail = NULL;
1412 
1413   bool install_default = JVMCIENV->get_HotSpotNmethod_isDefault(nmethod_mirror) != 0;
1414   assert(JVMCIENV->isa_HotSpotNmethod(nmethod_mirror), "must be");
1415   JVMCIObject name = JVMCIENV->get_InstalledCode_name(nmethod_mirror);
1416   const char* nmethod_mirror_name = name.is_null() ? NULL : JVMCIENV->as_utf8_string(name);
1417   int nmethod_mirror_index;
1418   if (!install_default) {
1419     // Reserve or initialize mirror slot in the oops table.
1420     OopRecorder* oop_recorder = debug_info->oop_recorder();
1421     nmethod_mirror_index = oop_recorder->allocate_oop_index(nmethod_mirror.is_hotspot() ? nmethod_mirror.as_jobject() : NULL);
1422   } else {
1423     // A default HotSpotNmethod mirror is never tracked by the nmethod
1424     nmethod_mirror_index = -1;
1425   }
1426 
1427   JVMCI::CodeInstallResult result;
1428   {
1429     // To prevent compile queue updates.
1430     MutexLocker locker(MethodCompileQueue_lock, THREAD);
1431 
1432     // Prevent SystemDictionary::add_to_hierarchy from running
1433     // and invalidating our dependencies until we install this method.
1434     MutexLocker ml(Compile_lock);
1435 
1436     // Encode the dependencies now, so we can check them right away.
1437     dependencies->encode_content_bytes();
1438 
1439     // Record the dependencies for the current compile in the log
1440     if (LogCompilation) {
1441       for (Dependencies::DepStream deps(dependencies); deps.next(); ) {
1442         deps.log_dependency();
1443       }
1444     }
1445 
1446     // Check for {class loads, evolution, breakpoints} during compilation
1447     result = validate_compile_task_dependencies(dependencies, JVMCIENV->compile_state(), &failure_detail);
1448     if (result != JVMCI::ok) {
1449       // While not a true deoptimization, it is a preemptive decompile.
1450       MethodData* mdp = method()->method_data();
1451       if (mdp != NULL) {
1452         mdp->inc_decompile_count();
1453 #ifdef ASSERT
1454         if (mdp->decompile_count() > (uint)PerMethodRecompilationCutoff) {
1455           ResourceMark m;
1456           tty->print_cr("WARN: endless recompilation of %s. Method was set to not compilable.", method()->name_and_sig_as_C_string());
1457         }
1458 #endif
1459       }
1460 
1461       // All buffers in the CodeBuffer are allocated in the CodeCache.
1462       // If the code buffer is created on each compile attempt
1463       // as in C2, then it must be freed.
1464       //code_buffer->free_blob();
1465     } else {
1466       nm =  nmethod::new_nmethod(method,
1467                                  compile_id,
1468                                  entry_bci,
1469                                  offsets,
1470                                  orig_pc_offset,
1471                                  debug_info, dependencies, code_buffer,
1472                                  frame_words, oop_map_set,
1473                                  handler_table, implicit_exception_table,
1474                                  compiler, comp_level,
1475                                  speculations, speculations_len,
1476                                  nmethod_mirror_index, nmethod_mirror_name, failed_speculations);
1477 
1478 
1479       // Free codeBlobs
1480       if (nm == NULL) {
1481         // The CodeCache is full.  Print out warning and disable compilation.
1482         {
1483           MutexUnlocker ml(Compile_lock);
1484           MutexUnlocker locker(MethodCompileQueue_lock);
1485           CompileBroker::handle_full_code_cache(CodeCache::get_code_blob_type(comp_level));
1486         }
1487       } else {
1488         nm->set_has_unsafe_access(has_unsafe_access);
1489         nm->set_has_wide_vectors(has_wide_vector);
1490 
1491         // Record successful registration.
1492         // (Put nm into the task handle *before* publishing to the Java heap.)
1493         if (JVMCIENV->compile_state() != NULL) {
1494           JVMCIENV->compile_state()->task()->set_code(nm);
1495         }
1496 
1497         JVMCINMethodData* data = nm->jvmci_nmethod_data();
1498         assert(data != NULL, "must be");
1499         if (install_default) {
1500           assert(!nmethod_mirror.is_hotspot() || data->get_nmethod_mirror(nm, /* phantom_ref */ false) == NULL, "must be");
1501           if (entry_bci == InvocationEntryBci) {
1502             if (TieredCompilation) {
1503               // If there is an old version we're done with it
1504               CompiledMethod* old = method->code();
1505               if (TraceMethodReplacement && old != NULL) {
1506                 ResourceMark rm;
1507                 char *method_name = method->name_and_sig_as_C_string();
1508                 tty->print_cr("Replacing method %s", method_name);
1509               }
1510               if (old != NULL ) {
1511                 old->make_not_entrant();
1512               }
1513             }
1514 
1515             LogTarget(Info, nmethod, install) lt;
1516             if (lt.is_enabled()) {
1517               ResourceMark rm;
1518               char *method_name = method->name_and_sig_as_C_string();
1519               lt.print("Installing method (%d) %s [entry point: %p]",
1520                         comp_level, method_name, nm->entry_point());
1521             }
1522             // Allow the code to be executed
1523             MutexLocker ml(CompiledMethod_lock, Mutex::_no_safepoint_check_flag);
1524             if (nm->make_in_use()) {
1525               method->set_code(method, nm);
1526             }
1527           } else {
1528             LogTarget(Info, nmethod, install) lt;
1529             if (lt.is_enabled()) {
1530               ResourceMark rm;
1531               char *method_name = method->name_and_sig_as_C_string();
1532               lt.print("Installing osr method (%d) %s @ %d",
1533                         comp_level, method_name, entry_bci);
1534             }
1535             MutexLocker ml(CompiledMethod_lock, Mutex::_no_safepoint_check_flag);
1536             if (nm->make_in_use()) {
1537               InstanceKlass::cast(method->method_holder())->add_osr_nmethod(nm);
1538             }
1539           }
1540         } else {
1541           assert(!nmethod_mirror.is_hotspot() || data->get_nmethod_mirror(nm, /* phantom_ref */ false) == HotSpotJVMCI::resolve(nmethod_mirror), "must be");
1542         }
1543       }
1544       result = nm != NULL ? JVMCI::ok :JVMCI::cache_full;
1545     }
1546   }
1547 
1548   // String creation must be done outside lock
1549   if (failure_detail != NULL) {
1550     // A failure to allocate the string is silently ignored.
1551     JVMCIObject message = JVMCIENV->create_string(failure_detail, JVMCIENV);
1552     JVMCIENV->set_HotSpotCompiledNmethod_installationFailureMessage(compiled_code, message);
1553   }
1554 
1555   // JVMTI -- compiled method notification (must be done outside lock)
1556   if (nm != NULL) {
1557     nm->post_compiled_method_load_event();
1558   }
1559 
1560   return result;
1561 }