1 /*
   2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "compiler/compilerOracle.hpp"
  28 #include "interpreter/bytecode.hpp"
  29 #include "interpreter/bytecodeStream.hpp"
  30 #include "interpreter/linkResolver.hpp"
  31 #include "memory/heapInspection.hpp"
  32 #include "oops/methodData.hpp"
  33 #include "prims/jvmtiRedefineClasses.hpp"
  34 #include "runtime/compilationPolicy.hpp"
  35 #include "runtime/deoptimization.hpp"
  36 #include "runtime/handles.inline.hpp"
  37 
  38 // ==================================================================
  39 // DataLayout
  40 //
  41 // Overlay for generic profiling data.
  42 
  43 // Some types of data layouts need a length field.
  44 bool DataLayout::needs_array_len(u1 tag) {
  45   return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag) || (tag == parameters_type_data_tag);
  46 }
  47 
  48 // Perform generic initialization of the data.  More specific
  49 // initialization occurs in overrides of ProfileData::post_initialize.
  50 void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
  51   _header._bits = (intptr_t)0;
  52   _header._struct._tag = tag;
  53   _header._struct._bci = bci;
  54   for (int i = 0; i < cell_count; i++) {
  55     set_cell_at(i, (intptr_t)0);
  56   }
  57   if (needs_array_len(tag)) {
  58     set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
  59   }
  60   if (tag == call_type_data_tag) {
  61     CallTypeData::initialize(this, cell_count);
  62   } else if (tag == virtual_call_type_data_tag) {
  63     VirtualCallTypeData::initialize(this, cell_count);
  64   }
  65 }
  66 
  67 void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) {
  68   ResourceMark m;
  69   data_in()->clean_weak_klass_links(cl);
  70 }
  71 
  72 
  73 // ==================================================================
  74 // ProfileData
  75 //
  76 // A ProfileData object is created to refer to a section of profiling
  77 // data in a structured way.
  78 
  79 // Constructor for invalid ProfileData.
  80 ProfileData::ProfileData() {
  81   _data = NULL;
  82 }
  83 
  84 char* ProfileData::print_data_on_helper(const MethodData* md) const {
  85   DataLayout* dp  = md->extra_data_base();
  86   DataLayout* end = md->extra_data_limit();
  87   stringStream ss;
  88   for (;; dp = MethodData::next_extra(dp)) {
  89     assert(dp < end, "moved past end of extra data");
  90     switch(dp->tag()) {
  91     case DataLayout::speculative_trap_data_tag:
  92       if (dp->bci() == bci()) {
  93         SpeculativeTrapData* data = new SpeculativeTrapData(dp);
  94         int trap = data->trap_state();
  95         char buf[100];
  96         ss.print("trap/");
  97         data->method()->print_short_name(&ss);
  98         ss.print("(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
  99       }
 100       break;
 101     case DataLayout::bit_data_tag:
 102       break;
 103     case DataLayout::no_tag:
 104     case DataLayout::arg_info_data_tag:
 105       return ss.as_string();
 106       break;
 107     default:
 108       fatal(err_msg("unexpected tag %d", dp->tag()));
 109     }
 110   }
 111   return NULL;
 112 }
 113 
 114 void ProfileData::print_data_on(outputStream* st, const MethodData* md) const {
 115   print_data_on(st, print_data_on_helper(md));
 116 }
 117 
 118 #ifndef PRODUCT
 119 void ProfileData::print_shared(outputStream* st, const char* name, const char* extra) const {
 120   st->print("bci: %d", bci());
 121   st->fill_to(tab_width_one);
 122   st->print("%s", name);
 123   tab(st);
 124   int trap = trap_state();
 125   if (trap != 0) {
 126     char buf[100];
 127     st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
 128   }
 129   if (extra != NULL) {
 130     st->print(extra);
 131   }
 132   int flags = data()->flags();
 133   if (flags != 0) {
 134     st->print("flags(%d) ", flags);
 135   }
 136 }
 137 
 138 void ProfileData::tab(outputStream* st, bool first) const {
 139   st->fill_to(first ? tab_width_one : tab_width_two);
 140 }
 141 #endif // !PRODUCT
 142 
 143 // ==================================================================
 144 // BitData
 145 //
 146 // A BitData corresponds to a one-bit flag.  This is used to indicate
 147 // whether a checkcast bytecode has seen a null value.
 148 
 149 
 150 #ifndef PRODUCT
 151 void BitData::print_data_on(outputStream* st, const char* extra) const {
 152   print_shared(st, "BitData", extra);
 153 }
 154 #endif // !PRODUCT
 155 
 156 // ==================================================================
 157 // CounterData
 158 //
 159 // A CounterData corresponds to a simple counter.
 160 
 161 #ifndef PRODUCT
 162 void CounterData::print_data_on(outputStream* st, const char* extra) const {
 163   print_shared(st, "CounterData", extra);
 164   st->print_cr("count(%u)", count());
 165 }
 166 #endif // !PRODUCT
 167 
 168 // ==================================================================
 169 // JumpData
 170 //
 171 // A JumpData is used to access profiling information for a direct
 172 // branch.  It is a counter, used for counting the number of branches,
 173 // plus a data displacement, used for realigning the data pointer to
 174 // the corresponding target bci.
 175 
 176 void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 177   assert(stream->bci() == bci(), "wrong pos");
 178   int target;
 179   Bytecodes::Code c = stream->code();
 180   if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
 181     target = stream->dest_w();
 182   } else {
 183     target = stream->dest();
 184   }
 185   int my_di = mdo->dp_to_di(dp());
 186   int target_di = mdo->bci_to_di(target);
 187   int offset = target_di - my_di;
 188   set_displacement(offset);
 189 }
 190 
 191 #ifndef PRODUCT
 192 void JumpData::print_data_on(outputStream* st, const char* extra) const {
 193   print_shared(st, "JumpData", extra);
 194   st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
 195 }
 196 #endif // !PRODUCT
 197 
 198 int TypeStackSlotEntries::compute_cell_count(Symbol* signature, bool include_receiver, int max) {
 199   // Parameter profiling include the receiver
 200   int args_count = include_receiver ? 1 : 0;
 201   ResourceMark rm;
 202   SignatureStream ss(signature);
 203   args_count += ss.reference_parameter_count();
 204   args_count = MIN2(args_count, max);
 205   return args_count * per_arg_cell_count;
 206 }
 207 
 208 int TypeEntriesAtCall::compute_cell_count(BytecodeStream* stream) {
 209   assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
 210   assert(TypeStackSlotEntries::per_arg_count() > ReturnTypeEntry::static_cell_count(), "code to test for arguments/results broken");
 211   Bytecode_invoke inv(stream->method(), stream->bci());
 212   int args_cell = 0;
 213   if (arguments_profiling_enabled()) {
 214     args_cell = TypeStackSlotEntries::compute_cell_count(inv.signature(), false, TypeProfileArgsLimit);
 215   }
 216   int ret_cell = 0;
 217   if (return_profiling_enabled() && (inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY)) {
 218     ret_cell = ReturnTypeEntry::static_cell_count();
 219   }
 220   int header_cell = 0;
 221   if (args_cell + ret_cell > 0) {
 222     header_cell = header_cell_count();
 223   }
 224 
 225   return header_cell + args_cell + ret_cell;
 226 }
 227 
 228 class ArgumentOffsetComputer : public SignatureInfo {
 229 private:
 230   int _max;
 231   GrowableArray<int> _offsets;
 232 
 233   void set(int size, BasicType type) { _size += size; }
 234   void do_object(int begin, int end) {
 235     if (_offsets.length() < _max) {
 236       _offsets.push(_size);
 237     }
 238     SignatureInfo::do_object(begin, end);
 239   }
 240   void do_array (int begin, int end) {
 241     if (_offsets.length() < _max) {
 242       _offsets.push(_size);
 243     }
 244     SignatureInfo::do_array(begin, end);
 245   }
 246 
 247 public:
 248   ArgumentOffsetComputer(Symbol* signature, int max)
 249     : SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) {
 250   }
 251 
 252   int total() { lazy_iterate_parameters(); return _size; }
 253 
 254   int off_at(int i) const { return _offsets.at(i); }
 255 };
 256 
 257 void TypeStackSlotEntries::post_initialize(Symbol* signature, bool has_receiver, bool include_receiver) {
 258   ResourceMark rm;
 259   int start = 0;
 260   // Parameter profiling include the receiver
 261   if (include_receiver && has_receiver) {
 262     set_stack_slot(0, 0);
 263     set_type(0, type_none());
 264     start += 1;
 265   }
 266   ArgumentOffsetComputer aos(signature, _number_of_entries-start);
 267   aos.total();
 268   for (int i = start; i < _number_of_entries; i++) {
 269     set_stack_slot(i, aos.off_at(i-start) + (has_receiver ? 1 : 0));
 270     set_type(i, type_none());
 271   }
 272 }
 273 
 274 void CallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 275   assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
 276   Bytecode_invoke inv(stream->method(), stream->bci());
 277 
 278   SignatureStream ss(inv.signature());
 279   if (has_arguments()) {
 280 #ifdef ASSERT
 281     ResourceMark rm;
 282     int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
 283     assert(count > 0, "room for args type but none found?");
 284     check_number_of_arguments(count);
 285 #endif
 286     _args.post_initialize(inv.signature(), inv.has_receiver(), false);
 287   }
 288 
 289   if (has_return()) {
 290     assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
 291     _ret.post_initialize();
 292   }
 293 }
 294 
 295 void VirtualCallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 296   assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
 297   Bytecode_invoke inv(stream->method(), stream->bci());
 298 
 299   if (has_arguments()) {
 300 #ifdef ASSERT
 301     ResourceMark rm;
 302     SignatureStream ss(inv.signature());
 303     int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
 304     assert(count > 0, "room for args type but none found?");
 305     check_number_of_arguments(count);
 306 #endif
 307     _args.post_initialize(inv.signature(), inv.has_receiver(), false);
 308   }
 309 
 310   if (has_return()) {
 311     assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
 312     _ret.post_initialize();
 313   }
 314 }
 315 
 316 bool TypeEntries::is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p) {
 317   Klass* k = (Klass*)klass_part(p);
 318   return k != NULL && k->is_loader_alive(is_alive_cl);
 319 }
 320 
 321 void TypeStackSlotEntries::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
 322   for (int i = 0; i < _number_of_entries; i++) {
 323     intptr_t p = type(i);
 324     if (!is_loader_alive(is_alive_cl, p)) {
 325       set_type(i, with_status((Klass*)NULL, p));
 326     }
 327   }
 328 }
 329 
 330 void ReturnTypeEntry::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
 331   intptr_t p = type();
 332   if (!is_loader_alive(is_alive_cl, p)) {
 333     set_type(with_status((Klass*)NULL, p));
 334   }
 335 }
 336 
 337 bool TypeEntriesAtCall::return_profiling_enabled() {
 338   return MethodData::profile_return();
 339 }
 340 
 341 bool TypeEntriesAtCall::arguments_profiling_enabled() {
 342   return MethodData::profile_arguments();
 343 }
 344 
 345 #ifndef PRODUCT
 346 void TypeEntries::print_klass(outputStream* st, intptr_t k) {
 347   if (is_type_none(k)) {
 348     st->print("none");
 349   } else if (is_type_unknown(k)) {
 350     st->print("unknown");
 351   } else {
 352     valid_klass(k)->print_value_on(st);
 353   }
 354   if (was_null_seen(k)) {
 355     st->print(" (null seen)");
 356   }
 357 }
 358 
 359 void TypeStackSlotEntries::print_data_on(outputStream* st) const {
 360   for (int i = 0; i < _number_of_entries; i++) {
 361     _pd->tab(st);
 362     st->print("%d: stack(%u) ", i, stack_slot(i));
 363     print_klass(st, type(i));
 364     st->cr();
 365   }
 366 }
 367 
 368 void ReturnTypeEntry::print_data_on(outputStream* st) const {
 369   _pd->tab(st);
 370   print_klass(st, type());
 371   st->cr();
 372 }
 373 
 374 void CallTypeData::print_data_on(outputStream* st, const char* extra) const {
 375   CounterData::print_data_on(st, extra);
 376   if (has_arguments()) {
 377     tab(st, true);
 378     st->print("argument types");
 379     _args.print_data_on(st);
 380   }
 381   if (has_return()) {
 382     tab(st, true);
 383     st->print("return type");
 384     _ret.print_data_on(st);
 385   }
 386 }
 387 
 388 void VirtualCallTypeData::print_data_on(outputStream* st, const char* extra) const {
 389   VirtualCallData::print_data_on(st, extra);
 390   if (has_arguments()) {
 391     tab(st, true);
 392     st->print("argument types");
 393     _args.print_data_on(st);
 394   }
 395   if (has_return()) {
 396     tab(st, true);
 397     st->print("return type");
 398     _ret.print_data_on(st);
 399   }
 400 }
 401 #endif
 402 
 403 // ==================================================================
 404 // ReceiverTypeData
 405 //
 406 // A ReceiverTypeData is used to access profiling information about a
 407 // dynamic type check.  It consists of a counter which counts the total times
 408 // that the check is reached, and a series of (Klass*, count) pairs
 409 // which are used to store a type profile for the receiver of the check.
 410 
 411 void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
 412     for (uint row = 0; row < row_limit(); row++) {
 413     Klass* p = receiver(row);
 414     if (p != NULL && !p->is_loader_alive(is_alive_cl)) {
 415       clear_row(row);
 416     }
 417   }
 418 }
 419 
 420 #ifndef PRODUCT
 421 void ReceiverTypeData::print_receiver_data_on(outputStream* st) const {
 422   uint row;
 423   int entries = 0;
 424   for (row = 0; row < row_limit(); row++) {
 425     if (receiver(row) != NULL)  entries++;
 426   }
 427   st->print_cr("count(%u) entries(%u)", count(), entries);
 428   int total = count();
 429   for (row = 0; row < row_limit(); row++) {
 430     if (receiver(row) != NULL) {
 431       total += receiver_count(row);
 432     }
 433   }
 434   for (row = 0; row < row_limit(); row++) {
 435     if (receiver(row) != NULL) {
 436       tab(st);
 437       receiver(row)->print_value_on(st);
 438       st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total);
 439     }
 440   }
 441 }
 442 void ReceiverTypeData::print_data_on(outputStream* st, const char* extra) const {
 443   print_shared(st, "ReceiverTypeData", extra);
 444   print_receiver_data_on(st);
 445 }
 446 void VirtualCallData::print_data_on(outputStream* st, const char* extra) const {
 447   print_shared(st, "VirtualCallData", extra);
 448   print_receiver_data_on(st);
 449 }
 450 #endif // !PRODUCT
 451 
 452 // ==================================================================
 453 // RetData
 454 //
 455 // A RetData is used to access profiling information for a ret bytecode.
 456 // It is composed of a count of the number of times that the ret has
 457 // been executed, followed by a series of triples of the form
 458 // (bci, count, di) which count the number of times that some bci was the
 459 // target of the ret and cache a corresponding displacement.
 460 
 461 void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 462   for (uint row = 0; row < row_limit(); row++) {
 463     set_bci_displacement(row, -1);
 464     set_bci(row, no_bci);
 465   }
 466   // release so other threads see a consistent state.  bci is used as
 467   // a valid flag for bci_displacement.
 468   OrderAccess::release();
 469 }
 470 
 471 // This routine needs to atomically update the RetData structure, so the
 472 // caller needs to hold the RetData_lock before it gets here.  Since taking
 473 // the lock can block (and allow GC) and since RetData is a ProfileData is a
 474 // wrapper around a derived oop, taking the lock in _this_ method will
 475 // basically cause the 'this' pointer's _data field to contain junk after the
 476 // lock.  We require the caller to take the lock before making the ProfileData
 477 // structure.  Currently the only caller is InterpreterRuntime::update_mdp_for_ret
 478 address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
 479   // First find the mdp which corresponds to the return bci.
 480   address mdp = h_mdo->bci_to_dp(return_bci);
 481 
 482   // Now check to see if any of the cache slots are open.
 483   for (uint row = 0; row < row_limit(); row++) {
 484     if (bci(row) == no_bci) {
 485       set_bci_displacement(row, mdp - dp());
 486       set_bci_count(row, DataLayout::counter_increment);
 487       // Barrier to ensure displacement is written before the bci; allows
 488       // the interpreter to read displacement without fear of race condition.
 489       release_set_bci(row, return_bci);
 490       break;
 491     }
 492   }
 493   return mdp;
 494 }
 495 
 496 #ifdef CC_INTERP
 497 DataLayout* RetData::advance(MethodData *md, int bci) {
 498   return (DataLayout*) md->bci_to_dp(bci);
 499 }
 500 #endif // CC_INTERP
 501 
 502 #ifndef PRODUCT
 503 void RetData::print_data_on(outputStream* st, const char* extra) const {
 504   print_shared(st, "RetData", extra);
 505   uint row;
 506   int entries = 0;
 507   for (row = 0; row < row_limit(); row++) {
 508     if (bci(row) != no_bci)  entries++;
 509   }
 510   st->print_cr("count(%u) entries(%u)", count(), entries);
 511   for (row = 0; row < row_limit(); row++) {
 512     if (bci(row) != no_bci) {
 513       tab(st);
 514       st->print_cr("bci(%d: count(%u) displacement(%d))",
 515                    bci(row), bci_count(row), bci_displacement(row));
 516     }
 517   }
 518 }
 519 #endif // !PRODUCT
 520 
 521 // ==================================================================
 522 // BranchData
 523 //
 524 // A BranchData is used to access profiling data for a two-way branch.
 525 // It consists of taken and not_taken counts as well as a data displacement
 526 // for the taken case.
 527 
 528 void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 529   assert(stream->bci() == bci(), "wrong pos");
 530   int target = stream->dest();
 531   int my_di = mdo->dp_to_di(dp());
 532   int target_di = mdo->bci_to_di(target);
 533   int offset = target_di - my_di;
 534   set_displacement(offset);
 535 }
 536 
 537 #ifndef PRODUCT
 538 void BranchData::print_data_on(outputStream* st, const char* extra) const {
 539   print_shared(st, "BranchData", extra);
 540   st->print_cr("taken(%u) displacement(%d)",
 541                taken(), displacement());
 542   tab(st);
 543   st->print_cr("not taken(%u)", not_taken());
 544 }
 545 #endif
 546 
 547 // ==================================================================
 548 // MultiBranchData
 549 //
 550 // A MultiBranchData is used to access profiling information for
 551 // a multi-way branch (*switch bytecodes).  It consists of a series
 552 // of (count, displacement) pairs, which count the number of times each
 553 // case was taken and specify the data displacment for each branch target.
 554 
 555 int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
 556   int cell_count = 0;
 557   if (stream->code() == Bytecodes::_tableswitch) {
 558     Bytecode_tableswitch sw(stream->method()(), stream->bcp());
 559     cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
 560   } else {
 561     Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
 562     cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
 563   }
 564   return cell_count;
 565 }
 566 
 567 void MultiBranchData::post_initialize(BytecodeStream* stream,
 568                                       MethodData* mdo) {
 569   assert(stream->bci() == bci(), "wrong pos");
 570   int target;
 571   int my_di;
 572   int target_di;
 573   int offset;
 574   if (stream->code() == Bytecodes::_tableswitch) {
 575     Bytecode_tableswitch sw(stream->method()(), stream->bcp());
 576     int len = sw.length();
 577     assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
 578     for (int count = 0; count < len; count++) {
 579       target = sw.dest_offset_at(count) + bci();
 580       my_di = mdo->dp_to_di(dp());
 581       target_di = mdo->bci_to_di(target);
 582       offset = target_di - my_di;
 583       set_displacement_at(count, offset);
 584     }
 585     target = sw.default_offset() + bci();
 586     my_di = mdo->dp_to_di(dp());
 587     target_di = mdo->bci_to_di(target);
 588     offset = target_di - my_di;
 589     set_default_displacement(offset);
 590 
 591   } else {
 592     Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
 593     int npairs = sw.number_of_pairs();
 594     assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
 595     for (int count = 0; count < npairs; count++) {
 596       LookupswitchPair pair = sw.pair_at(count);
 597       target = pair.offset() + bci();
 598       my_di = mdo->dp_to_di(dp());
 599       target_di = mdo->bci_to_di(target);
 600       offset = target_di - my_di;
 601       set_displacement_at(count, offset);
 602     }
 603     target = sw.default_offset() + bci();
 604     my_di = mdo->dp_to_di(dp());
 605     target_di = mdo->bci_to_di(target);
 606     offset = target_di - my_di;
 607     set_default_displacement(offset);
 608   }
 609 }
 610 
 611 #ifndef PRODUCT
 612 void MultiBranchData::print_data_on(outputStream* st, const char* extra) const {
 613   print_shared(st, "MultiBranchData", extra);
 614   st->print_cr("default_count(%u) displacement(%d)",
 615                default_count(), default_displacement());
 616   int cases = number_of_cases();
 617   for (int i = 0; i < cases; i++) {
 618     tab(st);
 619     st->print_cr("count(%u) displacement(%d)",
 620                  count_at(i), displacement_at(i));
 621   }
 622 }
 623 #endif
 624 
 625 #ifndef PRODUCT
 626 void ArgInfoData::print_data_on(outputStream* st, const char* extra) const {
 627   print_shared(st, "ArgInfoData", extra);
 628   int nargs = number_of_args();
 629   for (int i = 0; i < nargs; i++) {
 630     st->print("  0x%x", arg_modified(i));
 631   }
 632   st->cr();
 633 }
 634 
 635 #endif
 636 
 637 int ParametersTypeData::compute_cell_count(Method* m) {
 638   if (!MethodData::profile_parameters_for_method(m)) {
 639     return 0;
 640   }
 641   int max = TypeProfileParmsLimit == -1 ? INT_MAX : TypeProfileParmsLimit;
 642   int obj_args = TypeStackSlotEntries::compute_cell_count(m->signature(), !m->is_static(), max);
 643   if (obj_args > 0) {
 644     return obj_args + 1; // 1 cell for array len
 645   }
 646   return 0;
 647 }
 648 
 649 void ParametersTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
 650   _parameters.post_initialize(mdo->method()->signature(), !mdo->method()->is_static(), true);
 651 }
 652 
 653 bool ParametersTypeData::profiling_enabled() {
 654   return MethodData::profile_parameters();
 655 }
 656 
 657 #ifndef PRODUCT
 658 void ParametersTypeData::print_data_on(outputStream* st, const char* extra) const {
 659   st->print("parameter types", extra);
 660   _parameters.print_data_on(st);
 661 }
 662 
 663 void SpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const {
 664   print_shared(st, "SpeculativeTrapData", extra);
 665   tab(st);
 666   method()->print_short_name(st);
 667   st->cr();
 668 }
 669 #endif
 670 
 671 // ==================================================================
 672 // MethodData*
 673 //
 674 // A MethodData* holds information which has been collected about
 675 // a method.
 676 
 677 MethodData* MethodData::allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS) {
 678   int size = MethodData::compute_allocation_size_in_words(method);
 679 
 680   return new (loader_data, size, false, MetaspaceObj::MethodDataType, THREAD)
 681     MethodData(method(), size, CHECK_NULL);
 682 }
 683 
 684 int MethodData::bytecode_cell_count(Bytecodes::Code code) {
 685 #if defined(COMPILER1) && !defined(COMPILER2)
 686   return no_profile_data;
 687 #else
 688   switch (code) {
 689   case Bytecodes::_checkcast:
 690   case Bytecodes::_instanceof:
 691   case Bytecodes::_aastore:
 692     if (TypeProfileCasts) {
 693       return ReceiverTypeData::static_cell_count();
 694     } else {
 695       return BitData::static_cell_count();
 696     }
 697   case Bytecodes::_invokespecial:
 698   case Bytecodes::_invokestatic:
 699     if (MethodData::profile_arguments() || MethodData::profile_return()) {
 700       return variable_cell_count;
 701     } else {
 702       return CounterData::static_cell_count();
 703     }
 704   case Bytecodes::_goto:
 705   case Bytecodes::_goto_w:
 706   case Bytecodes::_jsr:
 707   case Bytecodes::_jsr_w:
 708     return JumpData::static_cell_count();
 709   case Bytecodes::_invokevirtual:
 710   case Bytecodes::_invokeinterface:
 711     if (MethodData::profile_arguments() || MethodData::profile_return()) {
 712       return variable_cell_count;
 713     } else {
 714       return VirtualCallData::static_cell_count();
 715     }
 716   case Bytecodes::_invokedynamic:
 717     if (MethodData::profile_arguments() || MethodData::profile_return()) {
 718       return variable_cell_count;
 719     } else {
 720       return CounterData::static_cell_count();
 721     }
 722   case Bytecodes::_ret:
 723     return RetData::static_cell_count();
 724   case Bytecodes::_ifeq:
 725   case Bytecodes::_ifne:
 726   case Bytecodes::_iflt:
 727   case Bytecodes::_ifge:
 728   case Bytecodes::_ifgt:
 729   case Bytecodes::_ifle:
 730   case Bytecodes::_if_icmpeq:
 731   case Bytecodes::_if_icmpne:
 732   case Bytecodes::_if_icmplt:
 733   case Bytecodes::_if_icmpge:
 734   case Bytecodes::_if_icmpgt:
 735   case Bytecodes::_if_icmple:
 736   case Bytecodes::_if_acmpeq:
 737   case Bytecodes::_if_acmpne:
 738   case Bytecodes::_ifnull:
 739   case Bytecodes::_ifnonnull:
 740     return BranchData::static_cell_count();
 741   case Bytecodes::_lookupswitch:
 742   case Bytecodes::_tableswitch:
 743     return variable_cell_count;
 744   }
 745   return no_profile_data;
 746 #endif
 747 }
 748 
 749 // Compute the size of the profiling information corresponding to
 750 // the current bytecode.
 751 int MethodData::compute_data_size(BytecodeStream* stream) {
 752   int cell_count = bytecode_cell_count(stream->code());
 753   if (cell_count == no_profile_data) {
 754     return 0;
 755   }
 756   if (cell_count == variable_cell_count) {
 757     switch (stream->code()) {
 758     case Bytecodes::_lookupswitch:
 759     case Bytecodes::_tableswitch:
 760       cell_count = MultiBranchData::compute_cell_count(stream);
 761       break;
 762     case Bytecodes::_invokespecial:
 763     case Bytecodes::_invokestatic:
 764     case Bytecodes::_invokedynamic:
 765       assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
 766       if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
 767           profile_return_for_invoke(stream->method(), stream->bci())) {
 768         cell_count = CallTypeData::compute_cell_count(stream);
 769       } else {
 770         cell_count = CounterData::static_cell_count();
 771       }
 772       break;
 773     case Bytecodes::_invokevirtual:
 774     case Bytecodes::_invokeinterface: {
 775       assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
 776       if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
 777           profile_return_for_invoke(stream->method(), stream->bci())) {
 778         cell_count = VirtualCallTypeData::compute_cell_count(stream);
 779       } else {
 780         cell_count = VirtualCallData::static_cell_count();
 781       }
 782       break;
 783     }
 784     default:
 785       fatal("unexpected bytecode for var length profile data");
 786     }
 787   }
 788   // Note:  cell_count might be zero, meaning that there is just
 789   //        a DataLayout header, with no extra cells.
 790   assert(cell_count >= 0, "sanity");
 791   return DataLayout::compute_size_in_bytes(cell_count);
 792 }
 793 
 794 bool MethodData::is_speculative_trap_bytecode(Bytecodes::Code code) {
 795   // Bytecodes for which we may use speculation
 796   switch (code) {
 797   case Bytecodes::_checkcast:
 798   case Bytecodes::_instanceof:
 799   case Bytecodes::_aastore:
 800   case Bytecodes::_invokevirtual:
 801   case Bytecodes::_invokeinterface:
 802   case Bytecodes::_if_acmpeq:
 803   case Bytecodes::_if_acmpne:
 804   case Bytecodes::_ifnull:
 805   case Bytecodes::_ifnonnull:
 806   case Bytecodes::_invokestatic:
 807 #ifdef COMPILER2
 808     return UseTypeSpeculation;
 809 #endif
 810   default:
 811     return false;
 812   }
 813   return false;
 814 }
 815 
 816 int MethodData::compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps) {
 817   if (ProfileTraps) {
 818     // Assume that up to 3% of BCIs with no MDP will need to allocate one.
 819     int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
 820     // If the method is large, let the extra BCIs grow numerous (to ~1%).
 821     int one_percent_of_data
 822       = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
 823     if (extra_data_count < one_percent_of_data)
 824       extra_data_count = one_percent_of_data;
 825     if (extra_data_count > empty_bc_count)
 826       extra_data_count = empty_bc_count;  // no need for more
 827 
 828     // Make sure we have a minimum number of extra data slots to
 829     // allocate SpeculativeTrapData entries. We would want to have one
 830     // entry per compilation that inlines this method and for which
 831     // some type speculation assumption fails. So the room we need for
 832     // the SpeculativeTrapData entries doesn't directly depend on the
 833     // size of the method. Because it's hard to estimate, we reserve
 834     // space for an arbitrary number of entries.
 835     int spec_data_count = (needs_speculative_traps ? SpecTrapLimitExtraEntries : 0) *
 836       (SpeculativeTrapData::static_cell_count() + DataLayout::header_size_in_cells());
 837 
 838     return MAX2(extra_data_count, spec_data_count);
 839   } else {
 840     return 0;
 841   }
 842 }
 843 
 844 // Compute the size of the MethodData* necessary to store
 845 // profiling information about a given method.  Size is in bytes.
 846 int MethodData::compute_allocation_size_in_bytes(methodHandle method) {
 847   int data_size = 0;
 848   BytecodeStream stream(method);
 849   Bytecodes::Code c;
 850   int empty_bc_count = 0;  // number of bytecodes lacking data
 851   bool needs_speculative_traps = false;
 852   while ((c = stream.next()) >= 0) {
 853     int size_in_bytes = compute_data_size(&stream);
 854     data_size += size_in_bytes;
 855     if (size_in_bytes == 0)  empty_bc_count += 1;
 856     needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
 857   }
 858   int object_size = in_bytes(data_offset()) + data_size;
 859 
 860   // Add some extra DataLayout cells (at least one) to track stray traps.
 861   int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
 862   object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
 863 
 864   // Add a cell to record information about modified arguments.
 865   int arg_size = method->size_of_parameters();
 866   object_size += DataLayout::compute_size_in_bytes(arg_size+1);
 867 
 868   // Reserve room for an area of the MDO dedicated to profiling of
 869   // parameters
 870   int args_cell = ParametersTypeData::compute_cell_count(method());
 871   if (args_cell > 0) {
 872     object_size += DataLayout::compute_size_in_bytes(args_cell);
 873   }
 874   return object_size;
 875 }
 876 
 877 // Compute the size of the MethodData* necessary to store
 878 // profiling information about a given method.  Size is in words
 879 int MethodData::compute_allocation_size_in_words(methodHandle method) {
 880   int byte_size = compute_allocation_size_in_bytes(method);
 881   int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
 882   return align_object_size(word_size);
 883 }
 884 
 885 // Initialize an individual data segment.  Returns the size of
 886 // the segment in bytes.
 887 int MethodData::initialize_data(BytecodeStream* stream,
 888                                        int data_index) {
 889 #if defined(COMPILER1) && !defined(COMPILER2)
 890   return 0;
 891 #else
 892   int cell_count = -1;
 893   int tag = DataLayout::no_tag;
 894   DataLayout* data_layout = data_layout_at(data_index);
 895   Bytecodes::Code c = stream->code();
 896   switch (c) {
 897   case Bytecodes::_checkcast:
 898   case Bytecodes::_instanceof:
 899   case Bytecodes::_aastore:
 900     if (TypeProfileCasts) {
 901       cell_count = ReceiverTypeData::static_cell_count();
 902       tag = DataLayout::receiver_type_data_tag;
 903     } else {
 904       cell_count = BitData::static_cell_count();
 905       tag = DataLayout::bit_data_tag;
 906     }
 907     break;
 908   case Bytecodes::_invokespecial:
 909   case Bytecodes::_invokestatic: {
 910     int counter_data_cell_count = CounterData::static_cell_count();
 911     if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
 912         profile_return_for_invoke(stream->method(), stream->bci())) {
 913       cell_count = CallTypeData::compute_cell_count(stream);
 914     } else {
 915       cell_count = counter_data_cell_count;
 916     }
 917     if (cell_count > counter_data_cell_count) {
 918       tag = DataLayout::call_type_data_tag;
 919     } else {
 920       tag = DataLayout::counter_data_tag;
 921     }
 922     break;
 923   }
 924   case Bytecodes::_goto:
 925   case Bytecodes::_goto_w:
 926   case Bytecodes::_jsr:
 927   case Bytecodes::_jsr_w:
 928     cell_count = JumpData::static_cell_count();
 929     tag = DataLayout::jump_data_tag;
 930     break;
 931   case Bytecodes::_invokevirtual:
 932   case Bytecodes::_invokeinterface: {
 933     int virtual_call_data_cell_count = VirtualCallData::static_cell_count();
 934     if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
 935         profile_return_for_invoke(stream->method(), stream->bci())) {
 936       cell_count = VirtualCallTypeData::compute_cell_count(stream);
 937     } else {
 938       cell_count = virtual_call_data_cell_count;
 939     }
 940     if (cell_count > virtual_call_data_cell_count) {
 941       tag = DataLayout::virtual_call_type_data_tag;
 942     } else {
 943       tag = DataLayout::virtual_call_data_tag;
 944     }
 945     break;
 946   }
 947   case Bytecodes::_invokedynamic: {
 948     // %%% should make a type profile for any invokedynamic that takes a ref argument
 949     int counter_data_cell_count = CounterData::static_cell_count();
 950     if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
 951         profile_return_for_invoke(stream->method(), stream->bci())) {
 952       cell_count = CallTypeData::compute_cell_count(stream);
 953     } else {
 954       cell_count = counter_data_cell_count;
 955     }
 956     if (cell_count > counter_data_cell_count) {
 957       tag = DataLayout::call_type_data_tag;
 958     } else {
 959       tag = DataLayout::counter_data_tag;
 960     }
 961     break;
 962   }
 963   case Bytecodes::_ret:
 964     cell_count = RetData::static_cell_count();
 965     tag = DataLayout::ret_data_tag;
 966     break;
 967   case Bytecodes::_ifeq:
 968   case Bytecodes::_ifne:
 969   case Bytecodes::_iflt:
 970   case Bytecodes::_ifge:
 971   case Bytecodes::_ifgt:
 972   case Bytecodes::_ifle:
 973   case Bytecodes::_if_icmpeq:
 974   case Bytecodes::_if_icmpne:
 975   case Bytecodes::_if_icmplt:
 976   case Bytecodes::_if_icmpge:
 977   case Bytecodes::_if_icmpgt:
 978   case Bytecodes::_if_icmple:
 979   case Bytecodes::_if_acmpeq:
 980   case Bytecodes::_if_acmpne:
 981   case Bytecodes::_ifnull:
 982   case Bytecodes::_ifnonnull:
 983     cell_count = BranchData::static_cell_count();
 984     tag = DataLayout::branch_data_tag;
 985     break;
 986   case Bytecodes::_lookupswitch:
 987   case Bytecodes::_tableswitch:
 988     cell_count = MultiBranchData::compute_cell_count(stream);
 989     tag = DataLayout::multi_branch_data_tag;
 990     break;
 991   }
 992   assert(tag == DataLayout::multi_branch_data_tag ||
 993          ((MethodData::profile_arguments() || MethodData::profile_return()) &&
 994           (tag == DataLayout::call_type_data_tag ||
 995            tag == DataLayout::counter_data_tag ||
 996            tag == DataLayout::virtual_call_type_data_tag ||
 997            tag == DataLayout::virtual_call_data_tag)) ||
 998          cell_count == bytecode_cell_count(c), "cell counts must agree");
 999   if (cell_count >= 0) {
1000     assert(tag != DataLayout::no_tag, "bad tag");
1001     assert(bytecode_has_profile(c), "agree w/ BHP");
1002     data_layout->initialize(tag, stream->bci(), cell_count);
1003     return DataLayout::compute_size_in_bytes(cell_count);
1004   } else {
1005     assert(!bytecode_has_profile(c), "agree w/ !BHP");
1006     return 0;
1007   }
1008 #endif
1009 }
1010 
1011 // Get the data at an arbitrary (sort of) data index.
1012 ProfileData* MethodData::data_at(int data_index) const {
1013   if (out_of_bounds(data_index)) {
1014     return NULL;
1015   }
1016   DataLayout* data_layout = data_layout_at(data_index);
1017   return data_layout->data_in();
1018 }
1019 
1020 ProfileData* DataLayout::data_in() {
1021   switch (tag()) {
1022   case DataLayout::no_tag:
1023   default:
1024     ShouldNotReachHere();
1025     return NULL;
1026   case DataLayout::bit_data_tag:
1027     return new BitData(this);
1028   case DataLayout::counter_data_tag:
1029     return new CounterData(this);
1030   case DataLayout::jump_data_tag:
1031     return new JumpData(this);
1032   case DataLayout::receiver_type_data_tag:
1033     return new ReceiverTypeData(this);
1034   case DataLayout::virtual_call_data_tag:
1035     return new VirtualCallData(this);
1036   case DataLayout::ret_data_tag:
1037     return new RetData(this);
1038   case DataLayout::branch_data_tag:
1039     return new BranchData(this);
1040   case DataLayout::multi_branch_data_tag:
1041     return new MultiBranchData(this);
1042   case DataLayout::arg_info_data_tag:
1043     return new ArgInfoData(this);
1044   case DataLayout::call_type_data_tag:
1045     return new CallTypeData(this);
1046   case DataLayout::virtual_call_type_data_tag:
1047     return new VirtualCallTypeData(this);
1048   case DataLayout::parameters_type_data_tag:
1049     return new ParametersTypeData(this);
1050   };
1051 }
1052 
1053 // Iteration over data.
1054 ProfileData* MethodData::next_data(ProfileData* current) const {
1055   int current_index = dp_to_di(current->dp());
1056   int next_index = current_index + current->size_in_bytes();
1057   ProfileData* next = data_at(next_index);
1058   return next;
1059 }
1060 
1061 // Give each of the data entries a chance to perform specific
1062 // data initialization.
1063 void MethodData::post_initialize(BytecodeStream* stream) {
1064   ResourceMark rm;
1065   ProfileData* data;
1066   for (data = first_data(); is_valid(data); data = next_data(data)) {
1067     stream->set_start(data->bci());
1068     stream->next();
1069     data->post_initialize(stream, this);
1070   }
1071   if (_parameters_type_data_di != -1) {
1072     parameters_type_data()->post_initialize(NULL, this);
1073   }
1074 }
1075 
1076 // Initialize the MethodData* corresponding to a given method.
1077 MethodData::MethodData(methodHandle method, int size, TRAPS)
1078   : _extra_data_lock(Monitor::leaf, "MDO extra data lock") {
1079   No_Safepoint_Verifier no_safepoint;  // init function atomic wrt GC
1080   ResourceMark rm;
1081   // Set the method back-pointer.
1082   _method = method();
1083 
1084   init();
1085   set_creation_mileage(mileage_of(method()));
1086 
1087   // Go through the bytecodes and allocate and initialize the
1088   // corresponding data cells.
1089   int data_size = 0;
1090   int empty_bc_count = 0;  // number of bytecodes lacking data
1091   _data[0] = 0;  // apparently not set below.
1092   BytecodeStream stream(method);
1093   Bytecodes::Code c;
1094   bool needs_speculative_traps = false;
1095   while ((c = stream.next()) >= 0) {
1096     int size_in_bytes = initialize_data(&stream, data_size);
1097     data_size += size_in_bytes;
1098     if (size_in_bytes == 0)  empty_bc_count += 1;
1099     needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
1100   }
1101   _data_size = data_size;
1102   int object_size = in_bytes(data_offset()) + data_size;
1103 
1104   // Add some extra DataLayout cells (at least one) to track stray traps.
1105   int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
1106   int extra_size = extra_data_count * DataLayout::compute_size_in_bytes(0);
1107 
1108   // Let's zero the space for the extra data
1109   Copy::zero_to_bytes(((address)_data) + data_size, extra_size);
1110 
1111   // Add a cell to record information about modified arguments.
1112   // Set up _args_modified array after traps cells so that
1113   // the code for traps cells works.
1114   DataLayout *dp = data_layout_at(data_size + extra_size);
1115 
1116   int arg_size = method->size_of_parameters();
1117   dp->initialize(DataLayout::arg_info_data_tag, 0, arg_size+1);
1118 
1119   int arg_data_size = DataLayout::compute_size_in_bytes(arg_size+1);
1120   object_size += extra_size + arg_data_size;
1121 
1122   int parms_cell = ParametersTypeData::compute_cell_count(method());
1123   // If we are profiling parameters, we reserver an area near the end
1124   // of the MDO after the slots for bytecodes (because there's no bci
1125   // for method entry so they don't fit with the framework for the
1126   // profiling of bytecodes). We store the offset within the MDO of
1127   // this area (or -1 if no parameter is profiled)
1128   if (parms_cell > 0) {
1129     object_size += DataLayout::compute_size_in_bytes(parms_cell);
1130     _parameters_type_data_di = data_size + extra_size + arg_data_size;
1131     DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size);
1132     dp->initialize(DataLayout::parameters_type_data_tag, 0, parms_cell);
1133   } else {
1134     _parameters_type_data_di = -1;
1135   }
1136 
1137   // Set an initial hint. Don't use set_hint_di() because
1138   // first_di() may be out of bounds if data_size is 0.
1139   // In that situation, _hint_di is never used, but at
1140   // least well-defined.
1141   _hint_di = first_di();
1142 
1143   post_initialize(&stream);
1144 
1145   set_size(object_size);
1146 }
1147 
1148 void MethodData::init() {
1149   _invocation_counter.init();
1150   _backedge_counter.init();
1151   _invocation_counter_start = 0;
1152   _backedge_counter_start = 0;
1153   _num_loops = 0;
1154   _num_blocks = 0;
1155   _highest_comp_level = 0;
1156   _highest_osr_comp_level = 0;
1157   _would_profile = true;
1158 
1159 #if INCLUDE_RTM_OPT
1160   _rtm_state = NoRTM; // No RTM lock eliding by default
1161   if (UseRTMLocking &&
1162       !CompilerOracle::has_option_string(_method, "NoRTMLockEliding")) {
1163     if (CompilerOracle::has_option_string(_method, "UseRTMLockEliding") || !UseRTMDeopt) {
1164       // Generate RTM lock eliding code without abort ratio calculation code.
1165       _rtm_state = UseRTM;
1166     } else if (UseRTMDeopt) {
1167       // Generate RTM lock eliding code and include abort ratio calculation
1168       // code if UseRTMDeopt is on.
1169       _rtm_state = ProfileRTM;
1170     }
1171   }
1172 #endif
1173 
1174   // Initialize flags and trap history.
1175   _nof_decompiles = 0;
1176   _nof_overflow_recompiles = 0;
1177   _nof_overflow_traps = 0;
1178   clear_escape_info();
1179   assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
1180   Copy::zero_to_words((HeapWord*) &_trap_hist,
1181                       sizeof(_trap_hist) / sizeof(HeapWord));
1182 }
1183 
1184 // Get a measure of how much mileage the method has on it.
1185 int MethodData::mileage_of(Method* method) {
1186   int mileage = 0;
1187   if (TieredCompilation) {
1188     mileage = MAX2(method->invocation_count(), method->backedge_count());
1189   } else {
1190     int iic = method->interpreter_invocation_count();
1191     if (mileage < iic)  mileage = iic;
1192     MethodCounters* mcs = method->method_counters();
1193     if (mcs != NULL) {
1194       InvocationCounter* ic = mcs->invocation_counter();
1195       InvocationCounter* bc = mcs->backedge_counter();
1196       int icval = ic->count();
1197       if (ic->carry()) icval += CompileThreshold;
1198       if (mileage < icval)  mileage = icval;
1199       int bcval = bc->count();
1200       if (bc->carry()) bcval += CompileThreshold;
1201       if (mileage < bcval)  mileage = bcval;
1202     }
1203   }
1204   return mileage;
1205 }
1206 
1207 bool MethodData::is_mature() const {
1208   return CompilationPolicy::policy()->is_mature(_method);
1209 }
1210 
1211 // Translate a bci to its corresponding data index (di).
1212 address MethodData::bci_to_dp(int bci) {
1213   ResourceMark rm;
1214   ProfileData* data = data_before(bci);
1215   ProfileData* prev = NULL;
1216   for ( ; is_valid(data); data = next_data(data)) {
1217     if (data->bci() >= bci) {
1218       if (data->bci() == bci)  set_hint_di(dp_to_di(data->dp()));
1219       else if (prev != NULL)   set_hint_di(dp_to_di(prev->dp()));
1220       return data->dp();
1221     }
1222     prev = data;
1223   }
1224   return (address)limit_data_position();
1225 }
1226 
1227 // Translate a bci to its corresponding data, or NULL.
1228 ProfileData* MethodData::bci_to_data(int bci) {
1229   ProfileData* data = data_before(bci);
1230   for ( ; is_valid(data); data = next_data(data)) {
1231     if (data->bci() == bci) {
1232       set_hint_di(dp_to_di(data->dp()));
1233       return data;
1234     } else if (data->bci() > bci) {
1235       break;
1236     }
1237   }
1238   return bci_to_extra_data(bci, NULL, false);
1239 }
1240 
1241 DataLayout* MethodData::next_extra(DataLayout* dp) {
1242   int nb_cells = 0;
1243   switch(dp->tag()) {
1244   case DataLayout::bit_data_tag:
1245   case DataLayout::no_tag:
1246     nb_cells = BitData::static_cell_count();
1247     break;
1248   case DataLayout::speculative_trap_data_tag:
1249     nb_cells = SpeculativeTrapData::static_cell_count();
1250     break;
1251   default:
1252     fatal(err_msg("unexpected tag %d", dp->tag()));
1253   }
1254   return (DataLayout*)((address)dp + DataLayout::compute_size_in_bytes(nb_cells));
1255 }
1256 
1257 ProfileData* MethodData::bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp, bool concurrent) {
1258   DataLayout* end = extra_data_limit();
1259 
1260   for (;; dp = next_extra(dp)) {
1261     assert(dp < end, "moved past end of extra data");
1262     // No need for "OrderAccess::load_acquire" ops,
1263     // since the data structure is monotonic.
1264     switch(dp->tag()) {
1265     case DataLayout::no_tag:
1266       return NULL;
1267     case DataLayout::arg_info_data_tag:
1268       dp = end;
1269       return NULL; // ArgInfoData is at the end of extra data section.
1270     case DataLayout::bit_data_tag:
1271       if (m == NULL && dp->bci() == bci) {
1272         return new BitData(dp);
1273       }
1274       break;
1275     case DataLayout::speculative_trap_data_tag:
1276       if (m != NULL) {
1277         SpeculativeTrapData* data = new SpeculativeTrapData(dp);
1278         // data->method() may be null in case of a concurrent
1279         // allocation. Maybe it's for the same method. Try to use that
1280         // entry in that case.
1281         if (dp->bci() == bci) {
1282           if (data->method() == NULL) {
1283             assert(concurrent, "impossible because no concurrent allocation");
1284             return NULL;
1285           } else if (data->method() == m) {
1286             return data;
1287           }
1288         }
1289       }
1290       break;
1291     default:
1292       fatal(err_msg("unexpected tag %d", dp->tag()));
1293     }
1294   }
1295   return NULL;
1296 }
1297 
1298 
1299 // Translate a bci to its corresponding extra data, or NULL.
1300 ProfileData* MethodData::bci_to_extra_data(int bci, Method* m, bool create_if_missing) {
1301   // This code assumes an entry for a SpeculativeTrapData is 2 cells
1302   assert(2*DataLayout::compute_size_in_bytes(BitData::static_cell_count()) ==
1303          DataLayout::compute_size_in_bytes(SpeculativeTrapData::static_cell_count()),
1304          "code needs to be adjusted");
1305 
1306   DataLayout* dp  = extra_data_base();
1307   DataLayout* end = extra_data_limit();
1308 
1309   // Allocation in the extra data space has to be atomic because not
1310   // all entries have the same size and non atomic concurrent
1311   // allocation would result in a corrupted extra data space.
1312   ProfileData* result = bci_to_extra_data_helper(bci, m, dp, true);
1313   if (result != NULL) {
1314     return result;
1315   }
1316 
1317   if (create_if_missing && dp < end) {
1318     MutexLocker ml(&_extra_data_lock);
1319     // Check again now that we have the lock. Another thread may
1320     // have added extra data entries.
1321     ProfileData* result = bci_to_extra_data_helper(bci, m, dp, false);
1322     if (result != NULL || dp >= end) {
1323       return result;
1324     }
1325 
1326     assert(dp->tag() == DataLayout::no_tag || (dp->tag() == DataLayout::speculative_trap_data_tag && m != NULL), "should be free");
1327     assert(next_extra(dp)->tag() == DataLayout::no_tag || next_extra(dp)->tag() == DataLayout::arg_info_data_tag, "should be free or arg info");
1328     u1 tag = m == NULL ? DataLayout::bit_data_tag : DataLayout::speculative_trap_data_tag;
1329     // SpeculativeTrapData is 2 slots. Make sure we have room.
1330     if (m != NULL && next_extra(dp)->tag() != DataLayout::no_tag) {
1331       return NULL;
1332     }
1333     DataLayout temp;
1334     temp.initialize(tag, bci, 0);
1335 
1336     dp->set_header(temp.header());
1337     assert(dp->tag() == tag, "sane");
1338     assert(dp->bci() == bci, "no concurrent allocation");
1339     if (tag == DataLayout::bit_data_tag) {
1340       return new BitData(dp);
1341     } else {
1342       SpeculativeTrapData* data = new SpeculativeTrapData(dp);
1343       data->set_method(m);
1344       return data;
1345     }
1346   }
1347   return NULL;
1348 }
1349 
1350 ArgInfoData *MethodData::arg_info() {
1351   DataLayout* dp    = extra_data_base();
1352   DataLayout* end   = extra_data_limit();
1353   for (; dp < end; dp = next_extra(dp)) {
1354     if (dp->tag() == DataLayout::arg_info_data_tag)
1355       return new ArgInfoData(dp);
1356   }
1357   return NULL;
1358 }
1359 
1360 // Printing
1361 
1362 #ifndef PRODUCT
1363 
1364 void MethodData::print_on(outputStream* st) const {
1365   assert(is_methodData(), "should be method data");
1366   st->print("method data for ");
1367   method()->print_value_on(st);
1368   st->cr();
1369   print_data_on(st);
1370 }
1371 
1372 #endif //PRODUCT
1373 
1374 void MethodData::print_value_on(outputStream* st) const {
1375   assert(is_methodData(), "should be method data");
1376   st->print("method data for ");
1377   method()->print_value_on(st);
1378 }
1379 
1380 #ifndef PRODUCT
1381 void MethodData::print_data_on(outputStream* st) const {
1382   ResourceMark rm;
1383   ProfileData* data = first_data();
1384   if (_parameters_type_data_di != -1) {
1385     parameters_type_data()->print_data_on(st);
1386   }
1387   for ( ; is_valid(data); data = next_data(data)) {
1388     st->print("%d", dp_to_di(data->dp()));
1389     st->fill_to(6);
1390     data->print_data_on(st, this);
1391   }
1392   st->print_cr("--- Extra data:");
1393   DataLayout* dp    = extra_data_base();
1394   DataLayout* end   = extra_data_limit();
1395   for (;; dp = next_extra(dp)) {
1396     assert(dp < end, "moved past end of extra data");
1397     // No need for "OrderAccess::load_acquire" ops,
1398     // since the data structure is monotonic.
1399     switch(dp->tag()) {
1400     case DataLayout::no_tag:
1401       continue;
1402     case DataLayout::bit_data_tag:
1403       data = new BitData(dp);
1404       break;
1405     case DataLayout::speculative_trap_data_tag:
1406       data = new SpeculativeTrapData(dp);
1407       break;
1408     case DataLayout::arg_info_data_tag:
1409       data = new ArgInfoData(dp);
1410       dp = end; // ArgInfoData is at the end of extra data section.
1411       break;
1412     default:
1413       fatal(err_msg("unexpected tag %d", dp->tag()));
1414     }
1415     st->print("%d", dp_to_di(data->dp()));
1416     st->fill_to(6);
1417     data->print_data_on(st);
1418     if (dp >= end) return;
1419   }
1420 }
1421 #endif
1422 
1423 #if INCLUDE_SERVICES
1424 // Size Statistics
1425 void MethodData::collect_statistics(KlassSizeStats *sz) const {
1426   int n = sz->count(this);
1427   sz->_method_data_bytes += n;
1428   sz->_method_all_bytes += n;
1429   sz->_rw_bytes += n;
1430 }
1431 #endif // INCLUDE_SERVICES
1432 
1433 // Verification
1434 
1435 void MethodData::verify_on(outputStream* st) {
1436   guarantee(is_methodData(), "object must be method data");
1437   // guarantee(m->is_perm(), "should be in permspace");
1438   this->verify_data_on(st);
1439 }
1440 
1441 void MethodData::verify_data_on(outputStream* st) {
1442   NEEDS_CLEANUP;
1443   // not yet implemented.
1444 }
1445 
1446 bool MethodData::profile_jsr292(methodHandle m, int bci) {
1447   if (m->is_compiled_lambda_form()) {
1448     return true;
1449   }
1450 
1451   Bytecode_invoke inv(m , bci);
1452   return inv.is_invokedynamic() || inv.is_invokehandle();
1453 }
1454 
1455 int MethodData::profile_arguments_flag() {
1456   return TypeProfileLevel % 10;
1457 }
1458 
1459 bool MethodData::profile_arguments() {
1460   return profile_arguments_flag() > no_type_profile && profile_arguments_flag() <= type_profile_all;
1461 }
1462 
1463 bool MethodData::profile_arguments_jsr292_only() {
1464   return profile_arguments_flag() == type_profile_jsr292;
1465 }
1466 
1467 bool MethodData::profile_all_arguments() {
1468   return profile_arguments_flag() == type_profile_all;
1469 }
1470 
1471 bool MethodData::profile_arguments_for_invoke(methodHandle m, int bci) {
1472   if (!profile_arguments()) {
1473     return false;
1474   }
1475 
1476   if (profile_all_arguments()) {
1477     return true;
1478   }
1479 
1480   assert(profile_arguments_jsr292_only(), "inconsistent");
1481   return profile_jsr292(m, bci);
1482 }
1483 
1484 int MethodData::profile_return_flag() {
1485   return (TypeProfileLevel % 100) / 10;
1486 }
1487 
1488 bool MethodData::profile_return() {
1489   return profile_return_flag() > no_type_profile && profile_return_flag() <= type_profile_all;
1490 }
1491 
1492 bool MethodData::profile_return_jsr292_only() {
1493   return profile_return_flag() == type_profile_jsr292;
1494 }
1495 
1496 bool MethodData::profile_all_return() {
1497   return profile_return_flag() == type_profile_all;
1498 }
1499 
1500 bool MethodData::profile_return_for_invoke(methodHandle m, int bci) {
1501   if (!profile_return()) {
1502     return false;
1503   }
1504 
1505   if (profile_all_return()) {
1506     return true;
1507   }
1508 
1509   assert(profile_return_jsr292_only(), "inconsistent");
1510   return profile_jsr292(m, bci);
1511 }
1512 
1513 int MethodData::profile_parameters_flag() {
1514   return TypeProfileLevel / 100;
1515 }
1516 
1517 bool MethodData::profile_parameters() {
1518   return profile_parameters_flag() > no_type_profile && profile_parameters_flag() <= type_profile_all;
1519 }
1520 
1521 bool MethodData::profile_parameters_jsr292_only() {
1522   return profile_parameters_flag() == type_profile_jsr292;
1523 }
1524 
1525 bool MethodData::profile_all_parameters() {
1526   return profile_parameters_flag() == type_profile_all;
1527 }
1528 
1529 bool MethodData::profile_parameters_for_method(methodHandle m) {
1530   if (!profile_parameters()) {
1531     return false;
1532   }
1533 
1534   if (profile_all_parameters()) {
1535     return true;
1536   }
1537 
1538   assert(profile_parameters_jsr292_only(), "inconsistent");
1539   return m->is_compiled_lambda_form();
1540 }
1541 
1542 void MethodData::clean_extra_data_helper(DataLayout* dp, int shift, bool reset) {
1543   if (shift == 0) {
1544     return;
1545   }
1546   if (!reset) {
1547     // Move all cells of trap entry at dp left by "shift" cells
1548     intptr_t* start = (intptr_t*)dp;
1549     intptr_t* end = (intptr_t*)next_extra(dp);
1550     for (intptr_t* ptr = start; ptr < end; ptr++) {
1551       *(ptr-shift) = *ptr;
1552     }
1553   } else {
1554     // Reset "shift" cells stopping at dp
1555     intptr_t* start = ((intptr_t*)dp) - shift;
1556     intptr_t* end = (intptr_t*)dp;
1557     for (intptr_t* ptr = start; ptr < end; ptr++) {
1558       *ptr = 0;
1559     }
1560   }
1561 }
1562 
1563 // Remove SpeculativeTrapData entries that reference an unloaded
1564 // method
1565 void MethodData::clean_extra_data(BoolObjectClosure* is_alive) {
1566   DataLayout* dp  = extra_data_base();
1567   DataLayout* end = extra_data_limit();
1568 
1569   int shift = 0;
1570   for (; dp < end; dp = next_extra(dp)) {
1571     switch(dp->tag()) {
1572     case DataLayout::speculative_trap_data_tag: {
1573       SpeculativeTrapData* data = new SpeculativeTrapData(dp);
1574       Method* m = data->method();
1575       assert(m != NULL, "should have a method");
1576       if (!m->method_holder()->is_loader_alive(is_alive)) {
1577         // "shift" accumulates the number of cells for dead
1578         // SpeculativeTrapData entries that have been seen so
1579         // far. Following entries must be shifted left by that many
1580         // cells to remove the dead SpeculativeTrapData entries.
1581         shift += (int)((intptr_t*)next_extra(dp) - (intptr_t*)dp);
1582       } else {
1583         // Shift this entry left if it follows dead
1584         // SpeculativeTrapData entries
1585         clean_extra_data_helper(dp, shift);
1586       }
1587       break;
1588     }
1589     case DataLayout::bit_data_tag:
1590       // Shift this entry left if it follows dead SpeculativeTrapData
1591       // entries
1592       clean_extra_data_helper(dp, shift);
1593       continue;
1594     case DataLayout::no_tag:
1595     case DataLayout::arg_info_data_tag:
1596       // We are at end of the live trap entries. The previous "shift"
1597       // cells contain entries that are either dead or were shifted
1598       // left. They need to be reset to no_tag
1599       clean_extra_data_helper(dp, shift, true);
1600       return;
1601     default:
1602       fatal(err_msg("unexpected tag %d", dp->tag()));
1603     }
1604   }
1605 }
1606 
1607 // Verify there's no unloaded method referenced by a
1608 // SpeculativeTrapData entry
1609 void MethodData::verify_extra_data_clean(BoolObjectClosure* is_alive) {
1610 #ifdef ASSERT
1611   DataLayout* dp  = extra_data_base();
1612   DataLayout* end = extra_data_limit();
1613 
1614   for (; dp < end; dp = next_extra(dp)) {
1615     switch(dp->tag()) {
1616     case DataLayout::speculative_trap_data_tag: {
1617       SpeculativeTrapData* data = new SpeculativeTrapData(dp);
1618       Method* m = data->method();
1619       assert(m != NULL && m->method_holder()->is_loader_alive(is_alive), "Method should exist");
1620       break;
1621     }
1622     case DataLayout::bit_data_tag:
1623       continue;
1624     case DataLayout::no_tag:
1625     case DataLayout::arg_info_data_tag:
1626       return;
1627     default:
1628       fatal(err_msg("unexpected tag %d", dp->tag()));
1629     }
1630   }
1631 #endif
1632 }
1633 
1634 void MethodData::clean_method_data(BoolObjectClosure* is_alive) {
1635   for (ProfileData* data = first_data();
1636        is_valid(data);
1637        data = next_data(data)) {
1638     data->clean_weak_klass_links(is_alive);
1639   }
1640   ParametersTypeData* parameters = parameters_type_data();
1641   if (parameters != NULL) {
1642     parameters->clean_weak_klass_links(is_alive);
1643   }
1644 
1645   clean_extra_data(is_alive);
1646   verify_extra_data_clean(is_alive);
1647 }