src/share/vm/oops/method.cpp

Mon, 24 Sep 2012 17:59:24 -0700

author
twisti
date
Mon, 24 Sep 2012 17:59:24 -0700
changeset 4111
9191895df19d
parent 4102
8d3cc6612bd1
child 4142
d8ce2825b193
child 4154
c3e799c37717
permissions
-rw-r--r--

7200001: failed C1 OSR compile doesn't get recompiled with C2
Reviewed-by: kvn

     1 /*
     2  * Copyright (c) 1997, 2012, 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  */
    25 #include "precompiled.hpp"
    26 #include "classfile/systemDictionary.hpp"
    27 #include "code/debugInfoRec.hpp"
    28 #include "gc_interface/collectedHeap.inline.hpp"
    29 #include "interpreter/bytecodeStream.hpp"
    30 #include "interpreter/bytecodeTracer.hpp"
    31 #include "interpreter/bytecodes.hpp"
    32 #include "interpreter/interpreter.hpp"
    33 #include "interpreter/oopMapCache.hpp"
    34 #include "memory/gcLocker.hpp"
    35 #include "memory/generation.hpp"
    36 #include "memory/metadataFactory.hpp"
    37 #include "memory/oopFactory.hpp"
    38 #include "oops/methodData.hpp"
    39 #include "oops/method.hpp"
    40 #include "oops/oop.inline.hpp"
    41 #include "oops/symbol.hpp"
    42 #include "prims/jvmtiExport.hpp"
    43 #include "prims/jvmtiRedefineClasses.hpp"
    44 #include "prims/methodHandles.hpp"
    45 #include "prims/nativeLookup.hpp"
    46 #include "runtime/arguments.hpp"
    47 #include "runtime/compilationPolicy.hpp"
    48 #include "runtime/frame.inline.hpp"
    49 #include "runtime/handles.inline.hpp"
    50 #include "runtime/relocator.hpp"
    51 #include "runtime/sharedRuntime.hpp"
    52 #include "runtime/signature.hpp"
    53 #include "utilities/quickSort.hpp"
    54 #include "utilities/xmlstream.hpp"
    57 // Implementation of Method
    59 Method* Method::allocate(ClassLoaderData* loader_data,
    60                             int byte_code_size,
    61                             AccessFlags access_flags,
    62                             int compressed_line_number_size,
    63                             int localvariable_table_length,
    64                             int exception_table_length,
    65                             int checked_exceptions_length,
    66                             TRAPS) {
    67   assert(!access_flags.is_native() || byte_code_size == 0,
    68          "native methods should not contain byte codes");
    69   ConstMethod* cm = ConstMethod::allocate(loader_data,
    70                                       byte_code_size,
    71                                       compressed_line_number_size,
    72                                       localvariable_table_length,
    73                                       exception_table_length,
    74                                       checked_exceptions_length,
    75                                       CHECK_NULL);
    77   int size = Method::size(access_flags.is_native());
    79   return new (loader_data, size, false, THREAD) Method(cm, access_flags, size);
    80 }
    82 Method::Method(ConstMethod* xconst,
    83                              AccessFlags access_flags, int size) {
    84   No_Safepoint_Verifier no_safepoint;
    85   set_constMethod(xconst);
    86   set_access_flags(access_flags);
    87   set_method_size(size);
    88   set_name_index(0);
    89   set_signature_index(0);
    90 #ifdef CC_INTERP
    91   set_result_index(T_VOID);
    92 #endif
    93   set_constants(NULL);
    94   set_max_stack(0);
    95   set_max_locals(0);
    96   set_intrinsic_id(vmIntrinsics::_none);
    97   set_jfr_towrite(false);
    98   set_method_data(NULL);
    99   set_interpreter_throwout_count(0);
   100   set_vtable_index(Method::garbage_vtable_index);
   102   // Fix and bury in Method*
   103   set_interpreter_entry(NULL); // sets i2i entry and from_int
   104   set_adapter_entry(NULL);
   105   clear_code(); // from_c/from_i get set to c2i/i2i
   107   if (access_flags.is_native()) {
   108     clear_native_function();
   109     set_signature_handler(NULL);
   110   }
   112   NOT_PRODUCT(set_compiled_invocation_count(0);)
   113   set_interpreter_invocation_count(0);
   114   invocation_counter()->init();
   115   backedge_counter()->init();
   116   clear_number_of_breakpoints();
   118 #ifdef TIERED
   119   set_rate(0);
   120   set_prev_event_count(0);
   121   set_prev_time(0);
   122 #endif
   123 }
   125 // Release Method*.  The nmethod will be gone when we get here because
   126 // we've walked the code cache.
   127 void Method::deallocate_contents(ClassLoaderData* loader_data) {
   128   MetadataFactory::free_metadata(loader_data, constMethod());
   129   set_constMethod(NULL);
   130   MetadataFactory::free_metadata(loader_data, method_data());
   131   set_method_data(NULL);
   132   // The nmethod will be gone when we get here.
   133   if (code() != NULL) _code = NULL;
   134 }
   136 address Method::get_i2c_entry() {
   137   assert(_adapter != NULL, "must have");
   138   return _adapter->get_i2c_entry();
   139 }
   141 address Method::get_c2i_entry() {
   142   assert(_adapter != NULL, "must have");
   143   return _adapter->get_c2i_entry();
   144 }
   146 address Method::get_c2i_unverified_entry() {
   147   assert(_adapter != NULL, "must have");
   148   return _adapter->get_c2i_unverified_entry();
   149 }
   151 char* Method::name_and_sig_as_C_string() const {
   152   return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature());
   153 }
   155 char* Method::name_and_sig_as_C_string(char* buf, int size) const {
   156   return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature(), buf, size);
   157 }
   159 char* Method::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature) {
   160   const char* klass_name = klass->external_name();
   161   int klass_name_len  = (int)strlen(klass_name);
   162   int method_name_len = method_name->utf8_length();
   163   int len             = klass_name_len + 1 + method_name_len + signature->utf8_length();
   164   char* dest          = NEW_RESOURCE_ARRAY(char, len + 1);
   165   strcpy(dest, klass_name);
   166   dest[klass_name_len] = '.';
   167   strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
   168   strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
   169   dest[len] = 0;
   170   return dest;
   171 }
   173 char* Method::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size) {
   174   Symbol* klass_name = klass->name();
   175   klass_name->as_klass_external_name(buf, size);
   176   int len = (int)strlen(buf);
   178   if (len < size - 1) {
   179     buf[len++] = '.';
   181     method_name->as_C_string(&(buf[len]), size - len);
   182     len = (int)strlen(buf);
   184     signature->as_C_string(&(buf[len]), size - len);
   185   }
   187   return buf;
   188 }
   190 int  Method::fast_exception_handler_bci_for(KlassHandle ex_klass, int throw_bci, TRAPS) {
   191   // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
   192   // access exception table
   193   ExceptionTable table(this);
   194   int length = table.length();
   195   // iterate through all entries sequentially
   196   constantPoolHandle pool(THREAD, constants());
   197   for (int i = 0; i < length; i ++) {
   198     //reacquire the table in case a GC happened
   199     ExceptionTable table(this);
   200     int beg_bci = table.start_pc(i);
   201     int end_bci = table.end_pc(i);
   202     assert(beg_bci <= end_bci, "inconsistent exception table");
   203     if (beg_bci <= throw_bci && throw_bci < end_bci) {
   204       // exception handler bci range covers throw_bci => investigate further
   205       int handler_bci = table.handler_pc(i);
   206       int klass_index = table.catch_type_index(i);
   207       if (klass_index == 0) {
   208         return handler_bci;
   209       } else if (ex_klass.is_null()) {
   210         return handler_bci;
   211       } else {
   212         // we know the exception class => get the constraint class
   213         // this may require loading of the constraint class; if verification
   214         // fails or some other exception occurs, return handler_bci
   215         Klass* k = pool->klass_at(klass_index, CHECK_(handler_bci));
   216         KlassHandle klass = KlassHandle(THREAD, k);
   217         assert(klass.not_null(), "klass not loaded");
   218         if (ex_klass->is_subtype_of(klass())) {
   219           return handler_bci;
   220         }
   221       }
   222     }
   223   }
   225   return -1;
   226 }
   228 void Method::mask_for(int bci, InterpreterOopMap* mask) {
   230   Thread* myThread    = Thread::current();
   231   methodHandle h_this(myThread, this);
   232 #ifdef ASSERT
   233   bool has_capability = myThread->is_VM_thread() ||
   234                         myThread->is_ConcurrentGC_thread() ||
   235                         myThread->is_GC_task_thread();
   237   if (!has_capability) {
   238     if (!VerifyStack && !VerifyLastFrame) {
   239       // verify stack calls this outside VM thread
   240       warning("oopmap should only be accessed by the "
   241               "VM, GC task or CMS threads (or during debugging)");
   242       InterpreterOopMap local_mask;
   243       InstanceKlass::cast(method_holder())->mask_for(h_this, bci, &local_mask);
   244       local_mask.print();
   245     }
   246   }
   247 #endif
   248   InstanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
   249   return;
   250 }
   253 int Method::bci_from(address bcp) const {
   254 #ifdef ASSERT
   255   { ResourceMark rm;
   256   assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
   257          err_msg("bcp doesn't belong to this method: bcp: " INTPTR_FORMAT ", method: %s", bcp, name_and_sig_as_C_string()));
   258   }
   259 #endif
   260   return bcp - code_base();
   261 }
   264 // Return (int)bcx if it appears to be a valid BCI.
   265 // Return bci_from((address)bcx) if it appears to be a valid BCP.
   266 // Return -1 otherwise.
   267 // Used by profiling code, when invalid data is a possibility.
   268 // The caller is responsible for validating the Method* itself.
   269 int Method::validate_bci_from_bcx(intptr_t bcx) const {
   270   // keep bci as -1 if not a valid bci
   271   int bci = -1;
   272   if (bcx == 0 || (address)bcx == code_base()) {
   273     // code_size() may return 0 and we allow 0 here
   274     // the method may be native
   275     bci = 0;
   276   } else if (frame::is_bci(bcx)) {
   277     if (bcx < code_size()) {
   278       bci = (int)bcx;
   279     }
   280   } else if (contains((address)bcx)) {
   281     bci = (address)bcx - code_base();
   282   }
   283   // Assert that if we have dodged any asserts, bci is negative.
   284   assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
   285   return bci;
   286 }
   288 address Method::bcp_from(int bci) const {
   289   assert((is_native() && bci == 0)  || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
   290   address bcp = code_base() + bci;
   291   assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
   292   return bcp;
   293 }
   296 int Method::size(bool is_native) {
   297   // If native, then include pointers for native_function and signature_handler
   298   int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
   299   int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
   300   return align_object_size(header_size() + extra_words);
   301 }
   304 Symbol* Method::klass_name() const {
   305   Klass* k = method_holder();
   306   assert(k->is_klass(), "must be klass");
   307   InstanceKlass* ik = (InstanceKlass*) k;
   308   return ik->name();
   309 }
   312 void Method::set_interpreter_kind() {
   313   int kind = Interpreter::method_kind(this);
   314   assert(kind != Interpreter::invalid,
   315          "interpreter entry must be valid");
   316   set_interpreter_kind(kind);
   317 }
   320 // Attempt to return method oop to original state.  Clear any pointers
   321 // (to objects outside the shared spaces).  We won't be able to predict
   322 // where they should point in a new JVM.  Further initialize some
   323 // entries now in order allow them to be write protected later.
   325 void Method::remove_unshareable_info() {
   326   unlink_method();
   327   set_interpreter_kind();
   328 }
   331 bool Method::was_executed_more_than(int n) {
   332   // Invocation counter is reset when the Method* is compiled.
   333   // If the method has compiled code we therefore assume it has
   334   // be excuted more than n times.
   335   if (is_accessor() || is_empty_method() || (code() != NULL)) {
   336     // interpreter doesn't bump invocation counter of trivial methods
   337     // compiler does not bump invocation counter of compiled methods
   338     return true;
   339   }
   340   else if (_invocation_counter.carry() || (method_data() != NULL && method_data()->invocation_counter()->carry())) {
   341     // The carry bit is set when the counter overflows and causes
   342     // a compilation to occur.  We don't know how many times
   343     // the counter has been reset, so we simply assume it has
   344     // been executed more than n times.
   345     return true;
   346   } else {
   347     return invocation_count() > n;
   348   }
   349 }
   351 #ifndef PRODUCT
   352 void Method::print_invocation_count() {
   353   if (is_static()) tty->print("static ");
   354   if (is_final()) tty->print("final ");
   355   if (is_synchronized()) tty->print("synchronized ");
   356   if (is_native()) tty->print("native ");
   357   method_holder()->name()->print_symbol_on(tty);
   358   tty->print(".");
   359   name()->print_symbol_on(tty);
   360   signature()->print_symbol_on(tty);
   362   if (WizardMode) {
   363     // dump the size of the byte codes
   364     tty->print(" {%d}", code_size());
   365   }
   366   tty->cr();
   368   tty->print_cr ("  interpreter_invocation_count: %8d ", interpreter_invocation_count());
   369   tty->print_cr ("  invocation_counter:           %8d ", invocation_count());
   370   tty->print_cr ("  backedge_counter:             %8d ", backedge_count());
   371   if (CountCompiledCalls) {
   372     tty->print_cr ("  compiled_invocation_count: %8d ", compiled_invocation_count());
   373   }
   375 }
   376 #endif
   378 // Build a MethodData* object to hold information about this method
   379 // collected in the interpreter.
   380 void Method::build_interpreter_method_data(methodHandle method, TRAPS) {
   381   // Do not profile method if current thread holds the pending list lock,
   382   // which avoids deadlock for acquiring the MethodData_lock.
   383   if (InstanceRefKlass::owns_pending_list_lock((JavaThread*)THREAD)) {
   384     return;
   385   }
   387   // Grab a lock here to prevent multiple
   388   // MethodData*s from being created.
   389   MutexLocker ml(MethodData_lock, THREAD);
   390   if (method->method_data() == NULL) {
   391     ClassLoaderData* loader_data = method->method_holder()->class_loader_data();
   392     MethodData* method_data = MethodData::allocate(loader_data, method, CHECK);
   393     method->set_method_data(method_data);
   394     if (PrintMethodData && (Verbose || WizardMode)) {
   395       ResourceMark rm(THREAD);
   396       tty->print("build_interpreter_method_data for ");
   397       method->print_name(tty);
   398       tty->cr();
   399       // At the end of the run, the MDO, full of data, will be dumped.
   400     }
   401   }
   402 }
   404 void Method::cleanup_inline_caches() {
   405   // The current system doesn't use inline caches in the interpreter
   406   // => nothing to do (keep this method around for future use)
   407 }
   410 int Method::extra_stack_words() {
   411   // not an inline function, to avoid a header dependency on Interpreter
   412   return extra_stack_entries() * Interpreter::stackElementSize;
   413 }
   416 void Method::compute_size_of_parameters(Thread *thread) {
   417   ArgumentSizeComputer asc(signature());
   418   set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
   419 }
   421 #ifdef CC_INTERP
   422 void Method::set_result_index(BasicType type)          {
   423   _result_index = Interpreter::BasicType_as_index(type);
   424 }
   425 #endif
   427 BasicType Method::result_type() const {
   428   ResultTypeFinder rtf(signature());
   429   return rtf.type();
   430 }
   433 bool Method::is_empty_method() const {
   434   return  code_size() == 1
   435       && *code_base() == Bytecodes::_return;
   436 }
   439 bool Method::is_vanilla_constructor() const {
   440   // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
   441   // which only calls the superclass vanilla constructor and possibly does stores of
   442   // zero constants to local fields:
   443   //
   444   //   aload_0
   445   //   invokespecial
   446   //   indexbyte1
   447   //   indexbyte2
   448   //
   449   // followed by an (optional) sequence of:
   450   //
   451   //   aload_0
   452   //   aconst_null / iconst_0 / fconst_0 / dconst_0
   453   //   putfield
   454   //   indexbyte1
   455   //   indexbyte2
   456   //
   457   // followed by:
   458   //
   459   //   return
   461   assert(name() == vmSymbols::object_initializer_name(),    "Should only be called for default constructors");
   462   assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
   463   int size = code_size();
   464   // Check if size match
   465   if (size == 0 || size % 5 != 0) return false;
   466   address cb = code_base();
   467   int last = size - 1;
   468   if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
   469     // Does not call superclass default constructor
   470     return false;
   471   }
   472   // Check optional sequence
   473   for (int i = 4; i < last; i += 5) {
   474     if (cb[i] != Bytecodes::_aload_0) return false;
   475     if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
   476     if (cb[i+2] != Bytecodes::_putfield) return false;
   477   }
   478   return true;
   479 }
   482 bool Method::compute_has_loops_flag() {
   483   BytecodeStream bcs(this);
   484   Bytecodes::Code bc;
   486   while ((bc = bcs.next()) >= 0) {
   487     switch( bc ) {
   488       case Bytecodes::_ifeq:
   489       case Bytecodes::_ifnull:
   490       case Bytecodes::_iflt:
   491       case Bytecodes::_ifle:
   492       case Bytecodes::_ifne:
   493       case Bytecodes::_ifnonnull:
   494       case Bytecodes::_ifgt:
   495       case Bytecodes::_ifge:
   496       case Bytecodes::_if_icmpeq:
   497       case Bytecodes::_if_icmpne:
   498       case Bytecodes::_if_icmplt:
   499       case Bytecodes::_if_icmpgt:
   500       case Bytecodes::_if_icmple:
   501       case Bytecodes::_if_icmpge:
   502       case Bytecodes::_if_acmpeq:
   503       case Bytecodes::_if_acmpne:
   504       case Bytecodes::_goto:
   505       case Bytecodes::_jsr:
   506         if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
   507         break;
   509       case Bytecodes::_goto_w:
   510       case Bytecodes::_jsr_w:
   511         if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
   512         break;
   513     }
   514   }
   515   _access_flags.set_loops_flag_init();
   516   return _access_flags.has_loops();
   517 }
   520 bool Method::is_final_method() const {
   521   // %%% Should return true for private methods also,
   522   // since there is no way to override them.
   523   return is_final() || Klass::cast(method_holder())->is_final();
   524 }
   527 bool Method::is_strict_method() const {
   528   return is_strict();
   529 }
   532 bool Method::can_be_statically_bound() const {
   533   if (is_final_method())  return true;
   534   return vtable_index() == nonvirtual_vtable_index;
   535 }
   538 bool Method::is_accessor() const {
   539   if (code_size() != 5) return false;
   540   if (size_of_parameters() != 1) return false;
   541   if (java_code_at(0) != Bytecodes::_aload_0 ) return false;
   542   if (java_code_at(1) != Bytecodes::_getfield) return false;
   543   if (java_code_at(4) != Bytecodes::_areturn &&
   544       java_code_at(4) != Bytecodes::_ireturn ) return false;
   545   return true;
   546 }
   549 bool Method::is_initializer() const {
   550   return name() == vmSymbols::object_initializer_name() || is_static_initializer();
   551 }
   553 bool Method::has_valid_initializer_flags() const {
   554   return (is_static() ||
   555           InstanceKlass::cast(method_holder())->major_version() < 51);
   556 }
   558 bool Method::is_static_initializer() const {
   559   // For classfiles version 51 or greater, ensure that the clinit method is
   560   // static.  Non-static methods with the name "<clinit>" are not static
   561   // initializers. (older classfiles exempted for backward compatibility)
   562   return name() == vmSymbols::class_initializer_name() &&
   563          has_valid_initializer_flags();
   564 }
   567 objArrayHandle Method::resolved_checked_exceptions_impl(Method* this_oop, TRAPS) {
   568   int length = this_oop->checked_exceptions_length();
   569   if (length == 0) {  // common case
   570     return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
   571   } else {
   572     methodHandle h_this(THREAD, this_oop);
   573     objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::Class_klass(), length, CHECK_(objArrayHandle()));
   574     objArrayHandle mirrors (THREAD, m_oop);
   575     for (int i = 0; i < length; i++) {
   576       CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
   577       Klass* k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
   578       assert(Klass::cast(k)->is_subclass_of(SystemDictionary::Throwable_klass()), "invalid exception class");
   579       mirrors->obj_at_put(i, Klass::cast(k)->java_mirror());
   580     }
   581     return mirrors;
   582   }
   583 };
   586 int Method::line_number_from_bci(int bci) const {
   587   if (bci == SynchronizationEntryBCI) bci = 0;
   588   assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
   589   int best_bci  =  0;
   590   int best_line = -1;
   592   if (has_linenumber_table()) {
   593     // The line numbers are a short array of 2-tuples [start_pc, line_number].
   594     // Not necessarily sorted and not necessarily one-to-one.
   595     CompressedLineNumberReadStream stream(compressed_linenumber_table());
   596     while (stream.read_pair()) {
   597       if (stream.bci() == bci) {
   598         // perfect match
   599         return stream.line();
   600       } else {
   601         // update best_bci/line
   602         if (stream.bci() < bci && stream.bci() >= best_bci) {
   603           best_bci  = stream.bci();
   604           best_line = stream.line();
   605         }
   606       }
   607     }
   608   }
   609   return best_line;
   610 }
   613 bool Method::is_klass_loaded_by_klass_index(int klass_index) const {
   614   if( constants()->tag_at(klass_index).is_unresolved_klass() ) {
   615     Thread *thread = Thread::current();
   616     Symbol* klass_name = constants()->klass_name_at(klass_index);
   617     Handle loader(thread, InstanceKlass::cast(method_holder())->class_loader());
   618     Handle prot  (thread, Klass::cast(method_holder())->protection_domain());
   619     return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
   620   } else {
   621     return true;
   622   }
   623 }
   626 bool Method::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
   627   int klass_index = constants()->klass_ref_index_at(refinfo_index);
   628   if (must_be_resolved) {
   629     // Make sure klass is resolved in constantpool.
   630     if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
   631   }
   632   return is_klass_loaded_by_klass_index(klass_index);
   633 }
   636 void Method::set_native_function(address function, bool post_event_flag) {
   637   assert(function != NULL, "use clear_native_function to unregister natives");
   638   assert(!is_method_handle_intrinsic() || function == SharedRuntime::native_method_throw_unsatisfied_link_error_entry(), "");
   639   address* native_function = native_function_addr();
   641   // We can see racers trying to place the same native function into place. Once
   642   // is plenty.
   643   address current = *native_function;
   644   if (current == function) return;
   645   if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
   646       function != NULL) {
   647     // native_method_throw_unsatisfied_link_error_entry() should only
   648     // be passed when post_event_flag is false.
   649     assert(function !=
   650       SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
   651       "post_event_flag mis-match");
   653     // post the bind event, and possible change the bind function
   654     JvmtiExport::post_native_method_bind(this, &function);
   655   }
   656   *native_function = function;
   657   // This function can be called more than once. We must make sure that we always
   658   // use the latest registered method -> check if a stub already has been generated.
   659   // If so, we have to make it not_entrant.
   660   nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
   661   if (nm != NULL) {
   662     nm->make_not_entrant();
   663   }
   664 }
   667 bool Method::has_native_function() const {
   668   if (is_method_handle_intrinsic())
   669     return false;  // special-cased in SharedRuntime::generate_native_wrapper
   670   address func = native_function();
   671   return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
   672 }
   675 void Method::clear_native_function() {
   676   // Note: is_method_handle_intrinsic() is allowed here.
   677   set_native_function(
   678     SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
   679     !native_bind_event_is_interesting);
   680   clear_code();
   681 }
   683 address Method::critical_native_function() {
   684   methodHandle mh(this);
   685   return NativeLookup::lookup_critical_entry(mh);
   686 }
   689 void Method::set_signature_handler(address handler) {
   690   address* signature_handler =  signature_handler_addr();
   691   *signature_handler = handler;
   692 }
   695 void Method::print_made_not_compilable(int comp_level, bool is_osr, bool report) {
   696   if (PrintCompilation && report) {
   697     ttyLocker ttyl;
   698     tty->print("made not %scompilable on ", is_osr ? "OSR " : "");
   699     if (comp_level == CompLevel_all) {
   700       tty->print("all levels ");
   701     } else {
   702       tty->print("levels ");
   703       for (int i = (int)CompLevel_none; i <= comp_level; i++) {
   704         tty->print("%d ", i);
   705       }
   706     }
   707     this->print_short_name(tty);
   708     int size = this->code_size();
   709     if (size > 0)
   710       tty->print(" (%d bytes)", size);
   711     tty->cr();
   712   }
   713   if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
   714     ttyLocker ttyl;
   715     xtty->begin_elem("make_not_%scompilable thread='%d'", is_osr ? "osr_" : "", (int) os::current_thread_id());
   716     xtty->method(this);
   717     xtty->stamp();
   718     xtty->end_elem();
   719   }
   720 }
   722 bool Method::is_not_compilable(int comp_level) const {
   723   if (number_of_breakpoints() > 0)
   724     return true;
   725   if (is_method_handle_intrinsic())
   726     return !is_synthetic();  // the generated adapters must be compiled
   727   if (comp_level == CompLevel_any)
   728     return is_not_c1_compilable() || is_not_c2_compilable();
   729   if (is_c1_compile(comp_level))
   730     return is_not_c1_compilable();
   731   if (is_c2_compile(comp_level))
   732     return is_not_c2_compilable();
   733   return false;
   734 }
   736 // call this when compiler finds that this method is not compilable
   737 void Method::set_not_compilable(int comp_level, bool report) {
   738   print_made_not_compilable(comp_level, /*is_osr*/ false, report);
   739   if (comp_level == CompLevel_all) {
   740     set_not_c1_compilable();
   741     set_not_c2_compilable();
   742   } else {
   743     if (is_c1_compile(comp_level))
   744       set_not_c1_compilable();
   745     if (is_c2_compile(comp_level))
   746       set_not_c2_compilable();
   747   }
   748   CompilationPolicy::policy()->disable_compilation(this);
   749 }
   751 bool Method::is_not_osr_compilable(int comp_level) const {
   752   if (is_not_compilable(comp_level))
   753     return true;
   754   if (comp_level == CompLevel_any)
   755     return is_not_c1_osr_compilable() || is_not_c2_osr_compilable();
   756   if (is_c1_compile(comp_level))
   757     return is_not_c1_osr_compilable();
   758   if (is_c2_compile(comp_level))
   759     return is_not_c2_osr_compilable();
   760   return false;
   761 }
   763 void Method::set_not_osr_compilable(int comp_level, bool report) {
   764   print_made_not_compilable(comp_level, /*is_osr*/ true, report);
   765   if (comp_level == CompLevel_all) {
   766     set_not_c1_osr_compilable();
   767     set_not_c2_osr_compilable();
   768   } else {
   769     if (is_c1_compile(comp_level))
   770       set_not_c1_osr_compilable();
   771     if (is_c2_compile(comp_level))
   772       set_not_c2_osr_compilable();
   773   }
   774   CompilationPolicy::policy()->disable_compilation(this);
   775 }
   777 // Revert to using the interpreter and clear out the nmethod
   778 void Method::clear_code() {
   780   // this may be NULL if c2i adapters have not been made yet
   781   // Only should happen at allocate time.
   782   if (_adapter == NULL) {
   783     _from_compiled_entry    = NULL;
   784   } else {
   785     _from_compiled_entry    = _adapter->get_c2i_entry();
   786   }
   787   OrderAccess::storestore();
   788   _from_interpreted_entry = _i2i_entry;
   789   OrderAccess::storestore();
   790   _code = NULL;
   791 }
   793 // Called by class data sharing to remove any entry points (which are not shared)
   794 void Method::unlink_method() {
   795   _code = NULL;
   796   _i2i_entry = NULL;
   797   _from_interpreted_entry = NULL;
   798   if (is_native()) {
   799     *native_function_addr() = NULL;
   800     set_signature_handler(NULL);
   801   }
   802   NOT_PRODUCT(set_compiled_invocation_count(0);)
   803   invocation_counter()->reset();
   804   backedge_counter()->reset();
   805   _adapter = NULL;
   806   _from_compiled_entry = NULL;
   807   assert(_method_data == NULL, "unexpected method data?");
   808   set_method_data(NULL);
   809   set_interpreter_throwout_count(0);
   810   set_interpreter_invocation_count(0);
   811 }
   813 // Called when the method_holder is getting linked. Setup entrypoints so the method
   814 // is ready to be called from interpreter, compiler, and vtables.
   815 void Method::link_method(methodHandle h_method, TRAPS) {
   816   // If the code cache is full, we may reenter this function for the
   817   // leftover methods that weren't linked.
   818   if (_i2i_entry != NULL) return;
   820   assert(_adapter == NULL, "init'd to NULL" );
   821   assert( _code == NULL, "nothing compiled yet" );
   823   // Setup interpreter entrypoint
   824   assert(this == h_method(), "wrong h_method()" );
   825   address entry = Interpreter::entry_for_method(h_method);
   826   assert(entry != NULL, "interpreter entry must be non-null");
   827   // Sets both _i2i_entry and _from_interpreted_entry
   828   set_interpreter_entry(entry);
   829   if (is_native() && !is_method_handle_intrinsic()) {
   830     set_native_function(
   831       SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
   832       !native_bind_event_is_interesting);
   833   }
   835   // Setup compiler entrypoint.  This is made eagerly, so we do not need
   836   // special handling of vtables.  An alternative is to make adapters more
   837   // lazily by calling make_adapter() from from_compiled_entry() for the
   838   // normal calls.  For vtable calls life gets more complicated.  When a
   839   // call-site goes mega-morphic we need adapters in all methods which can be
   840   // called from the vtable.  We need adapters on such methods that get loaded
   841   // later.  Ditto for mega-morphic itable calls.  If this proves to be a
   842   // problem we'll make these lazily later.
   843   (void) make_adapters(h_method, CHECK);
   845   // ONLY USE the h_method now as make_adapter may have blocked
   847 }
   849 address Method::make_adapters(methodHandle mh, TRAPS) {
   850   // Adapters for compiled code are made eagerly here.  They are fairly
   851   // small (generally < 100 bytes) and quick to make (and cached and shared)
   852   // so making them eagerly shouldn't be too expensive.
   853   AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
   854   if (adapter == NULL ) {
   855     THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(), "out of space in CodeCache for adapters");
   856   }
   858   mh->set_adapter_entry(adapter);
   859   mh->_from_compiled_entry = adapter->get_c2i_entry();
   860   return adapter->get_c2i_entry();
   861 }
   863 // The verified_code_entry() must be called when a invoke is resolved
   864 // on this method.
   866 // It returns the compiled code entry point, after asserting not null.
   867 // This function is called after potential safepoints so that nmethod
   868 // or adapter that it points to is still live and valid.
   869 // This function must not hit a safepoint!
   870 address Method::verified_code_entry() {
   871   debug_only(No_Safepoint_Verifier nsv;)
   872   nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
   873   if (code == NULL && UseCodeCacheFlushing) {
   874     nmethod *saved_code = CodeCache::find_and_remove_saved_code(this);
   875     if (saved_code != NULL) {
   876       methodHandle method(this);
   877       assert( ! saved_code->is_osr_method(), "should not get here for osr" );
   878       set_code( method, saved_code );
   879     }
   880   }
   882   assert(_from_compiled_entry != NULL, "must be set");
   883   return _from_compiled_entry;
   884 }
   886 // Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
   887 // (could be racing a deopt).
   888 // Not inline to avoid circular ref.
   889 bool Method::check_code() const {
   890   // cached in a register or local.  There's a race on the value of the field.
   891   nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
   892   return code == NULL || (code->method() == NULL) || (code->method() == (Method*)this && !code->is_osr_method());
   893 }
   895 // Install compiled code.  Instantly it can execute.
   896 void Method::set_code(methodHandle mh, nmethod *code) {
   897   assert( code, "use clear_code to remove code" );
   898   assert( mh->check_code(), "" );
   900   guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
   902   // These writes must happen in this order, because the interpreter will
   903   // directly jump to from_interpreted_entry which jumps to an i2c adapter
   904   // which jumps to _from_compiled_entry.
   905   mh->_code = code;             // Assign before allowing compiled code to exec
   907   int comp_level = code->comp_level();
   908   // In theory there could be a race here. In practice it is unlikely
   909   // and not worth worrying about.
   910   if (comp_level > mh->highest_comp_level()) {
   911     mh->set_highest_comp_level(comp_level);
   912   }
   914   OrderAccess::storestore();
   915 #ifdef SHARK
   916   mh->_from_interpreted_entry = code->insts_begin();
   917 #else //!SHARK
   918   mh->_from_compiled_entry = code->verified_entry_point();
   919   OrderAccess::storestore();
   920   // Instantly compiled code can execute.
   921   if (!mh->is_method_handle_intrinsic())
   922     mh->_from_interpreted_entry = mh->get_i2c_entry();
   923 #endif //!SHARK
   924 }
   927 bool Method::is_overridden_in(Klass* k) const {
   928   InstanceKlass* ik = InstanceKlass::cast(k);
   930   if (ik->is_interface()) return false;
   932   // If method is an interface, we skip it - except if it
   933   // is a miranda method
   934   if (InstanceKlass::cast(method_holder())->is_interface()) {
   935     // Check that method is not a miranda method
   936     if (ik->lookup_method(name(), signature()) == NULL) {
   937       // No implementation exist - so miranda method
   938       return false;
   939     }
   940     return true;
   941   }
   943   assert(ik->is_subclass_of(method_holder()), "should be subklass");
   944   assert(ik->vtable() != NULL, "vtable should exist");
   945   if (vtable_index() == nonvirtual_vtable_index) {
   946     return false;
   947   } else {
   948     Method* vt_m = ik->method_at_vtable(vtable_index());
   949     return vt_m != this;
   950   }
   951 }
   954 // give advice about whether this Method* should be cached or not
   955 bool Method::should_not_be_cached() const {
   956   if (is_old()) {
   957     // This method has been redefined. It is either EMCP or obsolete
   958     // and we don't want to cache it because that would pin the method
   959     // down and prevent it from being collectible if and when it
   960     // finishes executing.
   961     return true;
   962   }
   964   // caching this method should be just fine
   965   return false;
   966 }
   968 // Constant pool structure for invoke methods:
   969 enum {
   970   _imcp_invoke_name = 1,        // utf8: 'invokeExact', etc.
   971   _imcp_invoke_signature,       // utf8: (variable Symbol*)
   972   _imcp_limit
   973 };
   975 // Test if this method is an MH adapter frame generated by Java code.
   976 // Cf. java/lang/invoke/InvokerBytecodeGenerator
   977 bool Method::is_compiled_lambda_form() const {
   978   return intrinsic_id() == vmIntrinsics::_compiledLambdaForm;
   979 }
   981 // Test if this method is an internal MH primitive method.
   982 bool Method::is_method_handle_intrinsic() const {
   983   vmIntrinsics::ID iid = intrinsic_id();
   984   return (MethodHandles::is_signature_polymorphic(iid) &&
   985           MethodHandles::is_signature_polymorphic_intrinsic(iid));
   986 }
   988 bool Method::has_member_arg() const {
   989   vmIntrinsics::ID iid = intrinsic_id();
   990   return (MethodHandles::is_signature_polymorphic(iid) &&
   991           MethodHandles::has_member_arg(iid));
   992 }
   994 // Make an instance of a signature-polymorphic internal MH primitive.
   995 methodHandle Method::make_method_handle_intrinsic(vmIntrinsics::ID iid,
   996                                                          Symbol* signature,
   997                                                          TRAPS) {
   998   ResourceMark rm;
   999   methodHandle empty;
  1001   KlassHandle holder = SystemDictionary::MethodHandle_klass();
  1002   Symbol* name = MethodHandles::signature_polymorphic_intrinsic_name(iid);
  1003   assert(iid == MethodHandles::signature_polymorphic_name_id(name), "");
  1004   if (TraceMethodHandles) {
  1005     tty->print_cr("make_method_handle_intrinsic MH.%s%s", name->as_C_string(), signature->as_C_string());
  1008   // invariant:   cp->symbol_at_put is preceded by a refcount increment (more usually a lookup)
  1009   name->increment_refcount();
  1010   signature->increment_refcount();
  1012   int cp_length = _imcp_limit;
  1013   ClassLoaderData* loader_data = holder->class_loader_data();
  1014   constantPoolHandle cp;
  1016     ConstantPool* cp_oop = ConstantPool::allocate(loader_data, cp_length, CHECK_(empty));
  1017     cp = constantPoolHandle(THREAD, cp_oop);
  1019   cp->set_pool_holder(holder());
  1020   cp->symbol_at_put(_imcp_invoke_name,       name);
  1021   cp->symbol_at_put(_imcp_invoke_signature,  signature);
  1022   cp->set_preresolution();
  1024   // decide on access bits:  public or not?
  1025   int flags_bits = (JVM_ACC_NATIVE | JVM_ACC_SYNTHETIC | JVM_ACC_FINAL);
  1026   bool must_be_static = MethodHandles::is_signature_polymorphic_static(iid);
  1027   if (must_be_static)  flags_bits |= JVM_ACC_STATIC;
  1028   assert((flags_bits & JVM_ACC_PUBLIC) == 0, "do not expose these methods");
  1030   methodHandle m;
  1032     Method* m_oop = Method::allocate(loader_data, 0, accessFlags_from(flags_bits),
  1033                                               0, 0, 0, 0, CHECK_(empty));
  1034     m = methodHandle(THREAD, m_oop);
  1036   m->set_constants(cp());
  1037   m->set_name_index(_imcp_invoke_name);
  1038   m->set_signature_index(_imcp_invoke_signature);
  1039   assert(MethodHandles::is_signature_polymorphic_name(m->name()), "");
  1040   assert(m->signature() == signature, "");
  1041 #ifdef CC_INTERP
  1042   ResultTypeFinder rtf(signature);
  1043   m->set_result_index(rtf.type());
  1044 #endif
  1045   m->compute_size_of_parameters(THREAD);
  1046   m->init_intrinsic_id();
  1047   assert(m->is_method_handle_intrinsic(), "");
  1048 #ifdef ASSERT
  1049   if (!MethodHandles::is_signature_polymorphic(m->intrinsic_id()))  m->print();
  1050   assert(MethodHandles::is_signature_polymorphic(m->intrinsic_id()), "must be an invoker");
  1051   assert(m->intrinsic_id() == iid, "correctly predicted iid");
  1052 #endif //ASSERT
  1054   // Finally, set up its entry points.
  1055   assert(m->can_be_statically_bound(), "");
  1056   m->set_vtable_index(Method::nonvirtual_vtable_index);
  1057   m->link_method(m, CHECK_(empty));
  1059   if (TraceMethodHandles && (Verbose || WizardMode))
  1060     m->print_on(tty);
  1062   return m;
  1065 Klass* Method::check_non_bcp_klass(Klass* klass) {
  1066   if (klass != NULL && Klass::cast(klass)->class_loader() != NULL) {
  1067     if (Klass::cast(klass)->oop_is_objArray())
  1068       klass = objArrayKlass::cast(klass)->bottom_klass();
  1069     return klass;
  1071   return NULL;
  1075 methodHandle Method::clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
  1076                                                 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
  1077   // Code below does not work for native methods - they should never get rewritten anyway
  1078   assert(!m->is_native(), "cannot rewrite native methods");
  1079   // Allocate new Method*
  1080   AccessFlags flags = m->access_flags();
  1081   int checked_exceptions_len = m->checked_exceptions_length();
  1082   int localvariable_len = m->localvariable_table_length();
  1083   int exception_table_len = m->exception_table_length();
  1085   ClassLoaderData* loader_data = m()->method_holder()->class_loader_data();
  1086   Method* newm_oop = Method::allocate(loader_data,
  1087                                                new_code_length,
  1088                                               flags,
  1089                                               new_compressed_linenumber_size,
  1090                                               localvariable_len,
  1091                                               exception_table_len,
  1092                                               checked_exceptions_len,
  1093                                               CHECK_(methodHandle()));
  1094   methodHandle newm (THREAD, newm_oop);
  1095   int new_method_size = newm->method_size();
  1097   // Create a shallow copy of Method part, but be careful to preserve the new ConstMethod*
  1098   ConstMethod* newcm = newm->constMethod();
  1099   int new_const_method_size = newm->constMethod()->size();
  1101   memcpy(newm(), m(), sizeof(Method));
  1103   // Create shallow copy of ConstMethod.
  1104   memcpy(newcm, m->constMethod(), sizeof(ConstMethod));
  1106   // Reset correct method/const method, method size, and parameter info
  1107   newm->set_constMethod(newcm);
  1108   newm->constMethod()->set_code_size(new_code_length);
  1109   newm->constMethod()->set_constMethod_size(new_const_method_size);
  1110   newm->set_method_size(new_method_size);
  1111   assert(newm->code_size() == new_code_length, "check");
  1112   assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
  1113   assert(newm->exception_table_length() == exception_table_len, "check");
  1114   assert(newm->localvariable_table_length() == localvariable_len, "check");
  1115   // Copy new byte codes
  1116   memcpy(newm->code_base(), new_code, new_code_length);
  1117   // Copy line number table
  1118   if (new_compressed_linenumber_size > 0) {
  1119     memcpy(newm->compressed_linenumber_table(),
  1120            new_compressed_linenumber_table,
  1121            new_compressed_linenumber_size);
  1123   // Copy checked_exceptions
  1124   if (checked_exceptions_len > 0) {
  1125     memcpy(newm->checked_exceptions_start(),
  1126            m->checked_exceptions_start(),
  1127            checked_exceptions_len * sizeof(CheckedExceptionElement));
  1129   // Copy exception table
  1130   if (exception_table_len > 0) {
  1131     memcpy(newm->exception_table_start(),
  1132            m->exception_table_start(),
  1133            exception_table_len * sizeof(ExceptionTableElement));
  1135   // Copy local variable number table
  1136   if (localvariable_len > 0) {
  1137     memcpy(newm->localvariable_table_start(),
  1138            m->localvariable_table_start(),
  1139            localvariable_len * sizeof(LocalVariableTableElement));
  1141   // Copy stackmap table
  1142   if (m->has_stackmap_table()) {
  1143     int code_attribute_length = m->stackmap_data()->length();
  1144     Array<u1>* stackmap_data =
  1145       MetadataFactory::new_array<u1>(loader_data, code_attribute_length, 0, CHECK_NULL);
  1146     memcpy((void*)stackmap_data->adr_at(0),
  1147            (void*)m->stackmap_data()->adr_at(0), code_attribute_length);
  1148     newm->set_stackmap_data(stackmap_data);
  1151   return newm;
  1154 vmSymbols::SID Method::klass_id_for_intrinsics(Klass* holder) {
  1155   // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
  1156   // because we are not loading from core libraries
  1157   if (InstanceKlass::cast(holder)->class_loader() != NULL)
  1158     return vmSymbols::NO_SID;   // regardless of name, no intrinsics here
  1160   // see if the klass name is well-known:
  1161   Symbol* klass_name = InstanceKlass::cast(holder)->name();
  1162   return vmSymbols::find_sid(klass_name);
  1165 void Method::init_intrinsic_id() {
  1166   assert(_intrinsic_id == vmIntrinsics::_none, "do this just once");
  1167   const uintptr_t max_id_uint = right_n_bits((int)(sizeof(_intrinsic_id) * BitsPerByte));
  1168   assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_id_uint, "else fix size");
  1169   assert(intrinsic_id_size_in_bytes() == sizeof(_intrinsic_id), "");
  1171   // the klass name is well-known:
  1172   vmSymbols::SID klass_id = klass_id_for_intrinsics(method_holder());
  1173   assert(klass_id != vmSymbols::NO_SID, "caller responsibility");
  1175   // ditto for method and signature:
  1176   vmSymbols::SID  name_id = vmSymbols::find_sid(name());
  1177   if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
  1178       && name_id == vmSymbols::NO_SID)
  1179     return;
  1180   vmSymbols::SID   sig_id = vmSymbols::find_sid(signature());
  1181   if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
  1182       && sig_id == vmSymbols::NO_SID)  return;
  1183   jshort flags = access_flags().as_short();
  1185   vmIntrinsics::ID id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
  1186   if (id != vmIntrinsics::_none) {
  1187     set_intrinsic_id(id);
  1188     return;
  1191   // A few slightly irregular cases:
  1192   switch (klass_id) {
  1193   case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
  1194     // Second chance: check in regular Math.
  1195     switch (name_id) {
  1196     case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
  1197     case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
  1198     case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
  1199       // pretend it is the corresponding method in the non-strict class:
  1200       klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
  1201       id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
  1202       break;
  1204     break;
  1206   // Signature-polymorphic methods: MethodHandle.invoke*, InvokeDynamic.*.
  1207   case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle):
  1208     if (!is_native())  break;
  1209     id = MethodHandles::signature_polymorphic_name_id(method_holder(), name());
  1210     if (is_static() != MethodHandles::is_signature_polymorphic_static(id))
  1211       id = vmIntrinsics::_none;
  1212     break;
  1215   if (id != vmIntrinsics::_none) {
  1216     // Set up its iid.  It is an alias method.
  1217     set_intrinsic_id(id);
  1218     return;
  1222 // These two methods are static since a GC may move the Method
  1223 bool Method::load_signature_classes(methodHandle m, TRAPS) {
  1224   if (THREAD->is_Compiler_thread()) {
  1225     // There is nothing useful this routine can do from within the Compile thread.
  1226     // Hopefully, the signature contains only well-known classes.
  1227     // We could scan for this and return true/false, but the caller won't care.
  1228     return false;
  1230   bool sig_is_loaded = true;
  1231   Handle class_loader(THREAD, InstanceKlass::cast(m->method_holder())->class_loader());
  1232   Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
  1233   ResourceMark rm(THREAD);
  1234   Symbol*  signature = m->signature();
  1235   for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
  1236     if (ss.is_object()) {
  1237       Symbol* sym = ss.as_symbol(CHECK_(false));
  1238       Symbol*  name  = sym;
  1239       Klass* klass = SystemDictionary::resolve_or_null(name, class_loader,
  1240                                              protection_domain, THREAD);
  1241       // We are loading classes eagerly. If a ClassNotFoundException or
  1242       // a LinkageError was generated, be sure to ignore it.
  1243       if (HAS_PENDING_EXCEPTION) {
  1244         if (PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass()) ||
  1245             PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
  1246           CLEAR_PENDING_EXCEPTION;
  1247         } else {
  1248           return false;
  1251       if( klass == NULL) { sig_is_loaded = false; }
  1254   return sig_is_loaded;
  1257 bool Method::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
  1258   Handle class_loader(THREAD, InstanceKlass::cast(m->method_holder())->class_loader());
  1259   Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
  1260   ResourceMark rm(THREAD);
  1261   Symbol*  signature = m->signature();
  1262   for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
  1263     if (ss.type() == T_OBJECT) {
  1264       Symbol* name = ss.as_symbol_or_null();
  1265       if (name == NULL) return true;
  1266       Klass* klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
  1267       if (klass == NULL) return true;
  1270   return false;
  1273 // Exposed so field engineers can debug VM
  1274 void Method::print_short_name(outputStream* st) {
  1275   ResourceMark rm;
  1276 #ifdef PRODUCT
  1277   st->print(" %s::", method_holder()->external_name());
  1278 #else
  1279   st->print(" %s::", method_holder()->internal_name());
  1280 #endif
  1281   name()->print_symbol_on(st);
  1282   if (WizardMode) signature()->print_symbol_on(st);
  1283   else if (MethodHandles::is_signature_polymorphic(intrinsic_id()))
  1284     MethodHandles::print_as_basic_type_signature_on(st, signature(), true);
  1287 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
  1288 static void reorder_based_on_method_index(Array<Method*>* methods,
  1289                                           Array<AnnotationArray*>* annotations,
  1290                                           GrowableArray<AnnotationArray*>* temp_array) {
  1291   if (annotations == NULL) {
  1292     return;
  1295   int length = methods->length();
  1296   int i;
  1297   // Copy to temp array
  1298   temp_array->clear();
  1299   for (i = 0; i < length; i++) {
  1300     temp_array->append(annotations->at(i));
  1303   // Copy back using old method indices
  1304   for (i = 0; i < length; i++) {
  1305     Method* m = methods->at(i);
  1306     annotations->at_put(i, temp_array->at(m->method_idnum()));
  1310 // Comparer for sorting an object array containing
  1311 // Method*s.
  1312 static int method_comparator(Method* a, Method* b) {
  1313   return a->name()->fast_compare(b->name());
  1316 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
  1317 void Method::sort_methods(Array<Method*>* methods,
  1318                                  Array<AnnotationArray*>* methods_annotations,
  1319                                  Array<AnnotationArray*>* methods_parameter_annotations,
  1320                                  Array<AnnotationArray*>* methods_default_annotations,
  1321                                  bool idempotent) {
  1322   int length = methods->length();
  1323   if (length > 1) {
  1324     bool do_annotations = false;
  1325     if (methods_annotations != NULL ||
  1326         methods_parameter_annotations != NULL ||
  1327         methods_default_annotations != NULL) {
  1328       do_annotations = true;
  1330     if (do_annotations) {
  1331       // Remember current method ordering so we can reorder annotations
  1332       for (int i = 0; i < length; i++) {
  1333         Method* m = methods->at(i);
  1334         m->set_method_idnum(i);
  1338       No_Safepoint_Verifier nsv;
  1339       QuickSort::sort<Method*>(methods->data(), length, method_comparator, idempotent);
  1342     // Sort annotations if necessary
  1343     assert(methods_annotations == NULL           || methods_annotations->length() == methods->length(), "");
  1344     assert(methods_parameter_annotations == NULL || methods_parameter_annotations->length() == methods->length(), "");
  1345     assert(methods_default_annotations == NULL   || methods_default_annotations->length() == methods->length(), "");
  1346     if (do_annotations) {
  1347       ResourceMark rm;
  1348       // Allocate temporary storage
  1349       GrowableArray<AnnotationArray*>* temp_array = new GrowableArray<AnnotationArray*>(length);
  1350       reorder_based_on_method_index(methods, methods_annotations, temp_array);
  1351       reorder_based_on_method_index(methods, methods_parameter_annotations, temp_array);
  1352       reorder_based_on_method_index(methods, methods_default_annotations, temp_array);
  1355     // Reset method ordering
  1356     for (int i = 0; i < length; i++) {
  1357       Method* m = methods->at(i);
  1358       m->set_method_idnum(i);
  1364 //-----------------------------------------------------------------------------------
  1365 // Non-product code
  1367 #ifndef PRODUCT
  1368 class SignatureTypePrinter : public SignatureTypeNames {
  1369  private:
  1370   outputStream* _st;
  1371   bool _use_separator;
  1373   void type_name(const char* name) {
  1374     if (_use_separator) _st->print(", ");
  1375     _st->print(name);
  1376     _use_separator = true;
  1379  public:
  1380   SignatureTypePrinter(Symbol* signature, outputStream* st) : SignatureTypeNames(signature) {
  1381     _st = st;
  1382     _use_separator = false;
  1385   void print_parameters()              { _use_separator = false; iterate_parameters(); }
  1386   void print_returntype()              { _use_separator = false; iterate_returntype(); }
  1387 };
  1390 void Method::print_name(outputStream* st) {
  1391   Thread *thread = Thread::current();
  1392   ResourceMark rm(thread);
  1393   SignatureTypePrinter sig(signature(), st);
  1394   st->print("%s ", is_static() ? "static" : "virtual");
  1395   sig.print_returntype();
  1396   st->print(" %s.", method_holder()->internal_name());
  1397   name()->print_symbol_on(st);
  1398   st->print("(");
  1399   sig.print_parameters();
  1400   st->print(")");
  1404 void Method::print_codes_on(outputStream* st) const {
  1405   print_codes_on(0, code_size(), st);
  1408 void Method::print_codes_on(int from, int to, outputStream* st) const {
  1409   Thread *thread = Thread::current();
  1410   ResourceMark rm(thread);
  1411   methodHandle mh (thread, (Method*)this);
  1412   BytecodeStream s(mh);
  1413   s.set_interval(from, to);
  1414   BytecodeTracer::set_closure(BytecodeTracer::std_closure());
  1415   while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
  1417 #endif // not PRODUCT
  1420 // Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
  1421 // between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
  1422 // we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
  1423 // as end-of-stream terminator.
  1425 void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
  1426   // bci and line number does not compress into single byte.
  1427   // Write out escape character and use regular compression for bci and line number.
  1428   write_byte((jubyte)0xFF);
  1429   write_signed_int(bci_delta);
  1430   write_signed_int(line_delta);
  1433 // See comment in method.hpp which explains why this exists.
  1434 #if defined(_M_AMD64) && _MSC_VER >= 1400
  1435 #pragma optimize("", off)
  1436 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
  1437   write_pair_inline(bci, line);
  1439 #pragma optimize("", on)
  1440 #endif
  1442 CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
  1443   _bci = 0;
  1444   _line = 0;
  1445 };
  1448 bool CompressedLineNumberReadStream::read_pair() {
  1449   jubyte next = read_byte();
  1450   // Check for terminator
  1451   if (next == 0) return false;
  1452   if (next == 0xFF) {
  1453     // Escape character, regular compression used
  1454     _bci  += read_signed_int();
  1455     _line += read_signed_int();
  1456   } else {
  1457     // Single byte compression used
  1458     _bci  += next >> 3;
  1459     _line += next & 0x7;
  1461   return true;
  1465 Bytecodes::Code Method::orig_bytecode_at(int bci) const {
  1466   BreakpointInfo* bp = InstanceKlass::cast(method_holder())->breakpoints();
  1467   for (; bp != NULL; bp = bp->next()) {
  1468     if (bp->match(this, bci)) {
  1469       return bp->orig_bytecode();
  1472   ShouldNotReachHere();
  1473   return Bytecodes::_shouldnotreachhere;
  1476 void Method::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
  1477   assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
  1478   BreakpointInfo* bp = InstanceKlass::cast(method_holder())->breakpoints();
  1479   for (; bp != NULL; bp = bp->next()) {
  1480     if (bp->match(this, bci)) {
  1481       bp->set_orig_bytecode(code);
  1482       // and continue, in case there is more than one
  1487 void Method::set_breakpoint(int bci) {
  1488   InstanceKlass* ik = InstanceKlass::cast(method_holder());
  1489   BreakpointInfo *bp = new BreakpointInfo(this, bci);
  1490   bp->set_next(ik->breakpoints());
  1491   ik->set_breakpoints(bp);
  1492   // do this last:
  1493   bp->set(this);
  1496 static void clear_matches(Method* m, int bci) {
  1497   InstanceKlass* ik = InstanceKlass::cast(m->method_holder());
  1498   BreakpointInfo* prev_bp = NULL;
  1499   BreakpointInfo* next_bp;
  1500   for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
  1501     next_bp = bp->next();
  1502     // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
  1503     if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
  1504       // do this first:
  1505       bp->clear(m);
  1506       // unhook it
  1507       if (prev_bp != NULL)
  1508         prev_bp->set_next(next_bp);
  1509       else
  1510         ik->set_breakpoints(next_bp);
  1511       delete bp;
  1512       // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
  1513       // at same location. So we have multiple matching (method_index and bci)
  1514       // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
  1515       // breakpoint for clear_breakpoint request and keep all other method versions
  1516       // BreakpointInfo for future clear_breakpoint request.
  1517       // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
  1518       // which is being called when class is unloaded. We delete all the Breakpoint
  1519       // information for all versions of method. We may not correctly restore the original
  1520       // bytecode in all method versions, but that is ok. Because the class is being unloaded
  1521       // so these methods won't be used anymore.
  1522       if (bci >= 0) {
  1523         break;
  1525     } else {
  1526       // This one is a keeper.
  1527       prev_bp = bp;
  1532 void Method::clear_breakpoint(int bci) {
  1533   assert(bci >= 0, "");
  1534   clear_matches(this, bci);
  1537 void Method::clear_all_breakpoints() {
  1538   clear_matches(this, -1);
  1542 int Method::invocation_count() {
  1543   if (TieredCompilation) {
  1544     MethodData* const mdo = method_data();
  1545     if (invocation_counter()->carry() || ((mdo != NULL) ? mdo->invocation_counter()->carry() : false)) {
  1546       return InvocationCounter::count_limit;
  1547     } else {
  1548       return invocation_counter()->count() + ((mdo != NULL) ? mdo->invocation_counter()->count() : 0);
  1550   } else {
  1551     return invocation_counter()->count();
  1555 int Method::backedge_count() {
  1556   if (TieredCompilation) {
  1557     MethodData* const mdo = method_data();
  1558     if (backedge_counter()->carry() || ((mdo != NULL) ? mdo->backedge_counter()->carry() : false)) {
  1559       return InvocationCounter::count_limit;
  1560     } else {
  1561       return backedge_counter()->count() + ((mdo != NULL) ? mdo->backedge_counter()->count() : 0);
  1563   } else {
  1564     return backedge_counter()->count();
  1568 int Method::highest_comp_level() const {
  1569   MethodData* mdo = method_data();
  1570   if (mdo != NULL) {
  1571     return mdo->highest_comp_level();
  1572   } else {
  1573     return CompLevel_none;
  1577 int Method::highest_osr_comp_level() const {
  1578   MethodData* mdo = method_data();
  1579   if (mdo != NULL) {
  1580     return mdo->highest_osr_comp_level();
  1581   } else {
  1582     return CompLevel_none;
  1586 void Method::set_highest_comp_level(int level) {
  1587   MethodData* mdo = method_data();
  1588   if (mdo != NULL) {
  1589     mdo->set_highest_comp_level(level);
  1593 void Method::set_highest_osr_comp_level(int level) {
  1594   MethodData* mdo = method_data();
  1595   if (mdo != NULL) {
  1596     mdo->set_highest_osr_comp_level(level);
  1600 BreakpointInfo::BreakpointInfo(Method* m, int bci) {
  1601   _bci = bci;
  1602   _name_index = m->name_index();
  1603   _signature_index = m->signature_index();
  1604   _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
  1605   if (_orig_bytecode == Bytecodes::_breakpoint)
  1606     _orig_bytecode = m->orig_bytecode_at(_bci);
  1607   _next = NULL;
  1610 void BreakpointInfo::set(Method* method) {
  1611 #ifdef ASSERT
  1613     Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
  1614     if (code == Bytecodes::_breakpoint)
  1615       code = method->orig_bytecode_at(_bci);
  1616     assert(orig_bytecode() == code, "original bytecode must be the same");
  1618 #endif
  1619   *method->bcp_from(_bci) = Bytecodes::_breakpoint;
  1620   method->incr_number_of_breakpoints();
  1621   SystemDictionary::notice_modification();
  1623     // Deoptimize all dependents on this method
  1624     Thread *thread = Thread::current();
  1625     HandleMark hm(thread);
  1626     methodHandle mh(thread, method);
  1627     Universe::flush_dependents_on_method(mh);
  1631 void BreakpointInfo::clear(Method* method) {
  1632   *method->bcp_from(_bci) = orig_bytecode();
  1633   assert(method->number_of_breakpoints() > 0, "must not go negative");
  1634   method->decr_number_of_breakpoints();
  1637 // jmethodID handling
  1639 // This is a block allocating object, sort of like JNIHandleBlock, only a
  1640 // lot simpler.  There aren't many of these, they aren't long, they are rarely
  1641 // deleted and so we can do some suboptimal things.
  1642 // It's allocated on the CHeap because once we allocate a jmethodID, we can
  1643 // never get rid of it.
  1644 // It would be nice to be able to parameterize the number of methods for
  1645 // the null_class_loader but then we'd have to turn this and ClassLoaderData
  1646 // into templates.
  1648 // I feel like this brain dead class should exist somewhere in the STL
  1650 class JNIMethodBlock : public CHeapObj<mtClass> {
  1651   enum { number_of_methods = 8 };
  1653   Method*         _methods[number_of_methods];
  1654   int             _top;
  1655   JNIMethodBlock* _next;
  1656  public:
  1657   static Method* const _free_method;
  1659   JNIMethodBlock() : _next(NULL), _top(0) {
  1660     for (int i = 0; i< number_of_methods; i++) _methods[i] = _free_method;
  1663   Method** add_method(Method* m) {
  1664     if (_top < number_of_methods) {
  1665       // top points to the next free entry.
  1666       int i = _top;
  1667       _methods[i] = m;
  1668       _top++;
  1669       return &_methods[i];
  1670     } else if (_top == number_of_methods) {
  1671       // if the next free entry ran off the block see if there's a free entry
  1672       for (int i = 0; i< number_of_methods; i++) {
  1673         if (_methods[i] == _free_method) {
  1674           _methods[i] = m;
  1675           return &_methods[i];
  1678       // Only check each block once for frees.  They're very unlikely.
  1679       // Increment top past the end of the block.
  1680       _top++;
  1682     // need to allocate a next block.
  1683     if (_next == NULL) {
  1684       _next = new JNIMethodBlock();
  1686     return _next->add_method(m);
  1689   bool contains(Method** m) {
  1690     for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
  1691       for (int i = 0; i< number_of_methods; i++) {
  1692         if (&(b->_methods[i]) == m) {
  1693           return true;
  1697     return false;  // not found
  1700   // Doesn't really destroy it, just marks it as free so it can be reused.
  1701   void destroy_method(Method** m) {
  1702 #ifdef ASSERT
  1703     assert(contains(m), "should be a methodID");
  1704 #endif // ASSERT
  1705     *m = _free_method;
  1708   // During class unloading the methods are cleared, which is different
  1709   // than freed.
  1710   void clear_all_methods() {
  1711     for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
  1712       for (int i = 0; i< number_of_methods; i++) {
  1713         _methods[i] = NULL;
  1717 #ifndef PRODUCT
  1718   int count_methods() {
  1719     // count all allocated methods
  1720     int count = 0;
  1721     for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
  1722       for (int i = 0; i< number_of_methods; i++) {
  1723         if (_methods[i] != _free_method) count++;
  1726     return count;
  1728 #endif // PRODUCT
  1729 };
  1731 // Something that can't be mistaken for an address or a markOop
  1732 Method* const JNIMethodBlock::_free_method = (Method*)55;
  1734 // Add a method id to the jmethod_ids
  1735 jmethodID Method::make_jmethod_id(ClassLoaderData* loader_data, Method* m) {
  1736   ClassLoaderData* cld = loader_data;
  1738   if (!SafepointSynchronize::is_at_safepoint()) {
  1739     // Have to add jmethod_ids() to class loader data thread-safely.
  1740     // Also have to add the method to the list safely, which the cld lock
  1741     // protects as well.
  1742     MutexLockerEx ml(cld->metaspace_lock(),  Mutex::_no_safepoint_check_flag);
  1743     if (cld->jmethod_ids() == NULL) {
  1744       cld->set_jmethod_ids(new JNIMethodBlock());
  1746     // jmethodID is a pointer to Method*
  1747     return (jmethodID)cld->jmethod_ids()->add_method(m);
  1748   } else {
  1749     // At safepoint, we are single threaded and can set this.
  1750     if (cld->jmethod_ids() == NULL) {
  1751       cld->set_jmethod_ids(new JNIMethodBlock());
  1753     // jmethodID is a pointer to Method*
  1754     return (jmethodID)cld->jmethod_ids()->add_method(m);
  1758 // Mark a jmethodID as free.  This is called when there is a data race in
  1759 // InstanceKlass while creating the jmethodID cache.
  1760 void Method::destroy_jmethod_id(ClassLoaderData* loader_data, jmethodID m) {
  1761   ClassLoaderData* cld = loader_data;
  1762   Method** ptr = (Method**)m;
  1763   assert(cld->jmethod_ids() != NULL, "should have method handles");
  1764   cld->jmethod_ids()->destroy_method(ptr);
  1767 void Method::change_method_associated_with_jmethod_id(jmethodID jmid, Method* new_method) {
  1768   // Can't assert the method_holder is the same because the new method has the
  1769   // scratch method holder.
  1770   assert(resolve_jmethod_id(jmid)->method_holder()->class_loader()
  1771            == new_method->method_holder()->class_loader(),
  1772          "changing to a different class loader");
  1773   // Just change the method in place, jmethodID pointer doesn't change.
  1774   *((Method**)jmid) = new_method;
  1777 bool Method::is_method_id(jmethodID mid) {
  1778   Method* m = resolve_jmethod_id(mid);
  1779   assert(m != NULL, "should be called with non-null method");
  1780   InstanceKlass* ik = InstanceKlass::cast(m->method_holder());
  1781   ClassLoaderData* cld = ik->class_loader_data();
  1782   if (cld->jmethod_ids() == NULL) return false;
  1783   return (cld->jmethod_ids()->contains((Method**)mid));
  1786 Method* Method::checked_resolve_jmethod_id(jmethodID mid) {
  1787   if (mid == NULL) return NULL;
  1788   Method* o = resolve_jmethod_id(mid);
  1789   if (o == NULL || o == JNIMethodBlock::_free_method || !((Metadata*)o)->is_method()) {
  1790     return NULL;
  1792   return o;
  1793 };
  1795 void Method::set_on_stack(const bool value) {
  1796   // Set both the method itself and its constant pool.  The constant pool
  1797   // on stack means some method referring to it is also on the stack.
  1798   _access_flags.set_on_stack(value);
  1799   constants()->set_on_stack(value);
  1800   if (value) MetadataOnStackMark::record(this);
  1803 // Called when the class loader is unloaded to make all methods weak.
  1804 void Method::clear_jmethod_ids(ClassLoaderData* loader_data) {
  1805   loader_data->jmethod_ids()->clear_all_methods();
  1808 #ifndef PRODUCT
  1809 void Method::print_jmethod_ids(ClassLoaderData* loader_data, outputStream* out) {
  1810   out->print_cr("jni_method_id count = %d", loader_data->jmethod_ids()->count_methods());
  1812 #endif // PRODUCT
  1815 // Printing
  1817 #ifndef PRODUCT
  1819 void Method::print_on(outputStream* st) const {
  1820   ResourceMark rm;
  1821   assert(is_method(), "must be method");
  1822   st->print_cr(internal_name());
  1823   // get the effect of PrintOopAddress, always, for methods:
  1824   st->print_cr(" - this oop:          "INTPTR_FORMAT, (intptr_t)this);
  1825   st->print   (" - method holder:     "); method_holder()->print_value_on(st); st->cr();
  1826   st->print   (" - constants:         "INTPTR_FORMAT" ", (address)constants());
  1827   constants()->print_value_on(st); st->cr();
  1828   st->print   (" - access:            0x%x  ", access_flags().as_int()); access_flags().print_on(st); st->cr();
  1829   st->print   (" - name:              ");    name()->print_value_on(st); st->cr();
  1830   st->print   (" - signature:         ");    signature()->print_value_on(st); st->cr();
  1831   st->print_cr(" - max stack:         %d",   max_stack());
  1832   st->print_cr(" - max locals:        %d",   max_locals());
  1833   st->print_cr(" - size of params:    %d",   size_of_parameters());
  1834   st->print_cr(" - method size:       %d",   method_size());
  1835   if (intrinsic_id() != vmIntrinsics::_none)
  1836     st->print_cr(" - intrinsic id:      %d %s", intrinsic_id(), vmIntrinsics::name_at(intrinsic_id()));
  1837   if (highest_comp_level() != CompLevel_none)
  1838     st->print_cr(" - highest level:     %d", highest_comp_level());
  1839   st->print_cr(" - vtable index:      %d",   _vtable_index);
  1840   st->print_cr(" - i2i entry:         " INTPTR_FORMAT, interpreter_entry());
  1841   st->print(   " - adapters:          ");
  1842   AdapterHandlerEntry* a = ((Method*)this)->adapter();
  1843   if (a == NULL)
  1844     st->print_cr(INTPTR_FORMAT, a);
  1845   else
  1846     a->print_adapter_on(st);
  1847   st->print_cr(" - compiled entry     " INTPTR_FORMAT, from_compiled_entry());
  1848   st->print_cr(" - code size:         %d",   code_size());
  1849   if (code_size() != 0) {
  1850     st->print_cr(" - code start:        " INTPTR_FORMAT, code_base());
  1851     st->print_cr(" - code end (excl):   " INTPTR_FORMAT, code_base() + code_size());
  1853   if (method_data() != NULL) {
  1854     st->print_cr(" - method data:       " INTPTR_FORMAT, (address)method_data());
  1856   st->print_cr(" - checked ex length: %d",   checked_exceptions_length());
  1857   if (checked_exceptions_length() > 0) {
  1858     CheckedExceptionElement* table = checked_exceptions_start();
  1859     st->print_cr(" - checked ex start:  " INTPTR_FORMAT, table);
  1860     if (Verbose) {
  1861       for (int i = 0; i < checked_exceptions_length(); i++) {
  1862         st->print_cr("   - throws %s", constants()->printable_name_at(table[i].class_cp_index));
  1866   if (has_linenumber_table()) {
  1867     u_char* table = compressed_linenumber_table();
  1868     st->print_cr(" - linenumber start:  " INTPTR_FORMAT, table);
  1869     if (Verbose) {
  1870       CompressedLineNumberReadStream stream(table);
  1871       while (stream.read_pair()) {
  1872         st->print_cr("   - line %d: %d", stream.line(), stream.bci());
  1876   st->print_cr(" - localvar length:   %d",   localvariable_table_length());
  1877   if (localvariable_table_length() > 0) {
  1878     LocalVariableTableElement* table = localvariable_table_start();
  1879     st->print_cr(" - localvar start:    " INTPTR_FORMAT, table);
  1880     if (Verbose) {
  1881       for (int i = 0; i < localvariable_table_length(); i++) {
  1882         int bci = table[i].start_bci;
  1883         int len = table[i].length;
  1884         const char* name = constants()->printable_name_at(table[i].name_cp_index);
  1885         const char* desc = constants()->printable_name_at(table[i].descriptor_cp_index);
  1886         int slot = table[i].slot;
  1887         st->print_cr("   - %s %s bci=%d len=%d slot=%d", desc, name, bci, len, slot);
  1891   if (code() != NULL) {
  1892     st->print   (" - compiled code: ");
  1893     code()->print_value_on(st);
  1895   if (is_native()) {
  1896     st->print_cr(" - native function:   " INTPTR_FORMAT, native_function());
  1897     st->print_cr(" - signature handler: " INTPTR_FORMAT, signature_handler());
  1901 #endif //PRODUCT
  1903 void Method::print_value_on(outputStream* st) const {
  1904   assert(is_method(), "must be method");
  1905   st->print_cr(internal_name());
  1906   print_address_on(st);
  1907   st->print(" ");
  1908   name()->print_value_on(st);
  1909   st->print(" ");
  1910   signature()->print_value_on(st);
  1911   st->print(" in ");
  1912   method_holder()->print_value_on(st);
  1913   if (WizardMode) st->print("[%d,%d]", size_of_parameters(), max_locals());
  1914   if (WizardMode && code() != NULL) st->print(" ((nmethod*)%p)", code());
  1918 // Verification
  1920 void Method::verify_on(outputStream* st) {
  1921   guarantee(is_method(), "object must be method");
  1922   guarantee(is_metadata(),  "should be metadata");
  1923   guarantee(constants()->is_constantPool(), "should be constant pool");
  1924   guarantee(constants()->is_metadata(), "should be metadata");
  1925   guarantee(constMethod()->is_constMethod(), "should be ConstMethod*");
  1926   guarantee(constMethod()->is_metadata(), "should be metadata");
  1927   MethodData* md = method_data();
  1928   guarantee(md == NULL ||
  1929       md->is_metadata(), "should be in permspace");
  1930   guarantee(md == NULL ||
  1931       md->is_methodData(), "should be method data");

mercurial