methodData.hpp 75.6 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29
#ifndef SHARE_VM_OOPS_METHODDATAOOP_HPP
#define SHARE_VM_OOPS_METHODDATAOOP_HPP

#include "interpreter/bytecodes.hpp"
#include "memory/universe.hpp"
30
#include "oops/method.hpp"
31 32 33
#include "oops/oop.hpp"
#include "runtime/orderAccess.hpp"

D
duke 已提交
34
class BytecodeStream;
35
class KlassSizeStats;
D
duke 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

// The MethodData object collects counts and other profile information
// during zeroth-tier (interpretive) and first-tier execution.
// The profile is used later by compilation heuristics.  Some heuristics
// enable use of aggressive (or "heroic") optimizations.  An aggressive
// optimization often has a down-side, a corner case that it handles
// poorly, but which is thought to be rare.  The profile provides
// evidence of this rarity for a given method or even BCI.  It allows
// the compiler to back out of the optimization at places where it
// has historically been a poor choice.  Other heuristics try to use
// specific information gathered about types observed at a given site.
//
// All data in the profile is approximate.  It is expected to be accurate
// on the whole, but the system expects occasional inaccuraces, due to
// counter overflow, multiprocessor races during data collection, space
// limitations, missing MDO blocks, etc.  Bad or missing data will degrade
// optimization quality but will not affect correctness.  Also, each MDO
// is marked with its birth-date ("creation_mileage") which can be used
// to assess the quality ("maturity") of its data.
//
// Short (<32-bit) counters are designed to overflow to a known "saturated"
// state.  Also, certain recorded per-BCI events are given one-bit counters
// which overflow to a saturated state which applied to all counters at
// that BCI.  In other words, there is a small lattice which approximates
// the ideal of an infinite-precision counter for each event at each BCI,
// and the lattice quickly "bottoms out" in a state where all counters
// are taken to be indefinitely large.
//
// The reader will find many data races in profile gathering code, starting
// with invocation counter incrementation.  None of these races harm correct
// execution of the compiled code.

Y
ysr 已提交
68 69 70
// forward decl
class ProfileData;

D
duke 已提交
71 72 73 74
// DataLayout
//
// Overlay for generic profiling data.
class DataLayout VALUE_OBJ_CLASS_SPEC {
75 76
  friend class VMStructs;

D
duke 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
private:
  // Every data layout begins with a header.  This header
  // contains a tag, which is used to indicate the size/layout
  // of the data, 4 bits of flags, which can be used in any way,
  // 4 bits of trap history (none/one reason/many reasons),
  // and a bci, which is used to tie this piece of data to a
  // specific bci in the bytecodes.
  union {
    intptr_t _bits;
    struct {
      u1 _tag;
      u1 _flags;
      u2 _bci;
    } _struct;
  } _header;

  // The data layout has an arbitrary number of cells, each sized
  // to accomodate a pointer or an integer.
  intptr_t _cells[1];

  // Some types of data layouts need a length field.
  static bool needs_array_len(u1 tag);

public:
  enum {
    counter_increment = 1
  };

  enum {
    cell_size = sizeof(intptr_t)
  };

  // Tag values
  enum {
    no_tag,
    bit_data_tag,
    counter_data_tag,
    jump_data_tag,
    receiver_type_data_tag,
    virtual_call_data_tag,
    ret_data_tag,
    branch_data_tag,
119
    multi_branch_data_tag,
120 121
    arg_info_data_tag,
    call_type_data_tag,
122
    virtual_call_type_data_tag,
123 124
    parameters_type_data_tag,
    speculative_trap_data_tag
D
duke 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  };

  enum {
    // The _struct._flags word is formatted as [trap_state:4 | flags:4].
    // The trap state breaks down further as [recompile:1 | reason:3].
    // This further breakdown is defined in deoptimization.cpp.
    // See Deoptimization::trap_state_reason for an assert that
    // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
    //
    // The trap_state is collected only if ProfileTraps is true.
    trap_bits = 1+3,  // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
    trap_shift = BitsPerByte - trap_bits,
    trap_mask = right_n_bits(trap_bits),
    trap_mask_in_place = (trap_mask << trap_shift),
    flag_limit = trap_shift,
    flag_mask = right_n_bits(flag_limit),
    first_flag = 0
  };

  // Size computation
  static int header_size_in_bytes() {
    return cell_size;
  }
  static int header_size_in_cells() {
    return 1;
  }

  static int compute_size_in_bytes(int cell_count) {
    return header_size_in_bytes() + cell_count * cell_size;
  }

  // Initialization
  void initialize(u1 tag, u2 bci, int cell_count);

  // Accessors
  u1 tag() {
    return _header._struct._tag;
  }

  // Return a few bits of trap state.  Range is [0..trap_mask].
  // The state tells if traps with zero, one, or many reasons have occurred.
  // It also tells whether zero or many recompilations have occurred.
  // The associated trap histogram in the MDO itself tells whether
  // traps are common or not.  If a BCI shows that a trap X has
  // occurred, and the MDO shows N occurrences of X, we make the
  // simplifying assumption that all N occurrences can be blamed
  // on that BCI.
172
  int trap_state() const {
D
duke 已提交
173 174 175 176 177 178 179 180 181
    return ((_header._struct._flags >> trap_shift) & trap_mask);
  }

  void set_trap_state(int new_state) {
    assert(ProfileTraps, "used only under +ProfileTraps");
    uint old_flags = (_header._struct._flags & flag_mask);
    _header._struct._flags = (new_state << trap_shift) | old_flags;
  }

182
  u1 flags() const {
D
duke 已提交
183 184 185
    return _header._struct._flags;
  }

186
  u2 bci() const {
D
duke 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    return _header._struct._bci;
  }

  void set_header(intptr_t value) {
    _header._bits = value;
  }
  intptr_t header() {
    return _header._bits;
  }
  void set_cell_at(int index, intptr_t value) {
    _cells[index] = value;
  }
  void release_set_cell_at(int index, intptr_t value) {
    OrderAccess::release_store_ptr(&_cells[index], value);
  }
202
  intptr_t cell_at(int index) const {
D
duke 已提交
203 204 205 206 207 208 209
    return _cells[index];
  }

  void set_flag_at(int flag_number) {
    assert(flag_number < flag_limit, "oob");
    _header._struct._flags |= (0x1 << flag_number);
  }
210
  bool flag_at(int flag_number) const {
D
duke 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
    assert(flag_number < flag_limit, "oob");
    return (_header._struct._flags & (0x1 << flag_number)) != 0;
  }

  // Low-level support for code generation.
  static ByteSize header_offset() {
    return byte_offset_of(DataLayout, _header);
  }
  static ByteSize tag_offset() {
    return byte_offset_of(DataLayout, _header._struct._tag);
  }
  static ByteSize flags_offset() {
    return byte_offset_of(DataLayout, _header._struct._flags);
  }
  static ByteSize bci_offset() {
    return byte_offset_of(DataLayout, _header._struct._bci);
  }
  static ByteSize cell_offset(int index) {
229
    return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size);
D
duke 已提交
230
  }
231 232 233 234 235
#ifdef CC_INTERP
  static int cell_offset_in_bytes(int index) {
    return (int)offset_of(DataLayout, _cells[index]);
  }
#endif // CC_INTERP
D
duke 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248
  // Return a value which, when or-ed as a byte into _flags, sets the flag.
  static int flag_number_to_byte_constant(int flag_number) {
    assert(0 <= flag_number && flag_number < flag_limit, "oob");
    DataLayout temp; temp.set_header(0);
    temp.set_flag_at(flag_number);
    return temp._header._struct._flags;
  }
  // Return a value which, when or-ed as a word into _header, sets the flag.
  static intptr_t flag_mask_to_header_mask(int byte_constant) {
    DataLayout temp; temp.set_header(0);
    temp._header._struct._flags = byte_constant;
    return temp._header._bits;
  }
Y
ysr 已提交
249 250

  ProfileData* data_in();
251 252 253

  // GC support
  void clean_weak_klass_links(BoolObjectClosure* cl);
254 255 256

  // Redefinition support
  void clean_weak_method_links();
D
duke 已提交
257 258 259 260 261 262 263 264 265
};


// ProfileData class hierarchy
class ProfileData;
class   BitData;
class     CounterData;
class       ReceiverTypeData;
class         VirtualCallData;
266
class           VirtualCallTypeData;
D
duke 已提交
267
class       RetData;
268
class       CallTypeData;
D
duke 已提交
269 270 271 272
class   JumpData;
class     BranchData;
class   ArrayData;
class     MultiBranchData;
273
class     ArgInfoData;
274
class     ParametersTypeData;
275
class   SpeculativeTrapData;
D
duke 已提交
276 277 278 279 280 281

// ProfileData
//
// A ProfileData object is created to refer to a section of profiling
// data in a structured way.
class ProfileData : public ResourceObj {
282
  friend class TypeEntries;
283
  friend class ReturnTypeEntry;
284
  friend class TypeStackSlotEntries;
D
duke 已提交
285 286 287 288 289 290 291 292 293 294 295
private:
#ifndef PRODUCT
  enum {
    tab_width_one = 16,
    tab_width_two = 36
  };
#endif // !PRODUCT

  // This is a pointer to a section of profiling data.
  DataLayout* _data;

296 297
  char* print_data_on_helper(const MethodData* md) const;

D
duke 已提交
298 299
protected:
  DataLayout* data() { return _data; }
300
  const DataLayout* data() const { return _data; }
D
duke 已提交
301 302 303 304 305 306 307

  enum {
    cell_size = DataLayout::cell_size
  };

public:
  // How many cells are in this?
308
  virtual int cell_count() const {
D
duke 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
    ShouldNotReachHere();
    return -1;
  }

  // Return the size of this data.
  int size_in_bytes() {
    return DataLayout::compute_size_in_bytes(cell_count());
  }

protected:
  // Low-level accessors for underlying data
  void set_intptr_at(int index, intptr_t value) {
    assert(0 <= index && index < cell_count(), "oob");
    data()->set_cell_at(index, value);
  }
  void release_set_intptr_at(int index, intptr_t value) {
    assert(0 <= index && index < cell_count(), "oob");
    data()->release_set_cell_at(index, value);
  }
328
  intptr_t intptr_at(int index) const {
D
duke 已提交
329 330 331 332 333 334 335 336 337
    assert(0 <= index && index < cell_count(), "oob");
    return data()->cell_at(index);
  }
  void set_uint_at(int index, uint value) {
    set_intptr_at(index, (intptr_t) value);
  }
  void release_set_uint_at(int index, uint value) {
    release_set_intptr_at(index, (intptr_t) value);
  }
338
  uint uint_at(int index) const {
D
duke 已提交
339 340 341 342 343 344 345 346
    return (uint)intptr_at(index);
  }
  void set_int_at(int index, int value) {
    set_intptr_at(index, (intptr_t) value);
  }
  void release_set_int_at(int index, int value) {
    release_set_intptr_at(index, (intptr_t) value);
  }
347
  int int_at(int index) const {
D
duke 已提交
348 349
    return (int)intptr_at(index);
  }
350
  int int_at_unchecked(int index) const {
D
duke 已提交
351 352 353
    return (int)data()->cell_at(index);
  }
  void set_oop_at(int index, oop value) {
354
    set_intptr_at(index, cast_from_oop<intptr_t>(value));
D
duke 已提交
355
  }
356
  oop oop_at(int index) const {
357
    return cast_to_oop(intptr_at(index));
D
duke 已提交
358 359 360 361 362
  }

  void set_flag_at(int flag_number) {
    data()->set_flag_at(flag_number);
  }
363
  bool flag_at(int flag_number) const {
D
duke 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
    return data()->flag_at(flag_number);
  }

  // two convenient imports for use by subclasses:
  static ByteSize cell_offset(int index) {
    return DataLayout::cell_offset(index);
  }
  static int flag_number_to_byte_constant(int flag_number) {
    return DataLayout::flag_number_to_byte_constant(flag_number);
  }

  ProfileData(DataLayout* data) {
    _data = data;
  }

379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
#ifdef CC_INTERP
  // Static low level accessors for DataLayout with ProfileData's semantics.

  static int cell_offset_in_bytes(int index) {
    return DataLayout::cell_offset_in_bytes(index);
  }

  static void increment_uint_at_no_overflow(DataLayout* layout, int index,
                                            int inc = DataLayout::counter_increment) {
    uint count = ((uint)layout->cell_at(index)) + inc;
    if (count == 0) return;
    layout->set_cell_at(index, (intptr_t) count);
  }

  static int int_at(DataLayout* layout, int index) {
    return (int)layout->cell_at(index);
  }

  static int uint_at(DataLayout* layout, int index) {
    return (uint)layout->cell_at(index);
  }

  static oop oop_at(DataLayout* layout, int index) {
402
    return cast_to_oop(layout->cell_at(index));
403 404 405 406 407 408 409 410 411 412 413
  }

  static void set_intptr_at(DataLayout* layout, int index, intptr_t value) {
    layout->set_cell_at(index, (intptr_t) value);
  }

  static void set_flag_at(DataLayout* layout, int flag_number) {
    layout->set_flag_at(flag_number);
  }
#endif // CC_INTERP

D
duke 已提交
414 415 416 417
public:
  // Constructor for invalid ProfileData.
  ProfileData();

418
  u2 bci() const {
D
duke 已提交
419 420 421 422 423 424 425
    return data()->bci();
  }

  address dp() {
    return (address)_data;
  }

426
  int trap_state() const {
D
duke 已提交
427 428 429 430 431 432 433
    return data()->trap_state();
  }
  void set_trap_state(int new_state) {
    data()->set_trap_state(new_state);
  }

  // Type checking
434 435 436 437 438 439 440 441 442 443 444 445
  virtual bool is_BitData()         const { return false; }
  virtual bool is_CounterData()     const { return false; }
  virtual bool is_JumpData()        const { return false; }
  virtual bool is_ReceiverTypeData()const { return false; }
  virtual bool is_VirtualCallData() const { return false; }
  virtual bool is_RetData()         const { return false; }
  virtual bool is_BranchData()      const { return false; }
  virtual bool is_ArrayData()       const { return false; }
  virtual bool is_MultiBranchData() const { return false; }
  virtual bool is_ArgInfoData()     const { return false; }
  virtual bool is_CallTypeData()    const { return false; }
  virtual bool is_VirtualCallTypeData()const { return false; }
446
  virtual bool is_ParametersTypeData() const { return false; }
447
  virtual bool is_SpeculativeTrapData()const { return false; }
448 449 450


  BitData* as_BitData() const {
D
duke 已提交
451 452 453
    assert(is_BitData(), "wrong type");
    return is_BitData()         ? (BitData*)        this : NULL;
  }
454
  CounterData* as_CounterData() const {
D
duke 已提交
455 456 457
    assert(is_CounterData(), "wrong type");
    return is_CounterData()     ? (CounterData*)    this : NULL;
  }
458
  JumpData* as_JumpData() const {
D
duke 已提交
459 460 461
    assert(is_JumpData(), "wrong type");
    return is_JumpData()        ? (JumpData*)       this : NULL;
  }
462
  ReceiverTypeData* as_ReceiverTypeData() const {
D
duke 已提交
463 464 465
    assert(is_ReceiverTypeData(), "wrong type");
    return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
  }
466
  VirtualCallData* as_VirtualCallData() const {
D
duke 已提交
467 468 469
    assert(is_VirtualCallData(), "wrong type");
    return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
  }
470
  RetData* as_RetData() const {
D
duke 已提交
471 472 473
    assert(is_RetData(), "wrong type");
    return is_RetData()         ? (RetData*)        this : NULL;
  }
474
  BranchData* as_BranchData() const {
D
duke 已提交
475 476 477
    assert(is_BranchData(), "wrong type");
    return is_BranchData()      ? (BranchData*)     this : NULL;
  }
478
  ArrayData* as_ArrayData() const {
D
duke 已提交
479 480 481
    assert(is_ArrayData(), "wrong type");
    return is_ArrayData()       ? (ArrayData*)      this : NULL;
  }
482
  MultiBranchData* as_MultiBranchData() const {
D
duke 已提交
483 484 485
    assert(is_MultiBranchData(), "wrong type");
    return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
  }
486
  ArgInfoData* as_ArgInfoData() const {
487 488 489
    assert(is_ArgInfoData(), "wrong type");
    return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
  }
490 491 492 493 494 495 496 497
  CallTypeData* as_CallTypeData() const {
    assert(is_CallTypeData(), "wrong type");
    return is_CallTypeData() ? (CallTypeData*)this : NULL;
  }
  VirtualCallTypeData* as_VirtualCallTypeData() const {
    assert(is_VirtualCallTypeData(), "wrong type");
    return is_VirtualCallTypeData() ? (VirtualCallTypeData*)this : NULL;
  }
498 499 500 501
  ParametersTypeData* as_ParametersTypeData() const {
    assert(is_ParametersTypeData(), "wrong type");
    return is_ParametersTypeData() ? (ParametersTypeData*)this : NULL;
  }
502 503 504 505
  SpeculativeTrapData* as_SpeculativeTrapData() const {
    assert(is_SpeculativeTrapData(), "wrong type");
    return is_SpeculativeTrapData() ? (SpeculativeTrapData*)this : NULL;
  }
D
duke 已提交
506 507 508


  // Subclass specific initialization
509
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {}
D
duke 已提交
510 511

  // GC support
512
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {}
D
duke 已提交
513

514 515 516
  // Redefinition support
  virtual void clean_weak_method_links() {}

D
duke 已提交
517 518 519 520 521
  // CI translation: ProfileData can represent both MethodDataOop data
  // as well as CIMethodData data. This function is provided for translating
  // an oop in a ProfileData to the ci equivalent. Generally speaking,
  // most ProfileData don't require any translation, so we provide the null
  // translation here, and the required translators are in the ci subclasses.
522
  virtual void translate_from(const ProfileData* data) {}
D
duke 已提交
523

524
  virtual void print_data_on(outputStream* st, const char* extra = NULL) const {
D
duke 已提交
525 526 527
    ShouldNotReachHere();
  }

528 529
  void print_data_on(outputStream* st, const MethodData* md) const;

D
duke 已提交
530
#ifndef PRODUCT
531
  void print_shared(outputStream* st, const char* name, const char* extra) const;
532
  void tab(outputStream* st, bool first = false) const;
D
duke 已提交
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
#endif
};

// BitData
//
// A BitData holds a flag or two in its header.
class BitData : public ProfileData {
protected:
  enum {
    // null_seen:
    //  saw a null operand (cast/aastore/instanceof)
    null_seen_flag              = DataLayout::first_flag + 0
  };
  enum { bit_cell_count = 0 };  // no additional data fields needed.
public:
  BitData(DataLayout* layout) : ProfileData(layout) {
  }

551
  virtual bool is_BitData() const { return true; }
D
duke 已提交
552 553 554 555 556

  static int static_cell_count() {
    return bit_cell_count;
  }

557
  virtual int cell_count() const {
D
duke 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
    return static_cell_count();
  }

  // Accessor

  // The null_seen flag bit is specially known to the interpreter.
  // Consulting it allows the compiler to avoid setting up null_check traps.
  bool null_seen()     { return flag_at(null_seen_flag); }
  void set_null_seen()    { set_flag_at(null_seen_flag); }


  // Code generation support
  static int null_seen_byte_constant() {
    return flag_number_to_byte_constant(null_seen_flag);
  }

  static ByteSize bit_data_size() {
    return cell_offset(bit_cell_count);
  }

578 579 580 581 582 583 584 585 586 587 588 589 590 591
#ifdef CC_INTERP
  static int bit_data_size_in_bytes() {
    return cell_offset_in_bytes(bit_cell_count);
  }

  static void set_null_seen(DataLayout* layout) {
    set_flag_at(layout, null_seen_flag);
  }

  static DataLayout* advance(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)BitData::bit_data_size_in_bytes());
  }
#endif // CC_INTERP

D
duke 已提交
592
#ifndef PRODUCT
593
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
#endif
};

// CounterData
//
// A CounterData corresponds to a simple counter.
class CounterData : public BitData {
protected:
  enum {
    count_off,
    counter_cell_count
  };
public:
  CounterData(DataLayout* layout) : BitData(layout) {}

609
  virtual bool is_CounterData() const { return true; }
D
duke 已提交
610 611 612 613 614

  static int static_cell_count() {
    return counter_cell_count;
  }

615
  virtual int cell_count() const {
D
duke 已提交
616 617 618 619
    return static_cell_count();
  }

  // Direct accessor
620
  uint count() const {
D
duke 已提交
621 622 623 624 625 626 627 628 629 630 631
    return uint_at(count_off);
  }

  // Code generation support
  static ByteSize count_offset() {
    return cell_offset(count_off);
  }
  static ByteSize counter_data_size() {
    return cell_offset(counter_cell_count);
  }

632 633 634 635
  void set_count(uint count) {
    set_uint_at(count_off, count);
  }

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
#ifdef CC_INTERP
  static int counter_data_size_in_bytes() {
    return cell_offset_in_bytes(counter_cell_count);
  }

  static void increment_count_no_overflow(DataLayout* layout) {
    increment_uint_at_no_overflow(layout, count_off);
  }

  // Support counter decrementation at checkcast / subtype check failed.
  static void decrement_count(DataLayout* layout) {
    increment_uint_at_no_overflow(layout, count_off, -1);
  }

  static DataLayout* advance(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)CounterData::counter_data_size_in_bytes());
  }
#endif // CC_INTERP

D
duke 已提交
655
#ifndef PRODUCT
656
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
#endif
};

// JumpData
//
// A JumpData is used to access profiling information for a direct
// branch.  It is a counter, used for counting the number of branches,
// plus a data displacement, used for realigning the data pointer to
// the corresponding target bci.
class JumpData : public ProfileData {
protected:
  enum {
    taken_off_set,
    displacement_off_set,
    jump_cell_count
  };

  void set_displacement(int displacement) {
    set_int_at(displacement_off_set, displacement);
  }

public:
  JumpData(DataLayout* layout) : ProfileData(layout) {
    assert(layout->tag() == DataLayout::jump_data_tag ||
      layout->tag() == DataLayout::branch_data_tag, "wrong type");
  }

684
  virtual bool is_JumpData() const { return true; }
D
duke 已提交
685 686 687 688 689

  static int static_cell_count() {
    return jump_cell_count;
  }

690
  virtual int cell_count() const {
D
duke 已提交
691 692 693 694
    return static_cell_count();
  }

  // Direct accessor
695
  uint taken() const {
D
duke 已提交
696 697
    return uint_at(taken_off_set);
  }
698 699 700 701 702

  void set_taken(uint cnt) {
    set_uint_at(taken_off_set, cnt);
  }

D
duke 已提交
703 704 705 706 707 708 709 710 711
  // Saturating counter
  uint inc_taken() {
    uint cnt = taken() + 1;
    // Did we wrap? Will compiler screw us??
    if (cnt == 0) cnt--;
    set_uint_at(taken_off_set, cnt);
    return cnt;
  }

712
  int displacement() const {
D
duke 已提交
713 714 715 716 717 718 719 720 721 722 723 724
    return int_at(displacement_off_set);
  }

  // Code generation support
  static ByteSize taken_offset() {
    return cell_offset(taken_off_set);
  }

  static ByteSize displacement_offset() {
    return cell_offset(displacement_off_set);
  }

725 726 727 728 729 730 731 732 733 734 735 736 737 738
#ifdef CC_INTERP
  static void increment_taken_count_no_overflow(DataLayout* layout) {
    increment_uint_at_no_overflow(layout, taken_off_set);
  }

  static DataLayout* advance_taken(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)int_at(layout, displacement_off_set));
  }

  static uint taken_count(DataLayout* layout) {
    return (uint) uint_at(layout, taken_off_set);
  }
#endif // CC_INTERP

D
duke 已提交
739
  // Specific initialization.
740
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
D
duke 已提交
741 742

#ifndef PRODUCT
743
  void print_data_on(outputStream* st, const char* extra = NULL) const;
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
#endif
};

// Entries in a ProfileData object to record types: it can either be
// none (no profile), unknown (conflicting profile data) or a klass if
// a single one is seen. Whether a null reference was seen is also
// recorded. No counter is associated with the type and a single type
// is tracked (unlike VirtualCallData).
class TypeEntries {

public:

  // A single cell is used to record information for a type:
  // - the cell is initialized to 0
  // - when a type is discovered it is stored in the cell
  // - bit zero of the cell is used to record whether a null reference
  // was encountered or not
  // - bit 1 is set to record a conflict in the type information

  enum {
    null_seen = 1,
    type_mask = ~null_seen,
    type_unknown = 2,
    status_bits = null_seen | type_unknown,
    type_klass_mask = ~status_bits
  };

  // what to initialize a cell to
  static intptr_t type_none() {
    return 0;
  }

  // null seen = bit 0 set?
  static bool was_null_seen(intptr_t v) {
    return (v & null_seen) != 0;
  }

  // conflicting type information = bit 1 set?
  static bool is_type_unknown(intptr_t v) {
    return (v & type_unknown) != 0;
  }

  // not type information yet = all bits cleared, ignoring bit 0?
  static bool is_type_none(intptr_t v) {
    return (v & type_mask) == 0;
  }

  // recorded type: cell without bit 0 and 1
  static intptr_t klass_part(intptr_t v) {
    intptr_t r = v & type_klass_mask;
    return r;
  }

  // type recorded
  static Klass* valid_klass(intptr_t k) {
    if (!is_type_none(k) &&
        !is_type_unknown(k)) {
R
roland 已提交
801 802 803
      Klass* res = (Klass*)klass_part(k);
      assert(res != NULL, "invalid");
      return res;
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
    } else {
      return NULL;
    }
  }

  static intptr_t with_status(intptr_t k, intptr_t in) {
    return k | (in & status_bits);
  }

  static intptr_t with_status(Klass* k, intptr_t in) {
    return with_status((intptr_t)k, in);
  }

#ifndef PRODUCT
  static void print_klass(outputStream* st, intptr_t k);
#endif

  // GC support
  static bool is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p);

protected:
  // ProfileData object these entries are part of
  ProfileData* _pd;
  // offset within the ProfileData object where the entries start
  const int _base_off;

  TypeEntries(int base_off)
    : _base_off(base_off), _pd(NULL) {}

  void set_intptr_at(int index, intptr_t value) {
    _pd->set_intptr_at(index, value);
  }

  intptr_t intptr_at(int index) const {
    return _pd->intptr_at(index);
  }

public:
  void set_profile_data(ProfileData* pd) {
    _pd = pd;
  }
};

// Type entries used for arguments passed at a call and parameters on
// method entry. 2 cells per entry: one for the type encoded as in
// TypeEntries and one initialized with the stack slot where the
// profiled object is to be found so that the interpreter can locate
// it quickly.
class TypeStackSlotEntries : public TypeEntries {

private:
  enum {
    stack_slot_entry,
    type_entry,
    per_arg_cell_count
  };

  // offset of cell for stack slot for entry i within ProfileData object
862
  int stack_slot_offset(int i) const {
863 864 865 866
    return _base_off + stack_slot_local_offset(i);
  }

protected:
867
  const int _number_of_entries;
868 869

  // offset of cell for type for entry i within ProfileData object
870
  int type_offset(int i) const {
871 872 873 874 875
    return _base_off + type_local_offset(i);
  }

public:

876 877
  TypeStackSlotEntries(int base_off, int nb_entries)
    : TypeEntries(base_off), _number_of_entries(nb_entries) {}
878

879
  static int compute_cell_count(Symbol* signature, bool include_receiver, int max);
880

881
  void post_initialize(Symbol* signature, bool has_receiver, bool include_receiver);
882 883 884

  // offset of cell for stack slot for entry i within this block of cells for a TypeStackSlotEntries
  static int stack_slot_local_offset(int i) {
885
    return i * per_arg_cell_count + stack_slot_entry;
886 887 888 889
  }

  // offset of cell for type for entry i within this block of cells for a TypeStackSlotEntries
  static int type_local_offset(int i) {
890
    return i * per_arg_cell_count + type_entry;
891 892 893 894
  }

  // stack slot for entry i
  uint stack_slot(int i) const {
895 896
    assert(i >= 0 && i < _number_of_entries, "oob");
    return _pd->uint_at(stack_slot_offset(i));
897 898 899 900
  }

  // set stack slot for entry i
  void set_stack_slot(int i, uint num) {
901 902
    assert(i >= 0 && i < _number_of_entries, "oob");
    _pd->set_uint_at(stack_slot_offset(i), num);
903 904 905 906
  }

  // type for entry i
  intptr_t type(int i) const {
907 908
    assert(i >= 0 && i < _number_of_entries, "oob");
    return _pd->intptr_at(type_offset(i));
909 910 911 912
  }

  // set type for entry i
  void set_type(int i, intptr_t k) {
913 914
    assert(i >= 0 && i < _number_of_entries, "oob");
    _pd->set_intptr_at(type_offset(i), k);
915 916 917 918 919 920 921 922 923 924
  }

  static ByteSize per_arg_size() {
    return in_ByteSize(per_arg_cell_count * DataLayout::cell_size);
  }

  static int per_arg_count() {
    return per_arg_cell_count ;
  }

925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
  // GC support
  void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);

#ifndef PRODUCT
  void print_data_on(outputStream* st) const;
#endif
};

// Type entry used for return from a call. A single cell to record the
// type.
class ReturnTypeEntry : public TypeEntries {

private:
  enum {
    cell_count = 1
  };

public:
  ReturnTypeEntry(int base_off)
    : TypeEntries(base_off) {}

  void post_initialize() {
    set_type(type_none());
  }

  intptr_t type() const {
    return _pd->intptr_at(_base_off);
  }
953

954 955 956
  void set_type(intptr_t k) {
    _pd->set_intptr_at(_base_off, k);
  }
957

958 959 960
  static int static_cell_count() {
    return cell_count;
  }
961

962 963 964 965 966 967 968
  static ByteSize size() {
    return in_ByteSize(cell_count * DataLayout::cell_size);
  }

  ByteSize type_offset() {
    return DataLayout::cell_offset(_base_off);
  }
969 970 971 972 973 974 975 976 977

  // GC support
  void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);

#ifndef PRODUCT
  void print_data_on(outputStream* st) const;
#endif
};

978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
// Entries to collect type information at a call: contains arguments
// (TypeStackSlotEntries), a return type (ReturnTypeEntry) and a
// number of cells. Because the number of cells for the return type is
// smaller than the number of cells for the type of an arguments, the
// number of cells is used to tell how many arguments are profiled and
// whether a return value is profiled. See has_arguments() and
// has_return().
class TypeEntriesAtCall {
private:
  static int stack_slot_local_offset(int i) {
    return header_cell_count() + TypeStackSlotEntries::stack_slot_local_offset(i);
  }

  static int argument_type_local_offset(int i) {
    return header_cell_count() + TypeStackSlotEntries::type_local_offset(i);;
  }

public:

  static int header_cell_count() {
    return 1;
  }

  static int cell_count_local_offset() {
    return 0;
  }

  static int compute_cell_count(BytecodeStream* stream);

  static void initialize(DataLayout* dl, int base, int cell_count) {
    int off = base + cell_count_local_offset();
    dl->set_cell_at(off, cell_count - base - header_cell_count());
  }

  static bool arguments_profiling_enabled();
  static bool return_profiling_enabled();

  // Code generation support
  static ByteSize cell_count_offset() {
    return in_ByteSize(cell_count_local_offset() * DataLayout::cell_size);
  }

  static ByteSize args_data_offset() {
    return in_ByteSize(header_cell_count() * DataLayout::cell_size);
  }

  static ByteSize stack_slot_offset(int i) {
    return in_ByteSize(stack_slot_local_offset(i) * DataLayout::cell_size);
  }

  static ByteSize argument_type_offset(int i) {
    return in_ByteSize(argument_type_local_offset(i) * DataLayout::cell_size);
  }
1031 1032 1033 1034 1035

  static ByteSize return_only_size() {
    return ReturnTypeEntry::size() + in_ByteSize(header_cell_count() * DataLayout::cell_size);
  }

1036 1037
};

1038 1039 1040
// CallTypeData
//
// A CallTypeData is used to access profiling information about a non
1041 1042
// virtual call for which we collect type information about arguments
// and return value.
1043 1044
class CallTypeData : public CounterData {
private:
1045
  // entries for arguments if any
1046
  TypeStackSlotEntries _args;
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
  // entry for return type if any
  ReturnTypeEntry _ret;

  int cell_count_global_offset() const {
    return CounterData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
  }

  // number of cells not counting the header
  int cell_count_no_header() const {
    return uint_at(cell_count_global_offset());
  }

  void check_number_of_arguments(int total) {
    assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
  }

1063 1064
public:
  CallTypeData(DataLayout* layout) :
1065 1066 1067 1068
    CounterData(layout),
    _args(CounterData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
    _ret(cell_count() - ReturnTypeEntry::static_cell_count())
  {
1069 1070 1071
    assert(layout->tag() == DataLayout::call_type_data_tag, "wrong type");
    // Some compilers (VC++) don't want this passed in member initialization list
    _args.set_profile_data(this);
1072
    _ret.set_profile_data(this);
1073 1074
  }

1075 1076 1077 1078 1079 1080 1081 1082 1083
  const TypeStackSlotEntries* args() const {
    assert(has_arguments(), "no profiling of arguments");
    return &_args;
  }

  const ReturnTypeEntry* ret() const {
    assert(has_return(), "no profiling of return value");
    return &_ret;
  }
1084 1085 1086 1087 1088 1089 1090 1091

  virtual bool is_CallTypeData() const { return true; }

  static int static_cell_count() {
    return -1;
  }

  static int compute_cell_count(BytecodeStream* stream) {
1092
    return CounterData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
1093 1094 1095
  }

  static void initialize(DataLayout* dl, int cell_count) {
1096
    TypeEntriesAtCall::initialize(dl, CounterData::static_cell_count(), cell_count);
1097 1098
  }

1099
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
1100 1101

  virtual int cell_count() const {
1102 1103 1104
    return CounterData::static_cell_count() +
      TypeEntriesAtCall::header_cell_count() +
      int_at_unchecked(cell_count_global_offset());
1105 1106
  }

1107 1108
  int number_of_arguments() const {
    return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
1109 1110 1111
  }

  void set_argument_type(int i, Klass* k) {
1112
    assert(has_arguments(), "no arguments!");
1113 1114 1115 1116
    intptr_t current = _args.type(i);
    _args.set_type(i, TypeEntries::with_status(k, current));
  }

1117 1118 1119 1120 1121 1122
  void set_return_type(Klass* k) {
    assert(has_return(), "no return!");
    intptr_t current = _ret.type();
    _ret.set_type(TypeEntries::with_status(k, current));
  }

1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
  // An entry for a return value takes less space than an entry for an
  // argument so if the number of cells exceeds the number of cells
  // needed for an argument, this object contains type information for
  // at least one argument.
  bool has_arguments() const {
    bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
    assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
    return res;
  }

1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
  // An entry for a return value takes less space than an entry for an
  // argument, so if the remainder of the number of cells divided by
  // the number of cells for an argument is not null, a return value
  // is profiled in this object.
  bool has_return() const {
    bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
    assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
    return res;
  }

1143 1144
  // Code generation support
  static ByteSize args_data_offset() {
1145
    return cell_offset(CounterData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
1146 1147 1148 1149
  }

  // GC support
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
1150 1151 1152 1153 1154 1155
    if (has_arguments()) {
      _args.clean_weak_klass_links(is_alive_closure);
    }
    if (has_return()) {
      _ret.clean_weak_klass_links(is_alive_closure);
    }
1156 1157 1158
  }

#ifndef PRODUCT
1159
  virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1160 1161 1162 1163 1164 1165 1166
#endif
};

// ReceiverTypeData
//
// A ReceiverTypeData is used to access profiling information about a
// dynamic type check.  It consists of a counter which counts the total times
1167
// that the check is reached, and a series of (Klass*, count) pairs
D
duke 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
// which are used to store a type profile for the receiver of the check.
class ReceiverTypeData : public CounterData {
protected:
  enum {
    receiver0_offset = counter_cell_count,
    count0_offset,
    receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
  };

public:
  ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
    assert(layout->tag() == DataLayout::receiver_type_data_tag ||
1180 1181
           layout->tag() == DataLayout::virtual_call_data_tag ||
           layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
D
duke 已提交
1182 1183
  }

1184
  virtual bool is_ReceiverTypeData() const { return true; }
D
duke 已提交
1185 1186 1187 1188 1189

  static int static_cell_count() {
    return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
  }

1190
  virtual int cell_count() const {
D
duke 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
    return static_cell_count();
  }

  // Direct accessors
  static uint row_limit() {
    return TypeProfileWidth;
  }
  static int receiver_cell_index(uint row) {
    return receiver0_offset + row * receiver_type_row_cell_count;
  }
  static int receiver_count_cell_index(uint row) {
    return count0_offset + row * receiver_type_row_cell_count;
  }

1205
  Klass* receiver(uint row) const {
D
duke 已提交
1206 1207
    assert(row < row_limit(), "oob");

1208 1209
    Klass* recv = (Klass*)intptr_at(receiver_cell_index(row));
    assert(recv == NULL || recv->is_klass(), "wrong type");
D
duke 已提交
1210 1211 1212
    return recv;
  }

1213
  void set_receiver(uint row, Klass* k) {
Y
ysr 已提交
1214
    assert((uint)row < row_limit(), "oob");
1215
    set_intptr_at(receiver_cell_index(row), (uintptr_t)k);
Y
ysr 已提交
1216 1217
  }

1218
  uint receiver_count(uint row) const {
D
duke 已提交
1219 1220 1221 1222
    assert(row < row_limit(), "oob");
    return uint_at(receiver_count_cell_index(row));
  }

Y
ysr 已提交
1223 1224 1225 1226 1227 1228 1229
  void set_receiver_count(uint row, uint count) {
    assert(row < row_limit(), "oob");
    set_uint_at(receiver_count_cell_index(row), count);
  }

  void clear_row(uint row) {
    assert(row < row_limit(), "oob");
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
    // Clear total count - indicator of polymorphic call site.
    // The site may look like as monomorphic after that but
    // it allow to have more accurate profiling information because
    // there was execution phase change since klasses were unloaded.
    // If the site is still polymorphic then MDO will be updated
    // to reflect it. But it could be the case that the site becomes
    // only bimorphic. Then keeping total count not 0 will be wrong.
    // Even if we use monomorphic (when it is not) for compilation
    // we will only have trap, deoptimization and recompile again
    // with updated MDO after executing method in Interpreter.
    // An additional receiver will be recorded in the cleaned row
    // during next call execution.
    //
    // Note: our profiling logic works with empty rows in any slot.
    // We do sorting a profiling info (ciCallProfile) for compilation.
    //
    set_count(0);
Y
ysr 已提交
1247 1248 1249 1250
    set_receiver(row, NULL);
    set_receiver_count(row, 0);
  }

D
duke 已提交
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
  // Code generation support
  static ByteSize receiver_offset(uint row) {
    return cell_offset(receiver_cell_index(row));
  }
  static ByteSize receiver_count_offset(uint row) {
    return cell_offset(receiver_count_cell_index(row));
  }
  static ByteSize receiver_type_data_size() {
    return cell_offset(static_cell_count());
  }

  // GC support
1263
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
D
duke 已提交
1264

1265 1266 1267 1268 1269 1270
#ifdef CC_INTERP
  static int receiver_type_data_size_in_bytes() {
    return cell_offset_in_bytes(static_cell_count());
  }

  static Klass *receiver_unchecked(DataLayout* layout, uint row) {
1271 1272
    Klass* recv = (Klass*)layout->cell_at(receiver_cell_index(row));
    return recv;
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
  }

  static void increment_receiver_count_no_overflow(DataLayout* layout, Klass *rcvr) {
    const int num_rows = row_limit();
    // Receiver already exists?
    for (int row = 0; row < num_rows; row++) {
      if (receiver_unchecked(layout, row) == rcvr) {
        increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
        return;
      }
    }
    // New receiver, find a free slot.
    for (int row = 0; row < num_rows; row++) {
      if (receiver_unchecked(layout, row) == NULL) {
        set_intptr_at(layout, receiver_cell_index(row), (intptr_t)rcvr);
        increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
        return;
      }
    }
    // Receiver did not match any saved receiver and there is no empty row for it.
    // Increment total counter to indicate polymorphic case.
    increment_count_no_overflow(layout);
  }

  static DataLayout* advance(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)ReceiverTypeData::receiver_type_data_size_in_bytes());
  }
#endif // CC_INTERP

D
duke 已提交
1302
#ifndef PRODUCT
1303
  void print_receiver_data_on(outputStream* st) const;
1304
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
#endif
};

// VirtualCallData
//
// A VirtualCallData is used to access profiling information about a
// virtual call.  For now, it has nothing more than a ReceiverTypeData.
class VirtualCallData : public ReceiverTypeData {
public:
  VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
1315 1316
    assert(layout->tag() == DataLayout::virtual_call_data_tag ||
           layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
D
duke 已提交
1317 1318
  }

1319
  virtual bool is_VirtualCallData() const { return true; }
D
duke 已提交
1320 1321 1322 1323 1324 1325 1326

  static int static_cell_count() {
    // At this point we could add more profile state, e.g., for arguments.
    // But for now it's the same size as the base record type.
    return ReceiverTypeData::static_cell_count();
  }

1327
  virtual int cell_count() const {
D
duke 已提交
1328 1329 1330 1331 1332 1333 1334 1335
    return static_cell_count();
  }

  // Direct accessors
  static ByteSize virtual_call_data_size() {
    return cell_offset(static_cell_count());
  }

1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
#ifdef CC_INTERP
  static int virtual_call_data_size_in_bytes() {
    return cell_offset_in_bytes(static_cell_count());
  }

  static DataLayout* advance(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)VirtualCallData::virtual_call_data_size_in_bytes());
  }
#endif // CC_INTERP

D
duke 已提交
1346
#ifndef PRODUCT
1347
  void print_data_on(outputStream* st, const char* extra = NULL) const;
1348 1349 1350 1351 1352 1353 1354
#endif
};

// VirtualCallTypeData
//
// A VirtualCallTypeData is used to access profiling information about
// a virtual call for which we collect type information about
1355
// arguments and return value.
1356 1357
class VirtualCallTypeData : public VirtualCallData {
private:
1358
  // entries for arguments if any
1359
  TypeStackSlotEntries _args;
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
  // entry for return type if any
  ReturnTypeEntry _ret;

  int cell_count_global_offset() const {
    return VirtualCallData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
  }

  // number of cells not counting the header
  int cell_count_no_header() const {
    return uint_at(cell_count_global_offset());
  }

  void check_number_of_arguments(int total) {
    assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
  }

1376 1377
public:
  VirtualCallTypeData(DataLayout* layout) :
1378 1379 1380 1381
    VirtualCallData(layout),
    _args(VirtualCallData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
    _ret(cell_count() - ReturnTypeEntry::static_cell_count())
  {
1382 1383 1384
    assert(layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
    // Some compilers (VC++) don't want this passed in member initialization list
    _args.set_profile_data(this);
1385 1386 1387 1388 1389 1390
    _ret.set_profile_data(this);
  }

  const TypeStackSlotEntries* args() const {
    assert(has_arguments(), "no profiling of arguments");
    return &_args;
1391 1392
  }

1393 1394 1395 1396
  const ReturnTypeEntry* ret() const {
    assert(has_return(), "no profiling of return value");
    return &_ret;
  }
1397 1398 1399 1400 1401 1402 1403 1404

  virtual bool is_VirtualCallTypeData() const { return true; }

  static int static_cell_count() {
    return -1;
  }

  static int compute_cell_count(BytecodeStream* stream) {
1405
    return VirtualCallData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
1406 1407 1408
  }

  static void initialize(DataLayout* dl, int cell_count) {
1409
    TypeEntriesAtCall::initialize(dl, VirtualCallData::static_cell_count(), cell_count);
1410 1411
  }

1412
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
1413 1414

  virtual int cell_count() const {
1415 1416 1417
    return VirtualCallData::static_cell_count() +
      TypeEntriesAtCall::header_cell_count() +
      int_at_unchecked(cell_count_global_offset());
1418 1419
  }

1420 1421
  int number_of_arguments() const {
    return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
1422 1423 1424
  }

  void set_argument_type(int i, Klass* k) {
1425
    assert(has_arguments(), "no arguments!");
1426 1427 1428 1429
    intptr_t current = _args.type(i);
    _args.set_type(i, TypeEntries::with_status(k, current));
  }

1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
  void set_return_type(Klass* k) {
    assert(has_return(), "no return!");
    intptr_t current = _ret.type();
    _ret.set_type(TypeEntries::with_status(k, current));
  }

  // An entry for a return value takes less space than an entry for an
  // argument, so if the remainder of the number of cells divided by
  // the number of cells for an argument is not null, a return value
  // is profiled in this object.
  bool has_return() const {
    bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
    assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
    return res;
  }

1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
  // An entry for a return value takes less space than an entry for an
  // argument so if the number of cells exceeds the number of cells
  // needed for an argument, this object contains type information for
  // at least one argument.
  bool has_arguments() const {
    bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
    assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
    return res;
  }

1456 1457
  // Code generation support
  static ByteSize args_data_offset() {
1458
    return cell_offset(VirtualCallData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
1459 1460 1461 1462 1463
  }

  // GC support
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
    ReceiverTypeData::clean_weak_klass_links(is_alive_closure);
1464 1465 1466 1467 1468 1469
    if (has_arguments()) {
      _args.clean_weak_klass_links(is_alive_closure);
    }
    if (has_return()) {
      _ret.clean_weak_klass_links(is_alive_closure);
    }
1470 1471 1472
  }

#ifndef PRODUCT
1473
  virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
#endif
};

// RetData
//
// A RetData is used to access profiling information for a ret bytecode.
// It is composed of a count of the number of times that the ret has
// been executed, followed by a series of triples of the form
// (bci, count, di) which count the number of times that some bci was the
// target of the ret and cache a corresponding data displacement.
class RetData : public CounterData {
protected:
  enum {
    bci0_offset = counter_cell_count,
    count0_offset,
    displacement0_offset,
    ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
  };

  void set_bci(uint row, int bci) {
    assert((uint)row < row_limit(), "oob");
    set_int_at(bci0_offset + row * ret_row_cell_count, bci);
  }
  void release_set_bci(uint row, int bci) {
    assert((uint)row < row_limit(), "oob");
    // 'release' when setting the bci acts as a valid flag for other
    // threads wrt bci_count and bci_displacement.
    release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
  }
  void set_bci_count(uint row, uint count) {
    assert((uint)row < row_limit(), "oob");
    set_uint_at(count0_offset + row * ret_row_cell_count, count);
  }
  void set_bci_displacement(uint row, int disp) {
    set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
  }

public:
  RetData(DataLayout* layout) : CounterData(layout) {
    assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
  }

1516
  virtual bool is_RetData() const { return true; }
D
duke 已提交
1517 1518 1519 1520 1521 1522 1523 1524 1525

  enum {
    no_bci = -1 // value of bci when bci1/2 are not in use.
  };

  static int static_cell_count() {
    return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
  }

1526
  virtual int cell_count() const {
D
duke 已提交
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
    return static_cell_count();
  }

  static uint row_limit() {
    return BciProfileWidth;
  }
  static int bci_cell_index(uint row) {
    return bci0_offset + row * ret_row_cell_count;
  }
  static int bci_count_cell_index(uint row) {
    return count0_offset + row * ret_row_cell_count;
  }
  static int bci_displacement_cell_index(uint row) {
    return displacement0_offset + row * ret_row_cell_count;
  }

  // Direct accessors
1544
  int bci(uint row) const {
D
duke 已提交
1545 1546
    return int_at(bci_cell_index(row));
  }
1547
  uint bci_count(uint row) const {
D
duke 已提交
1548 1549
    return uint_at(bci_count_cell_index(row));
  }
1550
  int bci_displacement(uint row) const {
D
duke 已提交
1551 1552 1553 1554
    return int_at(bci_displacement_cell_index(row));
  }

  // Interpreter Runtime support
1555
  address fixup_ret(int return_bci, MethodData* mdo);
D
duke 已提交
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567

  // Code generation support
  static ByteSize bci_offset(uint row) {
    return cell_offset(bci_cell_index(row));
  }
  static ByteSize bci_count_offset(uint row) {
    return cell_offset(bci_count_cell_index(row));
  }
  static ByteSize bci_displacement_offset(uint row) {
    return cell_offset(bci_displacement_cell_index(row));
  }

1568 1569 1570 1571
#ifdef CC_INTERP
  static DataLayout* advance(MethodData *md, int bci);
#endif // CC_INTERP

D
duke 已提交
1572
  // Specific initialization.
1573
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
D
duke 已提交
1574 1575

#ifndef PRODUCT
1576
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
#endif
};

// BranchData
//
// A BranchData is used to access profiling data for a two-way branch.
// It consists of taken and not_taken counts as well as a data displacement
// for the taken case.
class BranchData : public JumpData {
protected:
  enum {
    not_taken_off_set = jump_cell_count,
    branch_cell_count
  };

  void set_displacement(int displacement) {
    set_int_at(displacement_off_set, displacement);
  }

public:
  BranchData(DataLayout* layout) : JumpData(layout) {
    assert(layout->tag() == DataLayout::branch_data_tag, "wrong type");
  }

1601
  virtual bool is_BranchData() const { return true; }
D
duke 已提交
1602 1603 1604 1605 1606

  static int static_cell_count() {
    return branch_cell_count;
  }

1607
  virtual int cell_count() const {
D
duke 已提交
1608 1609 1610 1611
    return static_cell_count();
  }

  // Direct accessor
1612
  uint not_taken() const {
D
duke 已提交
1613 1614 1615
    return uint_at(not_taken_off_set);
  }

1616 1617 1618 1619
  void set_not_taken(uint cnt) {
    set_uint_at(not_taken_off_set, cnt);
  }

D
duke 已提交
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
  uint inc_not_taken() {
    uint cnt = not_taken() + 1;
    // Did we wrap? Will compiler screw us??
    if (cnt == 0) cnt--;
    set_uint_at(not_taken_off_set, cnt);
    return cnt;
  }

  // Code generation support
  static ByteSize not_taken_offset() {
    return cell_offset(not_taken_off_set);
  }
  static ByteSize branch_data_size() {
    return cell_offset(branch_cell_count);
  }

1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
#ifdef CC_INTERP
  static int branch_data_size_in_bytes() {
    return cell_offset_in_bytes(branch_cell_count);
  }

  static void increment_not_taken_count_no_overflow(DataLayout* layout) {
    increment_uint_at_no_overflow(layout, not_taken_off_set);
  }

  static DataLayout* advance_not_taken(DataLayout* layout) {
    return (DataLayout*) (((address)layout) + (ssize_t)BranchData::branch_data_size_in_bytes());
  }
#endif // CC_INTERP

D
duke 已提交
1650
  // Specific initialization.
1651
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
D
duke 已提交
1652 1653

#ifndef PRODUCT
1654
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
#endif
};

// ArrayData
//
// A ArrayData is a base class for accessing profiling data which does
// not have a statically known size.  It consists of an array length
// and an array start.
class ArrayData : public ProfileData {
protected:
  friend class DataLayout;

  enum {
    array_len_off_set,
    array_start_off_set
  };

1672
  uint array_uint_at(int index) const {
D
duke 已提交
1673 1674 1675
    int aindex = index + array_start_off_set;
    return uint_at(aindex);
  }
1676
  int array_int_at(int index) const {
D
duke 已提交
1677 1678 1679
    int aindex = index + array_start_off_set;
    return int_at(aindex);
  }
1680
  oop array_oop_at(int index) const {
D
duke 已提交
1681 1682 1683 1684 1685 1686 1687 1688
    int aindex = index + array_start_off_set;
    return oop_at(aindex);
  }
  void array_set_int_at(int index, int value) {
    int aindex = index + array_start_off_set;
    set_int_at(aindex, value);
  }

1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
#ifdef CC_INTERP
  // Static low level accessors for DataLayout with ArrayData's semantics.

  static void increment_array_uint_at_no_overflow(DataLayout* layout, int index) {
    int aindex = index + array_start_off_set;
    increment_uint_at_no_overflow(layout, aindex);
  }

  static int array_int_at(DataLayout* layout, int index) {
    int aindex = index + array_start_off_set;
    return int_at(layout, aindex);
  }
#endif // CC_INTERP

D
duke 已提交
1703 1704 1705 1706 1707 1708 1709 1710
  // Code generation support for subclasses.
  static ByteSize array_element_offset(int index) {
    return cell_offset(array_start_off_set + index);
  }

public:
  ArrayData(DataLayout* layout) : ProfileData(layout) {}

1711
  virtual bool is_ArrayData() const { return true; }
D
duke 已提交
1712 1713 1714 1715 1716

  static int static_cell_count() {
    return -1;
  }

1717
  int array_len() const {
D
duke 已提交
1718 1719 1720
    return int_at_unchecked(array_len_off_set);
  }

1721
  virtual int cell_count() const {
D
duke 已提交
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
    return array_len() + 1;
  }

  // Code generation support
  static ByteSize array_len_offset() {
    return cell_offset(array_len_off_set);
  }
  static ByteSize array_start_offset() {
    return cell_offset(array_start_off_set);
  }
};

// MultiBranchData
//
// A MultiBranchData is used to access profiling information for
// a multi-way branch (*switch bytecodes).  It consists of a series
// of (count, displacement) pairs, which count the number of times each
// case was taken and specify the data displacment for each branch target.
class MultiBranchData : public ArrayData {
protected:
  enum {
    default_count_off_set,
    default_disaplacement_off_set,
    case_array_start
  };
  enum {
    relative_count_off_set,
    relative_displacement_off_set,
    per_case_cell_count
  };

  void set_default_displacement(int displacement) {
    array_set_int_at(default_disaplacement_off_set, displacement);
  }
  void set_displacement_at(int index, int displacement) {
    array_set_int_at(case_array_start +
                     index * per_case_cell_count +
                     relative_displacement_off_set,
                     displacement);
  }

public:
  MultiBranchData(DataLayout* layout) : ArrayData(layout) {
    assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
  }

1768
  virtual bool is_MultiBranchData() const { return true; }
D
duke 已提交
1769 1770 1771

  static int compute_cell_count(BytecodeStream* stream);

1772
  int number_of_cases() const {
D
duke 已提交
1773 1774 1775 1776 1777
    int alen = array_len() - 2; // get rid of default case here.
    assert(alen % per_case_cell_count == 0, "must be even");
    return (alen / per_case_cell_count);
  }

1778
  uint default_count() const {
D
duke 已提交
1779 1780
    return array_uint_at(default_count_off_set);
  }
1781
  int default_displacement() const {
D
duke 已提交
1782 1783 1784
    return array_int_at(default_disaplacement_off_set);
  }

1785
  uint count_at(int index) const {
D
duke 已提交
1786 1787 1788 1789
    return array_uint_at(case_array_start +
                         index * per_case_cell_count +
                         relative_count_off_set);
  }
1790
  int displacement_at(int index) const {
D
duke 已提交
1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
    return array_int_at(case_array_start +
                        index * per_case_cell_count +
                        relative_displacement_off_set);
  }

  // Code generation support
  static ByteSize default_count_offset() {
    return array_element_offset(default_count_off_set);
  }
  static ByteSize default_displacement_offset() {
    return array_element_offset(default_disaplacement_off_set);
  }
  static ByteSize case_count_offset(int index) {
    return case_array_offset() +
           (per_case_size() * index) +
           relative_count_offset();
  }
  static ByteSize case_array_offset() {
    return array_element_offset(case_array_start);
  }
  static ByteSize per_case_size() {
    return in_ByteSize(per_case_cell_count) * cell_size;
  }
  static ByteSize relative_count_offset() {
    return in_ByteSize(relative_count_off_set) * cell_size;
  }
  static ByteSize relative_displacement_offset() {
    return in_ByteSize(relative_displacement_off_set) * cell_size;
  }

1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
#ifdef CC_INTERP
  static void increment_count_no_overflow(DataLayout* layout, int index) {
    if (index == -1) {
      increment_array_uint_at_no_overflow(layout, default_count_off_set);
    } else {
      increment_array_uint_at_no_overflow(layout, case_array_start +
                                                  index * per_case_cell_count +
                                                  relative_count_off_set);
    }
  }

  static DataLayout* advance(DataLayout* layout, int index) {
    if (index == -1) {
      return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, default_disaplacement_off_set));
    } else {
      return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, case_array_start +
                                                                              index * per_case_cell_count +
                                                                              relative_displacement_off_set));
    }
  }
#endif // CC_INTERP

D
duke 已提交
1843
  // Specific initialization.
1844
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
D
duke 已提交
1845 1846

#ifndef PRODUCT
1847
  void print_data_on(outputStream* st, const char* extra = NULL) const;
D
duke 已提交
1848 1849 1850
#endif
};

1851 1852 1853 1854 1855 1856 1857
class ArgInfoData : public ArrayData {

public:
  ArgInfoData(DataLayout* layout) : ArrayData(layout) {
    assert(layout->tag() == DataLayout::arg_info_data_tag, "wrong type");
  }

1858
  virtual bool is_ArgInfoData() const { return true; }
1859 1860


1861
  int number_of_args() const {
1862 1863 1864
    return array_len();
  }

1865
  uint arg_modified(int arg) const {
1866 1867 1868 1869 1870 1871 1872 1873
    return array_uint_at(arg);
  }

  void set_arg_modified(int arg, uint val) {
    array_set_int_at(arg, val);
  }

#ifndef PRODUCT
1874
  void print_data_on(outputStream* st, const char* extra = NULL) const;
1875 1876 1877
#endif
};

1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
// ParametersTypeData
//
// A ParametersTypeData is used to access profiling information about
// types of parameters to a method
class ParametersTypeData : public ArrayData {

private:
  TypeStackSlotEntries _parameters;

  static int stack_slot_local_offset(int i) {
    assert_profiling_enabled();
    return array_start_off_set + TypeStackSlotEntries::stack_slot_local_offset(i);
  }

  static int type_local_offset(int i) {
    assert_profiling_enabled();
    return array_start_off_set + TypeStackSlotEntries::type_local_offset(i);
  }

  static bool profiling_enabled();
  static void assert_profiling_enabled() {
    assert(profiling_enabled(), "method parameters profiling should be on");
  }

public:
  ParametersTypeData(DataLayout* layout) : ArrayData(layout), _parameters(1, number_of_parameters()) {
    assert(layout->tag() == DataLayout::parameters_type_data_tag, "wrong type");
    // Some compilers (VC++) don't want this passed in member initialization list
    _parameters.set_profile_data(this);
  }

  static int compute_cell_count(Method* m);

  virtual bool is_ParametersTypeData() const { return true; }

  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);

  int number_of_parameters() const {
    return array_len() / TypeStackSlotEntries::per_arg_count();
  }

  const TypeStackSlotEntries* parameters() const { return &_parameters; }

  uint stack_slot(int i) const {
    return _parameters.stack_slot(i);
  }

  void set_type(int i, Klass* k) {
    intptr_t current = _parameters.type(i);
    _parameters.set_type(i, TypeEntries::with_status((intptr_t)k, current));
  }

  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
    _parameters.clean_weak_klass_links(is_alive_closure);
  }

#ifndef PRODUCT
1935
  virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
1936
#endif
1937 1938 1939 1940 1941 1942 1943 1944

  static ByteSize stack_slot_offset(int i) {
    return cell_offset(stack_slot_local_offset(i));
  }

  static ByteSize type_offset(int i) {
    return cell_offset(type_local_offset(i));
  }
1945 1946
};

1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
// SpeculativeTrapData
//
// A SpeculativeTrapData is used to record traps due to type
// speculation. It records the root of the compilation: that type
// speculation is wrong in the context of one compilation (for
// method1) doesn't mean it's wrong in the context of another one (for
// method2). Type speculation could have more/different data in the
// context of the compilation of method2 and it's worthwhile to try an
// optimization that failed for compilation of method1 in the context
// of compilation of method2.
// Space for SpeculativeTrapData entries is allocated from the extra
// data space in the MDO. If we run out of space, the trap data for
// the ProfileData at that bci is updated.
class SpeculativeTrapData : public ProfileData {
protected:
  enum {
    method_offset,
    speculative_trap_cell_count
  };
public:
  SpeculativeTrapData(DataLayout* layout) : ProfileData(layout) {
    assert(layout->tag() == DataLayout::speculative_trap_data_tag, "wrong type");
  }

  virtual bool is_SpeculativeTrapData() const { return true; }

  static int static_cell_count() {
    return speculative_trap_cell_count;
  }

  virtual int cell_count() const {
    return static_cell_count();
  }

  // Direct accessor
  Method* method() const {
    return (Method*)intptr_at(method_offset);
  }

  void set_method(Method* m) {
    set_intptr_at(method_offset, (intptr_t)m);
  }

#ifndef PRODUCT
  virtual void print_data_on(outputStream* st, const char* extra = NULL) const;
#endif
};

1995
// MethodData*
D
duke 已提交
1996
//
1997
// A MethodData* holds information which has been collected about
D
duke 已提交
1998 1999 2000 2001 2002 2003 2004
// a method.  Its layout looks like this:
//
// -----------------------------
// | header                    |
// | klass                     |
// -----------------------------
// | method                    |
2005
// | size of the MethodData* |
D
duke 已提交
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
// -----------------------------
// | Data entries...           |
// |   (variable size)         |
// |                           |
// .                           .
// .                           .
// .                           .
// |                           |
// -----------------------------
//
// The data entry area is a heterogeneous array of DataLayouts. Each
// DataLayout in the array corresponds to a specific bytecode in the
// method.  The entries in the array are sorted by the corresponding
// bytecode.  Access to the data is via resource-allocated ProfileData,
// which point to the underlying blocks of DataLayout structures.
//
// During interpretation, if profiling in enabled, the interpreter
// maintains a method data pointer (mdp), which points at the entry
// in the array corresponding to the current bci.  In the course of
// intepretation, when a bytecode is encountered that has profile data
// associated with it, the entry pointed to by mdp is updated, then the
// mdp is adjusted to point to the next appropriate DataLayout.  If mdp
// is NULL to begin with, the interpreter assumes that the current method
// is not (yet) being profiled.
//
2031
// In MethodData* parlance, "dp" is a "data pointer", the actual address
D
duke 已提交
2032 2033 2034 2035 2036 2037
// of a DataLayout element.  A "di" is a "data index", the offset in bytes
// from the base of the data entry array.  A "displacement" is the byte offset
// in certain ProfileData objects that indicate the amount the mdp must be
// adjusted in the event of a change in control flow.
//

2038
CC_INTERP_ONLY(class BytecodeInterpreter;)
2039
class CleanExtraDataClosure;
2040

2041
class MethodData : public Metadata {
D
duke 已提交
2042
  friend class VMStructs;
2043
  CC_INTERP_ONLY(friend class BytecodeInterpreter;)
D
duke 已提交
2044 2045 2046
private:
  friend class ProfileData;

2047 2048
  // Back pointer to the Method*
  Method* _method;
D
duke 已提交
2049 2050 2051 2052 2053 2054 2055

  // Size of this oop in bytes
  int _size;

  // Cached hint for bci_to_dp and bci_to_data
  int _hint_di;

2056 2057
  Mutex _extra_data_lock;

2058
  MethodData(methodHandle method, int size, TRAPS);
D
duke 已提交
2059
public:
2060
  static MethodData* allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS);
2061
  MethodData() : _extra_data_lock(Monitor::leaf, "MDO extra data lock") {}; // For ciMethodData
2062 2063 2064 2065

  bool is_methodData() const volatile { return true; }

  // Whole-method sticky bits and flags
D
duke 已提交
2066
  enum {
2067
    _trap_hist_limit    = 20,   // decoupled from Deoptimization::Reason_LIMIT
D
duke 已提交
2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
    _trap_hist_mask     = max_jubyte,
    _extra_data_count   = 4     // extra DataLayout headers, for trap history
  }; // Public flag values
private:
  uint _nof_decompiles;             // count of all nmethod removals
  uint _nof_overflow_recompiles;    // recompile count, excluding recomp. bits
  uint _nof_overflow_traps;         // trap count, excluding _trap_hist
  union {
    intptr_t _align;
    u1 _array[_trap_hist_limit];
  } _trap_hist;

  // Support for interprocedural escape analysis, from Thomas Kotzmann.
  intx              _eflags;          // flags on escape information
  intx              _arg_local;       // bit set of non-escaping arguments
  intx              _arg_stack;       // bit set of stack-allocatable arguments
  intx              _arg_returned;    // bit set of returned arguments

I
iveresov 已提交
2086 2087 2088 2089 2090 2091 2092 2093 2094
  int _creation_mileage;              // method mileage at MDO creation

  // How many invocations has this MDO seen?
  // These counters are used to determine the exact age of MDO.
  // We need those because in tiered a method can be concurrently
  // executed at different levels.
  InvocationCounter _invocation_counter;
  // Same for backedges.
  InvocationCounter _backedge_counter;
2095 2096 2097
  // Counter values at the time profiling started.
  int               _invocation_counter_start;
  int               _backedge_counter_start;
2098 2099 2100 2101 2102 2103

#if INCLUDE_RTM_OPT
  // State of RTM code generation during compilation of the method
  int               _rtm_state;
#endif

I
iveresov 已提交
2104 2105 2106 2107 2108
  // Number of loops and blocks is computed when compiling the first
  // time with C1. It is used to determine if method is trivial.
  short             _num_loops;
  short             _num_blocks;
  // Does this method contain anything worth profiling?
2109 2110
  enum WouldProfile {unknown, no_profile, profile};
  WouldProfile      _would_profile;
D
duke 已提交
2111 2112 2113 2114

  // Size of _data array in bytes.  (Excludes header and extra_data fields.)
  int _data_size;

2115 2116 2117 2118
  // data index for the area dedicated to parameters. -1 if no
  // parameter profiling.
  int _parameters_type_data_di;

D
duke 已提交
2119 2120 2121 2122 2123 2124
  // Beginning of the data entries
  intptr_t _data[1];

  // Helper for size computation
  static int compute_data_size(BytecodeStream* stream);
  static int bytecode_cell_count(Bytecodes::Code code);
2125
  static bool is_speculative_trap_bytecode(Bytecodes::Code code);
D
duke 已提交
2126 2127 2128
  enum { no_profile_data = -1, variable_cell_count = -2 };

  // Helper for initialization
2129
  DataLayout* data_layout_at(int data_index) const {
D
duke 已提交
2130 2131 2132 2133 2134 2135 2136 2137 2138
    assert(data_index % sizeof(intptr_t) == 0, "unaligned");
    return (DataLayout*) (((address)_data) + data_index);
  }

  // Initialize an individual data segment.  Returns the size of
  // the segment in bytes.
  int initialize_data(BytecodeStream* stream, int data_index);

  // Helper for data_at
2139
  DataLayout* limit_data_position() const {
D
duke 已提交
2140 2141
    return (DataLayout*)((address)data_base() + _data_size);
  }
2142
  bool out_of_bounds(int data_index) const {
D
duke 已提交
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
    return data_index >= data_size();
  }

  // Give each of the data entries a chance to perform specific
  // data initialization.
  void post_initialize(BytecodeStream* stream);

  // hint accessors
  int      hint_di() const  { return _hint_di; }
  void set_hint_di(int di)  {
    assert(!out_of_bounds(di), "hint_di out of bounds");
    _hint_di = di;
  }
  ProfileData* data_before(int bci) {
    // avoid SEGV on this edge case
    if (data_size() == 0)
      return NULL;
    int hint = hint_di();
    if (data_layout_at(hint)->bci() <= bci)
      return data_at(hint);
    return first_data();
  }

  // What is the index of the first data entry?
2167
  int first_di() const { return 0; }
D
duke 已提交
2168

2169
  ProfileData* bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp, bool concurrent);
D
duke 已提交
2170
  // Find or create an extra ProfileData:
2171
  ProfileData* bci_to_extra_data(int bci, Method* m, bool create_if_missing);
D
duke 已提交
2172

2173 2174 2175
  // return the argument info cell
  ArgInfoData *arg_info();

2176 2177 2178 2179 2180 2181 2182 2183 2184 2185
  enum {
    no_type_profile = 0,
    type_profile_jsr292 = 1,
    type_profile_all = 2
  };

  static bool profile_jsr292(methodHandle m, int bci);
  static int profile_arguments_flag();
  static bool profile_all_arguments();
  static bool profile_arguments_for_invoke(methodHandle m, int bci);
2186 2187 2188
  static int profile_return_flag();
  static bool profile_all_return();
  static bool profile_return_for_invoke(methodHandle m, int bci);
2189 2190 2191
  static int profile_parameters_flag();
  static bool profile_parameters_jsr292_only();
  static bool profile_all_parameters();
2192

2193
  void clean_extra_data(CleanExtraDataClosure* cl);
2194
  void clean_extra_data_helper(DataLayout* dp, int shift, bool reset = false);
2195
  void verify_extra_data_clean(CleanExtraDataClosure* cl);
2196

D
duke 已提交
2197 2198
public:
  static int header_size() {
2199
    return sizeof(MethodData)/wordSize;
D
duke 已提交
2200 2201
  }

2202
  // Compute the size of a MethodData* before it is created.
D
duke 已提交
2203 2204
  static int compute_allocation_size_in_bytes(methodHandle method);
  static int compute_allocation_size_in_words(methodHandle method);
2205
  static int compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps);
D
duke 已提交
2206 2207 2208 2209 2210 2211

  // Determine if a given bytecode can have profile information.
  static bool bytecode_has_profile(Bytecodes::Code code) {
    return bytecode_cell_count(code) != no_profile_data;
  }

2212 2213
  // reset into original state
  void init();
D
duke 已提交
2214 2215

  // My size
2216 2217
  int size_in_bytes() const { return _size; }
  int size() const    { return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord); }
2218 2219 2220
#if INCLUDE_SERVICES
  void collect_statistics(KlassSizeStats *sz) const;
#endif
D
duke 已提交
2221 2222 2223

  int      creation_mileage() const  { return _creation_mileage; }
  void set_creation_mileage(int x)   { _creation_mileage = x; }
I
iveresov 已提交
2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237

  int invocation_count() {
    if (invocation_counter()->carry()) {
      return InvocationCounter::count_limit;
    }
    return invocation_counter()->count();
  }
  int backedge_count() {
    if (backedge_counter()->carry()) {
      return InvocationCounter::count_limit;
    }
    return backedge_counter()->count();
  }

2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
  int invocation_count_start() {
    if (invocation_counter()->carry()) {
      return 0;
    }
    return _invocation_counter_start;
  }

  int backedge_count_start() {
    if (backedge_counter()->carry()) {
      return 0;
    }
    return _backedge_counter_start;
  }

  int invocation_count_delta() { return invocation_count() - invocation_count_start(); }
  int backedge_count_delta()   { return backedge_count()   - backedge_count_start();   }

  void reset_start_counters() {
    _invocation_counter_start = invocation_count();
    _backedge_counter_start = backedge_count();
  }

I
iveresov 已提交
2260 2261 2262
  InvocationCounter* invocation_counter()     { return &_invocation_counter; }
  InvocationCounter* backedge_counter()       { return &_backedge_counter;   }

2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
#if INCLUDE_RTM_OPT
  int rtm_state() const {
    return _rtm_state;
  }
  void set_rtm_state(RTMState rstate) {
    _rtm_state = (int)rstate;
  }
  void atomic_set_rtm_state(RTMState rstate) {
    Atomic::store((int)rstate, &_rtm_state);
  }

  static int rtm_state_offset_in_bytes() {
    return offset_of(MethodData, _rtm_state);
  }
#endif

2279 2280
  void set_would_profile(bool p)              { _would_profile = p ? profile : no_profile; }
  bool would_profile() const                  { return _would_profile != no_profile; }
I
iveresov 已提交
2281 2282 2283 2284 2285 2286

  int num_loops() const                       { return _num_loops;  }
  void set_num_loops(int n)                   { _num_loops = n;     }
  int num_blocks() const                      { return _num_blocks; }
  void set_num_blocks(int n)                  { _num_blocks = n;    }

D
duke 已提交
2287
  bool is_mature() const;  // consult mileage and ProfileMaturityPercentage
2288
  static int mileage_of(Method* m);
D
duke 已提交
2289 2290 2291 2292

  // Support for interprocedural escape analysis, from Thomas Kotzmann.
  enum EscapeFlag {
    estimated    = 1 << 0,
2293 2294 2295 2296
    return_local = 1 << 1,
    return_allocated = 1 << 2,
    allocated_escapes = 1 << 3,
    unknown_modified = 1 << 4
D
duke 已提交
2297 2298 2299 2300 2301 2302
  };

  intx eflags()                                  { return _eflags; }
  intx arg_local()                               { return _arg_local; }
  intx arg_stack()                               { return _arg_stack; }
  intx arg_returned()                            { return _arg_returned; }
2303
  uint arg_modified(int a)                       { ArgInfoData *aid = arg_info();
2304
                                                   assert(aid != NULL, "arg_info must be not null");
2305 2306
                                                   assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
                                                   return aid->arg_modified(a); }
D
duke 已提交
2307 2308 2309 2310 2311

  void set_eflags(intx v)                        { _eflags = v; }
  void set_arg_local(intx v)                     { _arg_local = v; }
  void set_arg_stack(intx v)                     { _arg_stack = v; }
  void set_arg_returned(intx v)                  { _arg_returned = v; }
2312
  void set_arg_modified(int a, uint v)           { ArgInfoData *aid = arg_info();
2313
                                                   assert(aid != NULL, "arg_info must be not null");
2314 2315
                                                   assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
                                                   aid->set_arg_modified(a, v); }
D
duke 已提交
2316 2317 2318 2319 2320 2321 2322

  void clear_escape_info()                       { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }

  // Location and size of data area
  address data_base() const {
    return (address) _data;
  }
2323
  int data_size() const {
D
duke 已提交
2324 2325 2326 2327
    return _data_size;
  }

  // Accessors
2328
  Method* method() const { return _method; }
D
duke 已提交
2329 2330

  // Get the data at an arbitrary (sort of) data index.
2331
  ProfileData* data_at(int data_index) const;
D
duke 已提交
2332 2333

  // Walk through the data in order.
2334 2335 2336
  ProfileData* first_data() const { return data_at(first_di()); }
  ProfileData* next_data(ProfileData* current) const;
  bool is_valid(ProfileData* current) const { return current != NULL; }
D
duke 已提交
2337 2338

  // Convert a dp (data pointer) to a di (data index).
2339
  int dp_to_di(address dp) const {
D
duke 已提交
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356
    return dp - ((address)_data);
  }

  address di_to_dp(int di) {
    return (address)data_layout_at(di);
  }

  // bci to di/dp conversion.
  address bci_to_dp(int bci);
  int bci_to_di(int bci) {
    return dp_to_di(bci_to_dp(bci));
  }

  // Get the data at an arbitrary bci, or NULL if there is none.
  ProfileData* bci_to_data(int bci);

  // Same, but try to create an extra_data record if one is needed:
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
  ProfileData* allocate_bci_to_data(int bci, Method* m) {
    ProfileData* data = NULL;
    // If m not NULL, try to allocate a SpeculativeTrapData entry
    if (m == NULL) {
      data = bci_to_data(bci);
    }
    if (data != NULL) {
      return data;
    }
    data = bci_to_extra_data(bci, m, true);
    if (data != NULL) {
      return data;
    }
    // If SpeculativeTrapData allocation fails try to allocate a
    // regular entry
    data = bci_to_data(bci);
    if (data != NULL) {
      return data;
    }
    return bci_to_extra_data(bci, NULL, true);
D
duke 已提交
2377 2378 2379
  }

  // Add a handful of extra data records, for trap tracking.
2380 2381 2382
  DataLayout* extra_data_base() const { return limit_data_position(); }
  DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); }
  int extra_data_size() const { return (address)extra_data_limit()
D
duke 已提交
2383
                               - (address)extra_data_base(); }
2384
  static DataLayout* next_extra(DataLayout* dp);
D
duke 已提交
2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424

  // Return (uint)-1 for overflow.
  uint trap_count(int reason) const {
    assert((uint)reason < _trap_hist_limit, "oob");
    return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
  }
  // For loops:
  static uint trap_reason_limit() { return _trap_hist_limit; }
  static uint trap_count_limit()  { return _trap_hist_mask; }
  uint inc_trap_count(int reason) {
    // Count another trap, anywhere in this method.
    assert(reason >= 0, "must be single trap");
    if ((uint)reason < _trap_hist_limit) {
      uint cnt1 = 1 + _trap_hist._array[reason];
      if ((cnt1 & _trap_hist_mask) != 0) {  // if no counter overflow...
        _trap_hist._array[reason] = cnt1;
        return cnt1;
      } else {
        return _trap_hist_mask + (++_nof_overflow_traps);
      }
    } else {
      // Could not represent the count in the histogram.
      return (++_nof_overflow_traps);
    }
  }

  uint overflow_trap_count() const {
    return _nof_overflow_traps;
  }
  uint overflow_recompile_count() const {
    return _nof_overflow_recompiles;
  }
  void inc_overflow_recompile_count() {
    _nof_overflow_recompiles += 1;
  }
  uint decompile_count() const {
    return _nof_decompiles;
  }
  void inc_decompile_count() {
    _nof_decompiles += 1;
2425
    if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
2426
      method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff");
2427
    }
D
duke 已提交
2428 2429
  }

2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
  // Return pointer to area dedicated to parameters in MDO
  ParametersTypeData* parameters_type_data() const {
    return _parameters_type_data_di != -1 ? data_layout_at(_parameters_type_data_di)->data_in()->as_ParametersTypeData() : NULL;
  }

  int parameters_type_data_di() const {
    assert(_parameters_type_data_di != -1, "no args type data");
    return _parameters_type_data_di;
  }

D
duke 已提交
2440 2441
  // Support for code generation
  static ByteSize data_offset() {
2442
    return byte_offset_of(MethodData, _data[0]);
D
duke 已提交
2443 2444
  }

I
iveresov 已提交
2445
  static ByteSize invocation_counter_offset() {
2446
    return byte_offset_of(MethodData, _invocation_counter);
I
iveresov 已提交
2447 2448
  }
  static ByteSize backedge_counter_offset() {
2449
    return byte_offset_of(MethodData, _backedge_counter);
I
iveresov 已提交
2450 2451
  }

2452 2453 2454 2455
  static ByteSize parameters_type_data_di_offset() {
    return byte_offset_of(MethodData, _parameters_type_data_di);
  }

2456 2457 2458
  // Deallocation support - no pointer fields to deallocate
  void deallocate_contents(ClassLoaderData* loader_data) {}

D
duke 已提交
2459
  // GC support
2460 2461 2462 2463 2464 2465 2466
  void set_size(int object_size_in_bytes) { _size = object_size_in_bytes; }

  // Printing
#ifndef PRODUCT
  void print_on      (outputStream* st) const;
#endif
  void print_value_on(outputStream* st) const;
D
duke 已提交
2467 2468 2469

#ifndef PRODUCT
  // printing support for method data
2470
  void print_data_on(outputStream* st) const;
D
duke 已提交
2471 2472
#endif

2473 2474
  const char* internal_name() const { return "{method data}"; }

D
duke 已提交
2475
  // verification
2476
  void verify_on(outputStream* st);
D
duke 已提交
2477
  void verify_data_on(outputStream* st);
2478

2479
  static bool profile_parameters_for_method(methodHandle m);
2480
  static bool profile_arguments();
2481
  static bool profile_arguments_jsr292_only();
2482
  static bool profile_return();
2483
  static bool profile_parameters();
2484
  static bool profile_return_jsr292_only();
2485 2486

  void clean_method_data(BoolObjectClosure* is_alive);
2487 2488

  void clean_weak_method_links();
D
duke 已提交
2489
};
2490 2491

#endif // SHARE_VM_OOPS_METHODDATAOOP_HPP