hotspot/src/share/vm/oops/methodData.cpp
author iklam
Wed, 02 Aug 2017 18:06:38 -0700
changeset 46746 ea379ebb9447
parent 46630 75aa3e39d02c
permissions -rw-r--r--
8072061: Automatically determine optimal sizes for the CDS regions Summary: See new C++ class MetaspaceClosure. Reviewed-by: coleenp, jiangli, mseledtsov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46625
diff changeset
     2
 * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3696
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3696
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3696
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#include "classfile/systemDictionary.hpp"
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
    27
#include "compiler/compilerOracle.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "interpreter/bytecode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "interpreter/bytecodeStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "interpreter/linkResolver.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
    31
#include "memory/heapInspection.hpp"
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
    32
#include "memory/metaspaceClosure.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 35898
diff changeset
    33
#include "memory/resourceArea.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    34
#include "oops/methodData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    35
#include "prims/jvmtiRedefineClasses.hpp"
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
    36
#include "runtime/arguments.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
#include "runtime/compilationPolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    38
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    39
#include "runtime/handles.inline.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 23845
diff changeset
    40
#include "runtime/orderAccess.inline.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    41
#include "utilities/align.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28650
diff changeset
    42
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// DataLayout
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Overlay for generic profiling data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Some types of data layouts need a length field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
bool DataLayout::needs_array_len(u1 tag) {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    51
  return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag) || (tag == parameters_type_data_tag);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// Perform generic initialization of the data.  More specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// initialization occurs in overrides of ProfileData::post_initialize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _header._bits = (intptr_t)0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _header._struct._tag = tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _header._struct._bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  for (int i = 0; i < cell_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    set_cell_at(i, (intptr_t)0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (needs_array_len(tag)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    66
  if (tag == call_type_data_tag) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    67
    CallTypeData::initialize(this, cell_count);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    68
  } else if (tag == virtual_call_type_data_tag) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    69
    VirtualCallTypeData::initialize(this, cell_count);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
    70
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    73
void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    74
  ResourceMark m;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
    75
  data_in()->clean_weak_klass_links(cl);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    76
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    77
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
    78
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// A ProfileData object is created to refer to a section of profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// data in a structured way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// Constructor for invalid ProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
ProfileData::ProfileData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    90
char* ProfileData::print_data_on_helper(const MethodData* md) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    91
  DataLayout* dp  = md->extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
    92
  DataLayout* end = md->args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    93
  stringStream ss;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    94
  for (;; dp = MethodData::next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    95
    assert(dp < end, "moved past end of extra data");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    96
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    97
    case DataLayout::speculative_trap_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    98
      if (dp->bci() == bci()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
    99
        SpeculativeTrapData* data = new SpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   100
        int trap = data->trap_state();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   101
        char buf[100];
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   102
        ss.print("trap/");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   103
        data->method()->print_short_name(&ss);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   104
        ss.print("(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   105
      }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   106
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   107
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   108
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   109
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   110
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   111
      return ss.as_string();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   112
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   113
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
   114
      fatal("unexpected tag %d", dp->tag());
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   115
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   116
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   117
  return NULL;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   118
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   119
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   120
void ProfileData::print_data_on(outputStream* st, const MethodData* md) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   121
  print_data_on(st, print_data_on_helper(md));
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   122
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   123
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   124
void ProfileData::print_shared(outputStream* st, const char* name, const char* extra) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  st->print("bci: %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  st->fill_to(tab_width_one);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  st->print("%s", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  int trap = trap_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (trap != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    char buf[100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   134
  if (extra != NULL) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   135
    st->print("%s", extra);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   136
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int flags = data()->flags();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   138
  if (flags != 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    st->print("flags(%d) ", flags);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   140
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   143
void ProfileData::tab(outputStream* st, bool first) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   144
  st->fill_to(first ? tab_width_one : tab_width_two);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// BitData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// A BitData corresponds to a one-bit flag.  This is used to indicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// whether a checkcast bytecode has seen a null value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   154
void BitData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   155
  print_shared(st, "BitData", extra);
30183
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 29081
diff changeset
   156
  st->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// CounterData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// A CounterData corresponds to a simple counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   164
void CounterData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   165
  print_shared(st, "CounterData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  st->print_cr("count(%u)", count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// JumpData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// A JumpData is used to access profiling information for a direct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// branch.  It is a counter, used for counting the number of branches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// plus a data displacement, used for realigning the data pointer to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// the corresponding target bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   177
void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    target = stream->dest_w();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   192
void JumpData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   193
  print_shared(st, "JumpData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   197
int TypeStackSlotEntries::compute_cell_count(Symbol* signature, bool include_receiver, int max) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   198
  // Parameter profiling include the receiver
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   199
  int args_count = include_receiver ? 1 : 0;
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   200
  ResourceMark rm;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   201
  SignatureStream ss(signature);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   202
  args_count += ss.reference_parameter_count();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   203
  args_count = MIN2(args_count, max);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   204
  return args_count * per_arg_cell_count;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   205
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   206
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   207
int TypeEntriesAtCall::compute_cell_count(BytecodeStream* stream) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   208
  assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   209
  assert(TypeStackSlotEntries::per_arg_count() > ReturnTypeEntry::static_cell_count(), "code to test for arguments/results broken");
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
   210
  const methodHandle m = stream->method();
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
   211
  int bci = stream->bci();
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
   212
  Bytecode_invoke inv(m, bci);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   213
  int args_cell = 0;
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
   214
  if (MethodData::profile_arguments_for_invoke(m, bci)) {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   215
    args_cell = TypeStackSlotEntries::compute_cell_count(inv.signature(), false, TypeProfileArgsLimit);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   216
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   217
  int ret_cell = 0;
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
   218
  if (MethodData::profile_return_for_invoke(m, bci) && (inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY)) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   219
    ret_cell = ReturnTypeEntry::static_cell_count();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   220
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   221
  int header_cell = 0;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   222
  if (args_cell + ret_cell > 0) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   223
    header_cell = header_cell_count();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   224
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   225
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   226
  return header_cell + args_cell + ret_cell;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   227
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   228
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   229
class ArgumentOffsetComputer : public SignatureInfo {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   230
private:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   231
  int _max;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   232
  GrowableArray<int> _offsets;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   233
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   234
  void set(int size, BasicType type) { _size += size; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   235
  void do_object(int begin, int end) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   236
    if (_offsets.length() < _max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   237
      _offsets.push(_size);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   238
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   239
    SignatureInfo::do_object(begin, end);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   240
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   241
  void do_array (int begin, int end) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   242
    if (_offsets.length() < _max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   243
      _offsets.push(_size);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   244
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   245
    SignatureInfo::do_array(begin, end);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   246
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   247
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   248
public:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   249
  ArgumentOffsetComputer(Symbol* signature, int max)
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   250
    : SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   251
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   252
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   253
  int total() { lazy_iterate_parameters(); return _size; }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   254
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   255
  int off_at(int i) const { return _offsets.at(i); }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   256
};
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   257
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   258
void TypeStackSlotEntries::post_initialize(Symbol* signature, bool has_receiver, bool include_receiver) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   259
  ResourceMark rm;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   260
  int start = 0;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   261
  // Parameter profiling include the receiver
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   262
  if (include_receiver && has_receiver) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   263
    set_stack_slot(0, 0);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   264
    set_type(0, type_none());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   265
    start += 1;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   266
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   267
  ArgumentOffsetComputer aos(signature, _number_of_entries-start);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   268
  aos.total();
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   269
  for (int i = start; i < _number_of_entries; i++) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   270
    set_stack_slot(i, aos.off_at(i-start) + (has_receiver ? 1 : 0));
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   271
    set_type(i, type_none());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   272
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   273
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   274
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   275
void CallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   276
  assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   277
  Bytecode_invoke inv(stream->method(), stream->bci());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   278
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   279
  SignatureStream ss(inv.signature());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   280
  if (has_arguments()) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   281
#ifdef ASSERT
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   282
    ResourceMark rm;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   283
    int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   284
    assert(count > 0, "room for args type but none found?");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   285
    check_number_of_arguments(count);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   286
#endif
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   287
    _args.post_initialize(inv.signature(), inv.has_receiver(), false);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   288
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   289
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   290
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   291
    assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   292
    _ret.post_initialize();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   293
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   294
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   295
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   296
void VirtualCallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   297
  assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   298
  Bytecode_invoke inv(stream->method(), stream->bci());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   299
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   300
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   301
#ifdef ASSERT
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   302
    ResourceMark rm;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   303
    SignatureStream ss(inv.signature());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   304
    int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   305
    assert(count > 0, "room for args type but none found?");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   306
    check_number_of_arguments(count);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   307
#endif
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   308
    _args.post_initialize(inv.signature(), inv.has_receiver(), false);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   309
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   310
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   311
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   312
    assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   313
    _ret.post_initialize();
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   314
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   315
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   316
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   317
bool TypeEntries::is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p) {
21581
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   318
  Klass* k = (Klass*)klass_part(p);
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   319
  return k != NULL && k->is_loader_alive(is_alive_cl);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   320
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   321
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   322
void TypeStackSlotEntries::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   323
  for (int i = 0; i < _number_of_entries; i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   324
    intptr_t p = type(i);
21581
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   325
    if (!is_loader_alive(is_alive_cl, p)) {
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   326
      set_type(i, with_status((Klass*)NULL, p));
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   327
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   328
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   329
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   330
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   331
void ReturnTypeEntry::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   332
  intptr_t p = type();
21581
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   333
  if (!is_loader_alive(is_alive_cl, p)) {
73584c201e2d 8027572: assert(r != 0) failed: invalid
roland
parents: 21095
diff changeset
   334
    set_type(with_status((Klass*)NULL, p));
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   335
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   336
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   337
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   338
bool TypeEntriesAtCall::return_profiling_enabled() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   339
  return MethodData::profile_return();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   340
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   341
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   342
bool TypeEntriesAtCall::arguments_profiling_enabled() {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   343
  return MethodData::profile_arguments();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   344
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   345
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   346
void TypeEntries::print_klass(outputStream* st, intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   347
  if (is_type_none(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   348
    st->print("none");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   349
  } else if (is_type_unknown(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   350
    st->print("unknown");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   351
  } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   352
    valid_klass(k)->print_value_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   353
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   354
  if (was_null_seen(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   355
    st->print(" (null seen)");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   356
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   357
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   358
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   359
void TypeStackSlotEntries::print_data_on(outputStream* st) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   360
  for (int i = 0; i < _number_of_entries; i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   361
    _pd->tab(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   362
    st->print("%d: stack(%u) ", i, stack_slot(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   363
    print_klass(st, type(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   364
    st->cr();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   365
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   366
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   367
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   368
void ReturnTypeEntry::print_data_on(outputStream* st) const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   369
  _pd->tab(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   370
  print_klass(st, type());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   371
  st->cr();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   372
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   373
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   374
void CallTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   375
  CounterData::print_data_on(st, extra);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   376
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   377
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   378
    st->print("argument types");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   379
    _args.print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   380
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   381
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   382
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   383
    st->print("return type");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   384
    _ret.print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   385
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   386
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   387
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   388
void VirtualCallTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   389
  VirtualCallData::print_data_on(st, extra);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   390
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   391
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   392
    st->print("argument types");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   393
    _args.print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   394
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   395
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   396
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   397
    st->print("return type");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   398
    _ret.print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   399
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   400
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   401
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
// ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
// A ReceiverTypeData is used to access profiling information about a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
// dynamic type check.  It consists of a counter which counts the total times
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   407
// that the check is reached, and a series of (Klass*, count) pairs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// which are used to store a type profile for the receiver of the check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   410
void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   411
    for (uint row = 0; row < row_limit(); row++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   412
    Klass* p = receiver(row);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   413
    if (p != NULL && !p->is_loader_alive(is_alive_cl)) {
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   414
      clear_row(row);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   415
    }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   416
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   417
}
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
   418
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   419
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   420
void VirtualCallData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   421
  ReceiverTypeData::clean_weak_klass_links(is_alive_cl);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   422
  for (uint row = 0; row < method_row_limit(); row++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   423
    Method* p = method(row);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   424
    if (p != NULL && !p->method_holder()->is_loader_alive(is_alive_cl)) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   425
      clear_method_row(row);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   426
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   427
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   428
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   429
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   430
void VirtualCallData::clean_weak_method_links() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   431
  ReceiverTypeData::clean_weak_method_links();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   432
  for (uint row = 0; row < method_row_limit(); row++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   433
    Method* p = method(row);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   434
    if (p != NULL && !p->on_stack()) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   435
      clear_method_row(row);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   436
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   437
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   438
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   439
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   440
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   441
void ReceiverTypeData::print_receiver_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    if (receiver(row) != NULL)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   447
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   448
  st->print_cr("count(%u) nonprofiled_count(%u) entries(%u)", count(), nonprofiled_count(), entries);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   449
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  st->print_cr("count(%u) entries(%u)", count(), entries);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   451
#endif
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   452
  int total = count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   453
  for (row = 0; row < row_limit(); row++) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   454
    if (receiver(row) != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   455
      total += receiver_count(row);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   456
    }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   457
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      receiver(row)->print_value_on(st);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   462
      st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
}
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   466
void ReceiverTypeData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   467
  print_shared(st, "ReceiverTypeData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   470
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   471
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   472
void VirtualCallData::print_method_data_on(outputStream* st) const {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   473
  uint row;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   474
  int entries = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   475
  for (row = 0; row < method_row_limit(); row++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   476
    if (method(row) != NULL) entries++;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   477
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   478
  tab(st);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   479
  st->print_cr("method_entries(%u)", entries);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   480
  int total = count();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   481
  for (row = 0; row < method_row_limit(); row++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   482
    if (method(row) != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   483
      total += method_count(row);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   484
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   485
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   486
  for (row = 0; row < method_row_limit(); row++) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   487
    if (method(row) != NULL) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   488
      tab(st);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   489
      method(row)->print_value_on(st);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   490
      st->print_cr("(%u %4.2f)", method_count(row), (float) method_count(row) / (float) total);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   491
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   492
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   493
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   494
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   495
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   496
void VirtualCallData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   497
  print_shared(st, "VirtualCallData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  print_receiver_data_on(st);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   499
  print_method_data_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// RetData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// A RetData is used to access profiling information for a ret bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// It is composed of a count of the number of times that the ret has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// been executed, followed by a series of triples of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// (bci, count, di) which count the number of times that some bci was the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// target of the ret and cache a corresponding displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   511
void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    set_bci_displacement(row, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    set_bci(row, no_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // release so other threads see a consistent state.  bci is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // a valid flag for bci_displacement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  OrderAccess::release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// This routine needs to atomically update the RetData structure, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
// caller needs to hold the RetData_lock before it gets here.  Since taking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
// the lock can block (and allow GC) and since RetData is a ProfileData is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
// wrapper around a derived oop, taking the lock in _this_ method will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
// basically cause the 'this' pointer's _data field to contain junk after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
// lock.  We require the caller to take the lock before making the ProfileData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
// structure.  Currently the only caller is InterpreterRuntime::update_mdp_for_ret
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   528
address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // First find the mdp which corresponds to the return bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  address mdp = h_mdo->bci_to_dp(return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // Now check to see if any of the cache slots are open.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  for (uint row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    if (bci(row) == no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
      set_bci_displacement(row, mdp - dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
      set_bci_count(row, DataLayout::counter_increment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      // Barrier to ensure displacement is written before the bci; allows
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      // the interpreter to read displacement without fear of race condition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      release_set_bci(row, return_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  return mdp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
22836
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 17858
diff changeset
   546
#ifdef CC_INTERP
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 17858
diff changeset
   547
DataLayout* RetData::advance(MethodData *md, int bci) {
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 17858
diff changeset
   548
  return (DataLayout*) md->bci_to_dp(bci);
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 17858
diff changeset
   549
}
e7e511228518 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 17858
diff changeset
   550
#endif // CC_INTERP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   552
void RetData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   553
  print_shared(st, "RetData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    if (bci(row) != no_bci)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    if (bci(row) != no_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      st->print_cr("bci(%d: count(%u) displacement(%d))",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
                   bci(row), bci_count(row), bci_displacement(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
// BranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
// A BranchData is used to access profiling data for a two-way branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
// It consists of taken and not_taken counts as well as a data displacement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// for the taken case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   576
void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  int target = stream->dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  int my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  int target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  int offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  set_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   585
void BranchData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   586
  print_shared(st, "BranchData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  st->print_cr("taken(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
               taken(), displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  st->print_cr("not taken(%u)", not_taken());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// ==================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
// MultiBranchData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
// A MultiBranchData is used to access profiling information for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
// a multi-way branch (*switch bytecodes).  It consists of a series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
// of (count, displacement) pairs, which count the number of times each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
// case was taken and specify the data displacment for each branch target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  int cell_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  if (stream->code() == Bytecodes::_tableswitch) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   604
    Bytecode_tableswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   605
    cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  } else {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   607
    Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   608
    cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  return cell_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
void MultiBranchData::post_initialize(BytecodeStream* stream,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   614
                                      MethodData* mdo) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  assert(stream->bci() == bci(), "wrong pos");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  int target;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  int my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  int target_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  if (stream->code() == Bytecodes::_tableswitch) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   621
    Bytecode_tableswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   622
    int len = sw.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    for (int count = 0; count < len; count++) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   625
      target = sw.dest_offset_at(count) + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   631
    target = sw.default_offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  } else {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   638
    Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   639
    int npairs = sw.number_of_pairs();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    for (int count = 0; count < npairs; count++) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   642
      LookupswitchPair pair = sw.pair_at(count);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   643
      target = pair.offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      set_displacement_at(count, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   649
    target = sw.default_offset() + bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    my_di = mdo->dp_to_di(dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    target_di = mdo->bci_to_di(target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    offset = target_di - my_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    set_default_displacement(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   657
void MultiBranchData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   658
  print_shared(st, "MultiBranchData", extra);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  st->print_cr("default_count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
               default_count(), default_displacement());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  int cases = number_of_cases();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  for (int i = 0; i < cases; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    st->print_cr("count(%u) displacement(%d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
                 count_at(i), displacement_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   669
void ArgInfoData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   670
  print_shared(st, "ArgInfoData", extra);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   671
  int nargs = number_of_args();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   672
  for (int i = 0; i < nargs; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   673
    st->print("  0x%x", arg_modified(i));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   674
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   675
  st->cr();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   676
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   677
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   678
int ParametersTypeData::compute_cell_count(Method* m) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   679
  if (!MethodData::profile_parameters_for_method(m)) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   680
    return 0;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   681
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   682
  int max = TypeProfileParmsLimit == -1 ? INT_MAX : TypeProfileParmsLimit;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   683
  int obj_args = TypeStackSlotEntries::compute_cell_count(m->signature(), !m->is_static(), max);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   684
  if (obj_args > 0) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   685
    return obj_args + 1; // 1 cell for array len
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   686
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   687
  return 0;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   688
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   689
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   690
void ParametersTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   691
  _parameters.post_initialize(mdo->method()->signature(), !mdo->method()->is_static(), true);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   692
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   693
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   694
bool ParametersTypeData::profiling_enabled() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   695
  return MethodData::profile_parameters();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   696
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   697
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   698
void ParametersTypeData::print_data_on(outputStream* st, const char* extra) const {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   699
  st->print("parameter types"); // FIXME extra ignored?
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   700
  _parameters.print_data_on(st);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   701
}
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   702
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   703
void SpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   704
  print_shared(st, "SpeculativeTrapData", extra);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   705
  tab(st);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   706
  method()->print_short_name(st);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   707
  st->cr();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   708
}
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   709
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
// ==================================================================
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   711
// MethodData*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   713
// A MethodData* holds information which has been collected about
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
// a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
   716
MethodData* MethodData::allocate(ClassLoaderData* loader_data, const methodHandle& method, TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   717
  int size = MethodData::compute_allocation_size_in_words(method);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   718
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
   719
  return new (loader_data, size, MetaspaceObj::MethodDataType, THREAD)
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 26586
diff changeset
   720
    MethodData(method(), size, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   721
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   722
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   723
int MethodData::bytecode_cell_count(Bytecodes::Code code) {
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   724
  if (is_client_compilation_mode_vm()) {
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   725
    return no_profile_data;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   726
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  switch (code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
      return ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
      return BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  case Bytecodes::_invokestatic:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   738
    if (MethodData::profile_arguments() || MethodData::profile_return()) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   739
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   740
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   741
      return CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   742
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
    return JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  case Bytecodes::_invokeinterface:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   750
    if (MethodData::profile_arguments() || MethodData::profile_return()) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   751
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   752
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   753
      return VirtualCallData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   754
    }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
   755
  case Bytecodes::_invokedynamic:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   756
    if (MethodData::profile_arguments() || MethodData::profile_return()) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   757
      return variable_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   758
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   759
      return CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   760
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    return RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    return BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    return variable_cell_count;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46625
diff changeset
   783
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46625
diff changeset
   784
    return no_profile_data;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
// Compute the size of the profiling information corresponding to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
// the current bytecode.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   790
int MethodData::compute_data_size(BytecodeStream* stream) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  int cell_count = bytecode_cell_count(stream->code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  if (cell_count == no_profile_data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  if (cell_count == variable_cell_count) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   796
    switch (stream->code()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   797
    case Bytecodes::_lookupswitch:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   798
    case Bytecodes::_tableswitch:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   799
      cell_count = MultiBranchData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   800
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   801
    case Bytecodes::_invokespecial:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   802
    case Bytecodes::_invokestatic:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   803
    case Bytecodes::_invokedynamic:
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   804
      assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   805
      if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   806
          profile_return_for_invoke(stream->method(), stream->bci())) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   807
        cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   808
      } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   809
        cell_count = CounterData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   810
      }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   811
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   812
    case Bytecodes::_invokevirtual:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   813
    case Bytecodes::_invokeinterface: {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   814
      assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   815
      if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   816
          profile_return_for_invoke(stream->method(), stream->bci())) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   817
        cell_count = VirtualCallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   818
      } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   819
        cell_count = VirtualCallData::static_cell_count();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   820
      }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   821
      break;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   822
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   823
    default:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   824
      fatal("unexpected bytecode for var length profile data");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   825
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  // Note:  cell_count might be zero, meaning that there is just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  //        a DataLayout header, with no extra cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  assert(cell_count >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   833
bool MethodData::is_speculative_trap_bytecode(Bytecodes::Code code) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   834
  // Bytecodes for which we may use speculation
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   835
  switch (code) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   836
  case Bytecodes::_checkcast:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   837
  case Bytecodes::_instanceof:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   838
  case Bytecodes::_aastore:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   839
  case Bytecodes::_invokevirtual:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   840
  case Bytecodes::_invokeinterface:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   841
  case Bytecodes::_if_acmpeq:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   842
  case Bytecodes::_if_acmpne:
23525
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23491
diff changeset
   843
  case Bytecodes::_ifnull:
e3eb08ead679 8031755: Type speculation should be used to optimize explicit null checks
roland
parents: 23491
diff changeset
   844
  case Bytecodes::_ifnonnull:
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   845
  case Bytecodes::_invokestatic:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   846
#ifdef COMPILER2
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   847
    if (is_server_compilation_mode_vm()) {
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   848
      return UseTypeSpeculation;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   849
    }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   850
#endif
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   851
  default:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   852
    return false;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   853
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   854
  return false;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   855
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   856
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   857
int MethodData::compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   858
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   859
  if (ProfileTraps) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   860
    // Assume that up to 30% of the possibly trapping BCIs with no MDP will need to allocate one.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   861
    int extra_data_count = MIN2(empty_bc_count, MAX2(4, (empty_bc_count * 30) / 100));
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   862
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   863
    // Make sure we have a minimum number of extra data slots to
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   864
    // allocate SpeculativeTrapData entries. We would want to have one
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   865
    // entry per compilation that inlines this method and for which
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   866
    // some type speculation assumption fails. So the room we need for
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   867
    // the SpeculativeTrapData entries doesn't directly depend on the
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   868
    // size of the method. Because it's hard to estimate, we reserve
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   869
    // space for an arbitrary number of entries.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   870
    int spec_data_count = (needs_speculative_traps ? SpecTrapLimitExtraEntries : 0) *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   871
      (SpeculativeTrapData::static_cell_count() + DataLayout::header_size_in_cells());
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   872
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   873
    return MAX2(extra_data_count, spec_data_count);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   874
  } else {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   875
    return 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   876
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   877
#else // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  if (ProfileTraps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    // Assume that up to 3% of BCIs with no MDP will need to allocate one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    // If the method is large, let the extra BCIs grow numerous (to ~1%).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    int one_percent_of_data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    if (extra_data_count < one_percent_of_data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
      extra_data_count = one_percent_of_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    if (extra_data_count > empty_bc_count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
      extra_data_count = empty_bc_count;  // no need for more
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   888
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   889
    // Make sure we have a minimum number of extra data slots to
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   890
    // allocate SpeculativeTrapData entries. We would want to have one
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   891
    // entry per compilation that inlines this method and for which
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   892
    // some type speculation assumption fails. So the room we need for
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   893
    // the SpeculativeTrapData entries doesn't directly depend on the
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   894
    // size of the method. Because it's hard to estimate, we reserve
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   895
    // space for an arbitrary number of entries.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   896
    int spec_data_count = (needs_speculative_traps ? SpecTrapLimitExtraEntries : 0) *
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   897
      (SpeculativeTrapData::static_cell_count() + DataLayout::header_size_in_cells());
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   898
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   899
    return MAX2(extra_data_count, spec_data_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   903
#endif // INCLUDE_JVMCI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   906
// Compute the size of the MethodData* necessary to store
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
// profiling information about a given method.  Size is in bytes.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
   908
int MethodData::compute_allocation_size_in_bytes(const methodHandle& method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  BytecodeStream stream(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  Bytecodes::Code c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  int empty_bc_count = 0;  // number of bytecodes lacking data
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   913
  bool needs_speculative_traps = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    int size_in_bytes = compute_data_size(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    data_size += size_in_bytes;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
   917
    if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c)))  empty_bc_count += 1;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   918
    needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  // Add some extra DataLayout cells (at least one) to track stray traps.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
   923
  int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   926
  // 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
   927
  int arg_size = method->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   928
  object_size += DataLayout::compute_size_in_bytes(arg_size+1);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   929
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   930
  // Reserve room for an area of the MDO dedicated to profiling of
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   931
  // parameters
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   932
  int args_cell = ParametersTypeData::compute_cell_count(method());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   933
  if (args_cell > 0) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   934
    object_size += DataLayout::compute_size_in_bytes(args_cell);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   935
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  return object_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   939
// Compute the size of the MethodData* necessary to store
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
// profiling information about a given method.  Size is in words
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
   941
int MethodData::compute_allocation_size_in_words(const methodHandle& method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  int byte_size = compute_allocation_size_in_bytes(method);
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46542
diff changeset
   943
  int word_size = align_up(byte_size, BytesPerWord) / BytesPerWord;
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 35492
diff changeset
   944
  return align_metadata_size(word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
// Initialize an individual data segment.  Returns the size of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
// the segment in bytes.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
   949
int MethodData::initialize_data(BytecodeStream* stream,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
                                       int data_index) {
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   951
  if (is_client_compilation_mode_vm()) {
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   952
    return 0;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 37473
diff changeset
   953
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  int cell_count = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  int tag = DataLayout::no_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  DataLayout* data_layout = data_layout_at(data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  Bytecodes::Code c = stream->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  switch (c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  case Bytecodes::_instanceof:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  case Bytecodes::_aastore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    if (TypeProfileCasts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
      cell_count = ReceiverTypeData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      tag = DataLayout::receiver_type_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      cell_count = BitData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      tag = DataLayout::bit_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  case Bytecodes::_invokespecial:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   971
  case Bytecodes::_invokestatic: {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   972
    int counter_data_cell_count = CounterData::static_cell_count();
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   973
    if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   974
        profile_return_for_invoke(stream->method(), stream->bci())) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   975
      cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   976
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   977
      cell_count = counter_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   978
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   979
    if (cell_count > counter_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   980
      tag = DataLayout::call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   981
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   982
      tag = DataLayout::counter_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   983
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   985
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    cell_count = JumpData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
    tag = DataLayout::jump_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  case Bytecodes::_invokevirtual:
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   994
  case Bytecodes::_invokeinterface: {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   995
    int virtual_call_data_cell_count = VirtualCallData::static_cell_count();
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   996
    if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   997
        profile_return_for_invoke(stream->method(), stream->bci())) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   998
      cell_count = VirtualCallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
   999
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1000
      cell_count = virtual_call_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1001
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1002
    if (cell_count > virtual_call_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1003
      tag = DataLayout::virtual_call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1004
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1005
      tag = DataLayout::virtual_call_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1006
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1008
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1009
  case Bytecodes::_invokedynamic: {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
  1010
    // %%% should make a type profile for any invokedynamic that takes a ref argument
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1011
    int counter_data_cell_count = CounterData::static_cell_count();
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1012
    if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1013
        profile_return_for_invoke(stream->method(), stream->bci())) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1014
      cell_count = CallTypeData::compute_cell_count(stream);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1015
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1016
      cell_count = counter_data_cell_count;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1017
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1018
    if (cell_count > counter_data_cell_count) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1019
      tag = DataLayout::call_type_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1020
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1021
      tag = DataLayout::counter_data_tag;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1022
    }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 670
diff changeset
  1023
    break;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1024
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  case Bytecodes::_ret:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    cell_count = RetData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    tag = DataLayout::ret_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
    cell_count = BranchData::static_cell_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    tag = DataLayout::branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    cell_count = MultiBranchData::compute_cell_count(stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    tag = DataLayout::multi_branch_data_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46625
diff changeset
  1053
  default:
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46625
diff changeset
  1054
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  assert(tag == DataLayout::multi_branch_data_tag ||
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1057
         ((MethodData::profile_arguments() || MethodData::profile_return()) &&
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1058
          (tag == DataLayout::call_type_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1059
           tag == DataLayout::counter_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1060
           tag == DataLayout::virtual_call_type_data_tag ||
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1061
           tag == DataLayout::virtual_call_data_tag)) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
         cell_count == bytecode_cell_count(c), "cell counts must agree");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  if (cell_count >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    assert(tag != DataLayout::no_tag, "bad tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    assert(bytecode_has_profile(c), "agree w/ BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    data_layout->initialize(tag, stream->bci(), cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    return DataLayout::compute_size_in_bytes(cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    assert(!bytecode_has_profile(c), "agree w/ !BHP");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
// Get the data at an arbitrary (sort of) data index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1075
ProfileData* MethodData::data_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  if (out_of_bounds(data_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  DataLayout* data_layout = data_layout_at(data_index);
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1080
  return data_layout->data_in();
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1081
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1083
ProfileData* DataLayout::data_in() {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1084
  switch (tag()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  case DataLayout::no_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  case DataLayout::bit_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1090
    return new BitData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  case DataLayout::counter_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1092
    return new CounterData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  case DataLayout::jump_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1094
    return new JumpData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  case DataLayout::receiver_type_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1096
    return new ReceiverTypeData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  case DataLayout::virtual_call_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1098
    return new VirtualCallData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  case DataLayout::ret_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1100
    return new RetData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  case DataLayout::branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1102
    return new BranchData(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  case DataLayout::multi_branch_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1104
    return new MultiBranchData(this);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1105
  case DataLayout::arg_info_data_tag:
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3261
diff changeset
  1106
    return new ArgInfoData(this);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1107
  case DataLayout::call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1108
    return new CallTypeData(this);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1109
  case DataLayout::virtual_call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1110
    return new VirtualCallTypeData(this);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1111
  case DataLayout::parameters_type_data_tag:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1112
    return new ParametersTypeData(this);
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33198
diff changeset
  1113
  case DataLayout::speculative_trap_data_tag:
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33198
diff changeset
  1114
    return new SpeculativeTrapData(this);
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33198
diff changeset
  1115
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
// Iteration over data.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1119
ProfileData* MethodData::next_data(ProfileData* current) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  int current_index = dp_to_di(current->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  int next_index = current_index + current->size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  ProfileData* next = data_at(next_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
// Give each of the data entries a chance to perform specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
// data initialization.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1128
void MethodData::post_initialize(BytecodeStream* stream) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  ProfileData* data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  for (data = first_data(); is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
    stream->set_start(data->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
    stream->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    data->post_initialize(stream, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  }
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1136
  if (_parameters_type_data_di != no_parameters) {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1137
    parameters_type_data()->post_initialize(NULL, this);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1138
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1141
// Initialize the MethodData* corresponding to a given method.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
  1142
MethodData::MethodData(const methodHandle& method, int size, TRAPS)
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1143
  : _extra_data_lock(Monitor::leaf, "MDO extra data lock"),
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1144
    _parameters_type_data_di(parameters_uninitialized) {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1145
  // Set the method back-pointer.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1146
  _method = method();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1147
  initialize();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1148
}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1149
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1150
void MethodData::initialize() {
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 33638
diff changeset
  1151
  NoSafepointVerifier no_safepoint;  // init function atomic wrt GC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  ResourceMark rm;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1153
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1154
  init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  set_creation_mileage(mileage_of(method()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  // Go through the bytecodes and allocate and initialize the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  // corresponding data cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  int data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  int empty_bc_count = 0;  // number of bytecodes lacking data
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15437
diff changeset
  1161
  _data[0] = 0;  // apparently not set below.
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1162
  BytecodeStream stream(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  Bytecodes::Code c;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1164
  bool needs_speculative_traps = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  while ((c = stream.next()) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    int size_in_bytes = initialize_data(&stream, data_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
    data_size += size_in_bytes;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1168
    if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c)))  empty_bc_count += 1;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1169
    needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  _data_size = data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  int object_size = in_bytes(data_offset()) + data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  // Add some extra DataLayout cells (at least one) to track stray traps.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1175
  int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1176
  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
  1177
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1178
  // Let's zero the space for the extra data
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1179
  Copy::zero_to_bytes(((address)_data) + data_size, extra_size);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1180
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1181
  // 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
  1182
  // 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
  1183
  // the code for traps cells works.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1184
  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
  1185
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1186
  int arg_size = method()->size_of_parameters();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1187
  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
  1188
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1189
  int arg_data_size = DataLayout::compute_size_in_bytes(arg_size+1);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1190
  object_size += extra_size + arg_data_size;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1191
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1192
  int parms_cell = ParametersTypeData::compute_cell_count(method());
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1193
  // If we are profiling parameters, we reserver an area near the end
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1194
  // of the MDO after the slots for bytecodes (because there's no bci
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1195
  // for method entry so they don't fit with the framework for the
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1196
  // profiling of bytecodes). We store the offset within the MDO of
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1197
  // this area (or -1 if no parameter is profiled)
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1198
  if (parms_cell > 0) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1199
    object_size += DataLayout::compute_size_in_bytes(parms_cell);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1200
    _parameters_type_data_di = data_size + extra_size + arg_data_size;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1201
    DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1202
    dp->initialize(DataLayout::parameters_type_data_tag, 0, parms_cell);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1203
  } else {
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1204
    _parameters_type_data_di = no_parameters;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1205
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  // In that situation, _hint_di is never used, but at
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  // least well-defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  _hint_di = first_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  post_initialize(&stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1215
  assert(object_size == compute_allocation_size_in_bytes(methodHandle(_method)), "MethodData: computed size != initialized size");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1216
  set_size(object_size);
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1217
}
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15437
diff changeset
  1218
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1219
void MethodData::init() {
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1220
  _invocation_counter.init();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1221
  _backedge_counter.init();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1222
  _invocation_counter_start = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1223
  _backedge_counter_start = 0;
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1224
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1225
  // Set per-method invoke- and backedge mask.
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1226
  double scale = 1.0;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1227
  CompilerOracle::has_option_value(_method, "CompileThresholdScaling", scale);
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1228
  _invoke_mask = right_n_bits(Arguments::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1229
  _backedge_mask = right_n_bits(Arguments::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 28365
diff changeset
  1230
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24424
diff changeset
  1231
  _tenure_traps = 0;
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1232
  _num_loops = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1233
  _num_blocks = 0;
27643
fe8f95a2d9bc 8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents: 26586
diff changeset
  1234
  _would_profile = unknown;
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1235
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1236
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1237
  _jvmci_ir_size = 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1238
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 30183
diff changeset
  1239
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1240
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1241
  _rtm_state = NoRTM; // No RTM lock eliding by default
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1242
  if (UseRTMLocking &&
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1243
      !CompilerOracle::has_option_string(_method, "NoRTMLockEliding")) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1244
    if (CompilerOracle::has_option_string(_method, "UseRTMLockEliding") || !UseRTMDeopt) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1245
      // Generate RTM lock eliding code without abort ratio calculation code.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1246
      _rtm_state = UseRTM;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1247
    } else if (UseRTMDeopt) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1248
      // Generate RTM lock eliding code and include abort ratio calculation
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1249
      // code if UseRTMDeopt is on.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1250
      _rtm_state = ProfileRTM;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1251
    }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1252
  }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1253
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 23201
diff changeset
  1254
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1255
  // Initialize flags and trap history.
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1256
  _nof_decompiles = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1257
  _nof_overflow_recompiles = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1258
  _nof_overflow_traps = 0;
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1259
  clear_escape_info();
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1260
  assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1261
  Copy::zero_to_words((HeapWord*) &_trap_hist,
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 16611
diff changeset
  1262
                      sizeof(_trap_hist) / sizeof(HeapWord));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
// Get a measure of how much mileage the method has on it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1266
int MethodData::mileage_of(Method* method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  int mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1268
  if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1269
    mileage = MAX2(method->invocation_count(), method->backedge_count());
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1270
  } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1271
    int iic = method->interpreter_invocation_count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1272
    if (mileage < iic)  mileage = iic;
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1273
    MethodCounters* mcs = method->method_counters();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1274
    if (mcs != NULL) {
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1275
      InvocationCounter* ic = mcs->invocation_counter();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1276
      InvocationCounter* bc = mcs->backedge_counter();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1277
      int icval = ic->count();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1278
      if (ic->carry()) icval += CompileThreshold;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1279
      if (mileage < icval)  mileage = icval;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1280
      int bcval = bc->count();
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1281
      if (bc->carry()) bcval += CompileThreshold;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1282
      if (mileage < bcval)  mileage = bcval;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 16611
diff changeset
  1283
    }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1284
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
  return mileage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1288
bool MethodData::is_mature() const {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
  1289
  return CompilationPolicy::policy()->is_mature(_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
// Translate a bci to its corresponding data index (di).
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1293
address MethodData::bci_to_dp(int bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  ProfileData* prev = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    if (data->bci() >= bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
      if (data->bci() == bci)  set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
      else if (prev != NULL)   set_hint_di(dp_to_di(prev->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
      return data->dp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    prev = data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  return (address)limit_data_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
// Translate a bci to its corresponding data, or NULL.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1309
ProfileData* MethodData::bci_to_data(int bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  ProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    if (data->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
      return data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    } else if (data->bci() > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1319
  return bci_to_extra_data(bci, NULL, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1322
DataLayout* MethodData::next_extra(DataLayout* dp) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1323
  int nb_cells = 0;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1324
  switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1325
  case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1326
  case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1327
    nb_cells = BitData::static_cell_count();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1328
    break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1329
  case DataLayout::speculative_trap_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1330
    nb_cells = SpeculativeTrapData::static_cell_count();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1331
    break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1332
  default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
  1333
    fatal("unexpected tag %d", dp->tag());
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1334
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1335
  return (DataLayout*)((address)dp + DataLayout::compute_size_in_bytes(nb_cells));
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1336
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1337
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1338
ProfileData* MethodData::bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp, bool concurrent) {
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1339
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1340
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1341
  for (;; dp = next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1342
    assert(dp < end, "moved past end of extra data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    // since the data structure is monotonic.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1345
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1346
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1347
      return NULL;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1348
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1349
      dp = end;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1350
      return NULL; // ArgInfoData is at the end of extra data section.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1351
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1352
      if (m == NULL && dp->bci() == bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1353
        return new BitData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1354
      }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1355
      break;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1356
    case DataLayout::speculative_trap_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1357
      if (m != NULL) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1358
        SpeculativeTrapData* data = new SpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1359
        // data->method() may be null in case of a concurrent
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1360
        // allocation. Maybe it's for the same method. Try to use that
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1361
        // entry in that case.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1362
        if (dp->bci() == bci) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1363
          if (data->method() == NULL) {
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1364
            assert(concurrent, "impossible because no concurrent allocation");
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1365
            return NULL;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1366
          } else if (data->method() == m) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1367
            return data;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1368
          }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1369
        }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1370
      }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1371
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1372
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
  1373
      fatal("unexpected tag %d", dp->tag());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  }
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1376
  return NULL;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1377
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1378
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1379
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1380
// Translate a bci to its corresponding extra data, or NULL.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1381
ProfileData* MethodData::bci_to_extra_data(int bci, Method* m, bool create_if_missing) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1382
  // This code assumes an entry for a SpeculativeTrapData is 2 cells
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1383
  assert(2*DataLayout::compute_size_in_bytes(BitData::static_cell_count()) ==
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1384
         DataLayout::compute_size_in_bytes(SpeculativeTrapData::static_cell_count()),
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1385
         "code needs to be adjusted");
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1386
28365
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1387
  // Do not create one of these if method has been redefined.
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1388
  if (m != NULL && m->is_old()) {
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1389
    return NULL;
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1390
  }
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1391
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1392
  DataLayout* dp  = extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1393
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1394
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1395
  // Allocation in the extra data space has to be atomic because not
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1396
  // all entries have the same size and non atomic concurrent
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1397
  // allocation would result in a corrupted extra data space.
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1398
  ProfileData* result = bci_to_extra_data_helper(bci, m, dp, true);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1399
  if (result != NULL) {
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1400
    return result;
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1401
  }
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1402
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1403
  if (create_if_missing && dp < end) {
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1404
    MutexLocker ml(&_extra_data_lock);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1405
    // Check again now that we have the lock. Another thread may
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1406
    // have added extra data entries.
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1407
    ProfileData* result = bci_to_extra_data_helper(bci, m, dp, false);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1408
    if (result != NULL || dp >= end) {
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1409
      return result;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1410
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1411
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1412
    assert(dp->tag() == DataLayout::no_tag || (dp->tag() == DataLayout::speculative_trap_data_tag && m != NULL), "should be free");
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1413
    assert(next_extra(dp)->tag() == DataLayout::no_tag || next_extra(dp)->tag() == DataLayout::arg_info_data_tag, "should be free or arg info");
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1414
    u1 tag = m == NULL ? DataLayout::bit_data_tag : DataLayout::speculative_trap_data_tag;
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1415
    // SpeculativeTrapData is 2 slots. Make sure we have room.
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1416
    if (m != NULL && next_extra(dp)->tag() != DataLayout::no_tag) {
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1417
      return NULL;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1418
    }
23201
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1419
    DataLayout temp;
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1420
    temp.initialize(tag, bci, 0);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1421
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1422
    dp->set_header(temp.header());
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1423
    assert(dp->tag() == tag, "sane");
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1424
    assert(dp->bci() == bci, "no concurrent allocation");
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1425
    if (tag == DataLayout::bit_data_tag) {
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1426
      return new BitData(dp);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1427
    } else {
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1428
      SpeculativeTrapData* data = new SpeculativeTrapData(dp);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1429
      data->set_method(m);
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1430
      return data;
6920163f479e 8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents: 22916
diff changeset
  1431
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1436
ArgInfoData *MethodData::arg_info() {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1437
  DataLayout* dp    = extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1438
  DataLayout* end   = args_data_limit();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1439
  for (; dp < end; dp = next_extra(dp)) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1440
    if (dp->tag() == DataLayout::arg_info_data_tag)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1441
      return new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1442
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1443
  return NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1444
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1445
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1446
// Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1447
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1448
void MethodData::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1449
  assert(is_methodData(), "should be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1450
  st->print("method data for ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1451
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1452
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1453
  print_data_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1454
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1455
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1456
void MethodData::print_value_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1457
  assert(is_methodData(), "should be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1458
  st->print("method data for ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1459
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1460
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1461
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1462
void MethodData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
  ProfileData* data = first_data();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1465
  if (_parameters_type_data_di != no_parameters) {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1466
    parameters_type_data()->print_data_on(st);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1467
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
    st->fill_to(6);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1471
    data->print_data_on(st, this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1473
  st->print_cr("--- Extra data:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  DataLayout* dp    = extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1475
  DataLayout* end   = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1476
  for (;; dp = next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1477
    assert(dp < end, "moved past end of extra data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    // No need for "OrderAccess::load_acquire" ops,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
    // since the data structure is monotonic.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1480
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1481
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1482
      continue;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1483
    case DataLayout::bit_data_tag:
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1484
      data = new BitData(dp);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1485
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1486
    case DataLayout::speculative_trap_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1487
      data = new SpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1488
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1489
    case DataLayout::arg_info_data_tag:
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1490
      data = new ArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1491
      dp = end; // ArgInfoData is at the end of extra data section.
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1492
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1493
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
  1494
      fatal("unexpected tag %d", dp->tag());
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
  1495
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
    data->print_data_on(st);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1499
    if (dp >= end) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1503
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1504
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1505
void MethodData::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1506
  int n = sz->count(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1507
  sz->_method_data_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1508
  sz->_method_all_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1509
  sz->_rw_bytes += n;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1510
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13728
diff changeset
  1511
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1512
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1513
// Verification
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1514
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1515
void MethodData::verify_on(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1516
  guarantee(is_methodData(), "object must be method data");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1517
  // guarantee(m->is_perm(), "should be in permspace");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1518
  this->verify_data_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1519
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1520
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8334
diff changeset
  1521
void MethodData::verify_data_on(outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
  NEEDS_CLEANUP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  // not yet implemented.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1525
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
  1526
bool MethodData::profile_jsr292(const methodHandle& m, int bci) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1527
  if (m->is_compiled_lambda_form()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1528
    return true;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1529
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1530
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1531
  Bytecode_invoke inv(m , bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1532
  return inv.is_invokedynamic() || inv.is_invokehandle();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1533
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1534
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1535
bool MethodData::profile_unsafe(const methodHandle& m, int bci) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1536
  Bytecode_invoke inv(m , bci);
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1537
  if (inv.is_invokevirtual() && inv.klass() == vmSymbols::jdk_internal_misc_Unsafe()) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1538
    ResourceMark rm;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1539
    char* name = inv.name()->as_C_string();
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1540
    if (!strncmp(name, "get", 3) || !strncmp(name, "put", 3)) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1541
      return true;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1542
    }
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1543
  }
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1544
  return false;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1545
}
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1546
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1547
int MethodData::profile_arguments_flag() {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1548
  return TypeProfileLevel % 10;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1549
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1550
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1551
bool MethodData::profile_arguments() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1552
  return profile_arguments_flag() > no_type_profile && profile_arguments_flag() <= type_profile_all;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1553
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1554
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1555
bool MethodData::profile_arguments_jsr292_only() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1556
  return profile_arguments_flag() == type_profile_jsr292;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1557
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1558
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1559
bool MethodData::profile_all_arguments() {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1560
  return profile_arguments_flag() == type_profile_all;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1561
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1562
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
  1563
bool MethodData::profile_arguments_for_invoke(const methodHandle& m, int bci) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1564
  if (!profile_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1565
    return false;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1566
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1567
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1568
  if (profile_all_arguments()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1569
    return true;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1570
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1571
46542
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1572
  if (profile_unsafe(m, bci)) {
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1573
    return true;
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1574
  }
73dd19b96b5d 8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents: 43455
diff changeset
  1575
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1576
  assert(profile_arguments_jsr292_only(), "inconsistent");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1577
  return profile_jsr292(m, bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1578
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17858
diff changeset
  1579
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1580
int MethodData::profile_return_flag() {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1581
  return (TypeProfileLevel % 100) / 10;
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1582
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1583
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1584
bool MethodData::profile_return() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1585
  return profile_return_flag() > no_type_profile && profile_return_flag() <= type_profile_all;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1586
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1587
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1588
bool MethodData::profile_return_jsr292_only() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1589
  return profile_return_flag() == type_profile_jsr292;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1590
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1591
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1592
bool MethodData::profile_all_return() {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1593
  return profile_return_flag() == type_profile_all;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1594
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1595
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
  1596
bool MethodData::profile_return_for_invoke(const methodHandle& m, int bci) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1597
  if (!profile_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1598
    return false;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1599
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1600
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1601
  if (profile_all_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1602
    return true;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1603
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1604
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1605
  assert(profile_return_jsr292_only(), "inconsistent");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1606
  return profile_jsr292(m, bci);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
  1607
}
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1608
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1609
int MethodData::profile_parameters_flag() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1610
  return TypeProfileLevel / 100;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1611
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1612
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1613
bool MethodData::profile_parameters() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1614
  return profile_parameters_flag() > no_type_profile && profile_parameters_flag() <= type_profile_all;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1615
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1616
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1617
bool MethodData::profile_parameters_jsr292_only() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1618
  return profile_parameters_flag() == type_profile_jsr292;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1619
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1620
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1621
bool MethodData::profile_all_parameters() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1622
  return profile_parameters_flag() == type_profile_all;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1623
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1624
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33198
diff changeset
  1625
bool MethodData::profile_parameters_for_method(const methodHandle& m) {
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1626
  if (!profile_parameters()) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1627
    return false;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1628
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1629
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1630
  if (profile_all_parameters()) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1631
    return true;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1632
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1633
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1634
  assert(profile_parameters_jsr292_only(), "inconsistent");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1635
  return m->is_compiled_lambda_form();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
  1636
}
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1637
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
  1638
void MethodData::metaspace_pointers_do(MetaspaceClosure* it) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
  1639
  log_trace(cds)("Iter(MethodData): %p", this);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
  1640
  it->push(&_method);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
  1641
}
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46630
diff changeset
  1642
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1643
void MethodData::clean_extra_data_helper(DataLayout* dp, int shift, bool reset) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1644
  if (shift == 0) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1645
    return;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1646
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1647
  if (!reset) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1648
    // Move all cells of trap entry at dp left by "shift" cells
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1649
    intptr_t* start = (intptr_t*)dp;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1650
    intptr_t* end = (intptr_t*)next_extra(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1651
    for (intptr_t* ptr = start; ptr < end; ptr++) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1652
      *(ptr-shift) = *ptr;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1653
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1654
  } else {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1655
    // Reset "shift" cells stopping at dp
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1656
    intptr_t* start = ((intptr_t*)dp) - shift;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1657
    intptr_t* end = (intptr_t*)dp;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1658
    for (intptr_t* ptr = start; ptr < end; ptr++) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1659
      *ptr = 0;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1660
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1661
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1662
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1663
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1664
class CleanExtraDataClosure : public StackObj {
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1665
public:
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1666
  virtual bool is_live(Method* m) = 0;
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1667
};
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1668
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1669
// Check for entries that reference an unloaded method
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1670
class CleanExtraDataKlassClosure : public CleanExtraDataClosure {
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1671
private:
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1672
  BoolObjectClosure* _is_alive;
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1673
public:
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1674
  CleanExtraDataKlassClosure(BoolObjectClosure* is_alive) : _is_alive(is_alive) {}
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1675
  bool is_live(Method* m) {
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1676
    return m->method_holder()->is_loader_alive(_is_alive);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1677
  }
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1678
};
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1679
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1680
// Check for entries that reference a redefined method
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1681
class CleanExtraDataMethodClosure : public CleanExtraDataClosure {
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1682
public:
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1683
  CleanExtraDataMethodClosure() {}
28365
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1684
  bool is_live(Method* m) { return !m->is_old(); }
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1685
};
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1686
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1687
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1688
// Remove SpeculativeTrapData entries that reference an unloaded or
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1689
// redefined method
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1690
void MethodData::clean_extra_data(CleanExtraDataClosure* cl) {
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1691
  DataLayout* dp  = extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1692
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1693
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1694
  int shift = 0;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1695
  for (; dp < end; dp = next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1696
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1697
    case DataLayout::speculative_trap_data_tag: {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1698
      SpeculativeTrapData* data = new SpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1699
      Method* m = data->method();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1700
      assert(m != NULL, "should have a method");
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1701
      if (!cl->is_live(m)) {
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1702
        // "shift" accumulates the number of cells for dead
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1703
        // SpeculativeTrapData entries that have been seen so
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1704
        // far. Following entries must be shifted left by that many
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1705
        // cells to remove the dead SpeculativeTrapData entries.
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1706
        shift += (int)((intptr_t*)next_extra(dp) - (intptr_t*)dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1707
      } else {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1708
        // Shift this entry left if it follows dead
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1709
        // SpeculativeTrapData entries
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1710
        clean_extra_data_helper(dp, shift);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1711
      }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1712
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1713
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1714
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1715
      // Shift this entry left if it follows dead SpeculativeTrapData
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1716
      // entries
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1717
      clean_extra_data_helper(dp, shift);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1718
      continue;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1719
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1720
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1721
      // We are at end of the live trap entries. The previous "shift"
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1722
      // cells contain entries that are either dead or were shifted
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1723
      // left. They need to be reset to no_tag
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1724
      clean_extra_data_helper(dp, shift, true);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1725
      return;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1726
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
  1727
      fatal("unexpected tag %d", dp->tag());
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1728
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1729
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1730
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1731
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1732
// Verify there's no unloaded or redefined method referenced by a
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1733
// SpeculativeTrapData entry
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1734
void MethodData::verify_extra_data_clean(CleanExtraDataClosure* cl) {
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1735
#ifdef ASSERT
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1736
  DataLayout* dp  = extra_data_base();
26440
0c9e5ee0083a 8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents: 25635
diff changeset
  1737
  DataLayout* end = args_data_limit();
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1738
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1739
  for (; dp < end; dp = next_extra(dp)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1740
    switch(dp->tag()) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1741
    case DataLayout::speculative_trap_data_tag: {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1742
      SpeculativeTrapData* data = new SpeculativeTrapData(dp);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1743
      Method* m = data->method();
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1744
      assert(m != NULL && cl->is_live(m), "Method should exist");
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1745
      break;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1746
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1747
    case DataLayout::bit_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1748
      continue;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1749
    case DataLayout::no_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1750
    case DataLayout::arg_info_data_tag:
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1751
      return;
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1752
    default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30183
diff changeset
  1753
      fatal("unexpected tag %d", dp->tag());
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1754
    }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1755
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1756
#endif
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1757
}
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1758
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1759
void MethodData::clean_method_data(BoolObjectClosure* is_alive) {
37473
8af1deb0c879 8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents: 37248
diff changeset
  1760
  ResourceMark rm;
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1761
  for (ProfileData* data = first_data();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1762
       is_valid(data);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1763
       data = next_data(data)) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1764
    data->clean_weak_klass_links(is_alive);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1765
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1766
  ParametersTypeData* parameters = parameters_type_data();
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1767
  if (parameters != NULL) {
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1768
    parameters->clean_weak_klass_links(is_alive);
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1769
  }
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1770
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1771
  CleanExtraDataKlassClosure cl(is_alive);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1772
  clean_extra_data(&cl);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1773
  verify_extra_data_clean(&cl);
22916
582da2ed4dfa 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 22851
diff changeset
  1774
}
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1775
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1776
void MethodData::clean_weak_method_links() {
37473
8af1deb0c879 8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents: 37248
diff changeset
  1777
  ResourceMark rm;
23845
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1778
  for (ProfileData* data = first_data();
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1779
       is_valid(data);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1780
       data = next_data(data)) {
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1781
    data->clean_weak_method_links();
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1782
  }
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1783
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1784
  CleanExtraDataMethodClosure cl;
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1785
  clean_extra_data(&cl);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1786
  verify_extra_data_clean(&cl);
ebd1fafcc362 8038636: speculative traps break when classes are redefined
roland
parents: 23526
diff changeset
  1787
}
28365
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1788
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1789
#ifdef ASSERT
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1790
void MethodData::verify_clean_weak_method_links() {
37473
8af1deb0c879 8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents: 37248
diff changeset
  1791
  ResourceMark rm;
28365
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1792
  for (ProfileData* data = first_data();
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1793
       is_valid(data);
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1794
       data = next_data(data)) {
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1795
    data->verify_clean_weak_method_links();
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1796
  }
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1797
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1798
  CleanExtraDataMethodClosure cl;
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1799
  verify_extra_data_clean(&cl);
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1800
}
ccf31849c7a4 8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents: 27685
diff changeset
  1801
#endif // ASSERT