hotspot/src/share/vm/oops/methodDataOop.cpp
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 3696 9e5d9b5e1049
child 6453 970dc585ab63
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3696
diff changeset
     2
 * Copyright (c) 2000, 2009, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_methodDataOop.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// DataLayout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Overlay for generic profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Some types of data layouts need a length field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
bool DataLayout::needs_array_len(u1 tag) {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    35
  return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag);
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
// Perform generic initialization of the data.  More specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// initialization occurs in overrides of ProfileData::post_initialize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _header._bits = (intptr_t)0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _header._struct._tag = tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _header._struct._bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  for (int i = 0; i < cell_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    set_cell_at(i, (intptr_t)0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (needs_array_len(tag)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    52
void DataLayout::follow_weak_refs(BoolObjectClosure* cl) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    53
  ResourceMark m;
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    54
  data_in()->follow_weak_refs(cl);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    55
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    56
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    57
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// A ProfileData object is created to refer to a section of profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// data in a structured way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Constructor for invalid ProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
ProfileData::ProfileData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
void ProfileData::print_shared(outputStream* st, const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  st->print("bci: %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  st->fill_to(tab_width_one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  st->print("%s", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  int trap = trap_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  if (trap != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    char buf[100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int flags = data()->flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  if (flags != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    st->print("flags(%d) ", flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
void ProfileData::tab(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  st->fill_to(tab_width_two);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// BitData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// A BitData corresponds to a one-bit flag.  This is used to indicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// whether a checkcast bytecode has seen a null value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void BitData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  print_shared(st, "BitData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// A CounterData corresponds to a simple counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
void CounterData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  print_shared(st, "CounterData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  st->print_cr("count(%u)", count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// JumpData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// A JumpData is used to access profiling information for a direct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// branch.  It is a counter, used for counting the number of branches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// plus a data displacement, used for realigning the data pointer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// the corresponding target bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void JumpData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    target = stream->dest_w();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
void JumpData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  print_shared(st, "JumpData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// A ReceiverTypeData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
// dynamic type check.  It consists of a counter which counts the total times
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// that the check is reached, and a series of (klassOop, count) pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// which are used to store a type profile for the receiver of the check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
void ReceiverTypeData::follow_contents() {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   154
  // This is a set of weak references that need
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   155
  // to be followed at the end of the strong marking
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   156
  // phase. Memoize this object so it can be visited
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   157
  // in the weak roots processing phase.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   158
  MarkSweep::revisit_mdo(data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
void ReceiverTypeData::follow_contents(ParCompactionManager* cm) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   163
  // This is a set of weak references that need
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   164
  // to be followed at the end of the strong marking
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   165
  // phase. Memoize this object so it can be visited
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   166
  // in the weak roots processing phase.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   167
  PSParallelCompact::revisit_mdo(cm, data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void ReceiverTypeData::oop_iterate(OopClosure* blk) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   172
  if (blk->should_remember_mdo()) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   173
    // This is a set of weak references that need
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   174
    // to be followed at the end of the strong marking
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   175
    // phase. Memoize this object so it can be visited
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   176
    // in the weak roots processing phase.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   177
    blk->remember_mdo(data());
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   178
  } else { // normal scan
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   179
    for (uint row = 0; row < row_limit(); row++) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   180
      if (receiver(row) != NULL) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   181
        oop* adr = adr_receiver(row);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
        blk->do_oop(adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   188
void ReceiverTypeData::oop_iterate_m(OopClosure* blk, MemRegion mr) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   189
  // Currently, this interface is called only during card-scanning for
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   190
  // a young gen gc, in which case this object cannot contribute anything,
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   191
  // since it does not contain any references that cross out of
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   192
  // the perm gen. However, for future more general use we allow
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   193
  // the possibility of calling for instance from more general
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   194
  // iterators (for example, a future regionalized perm gen for G1,
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   195
  // or the possibility of moving some references out of perm in
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   196
  // the case of other collectors). In that case, you will need
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   197
  // to relax or remove some of the assertions below.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   198
#ifdef ASSERT
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   199
  // Verify that none of the embedded oop references cross out of
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   200
  // this generation.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   201
  for (uint row = 0; row < row_limit(); row++) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   202
    if (receiver(row) != NULL) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   203
      oop* adr = adr_receiver(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   204
      CollectedHeap* h = Universe::heap();
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   205
      assert(h->is_permanent(adr) && h->is_permanent_or_null(*adr), "Not intra-perm");
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   206
    }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   207
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   208
#endif // ASSERT
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   209
  assert(!blk->should_remember_mdo(), "Not expected to remember MDO");
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   210
  return;   // Nothing to do, see comment above
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   211
#if 0
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   212
  if (blk->should_remember_mdo()) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   213
    // This is a set of weak references that need
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   214
    // to be followed at the end of the strong marking
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   215
    // phase. Memoize this object so it can be visited
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   216
    // in the weak roots processing phase.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   217
    blk->remember_mdo(data());
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   218
  } else { // normal scan
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   219
    for (uint row = 0; row < row_limit(); row++) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   220
      if (receiver(row) != NULL) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   221
        oop* adr = adr_receiver(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   222
        if (mr.contains(adr)) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   223
          blk->do_oop(adr);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   224
        } else if ((HeapWord*)adr >= mr.end()) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   225
          // Test that the current cursor and the two ends of the range
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   226
          // that we may have skipped iterating over are monotonically ordered;
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   227
          // this is just a paranoid assertion, just in case represetations
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   228
          // should change in the future rendering the short-circuit return
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   229
          // here invalid.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   230
          assert((row+1 >= row_limit() || adr_receiver(row+1) > adr) &&
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   231
                 (row+2 >= row_limit() || adr_receiver(row_limit()-1) > adr_receiver(row+1)), "Reducing?");
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   232
          break; // remaining should be outside this mr too
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   233
        }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   234
      }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   235
    }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   236
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   237
#endif
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   238
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   239
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
void ReceiverTypeData::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      MarkSweep::adjust_pointer(adr_receiver(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   248
void ReceiverTypeData::follow_weak_refs(BoolObjectClosure* is_alive_cl) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   249
  for (uint row = 0; row < row_limit(); row++) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   250
    klassOop p = receiver(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   251
    if (p != NULL && !is_alive_cl->do_object_b(p)) {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   252
      clear_row(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   253
    }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   254
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   255
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   256
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
void ReceiverTypeData::update_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    if (receiver_unchecked(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      PSParallelCompact::adjust_pointer(adr_receiver(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
void ReceiverTypeData::update_pointers(HeapWord* beg_addr, HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // The loop bounds could be computed based on beg_addr/end_addr and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // boundary test hoisted outside the loop (see klassVTable for an example);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // however, row_limit() is small enough (2) to make that less efficient.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    if (receiver_unchecked(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      PSParallelCompact::adjust_pointer(adr_receiver(row), beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
void ReceiverTypeData::print_receiver_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    if (receiver(row) != NULL)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      receiver(row)->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      st->print_cr("(%u)", receiver_count(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
void ReceiverTypeData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  print_shared(st, "ReceiverTypeData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
void VirtualCallData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  print_shared(st, "VirtualCallData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// RetData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
// A RetData is used to access profiling information for a ret bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// It is composed of a count of the number of times that the ret has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// been executed, followed by a series of triples of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// (bci, count, di) which count the number of times that some bci was the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// target of the ret and cache a corresponding displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
void RetData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    set_bci_displacement(row, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    set_bci(row, no_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // release so other threads see a consistent state.  bci is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // a valid flag for bci_displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  OrderAccess::release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// This routine needs to atomically update the RetData structure, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// caller needs to hold the RetData_lock before it gets here.  Since taking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// the lock can block (and allow GC) and since RetData is a ProfileData is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// wrapper around a derived oop, taking the lock in _this_ method will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// basically cause the 'this' pointer's _data field to contain junk after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// lock.  We require the caller to take the lock before making the ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// structure.  Currently the only caller is InterpreterRuntime::update_mdp_for_ret
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
address RetData::fixup_ret(int return_bci, methodDataHandle h_mdo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // First find the mdp which corresponds to the return bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  address mdp = h_mdo->bci_to_dp(return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // Now check to see if any of the cache slots are open.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    if (bci(row) == no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      set_bci_displacement(row, mdp - dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      set_bci_count(row, DataLayout::counter_increment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      // Barrier to ensure displacement is written before the bci; allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      // the interpreter to read displacement without fear of race condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      release_set_bci(row, return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  return mdp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
void RetData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  print_shared(st, "RetData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    if (bci(row) != no_bci)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    if (bci(row) != no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      st->print_cr("bci(%d: count(%u) displacement(%d))",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
                   bci(row), bci_count(row), bci_displacement(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// BranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
// A BranchData is used to access profiling data for a two-way branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
// It consists of taken and not_taken counts as well as a data displacement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
// for the taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
void BranchData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  int target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
void BranchData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  print_shared(st, "BranchData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  st->print_cr("taken(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
               taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  st->print_cr("not taken(%u)", not_taken());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// MultiBranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
// A MultiBranchData is used to access profiling information for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// a multi-way branch (*switch bytecodes).  It consists of a series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
// of (count, displacement) pairs, which count the number of times each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
// case was taken and specify the data displacment for each branch target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  int cell_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  if (stream->code() == Bytecodes::_tableswitch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    Bytecode_tableswitch* sw = Bytecode_tableswitch_at(stream->bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    cell_count = 1 + per_case_cell_count * (1 + sw->length()); // 1 for default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    Bytecode_lookupswitch* sw = Bytecode_lookupswitch_at(stream->bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    cell_count = 1 + per_case_cell_count * (sw->number_of_pairs() + 1); // 1 for default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  return cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
void MultiBranchData::post_initialize(BytecodeStream* stream,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
                                      methodDataOop mdo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  int my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  int target_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  if (stream->code() == Bytecodes::_tableswitch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    Bytecode_tableswitch* sw = Bytecode_tableswitch_at(stream->bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    int len = sw->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    for (int count = 0; count < len; count++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      target = sw->dest_offset_at(count) + bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    target = sw->default_offset() + bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    Bytecode_lookupswitch* sw = Bytecode_lookupswitch_at(stream->bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    int npairs = sw->number_of_pairs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    for (int count = 0; count < npairs; count++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      LookupswitchPair *pair = sw->pair_at(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      target = pair->offset() + bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    target = sw->default_offset() + bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
void MultiBranchData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  print_shared(st, "MultiBranchData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  st->print_cr("default_count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
               default_count(), default_displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  int cases = number_of_cases();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  for (int i = 0; i < cases; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    st->print_cr("count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
                 count_at(i), displacement_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   472
#ifndef PRODUCT
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   473
void ArgInfoData::print_data_on(outputStream* st) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   474
  print_shared(st, "ArgInfoData");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   475
  int nargs = number_of_args();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   476
  for (int i = 0; i < nargs; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   477
    st->print("  0x%x", arg_modified(i));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   478
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   479
  st->cr();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   480
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   481
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   482
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
// methodDataOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
// A methodDataOop holds information which has been collected about
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
int methodDataOopDesc::bytecode_cell_count(Bytecodes::Code code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      return ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
      return BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  case Bytecodes::_invokestatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    return CounterData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    return JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  case Bytecodes::_invokeinterface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    return VirtualCallData::static_cell_count();
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   510
  case Bytecodes::_invokedynamic:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   511
    return CounterData::static_cell_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    return RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    return BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    return variable_cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  return no_profile_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// Compute the size of the profiling information corresponding to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
// the current bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
int methodDataOopDesc::compute_data_size(BytecodeStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  int cell_count = bytecode_cell_count(stream->code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  if (cell_count == no_profile_data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  if (cell_count == variable_cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    cell_count = MultiBranchData::compute_cell_count(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  // Note:  cell_count might be zero, meaning that there is just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  //        a DataLayout header, with no extra cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  assert(cell_count >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
int methodDataOopDesc::compute_extra_data_count(int data_size, int empty_bc_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  if (ProfileTraps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    // Assume that up to 3% of BCIs with no MDP will need to allocate one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    // If the method is large, let the extra BCIs grow numerous (to ~1%).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    int one_percent_of_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    if (extra_data_count < one_percent_of_data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      extra_data_count = one_percent_of_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    if (extra_data_count > empty_bc_count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
      extra_data_count = empty_bc_count;  // no need for more
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    return extra_data_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
// Compute the size of the methodDataOop necessary to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
// profiling information about a given method.  Size is in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
int methodDataOopDesc::compute_allocation_size_in_bytes(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  BytecodeStream stream(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  Bytecodes::Code c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  int empty_bc_count = 0;  // number of bytecodes lacking data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    int size_in_bytes = compute_data_size(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    data_size += size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    if (size_in_bytes == 0)  empty_bc_count += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // Add some extra DataLayout cells (at least one) to track stray traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   589
  // 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
   590
  int arg_size = method->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   591
  object_size += DataLayout::compute_size_in_bytes(arg_size+1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  return object_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
// Compute the size of the methodDataOop necessary to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
// profiling information about a given method.  Size is in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
int methodDataOopDesc::compute_allocation_size_in_words(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  int byte_size = compute_allocation_size_in_bytes(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  return align_object_size(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
// Initialize an individual data segment.  Returns the size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
// the segment in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
int methodDataOopDesc::initialize_data(BytecodeStream* stream,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
                                       int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  int cell_count = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  int tag = DataLayout::no_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  DataLayout* data_layout = data_layout_at(data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
      cell_count = ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      tag = DataLayout::receiver_type_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
      cell_count = BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
      tag = DataLayout::bit_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  case Bytecodes::_invokestatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    cell_count = CounterData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    tag = DataLayout::counter_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    cell_count = JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    tag = DataLayout::jump_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  case Bytecodes::_invokeinterface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    cell_count = VirtualCallData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    tag = DataLayout::virtual_call_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    break;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   640
  case Bytecodes::_invokedynamic:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   641
    // %%% should make a type profile for any invokedynamic that takes a ref argument
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   642
    cell_count = CounterData::static_cell_count();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   643
    tag = DataLayout::counter_data_tag;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   644
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    cell_count = RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    tag = DataLayout::ret_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    cell_count = BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    tag = DataLayout::branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    cell_count = MultiBranchData::compute_cell_count(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    tag = DataLayout::multi_branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  assert(tag == DataLayout::multi_branch_data_tag ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
         cell_count == bytecode_cell_count(c), "cell counts must agree");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  if (cell_count >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    assert(tag != DataLayout::no_tag, "bad tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    assert(bytecode_has_profile(c), "agree w/ BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    data_layout->initialize(tag, stream->bci(), cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    assert(!bytecode_has_profile(c), "agree w/ !BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// Get the data at an arbitrary (sort of) data index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
ProfileData* methodDataOopDesc::data_at(int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  if (out_of_bounds(data_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  DataLayout* data_layout = data_layout_at(data_index);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   693
  return data_layout->data_in();
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   694
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   696
ProfileData* DataLayout::data_in() {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   697
  switch (tag()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  case DataLayout::no_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  case DataLayout::bit_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   703
    return new BitData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  case DataLayout::counter_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   705
    return new CounterData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  case DataLayout::jump_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   707
    return new JumpData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  case DataLayout::receiver_type_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   709
    return new ReceiverTypeData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  case DataLayout::virtual_call_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   711
    return new VirtualCallData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  case DataLayout::ret_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   713
    return new RetData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  case DataLayout::branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   715
    return new BranchData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  case DataLayout::multi_branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   717
    return new MultiBranchData(this);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   718
  case DataLayout::arg_info_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   719
    return new ArgInfoData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
// Iteration over data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
ProfileData* methodDataOopDesc::next_data(ProfileData* current) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  int current_index = dp_to_di(current->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  int next_index = current_index + current->size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  ProfileData* next = data_at(next_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
// Give each of the data entries a chance to perform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
// data initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
void methodDataOopDesc::post_initialize(BytecodeStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  ProfileData* data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  for (data = first_data(); is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    stream->set_start(data->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    stream->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    data->post_initialize(stream, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
// Initialize the methodDataOop corresponding to a given method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
void methodDataOopDesc::initialize(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  // Set the method back-pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  _method = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  set_creation_mileage(mileage_of(method()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  // Initialize flags and trap history.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  _nof_decompiles = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  _nof_overflow_recompiles = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  _nof_overflow_traps = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  Copy::zero_to_words((HeapWord*) &_trap_hist,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
                      sizeof(_trap_hist) / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // Go through the bytecodes and allocate and initialize the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  // corresponding data cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  int empty_bc_count = 0;  // number of bytecodes lacking data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  BytecodeStream stream(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  Bytecodes::Code c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    int size_in_bytes = initialize_data(&stream, data_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    data_size += size_in_bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    if (size_in_bytes == 0)  empty_bc_count += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  _data_size = data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // Add some extra DataLayout cells (at least one) to track stray traps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  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
   775
  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
   776
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   777
  // 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
   778
  // 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
   779
  // the code for traps cells works.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   780
  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
   781
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   782
  int arg_size = method->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   783
  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
   784
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   785
  object_size += extra_size + DataLayout::compute_size_in_bytes(arg_size+1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  // In that situation, _hint_di is never used, but at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  // least well-defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  _hint_di = first_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  post_initialize(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  set_object_is_parsable(object_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
// Get a measure of how much mileage the method has on it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
int methodDataOopDesc::mileage_of(methodOop method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  int mileage = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  int iic = method->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  if (mileage < iic)  mileage = iic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  InvocationCounter* ic = method->invocation_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  InvocationCounter* bc = method->backedge_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  int icval = ic->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  if (ic->carry()) icval += CompileThreshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  if (mileage < icval)  mileage = icval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  int bcval = bc->count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  if (bc->carry()) bcval += CompileThreshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  if (mileage < bcval)  mileage = bcval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  return mileage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
bool methodDataOopDesc::is_mature() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  uint current = mileage_of(_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  uint initial = creation_mileage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  if (current < initial)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    return true;  // some sort of overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  uint target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  if (ProfileMaturityPercentage <= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
    target = (uint) -ProfileMaturityPercentage;  // absolute value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    target = (uint)( (ProfileMaturityPercentage * CompileThreshold) / 100 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  return (current >= initial + target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
// Translate a bci to its corresponding data index (di).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
address methodDataOopDesc::bci_to_dp(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  ProfileData* prev = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    if (data->bci() >= bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      if (data->bci() == bci)  set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
      else if (prev != NULL)   set_hint_di(dp_to_di(prev->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
      return data->dp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    prev = data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  return (address)limit_data_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
// Translate a bci to its corresponding data, or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
ProfileData* methodDataOopDesc::bci_to_data(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    if (data->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
      set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
      return data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    } else if (data->bci() > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  return bci_to_extra_data(bci, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
// Translate a bci to its corresponding extra data, or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
ProfileData* methodDataOopDesc::bci_to_extra_data(int bci, bool create_if_missing) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  DataLayout* dp    = extra_data_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  DataLayout* end   = extra_data_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  DataLayout* avail = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  for (; dp < end; dp = next_extra(dp)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    // since the data structure is monotonic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    if (dp->tag() == DataLayout::no_tag)  break;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   868
    if (dp->tag() == DataLayout::arg_info_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   869
      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
   870
      break;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   871
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    if (dp->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
      assert(dp->tag() == DataLayout::bit_data_tag, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
      return new BitData(dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  if (create_if_missing && dp < end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    // Allocate this one.  There is no mutual exclusion,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    // so two threads could allocate different BCIs to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    // same data layout.  This means these extra data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    // records, like most other MDO contents, must not be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    // trusted too much.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    DataLayout temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    temp.initialize(DataLayout::bit_data_tag, bci, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    dp->release_set_header(temp.header());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    assert(dp->tag() == DataLayout::bit_data_tag, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    //NO: assert(dp->bci() == bci, "no concurrent allocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    return new BitData(dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   893
ArgInfoData *methodDataOopDesc::arg_info() {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   894
  DataLayout* dp    = extra_data_base();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   895
  DataLayout* end   = extra_data_limit();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   896
  for (; dp < end; dp = next_extra(dp)) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   897
    if (dp->tag() == DataLayout::arg_info_data_tag)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   898
      return new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   899
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   900
  return NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   901
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   902
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
void methodDataOopDesc::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  ProfileData* data = first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   912
  st->print_cr("--- Extra data:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  DataLayout* dp    = extra_data_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  DataLayout* end   = extra_data_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  for (; dp < end; dp = next_extra(dp)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
    // since the data structure is monotonic.
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   918
    if (dp->tag() == DataLayout::no_tag)  continue;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   919
    if (dp->tag() == DataLayout::bit_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   920
      data = new BitData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   921
    } else {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   922
      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
   923
      data = new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   924
      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
   925
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
void methodDataOopDesc::verify_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  NEEDS_CLEANUP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  // not yet implemented.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
}