hotspot/src/share/vm/oops/methodData.cpp
author roland
Wed, 09 Oct 2013 16:32:21 +0200
changeset 20702 bbe0fcde6e13
parent 17858 c292f8791cca
child 20709 034be898bf04
permissions -rw-r--r--
8023657: New type profiling points: arguments to call Summary: x86 interpreter and c1 type profiling for arguments at calls 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: 3696
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3696
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: 3696
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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "interpreter/bytecode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "interpreter/bytecodeStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "interpreter/linkResolver.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    30
#include "memory/heapInspection.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    31
#include "oops/methodData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    32
#include "prims/jvmtiRedefineClasses.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// DataLayout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Overlay for generic profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Some types of data layouts need a length field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
bool DataLayout::needs_array_len(u1 tag) {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    44
  return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Perform generic initialization of the data.  More specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// initialization occurs in overrides of ProfileData::post_initialize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _header._bits = (intptr_t)0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _header._struct._tag = tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _header._struct._bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  for (int i = 0; i < cell_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    set_cell_at(i, (intptr_t)0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  if (needs_array_len(tag)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    59
  if (tag == call_type_data_tag) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    60
    CallTypeData::initialize(this, cell_count);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    61
  } else if (tag == virtual_call_type_data_tag) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    62
    VirtualCallTypeData::initialize(this, cell_count);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    63
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    66
void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    67
  ResourceMark m;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    68
  data_in()->clean_weak_klass_links(cl);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    69
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    70
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    71
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// A ProfileData object is created to refer to a section of profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// data in a structured way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Constructor for invalid ProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
ProfileData::ProfileData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    84
void ProfileData::print_shared(outputStream* st, const char* name) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  st->print("bci: %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  st->fill_to(tab_width_one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  st->print("%s", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int trap = trap_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (trap != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    char buf[100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int flags = data()->flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  if (flags != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    st->print("flags(%d) ", flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    99
void ProfileData::tab(outputStream* st, bool first) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   100
  st->fill_to(first ? tab_width_one : tab_width_two);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// BitData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// A BitData corresponds to a one-bit flag.  This is used to indicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// whether a checkcast bytecode has seen a null value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   112
void BitData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  print_shared(st, "BitData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// A CounterData corresponds to a simple counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   123
void CounterData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  print_shared(st, "CounterData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  st->print_cr("count(%u)", count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// JumpData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// A JumpData is used to access profiling information for a direct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// branch.  It is a counter, used for counting the number of branches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// plus a data displacement, used for realigning the data pointer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// the corresponding target bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   137
void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    target = stream->dest_w();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   153
void JumpData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  print_shared(st, "JumpData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   159
int TypeStackSlotEntries::compute_cell_count(BytecodeStream* stream) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   160
  int max = TypeProfileArgsLimit;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   161
  assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   162
  Bytecode_invoke inv(stream->method(), stream->bci());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   163
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   164
  ResourceMark rm;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   165
  SignatureStream ss(inv.signature());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   166
  int args_count = MIN2(ss.reference_parameter_count(), max);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   167
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   168
  return args_count * per_arg_cell_count + (args_count > 0 ? header_cell_count() : 0);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   169
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   170
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   171
class ArgumentOffsetComputer : public SignatureInfo {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   172
private:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   173
  int _max;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   174
  GrowableArray<int> _offsets;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   175
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   176
  void set(int size, BasicType type) { _size += size; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   177
  void do_object(int begin, int end) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   178
    if (_offsets.length() < _max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   179
      _offsets.push(_size);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   180
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   181
    SignatureInfo::do_object(begin, end);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   182
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   183
  void do_array (int begin, int end) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   184
    if (_offsets.length() < _max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   185
      _offsets.push(_size);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   186
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   187
    SignatureInfo::do_array(begin, end);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   188
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   189
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   190
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   191
  ArgumentOffsetComputer(Symbol* signature, int max)
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   192
    : SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   193
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   194
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   195
  int total() { lazy_iterate_parameters(); return _size; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   196
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   197
  int off_at(int i) const { return _offsets.at(i); }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   198
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   199
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   200
void TypeStackSlotEntries::post_initialize(BytecodeStream* stream) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   201
  ResourceMark rm;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   202
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   203
  assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   204
  Bytecode_invoke inv(stream->method(), stream->bci());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   205
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   206
#ifdef ASSERT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   207
  SignatureStream ss(inv.signature());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   208
  int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   209
  assert(count > 0, "room for args type but none found?");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   210
  check_number_of_arguments(count);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   211
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   212
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   213
  int start = 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   214
  ArgumentOffsetComputer aos(inv.signature(), number_of_arguments()-start);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   215
  aos.total();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   216
  bool has_receiver = inv.has_receiver();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   217
  for (int i = start; i < number_of_arguments(); i++) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   218
    set_stack_slot(i, aos.off_at(i-start) + (has_receiver ? 1 : 0));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   219
    set_type(i, type_none());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   220
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   221
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   222
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   223
bool TypeEntries::is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   224
  return !is_type_none(p) &&
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   225
    !((Klass*)klass_part(p))->is_loader_alive(is_alive_cl);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   226
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   227
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   228
void TypeStackSlotEntries::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   229
  for (int i = 0; i < number_of_arguments(); i++) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   230
    intptr_t p = type(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   231
    if (is_loader_alive(is_alive_cl, p)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   232
      set_type(i, type_none());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   233
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   234
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   235
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   236
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   237
bool TypeStackSlotEntries::arguments_profiling_enabled() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   238
  return MethodData::profile_arguments();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   239
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   240
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   241
#ifndef PRODUCT
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   242
void TypeEntries::print_klass(outputStream* st, intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   243
  if (is_type_none(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   244
    st->print("none");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   245
  } else if (is_type_unknown(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   246
    st->print("unknown");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   247
  } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   248
    valid_klass(k)->print_value_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   249
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   250
  if (was_null_seen(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   251
    st->print(" (null seen)");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   252
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   253
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   254
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   255
void TypeStackSlotEntries::print_data_on(outputStream* st) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   256
  _pd->tab(st, true);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   257
  st->print("argument types");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   258
  for (int i = 0; i < number_of_arguments(); i++) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   259
    _pd->tab(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   260
    st->print("%d: stack(%u) ", i, stack_slot(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   261
    print_klass(st, type(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   262
    st->cr();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   263
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   264
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   265
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   266
void CallTypeData::print_data_on(outputStream* st) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   267
  CounterData::print_data_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   268
  _args.print_data_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   269
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   270
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   271
void VirtualCallTypeData::print_data_on(outputStream* st) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   272
  VirtualCallData::print_data_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   273
  _args.print_data_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   274
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   275
#endif
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   276
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
// ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// A ReceiverTypeData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// 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: 8334
diff changeset
   282
// that the check is reached, and a series of (Klass*, count) pairs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
// which are used to store a type profile for the receiver of the check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   285
void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   286
    for (uint row = 0; row < row_limit(); row++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   287
    Klass* p = receiver(row);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   288
    if (p != NULL && !p->is_loader_alive(is_alive_cl)) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   289
      clear_row(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   290
    }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   291
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   292
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   293
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   295
void ReceiverTypeData::print_receiver_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    if (receiver(row) != NULL)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  st->print_cr("count(%u) entries(%u)", count(), entries);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   302
  int total = count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   303
  for (row = 0; row < row_limit(); row++) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   304
    if (receiver(row) != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   305
      total += receiver_count(row);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   306
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   307
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      receiver(row)->print_value_on(st);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   312
      st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   316
void ReceiverTypeData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  print_shared(st, "ReceiverTypeData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   320
void VirtualCallData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  print_shared(st, "VirtualCallData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// RetData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// A RetData is used to access profiling information for a ret bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// It is composed of a count of the number of times that the ret has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// been executed, followed by a series of triples of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// (bci, count, di) which count the number of times that some bci was the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// target of the ret and cache a corresponding displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   335
void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    set_bci_displacement(row, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    set_bci(row, no_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // release so other threads see a consistent state.  bci is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // a valid flag for bci_displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  OrderAccess::release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// This routine needs to atomically update the RetData structure, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// caller needs to hold the RetData_lock before it gets here.  Since taking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// the lock can block (and allow GC) and since RetData is a ProfileData is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
// wrapper around a derived oop, taking the lock in _this_ method will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
// basically cause the 'this' pointer's _data field to contain junk after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// lock.  We require the caller to take the lock before making the ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
// structure.  Currently the only caller is InterpreterRuntime::update_mdp_for_ret
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   352
address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // First find the mdp which corresponds to the return bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  address mdp = h_mdo->bci_to_dp(return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Now check to see if any of the cache slots are open.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    if (bci(row) == no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      set_bci_displacement(row, mdp - dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      set_bci_count(row, DataLayout::counter_increment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      // Barrier to ensure displacement is written before the bci; allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      // the interpreter to read displacement without fear of race condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
      release_set_bci(row, return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  return mdp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   372
void RetData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  print_shared(st, "RetData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    if (bci(row) != no_bci)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    if (bci(row) != no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
      st->print_cr("bci(%d: count(%u) displacement(%d))",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                   bci(row), bci_count(row), bci_displacement(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// BranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
// A BranchData is used to access profiling data for a two-way branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// It consists of taken and not_taken counts as well as a data displacement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// for the taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   397
void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  int target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   407
void BranchData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  print_shared(st, "BranchData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  st->print_cr("taken(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
               taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  st->print_cr("not taken(%u)", not_taken());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
// MultiBranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
// A MultiBranchData is used to access profiling information for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
// a multi-way branch (*switch bytecodes).  It consists of a series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
// of (count, displacement) pairs, which count the number of times each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
// case was taken and specify the data displacment for each branch target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  int cell_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  if (stream->code() == Bytecodes::_tableswitch) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   427
    Bytecode_tableswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   428
    cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  } else {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   430
    Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   431
    cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  return cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
void MultiBranchData::post_initialize(BytecodeStream* stream,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   437
                                      MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  int my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  int target_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  if (stream->code() == Bytecodes::_tableswitch) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   444
    Bytecode_tableswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   445
    int len = sw.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    for (int count = 0; count < len; count++) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   448
      target = sw.dest_offset_at(count) + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   454
    target = sw.default_offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  } else {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   461
    Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   462
    int npairs = sw.number_of_pairs();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    for (int count = 0; count < npairs; count++) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   465
      LookupswitchPair pair = sw.pair_at(count);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   466
      target = pair.offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   472
    target = sw.default_offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   481
void MultiBranchData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  print_shared(st, "MultiBranchData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  st->print_cr("default_count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
               default_count(), default_displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  int cases = number_of_cases();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  for (int i = 0; i < cases; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    st->print_cr("count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
                 count_at(i), displacement_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   494
#ifndef PRODUCT
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   495
void ArgInfoData::print_data_on(outputStream* st) const {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   496
  print_shared(st, "ArgInfoData");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   497
  int nargs = number_of_args();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   498
  for (int i = 0; i < nargs; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   499
    st->print("  0x%x", arg_modified(i));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   500
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   501
  st->cr();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   502
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   503
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   504
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// ==================================================================
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   506
// MethodData*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   508
// A MethodData* holds information which has been collected about
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   511
MethodData* MethodData::allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   512
  int size = MethodData::compute_allocation_size_in_words(method);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   513
17858
c292f8791cca 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 17002
diff changeset
   514
  return new (loader_data, size, false, MetaspaceObj::MethodDataType, THREAD)
c292f8791cca 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 17002
diff changeset
   515
    MethodData(method(), size, CHECK_NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   516
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   517
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   518
int MethodData::bytecode_cell_count(Bytecodes::Code code) {
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   519
#if defined(COMPILER1) && !defined(COMPILER2)
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   520
  return no_profile_data;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   521
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      return ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      return BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  case Bytecodes::_invokestatic:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   533
    if (MethodData::profile_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   534
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   535
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   536
      return CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   537
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    return JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  case Bytecodes::_invokeinterface:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   545
    if (MethodData::profile_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   546
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   547
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   548
      return VirtualCallData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   549
    }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   550
  case Bytecodes::_invokedynamic:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   551
    if (MethodData::profile_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   552
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   553
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   554
      return CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   555
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    return RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    return BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    return variable_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  return no_profile_data;
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   580
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
// Compute the size of the profiling information corresponding to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
// the current bytecode.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   585
int MethodData::compute_data_size(BytecodeStream* stream) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  int cell_count = bytecode_cell_count(stream->code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  if (cell_count == no_profile_data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  if (cell_count == variable_cell_count) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   591
    switch (stream->code()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   592
    case Bytecodes::_lookupswitch:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   593
    case Bytecodes::_tableswitch:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   594
      cell_count = MultiBranchData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   595
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   596
    case Bytecodes::_invokespecial:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   597
    case Bytecodes::_invokestatic:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   598
    case Bytecodes::_invokedynamic:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   599
      assert(MethodData::profile_arguments(), "should be collecting args profile");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   600
      if (profile_arguments_for_invoke(stream->method(), stream->bci())) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   601
        cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   602
      } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   603
        cell_count = CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   604
      }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   605
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   606
    case Bytecodes::_invokevirtual:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   607
    case Bytecodes::_invokeinterface: {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   608
      assert(MethodData::profile_arguments(), "should be collecting args profile");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   609
      if (profile_arguments_for_invoke(stream->method(), stream->bci())) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   610
        cell_count = VirtualCallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   611
      } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   612
        cell_count = VirtualCallData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   613
      }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   614
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   615
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   616
    default:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   617
      fatal("unexpected bytecode for var length profile data");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   618
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // Note:  cell_count might be zero, meaning that there is just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  //        a DataLayout header, with no extra cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  assert(cell_count >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   626
int MethodData::compute_extra_data_count(int data_size, int empty_bc_count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  if (ProfileTraps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    // Assume that up to 3% of BCIs with no MDP will need to allocate one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    // If the method is large, let the extra BCIs grow numerous (to ~1%).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    int one_percent_of_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    if (extra_data_count < one_percent_of_data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
      extra_data_count = one_percent_of_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    if (extra_data_count > empty_bc_count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
      extra_data_count = empty_bc_count;  // no need for more
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    return extra_data_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   643
// Compute the size of the MethodData* necessary to store
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
// profiling information about a given method.  Size is in bytes.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   645
int MethodData::compute_allocation_size_in_bytes(methodHandle method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  BytecodeStream stream(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  Bytecodes::Code c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  int empty_bc_count = 0;  // number of bytecodes lacking data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    int size_in_bytes = compute_data_size(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    data_size += size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    if (size_in_bytes == 0)  empty_bc_count += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  // Add some extra DataLayout cells (at least one) to track stray traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   661
  // Add a cell to record information about modified arguments.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   662
  int arg_size = method->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   663
  object_size += DataLayout::compute_size_in_bytes(arg_size+1);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   664
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  return object_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   668
// Compute the size of the MethodData* necessary to store
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
// profiling information about a given method.  Size is in words
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   670
int MethodData::compute_allocation_size_in_words(methodHandle method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  int byte_size = compute_allocation_size_in_bytes(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  return align_object_size(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
// Initialize an individual data segment.  Returns the size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
// the segment in bytes.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   678
int MethodData::initialize_data(BytecodeStream* stream,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
                                       int data_index) {
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   680
#if defined(COMPILER1) && !defined(COMPILER2)
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   681
  return 0;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   682
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  int cell_count = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  int tag = DataLayout::no_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  DataLayout* data_layout = data_layout_at(data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      cell_count = ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      tag = DataLayout::receiver_type_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      cell_count = BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      tag = DataLayout::bit_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  case Bytecodes::_invokespecial:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   700
  case Bytecodes::_invokestatic: {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   701
    int counter_data_cell_count = CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   702
    if (profile_arguments_for_invoke(stream->method(), stream->bci())) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   703
      cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   704
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   705
      cell_count = counter_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   706
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   707
    if (cell_count > counter_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   708
      tag = DataLayout::call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   709
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   710
      tag = DataLayout::counter_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   711
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   713
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    cell_count = JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    tag = DataLayout::jump_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  case Bytecodes::_invokevirtual:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   722
  case Bytecodes::_invokeinterface: {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   723
    int virtual_call_data_cell_count = VirtualCallData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   724
    if (profile_arguments_for_invoke(stream->method(), stream->bci())) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   725
      cell_count = VirtualCallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   726
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   727
      cell_count = virtual_call_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   728
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   729
    if (cell_count > virtual_call_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   730
      tag = DataLayout::virtual_call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   731
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   732
      tag = DataLayout::virtual_call_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   733
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   735
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   736
  case Bytecodes::_invokedynamic: {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   737
    // %%% should make a type profile for any invokedynamic that takes a ref argument
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   738
    int counter_data_cell_count = CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   739
    if (profile_arguments_for_invoke(stream->method(), stream->bci())) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   740
      cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   741
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   742
      cell_count = counter_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   743
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   744
    if (cell_count > counter_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   745
      tag = DataLayout::call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   746
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   747
      tag = DataLayout::counter_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   748
    }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   749
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   750
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    cell_count = RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    tag = DataLayout::ret_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    cell_count = BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    tag = DataLayout::branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    cell_count = MultiBranchData::compute_cell_count(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    tag = DataLayout::multi_branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  assert(tag == DataLayout::multi_branch_data_tag ||
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   781
         (MethodData::profile_arguments() &&
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   782
          (tag == DataLayout::call_type_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   783
           tag == DataLayout::counter_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   784
           tag == DataLayout::virtual_call_type_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   785
           tag == DataLayout::virtual_call_data_tag)) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
         cell_count == bytecode_cell_count(c), "cell counts must agree");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  if (cell_count >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    assert(tag != DataLayout::no_tag, "bad tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    assert(bytecode_has_profile(c), "agree w/ BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    data_layout->initialize(tag, stream->bci(), cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    assert(!bytecode_has_profile(c), "agree w/ !BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  }
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15928
diff changeset
   796
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
// Get the data at an arbitrary (sort of) data index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   800
ProfileData* MethodData::data_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  if (out_of_bounds(data_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  DataLayout* data_layout = data_layout_at(data_index);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   805
  return data_layout->data_in();
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   806
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   808
ProfileData* DataLayout::data_in() {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   809
  switch (tag()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  case DataLayout::no_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  case DataLayout::bit_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   815
    return new BitData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  case DataLayout::counter_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   817
    return new CounterData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  case DataLayout::jump_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   819
    return new JumpData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  case DataLayout::receiver_type_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   821
    return new ReceiverTypeData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  case DataLayout::virtual_call_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   823
    return new VirtualCallData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  case DataLayout::ret_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   825
    return new RetData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  case DataLayout::branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   827
    return new BranchData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  case DataLayout::multi_branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   829
    return new MultiBranchData(this);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   830
  case DataLayout::arg_info_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   831
    return new ArgInfoData(this);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   832
  case DataLayout::call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   833
    return new CallTypeData(this);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   834
  case DataLayout::virtual_call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   835
    return new VirtualCallTypeData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
// Iteration over data.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   840
ProfileData* MethodData::next_data(ProfileData* current) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  int current_index = dp_to_di(current->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  int next_index = current_index + current->size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  ProfileData* next = data_at(next_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
// Give each of the data entries a chance to perform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
// data initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   849
void MethodData::post_initialize(BytecodeStream* stream) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  ProfileData* data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  for (data = first_data(); is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    stream->set_start(data->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    stream->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    data->post_initialize(stream, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   859
// Initialize the MethodData* corresponding to a given method.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   860
MethodData::MethodData(methodHandle method, int size, TRAPS) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   861
  No_Safepoint_Verifier no_safepoint;  // init function atomic wrt GC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  // Set the method back-pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  _method = method();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   865
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   866
  init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  set_creation_mileage(mileage_of(method()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  // Go through the bytecodes and allocate and initialize the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  // corresponding data cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  int empty_bc_count = 0;  // number of bytecodes lacking data
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15437
diff changeset
   873
  _data[0] = 0;  // apparently not set below.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  BytecodeStream stream(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  Bytecodes::Code c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    int size_in_bytes = initialize_data(&stream, data_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    data_size += size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    if (size_in_bytes == 0)  empty_bc_count += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  _data_size = data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  // Add some extra DataLayout cells (at least one) to track stray traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   886
  int extra_size = extra_data_count * DataLayout::compute_size_in_bytes(0);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   887
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   888
  // Add a cell to record information about modified arguments.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   889
  // Set up _args_modified array after traps cells so that
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   890
  // the code for traps cells works.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   891
  DataLayout *dp = data_layout_at(data_size + extra_size);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   892
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   893
  int arg_size = method->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   894
  dp->initialize(DataLayout::arg_info_data_tag, 0, arg_size+1);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   895
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   896
  object_size += extra_size + DataLayout::compute_size_in_bytes(arg_size+1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  // In that situation, _hint_di is never used, but at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  // least well-defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  _hint_di = first_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  post_initialize(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   906
  set_size(object_size);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   907
}
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15437
diff changeset
   908
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   909
void MethodData::init() {
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   910
  _invocation_counter.init();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   911
  _backedge_counter.init();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   912
  _invocation_counter_start = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   913
  _backedge_counter_start = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   914
  _num_loops = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   915
  _num_blocks = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   916
  _highest_comp_level = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   917
  _highest_osr_comp_level = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   918
  _would_profile = true;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   919
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   920
  // Initialize flags and trap history.
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   921
  _nof_decompiles = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   922
  _nof_overflow_recompiles = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   923
  _nof_overflow_traps = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   924
  clear_escape_info();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   925
  assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   926
  Copy::zero_to_words((HeapWord*) &_trap_hist,
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
   927
                      sizeof(_trap_hist) / sizeof(HeapWord));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
// Get a measure of how much mileage the method has on it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   931
int MethodData::mileage_of(Method* method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  int mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   933
  if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   934
    mileage = MAX2(method->invocation_count(), method->backedge_count());
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   935
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   936
    int iic = method->interpreter_invocation_count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   937
    if (mileage < iic)  mileage = iic;
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   938
    MethodCounters* mcs = method->method_counters();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   939
    if (mcs != NULL) {
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   940
      InvocationCounter* ic = mcs->invocation_counter();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   941
      InvocationCounter* bc = mcs->backedge_counter();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   942
      int icval = ic->count();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   943
      if (ic->carry()) icval += CompileThreshold;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   944
      if (mileage < icval)  mileage = icval;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   945
      int bcval = bc->count();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   946
      if (bc->carry()) bcval += CompileThreshold;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   947
      if (mileage < bcval)  mileage = bcval;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
   948
    }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   949
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  return mileage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   953
bool MethodData::is_mature() const {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   954
  return CompilationPolicy::policy()->is_mature(_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
// Translate a bci to its corresponding data index (di).
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   958
address MethodData::bci_to_dp(int bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  ProfileData* prev = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    if (data->bci() >= bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      if (data->bci() == bci)  set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      else if (prev != NULL)   set_hint_di(dp_to_di(prev->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      return data->dp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    prev = data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  return (address)limit_data_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
// Translate a bci to its corresponding data, or NULL.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   974
ProfileData* MethodData::bci_to_data(int bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    if (data->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
      return data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    } else if (data->bci() > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  return bci_to_extra_data(bci, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
// Translate a bci to its corresponding extra data, or NULL.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   988
ProfileData* MethodData::bci_to_extra_data(int bci, bool create_if_missing) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  DataLayout* dp    = extra_data_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  DataLayout* end   = extra_data_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  DataLayout* avail = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  for (; dp < end; dp = next_extra(dp)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    // since the data structure is monotonic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    if (dp->tag() == DataLayout::no_tag)  break;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   996
    if (dp->tag() == DataLayout::arg_info_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   997
      dp = end; // ArgInfoData is at the end of extra data section.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   998
      break;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   999
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    if (dp->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
      assert(dp->tag() == DataLayout::bit_data_tag, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
      return new BitData(dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  if (create_if_missing && dp < end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    // Allocate this one.  There is no mutual exclusion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    // so two threads could allocate different BCIs to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    // same data layout.  This means these extra data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    // records, like most other MDO contents, must not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    // trusted too much.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    DataLayout temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    temp.initialize(DataLayout::bit_data_tag, bci, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
    dp->release_set_header(temp.header());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
    assert(dp->tag() == DataLayout::bit_data_tag, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    //NO: assert(dp->bci() == bci, "no concurrent allocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    return new BitData(dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1021
ArgInfoData *MethodData::arg_info() {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1022
  DataLayout* dp    = extra_data_base();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1023
  DataLayout* end   = extra_data_limit();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1024
  for (; dp < end; dp = next_extra(dp)) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1025
    if (dp->tag() == DataLayout::arg_info_data_tag)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1026
      return new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1027
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1028
  return NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1029
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1030
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1031
// Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1032
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
#ifndef PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1034
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1035
void MethodData::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1036
  assert(is_methodData(), "should be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1037
  st->print("method data for ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1038
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1039
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1040
  print_data_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1041
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1042
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1043
#endif //PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1044
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1045
void MethodData::print_value_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1046
  assert(is_methodData(), "should be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1047
  st->print("method data for ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1048
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1049
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1050
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1051
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1052
void MethodData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  ProfileData* data = first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1060
  st->print_cr("--- Extra data:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  DataLayout* dp    = extra_data_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  DataLayout* end   = extra_data_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  for (; dp < end; dp = next_extra(dp)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    // since the data structure is monotonic.
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1066
    if (dp->tag() == DataLayout::no_tag)  continue;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1067
    if (dp->tag() == DataLayout::bit_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1068
      data = new BitData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1069
    } else {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1070
      assert(dp->tag() == DataLayout::arg_info_data_tag, "must be BitData or ArgInfo");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1071
      data = new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1072
      dp = end; // ArgInfoData is at the end of extra data section.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1073
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1081
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1082
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1083
void MethodData::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1084
  int n = sz->count(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1085
  sz->_method_data_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1086
  sz->_method_all_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1087
  sz->_rw_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1088
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1089
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1090
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1091
// Verification
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1092
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1093
void MethodData::verify_on(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1094
  guarantee(is_methodData(), "object must be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1095
  // guarantee(m->is_perm(), "should be in permspace");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1096
  this->verify_data_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1097
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1098
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1099
void MethodData::verify_data_on(outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  NEEDS_CLEANUP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  // not yet implemented.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1103
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1104
bool MethodData::profile_jsr292(methodHandle m, int bci) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1105
  if (m->is_compiled_lambda_form()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1106
    return true;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1107
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1108
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1109
  Bytecode_invoke inv(m , bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1110
  return inv.is_invokedynamic() || inv.is_invokehandle();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1111
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1112
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1113
int MethodData::profile_arguments_flag() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1114
  return TypeProfileLevel;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1115
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1116
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1117
bool MethodData::profile_arguments() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1118
  return profile_arguments_flag() > no_type_profile && profile_arguments_flag() <= type_profile_all;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1119
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1120
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1121
bool MethodData::profile_arguments_jsr292_only() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1122
  return profile_arguments_flag() == type_profile_jsr292;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1123
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1124
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1125
bool MethodData::profile_all_arguments() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1126
  return profile_arguments_flag() == type_profile_all;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1127
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1128
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1129
bool MethodData::profile_arguments_for_invoke(methodHandle m, int bci) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1130
  if (!profile_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1131
    return false;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1132
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1133
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1134
  if (profile_all_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1135
    return true;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1136
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1137
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1138
  assert(profile_arguments_jsr292_only(), "inconsistent");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1139
  return profile_jsr292(m, bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1140
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1141