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