hotspot/src/share/vm/oops/methodData.hpp
author minqi
Fri, 10 May 2013 08:27:30 -0700
changeset 17370 59a0620561fa
parent 16689 efce070b8d42
child 20011 d74937287461
child 22836 e7e511228518
permissions -rw-r--r--
8003557: NPG: Klass* const k should be const Klass* k. Summary: With NPG, const KlassOop klass which is in fact a definition converted to Klass* const, which is not the original intention. The right usage is converting them to const Klass*. Reviewed-by: coleenp, kvn Contributed-by: yumin.qi@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
     2
 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4892
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4892
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4892
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#ifndef SHARE_VM_OOPS_METHODDATAOOP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#define SHARE_VM_OOPS_METHODDATAOOP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "interpreter/bytecodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "memory/universe.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
    30
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "runtime/orderAccess.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class BytecodeStream;
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    35
class KlassSizeStats;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// The MethodData object collects counts and other profile information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// during zeroth-tier (interpretive) and first-tier execution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// The profile is used later by compilation heuristics.  Some heuristics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// enable use of aggressive (or "heroic") optimizations.  An aggressive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// optimization often has a down-side, a corner case that it handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// poorly, but which is thought to be rare.  The profile provides
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// evidence of this rarity for a given method or even BCI.  It allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// the compiler to back out of the optimization at places where it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// has historically been a poor choice.  Other heuristics try to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// specific information gathered about types observed at a given site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// All data in the profile is approximate.  It is expected to be accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// on the whole, but the system expects occasional inaccuraces, due to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// counter overflow, multiprocessor races during data collection, space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// limitations, missing MDO blocks, etc.  Bad or missing data will degrade
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// optimization quality but will not affect correctness.  Also, each MDO
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// is marked with its birth-date ("creation_mileage") which can be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// to assess the quality ("maturity") of its data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// Short (<32-bit) counters are designed to overflow to a known "saturated"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// state.  Also, certain recorded per-BCI events are given one-bit counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// which overflow to a saturated state which applied to all counters at
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// that BCI.  In other words, there is a small lattice which approximates
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// the ideal of an infinite-precision counter for each event at each BCI,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// and the lattice quickly "bottoms out" in a state where all counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// are taken to be indefinitely large.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// The reader will find many data races in profile gathering code, starting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// with invocation counter incrementation.  None of these races harm correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// execution of the compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    68
// forward decl
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    69
class ProfileData;
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
    70
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// DataLayout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// Overlay for generic profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
class DataLayout VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Every data layout begins with a header.  This header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // contains a tag, which is used to indicate the size/layout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // of the data, 4 bits of flags, which can be used in any way,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // 4 bits of trap history (none/one reason/many reasons),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // and a bci, which is used to tie this piece of data to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // specific bci in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    intptr_t _bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      u1 _tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      u1 _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      u2 _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    } _struct;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  } _header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // The data layout has an arbitrary number of cells, each sized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // to accomodate a pointer or an integer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  intptr_t _cells[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Some types of data layouts need a length field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static bool needs_array_len(u1 tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    counter_increment = 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    cell_size = sizeof(intptr_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Tag values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    no_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    bit_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    counter_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    jump_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    receiver_type_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    virtual_call_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    ret_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    branch_data_tag,
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   117
    multi_branch_data_tag,
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   118
    arg_info_data_tag
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // The _struct._flags word is formatted as [trap_state:4 | flags:4].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    // The trap state breaks down further as [recompile:1 | reason:3].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // This further breakdown is defined in deoptimization.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // See Deoptimization::trap_state_reason for an assert that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // The trap_state is collected only if ProfileTraps is true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    trap_bits = 1+3,  // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    trap_shift = BitsPerByte - trap_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    trap_mask = right_n_bits(trap_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    trap_mask_in_place = (trap_mask << trap_shift),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    flag_limit = trap_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    flag_mask = right_n_bits(flag_limit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    first_flag = 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Size computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static int header_size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  static int header_size_in_cells() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static int compute_size_in_bytes(int cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    return header_size_in_bytes() + cell_count * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void initialize(u1 tag, u2 bci, int cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  u1 tag() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    return _header._struct._tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Return a few bits of trap state.  Range is [0..trap_mask].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // The state tells if traps with zero, one, or many reasons have occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // It also tells whether zero or many recompilations have occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // The associated trap histogram in the MDO itself tells whether
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // traps are common or not.  If a BCI shows that a trap X has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // occurred, and the MDO shows N occurrences of X, we make the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // simplifying assumption that all N occurrences can be blamed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // on that BCI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int trap_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    return ((_header._struct._flags >> trap_shift) & trap_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  void set_trap_state(int new_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    assert(ProfileTraps, "used only under +ProfileTraps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    uint old_flags = (_header._struct._flags & flag_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    _header._struct._flags = (new_state << trap_shift) | old_flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  u1 flags() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    return _header._struct._flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  u2 bci() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    return _header._struct._bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void set_header(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    _header._bits = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void release_set_header(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    OrderAccess::release_store_ptr(&_header._bits, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  intptr_t header() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    return _header._bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void set_cell_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _cells[index] = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void release_set_cell_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    OrderAccess::release_store_ptr(&_cells[index], value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  intptr_t cell_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    return _cells[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void set_flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    assert(flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    _header._struct._flags |= (0x1 << flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  bool flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    assert(flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    return (_header._struct._flags & (0x1 << flag_number)) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Low-level support for code generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  static ByteSize header_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return byte_offset_of(DataLayout, _header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  static ByteSize tag_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    return byte_offset_of(DataLayout, _header._struct._tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  static ByteSize flags_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    return byte_offset_of(DataLayout, _header._struct._flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static ByteSize bci_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    return byte_offset_of(DataLayout, _header._struct._bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  static ByteSize cell_offset(int index) {
8652
209b2ce94ce5 7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents: 8334
diff changeset
   226
    return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Return a value which, when or-ed as a byte into _flags, sets the flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static int flag_number_to_byte_constant(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    assert(0 <= flag_number && flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    DataLayout temp; temp.set_header(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    temp.set_flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    return temp._header._struct._flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Return a value which, when or-ed as a word into _header, sets the flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static intptr_t flag_mask_to_header_mask(int byte_constant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    DataLayout temp; temp.set_header(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    temp._header._struct._flags = byte_constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    return temp._header._bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   241
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   242
  ProfileData* data_in();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   243
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   244
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   245
  void clean_weak_klass_links(BoolObjectClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// ProfileData class hierarchy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
class ProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
class   BitData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
class     CounterData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
class       ReceiverTypeData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
class         VirtualCallData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
class       RetData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
class   JumpData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
class     BranchData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
class   ArrayData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
class     MultiBranchData;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   260
class     ArgInfoData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
// ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// A ProfileData object is created to refer to a section of profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// data in a structured way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
class ProfileData : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    tab_width_one = 16,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    tab_width_two = 36
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // This is a pointer to a section of profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  DataLayout* _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  DataLayout* data() { return _data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    cell_size = DataLayout::cell_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // How many cells are in this?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Return the size of this data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  int size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    return DataLayout::compute_size_in_bytes(cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // Low-level accessors for underlying data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void set_intptr_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    data()->set_cell_at(index, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  void release_set_intptr_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    data()->release_set_cell_at(index, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  intptr_t intptr_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    return data()->cell_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void set_uint_at(int index, uint value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void release_set_uint_at(int index, uint value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    release_set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  uint uint_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    return (uint)intptr_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  void set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  void release_set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    release_set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  int int_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    return (int)intptr_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  int int_at_unchecked(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    return (int)data()->cell_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  void set_oop_at(int index, oop value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  oop oop_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return (oop)intptr_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  void set_flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    data()->set_flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  bool flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    return data()->flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // two convenient imports for use by subclasses:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  static ByteSize cell_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    return DataLayout::cell_offset(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  static int flag_number_to_byte_constant(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    return DataLayout::flag_number_to_byte_constant(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  ProfileData(DataLayout* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    _data = data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // Constructor for invalid ProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  ProfileData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  u2 bci() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    return data()->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  address dp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    return (address)_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  int trap_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    return data()->trap_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  void set_trap_state(int new_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    data()->set_trap_state(new_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Type checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  virtual bool is_BitData()         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  virtual bool is_CounterData()     { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  virtual bool is_JumpData()        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  virtual bool is_ReceiverTypeData(){ return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  virtual bool is_VirtualCallData() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  virtual bool is_RetData()         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  virtual bool is_BranchData()      { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  virtual bool is_ArrayData()       { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  virtual bool is_MultiBranchData() { return false; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   388
  virtual bool is_ArgInfoData()     { return false; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   389
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  BitData* as_BitData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    assert(is_BitData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    return is_BitData()         ? (BitData*)        this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  CounterData* as_CounterData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    assert(is_CounterData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    return is_CounterData()     ? (CounterData*)    this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  JumpData* as_JumpData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    assert(is_JumpData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    return is_JumpData()        ? (JumpData*)       this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  ReceiverTypeData* as_ReceiverTypeData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    assert(is_ReceiverTypeData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  VirtualCallData* as_VirtualCallData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    assert(is_VirtualCallData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  RetData* as_RetData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    assert(is_RetData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    return is_RetData()         ? (RetData*)        this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  BranchData* as_BranchData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    assert(is_BranchData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    return is_BranchData()      ? (BranchData*)     this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  ArrayData* as_ArrayData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    assert(is_ArrayData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    return is_ArrayData()       ? (ArrayData*)      this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  MultiBranchData* as_MultiBranchData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    assert(is_MultiBranchData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   427
  ArgInfoData* as_ArgInfoData() {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   428
    assert(is_ArgInfoData(), "wrong type");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   429
    return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   430
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Subclass specific initialization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   434
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   437
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // CI translation: ProfileData can represent both MethodDataOop data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // as well as CIMethodData data. This function is provided for translating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // an oop in a ProfileData to the ci equivalent. Generally speaking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // most ProfileData don't require any translation, so we provide the null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // translation here, and the required translators are in the ci subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  virtual void translate_from(ProfileData* data) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  virtual void print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  void print_shared(outputStream* st, const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  void tab(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
// BitData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
// A BitData holds a flag or two in its header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
class BitData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // null_seen:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    //  saw a null operand (cast/aastore/instanceof)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    null_seen_flag              = DataLayout::first_flag + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  enum { bit_cell_count = 0 };  // no additional data fields needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  BitData(DataLayout* layout) : ProfileData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  virtual bool is_BitData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    return bit_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // Accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // The null_seen flag bit is specially known to the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  // Consulting it allows the compiler to avoid setting up null_check traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  bool null_seen()     { return flag_at(null_seen_flag); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  void set_null_seen()    { set_flag_at(null_seen_flag); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  static int null_seen_byte_constant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    return flag_number_to_byte_constant(null_seen_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  static ByteSize bit_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    return cell_offset(bit_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// A CounterData corresponds to a simple counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
class CounterData : public BitData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    count_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    counter_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  CounterData(DataLayout* layout) : BitData(layout) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  virtual bool is_CounterData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    return counter_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // Direct accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  uint count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    return uint_at(count_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  static ByteSize count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    return cell_offset(count_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  static ByteSize counter_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    return cell_offset(counter_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
4892
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   538
  void set_count(uint count) {
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   539
    set_uint_at(count_off, count);
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   540
  }
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   541
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
// JumpData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
// A JumpData is used to access profiling information for a direct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
// branch.  It is a counter, used for counting the number of branches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
// plus a data displacement, used for realigning the data pointer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
// the corresponding target bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
class JumpData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    taken_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    jump_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  void set_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    set_int_at(displacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  JumpData(DataLayout* layout) : ProfileData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    assert(layout->tag() == DataLayout::jump_data_tag ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      layout->tag() == DataLayout::branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  virtual bool is_JumpData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    return jump_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  // Direct accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  uint taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    return uint_at(taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  }
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   585
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   586
  void set_taken(uint cnt) {
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   587
    set_uint_at(taken_off_set, cnt);
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   588
  }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   589
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // Saturating counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  uint inc_taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    uint cnt = taken() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    // Did we wrap? Will compiler screw us??
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    if (cnt == 0) cnt--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    set_uint_at(taken_off_set, cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  int displacement() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    return int_at(displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  static ByteSize taken_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    return cell_offset(taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  static ByteSize displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    return cell_offset(displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   613
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
// ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
// A ReceiverTypeData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
// dynamic type check.  It consists of a counter which counts the total times
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   624
// that the check is reached, and a series of (Klass*, count) pairs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
// which are used to store a type profile for the receiver of the check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
class ReceiverTypeData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    receiver0_offset = counter_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    count0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    assert(layout->tag() == DataLayout::receiver_type_data_tag ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
           layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  virtual bool is_ReceiverTypeData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // Direct accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  static uint row_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    return TypeProfileWidth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  static int receiver_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    return receiver0_offset + row * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  static int receiver_count_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    return count0_offset + row * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   661
  Klass* receiver(uint row) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    assert(row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   664
    Klass* recv = (Klass*)intptr_at(receiver_cell_index(row));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   665
    assert(recv == NULL || recv->is_klass(), "wrong type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    return recv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   669
  void set_receiver(uint row, Klass* k) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   670
    assert((uint)row < row_limit(), "oob");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   671
    set_intptr_at(receiver_cell_index(row), (uintptr_t)k);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   672
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   673
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  uint receiver_count(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    assert(row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    return uint_at(receiver_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   679
  void set_receiver_count(uint row, uint count) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   680
    assert(row < row_limit(), "oob");
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   681
    set_uint_at(receiver_count_cell_index(row), count);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   682
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   683
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   684
  void clear_row(uint row) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   685
    assert(row < row_limit(), "oob");
4892
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   686
    // Clear total count - indicator of polymorphic call site.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   687
    // The site may look like as monomorphic after that but
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   688
    // it allow to have more accurate profiling information because
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   689
    // there was execution phase change since klasses were unloaded.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   690
    // If the site is still polymorphic then MDO will be updated
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   691
    // to reflect it. But it could be the case that the site becomes
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   692
    // only bimorphic. Then keeping total count not 0 will be wrong.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   693
    // Even if we use monomorphic (when it is not) for compilation
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   694
    // we will only have trap, deoptimization and recompile again
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   695
    // with updated MDO after executing method in Interpreter.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   696
    // An additional receiver will be recorded in the cleaned row
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   697
    // during next call execution.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   698
    //
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   699
    // Note: our profiling logic works with empty rows in any slot.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   700
    // We do sorting a profiling info (ciCallProfile) for compilation.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   701
    //
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   702
    set_count(0);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   703
    set_receiver(row, NULL);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   704
    set_receiver_count(row, 0);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   705
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   706
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  static ByteSize receiver_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    return cell_offset(receiver_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  static ByteSize receiver_count_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    return cell_offset(receiver_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  static ByteSize receiver_type_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    return cell_offset(static_cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   719
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  void print_receiver_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
// VirtualCallData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
// A VirtualCallData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
// virtual call.  For now, it has nothing more than a ReceiverTypeData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
class VirtualCallData : public ReceiverTypeData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    assert(layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  virtual bool is_VirtualCallData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    // At this point we could add more profile state, e.g., for arguments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    // But for now it's the same size as the base record type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    return ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  // Direct accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  static ByteSize virtual_call_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    return cell_offset(static_cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
// RetData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
// A RetData is used to access profiling information for a ret bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
// It is composed of a count of the number of times that the ret has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
// been executed, followed by a series of triples of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
// (bci, count, di) which count the number of times that some bci was the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
// target of the ret and cache a corresponding data displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
class RetData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    bci0_offset = counter_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    count0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    displacement0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  void set_bci(uint row, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    set_int_at(bci0_offset + row * ret_row_cell_count, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  void release_set_bci(uint row, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    // 'release' when setting the bci acts as a valid flag for other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    // threads wrt bci_count and bci_displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  void set_bci_count(uint row, uint count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    set_uint_at(count0_offset + row * ret_row_cell_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  void set_bci_displacement(uint row, int disp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  RetData(DataLayout* layout) : CounterData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  virtual bool is_RetData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    no_bci = -1 // value of bci when bci1/2 are not in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  static uint row_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    return BciProfileWidth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  static int bci_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    return bci0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  static int bci_count_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
    return count0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  static int bci_displacement_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    return displacement0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  // Direct accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  int bci(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    return int_at(bci_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  uint bci_count(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    return uint_at(bci_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  int bci_displacement(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    return int_at(bci_displacement_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // Interpreter Runtime support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   837
  address fixup_ret(int return_bci, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  static ByteSize bci_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    return cell_offset(bci_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  static ByteSize bci_count_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
    return cell_offset(bci_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  static ByteSize bci_displacement_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    return cell_offset(bci_displacement_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   851
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
// BranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
// A BranchData is used to access profiling data for a two-way branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
// It consists of taken and not_taken counts as well as a data displacement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
// for the taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
class BranchData : public JumpData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    not_taken_off_set = jump_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    branch_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  void set_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    set_int_at(displacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  BranchData(DataLayout* layout) : JumpData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    assert(layout->tag() == DataLayout::branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  virtual bool is_BranchData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    return branch_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  // Direct accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  uint not_taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    return uint_at(not_taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   894
  void set_not_taken(uint cnt) {
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   895
    set_uint_at(not_taken_off_set, cnt);
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   896
  }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   897
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  uint inc_not_taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    uint cnt = not_taken() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    // Did we wrap? Will compiler screw us??
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    if (cnt == 0) cnt--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    set_uint_at(not_taken_off_set, cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  static ByteSize not_taken_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    return cell_offset(not_taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  static ByteSize branch_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    return cell_offset(branch_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   915
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
// ArrayData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
// A ArrayData is a base class for accessing profiling data which does
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
// not have a statically known size.  It consists of an array length
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
// and an array start.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
class ArrayData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  friend class DataLayout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    array_len_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    array_start_off_set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  uint array_uint_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    return uint_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  int array_int_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    return int_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  oop array_oop_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    return oop_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  void array_set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    set_int_at(aindex, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  // Code generation support for subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  static ByteSize array_element_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
    return cell_offset(array_start_off_set + index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  ArrayData(DataLayout* layout) : ProfileData(layout) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  virtual bool is_ArrayData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  int array_len() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    return int_at_unchecked(array_len_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  virtual int cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    return array_len() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  static ByteSize array_len_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    return cell_offset(array_len_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  static ByteSize array_start_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    return cell_offset(array_start_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
// MultiBranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
// A MultiBranchData is used to access profiling information for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
// a multi-way branch (*switch bytecodes).  It consists of a series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
// of (count, displacement) pairs, which count the number of times each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
// case was taken and specify the data displacment for each branch target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
class MultiBranchData : public ArrayData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    default_count_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    default_disaplacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    case_array_start
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    relative_count_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    relative_displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    per_case_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  void set_default_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    array_set_int_at(default_disaplacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  void set_displacement_at(int index, int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    array_set_int_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
                     index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
                     relative_displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
                     displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  MultiBranchData(DataLayout* layout) : ArrayData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  virtual bool is_MultiBranchData() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  static int compute_cell_count(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  int number_of_cases() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    int alen = array_len() - 2; // get rid of default case here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    assert(alen % per_case_cell_count == 0, "must be even");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
    return (alen / per_case_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  uint default_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
    return array_uint_at(default_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  int default_displacement() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
    return array_int_at(default_disaplacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  uint count_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
    return array_uint_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
                         index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
                         relative_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  int displacement_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
    return array_int_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
                        index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
                        relative_displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  static ByteSize default_count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    return array_element_offset(default_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  static ByteSize default_displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    return array_element_offset(default_disaplacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  static ByteSize case_count_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
    return case_array_offset() +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
           (per_case_size() * index) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
           relative_count_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  static ByteSize case_array_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    return array_element_offset(case_array_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  static ByteSize per_case_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
    return in_ByteSize(per_case_cell_count) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  static ByteSize relative_count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    return in_ByteSize(relative_count_off_set) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  static ByteSize relative_displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
    return in_ByteSize(relative_displacement_off_set) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1072
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1079
class ArgInfoData : public ArrayData {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1080
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1081
public:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1082
  ArgInfoData(DataLayout* layout) : ArrayData(layout) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1083
    assert(layout->tag() == DataLayout::arg_info_data_tag, "wrong type");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1084
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1085
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1086
  virtual bool is_ArgInfoData() { return true; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1087
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1088
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1089
  int number_of_args() {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1090
    return array_len();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1091
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1092
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1093
  uint arg_modified(int arg) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1094
    return array_uint_at(arg);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1095
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1096
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1097
  void set_arg_modified(int arg, uint val) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1098
    array_set_int_at(arg, val);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1099
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1100
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1101
#ifndef PRODUCT
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1102
  void print_data_on(outputStream* st);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1103
#endif
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1104
};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1105
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1106
// MethodData*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1108
// A MethodData* holds information which has been collected about
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
// a method.  Its layout looks like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
// | header                    |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
// | klass                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
// | method                    |
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1116
// | size of the MethodData* |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
// | Data entries...           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
// |   (variable size)         |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
// |                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
// |                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
// The data entry area is a heterogeneous array of DataLayouts. Each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
// DataLayout in the array corresponds to a specific bytecode in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
// method.  The entries in the array are sorted by the corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
// bytecode.  Access to the data is via resource-allocated ProfileData,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
// which point to the underlying blocks of DataLayout structures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
// During interpretation, if profiling in enabled, the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
// maintains a method data pointer (mdp), which points at the entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
// in the array corresponding to the current bci.  In the course of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
// intepretation, when a bytecode is encountered that has profile data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
// associated with it, the entry pointed to by mdp is updated, then the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
// mdp is adjusted to point to the next appropriate DataLayout.  If mdp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
// is NULL to begin with, the interpreter assumes that the current method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
// is not (yet) being profiled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1142
// In MethodData* parlance, "dp" is a "data pointer", the actual address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
// of a DataLayout element.  A "di" is a "data index", the offset in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
// from the base of the data entry array.  A "displacement" is the byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
// in certain ProfileData objects that indicate the amount the mdp must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
// adjusted in the event of a change in control flow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1149
class MethodData : public Metadata {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  friend class ProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1154
  // Back pointer to the Method*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1155
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  // Size of this oop in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  int _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  // Cached hint for bci_to_dp and bci_to_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  int _hint_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1163
  MethodData(methodHandle method, int size, TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1164
public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1165
  static MethodData* allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1166
  MethodData() {}; // For ciMethodData
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1167
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1168
  bool is_methodData() const volatile { return true; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  // Whole-method sticky bits and flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  enum {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8652
diff changeset
  1172
    _trap_hist_limit    = 17,   // decoupled from Deoptimization::Reason_LIMIT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    _trap_hist_mask     = max_jubyte,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    _extra_data_count   = 4     // extra DataLayout headers, for trap history
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  }; // Public flag values
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  uint _nof_decompiles;             // count of all nmethod removals
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  uint _nof_overflow_recompiles;    // recompile count, excluding recomp. bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  uint _nof_overflow_traps;         // trap count, excluding _trap_hist
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    intptr_t _align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    u1 _array[_trap_hist_limit];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  } _trap_hist;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  // Support for interprocedural escape analysis, from Thomas Kotzmann.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  intx              _eflags;          // flags on escape information
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  intx              _arg_local;       // bit set of non-escaping arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  intx              _arg_stack;       // bit set of stack-allocatable arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  intx              _arg_returned;    // bit set of returned arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1191
  int _creation_mileage;              // method mileage at MDO creation
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1192
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1193
  // How many invocations has this MDO seen?
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1194
  // These counters are used to determine the exact age of MDO.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1195
  // We need those because in tiered a method can be concurrently
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1196
  // executed at different levels.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1197
  InvocationCounter _invocation_counter;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1198
  // Same for backedges.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1199
  InvocationCounter _backedge_counter;
8322
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1200
  // Counter values at the time profiling started.
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1201
  int               _invocation_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1202
  int               _backedge_counter_start;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1203
  // Number of loops and blocks is computed when compiling the first
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1204
  // time with C1. It is used to determine if method is trivial.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1205
  short             _num_loops;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1206
  short             _num_blocks;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1207
  // Highest compile level this method has ever seen.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1208
  u1                _highest_comp_level;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1209
  // Same for OSR level
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1210
  u1                _highest_osr_comp_level;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1211
  // Does this method contain anything worth profiling?
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1212
  bool              _would_profile;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
  // Size of _data array in bytes.  (Excludes header and extra_data fields.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  int _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  // Beginning of the data entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  intptr_t _data[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  // Helper for size computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  static int compute_data_size(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  static int bytecode_cell_count(Bytecodes::Code code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  enum { no_profile_data = -1, variable_cell_count = -2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  // Helper for initialization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1226
  DataLayout* data_layout_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    assert(data_index % sizeof(intptr_t) == 0, "unaligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
    return (DataLayout*) (((address)_data) + data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  // Initialize an individual data segment.  Returns the size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  // the segment in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  int initialize_data(BytecodeStream* stream, int data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  // Helper for data_at
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1236
  DataLayout* limit_data_position() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
    return (DataLayout*)((address)data_base() + _data_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1239
  bool out_of_bounds(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    return data_index >= data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  // Give each of the data entries a chance to perform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  // data initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  void post_initialize(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  // hint accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  int      hint_di() const  { return _hint_di; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  void set_hint_di(int di)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
    assert(!out_of_bounds(di), "hint_di out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    _hint_di = di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  ProfileData* data_before(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    // avoid SEGV on this edge case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
    if (data_size() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    int hint = hint_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    if (data_layout_at(hint)->bci() <= bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
      return data_at(hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    return first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  // What is the index of the first data entry?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1264
  int first_di() const { return 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  // Find or create an extra ProfileData:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  ProfileData* bci_to_extra_data(int bci, bool create_if_missing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1269
  // return the argument info cell
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1270
  ArgInfoData *arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1271
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
  static int header_size() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1274
    return sizeof(MethodData)/wordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1277
  // Compute the size of a MethodData* before it is created.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  static int compute_allocation_size_in_bytes(methodHandle method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
  static int compute_allocation_size_in_words(methodHandle method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
  static int compute_extra_data_count(int data_size, int empty_bc_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  // Determine if a given bytecode can have profile information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  static bool bytecode_has_profile(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
    return bytecode_cell_count(code) != no_profile_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1287
  // reset into original state
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1288
  void init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  // My size
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1291
  int size_in_bytes() const { return _size; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1292
  int size() const    { return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord); }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1293
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1294
  void collect_statistics(KlassSizeStats *sz) const;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1295
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  int      creation_mileage() const  { return _creation_mileage; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
  void set_creation_mileage(int x)   { _creation_mileage = x; }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1299
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1300
  int invocation_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1301
    if (invocation_counter()->carry()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1302
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1303
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1304
    return invocation_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1305
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1306
  int backedge_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1307
    if (backedge_counter()->carry()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1308
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1309
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1310
    return backedge_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1311
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1312
8322
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1313
  int invocation_count_start() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1314
    if (invocation_counter()->carry()) {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1315
      return 0;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1316
    }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1317
    return _invocation_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1318
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1319
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1320
  int backedge_count_start() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1321
    if (backedge_counter()->carry()) {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1322
      return 0;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1323
    }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1324
    return _backedge_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1325
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1326
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1327
  int invocation_count_delta() { return invocation_count() - invocation_count_start(); }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1328
  int backedge_count_delta()   { return backedge_count()   - backedge_count_start();   }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1329
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1330
  void reset_start_counters() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1331
    _invocation_counter_start = invocation_count();
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1332
    _backedge_counter_start = backedge_count();
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1333
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1334
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1335
  InvocationCounter* invocation_counter()     { return &_invocation_counter; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1336
  InvocationCounter* backedge_counter()       { return &_backedge_counter;   }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1337
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1338
  void set_would_profile(bool p)              { _would_profile = p;    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1339
  bool would_profile() const                  { return _would_profile; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1340
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16689
diff changeset
  1341
  int highest_comp_level() const              { return _highest_comp_level;      }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1342
  void set_highest_comp_level(int level)      { _highest_comp_level = level;     }
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16689
diff changeset
  1343
  int highest_osr_comp_level() const          { return _highest_osr_comp_level;  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1344
  void set_highest_osr_comp_level(int level)  { _highest_osr_comp_level = level; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1345
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1346
  int num_loops() const                       { return _num_loops;  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1347
  void set_num_loops(int n)                   { _num_loops = n;     }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1348
  int num_blocks() const                      { return _num_blocks; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1349
  void set_num_blocks(int n)                  { _num_blocks = n;    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1350
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  bool is_mature() const;  // consult mileage and ProfileMaturityPercentage
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1352
  static int mileage_of(Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  // Support for interprocedural escape analysis, from Thomas Kotzmann.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  enum EscapeFlag {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
    estimated    = 1 << 0,
251
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  1357
    return_local = 1 << 1,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  1358
    return_allocated = 1 << 2,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  1359
    allocated_escapes = 1 << 3,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  1360
    unknown_modified = 1 << 4
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  intx eflags()                                  { return _eflags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  intx arg_local()                               { return _arg_local; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  intx arg_stack()                               { return _arg_stack; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  intx arg_returned()                            { return _arg_returned; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1367
  uint arg_modified(int a)                       { ArgInfoData *aid = arg_info();
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1368
                                                   assert(aid != NULL, "arg_info must be not null");
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1369
                                                   assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1370
                                                   return aid->arg_modified(a); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  void set_eflags(intx v)                        { _eflags = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  void set_arg_local(intx v)                     { _arg_local = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  void set_arg_stack(intx v)                     { _arg_stack = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  void set_arg_returned(intx v)                  { _arg_returned = v; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1376
  void set_arg_modified(int a, uint v)           { ArgInfoData *aid = arg_info();
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1377
                                                   assert(aid != NULL, "arg_info must be not null");
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1378
                                                   assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1379
                                                   aid->set_arg_modified(a, v); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  void clear_escape_info()                       { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  // Location and size of data area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  address data_base() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
    return (address) _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1387
  int data_size() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    return _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  // Accessors
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1392
  Method* method() const { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
  // Get the data at an arbitrary (sort of) data index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1395
  ProfileData* data_at(int data_index) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  // Walk through the data in order.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1398
  ProfileData* first_data() const { return data_at(first_di()); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1399
  ProfileData* next_data(ProfileData* current) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1400
  bool is_valid(ProfileData* current) const { return current != NULL; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
  // Convert a dp (data pointer) to a di (data index).
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1403
  int dp_to_di(address dp) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
    return dp - ((address)_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  address di_to_dp(int di) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    return (address)data_layout_at(di);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  // bci to di/dp conversion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  address bci_to_dp(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
  int bci_to_di(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
    return dp_to_di(bci_to_dp(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  // Get the data at an arbitrary bci, or NULL if there is none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  ProfileData* bci_to_data(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  // Same, but try to create an extra_data record if one is needed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  ProfileData* allocate_bci_to_data(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    ProfileData* data = bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
    return (data != NULL) ? data : bci_to_extra_data(bci, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  // Add a handful of extra data records, for trap tracking.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1427
  DataLayout* extra_data_base() const { return limit_data_position(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1428
  DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1429
  int extra_data_size() const { return (address)extra_data_limit()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
                               - (address)extra_data_base(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
  static DataLayout* next_extra(DataLayout* dp) { return (DataLayout*)((address)dp + in_bytes(DataLayout::cell_offset(0))); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  // Return (uint)-1 for overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  uint trap_count(int reason) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    assert((uint)reason < _trap_hist_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
    return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
  // For loops:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  static uint trap_reason_limit() { return _trap_hist_limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
  static uint trap_count_limit()  { return _trap_hist_mask; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  uint inc_trap_count(int reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    // Count another trap, anywhere in this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    assert(reason >= 0, "must be single trap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
    if ((uint)reason < _trap_hist_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
      uint cnt1 = 1 + _trap_hist._array[reason];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
      if ((cnt1 & _trap_hist_mask) != 0) {  // if no counter overflow...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
        _trap_hist._array[reason] = cnt1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
        return cnt1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
        return _trap_hist_mask + (++_nof_overflow_traps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
      // Could not represent the count in the histogram.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
      return (++_nof_overflow_traps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  uint overflow_trap_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
    return _nof_overflow_traps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  uint overflow_recompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
    return _nof_overflow_recompiles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  void inc_overflow_recompile_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    _nof_overflow_recompiles += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  uint decompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
    return _nof_decompiles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  void inc_decompile_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
    _nof_decompiles += 1;
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 3795
diff changeset
  1472
    if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
15479
e3c00ec80145 8006613: adding reason to made_not_compilable
vlivanov
parents: 13728
diff changeset
  1473
      method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff");
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 3795
diff changeset
  1474
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  // Support for code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  static ByteSize data_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1479
    return byte_offset_of(MethodData, _data[0]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1482
  static ByteSize invocation_counter_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1483
    return byte_offset_of(MethodData, _invocation_counter);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1484
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1485
  static ByteSize backedge_counter_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1486
    return byte_offset_of(MethodData, _backedge_counter);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1487
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1488
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1489
  // Deallocation support - no pointer fields to deallocate
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1490
  void deallocate_contents(ClassLoaderData* loader_data) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1491
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1493
  void set_size(int object_size_in_bytes) { _size = object_size_in_bytes; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1494
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1495
  // Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1496
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1497
  void print_on      (outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1498
#endif
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1499
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
  // printing support for method data
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1503
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1506
  const char* internal_name() const { return "{method data}"; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1507
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
  // verification
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1509
  void verify_on(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
  void verify_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
  1512
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
  1513
#endif // SHARE_VM_OOPS_METHODDATAOOP_HPP