src/share/vm/ci/ciMethod.cpp

Fri, 13 Sep 2013 22:38:02 -0400

author
drchase
date
Fri, 13 Sep 2013 22:38:02 -0400
changeset 5732
b2e698d2276c
parent 5110
6f3fd5150b67
child 5904
5cc2d82aa82a
permissions
-rw-r--r--

8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
Summary: Enhance method resolution and resulting data structures, plus some refactoring.
Reviewed-by: twisti, acorn, jrose

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

mercurial