1 /*
   2  * Copyright (c) 1998, 2015, 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 "classfile/systemDictionary.hpp"
  27 #include "classfile/vmSymbols.hpp"
  28 #include "code/codeCache.hpp"
  29 #include "code/compiledIC.hpp"
  30 #include "code/icBuffer.hpp"
  31 #include "code/nmethod.hpp"
  32 #include "code/pcDesc.hpp"
  33 #include "code/scopeDesc.hpp"
  34 #include "code/vtableStubs.hpp"
  35 #include "compiler/compileBroker.hpp"
  36 #include "compiler/compilerOracle.hpp"
  37 #include "compiler/oopMap.hpp"
  38 #include "gc/g1/g1SATBCardTableModRefBS.hpp"
  39 #include "gc/g1/heapRegion.hpp"
  40 #include "gc/shared/barrierSet.hpp"
  41 #include "gc/shared/collectedHeap.hpp"
  42 #include "gc/shared/gcLocker.inline.hpp"
  43 #include "interpreter/bytecode.hpp"
  44 #include "interpreter/interpreter.hpp"
  45 #include "interpreter/linkResolver.hpp"
  46 #include "memory/oopFactory.hpp"
  47 #include "oops/objArrayKlass.hpp"
  48 #include "oops/oop.inline.hpp"
  49 #include "opto/ad.hpp"
  50 #include "opto/addnode.hpp"
  51 #include "opto/callnode.hpp"
  52 #include "opto/cfgnode.hpp"
  53 #include "opto/graphKit.hpp"
  54 #include "opto/machnode.hpp"
  55 #include "opto/matcher.hpp"
  56 #include "opto/memnode.hpp"
  57 #include "opto/mulnode.hpp"
  58 #include "opto/runtime.hpp"
  59 #include "opto/subnode.hpp"
  60 #include "runtime/atomic.inline.hpp"
  61 #include "runtime/fprofiler.hpp"
  62 #include "runtime/handles.inline.hpp"
  63 #include "runtime/interfaceSupport.hpp"
  64 #include "runtime/javaCalls.hpp"
  65 #include "runtime/sharedRuntime.hpp"
  66 #include "runtime/signature.hpp"
  67 #include "runtime/threadCritical.hpp"
  68 #include "runtime/vframe.hpp"
  69 #include "runtime/vframeArray.hpp"
  70 #include "runtime/vframe_hp.hpp"
  71 #include "utilities/copy.hpp"
  72 #include "utilities/preserveException.hpp"
  73 
  74 
  75 // For debugging purposes:
  76 //  To force FullGCALot inside a runtime function, add the following two lines
  77 //
  78 //  Universe::release_fullgc_alot_dummy();
  79 //  MarkSweep::invoke(0, "Debugging");
  80 //
  81 // At command line specify the parameters: -XX:+FullGCALot -XX:FullGCALotStart=100000000
  82 
  83 
  84 
  85 
  86 // Compiled code entry points
  87 address OptoRuntime::_new_instance_Java                           = NULL;
  88 address OptoRuntime::_new_array_Java                              = NULL;
  89 address OptoRuntime::_new_array_nozero_Java                       = NULL;
  90 address OptoRuntime::_multianewarray2_Java                        = NULL;
  91 address OptoRuntime::_multianewarray3_Java                        = NULL;
  92 address OptoRuntime::_multianewarray4_Java                        = NULL;
  93 address OptoRuntime::_multianewarray5_Java                        = NULL;
  94 address OptoRuntime::_multianewarrayN_Java                        = NULL;
  95 address OptoRuntime::_g1_wb_pre_Java                              = NULL;
  96 address OptoRuntime::_g1_wb_post_Java                             = NULL;
  97 address OptoRuntime::_vtable_must_compile_Java                    = NULL;
  98 address OptoRuntime::_complete_monitor_locking_Java               = NULL;
  99 address OptoRuntime::_monitor_notify_Java                         = NULL;
 100 address OptoRuntime::_monitor_notifyAll_Java                      = NULL;
 101 address OptoRuntime::_rethrow_Java                                = NULL;
 102 
 103 address OptoRuntime::_slow_arraycopy_Java                         = NULL;
 104 address OptoRuntime::_register_finalizer_Java                     = NULL;
 105 
 106 # ifdef ENABLE_ZAP_DEAD_LOCALS
 107 address OptoRuntime::_zap_dead_Java_locals_Java                   = NULL;
 108 address OptoRuntime::_zap_dead_native_locals_Java                 = NULL;
 109 # endif
 110 
 111 ExceptionBlob* OptoRuntime::_exception_blob;
 112 
 113 // This should be called in an assertion at the start of OptoRuntime routines
 114 // which are entered from compiled code (all of them)
 115 #ifdef ASSERT
 116 static bool check_compiled_frame(JavaThread* thread) {
 117   assert(thread->last_frame().is_runtime_frame(), "cannot call runtime directly from compiled code");
 118   RegisterMap map(thread, false);
 119   frame caller = thread->last_frame().sender(&map);
 120   assert(caller.is_compiled_frame(), "not being called from compiled like code");
 121   return true;
 122 }
 123 #endif // ASSERT
 124 
 125 
 126 #define gen(env, var, type_func_gen, c_func, fancy_jump, pass_tls, save_arg_regs, return_pc) \
 127   var = generate_stub(env, type_func_gen, CAST_FROM_FN_PTR(address, c_func), #var, fancy_jump, pass_tls, save_arg_regs, return_pc); \
 128   if (var == NULL) { return false; }
 129 
 130 bool OptoRuntime::generate(ciEnv* env) {
 131 
 132   generate_exception_blob();
 133 
 134   // Note: tls: Means fetching the return oop out of the thread-local storage
 135   //
 136   //   variable/name                       type-function-gen              , runtime method                  ,fncy_jp, tls,save_args,retpc
 137   // -------------------------------------------------------------------------------------------------------------------------------
 138   gen(env, _new_instance_Java              , new_instance_Type            , new_instance_C                  ,    0 , true , false, false);
 139   gen(env, _new_array_Java                 , new_array_Type               , new_array_C                     ,    0 , true , false, false);
 140   gen(env, _new_array_nozero_Java          , new_array_Type               , new_array_nozero_C              ,    0 , true , false, false);
 141   gen(env, _multianewarray2_Java           , multianewarray2_Type         , multianewarray2_C               ,    0 , true , false, false);
 142   gen(env, _multianewarray3_Java           , multianewarray3_Type         , multianewarray3_C               ,    0 , true , false, false);
 143   gen(env, _multianewarray4_Java           , multianewarray4_Type         , multianewarray4_C               ,    0 , true , false, false);
 144   gen(env, _multianewarray5_Java           , multianewarray5_Type         , multianewarray5_C               ,    0 , true , false, false);
 145   gen(env, _multianewarrayN_Java           , multianewarrayN_Type         , multianewarrayN_C               ,    0 , true , false, false);
 146   gen(env, _g1_wb_pre_Java                 , g1_wb_pre_Type               , SharedRuntime::g1_wb_pre        ,    0 , false, false, false);
 147   gen(env, _g1_wb_post_Java                , g1_wb_post_Type              , SharedRuntime::g1_wb_post       ,    0 , false, false, false);
 148   gen(env, _complete_monitor_locking_Java  , complete_monitor_enter_Type  , SharedRuntime::complete_monitor_locking_C, 0, false, false, false);
 149   gen(env, _monitor_notify_Java            , monitor_notify_Type          , monitor_notify_C                ,    0 , false, false, false);
 150   gen(env, _monitor_notifyAll_Java         , monitor_notify_Type          , monitor_notifyAll_C             ,    0 , false, false, false);
 151   gen(env, _rethrow_Java                   , rethrow_Type                 , rethrow_C                       ,    2 , true , false, true );
 152 
 153   gen(env, _slow_arraycopy_Java            , slow_arraycopy_Type          , SharedRuntime::slow_arraycopy_C ,    0 , false, false, false);
 154   gen(env, _register_finalizer_Java        , register_finalizer_Type      , register_finalizer              ,    0 , false, false, false);
 155 
 156 # ifdef ENABLE_ZAP_DEAD_LOCALS
 157   gen(env, _zap_dead_Java_locals_Java      , zap_dead_locals_Type         , zap_dead_Java_locals_C          ,    0 , false, true , false );
 158   gen(env, _zap_dead_native_locals_Java    , zap_dead_locals_Type         , zap_dead_native_locals_C        ,    0 , false, true , false );
 159 # endif
 160   return true;
 161 }
 162 
 163 #undef gen
 164 
 165 
 166 // Helper method to do generation of RunTimeStub's
 167 address OptoRuntime::generate_stub( ciEnv* env,
 168                                     TypeFunc_generator gen, address C_function,
 169                                     const char *name, int is_fancy_jump,
 170                                     bool pass_tls,
 171                                     bool save_argument_registers,
 172                                     bool return_pc ) {
 173   ResourceMark rm;
 174   Compile C( env, gen, C_function, name, is_fancy_jump, pass_tls, save_argument_registers, return_pc );
 175   return  C.stub_entry_point();
 176 }
 177 
 178 const char* OptoRuntime::stub_name(address entry) {
 179 #ifndef PRODUCT
 180   CodeBlob* cb = CodeCache::find_blob(entry);
 181   RuntimeStub* rs =(RuntimeStub *)cb;
 182   assert(rs != NULL && rs->is_runtime_stub(), "not a runtime stub");
 183   return rs->name();
 184 #else
 185   // Fast implementation for product mode (maybe it should be inlined too)
 186   return "runtime stub";
 187 #endif
 188 }
 189 
 190 
 191 //=============================================================================
 192 // Opto compiler runtime routines
 193 //=============================================================================
 194 
 195 
 196 //=============================allocation======================================
 197 // We failed the fast-path allocation.  Now we need to do a scavenge or GC
 198 // and try allocation again.
 199 
 200 void OptoRuntime::new_store_pre_barrier(JavaThread* thread) {
 201   // After any safepoint, just before going back to compiled code,
 202   // we inform the GC that we will be doing initializing writes to
 203   // this object in the future without emitting card-marks, so
 204   // GC may take any compensating steps.
 205   // NOTE: Keep this code consistent with GraphKit::store_barrier.
 206 
 207   oop new_obj = thread->vm_result();
 208   if (new_obj == NULL)  return;
 209 
 210   assert(Universe::heap()->can_elide_tlab_store_barriers(),
 211          "compiler must check this first");
 212   // GC may decide to give back a safer copy of new_obj.
 213   new_obj = Universe::heap()->new_store_pre_barrier(thread, new_obj);
 214   thread->set_vm_result(new_obj);
 215 }
 216 
 217 // object allocation
 218 JRT_BLOCK_ENTRY(void, OptoRuntime::new_instance_C(Klass* klass, JavaThread* thread))
 219   JRT_BLOCK;
 220 #ifndef PRODUCT
 221   SharedRuntime::_new_instance_ctr++;         // new instance requires GC
 222 #endif
 223   assert(check_compiled_frame(thread), "incorrect caller");
 224 
 225   // These checks are cheap to make and support reflective allocation.
 226   int lh = klass->layout_helper();
 227   if (Klass::layout_helper_needs_slow_path(lh)
 228       || !InstanceKlass::cast(klass)->is_initialized()) {
 229     KlassHandle kh(THREAD, klass);
 230     kh->check_valid_for_instantiation(false, THREAD);
 231     if (!HAS_PENDING_EXCEPTION) {
 232       InstanceKlass::cast(kh())->initialize(THREAD);
 233     }
 234     if (!HAS_PENDING_EXCEPTION) {
 235       klass = kh();
 236     } else {
 237       klass = NULL;
 238     }
 239   }
 240 
 241   if (klass != NULL) {
 242     // Scavenge and allocate an instance.
 243     oop result = InstanceKlass::cast(klass)->allocate_instance(THREAD);
 244     thread->set_vm_result(result);
 245 
 246     // Pass oops back through thread local storage.  Our apparent type to Java
 247     // is that we return an oop, but we can block on exit from this routine and
 248     // a GC can trash the oop in C's return register.  The generated stub will
 249     // fetch the oop from TLS after any possible GC.
 250   }
 251 
 252   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 253   JRT_BLOCK_END;
 254 
 255   if (GraphKit::use_ReduceInitialCardMarks()) {
 256     // inform GC that we won't do card marks for initializing writes.
 257     new_store_pre_barrier(thread);
 258   }
 259 JRT_END
 260 
 261 
 262 // array allocation
 263 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_C(Klass* array_type, int len, JavaThread *thread))
 264   JRT_BLOCK;
 265 #ifndef PRODUCT
 266   SharedRuntime::_new_array_ctr++;            // new array requires GC
 267 #endif
 268   assert(check_compiled_frame(thread), "incorrect caller");
 269 
 270   // Scavenge and allocate an instance.
 271   oop result;
 272 
 273   if (array_type->oop_is_typeArray()) {
 274     // The oopFactory likes to work with the element type.
 275     // (We could bypass the oopFactory, since it doesn't add much value.)
 276     BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type();
 277     result = oopFactory::new_typeArray(elem_type, len, THREAD);
 278   } else {
 279     // Although the oopFactory likes to work with the elem_type,
 280     // the compiler prefers the array_type, since it must already have
 281     // that latter value in hand for the fast path.
 282     Klass* elem_type = ObjArrayKlass::cast(array_type)->element_klass();
 283     result = oopFactory::new_objArray(elem_type, len, THREAD);
 284   }
 285 
 286   // Pass oops back through thread local storage.  Our apparent type to Java
 287   // is that we return an oop, but we can block on exit from this routine and
 288   // a GC can trash the oop in C's return register.  The generated stub will
 289   // fetch the oop from TLS after any possible GC.
 290   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 291   thread->set_vm_result(result);
 292   JRT_BLOCK_END;
 293 
 294   if (GraphKit::use_ReduceInitialCardMarks()) {
 295     // inform GC that we won't do card marks for initializing writes.
 296     new_store_pre_barrier(thread);
 297   }
 298 JRT_END
 299 
 300 // array allocation without zeroing
 301 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_nozero_C(Klass* array_type, int len, JavaThread *thread))
 302   JRT_BLOCK;
 303 #ifndef PRODUCT
 304   SharedRuntime::_new_array_ctr++;            // new array requires GC
 305 #endif
 306   assert(check_compiled_frame(thread), "incorrect caller");
 307 
 308   // Scavenge and allocate an instance.
 309   oop result;
 310 
 311   assert(array_type->oop_is_typeArray(), "should be called only for type array");
 312   // The oopFactory likes to work with the element type.
 313   BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type();
 314   result = oopFactory::new_typeArray_nozero(elem_type, len, THREAD);
 315 
 316   // Pass oops back through thread local storage.  Our apparent type to Java
 317   // is that we return an oop, but we can block on exit from this routine and
 318   // a GC can trash the oop in C's return register.  The generated stub will
 319   // fetch the oop from TLS after any possible GC.
 320   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 321   thread->set_vm_result(result);
 322   JRT_BLOCK_END;
 323 
 324   if (GraphKit::use_ReduceInitialCardMarks()) {
 325     // inform GC that we won't do card marks for initializing writes.
 326     new_store_pre_barrier(thread);
 327   }
 328 
 329   oop result = thread->vm_result();
 330   if ((len > 0) && (result != NULL) &&
 331       is_deoptimized_caller_frame(thread)) {
 332     // Zero array here if the caller is deoptimized.
 333     int size = ((typeArrayOop)result)->object_size();
 334     BasicType elem_type = TypeArrayKlass::cast(array_type)->element_type();
 335     const size_t hs = arrayOopDesc::header_size(elem_type);
 336     // Align to next 8 bytes to avoid trashing arrays's length.
 337     const size_t aligned_hs = align_object_offset(hs);
 338     HeapWord* obj = (HeapWord*)result;
 339     if (aligned_hs > hs) {
 340       Copy::zero_to_words(obj+hs, aligned_hs-hs);
 341     }
 342     // Optimized zeroing.
 343     Copy::fill_to_aligned_words(obj+aligned_hs, size-aligned_hs);
 344   }
 345 
 346 JRT_END
 347 
 348 // Note: multianewarray for one dimension is handled inline by GraphKit::new_array.
 349 
 350 // multianewarray for 2 dimensions
 351 JRT_ENTRY(void, OptoRuntime::multianewarray2_C(Klass* elem_type, int len1, int len2, JavaThread *thread))
 352 #ifndef PRODUCT
 353   SharedRuntime::_multi2_ctr++;                // multianewarray for 1 dimension
 354 #endif
 355   assert(check_compiled_frame(thread), "incorrect caller");
 356   assert(elem_type->is_klass(), "not a class");
 357   jint dims[2];
 358   dims[0] = len1;
 359   dims[1] = len2;
 360   oop obj = ArrayKlass::cast(elem_type)->multi_allocate(2, dims, THREAD);
 361   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 362   thread->set_vm_result(obj);
 363 JRT_END
 364 
 365 // multianewarray for 3 dimensions
 366 JRT_ENTRY(void, OptoRuntime::multianewarray3_C(Klass* elem_type, int len1, int len2, int len3, JavaThread *thread))
 367 #ifndef PRODUCT
 368   SharedRuntime::_multi3_ctr++;                // multianewarray for 1 dimension
 369 #endif
 370   assert(check_compiled_frame(thread), "incorrect caller");
 371   assert(elem_type->is_klass(), "not a class");
 372   jint dims[3];
 373   dims[0] = len1;
 374   dims[1] = len2;
 375   dims[2] = len3;
 376   oop obj = ArrayKlass::cast(elem_type)->multi_allocate(3, dims, THREAD);
 377   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 378   thread->set_vm_result(obj);
 379 JRT_END
 380 
 381 // multianewarray for 4 dimensions
 382 JRT_ENTRY(void, OptoRuntime::multianewarray4_C(Klass* elem_type, int len1, int len2, int len3, int len4, JavaThread *thread))
 383 #ifndef PRODUCT
 384   SharedRuntime::_multi4_ctr++;                // multianewarray for 1 dimension
 385 #endif
 386   assert(check_compiled_frame(thread), "incorrect caller");
 387   assert(elem_type->is_klass(), "not a class");
 388   jint dims[4];
 389   dims[0] = len1;
 390   dims[1] = len2;
 391   dims[2] = len3;
 392   dims[3] = len4;
 393   oop obj = ArrayKlass::cast(elem_type)->multi_allocate(4, dims, THREAD);
 394   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 395   thread->set_vm_result(obj);
 396 JRT_END
 397 
 398 // multianewarray for 5 dimensions
 399 JRT_ENTRY(void, OptoRuntime::multianewarray5_C(Klass* elem_type, int len1, int len2, int len3, int len4, int len5, JavaThread *thread))
 400 #ifndef PRODUCT
 401   SharedRuntime::_multi5_ctr++;                // multianewarray for 1 dimension
 402 #endif
 403   assert(check_compiled_frame(thread), "incorrect caller");
 404   assert(elem_type->is_klass(), "not a class");
 405   jint dims[5];
 406   dims[0] = len1;
 407   dims[1] = len2;
 408   dims[2] = len3;
 409   dims[3] = len4;
 410   dims[4] = len5;
 411   oop obj = ArrayKlass::cast(elem_type)->multi_allocate(5, dims, THREAD);
 412   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 413   thread->set_vm_result(obj);
 414 JRT_END
 415 
 416 JRT_ENTRY(void, OptoRuntime::multianewarrayN_C(Klass* elem_type, arrayOopDesc* dims, JavaThread *thread))
 417   assert(check_compiled_frame(thread), "incorrect caller");
 418   assert(elem_type->is_klass(), "not a class");
 419   assert(oop(dims)->is_typeArray(), "not an array");
 420 
 421   ResourceMark rm;
 422   jint len = dims->length();
 423   assert(len > 0, "Dimensions array should contain data");
 424   jint *j_dims = typeArrayOop(dims)->int_at_addr(0);
 425   jint *c_dims = NEW_RESOURCE_ARRAY(jint, len);
 426   Copy::conjoint_jints_atomic(j_dims, c_dims, len);
 427 
 428   oop obj = ArrayKlass::cast(elem_type)->multi_allocate(len, c_dims, THREAD);
 429   deoptimize_caller_frame(thread, HAS_PENDING_EXCEPTION);
 430   thread->set_vm_result(obj);
 431 JRT_END
 432 
 433 JRT_BLOCK_ENTRY(void, OptoRuntime::monitor_notify_C(oopDesc* obj, JavaThread *thread))
 434 
 435   // Very few notify/notifyAll operations find any threads on the waitset, so
 436   // the dominant fast-path is to simply return.
 437   // Relatedly, it's critical that notify/notifyAll be fast in order to
 438   // reduce lock hold times.
 439   if (!SafepointSynchronize::is_synchronizing()) {
 440     if (ObjectSynchronizer::quick_notify(obj, thread, false)) {
 441       return;
 442     }
 443   }
 444 
 445   // This is the case the fast-path above isn't provisioned to handle.
 446   // The fast-path is designed to handle frequently arising cases in an efficient manner.
 447   // (The fast-path is just a degenerate variant of the slow-path).
 448   // Perform the dreaded state transition and pass control into the slow-path.
 449   JRT_BLOCK;
 450   Handle h_obj(THREAD, obj);
 451   ObjectSynchronizer::notify(h_obj, CHECK);
 452   JRT_BLOCK_END;
 453 JRT_END
 454 
 455 JRT_BLOCK_ENTRY(void, OptoRuntime::monitor_notifyAll_C(oopDesc* obj, JavaThread *thread))
 456 
 457   if (!SafepointSynchronize::is_synchronizing() ) {
 458     if (ObjectSynchronizer::quick_notify(obj, thread, true)) {
 459       return;
 460     }
 461   }
 462 
 463   // This is the case the fast-path above isn't provisioned to handle.
 464   // The fast-path is designed to handle frequently arising cases in an efficient manner.
 465   // (The fast-path is just a degenerate variant of the slow-path).
 466   // Perform the dreaded state transition and pass control into the slow-path.
 467   JRT_BLOCK;
 468   Handle h_obj(THREAD, obj);
 469   ObjectSynchronizer::notifyall(h_obj, CHECK);
 470   JRT_BLOCK_END;
 471 JRT_END
 472 
 473 const TypeFunc *OptoRuntime::new_instance_Type() {
 474   // create input type (domain)
 475   const Type **fields = TypeTuple::fields(1);
 476   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Klass to be allocated
 477   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 478 
 479   // create result type (range)
 480   fields = TypeTuple::fields(1);
 481   fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
 482 
 483   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 484 
 485   return TypeFunc::make(domain, range);
 486 }
 487 
 488 
 489 const TypeFunc *OptoRuntime::athrow_Type() {
 490   // create input type (domain)
 491   const Type **fields = TypeTuple::fields(1);
 492   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Klass to be allocated
 493   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 494 
 495   // create result type (range)
 496   fields = TypeTuple::fields(0);
 497 
 498   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 499 
 500   return TypeFunc::make(domain, range);
 501 }
 502 
 503 
 504 const TypeFunc *OptoRuntime::new_array_Type() {
 505   // create input type (domain)
 506   const Type **fields = TypeTuple::fields(2);
 507   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;   // element klass
 508   fields[TypeFunc::Parms+1] = TypeInt::INT;       // array size
 509   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 510 
 511   // create result type (range)
 512   fields = TypeTuple::fields(1);
 513   fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
 514 
 515   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 516 
 517   return TypeFunc::make(domain, range);
 518 }
 519 
 520 const TypeFunc *OptoRuntime::multianewarray_Type(int ndim) {
 521   // create input type (domain)
 522   const int nargs = ndim + 1;
 523   const Type **fields = TypeTuple::fields(nargs);
 524   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;   // element klass
 525   for( int i = 1; i < nargs; i++ )
 526     fields[TypeFunc::Parms + i] = TypeInt::INT;       // array size
 527   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+nargs, fields);
 528 
 529   // create result type (range)
 530   fields = TypeTuple::fields(1);
 531   fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
 532   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 533 
 534   return TypeFunc::make(domain, range);
 535 }
 536 
 537 const TypeFunc *OptoRuntime::multianewarray2_Type() {
 538   return multianewarray_Type(2);
 539 }
 540 
 541 const TypeFunc *OptoRuntime::multianewarray3_Type() {
 542   return multianewarray_Type(3);
 543 }
 544 
 545 const TypeFunc *OptoRuntime::multianewarray4_Type() {
 546   return multianewarray_Type(4);
 547 }
 548 
 549 const TypeFunc *OptoRuntime::multianewarray5_Type() {
 550   return multianewarray_Type(5);
 551 }
 552 
 553 const TypeFunc *OptoRuntime::multianewarrayN_Type() {
 554   // create input type (domain)
 555   const Type **fields = TypeTuple::fields(2);
 556   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;   // element klass
 557   fields[TypeFunc::Parms+1] = TypeInstPtr::NOTNULL;   // array of dim sizes
 558   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 559 
 560   // create result type (range)
 561   fields = TypeTuple::fields(1);
 562   fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
 563   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 564 
 565   return TypeFunc::make(domain, range);
 566 }
 567 
 568 const TypeFunc *OptoRuntime::g1_wb_pre_Type() {
 569   const Type **fields = TypeTuple::fields(2);
 570   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // original field value
 571   fields[TypeFunc::Parms+1] = TypeRawPtr::NOTNULL; // thread
 572   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 573 
 574   // create result type (range)
 575   fields = TypeTuple::fields(0);
 576   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 577 
 578   return TypeFunc::make(domain, range);
 579 }
 580 
 581 const TypeFunc *OptoRuntime::g1_wb_post_Type() {
 582 
 583   const Type **fields = TypeTuple::fields(2);
 584   fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL;  // Card addr
 585   fields[TypeFunc::Parms+1] = TypeRawPtr::NOTNULL;  // thread
 586   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 587 
 588   // create result type (range)
 589   fields = TypeTuple::fields(0);
 590   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields);
 591 
 592   return TypeFunc::make(domain, range);
 593 }
 594 
 595 const TypeFunc *OptoRuntime::uncommon_trap_Type() {
 596   // create input type (domain)
 597   const Type **fields = TypeTuple::fields(1);
 598   fields[TypeFunc::Parms+0] = TypeInt::INT; // trap_reason (deopt reason and action)
 599   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 600 
 601   // create result type (range)
 602   fields = TypeTuple::fields(0);
 603   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 604 
 605   return TypeFunc::make(domain, range);
 606 }
 607 
 608 # ifdef ENABLE_ZAP_DEAD_LOCALS
 609 // Type used for stub generation for zap_dead_locals.
 610 // No inputs or outputs
 611 const TypeFunc *OptoRuntime::zap_dead_locals_Type() {
 612   // create input type (domain)
 613   const Type **fields = TypeTuple::fields(0);
 614   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms,fields);
 615 
 616   // create result type (range)
 617   fields = TypeTuple::fields(0);
 618   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms,fields);
 619 
 620   return TypeFunc::make(domain,range);
 621 }
 622 # endif
 623 
 624 
 625 //-----------------------------------------------------------------------------
 626 // Monitor Handling
 627 const TypeFunc *OptoRuntime::complete_monitor_enter_Type() {
 628   // create input type (domain)
 629   const Type **fields = TypeTuple::fields(2);
 630   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;  // Object to be Locked
 631   fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM;   // Address of stack location for lock
 632   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields);
 633 
 634   // create result type (range)
 635   fields = TypeTuple::fields(0);
 636 
 637   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
 638 
 639   return TypeFunc::make(domain,range);
 640 }
 641 
 642 
 643 //-----------------------------------------------------------------------------
 644 const TypeFunc *OptoRuntime::complete_monitor_exit_Type() {
 645   // create input type (domain)
 646   const Type **fields = TypeTuple::fields(3);
 647   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;  // Object to be Locked
 648   fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM;    // Address of stack location for lock - BasicLock
 649   fields[TypeFunc::Parms+2] = TypeRawPtr::BOTTOM;    // Thread pointer (Self)
 650   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3, fields);
 651 
 652   // create result type (range)
 653   fields = TypeTuple::fields(0);
 654 
 655   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 656 
 657   return TypeFunc::make(domain, range);
 658 }
 659 
 660 const TypeFunc *OptoRuntime::monitor_notify_Type() {
 661   // create input type (domain)
 662   const Type **fields = TypeTuple::fields(1);
 663   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;  // Object to be Locked
 664   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
 665 
 666   // create result type (range)
 667   fields = TypeTuple::fields(0);
 668   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0, fields);
 669   return TypeFunc::make(domain, range);
 670 }
 671 
 672 const TypeFunc* OptoRuntime::flush_windows_Type() {
 673   // create input type (domain)
 674   const Type** fields = TypeTuple::fields(1);
 675   fields[TypeFunc::Parms+0] = NULL; // void
 676   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms, fields);
 677 
 678   // create result type
 679   fields = TypeTuple::fields(1);
 680   fields[TypeFunc::Parms+0] = NULL; // void
 681   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields);
 682 
 683   return TypeFunc::make(domain, range);
 684 }
 685 
 686 const TypeFunc* OptoRuntime::l2f_Type() {
 687   // create input type (domain)
 688   const Type **fields = TypeTuple::fields(2);
 689   fields[TypeFunc::Parms+0] = TypeLong::LONG;
 690   fields[TypeFunc::Parms+1] = Type::HALF;
 691   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 692 
 693   // create result type (range)
 694   fields = TypeTuple::fields(1);
 695   fields[TypeFunc::Parms+0] = Type::FLOAT;
 696   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 697 
 698   return TypeFunc::make(domain, range);
 699 }
 700 
 701 const TypeFunc* OptoRuntime::modf_Type() {
 702   const Type **fields = TypeTuple::fields(2);
 703   fields[TypeFunc::Parms+0] = Type::FLOAT;
 704   fields[TypeFunc::Parms+1] = Type::FLOAT;
 705   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 706 
 707   // create result type (range)
 708   fields = TypeTuple::fields(1);
 709   fields[TypeFunc::Parms+0] = Type::FLOAT;
 710 
 711   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
 712 
 713   return TypeFunc::make(domain, range);
 714 }
 715 
 716 const TypeFunc *OptoRuntime::Math_D_D_Type() {
 717   // create input type (domain)
 718   const Type **fields = TypeTuple::fields(2);
 719   // Symbol* name of class to be loaded
 720   fields[TypeFunc::Parms+0] = Type::DOUBLE;
 721   fields[TypeFunc::Parms+1] = Type::HALF;
 722   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
 723 
 724   // create result type (range)
 725   fields = TypeTuple::fields(2);
 726   fields[TypeFunc::Parms+0] = Type::DOUBLE;
 727   fields[TypeFunc::Parms+1] = Type::HALF;
 728   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields);
 729 
 730   return TypeFunc::make(domain, range);
 731 }
 732 
 733 const TypeFunc* OptoRuntime::Math_DD_D_Type() {
 734   const Type **fields = TypeTuple::fields(4);
 735   fields[TypeFunc::Parms+0] = Type::DOUBLE;
 736   fields[TypeFunc::Parms+1] = Type::HALF;
 737   fields[TypeFunc::Parms+2] = Type::DOUBLE;
 738   fields[TypeFunc::Parms+3] = Type::HALF;
 739   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+4, fields);
 740 
 741   // create result type (range)
 742   fields = TypeTuple::fields(2);
 743   fields[TypeFunc::Parms+0] = Type::DOUBLE;
 744   fields[TypeFunc::Parms+1] = Type::HALF;
 745   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields);
 746 
 747   return TypeFunc::make(domain, range);
 748 }
 749 
 750 //-------------- currentTimeMillis, currentTimeNanos, etc
 751 
 752 const TypeFunc* OptoRuntime::void_long_Type() {
 753   // create input type (domain)
 754   const Type **fields = TypeTuple::fields(0);
 755   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+0, fields);
 756 
 757   // create result type (range)
 758   fields = TypeTuple::fields(2);
 759   fields[TypeFunc::Parms+0] = TypeLong::LONG;
 760   fields[TypeFunc::Parms+1] = Type::HALF;
 761   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+2, fields);
 762 
 763   return TypeFunc::make(domain, range);
 764 }
 765 
 766 // arraycopy stub variations:
 767 enum ArrayCopyType {
 768   ac_fast,                      // void(ptr, ptr, size_t)
 769   ac_checkcast,                 //  int(ptr, ptr, size_t, size_t, ptr)
 770   ac_slow,                      // void(ptr, int, ptr, int, int)
 771   ac_generic                    //  int(ptr, int, ptr, int, int)
 772 };
 773 
 774 static const TypeFunc* make_arraycopy_Type(ArrayCopyType act) {
 775   // create input type (domain)
 776   int num_args      = (act == ac_fast ? 3 : 5);
 777   int num_size_args = (act == ac_fast ? 1 : act == ac_checkcast ? 2 : 0);
 778   int argcnt = num_args;
 779   LP64_ONLY(argcnt += num_size_args); // halfwords for lengths
 780   const Type** fields = TypeTuple::fields(argcnt);
 781   int argp = TypeFunc::Parms;
 782   fields[argp++] = TypePtr::NOTNULL;    // src
 783   if (num_size_args == 0) {
 784     fields[argp++] = TypeInt::INT;      // src_pos
 785   }
 786   fields[argp++] = TypePtr::NOTNULL;    // dest
 787   if (num_size_args == 0) {
 788     fields[argp++] = TypeInt::INT;      // dest_pos
 789     fields[argp++] = TypeInt::INT;      // length
 790   }
 791   while (num_size_args-- > 0) {
 792     fields[argp++] = TypeX_X;               // size in whatevers (size_t)
 793     LP64_ONLY(fields[argp++] = Type::HALF); // other half of long length
 794   }
 795   if (act == ac_checkcast) {
 796     fields[argp++] = TypePtr::NOTNULL;  // super_klass
 797   }
 798   assert(argp == TypeFunc::Parms+argcnt, "correct decoding of act");
 799   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 800 
 801   // create result type if needed
 802   int retcnt = (act == ac_checkcast || act == ac_generic ? 1 : 0);
 803   fields = TypeTuple::fields(1);
 804   if (retcnt == 0)
 805     fields[TypeFunc::Parms+0] = NULL; // void
 806   else
 807     fields[TypeFunc::Parms+0] = TypeInt::INT; // status result, if needed
 808   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+retcnt, fields);
 809   return TypeFunc::make(domain, range);
 810 }
 811 
 812 const TypeFunc* OptoRuntime::fast_arraycopy_Type() {
 813   // This signature is simple:  Two base pointers and a size_t.
 814   return make_arraycopy_Type(ac_fast);
 815 }
 816 
 817 const TypeFunc* OptoRuntime::checkcast_arraycopy_Type() {
 818   // An extension of fast_arraycopy_Type which adds type checking.
 819   return make_arraycopy_Type(ac_checkcast);
 820 }
 821 
 822 const TypeFunc* OptoRuntime::slow_arraycopy_Type() {
 823   // This signature is exactly the same as System.arraycopy.
 824   // There are no intptr_t (int/long) arguments.
 825   return make_arraycopy_Type(ac_slow);
 826 }
 827 
 828 const TypeFunc* OptoRuntime::generic_arraycopy_Type() {
 829   // This signature is like System.arraycopy, except that it returns status.
 830   return make_arraycopy_Type(ac_generic);
 831 }
 832 
 833 
 834 const TypeFunc* OptoRuntime::array_fill_Type() {
 835   const Type** fields;
 836   int argp = TypeFunc::Parms;
 837   // create input type (domain): pointer, int, size_t
 838   fields = TypeTuple::fields(3 LP64_ONLY( + 1));
 839   fields[argp++] = TypePtr::NOTNULL;
 840   fields[argp++] = TypeInt::INT;
 841   fields[argp++] = TypeX_X;               // size in whatevers (size_t)
 842   LP64_ONLY(fields[argp++] = Type::HALF); // other half of long length
 843   const TypeTuple *domain = TypeTuple::make(argp, fields);
 844 
 845   // create result type
 846   fields = TypeTuple::fields(1);
 847   fields[TypeFunc::Parms+0] = NULL; // void
 848   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields);
 849 
 850   return TypeFunc::make(domain, range);
 851 }
 852 
 853 // for aescrypt encrypt/decrypt operations, just three pointers returning void (length is constant)
 854 const TypeFunc* OptoRuntime::aescrypt_block_Type() {
 855   // create input type (domain)
 856   int num_args      = 3;
 857   if (Matcher::pass_original_key_for_aes()) {
 858     num_args = 4;
 859   }
 860   int argcnt = num_args;
 861   const Type** fields = TypeTuple::fields(argcnt);
 862   int argp = TypeFunc::Parms;
 863   fields[argp++] = TypePtr::NOTNULL;    // src
 864   fields[argp++] = TypePtr::NOTNULL;    // dest
 865   fields[argp++] = TypePtr::NOTNULL;    // k array
 866   if (Matcher::pass_original_key_for_aes()) {
 867     fields[argp++] = TypePtr::NOTNULL;    // original k array
 868   }
 869   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 870   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 871 
 872   // no result type needed
 873   fields = TypeTuple::fields(1);
 874   fields[TypeFunc::Parms+0] = NULL; // void
 875   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
 876   return TypeFunc::make(domain, range);
 877 }
 878 
 879 /**
 880  * int updateBytesCRC32(int crc, byte* b, int len)
 881  */
 882 const TypeFunc* OptoRuntime::updateBytesCRC32_Type() {
 883   // create input type (domain)
 884   int num_args      = 3;
 885   int argcnt = num_args;
 886   const Type** fields = TypeTuple::fields(argcnt);
 887   int argp = TypeFunc::Parms;
 888   fields[argp++] = TypeInt::INT;        // crc
 889   fields[argp++] = TypePtr::NOTNULL;    // src
 890   fields[argp++] = TypeInt::INT;        // len
 891   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 892   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 893 
 894   // result type needed
 895   fields = TypeTuple::fields(1);
 896   fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result
 897   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
 898   return TypeFunc::make(domain, range);
 899 }
 900 
 901 /**
 902  * int updateBytesCRC32C(int crc, byte* buf, int len, int* table)
 903  */
 904 const TypeFunc* OptoRuntime::updateBytesCRC32C_Type() {
 905   // create input type (domain)
 906   int num_args      = 4;
 907   int argcnt = num_args;
 908   const Type** fields = TypeTuple::fields(argcnt);
 909   int argp = TypeFunc::Parms;
 910   fields[argp++] = TypeInt::INT;        // crc
 911   fields[argp++] = TypePtr::NOTNULL;    // buf
 912   fields[argp++] = TypeInt::INT;        // len
 913   fields[argp++] = TypePtr::NOTNULL;    // table
 914   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 915   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 916 
 917   // result type needed
 918   fields = TypeTuple::fields(1);
 919   fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result
 920   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
 921   return TypeFunc::make(domain, range);
 922 }
 923 
 924 /**
 925 *  int updateBytesAdler32(int adler, bytes* b, int off, int len)
 926 */
 927 const TypeFunc* OptoRuntime::updateBytesAdler32_Type() {
 928   // create input type (domain)
 929   int num_args      = 3;
 930   int argcnt = num_args;
 931   const Type** fields = TypeTuple::fields(argcnt);
 932   int argp = TypeFunc::Parms;
 933   fields[argp++] = TypeInt::INT;        // crc
 934   fields[argp++] = TypePtr::NOTNULL;    // src + offset
 935   fields[argp++] = TypeInt::INT;        // len      
 936   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 937   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 938 
 939   // result type needed
 940   fields = TypeTuple::fields(1);
 941   fields[TypeFunc::Parms+0] = TypeInt::INT; // crc result  
 942   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
 943   return TypeFunc::make(domain, range);
 944 }
 945 
 946 // for cipherBlockChaining calls of aescrypt encrypt/decrypt, four pointers and a length, returning int
 947 const TypeFunc* OptoRuntime::cipherBlockChaining_aescrypt_Type() {
 948   // create input type (domain)
 949   int num_args      = 5;
 950   if (Matcher::pass_original_key_for_aes()) {
 951     num_args = 6;
 952   }
 953   int argcnt = num_args;
 954   const Type** fields = TypeTuple::fields(argcnt);
 955   int argp = TypeFunc::Parms;
 956   fields[argp++] = TypePtr::NOTNULL;    // src
 957   fields[argp++] = TypePtr::NOTNULL;    // dest
 958   fields[argp++] = TypePtr::NOTNULL;    // k array
 959   fields[argp++] = TypePtr::NOTNULL;    // r array
 960   fields[argp++] = TypeInt::INT;        // src len
 961   if (Matcher::pass_original_key_for_aes()) {
 962     fields[argp++] = TypePtr::NOTNULL;    // original k array
 963   }
 964   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 965   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 966 
 967   // returning cipher len (int)
 968   fields = TypeTuple::fields(1);
 969   fields[TypeFunc::Parms+0] = TypeInt::INT;
 970   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
 971   return TypeFunc::make(domain, range);
 972 }
 973 
 974 /*
 975  * void implCompress(byte[] buf, int ofs)
 976  */
 977 const TypeFunc* OptoRuntime::sha_implCompress_Type() {
 978   // create input type (domain)
 979   int num_args = 2;
 980   int argcnt = num_args;
 981   const Type** fields = TypeTuple::fields(argcnt);
 982   int argp = TypeFunc::Parms;
 983   fields[argp++] = TypePtr::NOTNULL; // buf
 984   fields[argp++] = TypePtr::NOTNULL; // state
 985   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
 986   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
 987 
 988   // no result type needed
 989   fields = TypeTuple::fields(1);
 990   fields[TypeFunc::Parms+0] = NULL; // void
 991   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
 992   return TypeFunc::make(domain, range);
 993 }
 994 
 995 /*
 996  * int implCompressMultiBlock(byte[] b, int ofs, int limit)
 997  */
 998 const TypeFunc* OptoRuntime::digestBase_implCompressMB_Type() {
 999   // create input type (domain)
1000   int num_args = 4;
1001   int argcnt = num_args;
1002   const Type** fields = TypeTuple::fields(argcnt);
1003   int argp = TypeFunc::Parms;
1004   fields[argp++] = TypePtr::NOTNULL; // buf
1005   fields[argp++] = TypePtr::NOTNULL; // state
1006   fields[argp++] = TypeInt::INT;     // ofs
1007   fields[argp++] = TypeInt::INT;     // limit
1008   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1009   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1010 
1011   // returning ofs (int)
1012   fields = TypeTuple::fields(1);
1013   fields[TypeFunc::Parms+0] = TypeInt::INT; // ofs
1014   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
1015   return TypeFunc::make(domain, range);
1016 }
1017 
1018 const TypeFunc* OptoRuntime::multiplyToLen_Type() {
1019   // create input type (domain)
1020   int num_args      = 6;
1021   int argcnt = num_args;
1022   const Type** fields = TypeTuple::fields(argcnt);
1023   int argp = TypeFunc::Parms;
1024   fields[argp++] = TypePtr::NOTNULL;    // x
1025   fields[argp++] = TypeInt::INT;        // xlen
1026   fields[argp++] = TypePtr::NOTNULL;    // y
1027   fields[argp++] = TypeInt::INT;        // ylen
1028   fields[argp++] = TypePtr::NOTNULL;    // z
1029   fields[argp++] = TypeInt::INT;        // zlen
1030   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1031   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1032 
1033   // no result type needed
1034   fields = TypeTuple::fields(1);
1035   fields[TypeFunc::Parms+0] = NULL;
1036   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
1037   return TypeFunc::make(domain, range);
1038 }
1039 
1040 const TypeFunc* OptoRuntime::squareToLen_Type() {
1041   // create input type (domain)
1042   int num_args      = 4;
1043   int argcnt = num_args;
1044   const Type** fields = TypeTuple::fields(argcnt);
1045   int argp = TypeFunc::Parms;
1046   fields[argp++] = TypePtr::NOTNULL;    // x
1047   fields[argp++] = TypeInt::INT;        // len
1048   fields[argp++] = TypePtr::NOTNULL;    // z
1049   fields[argp++] = TypeInt::INT;        // zlen
1050   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1051   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1052 
1053   // no result type needed
1054   fields = TypeTuple::fields(1);
1055   fields[TypeFunc::Parms+0] = NULL;
1056   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
1057   return TypeFunc::make(domain, range);
1058 }
1059 
1060 // for mulAdd calls, 2 pointers and 3 ints, returning int
1061 const TypeFunc* OptoRuntime::mulAdd_Type() {
1062   // create input type (domain)
1063   int num_args      = 5;
1064   int argcnt = num_args;
1065   const Type** fields = TypeTuple::fields(argcnt);
1066   int argp = TypeFunc::Parms;
1067   fields[argp++] = TypePtr::NOTNULL;    // out
1068   fields[argp++] = TypePtr::NOTNULL;    // in
1069   fields[argp++] = TypeInt::INT;        // offset
1070   fields[argp++] = TypeInt::INT;        // len
1071   fields[argp++] = TypeInt::INT;        // k
1072   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1073   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1074 
1075   // returning carry (int)
1076   fields = TypeTuple::fields(1);
1077   fields[TypeFunc::Parms+0] = TypeInt::INT;
1078   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms+1, fields);
1079   return TypeFunc::make(domain, range);
1080 }
1081 
1082 const TypeFunc* OptoRuntime::montgomeryMultiply_Type() {
1083   // create input type (domain)
1084   int num_args      = 7;
1085   int argcnt = num_args;
1086   const Type** fields = TypeTuple::fields(argcnt);
1087   int argp = TypeFunc::Parms;
1088   fields[argp++] = TypePtr::NOTNULL;    // a
1089   fields[argp++] = TypePtr::NOTNULL;    // b
1090   fields[argp++] = TypePtr::NOTNULL;    // n
1091   fields[argp++] = TypeInt::INT;        // len
1092   fields[argp++] = TypeLong::LONG;      // inv
1093   fields[argp++] = Type::HALF;
1094   fields[argp++] = TypePtr::NOTNULL;    // result
1095   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1096   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1097 
1098   // result type needed
1099   fields = TypeTuple::fields(1);
1100   fields[TypeFunc::Parms+0] = TypePtr::NOTNULL;
1101 
1102   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
1103   return TypeFunc::make(domain, range);
1104 }
1105 
1106 const TypeFunc* OptoRuntime::montgomerySquare_Type() {
1107   // create input type (domain)
1108   int num_args      = 6;
1109   int argcnt = num_args;
1110   const Type** fields = TypeTuple::fields(argcnt);
1111   int argp = TypeFunc::Parms;
1112   fields[argp++] = TypePtr::NOTNULL;    // a
1113   fields[argp++] = TypePtr::NOTNULL;    // n
1114   fields[argp++] = TypeInt::INT;        // len
1115   fields[argp++] = TypeLong::LONG;      // inv
1116   fields[argp++] = Type::HALF;
1117   fields[argp++] = TypePtr::NOTNULL;    // result
1118   assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1119   const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1120 
1121   // result type needed
1122   fields = TypeTuple::fields(1);
1123   fields[TypeFunc::Parms+0] = TypePtr::NOTNULL;
1124 
1125   const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
1126   return TypeFunc::make(domain, range);
1127 }
1128 
1129 // GHASH block processing
1130 const TypeFunc* OptoRuntime::ghash_processBlocks_Type() {
1131     int argcnt = 4;
1132 
1133     const Type** fields = TypeTuple::fields(argcnt);
1134     int argp = TypeFunc::Parms;
1135     fields[argp++] = TypePtr::NOTNULL;    // state
1136     fields[argp++] = TypePtr::NOTNULL;    // subkeyH
1137     fields[argp++] = TypePtr::NOTNULL;    // data
1138     fields[argp++] = TypeInt::INT;        // blocks
1139     assert(argp == TypeFunc::Parms+argcnt, "correct decoding");
1140     const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields);
1141 
1142     // result type needed
1143     fields = TypeTuple::fields(1);
1144     fields[TypeFunc::Parms+0] = NULL; // void
1145     const TypeTuple* range = TypeTuple::make(TypeFunc::Parms, fields);
1146     return TypeFunc::make(domain, range);
1147 }
1148 
1149 //------------- Interpreter state access for on stack replacement
1150 const TypeFunc* OptoRuntime::osr_end_Type() {
1151   // create input type (domain)
1152   const Type **fields = TypeTuple::fields(1);
1153   fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // OSR temp buf
1154   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
1155 
1156   // create result type
1157   fields = TypeTuple::fields(1);
1158   // fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // locked oop
1159   fields[TypeFunc::Parms+0] = NULL; // void
1160   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields);
1161   return TypeFunc::make(domain, range);
1162 }
1163 
1164 //-------------- methodData update helpers
1165 
1166 const TypeFunc* OptoRuntime::profile_receiver_type_Type() {
1167   // create input type (domain)
1168   const Type **fields = TypeTuple::fields(2);
1169   fields[TypeFunc::Parms+0] = TypeAryPtr::NOTNULL;    // methodData pointer
1170   fields[TypeFunc::Parms+1] = TypeInstPtr::BOTTOM;    // receiver oop
1171   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields);
1172 
1173   // create result type
1174   fields = TypeTuple::fields(1);
1175   fields[TypeFunc::Parms+0] = NULL; // void
1176   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms, fields);
1177   return TypeFunc::make(domain,range);
1178 }
1179 
1180 JRT_LEAF(void, OptoRuntime::profile_receiver_type_C(DataLayout* data, oopDesc* receiver))
1181   if (receiver == NULL) return;
1182   Klass* receiver_klass = receiver->klass();
1183 
1184   intptr_t* mdp = ((intptr_t*)(data)) + DataLayout::header_size_in_cells();
1185   int empty_row = -1;           // free row, if any is encountered
1186 
1187   // ReceiverTypeData* vc = new ReceiverTypeData(mdp);
1188   for (uint row = 0; row < ReceiverTypeData::row_limit(); row++) {
1189     // if (vc->receiver(row) == receiver_klass)
1190     int receiver_off = ReceiverTypeData::receiver_cell_index(row);
1191     intptr_t row_recv = *(mdp + receiver_off);
1192     if (row_recv == (intptr_t) receiver_klass) {
1193       // vc->set_receiver_count(row, vc->receiver_count(row) + DataLayout::counter_increment);
1194       int count_off = ReceiverTypeData::receiver_count_cell_index(row);
1195       *(mdp + count_off) += DataLayout::counter_increment;
1196       return;
1197     } else if (row_recv == 0) {
1198       // else if (vc->receiver(row) == NULL)
1199       empty_row = (int) row;
1200     }
1201   }
1202 
1203   if (empty_row != -1) {
1204     int receiver_off = ReceiverTypeData::receiver_cell_index(empty_row);
1205     // vc->set_receiver(empty_row, receiver_klass);
1206     *(mdp + receiver_off) = (intptr_t) receiver_klass;
1207     // vc->set_receiver_count(empty_row, DataLayout::counter_increment);
1208     int count_off = ReceiverTypeData::receiver_count_cell_index(empty_row);
1209     *(mdp + count_off) = DataLayout::counter_increment;
1210   } else {
1211     // Receiver did not match any saved receiver and there is no empty row for it.
1212     // Increment total counter to indicate polymorphic case.
1213     intptr_t* count_p = (intptr_t*)(((uint8_t*)(data)) + in_bytes(CounterData::count_offset()));
1214     *count_p += DataLayout::counter_increment;
1215   }
1216 JRT_END
1217 
1218 //-------------------------------------------------------------------------------------
1219 // register policy
1220 
1221 bool OptoRuntime::is_callee_saved_register(MachRegisterNumbers reg) {
1222   assert(reg >= 0 && reg < _last_Mach_Reg, "must be a machine register");
1223   switch (register_save_policy[reg]) {
1224     case 'C': return false; //SOC
1225     case 'E': return true ; //SOE
1226     case 'N': return false; //NS
1227     case 'A': return false; //AS
1228   }
1229   ShouldNotReachHere();
1230   return false;
1231 }
1232 
1233 //-----------------------------------------------------------------------
1234 // Exceptions
1235 //
1236 
1237 static void trace_exception(oop exception_oop, address exception_pc, const char* msg) PRODUCT_RETURN;
1238 
1239 // The method is an entry that is always called by a C++ method not
1240 // directly from compiled code. Compiled code will call the C++ method following.
1241 // We can't allow async exception to be installed during  exception processing.
1242 JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* thread, nmethod* &nm))
1243 
1244   // Do not confuse exception_oop with pending_exception. The exception_oop
1245   // is only used to pass arguments into the method. Not for general
1246   // exception handling.  DO NOT CHANGE IT to use pending_exception, since
1247   // the runtime stubs checks this on exit.
1248   assert(thread->exception_oop() != NULL, "exception oop is found");
1249   address handler_address = NULL;
1250 
1251   Handle exception(thread, thread->exception_oop());
1252   address pc = thread->exception_pc();
1253 
1254   // Clear out the exception oop and pc since looking up an
1255   // exception handler can cause class loading, which might throw an
1256   // exception and those fields are expected to be clear during
1257   // normal bytecode execution.
1258   thread->clear_exception_oop_and_pc();
1259 
1260   if (TraceExceptions) {
1261     trace_exception(exception(), pc, "");
1262   }
1263 
1264   // for AbortVMOnException flag
1265   NOT_PRODUCT(Exceptions::debug_check_abort(exception));
1266 
1267 #ifdef ASSERT
1268   if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
1269     // should throw an exception here
1270     ShouldNotReachHere();
1271   }
1272 #endif
1273 
1274   // new exception handling: this method is entered only from adapters
1275   // exceptions from compiled java methods are handled in compiled code
1276   // using rethrow node
1277 
1278   nm = CodeCache::find_nmethod(pc);
1279   assert(nm != NULL, "No NMethod found");
1280   if (nm->is_native_method()) {
1281     fatal("Native method should not have path to exception handling");
1282   } else {
1283     // we are switching to old paradigm: search for exception handler in caller_frame
1284     // instead in exception handler of caller_frame.sender()
1285 
1286     if (JvmtiExport::can_post_on_exceptions()) {
1287       // "Full-speed catching" is not necessary here,
1288       // since we're notifying the VM on every catch.
1289       // Force deoptimization and the rest of the lookup
1290       // will be fine.
1291       deoptimize_caller_frame(thread);
1292     }
1293 
1294     // Check the stack guard pages.  If enabled, look for handler in this frame;
1295     // otherwise, forcibly unwind the frame.
1296     //
1297     // 4826555: use default current sp for reguard_stack instead of &nm: it's more accurate.
1298     bool force_unwind = !thread->reguard_stack();
1299     bool deopting = false;
1300     if (nm->is_deopt_pc(pc)) {
1301       deopting = true;
1302       RegisterMap map(thread, false);
1303       frame deoptee = thread->last_frame().sender(&map);
1304       assert(deoptee.is_deoptimized_frame(), "must be deopted");
1305       // Adjust the pc back to the original throwing pc
1306       pc = deoptee.pc();
1307     }
1308 
1309     // If we are forcing an unwind because of stack overflow then deopt is
1310     // irrelevant since we are throwing the frame away anyway.
1311 
1312     if (deopting && !force_unwind) {
1313       handler_address = SharedRuntime::deopt_blob()->unpack_with_exception();
1314     } else {
1315 
1316       handler_address =
1317         force_unwind ? NULL : nm->handler_for_exception_and_pc(exception, pc);
1318 
1319       if (handler_address == NULL) {
1320         Handle original_exception(thread, exception());
1321         handler_address = SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, force_unwind, true);
1322         assert (handler_address != NULL, "must have compiled handler");
1323         // Update the exception cache only when the unwind was not forced
1324         // and there didn't happen another exception during the computation of the
1325         // compiled exception handler.
1326         if (!force_unwind && original_exception() == exception()) {
1327           nm->add_handler_for_exception_and_pc(exception,pc,handler_address);
1328         }
1329       } else {
1330         assert(handler_address == SharedRuntime::compute_compiled_exc_handler(nm, pc, exception, force_unwind, true), "Must be the same");
1331       }
1332     }
1333 
1334     thread->set_exception_pc(pc);
1335     thread->set_exception_handler_pc(handler_address);
1336 
1337     // Check if the exception PC is a MethodHandle call site.
1338     thread->set_is_method_handle_return(nm->is_method_handle_return(pc));
1339   }
1340 
1341   // Restore correct return pc.  Was saved above.
1342   thread->set_exception_oop(exception());
1343   return handler_address;
1344 
1345 JRT_END
1346 
1347 // We are entering here from exception_blob
1348 // If there is a compiled exception handler in this method, we will continue there;
1349 // otherwise we will unwind the stack and continue at the caller of top frame method
1350 // Note we enter without the usual JRT wrapper. We will call a helper routine that
1351 // will do the normal VM entry. We do it this way so that we can see if the nmethod
1352 // we looked up the handler for has been deoptimized in the meantime. If it has been
1353 // we must not use the handler and instead return the deopt blob.
1354 address OptoRuntime::handle_exception_C(JavaThread* thread) {
1355 //
1356 // We are in Java not VM and in debug mode we have a NoHandleMark
1357 //
1358 #ifndef PRODUCT
1359   SharedRuntime::_find_handler_ctr++;          // find exception handler
1360 #endif
1361   debug_only(NoHandleMark __hm;)
1362   nmethod* nm = NULL;
1363   address handler_address = NULL;
1364   {
1365     // Enter the VM
1366 
1367     ResetNoHandleMark rnhm;
1368     handler_address = handle_exception_C_helper(thread, nm);
1369   }
1370 
1371   // Back in java: Use no oops, DON'T safepoint
1372 
1373   // Now check to see if the handler we are returning is in a now
1374   // deoptimized frame
1375 
1376   if (nm != NULL) {
1377     RegisterMap map(thread, false);
1378     frame caller = thread->last_frame().sender(&map);
1379 #ifdef ASSERT
1380     assert(caller.is_compiled_frame(), "must be");
1381 #endif // ASSERT
1382     if (caller.is_deoptimized_frame()) {
1383       handler_address = SharedRuntime::deopt_blob()->unpack_with_exception();
1384     }
1385   }
1386   return handler_address;
1387 }
1388 
1389 //------------------------------rethrow----------------------------------------
1390 // We get here after compiled code has executed a 'RethrowNode'.  The callee
1391 // is either throwing or rethrowing an exception.  The callee-save registers
1392 // have been restored, synchronized objects have been unlocked and the callee
1393 // stack frame has been removed.  The return address was passed in.
1394 // Exception oop is passed as the 1st argument.  This routine is then called
1395 // from the stub.  On exit, we know where to jump in the caller's code.
1396 // After this C code exits, the stub will pop his frame and end in a jump
1397 // (instead of a return).  We enter the caller's default handler.
1398 //
1399 // This must be JRT_LEAF:
1400 //     - caller will not change its state as we cannot block on exit,
1401 //       therefore raw_exception_handler_for_return_address is all it takes
1402 //       to handle deoptimized blobs
1403 //
1404 // However, there needs to be a safepoint check in the middle!  So compiled
1405 // safepoints are completely watertight.
1406 //
1407 // Thus, it cannot be a leaf since it contains the No_GC_Verifier.
1408 //
1409 // *THIS IS NOT RECOMMENDED PROGRAMMING STYLE*
1410 //
1411 address OptoRuntime::rethrow_C(oopDesc* exception, JavaThread* thread, address ret_pc) {
1412 #ifndef PRODUCT
1413   SharedRuntime::_rethrow_ctr++;               // count rethrows
1414 #endif
1415   assert (exception != NULL, "should have thrown a NULLPointerException");
1416 #ifdef ASSERT
1417   if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
1418     // should throw an exception here
1419     ShouldNotReachHere();
1420   }
1421 #endif
1422 
1423   thread->set_vm_result(exception);
1424   // Frame not compiled (handles deoptimization blob)
1425   return SharedRuntime::raw_exception_handler_for_return_address(thread, ret_pc);
1426 }
1427 
1428 
1429 const TypeFunc *OptoRuntime::rethrow_Type() {
1430   // create input type (domain)
1431   const Type **fields = TypeTuple::fields(1);
1432   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Exception oop
1433   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields);
1434 
1435   // create result type (range)
1436   fields = TypeTuple::fields(1);
1437   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Exception oop
1438   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
1439 
1440   return TypeFunc::make(domain, range);
1441 }
1442 
1443 
1444 void OptoRuntime::deoptimize_caller_frame(JavaThread *thread, bool doit) {
1445   // Deoptimize the caller before continuing, as the compiled
1446   // exception handler table may not be valid.
1447   if (!StressCompiledExceptionHandlers && doit) {
1448     deoptimize_caller_frame(thread);
1449   }
1450 }
1451 
1452 void OptoRuntime::deoptimize_caller_frame(JavaThread *thread) {
1453   // Called from within the owner thread, so no need for safepoint
1454   RegisterMap reg_map(thread);
1455   frame stub_frame = thread->last_frame();
1456   assert(stub_frame.is_runtime_frame() || exception_blob()->contains(stub_frame.pc()), "sanity check");
1457   frame caller_frame = stub_frame.sender(&reg_map);
1458 
1459   // Deoptimize the caller frame.
1460   Deoptimization::deoptimize_frame(thread, caller_frame.id());
1461 }
1462 
1463 
1464 bool OptoRuntime::is_deoptimized_caller_frame(JavaThread *thread) {
1465   // Called from within the owner thread, so no need for safepoint
1466   RegisterMap reg_map(thread);
1467   frame stub_frame = thread->last_frame();
1468   assert(stub_frame.is_runtime_frame() || exception_blob()->contains(stub_frame.pc()), "sanity check");
1469   frame caller_frame = stub_frame.sender(&reg_map);
1470   return caller_frame.is_deoptimized_frame();
1471 }
1472 
1473 
1474 const TypeFunc *OptoRuntime::register_finalizer_Type() {
1475   // create input type (domain)
1476   const Type **fields = TypeTuple::fields(1);
1477   fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;  // oop;          Receiver
1478   // // The JavaThread* is passed to each routine as the last argument
1479   // fields[TypeFunc::Parms+1] = TypeRawPtr::NOTNULL;  // JavaThread *; Executing thread
1480   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields);
1481 
1482   // create result type (range)
1483   fields = TypeTuple::fields(0);
1484 
1485   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
1486 
1487   return TypeFunc::make(domain,range);
1488 }
1489 
1490 
1491 //-----------------------------------------------------------------------------
1492 // Dtrace support.  entry and exit probes have the same signature
1493 const TypeFunc *OptoRuntime::dtrace_method_entry_exit_Type() {
1494   // create input type (domain)
1495   const Type **fields = TypeTuple::fields(2);
1496   fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // Thread-local storage
1497   fields[TypeFunc::Parms+1] = TypeMetadataPtr::BOTTOM;  // Method*;    Method we are entering
1498   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields);
1499 
1500   // create result type (range)
1501   fields = TypeTuple::fields(0);
1502 
1503   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
1504 
1505   return TypeFunc::make(domain,range);
1506 }
1507 
1508 const TypeFunc *OptoRuntime::dtrace_object_alloc_Type() {
1509   // create input type (domain)
1510   const Type **fields = TypeTuple::fields(2);
1511   fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // Thread-local storage
1512   fields[TypeFunc::Parms+1] = TypeInstPtr::NOTNULL;  // oop;    newly allocated object
1513 
1514   const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields);
1515 
1516   // create result type (range)
1517   fields = TypeTuple::fields(0);
1518 
1519   const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
1520 
1521   return TypeFunc::make(domain,range);
1522 }
1523 
1524 
1525 JRT_ENTRY_NO_ASYNC(void, OptoRuntime::register_finalizer(oopDesc* obj, JavaThread* thread))
1526   assert(obj->is_oop(), "must be a valid oop");
1527   assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
1528   InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
1529 JRT_END
1530 
1531 //-----------------------------------------------------------------------------
1532 
1533 NamedCounter * volatile OptoRuntime::_named_counters = NULL;
1534 
1535 //
1536 // dump the collected NamedCounters.
1537 //
1538 void OptoRuntime::print_named_counters() {
1539   int total_lock_count = 0;
1540   int eliminated_lock_count = 0;
1541 
1542   NamedCounter* c = _named_counters;
1543   while (c) {
1544     if (c->tag() == NamedCounter::LockCounter || c->tag() == NamedCounter::EliminatedLockCounter) {
1545       int count = c->count();
1546       if (count > 0) {
1547         bool eliminated = c->tag() == NamedCounter::EliminatedLockCounter;
1548         if (Verbose) {
1549           tty->print_cr("%d %s%s", count, c->name(), eliminated ? " (eliminated)" : "");
1550         }
1551         total_lock_count += count;
1552         if (eliminated) {
1553           eliminated_lock_count += count;
1554         }
1555       }
1556     } else if (c->tag() == NamedCounter::BiasedLockingCounter) {
1557       BiasedLockingCounters* blc = ((BiasedLockingNamedCounter*)c)->counters();
1558       if (blc->nonzero()) {
1559         tty->print_cr("%s", c->name());
1560         blc->print_on(tty);
1561       }
1562 #if INCLUDE_RTM_OPT
1563     } else if (c->tag() == NamedCounter::RTMLockingCounter) {
1564       RTMLockingCounters* rlc = ((RTMLockingNamedCounter*)c)->counters();
1565       if (rlc->nonzero()) {
1566         tty->print_cr("%s", c->name());
1567         rlc->print_on(tty);
1568       }
1569 #endif
1570     }
1571     c = c->next();
1572   }
1573   if (total_lock_count > 0) {
1574     tty->print_cr("dynamic locks: %d", total_lock_count);
1575     if (eliminated_lock_count) {
1576       tty->print_cr("eliminated locks: %d (%d%%)", eliminated_lock_count,
1577                     (int)(eliminated_lock_count * 100.0 / total_lock_count));
1578     }
1579   }
1580 }
1581 
1582 //
1583 //  Allocate a new NamedCounter.  The JVMState is used to generate the
1584 //  name which consists of method@line for the inlining tree.
1585 //
1586 
1587 NamedCounter* OptoRuntime::new_named_counter(JVMState* youngest_jvms, NamedCounter::CounterTag tag) {
1588   int max_depth = youngest_jvms->depth();
1589 
1590   // Visit scopes from youngest to oldest.
1591   bool first = true;
1592   stringStream st;
1593   for (int depth = max_depth; depth >= 1; depth--) {
1594     JVMState* jvms = youngest_jvms->of_depth(depth);
1595     ciMethod* m = jvms->has_method() ? jvms->method() : NULL;
1596     if (!first) {
1597       st.print(" ");
1598     } else {
1599       first = false;
1600     }
1601     int bci = jvms->bci();
1602     if (bci < 0) bci = 0;
1603     st.print("%s.%s@%d", m->holder()->name()->as_utf8(), m->name()->as_utf8(), bci);
1604     // To print linenumbers instead of bci use: m->line_number_from_bci(bci)
1605   }
1606   NamedCounter* c;
1607   if (tag == NamedCounter::BiasedLockingCounter) {
1608     c = new BiasedLockingNamedCounter(st.as_string());
1609   } else if (tag == NamedCounter::RTMLockingCounter) {
1610     c = new RTMLockingNamedCounter(st.as_string());
1611   } else {
1612     c = new NamedCounter(st.as_string(), tag);
1613   }
1614 
1615   // atomically add the new counter to the head of the list.  We only
1616   // add counters so this is safe.
1617   NamedCounter* head;
1618   do {
1619     c->set_next(NULL);
1620     head = _named_counters;
1621     c->set_next(head);
1622   } while (Atomic::cmpxchg_ptr(c, &_named_counters, head) != head);
1623   return c;
1624 }
1625 
1626 //-----------------------------------------------------------------------------
1627 // Non-product code
1628 #ifndef PRODUCT
1629 
1630 int trace_exception_counter = 0;
1631 static void trace_exception(oop exception_oop, address exception_pc, const char* msg) {
1632   ttyLocker ttyl;
1633   trace_exception_counter++;
1634   tty->print("%d [Exception (%s): ", trace_exception_counter, msg);
1635   exception_oop->print_value();
1636   tty->print(" in ");
1637   CodeBlob* blob = CodeCache::find_blob(exception_pc);
1638   if (blob->is_nmethod()) {
1639     nmethod* nm = blob->as_nmethod_or_null();
1640     nm->method()->print_value();
1641   } else if (blob->is_runtime_stub()) {
1642     tty->print("<runtime-stub>");
1643   } else {
1644     tty->print("<unknown>");
1645   }
1646   tty->print(" at " INTPTR_FORMAT,  p2i(exception_pc));
1647   tty->print_cr("]");
1648 }
1649 
1650 #endif  // PRODUCT
1651 
1652 
1653 # ifdef ENABLE_ZAP_DEAD_LOCALS
1654 // Called from call sites in compiled code with oop maps (actually safepoints)
1655 // Zaps dead locals in first java frame.
1656 // Is entry because may need to lock to generate oop maps
1657 // Currently, only used for compiler frames, but someday may be used
1658 // for interpreter frames, too.
1659 
1660 int OptoRuntime::ZapDeadCompiledLocals_count = 0;
1661 
1662 // avoid pointers to member funcs with these helpers
1663 static bool is_java_frame(  frame* f) { return f->is_java_frame();   }
1664 static bool is_native_frame(frame* f) { return f->is_native_frame(); }
1665 
1666 
1667 void OptoRuntime::zap_dead_java_or_native_locals(JavaThread* thread,
1668                                                 bool (*is_this_the_right_frame_to_zap)(frame*)) {
1669   assert(JavaThread::current() == thread, "is this needed?");
1670 
1671   if ( !ZapDeadCompiledLocals )  return;
1672 
1673   bool skip = false;
1674 
1675        if ( ZapDeadCompiledLocalsFirst  ==  0  ) ; // nothing special
1676   else if ( ZapDeadCompiledLocalsFirst  >  ZapDeadCompiledLocals_count )  skip = true;
1677   else if ( ZapDeadCompiledLocalsFirst  == ZapDeadCompiledLocals_count )
1678     warning("starting zapping after skipping");
1679 
1680        if ( ZapDeadCompiledLocalsLast  ==  -1  ) ; // nothing special
1681   else if ( ZapDeadCompiledLocalsLast  <   ZapDeadCompiledLocals_count )  skip = true;
1682   else if ( ZapDeadCompiledLocalsLast  ==  ZapDeadCompiledLocals_count )
1683     warning("about to zap last zap");
1684 
1685   ++ZapDeadCompiledLocals_count; // counts skipped zaps, too
1686 
1687   if ( skip )  return;
1688 
1689   // find java frame and zap it
1690 
1691   for (StackFrameStream sfs(thread);  !sfs.is_done();  sfs.next()) {
1692     if (is_this_the_right_frame_to_zap(sfs.current()) ) {
1693       sfs.current()->zap_dead_locals(thread, sfs.register_map());
1694       return;
1695     }
1696   }
1697   warning("no frame found to zap in zap_dead_Java_locals_C");
1698 }
1699 
1700 JRT_LEAF(void, OptoRuntime::zap_dead_Java_locals_C(JavaThread* thread))
1701   zap_dead_java_or_native_locals(thread, is_java_frame);
1702 JRT_END
1703 
1704 // The following does not work because for one thing, the
1705 // thread state is wrong; it expects java, but it is native.
1706 // Also, the invariants in a native stub are different and
1707 // I'm not sure it is safe to have a MachCalRuntimeDirectNode
1708 // in there.
1709 // So for now, we do not zap in native stubs.
1710 
1711 JRT_LEAF(void, OptoRuntime::zap_dead_native_locals_C(JavaThread* thread))
1712   zap_dead_java_or_native_locals(thread, is_native_frame);
1713 JRT_END
1714 
1715 # endif