src/share/vm/ci/ciMethod.cpp

Thu, 12 Oct 2017 21:27:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 21:27:07 +0800
changeset 7535
7ae4e26cb1e0
parent 7384
6a528388c7da
parent 6876
710a3c8b516e
child 7994
04ff2f6cd0eb
permissions
-rw-r--r--

merge

     1 /*
     2  * Copyright (c) 1999, 2013, 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 "ci/ciCallProfile.hpp"
    27 #include "ci/ciExceptionHandler.hpp"
    28 #include "ci/ciInstanceKlass.hpp"
    29 #include "ci/ciMethod.hpp"
    30 #include "ci/ciMethodBlocks.hpp"
    31 #include "ci/ciMethodData.hpp"
    32 #include "ci/ciStreams.hpp"
    33 #include "ci/ciSymbol.hpp"
    34 #include "ci/ciReplay.hpp"
    35 #include "ci/ciUtilities.hpp"
    36 #include "classfile/systemDictionary.hpp"
    37 #include "compiler/abstractCompiler.hpp"
    38 #include "compiler/compilerOracle.hpp"
    39 #include "compiler/methodLiveness.hpp"
    40 #include "interpreter/interpreter.hpp"
    41 #include "interpreter/linkResolver.hpp"
    42 #include "interpreter/oopMapCache.hpp"
    43 #include "memory/allocation.inline.hpp"
    44 #include "memory/resourceArea.hpp"
    45 #include "oops/generateOopMap.hpp"
    46 #include "oops/oop.inline.hpp"
    47 #include "prims/nativeLookup.hpp"
    48 #include "runtime/deoptimization.hpp"
    49 #include "utilities/bitMap.inline.hpp"
    50 #include "utilities/xmlstream.hpp"
    51 #ifdef COMPILER2
    52 #include "ci/bcEscapeAnalyzer.hpp"
    53 #include "ci/ciTypeFlow.hpp"
    54 #include "oops/method.hpp"
    55 #endif
    56 #ifdef SHARK
    57 #include "ci/ciTypeFlow.hpp"
    58 #include "oops/method.hpp"
    59 #endif
    61 // ciMethod
    62 //
    63 // This class represents a Method* in the HotSpot virtual
    64 // machine.
    67 // ------------------------------------------------------------------
    68 // ciMethod::ciMethod
    69 //
    70 // Loaded method.
    71 ciMethod::ciMethod(methodHandle h_m, ciInstanceKlass* holder) :
    72   ciMetadata(h_m()),
    73   _holder(holder)
    74 {
    75   assert(h_m() != NULL, "no null method");
    77   // These fields are always filled in in loaded methods.
    78   _flags = ciFlags(h_m()->access_flags());
    80   // Easy to compute, so fill them in now.
    81   _max_stack          = h_m()->max_stack();
    82   _max_locals         = h_m()->max_locals();
    83   _code_size          = h_m()->code_size();
    84   _intrinsic_id       = h_m()->intrinsic_id();
    85   _handler_count      = h_m()->exception_table_length();
    86   _size_of_parameters = h_m()->size_of_parameters();
    87   _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
    88   _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
    89   _is_c1_compilable   = !h_m()->is_not_c1_compilable();
    90   _is_c2_compilable   = !h_m()->is_not_c2_compilable();
    91   // Lazy fields, filled in on demand.  Require allocation.
    92   _code               = NULL;
    93   _exception_handlers = NULL;
    94   _liveness           = NULL;
    95   _method_blocks = NULL;
    96 #if defined(COMPILER2) || defined(SHARK)
    97   _flow               = NULL;
    98   _bcea               = NULL;
    99 #endif // COMPILER2 || SHARK
   101   ciEnv *env = CURRENT_ENV;
   102   if (env->jvmti_can_hotswap_or_post_breakpoint() && can_be_compiled()) {
   103     // 6328518 check hotswap conditions under the right lock.
   104     MutexLocker locker(Compile_lock);
   105     if (Dependencies::check_evol_method(h_m()) != NULL) {
   106       _is_c1_compilable = false;
   107       _is_c2_compilable = false;
   108     }
   109   } else {
   110     CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
   111   }
   113   if (h_m()->method_holder()->is_linked()) {
   114     _can_be_statically_bound = h_m()->can_be_statically_bound();
   115   } else {
   116     // Have to use a conservative value in this case.
   117     _can_be_statically_bound = false;
   118   }
   120   // Adjust the definition of this condition to be more useful:
   121   // %%% take these conditions into account in vtable generation
   122   if (!_can_be_statically_bound && h_m()->is_private())
   123     _can_be_statically_bound = true;
   124   if (_can_be_statically_bound && h_m()->is_abstract())
   125     _can_be_statically_bound = false;
   127   // generating _signature may allow GC and therefore move m.
   128   // These fields are always filled in.
   129   _name = env->get_symbol(h_m()->name());
   130   ciSymbol* sig_symbol = env->get_symbol(h_m()->signature());
   131   constantPoolHandle cpool = h_m()->constants();
   132   _signature = new (env->arena()) ciSignature(_holder, cpool, sig_symbol);
   133   _method_data = NULL;
   134   // Take a snapshot of these values, so they will be commensurate with the MDO.
   135   if (ProfileInterpreter || TieredCompilation) {
   136     int invcnt = h_m()->interpreter_invocation_count();
   137     // if the value overflowed report it as max int
   138     _interpreter_invocation_count = invcnt < 0 ? max_jint : invcnt ;
   139     _interpreter_throwout_count   = h_m()->interpreter_throwout_count();
   140   } else {
   141     _interpreter_invocation_count = 0;
   142     _interpreter_throwout_count = 0;
   143   }
   144   if (_interpreter_invocation_count == 0)
   145     _interpreter_invocation_count = 1;
   146   _instructions_size = -1;
   147 #ifdef ASSERT
   148   if (ReplayCompiles) {
   149     ciReplay::initialize(this);
   150   }
   151 #endif
   152 }
   155 // ------------------------------------------------------------------
   156 // ciMethod::ciMethod
   157 //
   158 // Unloaded method.
   159 ciMethod::ciMethod(ciInstanceKlass* holder,
   160                    ciSymbol*        name,
   161                    ciSymbol*        signature,
   162                    ciInstanceKlass* accessor) :
   163   ciMetadata((Metadata*)NULL),
   164   _name(                   name),
   165   _holder(                 holder),
   166   _intrinsic_id(           vmIntrinsics::_none),
   167   _liveness(               NULL),
   168   _can_be_statically_bound(false),
   169   _method_blocks(          NULL),
   170   _method_data(            NULL)
   171 #if defined(COMPILER2) || defined(SHARK)
   172   ,
   173   _flow(                   NULL),
   174   _bcea(                   NULL),
   175   _instructions_size(-1)
   176 #endif // COMPILER2 || SHARK
   177 {
   178   // Usually holder and accessor are the same type but in some cases
   179   // the holder has the wrong class loader (e.g. invokedynamic call
   180   // sites) so we pass the accessor.
   181   _signature = new (CURRENT_ENV->arena()) ciSignature(accessor, constantPoolHandle(), signature);
   182 }
   185 // ------------------------------------------------------------------
   186 // ciMethod::load_code
   187 //
   188 // Load the bytecodes and exception handler table for this method.
   189 void ciMethod::load_code() {
   190   VM_ENTRY_MARK;
   191   assert(is_loaded(), "only loaded methods have code");
   193   Method* me = get_Method();
   194   Arena* arena = CURRENT_THREAD_ENV->arena();
   196   // Load the bytecodes.
   197   _code = (address)arena->Amalloc(code_size());
   198   memcpy(_code, me->code_base(), code_size());
   200   // Revert any breakpoint bytecodes in ci's copy
   201   if (me->number_of_breakpoints() > 0) {
   202     BreakpointInfo* bp = me->method_holder()->breakpoints();
   203     for (; bp != NULL; bp = bp->next()) {
   204       if (bp->match(me)) {
   205         code_at_put(bp->bci(), bp->orig_bytecode());
   206       }
   207     }
   208   }
   210   // And load the exception table.
   211   ExceptionTable exc_table(me);
   213   // Allocate one extra spot in our list of exceptions.  This
   214   // last entry will be used to represent the possibility that
   215   // an exception escapes the method.  See ciExceptionHandlerStream
   216   // for details.
   217   _exception_handlers =
   218     (ciExceptionHandler**)arena->Amalloc(sizeof(ciExceptionHandler*)
   219                                          * (_handler_count + 1));
   220   if (_handler_count > 0) {
   221     for (int i=0; i<_handler_count; i++) {
   222       _exception_handlers[i] = new (arena) ciExceptionHandler(
   223                                 holder(),
   224             /* start    */      exc_table.start_pc(i),
   225             /* limit    */      exc_table.end_pc(i),
   226             /* goto pc  */      exc_table.handler_pc(i),
   227             /* cp index */      exc_table.catch_type_index(i));
   228     }
   229   }
   231   // Put an entry at the end of our list to represent the possibility
   232   // of exceptional exit.
   233   _exception_handlers[_handler_count] =
   234     new (arena) ciExceptionHandler(holder(), 0, code_size(), -1, 0);
   236   if (CIPrintMethodCodes) {
   237     print_codes();
   238   }
   239 }
   242 // ------------------------------------------------------------------
   243 // ciMethod::has_linenumber_table
   244 //
   245 // length unknown until decompression
   246 bool    ciMethod::has_linenumber_table() const {
   247   check_is_loaded();
   248   VM_ENTRY_MARK;
   249   return get_Method()->has_linenumber_table();
   250 }
   253 // ------------------------------------------------------------------
   254 // ciMethod::compressed_linenumber_table
   255 u_char* ciMethod::compressed_linenumber_table() const {
   256   check_is_loaded();
   257   VM_ENTRY_MARK;
   258   return get_Method()->compressed_linenumber_table();
   259 }
   262 // ------------------------------------------------------------------
   263 // ciMethod::line_number_from_bci
   264 int ciMethod::line_number_from_bci(int bci) const {
   265   check_is_loaded();
   266   VM_ENTRY_MARK;
   267   return get_Method()->line_number_from_bci(bci);
   268 }
   271 // ------------------------------------------------------------------
   272 // ciMethod::vtable_index
   273 //
   274 // Get the position of this method's entry in the vtable, if any.
   275 int ciMethod::vtable_index() {
   276   check_is_loaded();
   277   assert(holder()->is_linked(), "must be linked");
   278   VM_ENTRY_MARK;
   279   return get_Method()->vtable_index();
   280 }
   283 #ifdef SHARK
   284 // ------------------------------------------------------------------
   285 // ciMethod::itable_index
   286 //
   287 // Get the position of this method's entry in the itable, if any.
   288 int ciMethod::itable_index() {
   289   check_is_loaded();
   290   assert(holder()->is_linked(), "must be linked");
   291   VM_ENTRY_MARK;
   292   Method* m = get_Method();
   293   if (!m->has_itable_index())
   294     return Method::nonvirtual_vtable_index;
   295   return m->itable_index();
   296 }
   297 #endif // SHARK
   300 // ------------------------------------------------------------------
   301 // ciMethod::native_entry
   302 //
   303 // Get the address of this method's native code, if any.
   304 address ciMethod::native_entry() {
   305   check_is_loaded();
   306   assert(flags().is_native(), "must be native method");
   307   VM_ENTRY_MARK;
   308   Method* method = get_Method();
   309   address entry = method->native_function();
   310   assert(entry != NULL, "must be valid entry point");
   311   return entry;
   312 }
   315 // ------------------------------------------------------------------
   316 // ciMethod::interpreter_entry
   317 //
   318 // Get the entry point for running this method in the interpreter.
   319 address ciMethod::interpreter_entry() {
   320   check_is_loaded();
   321   VM_ENTRY_MARK;
   322   methodHandle mh(THREAD, get_Method());
   323   return Interpreter::entry_for_method(mh);
   324 }
   327 // ------------------------------------------------------------------
   328 // ciMethod::uses_balanced_monitors
   329 //
   330 // Does this method use monitors in a strict stack-disciplined manner?
   331 bool ciMethod::has_balanced_monitors() {
   332   check_is_loaded();
   333   if (_balanced_monitors) return true;
   335   // Analyze the method to see if monitors are used properly.
   336   VM_ENTRY_MARK;
   337   methodHandle method(THREAD, get_Method());
   338   assert(method->has_monitor_bytecodes(), "should have checked this");
   340   // Check to see if a previous compilation computed the
   341   // monitor-matching analysis.
   342   if (method->guaranteed_monitor_matching()) {
   343     _balanced_monitors = true;
   344     return true;
   345   }
   347   {
   348     EXCEPTION_MARK;
   349     ResourceMark rm(THREAD);
   350     GeneratePairingInfo gpi(method);
   351     gpi.compute_map(CATCH);
   352     if (!gpi.monitor_safe()) {
   353       return false;
   354     }
   355     method->set_guaranteed_monitor_matching();
   356     _balanced_monitors = true;
   357   }
   358   return true;
   359 }
   362 // ------------------------------------------------------------------
   363 // ciMethod::get_flow_analysis
   364 ciTypeFlow* ciMethod::get_flow_analysis() {
   365 #if defined(COMPILER2) || defined(SHARK)
   366   if (_flow == NULL) {
   367     ciEnv* env = CURRENT_ENV;
   368     _flow = new (env->arena()) ciTypeFlow(env, this);
   369     _flow->do_flow();
   370   }
   371   return _flow;
   372 #else // COMPILER2 || SHARK
   373   ShouldNotReachHere();
   374   return NULL;
   375 #endif // COMPILER2 || SHARK
   376 }
   379 // ------------------------------------------------------------------
   380 // ciMethod::get_osr_flow_analysis
   381 ciTypeFlow* ciMethod::get_osr_flow_analysis(int osr_bci) {
   382 #if defined(COMPILER2) || defined(SHARK)
   383   // OSR entry points are always place after a call bytecode of some sort
   384   assert(osr_bci >= 0, "must supply valid OSR entry point");
   385   ciEnv* env = CURRENT_ENV;
   386   ciTypeFlow* flow = new (env->arena()) ciTypeFlow(env, this, osr_bci);
   387   flow->do_flow();
   388   return flow;
   389 #else // COMPILER2 || SHARK
   390   ShouldNotReachHere();
   391   return NULL;
   392 #endif // COMPILER2 || SHARK
   393 }
   395 // ------------------------------------------------------------------
   396 // ciMethod::raw_liveness_at_bci
   397 //
   398 // Which local variables are live at a specific bci?
   399 MethodLivenessResult ciMethod::raw_liveness_at_bci(int bci) {
   400   check_is_loaded();
   401   if (_liveness == NULL) {
   402     // Create the liveness analyzer.
   403     Arena* arena = CURRENT_ENV->arena();
   404     _liveness = new (arena) MethodLiveness(arena, this);
   405     _liveness->compute_liveness();
   406   }
   407   return _liveness->get_liveness_at(bci);
   408 }
   410 // ------------------------------------------------------------------
   411 // ciMethod::liveness_at_bci
   412 //
   413 // Which local variables are live at a specific bci?  When debugging
   414 // will return true for all locals in some cases to improve debug
   415 // information.
   416 MethodLivenessResult ciMethod::liveness_at_bci(int bci) {
   417   MethodLivenessResult result = raw_liveness_at_bci(bci);
   418   if (CURRENT_ENV->jvmti_can_access_local_variables() || DeoptimizeALot || CompileTheWorld) {
   419     // Keep all locals live for the user's edification and amusement.
   420     result.at_put_range(0, result.size(), true);
   421   }
   422   return result;
   423 }
   425 // ciMethod::live_local_oops_at_bci
   426 //
   427 // find all the live oops in the locals array for a particular bci
   428 // Compute what the interpreter believes by using the interpreter
   429 // oopmap generator. This is used as a double check during osr to
   430 // guard against conservative result from MethodLiveness making us
   431 // think a dead oop is live.  MethodLiveness is conservative in the
   432 // sense that it may consider locals to be live which cannot be live,
   433 // like in the case where a local could contain an oop or  a primitive
   434 // along different paths.  In that case the local must be dead when
   435 // those paths merge. Since the interpreter's viewpoint is used when
   436 // gc'ing an interpreter frame we need to use its viewpoint  during
   437 // OSR when loading the locals.
   439 BitMap ciMethod::live_local_oops_at_bci(int bci) {
   440   VM_ENTRY_MARK;
   441   InterpreterOopMap mask;
   442   OopMapCache::compute_one_oop_map(get_Method(), bci, &mask);
   443   int mask_size = max_locals();
   444   BitMap result(mask_size);
   445   result.clear();
   446   int i;
   447   for (i = 0; i < mask_size ; i++ ) {
   448     if (mask.is_oop(i)) result.set_bit(i);
   449   }
   450   return result;
   451 }
   454 #ifdef COMPILER1
   455 // ------------------------------------------------------------------
   456 // ciMethod::bci_block_start
   457 //
   458 // Marks all bcis where a new basic block starts
   459 const BitMap ciMethod::bci_block_start() {
   460   check_is_loaded();
   461   if (_liveness == NULL) {
   462     // Create the liveness analyzer.
   463     Arena* arena = CURRENT_ENV->arena();
   464     _liveness = new (arena) MethodLiveness(arena, this);
   465     _liveness->compute_liveness();
   466   }
   468   return _liveness->get_bci_block_start();
   469 }
   470 #endif // COMPILER1
   473 // ------------------------------------------------------------------
   474 // ciMethod::call_profile_at_bci
   475 //
   476 // Get the ciCallProfile for the invocation of this method.
   477 // Also reports receiver types for non-call type checks (if TypeProfileCasts).
   478 ciCallProfile ciMethod::call_profile_at_bci(int bci) {
   479   ResourceMark rm;
   480   ciCallProfile result;
   481   if (method_data() != NULL && method_data()->is_mature()) {
   482     ciProfileData* data = method_data()->bci_to_data(bci);
   483     if (data != NULL && data->is_CounterData()) {
   484       // Every profiled call site has a counter.
   485       int count = data->as_CounterData()->count();
   487       if (!data->is_ReceiverTypeData()) {
   488         result._receiver_count[0] = 0;  // that's a definite zero
   489       } else { // ReceiverTypeData is a subclass of CounterData
   490         ciReceiverTypeData* call = (ciReceiverTypeData*)data->as_ReceiverTypeData();
   491         // In addition, virtual call sites have receiver type information
   492         int receivers_count_total = 0;
   493         int morphism = 0;
   494         // Precompute morphism for the possible fixup
   495         for (uint i = 0; i < call->row_limit(); i++) {
   496           ciKlass* receiver = call->receiver(i);
   497           if (receiver == NULL)  continue;
   498           morphism++;
   499         }
   500         int epsilon = 0;
   501         if (TieredCompilation && ProfileInterpreter) {
   502           // Interpreter and C1 treat final and special invokes differently.
   503           // C1 will record a type, whereas the interpreter will just
   504           // increment the count. Detect this case.
   505           if (morphism == 1 && count > 0) {
   506             epsilon = count;
   507             count = 0;
   508           }
   509         }
   510         for (uint i = 0; i < call->row_limit(); i++) {
   511           ciKlass* receiver = call->receiver(i);
   512           if (receiver == NULL)  continue;
   513           int rcount = call->receiver_count(i) + epsilon;
   514           if (rcount == 0) rcount = 1; // Should be valid value
   515           receivers_count_total += rcount;
   516           // Add the receiver to result data.
   517           result.add_receiver(receiver, rcount);
   518           // If we extend profiling to record methods,
   519           // we will set result._method also.
   520         }
   521         // Determine call site's morphism.
   522         // The call site count is 0 with known morphism (onlt 1 or 2 receivers)
   523         // or < 0 in the case of a type check failured for checkcast, aastore, instanceof.
   524         // The call site count is > 0 in the case of a polymorphic virtual call.
   525         if (morphism > 0 && morphism == result._limit) {
   526            // The morphism <= MorphismLimit.
   527            if ((morphism <  ciCallProfile::MorphismLimit) ||
   528                (morphism == ciCallProfile::MorphismLimit && count == 0)) {
   529 #ifdef ASSERT
   530              if (count > 0) {
   531                this->print_short_name(tty);
   532                tty->print_cr(" @ bci:%d", bci);
   533                this->print_codes();
   534                assert(false, "this call site should not be polymorphic");
   535              }
   536 #endif
   537              result._morphism = morphism;
   538            }
   539         }
   540         // Make the count consistent if this is a call profile. If count is
   541         // zero or less, presume that this is a typecheck profile and
   542         // do nothing.  Otherwise, increase count to be the sum of all
   543         // receiver's counts.
   544         if (count >= 0) {
   545           count += receivers_count_total;
   546         }
   547       }
   548       result._count = count;
   549     }
   550   }
   551   return result;
   552 }
   554 // ------------------------------------------------------------------
   555 // Add new receiver and sort data by receiver's profile count.
   556 void ciCallProfile::add_receiver(ciKlass* receiver, int receiver_count) {
   557   // Add new receiver and sort data by receiver's counts when we have space
   558   // for it otherwise replace the less called receiver (less called receiver
   559   // is placed to the last array element which is not used).
   560   // First array's element contains most called receiver.
   561   int i = _limit;
   562   for (; i > 0 && receiver_count > _receiver_count[i-1]; i--) {
   563     _receiver[i] = _receiver[i-1];
   564     _receiver_count[i] = _receiver_count[i-1];
   565   }
   566   _receiver[i] = receiver;
   567   _receiver_count[i] = receiver_count;
   568   if (_limit < MorphismLimit) _limit++;
   569 }
   572 void ciMethod::assert_virtual_call_type_ok(int bci) {
   573   assert(java_code_at_bci(bci) == Bytecodes::_invokevirtual ||
   574          java_code_at_bci(bci) == Bytecodes::_invokeinterface, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))));
   575 }
   577 void ciMethod::assert_call_type_ok(int bci) {
   578   assert(java_code_at_bci(bci) == Bytecodes::_invokestatic ||
   579          java_code_at_bci(bci) == Bytecodes::_invokespecial ||
   580          java_code_at_bci(bci) == Bytecodes::_invokedynamic, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))));
   581 }
   583 /**
   584  * Check whether profiling provides a type for the argument i to the
   585  * call at bci bci
   586  *
   587  * @param bci  bci of the call
   588  * @param i    argument number
   589  * @return     profiled type
   590  *
   591  * If the profile reports that the argument may be null, return false
   592  * at least for now.
   593  */
   594 ciKlass* ciMethod::argument_profiled_type(int bci, int i) {
   595   if (MethodData::profile_parameters() && method_data() != NULL && method_data()->is_mature()) {
   596     ciProfileData* data = method_data()->bci_to_data(bci);
   597     if (data != NULL) {
   598       if (data->is_VirtualCallTypeData()) {
   599         assert_virtual_call_type_ok(bci);
   600         ciVirtualCallTypeData* call = (ciVirtualCallTypeData*)data->as_VirtualCallTypeData();
   601         if (i >= call->number_of_arguments()) {
   602           return NULL;
   603         }
   604         ciKlass* type = call->valid_argument_type(i);
   605         if (type != NULL && !call->argument_maybe_null(i)) {
   606           return type;
   607         }
   608       } else if (data->is_CallTypeData()) {
   609         assert_call_type_ok(bci);
   610         ciCallTypeData* call = (ciCallTypeData*)data->as_CallTypeData();
   611         if (i >= call->number_of_arguments()) {
   612           return NULL;
   613         }
   614         ciKlass* type = call->valid_argument_type(i);
   615         if (type != NULL && !call->argument_maybe_null(i)) {
   616           return type;
   617         }
   618       }
   619     }
   620   }
   621   return NULL;
   622 }
   624 /**
   625  * Check whether profiling provides a type for the return value from
   626  * the call at bci bci
   627  *
   628  * @param bci  bci of the call
   629  * @return     profiled type
   630  *
   631  * If the profile reports that the argument may be null, return false
   632  * at least for now.
   633  */
   634 ciKlass* ciMethod::return_profiled_type(int bci) {
   635   if (MethodData::profile_return() && method_data() != NULL && method_data()->is_mature()) {
   636     ciProfileData* data = method_data()->bci_to_data(bci);
   637     if (data != NULL) {
   638       if (data->is_VirtualCallTypeData()) {
   639         assert_virtual_call_type_ok(bci);
   640         ciVirtualCallTypeData* call = (ciVirtualCallTypeData*)data->as_VirtualCallTypeData();
   641         ciKlass* type = call->valid_return_type();
   642         if (type != NULL && !call->return_maybe_null()) {
   643           return type;
   644         }
   645       } else if (data->is_CallTypeData()) {
   646         assert_call_type_ok(bci);
   647         ciCallTypeData* call = (ciCallTypeData*)data->as_CallTypeData();
   648         ciKlass* type = call->valid_return_type();
   649         if (type != NULL && !call->return_maybe_null()) {
   650           return type;
   651         }
   652       }
   653     }
   654   }
   655   return NULL;
   656 }
   658 /**
   659  * Check whether profiling provides a type for the parameter i
   660  *
   661  * @param i    parameter number
   662  * @return     profiled type
   663  *
   664  * If the profile reports that the argument may be null, return false
   665  * at least for now.
   666  */
   667 ciKlass* ciMethod::parameter_profiled_type(int i) {
   668   if (MethodData::profile_parameters() && method_data() != NULL && method_data()->is_mature()) {
   669     ciParametersTypeData* parameters = method_data()->parameters_type_data();
   670     if (parameters != NULL && i < parameters->number_of_parameters()) {
   671       ciKlass* type = parameters->valid_parameter_type(i);
   672       if (type != NULL && !parameters->parameter_maybe_null(i)) {
   673         return type;
   674       }
   675     }
   676   }
   677   return NULL;
   678 }
   681 // ------------------------------------------------------------------
   682 // ciMethod::find_monomorphic_target
   683 //
   684 // Given a certain calling environment, find the monomorphic target
   685 // for the call.  Return NULL if the call is not monomorphic in
   686 // its calling environment, or if there are only abstract methods.
   687 // The returned method is never abstract.
   688 // Note: If caller uses a non-null result, it must inform dependencies
   689 // via assert_unique_concrete_method or assert_leaf_type.
   690 ciMethod* ciMethod::find_monomorphic_target(ciInstanceKlass* caller,
   691                                             ciInstanceKlass* callee_holder,
   692                                             ciInstanceKlass* actual_recv) {
   693   check_is_loaded();
   695   if (actual_recv->is_interface()) {
   696     // %%% We cannot trust interface types, yet.  See bug 6312651.
   697     return NULL;
   698   }
   700   ciMethod* root_m = resolve_invoke(caller, actual_recv);
   701   if (root_m == NULL) {
   702     // Something went wrong looking up the actual receiver method.
   703     return NULL;
   704   }
   705   assert(!root_m->is_abstract(), "resolve_invoke promise");
   707   // Make certain quick checks even if UseCHA is false.
   709   // Is it private or final?
   710   if (root_m->can_be_statically_bound()) {
   711     return root_m;
   712   }
   714   if (actual_recv->is_leaf_type() && actual_recv == root_m->holder()) {
   715     // Easy case.  There is no other place to put a method, so don't bother
   716     // to go through the VM_ENTRY_MARK and all the rest.
   717     return root_m;
   718   }
   720   // Array methods (clone, hashCode, etc.) are always statically bound.
   721   // If we were to see an array type here, we'd return root_m.
   722   // However, this method processes only ciInstanceKlasses.  (See 4962591.)
   723   // The inline_native_clone intrinsic narrows Object to T[] properly,
   724   // so there is no need to do the same job here.
   726   if (!UseCHA)  return NULL;
   728   VM_ENTRY_MARK;
   730   // Disable CHA for default methods for now
   731   if (root_m->get_Method()->is_default_method()) {
   732     return NULL;
   733   }
   735   methodHandle target;
   736   {
   737     MutexLocker locker(Compile_lock);
   738     Klass* context = actual_recv->get_Klass();
   739     target = Dependencies::find_unique_concrete_method(context,
   740                                                        root_m->get_Method());
   741     // %%% Should upgrade this ciMethod API to look for 1 or 2 concrete methods.
   742   }
   744 #ifndef PRODUCT
   745   if (TraceDependencies && target() != NULL && target() != root_m->get_Method()) {
   746     tty->print("found a non-root unique target method");
   747     tty->print_cr("  context = %s", InstanceKlass::cast(actual_recv->get_Klass())->external_name());
   748     tty->print("  method  = ");
   749     target->print_short_name(tty);
   750     tty->cr();
   751   }
   752 #endif //PRODUCT
   754   if (target() == NULL) {
   755     return NULL;
   756   }
   757   if (target() == root_m->get_Method()) {
   758     return root_m;
   759   }
   760   if (!root_m->is_public() &&
   761       !root_m->is_protected()) {
   762     // If we are going to reason about inheritance, it's easiest
   763     // if the method in question is public, protected, or private.
   764     // If the answer is not root_m, it is conservatively correct
   765     // to return NULL, even if the CHA encountered irrelevant
   766     // methods in other packages.
   767     // %%% TO DO: Work out logic for package-private methods
   768     // with the same name but different vtable indexes.
   769     return NULL;
   770   }
   771   return CURRENT_THREAD_ENV->get_method(target());
   772 }
   774 // ------------------------------------------------------------------
   775 // ciMethod::resolve_invoke
   776 //
   777 // Given a known receiver klass, find the target for the call.
   778 // Return NULL if the call has no target or the target is abstract.
   779 ciMethod* ciMethod::resolve_invoke(ciKlass* caller, ciKlass* exact_receiver) {
   780    check_is_loaded();
   781    VM_ENTRY_MARK;
   783    KlassHandle caller_klass (THREAD, caller->get_Klass());
   784    KlassHandle h_recv       (THREAD, exact_receiver->get_Klass());
   785    KlassHandle h_resolved   (THREAD, holder()->get_Klass());
   786    Symbol* h_name      = name()->get_symbol();
   787    Symbol* h_signature = signature()->get_symbol();
   789    methodHandle m;
   790    // Only do exact lookup if receiver klass has been linked.  Otherwise,
   791    // the vtable has not been setup, and the LinkResolver will fail.
   792    if (h_recv->oop_is_array()
   793         ||
   794        InstanceKlass::cast(h_recv())->is_linked() && !exact_receiver->is_interface()) {
   795      if (holder()->is_interface()) {
   796        m = LinkResolver::resolve_interface_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
   797      } else {
   798        m = LinkResolver::resolve_virtual_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
   799      }
   800    }
   802    if (m.is_null()) {
   803      // Return NULL only if there was a problem with lookup (uninitialized class, etc.)
   804      return NULL;
   805    }
   807    ciMethod* result = this;
   808    if (m() != get_Method()) {
   809      result = CURRENT_THREAD_ENV->get_method(m());
   810    }
   812    // Don't return abstract methods because they aren't
   813    // optimizable or interesting.
   814    if (result->is_abstract()) {
   815      return NULL;
   816    } else {
   817      return result;
   818    }
   819 }
   821 // ------------------------------------------------------------------
   822 // ciMethod::resolve_vtable_index
   823 //
   824 // Given a known receiver klass, find the vtable index for the call.
   825 // Return Method::invalid_vtable_index if the vtable_index is unknown.
   826 int ciMethod::resolve_vtable_index(ciKlass* caller, ciKlass* receiver) {
   827    check_is_loaded();
   829    int vtable_index = Method::invalid_vtable_index;
   830    // Only do lookup if receiver klass has been linked.  Otherwise,
   831    // the vtable has not been setup, and the LinkResolver will fail.
   832    if (!receiver->is_interface()
   833        && (!receiver->is_instance_klass() ||
   834            receiver->as_instance_klass()->is_linked())) {
   835      VM_ENTRY_MARK;
   837      KlassHandle caller_klass (THREAD, caller->get_Klass());
   838      KlassHandle h_recv       (THREAD, receiver->get_Klass());
   839      Symbol* h_name = name()->get_symbol();
   840      Symbol* h_signature = signature()->get_symbol();
   842      vtable_index = LinkResolver::resolve_virtual_vtable_index(h_recv, h_recv, h_name, h_signature, caller_klass);
   843      if (vtable_index == Method::nonvirtual_vtable_index) {
   844        // A statically bound method.  Return "no such index".
   845        vtable_index = Method::invalid_vtable_index;
   846      }
   847    }
   849    return vtable_index;
   850 }
   852 // ------------------------------------------------------------------
   853 // ciMethod::interpreter_call_site_count
   854 int ciMethod::interpreter_call_site_count(int bci) {
   855   if (method_data() != NULL) {
   856     ResourceMark rm;
   857     ciProfileData* data = method_data()->bci_to_data(bci);
   858     if (data != NULL && data->is_CounterData()) {
   859       return scale_count(data->as_CounterData()->count());
   860     }
   861   }
   862   return -1;  // unknown
   863 }
   865 // ------------------------------------------------------------------
   866 // ciMethod::get_field_at_bci
   867 ciField* ciMethod::get_field_at_bci(int bci, bool &will_link) {
   868   ciBytecodeStream iter(this);
   869   iter.reset_to_bci(bci);
   870   iter.next();
   871   return iter.get_field(will_link);
   872 }
   874 // ------------------------------------------------------------------
   875 // ciMethod::get_method_at_bci
   876 ciMethod* ciMethod::get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature) {
   877   ciBytecodeStream iter(this);
   878   iter.reset_to_bci(bci);
   879   iter.next();
   880   return iter.get_method(will_link, declared_signature);
   881 }
   883 // ------------------------------------------------------------------
   884 // Adjust a CounterData count to be commensurate with
   885 // interpreter_invocation_count.  If the MDO exists for
   886 // only 25% of the time the method exists, then the
   887 // counts in the MDO should be scaled by 4X, so that
   888 // they can be usefully and stably compared against the
   889 // invocation counts in methods.
   890 int ciMethod::scale_count(int count, float prof_factor) {
   891   if (count > 0 && method_data() != NULL) {
   892     int counter_life;
   893     int method_life = interpreter_invocation_count();
   894     if (TieredCompilation) {
   895       // In tiered the MDO's life is measured directly, so just use the snapshotted counters
   896       counter_life = MAX2(method_data()->invocation_count(), method_data()->backedge_count());
   897     } else {
   898       int current_mileage = method_data()->current_mileage();
   899       int creation_mileage = method_data()->creation_mileage();
   900       counter_life = current_mileage - creation_mileage;
   901     }
   903     // counter_life due to backedge_counter could be > method_life
   904     if (counter_life > method_life)
   905       counter_life = method_life;
   906     if (0 < counter_life && counter_life <= method_life) {
   907       count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
   908       count = (count > 0) ? count : 1;
   909     }
   910   }
   911   return count;
   912 }
   915 // ------------------------------------------------------------------
   916 // ciMethod::is_special_get_caller_class_method
   917 //
   918 bool ciMethod::is_ignored_by_security_stack_walk() const {
   919   check_is_loaded();
   920   VM_ENTRY_MARK;
   921   return get_Method()->is_ignored_by_security_stack_walk();
   922 }
   925 // ------------------------------------------------------------------
   926 // invokedynamic support
   928 // ------------------------------------------------------------------
   929 // ciMethod::is_method_handle_intrinsic
   930 //
   931 // Return true if the method is an instance of the JVM-generated
   932 // signature-polymorphic MethodHandle methods, _invokeBasic, _linkToVirtual, etc.
   933 bool ciMethod::is_method_handle_intrinsic() const {
   934   vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
   935   return (MethodHandles::is_signature_polymorphic(iid) &&
   936           MethodHandles::is_signature_polymorphic_intrinsic(iid));
   937 }
   939 // ------------------------------------------------------------------
   940 // ciMethod::is_compiled_lambda_form
   941 //
   942 // Return true if the method is a generated MethodHandle adapter.
   943 // These are built by Java code.
   944 bool ciMethod::is_compiled_lambda_form() const {
   945   vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
   946   return iid == vmIntrinsics::_compiledLambdaForm;
   947 }
   949 // ------------------------------------------------------------------
   950 // ciMethod::has_member_arg
   951 //
   952 // Return true if the method is a linker intrinsic like _linkToVirtual.
   953 // These are built by the JVM.
   954 bool ciMethod::has_member_arg() const {
   955   vmIntrinsics::ID iid = _intrinsic_id;  // do not check if loaded
   956   return (MethodHandles::is_signature_polymorphic(iid) &&
   957           MethodHandles::has_member_arg(iid));
   958 }
   960 // ------------------------------------------------------------------
   961 // ciMethod::ensure_method_data
   962 //
   963 // Generate new MethodData* objects at compile time.
   964 // Return true if allocation was successful or no MDO is required.
   965 bool ciMethod::ensure_method_data(methodHandle h_m) {
   966   EXCEPTION_CONTEXT;
   967   if (is_native() || is_abstract() || h_m()->is_accessor()) {
   968     return true;
   969   }
   970   if (h_m()->method_data() == NULL) {
   971     Method::build_interpreter_method_data(h_m, THREAD);
   972     if (HAS_PENDING_EXCEPTION) {
   973       CLEAR_PENDING_EXCEPTION;
   974     }
   975   }
   976   if (h_m()->method_data() != NULL) {
   977     _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
   978     _method_data->load_data();
   979     return true;
   980   } else {
   981     _method_data = CURRENT_ENV->get_empty_methodData();
   982     return false;
   983   }
   984 }
   986 // public, retroactive version
   987 bool ciMethod::ensure_method_data() {
   988   bool result = true;
   989   if (_method_data == NULL || _method_data->is_empty()) {
   990     GUARDED_VM_ENTRY({
   991       result = ensure_method_data(get_Method());
   992     });
   993   }
   994   return result;
   995 }
   998 // ------------------------------------------------------------------
   999 // ciMethod::method_data
  1000 //
  1001 ciMethodData* ciMethod::method_data() {
  1002   if (_method_data != NULL) {
  1003     return _method_data;
  1005   VM_ENTRY_MARK;
  1006   ciEnv* env = CURRENT_ENV;
  1007   Thread* my_thread = JavaThread::current();
  1008   methodHandle h_m(my_thread, get_Method());
  1010   if (h_m()->method_data() != NULL) {
  1011     _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
  1012     _method_data->load_data();
  1013   } else {
  1014     _method_data = CURRENT_ENV->get_empty_methodData();
  1016   return _method_data;
  1020 // ------------------------------------------------------------------
  1021 // ciMethod::method_data_or_null
  1022 // Returns a pointer to ciMethodData if MDO exists on the VM side,
  1023 // NULL otherwise.
  1024 ciMethodData* ciMethod::method_data_or_null() {
  1025   ciMethodData *md = method_data();
  1026   if (md->is_empty()) {
  1027     return NULL;
  1029   return md;
  1032 // ------------------------------------------------------------------
  1033 // ciMethod::ensure_method_counters
  1034 //
  1035 MethodCounters* ciMethod::ensure_method_counters() {
  1036   check_is_loaded();
  1037   VM_ENTRY_MARK;
  1038   methodHandle mh(THREAD, get_Method());
  1039   MethodCounters* method_counters = mh->get_method_counters(CHECK_NULL);
  1040   return method_counters;
  1043 // ------------------------------------------------------------------
  1044 // ciMethod::should_exclude
  1045 //
  1046 // Should this method be excluded from compilation?
  1047 bool ciMethod::should_exclude() {
  1048   check_is_loaded();
  1049   VM_ENTRY_MARK;
  1050   methodHandle mh(THREAD, get_Method());
  1051   bool ignore;
  1052   return CompilerOracle::should_exclude(mh, ignore);
  1055 // ------------------------------------------------------------------
  1056 // ciMethod::should_inline
  1057 //
  1058 // Should this method be inlined during compilation?
  1059 bool ciMethod::should_inline() {
  1060   check_is_loaded();
  1061   VM_ENTRY_MARK;
  1062   methodHandle mh(THREAD, get_Method());
  1063   return CompilerOracle::should_inline(mh);
  1066 // ------------------------------------------------------------------
  1067 // ciMethod::should_not_inline
  1068 //
  1069 // Should this method be disallowed from inlining during compilation?
  1070 bool ciMethod::should_not_inline() {
  1071   check_is_loaded();
  1072   VM_ENTRY_MARK;
  1073   methodHandle mh(THREAD, get_Method());
  1074   return CompilerOracle::should_not_inline(mh);
  1077 // ------------------------------------------------------------------
  1078 // ciMethod::should_print_assembly
  1079 //
  1080 // Should the compiler print the generated code for this method?
  1081 bool ciMethod::should_print_assembly() {
  1082   check_is_loaded();
  1083   VM_ENTRY_MARK;
  1084   methodHandle mh(THREAD, get_Method());
  1085   return CompilerOracle::should_print(mh);
  1088 // ------------------------------------------------------------------
  1089 // ciMethod::break_at_execute
  1090 //
  1091 // Should the compiler insert a breakpoint into the generated code
  1092 // method?
  1093 bool ciMethod::break_at_execute() {
  1094   check_is_loaded();
  1095   VM_ENTRY_MARK;
  1096   methodHandle mh(THREAD, get_Method());
  1097   return CompilerOracle::should_break_at(mh);
  1100 // ------------------------------------------------------------------
  1101 // ciMethod::has_option
  1102 //
  1103 bool ciMethod::has_option(const char* option) {
  1104   check_is_loaded();
  1105   VM_ENTRY_MARK;
  1106   methodHandle mh(THREAD, get_Method());
  1107   return CompilerOracle::has_option_string(mh, option);
  1110 // ------------------------------------------------------------------
  1111 // ciMethod::has_option_value
  1112 //
  1113 template<typename T>
  1114 bool ciMethod::has_option_value(const char* option, T& value) {
  1115   check_is_loaded();
  1116   VM_ENTRY_MARK;
  1117   methodHandle mh(THREAD, get_Method());
  1118   return CompilerOracle::has_option_value(mh, option, value);
  1120 // Explicit instantiation for all OptionTypes supported.
  1121 template bool ciMethod::has_option_value<intx>(const char* option, intx& value);
  1122 template bool ciMethod::has_option_value<uintx>(const char* option, uintx& value);
  1123 template bool ciMethod::has_option_value<bool>(const char* option, bool& value);
  1124 template bool ciMethod::has_option_value<ccstr>(const char* option, ccstr& value);
  1126 // ------------------------------------------------------------------
  1127 // ciMethod::can_be_compiled
  1128 //
  1129 // Have previous compilations of this method succeeded?
  1130 bool ciMethod::can_be_compiled() {
  1131   check_is_loaded();
  1132   ciEnv* env = CURRENT_ENV;
  1133   if (is_c1_compile(env->comp_level())) {
  1134     return _is_c1_compilable;
  1136   return _is_c2_compilable;
  1139 // ------------------------------------------------------------------
  1140 // ciMethod::set_not_compilable
  1141 //
  1142 // Tell the VM that this method cannot be compiled at all.
  1143 void ciMethod::set_not_compilable(const char* reason) {
  1144   check_is_loaded();
  1145   VM_ENTRY_MARK;
  1146   ciEnv* env = CURRENT_ENV;
  1147   if (is_c1_compile(env->comp_level())) {
  1148     _is_c1_compilable = false;
  1149   } else {
  1150     _is_c2_compilable = false;
  1152   get_Method()->set_not_compilable(env->comp_level(), true, reason);
  1155 // ------------------------------------------------------------------
  1156 // ciMethod::can_be_osr_compiled
  1157 //
  1158 // Have previous compilations of this method succeeded?
  1159 //
  1160 // Implementation note: the VM does not currently keep track
  1161 // of failed OSR compilations per bci.  The entry_bci parameter
  1162 // is currently unused.
  1163 bool ciMethod::can_be_osr_compiled(int entry_bci) {
  1164   check_is_loaded();
  1165   VM_ENTRY_MARK;
  1166   ciEnv* env = CURRENT_ENV;
  1167   return !get_Method()->is_not_osr_compilable(env->comp_level());
  1170 // ------------------------------------------------------------------
  1171 // ciMethod::has_compiled_code
  1172 bool ciMethod::has_compiled_code() {
  1173   return instructions_size() > 0;
  1176 int ciMethod::comp_level() {
  1177   check_is_loaded();
  1178   VM_ENTRY_MARK;
  1179   nmethod* nm = get_Method()->code();
  1180   if (nm != NULL) return nm->comp_level();
  1181   return 0;
  1184 int ciMethod::highest_osr_comp_level() {
  1185   check_is_loaded();
  1186   VM_ENTRY_MARK;
  1187   return get_Method()->highest_osr_comp_level();
  1190 // ------------------------------------------------------------------
  1191 // ciMethod::code_size_for_inlining
  1192 //
  1193 // Code size for inlining decisions.  This method returns a code
  1194 // size of 1 for methods which has the ForceInline annotation.
  1195 int ciMethod::code_size_for_inlining() {
  1196   check_is_loaded();
  1197   if (get_Method()->force_inline()) {
  1198     return 1;
  1200   return code_size();
  1203 // ------------------------------------------------------------------
  1204 // ciMethod::instructions_size
  1205 //
  1206 // This is a rough metric for "fat" methods, compared before inlining
  1207 // with InlineSmallCode.  The CodeBlob::code_size accessor includes
  1208 // junk like exception handler, stubs, and constant table, which are
  1209 // not highly relevant to an inlined method.  So we use the more
  1210 // specific accessor nmethod::insts_size.
  1211 int ciMethod::instructions_size() {
  1212   if (_instructions_size == -1) {
  1213     GUARDED_VM_ENTRY(
  1214                      nmethod* code = get_Method()->code();
  1215                      if (code != NULL && (code->comp_level() == CompLevel_full_optimization)) {
  1216                        _instructions_size = code->insts_end() - code->verified_entry_point();
  1217                      } else {
  1218                        _instructions_size = 0;
  1220                      );
  1222   return _instructions_size;
  1225 // ------------------------------------------------------------------
  1226 // ciMethod::log_nmethod_identity
  1227 void ciMethod::log_nmethod_identity(xmlStream* log) {
  1228   GUARDED_VM_ENTRY(
  1229     nmethod* code = get_Method()->code();
  1230     if (code != NULL) {
  1231       code->log_identity(log);
  1236 // ------------------------------------------------------------------
  1237 // ciMethod::is_not_reached
  1238 bool ciMethod::is_not_reached(int bci) {
  1239   check_is_loaded();
  1240   VM_ENTRY_MARK;
  1241   return Interpreter::is_not_reached(
  1242                methodHandle(THREAD, get_Method()), bci);
  1245 // ------------------------------------------------------------------
  1246 // ciMethod::was_never_executed
  1247 bool ciMethod::was_executed_more_than(int times) {
  1248   VM_ENTRY_MARK;
  1249   return get_Method()->was_executed_more_than(times);
  1252 // ------------------------------------------------------------------
  1253 // ciMethod::has_unloaded_classes_in_signature
  1254 bool ciMethod::has_unloaded_classes_in_signature() {
  1255   VM_ENTRY_MARK;
  1257     EXCEPTION_MARK;
  1258     methodHandle m(THREAD, get_Method());
  1259     bool has_unloaded = Method::has_unloaded_classes_in_signature(m, (JavaThread *)THREAD);
  1260     if( HAS_PENDING_EXCEPTION ) {
  1261       CLEAR_PENDING_EXCEPTION;
  1262       return true;     // Declare that we may have unloaded classes
  1264     return has_unloaded;
  1268 // ------------------------------------------------------------------
  1269 // ciMethod::is_klass_loaded
  1270 bool ciMethod::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
  1271   VM_ENTRY_MARK;
  1272   return get_Method()->is_klass_loaded(refinfo_index, must_be_resolved);
  1275 // ------------------------------------------------------------------
  1276 // ciMethod::check_call
  1277 bool ciMethod::check_call(int refinfo_index, bool is_static) const {
  1278   // This method is used only in C2 from InlineTree::ok_to_inline,
  1279   // and is only used under -Xcomp or -XX:CompileTheWorld.
  1280   // It appears to fail when applied to an invokeinterface call site.
  1281   // FIXME: Remove this method and resolve_method_statically; refactor to use the other LinkResolver entry points.
  1282   VM_ENTRY_MARK;
  1284     EXCEPTION_MARK;
  1285     HandleMark hm(THREAD);
  1286     constantPoolHandle pool (THREAD, get_Method()->constants());
  1287     methodHandle spec_method;
  1288     KlassHandle  spec_klass;
  1289     Bytecodes::Code code = (is_static ? Bytecodes::_invokestatic : Bytecodes::_invokevirtual);
  1290     LinkResolver::resolve_method_statically(spec_method, spec_klass, code, pool, refinfo_index, THREAD);
  1291     if (HAS_PENDING_EXCEPTION) {
  1292       CLEAR_PENDING_EXCEPTION;
  1293       return false;
  1294     } else {
  1295       return (spec_method->is_static() == is_static);
  1298   return false;
  1301 // ------------------------------------------------------------------
  1302 // ciMethod::print_codes
  1303 //
  1304 // Print the bytecodes for this method.
  1305 void ciMethod::print_codes_on(outputStream* st) {
  1306   check_is_loaded();
  1307   GUARDED_VM_ENTRY(get_Method()->print_codes_on(st);)
  1311 #define FETCH_FLAG_FROM_VM(flag_accessor) { \
  1312   check_is_loaded(); \
  1313   VM_ENTRY_MARK; \
  1314   return get_Method()->flag_accessor(); \
  1317 bool ciMethod::is_empty_method() const {         FETCH_FLAG_FROM_VM(is_empty_method); }
  1318 bool ciMethod::is_vanilla_constructor() const {  FETCH_FLAG_FROM_VM(is_vanilla_constructor); }
  1319 bool ciMethod::has_loops      () const {         FETCH_FLAG_FROM_VM(has_loops); }
  1320 bool ciMethod::has_jsrs       () const {         FETCH_FLAG_FROM_VM(has_jsrs);  }
  1321 bool ciMethod::is_accessor    () const {         FETCH_FLAG_FROM_VM(is_accessor); }
  1322 bool ciMethod::is_initializer () const {         FETCH_FLAG_FROM_VM(is_initializer); }
  1324 bool ciMethod::is_boxing_method() const {
  1325   if (holder()->is_box_klass()) {
  1326     switch (intrinsic_id()) {
  1327       case vmIntrinsics::_Boolean_valueOf:
  1328       case vmIntrinsics::_Byte_valueOf:
  1329       case vmIntrinsics::_Character_valueOf:
  1330       case vmIntrinsics::_Short_valueOf:
  1331       case vmIntrinsics::_Integer_valueOf:
  1332       case vmIntrinsics::_Long_valueOf:
  1333       case vmIntrinsics::_Float_valueOf:
  1334       case vmIntrinsics::_Double_valueOf:
  1335         return true;
  1336       default:
  1337         return false;
  1340   return false;
  1343 bool ciMethod::is_unboxing_method() const {
  1344   if (holder()->is_box_klass()) {
  1345     switch (intrinsic_id()) {
  1346       case vmIntrinsics::_booleanValue:
  1347       case vmIntrinsics::_byteValue:
  1348       case vmIntrinsics::_charValue:
  1349       case vmIntrinsics::_shortValue:
  1350       case vmIntrinsics::_intValue:
  1351       case vmIntrinsics::_longValue:
  1352       case vmIntrinsics::_floatValue:
  1353       case vmIntrinsics::_doubleValue:
  1354         return true;
  1355       default:
  1356         return false;
  1359   return false;
  1362 BCEscapeAnalyzer  *ciMethod::get_bcea() {
  1363 #ifdef COMPILER2
  1364   if (_bcea == NULL) {
  1365     _bcea = new (CURRENT_ENV->arena()) BCEscapeAnalyzer(this, NULL);
  1367   return _bcea;
  1368 #else // COMPILER2
  1369   ShouldNotReachHere();
  1370   return NULL;
  1371 #endif // COMPILER2
  1374 ciMethodBlocks  *ciMethod::get_method_blocks() {
  1375   Arena *arena = CURRENT_ENV->arena();
  1376   if (_method_blocks == NULL) {
  1377     _method_blocks = new (arena) ciMethodBlocks(arena, this);
  1379   return _method_blocks;
  1382 #undef FETCH_FLAG_FROM_VM
  1384 void ciMethod::dump_name_as_ascii(outputStream* st) {
  1385   Method* method = get_Method();
  1386   st->print("%s %s %s",
  1387             method->klass_name()->as_quoted_ascii(),
  1388             method->name()->as_quoted_ascii(),
  1389             method->signature()->as_quoted_ascii());
  1392 void ciMethod::dump_replay_data(outputStream* st) {
  1393   ResourceMark rm;
  1394   Method* method = get_Method();
  1395   MethodCounters* mcs = method->method_counters();
  1396   st->print("ciMethod ");
  1397   dump_name_as_ascii(st);
  1398   st->print_cr(" %d %d %d %d %d",
  1399                mcs == NULL ? 0 : mcs->invocation_counter()->raw_counter(),
  1400                mcs == NULL ? 0 : mcs->backedge_counter()->raw_counter(),
  1401                interpreter_invocation_count(),
  1402                interpreter_throwout_count(),
  1403                _instructions_size);
  1406 // ------------------------------------------------------------------
  1407 // ciMethod::print_codes
  1408 //
  1409 // Print a range of the bytecodes for this method.
  1410 void ciMethod::print_codes_on(int from, int to, outputStream* st) {
  1411   check_is_loaded();
  1412   GUARDED_VM_ENTRY(get_Method()->print_codes_on(from, to, st);)
  1415 // ------------------------------------------------------------------
  1416 // ciMethod::print_name
  1417 //
  1418 // Print the name of this method, including signature and some flags.
  1419 void ciMethod::print_name(outputStream* st) {
  1420   check_is_loaded();
  1421   GUARDED_VM_ENTRY(get_Method()->print_name(st);)
  1424 // ------------------------------------------------------------------
  1425 // ciMethod::print_short_name
  1426 //
  1427 // Print the name of this method, without signature.
  1428 void ciMethod::print_short_name(outputStream* st) {
  1429   if (is_loaded()) {
  1430     GUARDED_VM_ENTRY(get_Method()->print_short_name(st););
  1431   } else {
  1432     // Fall back if method is not loaded.
  1433     holder()->print_name_on(st);
  1434     st->print("::");
  1435     name()->print_symbol_on(st);
  1436     if (WizardMode)
  1437       signature()->as_symbol()->print_symbol_on(st);
  1441 // ------------------------------------------------------------------
  1442 // ciMethod::print_impl
  1443 //
  1444 // Implementation of the print method.
  1445 void ciMethod::print_impl(outputStream* st) {
  1446   ciMetadata::print_impl(st);
  1447   st->print(" name=");
  1448   name()->print_symbol_on(st);
  1449   st->print(" holder=");
  1450   holder()->print_name_on(st);
  1451   st->print(" signature=");
  1452   signature()->as_symbol()->print_symbol_on(st);
  1453   if (is_loaded()) {
  1454     st->print(" loaded=true");
  1455     st->print(" arg_size=%d", arg_size());
  1456     st->print(" flags=");
  1457     flags().print_member_flags(st);
  1458   } else {
  1459     st->print(" loaded=false");

mercurial