hotspot/src/share/vm/oops/methodData.hpp
author roland
Tue, 22 Oct 2013 09:51:47 +0200
changeset 21095 1a04f7b3946e
parent 20709 034be898bf04
child 21581 73584c201e2d
child 22838 82c7497fbad4
permissions -rw-r--r--
8026251: New type profiling points: parameters to methods Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
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 {
20011
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 17370
diff changeset
    75
  friend class VMStructs;
d74937287461 8024760: add more types, fields and constants to VMStructs
twisti
parents: 17370
diff changeset
    76
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Every data layout begins with a header.  This header
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // contains a tag, which is used to indicate the size/layout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // of the data, 4 bits of flags, which can be used in any way,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // 4 bits of trap history (none/one reason/many reasons),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // and a bci, which is used to tie this piece of data to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // specific bci in the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    intptr_t _bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      u1 _tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      u1 _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      u2 _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    } _struct;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  } _header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // The data layout has an arbitrary number of cells, each sized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // to accomodate a pointer or an integer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  intptr_t _cells[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Some types of data layouts need a length field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static bool needs_array_len(u1 tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    counter_increment = 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    cell_size = sizeof(intptr_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Tag values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    no_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    bit_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    counter_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    jump_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    receiver_type_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    virtual_call_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    ret_data_tag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    branch_data_tag,
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   119
    multi_branch_data_tag,
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   120
    arg_info_data_tag,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   121
    call_type_data_tag,
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   122
    virtual_call_type_data_tag,
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   123
    parameters_type_data_tag
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // The _struct._flags word is formatted as [trap_state:4 | flags:4].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // The trap state breaks down further as [recompile:1 | reason:3].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // This further breakdown is defined in deoptimization.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // See Deoptimization::trap_state_reason for an assert that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // The trap_state is collected only if ProfileTraps is true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    trap_bits = 1+3,  // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    trap_shift = BitsPerByte - trap_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    trap_mask = right_n_bits(trap_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    trap_mask_in_place = (trap_mask << trap_shift),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    flag_limit = trap_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    flag_mask = right_n_bits(flag_limit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    first_flag = 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Size computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static int header_size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    return cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  static int header_size_in_cells() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  static int compute_size_in_bytes(int cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    return header_size_in_bytes() + cell_count * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  void initialize(u1 tag, u2 bci, int cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  u1 tag() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    return _header._struct._tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Return a few bits of trap state.  Range is [0..trap_mask].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // The state tells if traps with zero, one, or many reasons have occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // It also tells whether zero or many recompilations have occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // The associated trap histogram in the MDO itself tells whether
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // traps are common or not.  If a BCI shows that a trap X has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // occurred, and the MDO shows N occurrences of X, we make the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // simplifying assumption that all N occurrences can be blamed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // on that BCI.
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   171
  int trap_state() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    return ((_header._struct._flags >> trap_shift) & trap_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void set_trap_state(int new_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    assert(ProfileTraps, "used only under +ProfileTraps");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    uint old_flags = (_header._struct._flags & flag_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _header._struct._flags = (new_state << trap_shift) | old_flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   181
  u1 flags() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return _header._struct._flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   185
  u2 bci() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return _header._struct._bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void set_header(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    _header._bits = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void release_set_header(intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    OrderAccess::release_store_ptr(&_header._bits, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  intptr_t header() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    return _header._bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void set_cell_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    _cells[index] = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void release_set_cell_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    OrderAccess::release_store_ptr(&_cells[index], value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   204
  intptr_t cell_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    return _cells[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void set_flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    assert(flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    _header._struct._flags |= (0x1 << flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   212
  bool flag_at(int flag_number) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    assert(flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return (_header._struct._flags & (0x1 << flag_number)) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Low-level support for code generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  static ByteSize header_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    return byte_offset_of(DataLayout, _header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  static ByteSize tag_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    return byte_offset_of(DataLayout, _header._struct._tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  static ByteSize flags_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return byte_offset_of(DataLayout, _header._struct._flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  static ByteSize bci_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    return byte_offset_of(DataLayout, _header._struct._bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  static ByteSize cell_offset(int index) {
8652
209b2ce94ce5 7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents: 8334
diff changeset
   231
    return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Return a value which, when or-ed as a byte into _flags, sets the flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  static int flag_number_to_byte_constant(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    assert(0 <= flag_number && flag_number < flag_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    DataLayout temp; temp.set_header(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    temp.set_flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    return temp._header._struct._flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Return a value which, when or-ed as a word into _header, sets the flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  static intptr_t flag_mask_to_header_mask(int byte_constant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    DataLayout temp; temp.set_header(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    temp._header._struct._flags = byte_constant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return temp._header._bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   246
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   247
  ProfileData* data_in();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   248
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
   249
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   250
  void clean_weak_klass_links(BoolObjectClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// ProfileData class hierarchy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
class ProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
class   BitData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
class     CounterData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
class       ReceiverTypeData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
class         VirtualCallData;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   260
class           VirtualCallTypeData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
class       RetData;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   262
class       CallTypeData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
class   JumpData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
class     BranchData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
class   ArrayData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
class     MultiBranchData;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   267
class     ArgInfoData;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   268
class     ParametersTypeData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// A ProfileData object is created to refer to a section of profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// data in a structured way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
class ProfileData : public ResourceObj {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   275
  friend class TypeEntries;
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   276
  friend class ReturnTypeEntry;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   277
  friend class TypeStackSlotEntries;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    tab_width_one = 16,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    tab_width_two = 36
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // This is a pointer to a section of profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  DataLayout* _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  DataLayout* data() { return _data; }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   291
  const DataLayout* data() const { return _data; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    cell_size = DataLayout::cell_size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // How many cells are in this?
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   299
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Return the size of this data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  int size_in_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    return DataLayout::compute_size_in_bytes(cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Low-level accessors for underlying data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void set_intptr_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    data()->set_cell_at(index, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void release_set_intptr_at(int index, intptr_t value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    data()->release_set_cell_at(index, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   319
  intptr_t intptr_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    assert(0 <= index && index < cell_count(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    return data()->cell_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void set_uint_at(int index, uint value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  void release_set_uint_at(int index, uint value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    release_set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   329
  uint uint_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    return (uint)intptr_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  void set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  void release_set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    release_set_intptr_at(index, (intptr_t) value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   338
  int int_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    return (int)intptr_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   341
  int int_at_unchecked(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    return (int)data()->cell_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  void set_oop_at(int index, oop value) {
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 20011
diff changeset
   345
    set_intptr_at(index, cast_from_oop<intptr_t>(value));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   347
  oop oop_at(int index) const {
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 20011
diff changeset
   348
    return cast_to_oop(intptr_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  void set_flag_at(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    data()->set_flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   354
  bool flag_at(int flag_number) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    return data()->flag_at(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // two convenient imports for use by subclasses:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  static ByteSize cell_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    return DataLayout::cell_offset(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  static int flag_number_to_byte_constant(int flag_number) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    return DataLayout::flag_number_to_byte_constant(flag_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  ProfileData(DataLayout* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    _data = data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Constructor for invalid ProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  ProfileData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   374
  u2 bci() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    return data()->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  address dp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    return (address)_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   382
  int trap_state() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    return data()->trap_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  void set_trap_state(int new_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    data()->set_trap_state(new_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // Type checking
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   390
  virtual bool is_BitData()         const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   391
  virtual bool is_CounterData()     const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   392
  virtual bool is_JumpData()        const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   393
  virtual bool is_ReceiverTypeData()const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   394
  virtual bool is_VirtualCallData() const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   395
  virtual bool is_RetData()         const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   396
  virtual bool is_BranchData()      const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   397
  virtual bool is_ArrayData()       const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   398
  virtual bool is_MultiBranchData() const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   399
  virtual bool is_ArgInfoData()     const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   400
  virtual bool is_CallTypeData()    const { return false; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   401
  virtual bool is_VirtualCallTypeData()const { return false; }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   402
  virtual bool is_ParametersTypeData() const { return false; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   403
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   405
  BitData* as_BitData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    assert(is_BitData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    return is_BitData()         ? (BitData*)        this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   409
  CounterData* as_CounterData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    assert(is_CounterData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    return is_CounterData()     ? (CounterData*)    this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   413
  JumpData* as_JumpData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    assert(is_JumpData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    return is_JumpData()        ? (JumpData*)       this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   417
  ReceiverTypeData* as_ReceiverTypeData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    assert(is_ReceiverTypeData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   421
  VirtualCallData* as_VirtualCallData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    assert(is_VirtualCallData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   425
  RetData* as_RetData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    assert(is_RetData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    return is_RetData()         ? (RetData*)        this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   429
  BranchData* as_BranchData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    assert(is_BranchData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    return is_BranchData()      ? (BranchData*)     this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   433
  ArrayData* as_ArrayData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    assert(is_ArrayData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    return is_ArrayData()       ? (ArrayData*)      this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   437
  MultiBranchData* as_MultiBranchData() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    assert(is_MultiBranchData(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   441
  ArgInfoData* as_ArgInfoData() const {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   442
    assert(is_ArgInfoData(), "wrong type");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   443
    return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   444
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   445
  CallTypeData* as_CallTypeData() const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   446
    assert(is_CallTypeData(), "wrong type");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   447
    return is_CallTypeData() ? (CallTypeData*)this : NULL;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   448
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   449
  VirtualCallTypeData* as_VirtualCallTypeData() const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   450
    assert(is_VirtualCallTypeData(), "wrong type");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   451
    return is_VirtualCallTypeData() ? (VirtualCallTypeData*)this : NULL;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   452
  }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   453
  ParametersTypeData* as_ParametersTypeData() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   454
    assert(is_ParametersTypeData(), "wrong type");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   455
    return is_ParametersTypeData() ? (ParametersTypeData*)this : NULL;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   456
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // Subclass specific initialization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   460
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   463
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // CI translation: ProfileData can represent both MethodDataOop data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // as well as CIMethodData data. This function is provided for translating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // an oop in a ProfileData to the ci equivalent. Generally speaking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // most ProfileData don't require any translation, so we provide the null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // translation here, and the required translators are in the ci subclasses.
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   470
  virtual void translate_from(const ProfileData* data) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   472
  virtual void print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   477
  void print_shared(outputStream* st, const char* name) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   478
  void tab(outputStream* st, bool first = false) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
// BitData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
// A BitData holds a flag or two in its header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
class BitData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    // null_seen:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    //  saw a null operand (cast/aastore/instanceof)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    null_seen_flag              = DataLayout::first_flag + 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  enum { bit_cell_count = 0 };  // no additional data fields needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  BitData(DataLayout* layout) : ProfileData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   497
  virtual bool is_BitData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    return bit_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   503
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // Accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // The null_seen flag bit is specially known to the interpreter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // Consulting it allows the compiler to avoid setting up null_check traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  bool null_seen()     { return flag_at(null_seen_flag); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  void set_null_seen()    { set_flag_at(null_seen_flag); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  static int null_seen_byte_constant() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    return flag_number_to_byte_constant(null_seen_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  static ByteSize bit_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    return cell_offset(bit_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   525
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
// CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
// A CounterData corresponds to a simple counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
class CounterData : public BitData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    count_off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    counter_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  CounterData(DataLayout* layout) : BitData(layout) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   541
  virtual bool is_CounterData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    return counter_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   547
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  // Direct accessor
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   552
  uint count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    return uint_at(count_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  static ByteSize count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    return cell_offset(count_off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  static ByteSize counter_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    return cell_offset(counter_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
4892
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   564
  void set_count(uint count) {
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   565
    set_uint_at(count_off, count);
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   566
  }
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
   567
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   569
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
// JumpData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
// A JumpData is used to access profiling information for a direct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
// branch.  It is a counter, used for counting the number of branches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
// plus a data displacement, used for realigning the data pointer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
// the corresponding target bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
class JumpData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    taken_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    jump_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  void set_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    set_int_at(displacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  JumpData(DataLayout* layout) : ProfileData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    assert(layout->tag() == DataLayout::jump_data_tag ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
      layout->tag() == DataLayout::branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   597
  virtual bool is_JumpData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    return jump_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   603
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  // Direct accessor
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   608
  uint taken() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    return uint_at(taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  }
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   611
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   612
  void set_taken(uint cnt) {
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   613
    set_uint_at(taken_off_set, cnt);
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   614
  }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
   615
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // Saturating counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  uint inc_taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    uint cnt = taken() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    // Did we wrap? Will compiler screw us??
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    if (cnt == 0) cnt--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    set_uint_at(taken_off_set, cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   625
  int displacement() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    return int_at(displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  static ByteSize taken_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    return cell_offset(taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  static ByteSize displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    return cell_offset(displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
   639
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   642
  void print_data_on(outputStream* st) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   643
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   644
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   645
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   646
// Entries in a ProfileData object to record types: it can either be
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   647
// none (no profile), unknown (conflicting profile data) or a klass if
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   648
// a single one is seen. Whether a null reference was seen is also
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   649
// recorded. No counter is associated with the type and a single type
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   650
// is tracked (unlike VirtualCallData).
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   651
class TypeEntries {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   652
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   653
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   654
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   655
  // A single cell is used to record information for a type:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   656
  // - the cell is initialized to 0
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   657
  // - when a type is discovered it is stored in the cell
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   658
  // - bit zero of the cell is used to record whether a null reference
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   659
  // was encountered or not
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   660
  // - bit 1 is set to record a conflict in the type information
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   661
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   662
  enum {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   663
    null_seen = 1,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   664
    type_mask = ~null_seen,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   665
    type_unknown = 2,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   666
    status_bits = null_seen | type_unknown,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   667
    type_klass_mask = ~status_bits
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   668
  };
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   669
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   670
  // what to initialize a cell to
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   671
  static intptr_t type_none() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   672
    return 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   673
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   674
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   675
  // null seen = bit 0 set?
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   676
  static bool was_null_seen(intptr_t v) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   677
    return (v & null_seen) != 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   678
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   679
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   680
  // conflicting type information = bit 1 set?
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   681
  static bool is_type_unknown(intptr_t v) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   682
    return (v & type_unknown) != 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   683
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   684
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   685
  // not type information yet = all bits cleared, ignoring bit 0?
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   686
  static bool is_type_none(intptr_t v) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   687
    return (v & type_mask) == 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   688
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   689
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   690
  // recorded type: cell without bit 0 and 1
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   691
  static intptr_t klass_part(intptr_t v) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   692
    intptr_t r = v & type_klass_mask;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   693
    assert (r != 0, "invalid");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   694
    return r;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   695
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   696
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   697
  // type recorded
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   698
  static Klass* valid_klass(intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   699
    if (!is_type_none(k) &&
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   700
        !is_type_unknown(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   701
      return (Klass*)klass_part(k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   702
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   703
      return NULL;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   704
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   705
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   706
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   707
  static intptr_t with_status(intptr_t k, intptr_t in) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   708
    return k | (in & status_bits);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   709
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   710
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   711
  static intptr_t with_status(Klass* k, intptr_t in) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   712
    return with_status((intptr_t)k, in);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   713
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   714
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   715
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   716
  static void print_klass(outputStream* st, intptr_t k);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   717
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   718
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   719
  // GC support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   720
  static bool is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   721
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   722
protected:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   723
  // ProfileData object these entries are part of
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   724
  ProfileData* _pd;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   725
  // offset within the ProfileData object where the entries start
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   726
  const int _base_off;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   727
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   728
  TypeEntries(int base_off)
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   729
    : _base_off(base_off), _pd(NULL) {}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   730
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   731
  void set_intptr_at(int index, intptr_t value) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   732
    _pd->set_intptr_at(index, value);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   733
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   734
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   735
  intptr_t intptr_at(int index) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   736
    return _pd->intptr_at(index);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   737
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   738
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   739
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   740
  void set_profile_data(ProfileData* pd) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   741
    _pd = pd;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   742
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   743
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   744
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   745
// Type entries used for arguments passed at a call and parameters on
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   746
// method entry. 2 cells per entry: one for the type encoded as in
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   747
// TypeEntries and one initialized with the stack slot where the
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   748
// profiled object is to be found so that the interpreter can locate
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   749
// it quickly.
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   750
class TypeStackSlotEntries : public TypeEntries {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   751
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   752
private:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   753
  enum {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   754
    stack_slot_entry,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   755
    type_entry,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   756
    per_arg_cell_count
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   757
  };
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   758
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   759
  // offset of cell for stack slot for entry i within ProfileData object
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   760
  int stack_slot_offset(int i) const {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   761
    return _base_off + stack_slot_local_offset(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   762
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   763
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   764
protected:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   765
  const int _number_of_entries;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   766
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   767
  // offset of cell for type for entry i within ProfileData object
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   768
  int type_offset(int i) const {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   769
    return _base_off + type_local_offset(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   770
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   771
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   772
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   773
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   774
  TypeStackSlotEntries(int base_off, int nb_entries)
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   775
    : TypeEntries(base_off), _number_of_entries(nb_entries) {}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   776
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   777
  static int compute_cell_count(Symbol* signature, bool include_receiver, int max);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   778
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   779
  void post_initialize(Symbol* signature, bool has_receiver, bool include_receiver);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   780
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   781
  // offset of cell for stack slot for entry i within this block of cells for a TypeStackSlotEntries
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   782
  static int stack_slot_local_offset(int i) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   783
    return i * per_arg_cell_count + stack_slot_entry;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   784
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   785
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   786
  // offset of cell for type for entry i within this block of cells for a TypeStackSlotEntries
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   787
  static int type_local_offset(int i) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   788
    return i * per_arg_cell_count + type_entry;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   789
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   790
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   791
  // stack slot for entry i
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   792
  uint stack_slot(int i) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   793
    assert(i >= 0 && i < _number_of_entries, "oob");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   794
    return _pd->uint_at(stack_slot_offset(i));
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   795
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   796
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   797
  // set stack slot for entry i
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   798
  void set_stack_slot(int i, uint num) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   799
    assert(i >= 0 && i < _number_of_entries, "oob");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   800
    _pd->set_uint_at(stack_slot_offset(i), num);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   801
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   802
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   803
  // type for entry i
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   804
  intptr_t type(int i) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   805
    assert(i >= 0 && i < _number_of_entries, "oob");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   806
    return _pd->intptr_at(type_offset(i));
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   807
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   808
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   809
  // set type for entry i
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   810
  void set_type(int i, intptr_t k) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   811
    assert(i >= 0 && i < _number_of_entries, "oob");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   812
    _pd->set_intptr_at(type_offset(i), k);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   813
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   814
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   815
  static ByteSize per_arg_size() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   816
    return in_ByteSize(per_arg_cell_count * DataLayout::cell_size);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   817
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   818
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   819
  static int per_arg_count() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   820
    return per_arg_cell_count ;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   821
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   822
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   823
  // GC support
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   824
  void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   825
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   826
#ifndef PRODUCT
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   827
  void print_data_on(outputStream* st) const;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   828
#endif
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   829
};
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   830
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   831
// Type entry used for return from a call. A single cell to record the
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   832
// type.
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   833
class ReturnTypeEntry : public TypeEntries {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   834
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   835
private:
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   836
  enum {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   837
    cell_count = 1
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   838
  };
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   839
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   840
public:
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   841
  ReturnTypeEntry(int base_off)
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   842
    : TypeEntries(base_off) {}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   843
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   844
  void post_initialize() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   845
    set_type(type_none());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   846
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   847
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   848
  intptr_t type() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   849
    return _pd->intptr_at(_base_off);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   850
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   851
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   852
  void set_type(intptr_t k) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   853
    _pd->set_intptr_at(_base_off, k);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   854
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   855
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   856
  static int static_cell_count() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   857
    return cell_count;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   858
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   859
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   860
  static ByteSize size() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   861
    return in_ByteSize(cell_count * DataLayout::cell_size);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   862
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   863
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   864
  ByteSize type_offset() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   865
    return DataLayout::cell_offset(_base_off);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   866
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   867
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   868
  // GC support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   869
  void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   870
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   871
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   872
  void print_data_on(outputStream* st) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   873
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   874
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   875
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   876
// Entries to collect type information at a call: contains arguments
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   877
// (TypeStackSlotEntries), a return type (ReturnTypeEntry) and a
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   878
// number of cells. Because the number of cells for the return type is
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   879
// smaller than the number of cells for the type of an arguments, the
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   880
// number of cells is used to tell how many arguments are profiled and
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   881
// whether a return value is profiled. See has_arguments() and
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   882
// has_return().
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   883
class TypeEntriesAtCall {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   884
private:
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   885
  static int stack_slot_local_offset(int i) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   886
    return header_cell_count() + TypeStackSlotEntries::stack_slot_local_offset(i);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   887
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   888
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   889
  static int argument_type_local_offset(int i) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   890
    return header_cell_count() + TypeStackSlotEntries::type_local_offset(i);;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   891
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   892
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   893
public:
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   894
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   895
  static int header_cell_count() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   896
    return 1;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   897
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   898
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   899
  static int cell_count_local_offset() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   900
    return 0;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   901
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   902
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   903
  static int compute_cell_count(BytecodeStream* stream);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   904
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   905
  static void initialize(DataLayout* dl, int base, int cell_count) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   906
    int off = base + cell_count_local_offset();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   907
    dl->set_cell_at(off, cell_count - base - header_cell_count());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   908
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   909
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   910
  static bool arguments_profiling_enabled();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   911
  static bool return_profiling_enabled();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   912
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   913
  // Code generation support
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   914
  static ByteSize cell_count_offset() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   915
    return in_ByteSize(cell_count_local_offset() * DataLayout::cell_size);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   916
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   917
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   918
  static ByteSize args_data_offset() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   919
    return in_ByteSize(header_cell_count() * DataLayout::cell_size);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   920
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   921
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   922
  static ByteSize stack_slot_offset(int i) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   923
    return in_ByteSize(stack_slot_local_offset(i) * DataLayout::cell_size);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   924
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   925
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   926
  static ByteSize argument_type_offset(int i) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   927
    return in_ByteSize(argument_type_local_offset(i) * DataLayout::cell_size);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   928
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   929
};
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   930
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   931
// CallTypeData
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   932
//
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   933
// A CallTypeData is used to access profiling information about a non
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   934
// virtual call for which we collect type information about arguments
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   935
// and return value.
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   936
class CallTypeData : public CounterData {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   937
private:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   938
  // entries for arguments if any
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   939
  TypeStackSlotEntries _args;
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   940
  // entry for return type if any
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   941
  ReturnTypeEntry _ret;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   942
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   943
  int cell_count_global_offset() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   944
    return CounterData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   945
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   946
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   947
  // number of cells not counting the header
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   948
  int cell_count_no_header() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   949
    return uint_at(cell_count_global_offset());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   950
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   951
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   952
  void check_number_of_arguments(int total) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   953
    assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   954
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   955
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   956
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   957
  CallTypeData(DataLayout* layout) :
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   958
    CounterData(layout),
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   959
    _args(CounterData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   960
    _ret(cell_count() - ReturnTypeEntry::static_cell_count())
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   961
  {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   962
    assert(layout->tag() == DataLayout::call_type_data_tag, "wrong type");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   963
    // Some compilers (VC++) don't want this passed in member initialization list
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   964
    _args.set_profile_data(this);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   965
    _ret.set_profile_data(this);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   966
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   967
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   968
  const TypeStackSlotEntries* args() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   969
    assert(has_arguments(), "no profiling of arguments");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   970
    return &_args;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   971
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   972
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   973
  const ReturnTypeEntry* ret() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   974
    assert(has_return(), "no profiling of return value");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   975
    return &_ret;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   976
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   977
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   978
  virtual bool is_CallTypeData() const { return true; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   979
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   980
  static int static_cell_count() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   981
    return -1;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   982
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   983
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   984
  static int compute_cell_count(BytecodeStream* stream) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   985
    return CounterData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   986
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   987
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   988
  static void initialize(DataLayout* dl, int cell_count) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   989
    TypeEntriesAtCall::initialize(dl, CounterData::static_cell_count(), cell_count);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   990
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   991
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   992
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   993
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   994
  virtual int cell_count() const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   995
    return CounterData::static_cell_count() +
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   996
      TypeEntriesAtCall::header_cell_count() +
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   997
      int_at_unchecked(cell_count_global_offset());
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   998
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
   999
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1000
  int number_of_arguments() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1001
    return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1002
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1003
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1004
  void set_argument_type(int i, Klass* k) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1005
    assert(has_arguments(), "no arguments!");
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1006
    intptr_t current = _args.type(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1007
    _args.set_type(i, TypeEntries::with_status(k, current));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1008
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1009
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1010
  void set_return_type(Klass* k) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1011
    assert(has_return(), "no return!");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1012
    intptr_t current = _ret.type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1013
    _ret.set_type(TypeEntries::with_status(k, current));
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1014
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1015
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1016
  // An entry for a return value takes less space than an entry for an
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1017
  // argument so if the number of cells exceeds the number of cells
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1018
  // needed for an argument, this object contains type information for
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1019
  // at least one argument.
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1020
  bool has_arguments() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1021
    bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1022
    assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1023
    return res;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1024
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1025
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1026
  // An entry for a return value takes less space than an entry for an
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1027
  // argument, so if the remainder of the number of cells divided by
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1028
  // the number of cells for an argument is not null, a return value
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1029
  // is profiled in this object.
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1030
  bool has_return() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1031
    bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1032
    assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1033
    return res;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1034
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1035
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1036
  // Code generation support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1037
  static ByteSize args_data_offset() {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1038
    return cell_offset(CounterData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1039
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1040
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1041
  // GC support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1042
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1043
    if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1044
      _args.clean_weak_klass_links(is_alive_closure);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1045
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1046
    if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1047
      _ret.clean_weak_klass_links(is_alive_closure);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1048
    }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1049
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1050
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1051
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1052
  virtual void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
// A ReceiverTypeData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
// 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
  1060
// that the check is reached, and a series of (Klass*, count) pairs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
// which are used to store a type profile for the receiver of the check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
class ReceiverTypeData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    receiver0_offset = counter_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    count0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
    assert(layout->tag() == DataLayout::receiver_type_data_tag ||
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1073
           layout->tag() == DataLayout::virtual_call_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1074
           layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1077
  virtual bool is_ReceiverTypeData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1083
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  // Direct accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  static uint row_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
    return TypeProfileWidth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  static int receiver_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
    return receiver0_offset + row * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  static int receiver_count_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    return count0_offset + row * receiver_type_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1098
  Klass* receiver(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    assert(row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1101
    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
  1102
    assert(recv == NULL || recv->is_klass(), "wrong type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    return recv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1106
  void set_receiver(uint row, Klass* k) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1107
    assert((uint)row < row_limit(), "oob");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1108
    set_intptr_at(receiver_cell_index(row), (uintptr_t)k);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1109
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1110
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1111
  uint receiver_count(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
    assert(row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    return uint_at(receiver_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1116
  void set_receiver_count(uint row, uint count) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1117
    assert(row < row_limit(), "oob");
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1118
    set_uint_at(receiver_count_cell_index(row), count);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1119
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1120
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1121
  void clear_row(uint row) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1122
    assert(row < row_limit(), "oob");
4892
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1123
    // Clear total count - indicator of polymorphic call site.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1124
    // 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
  1125
    // 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
  1126
    // 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
  1127
    // 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
  1128
    // 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
  1129
    // 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
  1130
    // 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
  1131
    // 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
  1132
    // with updated MDO after executing method in Interpreter.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1133
    // 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
  1134
    // during next call execution.
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1135
    //
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1136
    // 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
  1137
    // 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
  1138
    //
e977b527544a 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 4754
diff changeset
  1139
    set_count(0);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1140
    set_receiver(row, NULL);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1141
    set_receiver_count(row, 0);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1142
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 670
diff changeset
  1143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  static ByteSize receiver_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    return cell_offset(receiver_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  static ByteSize receiver_count_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    return cell_offset(receiver_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  static ByteSize receiver_type_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    return cell_offset(static_cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1156
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1159
  void print_receiver_data_on(outputStream* st) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1160
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
// VirtualCallData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
// A VirtualCallData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
// virtual call.  For now, it has nothing more than a ReceiverTypeData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
class VirtualCallData : public ReceiverTypeData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1171
    assert(layout->tag() == DataLayout::virtual_call_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1172
           layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1175
  virtual bool is_VirtualCallData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
    // At this point we could add more profile state, e.g., for arguments.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    // But for now it's the same size as the base record type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    return ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1183
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  // Direct accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  static ByteSize virtual_call_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    return cell_offset(static_cell_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1193
  void print_data_on(outputStream* st) const;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1194
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1195
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1196
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1197
// VirtualCallTypeData
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1198
//
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1199
// A VirtualCallTypeData is used to access profiling information about
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1200
// a virtual call for which we collect type information about
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1201
// arguments and return value.
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1202
class VirtualCallTypeData : public VirtualCallData {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1203
private:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1204
  // entries for arguments if any
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1205
  TypeStackSlotEntries _args;
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1206
  // entry for return type if any
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1207
  ReturnTypeEntry _ret;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1208
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1209
  int cell_count_global_offset() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1210
    return VirtualCallData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1211
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1212
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1213
  // number of cells not counting the header
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1214
  int cell_count_no_header() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1215
    return uint_at(cell_count_global_offset());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1216
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1217
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1218
  void check_number_of_arguments(int total) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1219
    assert(number_of_arguments() == total, "should be set in DataLayout::initialize");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1220
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1221
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1222
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1223
  VirtualCallTypeData(DataLayout* layout) :
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1224
    VirtualCallData(layout),
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1225
    _args(VirtualCallData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()),
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1226
    _ret(cell_count() - ReturnTypeEntry::static_cell_count())
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1227
  {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1228
    assert(layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1229
    // Some compilers (VC++) don't want this passed in member initialization list
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1230
    _args.set_profile_data(this);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1231
    _ret.set_profile_data(this);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1232
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1233
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1234
  const TypeStackSlotEntries* args() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1235
    assert(has_arguments(), "no profiling of arguments");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1236
    return &_args;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1237
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1238
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1239
  const ReturnTypeEntry* ret() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1240
    assert(has_return(), "no profiling of return value");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1241
    return &_ret;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1242
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1243
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1244
  virtual bool is_VirtualCallTypeData() const { return true; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1245
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1246
  static int static_cell_count() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1247
    return -1;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1248
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1249
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1250
  static int compute_cell_count(BytecodeStream* stream) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1251
    return VirtualCallData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1252
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1253
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1254
  static void initialize(DataLayout* dl, int cell_count) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1255
    TypeEntriesAtCall::initialize(dl, VirtualCallData::static_cell_count(), cell_count);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1256
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1257
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1258
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1259
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1260
  virtual int cell_count() const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1261
    return VirtualCallData::static_cell_count() +
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1262
      TypeEntriesAtCall::header_cell_count() +
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1263
      int_at_unchecked(cell_count_global_offset());
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1264
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1265
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1266
  int number_of_arguments() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1267
    return cell_count_no_header() / TypeStackSlotEntries::per_arg_count();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1268
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1269
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1270
  void set_argument_type(int i, Klass* k) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1271
    assert(has_arguments(), "no arguments!");
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1272
    intptr_t current = _args.type(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1273
    _args.set_type(i, TypeEntries::with_status(k, current));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1274
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1275
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1276
  void set_return_type(Klass* k) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1277
    assert(has_return(), "no return!");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1278
    intptr_t current = _ret.type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1279
    _ret.set_type(TypeEntries::with_status(k, current));
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1280
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1281
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1282
  // An entry for a return value takes less space than an entry for an
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1283
  // argument, so if the remainder of the number of cells divided by
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1284
  // the number of cells for an argument is not null, a return value
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1285
  // is profiled in this object.
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1286
  bool has_return() const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1287
    bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1288
    assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1289
    return res;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1290
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1291
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1292
  // An entry for a return value takes less space than an entry for an
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1293
  // argument so if the number of cells exceeds the number of cells
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1294
  // needed for an argument, this object contains type information for
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1295
  // at least one argument.
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1296
  bool has_arguments() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1297
    bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1298
    assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1299
    return res;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1300
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1301
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1302
  // Code generation support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1303
  static ByteSize args_data_offset() {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1304
    return cell_offset(VirtualCallData::static_cell_count()) + TypeEntriesAtCall::args_data_offset();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1305
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1306
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1307
  // GC support
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1308
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1309
    ReceiverTypeData::clean_weak_klass_links(is_alive_closure);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1310
    if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1311
      _args.clean_weak_klass_links(is_alive_closure);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1312
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1313
    if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1314
      _ret.clean_weak_klass_links(is_alive_closure);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1315
    }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1316
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1317
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1318
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1319
  virtual void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
// RetData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
// A RetData is used to access profiling information for a ret bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
// It is composed of a count of the number of times that the ret has
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
// been executed, followed by a series of triples of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
// (bci, count, di) which count the number of times that some bci was the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
// target of the ret and cache a corresponding data displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
class RetData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
    bci0_offset = counter_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
    count0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
    displacement0_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
    ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  void set_bci(uint row, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
    set_int_at(bci0_offset + row * ret_row_cell_count, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  void release_set_bci(uint row, int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    // 'release' when setting the bci acts as a valid flag for other
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    // threads wrt bci_count and bci_displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  void set_bci_count(uint row, uint count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
    set_uint_at(count0_offset + row * ret_row_cell_count, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  void set_bci_displacement(uint row, int disp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
    set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  RetData(DataLayout* layout) : CounterData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
    assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1362
  virtual bool is_RetData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
    no_bci = -1 // value of bci when bci1/2 are not in use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
    return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1372
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  static uint row_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    return BciProfileWidth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  static int bci_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
    return bci0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  static int bci_count_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    return count0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  static int bci_displacement_cell_index(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
    return displacement0_offset + row * ret_row_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  // Direct accessors
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1390
  int bci(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
    return int_at(bci_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1393
  uint bci_count(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
    return uint_at(bci_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1396
  int bci_displacement(uint row) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
    return int_at(bci_displacement_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
  // Interpreter Runtime support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1401
  address fixup_ret(int return_bci, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  static ByteSize bci_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
    return cell_offset(bci_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  static ByteSize bci_count_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
    return cell_offset(bci_count_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  static ByteSize bci_displacement_offset(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
    return cell_offset(bci_displacement_cell_index(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1415
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1418
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
// BranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
// A BranchData is used to access profiling data for a two-way branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
// It consists of taken and not_taken counts as well as a data displacement
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
// for the taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
class BranchData : public JumpData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    not_taken_off_set = jump_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
    branch_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  void set_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
    set_int_at(displacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  BranchData(DataLayout* layout) : JumpData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
    assert(layout->tag() == DataLayout::branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1443
  virtual bool is_BranchData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    return branch_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1449
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    return static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  // Direct accessor
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1454
  uint not_taken() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    return uint_at(not_taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
  1458
  void set_not_taken(uint cnt) {
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
  1459
    set_uint_at(not_taken_off_set, cnt);
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
  1460
  }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 9446
diff changeset
  1461
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  uint inc_not_taken() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
    uint cnt = not_taken() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
    // Did we wrap? Will compiler screw us??
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
    if (cnt == 0) cnt--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
    set_uint_at(not_taken_off_set, cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  static ByteSize not_taken_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
    return cell_offset(not_taken_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  static ByteSize branch_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    return cell_offset(branch_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1479
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1482
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
// ArrayData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
// A ArrayData is a base class for accessing profiling data which does
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
// not have a statically known size.  It consists of an array length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
// and an array start.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
class ArrayData : public ProfileData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  friend class DataLayout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    array_len_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
    array_start_off_set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1500
  uint array_uint_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    return uint_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1504
  int array_int_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
    return int_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1508
  oop array_oop_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
    return oop_at(aindex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  void array_set_int_at(int index, int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
    int aindex = index + array_start_off_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
    set_int_at(aindex, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
  // Code generation support for subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
  static ByteSize array_element_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
    return cell_offset(array_start_off_set + index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  ArrayData(DataLayout* layout) : ProfileData(layout) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1525
  virtual bool is_ArrayData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
  static int static_cell_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1531
  int array_len() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
    return int_at_unchecked(array_len_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1535
  virtual int cell_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
    return array_len() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
  static ByteSize array_len_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
    return cell_offset(array_len_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
  static ByteSize array_start_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    return cell_offset(array_start_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
// MultiBranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
// A MultiBranchData is used to access profiling information for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
// a multi-way branch (*switch bytecodes).  It consists of a series
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
// of (count, displacement) pairs, which count the number of times each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
// case was taken and specify the data displacment for each branch target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
class MultiBranchData : public ArrayData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
    default_count_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
    default_disaplacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
    case_array_start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
    relative_count_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
    relative_displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
    per_case_cell_count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
  void set_default_displacement(int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
    array_set_int_at(default_disaplacement_off_set, displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
  void set_displacement_at(int index, int displacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
    array_set_int_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
                     index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
                     relative_displacement_off_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
                     displacement);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
  MultiBranchData(DataLayout* layout) : ArrayData(layout) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
    assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1582
  virtual bool is_MultiBranchData() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
  static int compute_cell_count(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1586
  int number_of_cases() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
    int alen = array_len() - 2; // get rid of default case here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
    assert(alen % per_case_cell_count == 0, "must be even");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
    return (alen / per_case_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1592
  uint default_count() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    return array_uint_at(default_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1595
  int default_displacement() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
    return array_int_at(default_disaplacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1599
  uint count_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
    return array_uint_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
                         index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
                         relative_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1604
  int displacement_at(int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
    return array_int_at(case_array_start +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
                        index * per_case_cell_count +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
                        relative_displacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
  // Code generation support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
  static ByteSize default_count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
    return array_element_offset(default_count_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
  static ByteSize default_displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
    return array_element_offset(default_disaplacement_off_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
  static ByteSize case_count_offset(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
    return case_array_offset() +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
           (per_case_size() * index) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
           relative_count_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  static ByteSize case_array_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
    return array_element_offset(case_array_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  static ByteSize per_case_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
    return in_ByteSize(per_case_cell_count) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
  static ByteSize relative_count_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    return in_ByteSize(relative_count_off_set) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
  static ByteSize relative_displacement_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
    return in_ByteSize(relative_displacement_off_set) * cell_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  // Specific initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1636
  void post_initialize(BytecodeStream* stream, MethodData* mdo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1639
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1643
class ArgInfoData : public ArrayData {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1644
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1645
public:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1646
  ArgInfoData(DataLayout* layout) : ArrayData(layout) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1647
    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
  1648
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1649
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1650
  virtual bool is_ArgInfoData() const { return true; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1651
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1652
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1653
  int number_of_args() const {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1654
    return array_len();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1655
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1656
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1657
  uint arg_modified(int arg) const {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1658
    return array_uint_at(arg);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1659
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1660
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1661
  void set_arg_modified(int arg, uint val) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1662
    array_set_int_at(arg, val);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1663
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1664
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1665
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1666
  void print_data_on(outputStream* st) const;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1667
#endif
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1668
};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1669
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1670
// ParametersTypeData
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1671
//
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1672
// A ParametersTypeData is used to access profiling information about
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1673
// types of parameters to a method
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1674
class ParametersTypeData : public ArrayData {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1675
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1676
private:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1677
  TypeStackSlotEntries _parameters;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1678
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1679
  static int stack_slot_local_offset(int i) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1680
    assert_profiling_enabled();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1681
    return array_start_off_set + TypeStackSlotEntries::stack_slot_local_offset(i);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1682
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1683
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1684
  static int type_local_offset(int i) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1685
    assert_profiling_enabled();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1686
    return array_start_off_set + TypeStackSlotEntries::type_local_offset(i);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1687
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1688
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1689
  static bool profiling_enabled();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1690
  static void assert_profiling_enabled() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1691
    assert(profiling_enabled(), "method parameters profiling should be on");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1692
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1693
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1694
public:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1695
  ParametersTypeData(DataLayout* layout) : ArrayData(layout), _parameters(1, number_of_parameters()) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1696
    assert(layout->tag() == DataLayout::parameters_type_data_tag, "wrong type");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1697
    // Some compilers (VC++) don't want this passed in member initialization list
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1698
    _parameters.set_profile_data(this);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1699
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1700
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1701
  static int compute_cell_count(Method* m);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1702
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1703
  virtual bool is_ParametersTypeData() const { return true; }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1704
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1705
  virtual void post_initialize(BytecodeStream* stream, MethodData* mdo);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1706
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1707
  int number_of_parameters() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1708
    return array_len() / TypeStackSlotEntries::per_arg_count();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1709
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1710
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1711
  const TypeStackSlotEntries* parameters() const { return &_parameters; }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1712
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1713
  uint stack_slot(int i) const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1714
    return _parameters.stack_slot(i);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1715
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1716
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1717
  void set_type(int i, Klass* k) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1718
    intptr_t current = _parameters.type(i);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1719
    _parameters.set_type(i, TypeEntries::with_status((intptr_t)k, current));
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1720
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1721
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1722
  virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1723
    _parameters.clean_weak_klass_links(is_alive_closure);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1724
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1725
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1726
#ifndef PRODUCT
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1727
  virtual void print_data_on(outputStream* st) const;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1728
#endif
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1729
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1730
  static ByteSize stack_slot_offset(int i) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1731
    return cell_offset(stack_slot_local_offset(i));
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1732
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1733
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1734
  static ByteSize type_offset(int i) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1735
    return cell_offset(type_local_offset(i));
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1736
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1737
};
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1738
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1739
// MethodData*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1741
// A MethodData* holds information which has been collected about
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
// a method.  Its layout looks like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
// | header                    |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
// | klass                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
// | method                    |
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1749
// | size of the MethodData* |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
// | Data entries...           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
// |   (variable size)         |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
// |                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
// .                           .
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
// |                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
// -----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
// The data entry area is a heterogeneous array of DataLayouts. Each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
// DataLayout in the array corresponds to a specific bytecode in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
// method.  The entries in the array are sorted by the corresponding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
// bytecode.  Access to the data is via resource-allocated ProfileData,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
// which point to the underlying blocks of DataLayout structures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
// During interpretation, if profiling in enabled, the interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
// maintains a method data pointer (mdp), which points at the entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
// in the array corresponding to the current bci.  In the course of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
// intepretation, when a bytecode is encountered that has profile data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
// associated with it, the entry pointed to by mdp is updated, then the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
// mdp is adjusted to point to the next appropriate DataLayout.  If mdp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
// is NULL to begin with, the interpreter assumes that the current method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
// is not (yet) being profiled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1775
// In MethodData* parlance, "dp" is a "data pointer", the actual address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
// of a DataLayout element.  A "di" is a "data index", the offset in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
// from the base of the data entry array.  A "displacement" is the byte offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
// in certain ProfileData objects that indicate the amount the mdp must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
// adjusted in the event of a change in control flow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1782
class MethodData : public Metadata {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
  friend class ProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1787
  // Back pointer to the Method*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1788
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  // Size of this oop in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
  int _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  // Cached hint for bci_to_dp and bci_to_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  int _hint_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1796
  MethodData(methodHandle method, int size, TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1797
public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1798
  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
  1799
  MethodData() {}; // For ciMethodData
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1800
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1801
  bool is_methodData() const volatile { return true; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1802
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  // Whole-method sticky bits and flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
  enum {
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8652
diff changeset
  1805
    _trap_hist_limit    = 17,   // decoupled from Deoptimization::Reason_LIMIT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
    _trap_hist_mask     = max_jubyte,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
    _extra_data_count   = 4     // extra DataLayout headers, for trap history
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  }; // Public flag values
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  uint _nof_decompiles;             // count of all nmethod removals
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
  uint _nof_overflow_recompiles;    // recompile count, excluding recomp. bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
  uint _nof_overflow_traps;         // trap count, excluding _trap_hist
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    intptr_t _align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    u1 _array[_trap_hist_limit];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
  } _trap_hist;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  // Support for interprocedural escape analysis, from Thomas Kotzmann.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
  intx              _eflags;          // flags on escape information
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
  intx              _arg_local;       // bit set of non-escaping arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
  intx              _arg_stack;       // bit set of stack-allocatable arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
  intx              _arg_returned;    // bit set of returned arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1824
  int _creation_mileage;              // method mileage at MDO creation
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1825
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1826
  // How many invocations has this MDO seen?
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1827
  // These counters are used to determine the exact age of MDO.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1828
  // We need those because in tiered a method can be concurrently
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1829
  // executed at different levels.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1830
  InvocationCounter _invocation_counter;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1831
  // Same for backedges.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1832
  InvocationCounter _backedge_counter;
8322
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1833
  // Counter values at the time profiling started.
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1834
  int               _invocation_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1835
  int               _backedge_counter_start;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1836
  // Number of loops and blocks is computed when compiling the first
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1837
  // time with C1. It is used to determine if method is trivial.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1838
  short             _num_loops;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1839
  short             _num_blocks;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1840
  // Highest compile level this method has ever seen.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1841
  u1                _highest_comp_level;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1842
  // Same for OSR level
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1843
  u1                _highest_osr_comp_level;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1844
  // Does this method contain anything worth profiling?
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1845
  bool              _would_profile;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
  // Size of _data array in bytes.  (Excludes header and extra_data fields.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
  int _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1850
  // data index for the area dedicated to parameters. -1 if no
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1851
  // parameter profiling.
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1852
  int _parameters_type_data_di;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1853
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
  // Beginning of the data entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
  intptr_t _data[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
  // Helper for size computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
  static int compute_data_size(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
  static int bytecode_cell_count(Bytecodes::Code code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
  enum { no_profile_data = -1, variable_cell_count = -2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
  // Helper for initialization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1863
  DataLayout* data_layout_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
    assert(data_index % sizeof(intptr_t) == 0, "unaligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
    return (DataLayout*) (((address)_data) + data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
  // Initialize an individual data segment.  Returns the size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  // the segment in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
  int initialize_data(BytecodeStream* stream, int data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
  // Helper for data_at
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1873
  DataLayout* limit_data_position() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
    return (DataLayout*)((address)data_base() + _data_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1876
  bool out_of_bounds(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
    return data_index >= data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
  // Give each of the data entries a chance to perform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  // data initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
  void post_initialize(BytecodeStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
  // hint accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
  int      hint_di() const  { return _hint_di; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
  void set_hint_di(int di)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
    assert(!out_of_bounds(di), "hint_di out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
    _hint_di = di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
  ProfileData* data_before(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
    // avoid SEGV on this edge case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
    if (data_size() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
    int hint = hint_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
    if (data_layout_at(hint)->bci() <= bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
      return data_at(hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
    return first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
  // 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
  1901
  int first_di() const { return 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
  // Find or create an extra ProfileData:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
  ProfileData* bci_to_extra_data(int bci, bool create_if_missing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1906
  // return the argument info cell
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1907
  ArgInfoData *arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1908
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1909
  enum {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1910
    no_type_profile = 0,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1911
    type_profile_jsr292 = 1,
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1912
    type_profile_all = 2
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1913
  };
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1914
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1915
  static bool profile_jsr292(methodHandle m, int bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1916
  static int profile_arguments_flag();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1917
  static bool profile_arguments_jsr292_only();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1918
  static bool profile_all_arguments();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1919
  static bool profile_arguments_for_invoke(methodHandle m, int bci);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1920
  static int profile_return_flag();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1921
  static bool profile_all_return();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1922
  static bool profile_return_for_invoke(methodHandle m, int bci);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1923
  static int profile_parameters_flag();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1924
  static bool profile_parameters_jsr292_only();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1925
  static bool profile_all_parameters();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  1926
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
  static int header_size() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1929
    return sizeof(MethodData)/wordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1932
  // Compute the size of a MethodData* before it is created.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
  static int compute_allocation_size_in_bytes(methodHandle method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
  static int compute_allocation_size_in_words(methodHandle method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
  static int compute_extra_data_count(int data_size, int empty_bc_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
  // Determine if a given bytecode can have profile information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
  static bool bytecode_has_profile(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
    return bytecode_cell_count(code) != no_profile_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1942
  // reset into original state
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  1943
  void init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
  // My size
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1946
  int size_in_bytes() const { return _size; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  1947
  int size() const    { return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord); }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1948
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1949
  void collect_statistics(KlassSizeStats *sz) const;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1950
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
  int      creation_mileage() const  { return _creation_mileage; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
  void set_creation_mileage(int x)   { _creation_mileage = x; }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1954
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1955
  int invocation_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1956
    if (invocation_counter()->carry()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1957
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1958
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1959
    return invocation_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1960
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1961
  int backedge_count() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1962
    if (backedge_counter()->carry()) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1963
      return InvocationCounter::count_limit;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1964
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1965
    return backedge_counter()->count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1966
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1967
8322
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1968
  int invocation_count_start() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1969
    if (invocation_counter()->carry()) {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1970
      return 0;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1971
    }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1972
    return _invocation_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1973
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1974
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1975
  int backedge_count_start() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1976
    if (backedge_counter()->carry()) {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1977
      return 0;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1978
    }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1979
    return _backedge_counter_start;
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1980
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1981
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1982
  int invocation_count_delta() { return invocation_count() - invocation_count_start(); }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1983
  int backedge_count_delta()   { return backedge_count()   - backedge_count_start();   }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1984
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1985
  void reset_start_counters() {
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1986
    _invocation_counter_start = invocation_count();
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1987
    _backedge_counter_start = backedge_count();
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1988
  }
8f11ba61239f 7017434: Tiered needs to support reprofiling
iveresov
parents: 7397
diff changeset
  1989
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1990
  InvocationCounter* invocation_counter()     { return &_invocation_counter; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1991
  InvocationCounter* backedge_counter()       { return &_backedge_counter;   }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1992
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1993
  void set_would_profile(bool p)              { _would_profile = p;    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1994
  bool would_profile() const                  { return _would_profile; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1995
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16689
diff changeset
  1996
  int highest_comp_level() const              { return _highest_comp_level;      }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1997
  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
  1998
  int highest_osr_comp_level() const          { return _highest_osr_comp_level;  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1999
  void set_highest_osr_comp_level(int level)  { _highest_osr_comp_level = level; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2000
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2001
  int num_loops() const                       { return _num_loops;  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2002
  void set_num_loops(int n)                   { _num_loops = n;     }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2003
  int num_blocks() const                      { return _num_blocks; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2004
  void set_num_blocks(int n)                  { _num_blocks = n;    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2005
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
  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
  2007
  static int mileage_of(Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
  // Support for interprocedural escape analysis, from Thomas Kotzmann.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
  enum EscapeFlag {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
    estimated    = 1 << 0,
251
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  2012
    return_local = 1 << 1,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  2013
    return_allocated = 1 << 2,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  2014
    allocated_escapes = 1 << 3,
cb2e73f71205 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 218
diff changeset
  2015
    unknown_modified = 1 << 4
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
  intx eflags()                                  { return _eflags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
  intx arg_local()                               { return _arg_local; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
  intx arg_stack()                               { return _arg_stack; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
  intx arg_returned()                            { return _arg_returned; }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  2022
  uint arg_modified(int a)                       { ArgInfoData *aid = arg_info();
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15481
diff changeset
  2023
                                                   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
  2024
                                                   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
  2025
                                                   return aid->arg_modified(a); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
  void set_eflags(intx v)                        { _eflags = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
  void set_arg_local(intx v)                     { _arg_local = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  void set_arg_stack(intx v)                     { _arg_stack = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
  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
  2031
  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
  2032
                                                   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
  2033
                                                   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
  2034
                                                   aid->set_arg_modified(a, v); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
  void clear_escape_info()                       { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
  // Location and size of data area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
  address data_base() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
    return (address) _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2042
  int data_size() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
    return _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
  // Accessors
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2047
  Method* method() const { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
  // 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
  2050
  ProfileData* data_at(int data_index) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
  // Walk through the data in order.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2053
  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
  2054
  ProfileData* next_data(ProfileData* current) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2055
  bool is_valid(ProfileData* current) const { return current != NULL; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
  // 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
  2058
  int dp_to_di(address dp) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
    return dp - ((address)_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
  address di_to_dp(int di) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
    return (address)data_layout_at(di);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
  // bci to di/dp conversion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
  address bci_to_dp(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  int bci_to_di(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
    return dp_to_di(bci_to_dp(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  // Get the data at an arbitrary bci, or NULL if there is none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  ProfileData* bci_to_data(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  // Same, but try to create an extra_data record if one is needed:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
  ProfileData* allocate_bci_to_data(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
    ProfileData* data = bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
    return (data != NULL) ? data : bci_to_extra_data(bci, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  // 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
  2082
  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
  2083
  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
  2084
  int extra_data_size() const { return (address)extra_data_limit()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
                               - (address)extra_data_base(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  static DataLayout* next_extra(DataLayout* dp) { return (DataLayout*)((address)dp + in_bytes(DataLayout::cell_offset(0))); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
  // Return (uint)-1 for overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
  uint trap_count(int reason) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
    assert((uint)reason < _trap_hist_limit, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
    return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  // For loops:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
  static uint trap_reason_limit() { return _trap_hist_limit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
  static uint trap_count_limit()  { return _trap_hist_mask; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
  uint inc_trap_count(int reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
    // Count another trap, anywhere in this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
    assert(reason >= 0, "must be single trap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
    if ((uint)reason < _trap_hist_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
      uint cnt1 = 1 + _trap_hist._array[reason];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
      if ((cnt1 & _trap_hist_mask) != 0) {  // if no counter overflow...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
        _trap_hist._array[reason] = cnt1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
        return cnt1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
        return _trap_hist_mask + (++_nof_overflow_traps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
      // Could not represent the count in the histogram.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
      return (++_nof_overflow_traps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
  uint overflow_trap_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
    return _nof_overflow_traps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
  uint overflow_recompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
    return _nof_overflow_recompiles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
  void inc_overflow_recompile_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
    _nof_overflow_recompiles += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
  uint decompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
    return _nof_decompiles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
  void inc_decompile_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
    _nof_decompiles += 1;
4754
8aef16f24e16 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 3795
diff changeset
  2127
    if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
15479
e3c00ec80145 8006613: adding reason to made_not_compilable
vlivanov
parents: 13728
diff changeset
  2128
      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
  2129
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2132
  // Return pointer to area dedicated to parameters in MDO
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2133
  ParametersTypeData* parameters_type_data() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2134
    return _parameters_type_data_di != -1 ? data_layout_at(_parameters_type_data_di)->data_in()->as_ParametersTypeData() : NULL;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2135
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2136
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2137
  int parameters_type_data_di() const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2138
    assert(_parameters_type_data_di != -1, "no args type data");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2139
    return _parameters_type_data_di;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2140
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2141
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  // Support for code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  static ByteSize data_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2144
    return byte_offset_of(MethodData, _data[0]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2147
  static ByteSize invocation_counter_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2148
    return byte_offset_of(MethodData, _invocation_counter);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2149
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2150
  static ByteSize backedge_counter_offset() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2151
    return byte_offset_of(MethodData, _backedge_counter);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2152
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  2153
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2154
  static ByteSize parameters_type_data_di_offset() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2155
    return byte_offset_of(MethodData, _parameters_type_data_di);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2156
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2157
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2158
  // Deallocation support - no pointer fields to deallocate
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2159
  void deallocate_contents(ClassLoaderData* loader_data) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2160
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
  // GC support
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2162
  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
  2163
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2164
  // Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2165
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2166
  void print_on      (outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2167
#endif
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2168
  void print_value_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  // printing support for method data
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2172
  void print_data_on(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2175
  const char* internal_name() const { return "{method data}"; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2176
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
  // verification
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10514
diff changeset
  2178
  void verify_on(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  void verify_data_on(outputStream* st);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  2180
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2181
  static bool profile_parameters_for_method(methodHandle m);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20282
diff changeset
  2182
  static bool profile_arguments();
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  2183
  static bool profile_return();
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  2184
  static bool profile_parameters();
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  2185
  static bool profile_return_jsr292_only();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
  2187
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
  2188
#endif // SHARE_VM_OOPS_METHODDATAOOP_HPP