hotspot/src/share/vm/ci/ciMethodData.cpp
author roland
Tue, 22 Oct 2013 09:51:47 +0200
changeset 21095 1a04f7b3946e
parent 20709 034be898bf04
child 22234 da823d78ad65
permissions -rw-r--r--
8026251: New type profiling points: parameters to methods Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
     2
 * Copyright (c) 2001, 2012, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    26
#include "ci/ciMetadata.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "ci/ciMethodData.hpp"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
    28
#include "ci/ciReplay.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "ci/ciUtilities.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// ciMethodData::ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    40
ciMethodData::ciMethodData(MethodData* md) : ciMetadata(md) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    41
  assert(md != NULL, "no null method data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _extra_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  _current_mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    47
  _invocation_counter = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    48
  _backedge_counter = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _state = empty_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _saw_free_extra_data = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _hint_di = first_di();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    54
  // Initialize the escape information (to "don't know.");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    55
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    56
  _parameters = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// ciMethodData::ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    62
// No MethodData*.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    63
ciMethodData::ciMethodData() : ciMetadata(NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  _data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _extra_data_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _current_mileage = 0;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    69
  _invocation_counter = 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    70
  _backedge_counter = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _state = empty_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _saw_free_extra_data = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Set an initial hint. Don't use set_hint_di() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // first_di() may be out of bounds if data_size is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _hint_di = first_di();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    76
  // Initialize the escape information (to "don't know.");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    77
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
    78
  _parameters = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void ciMethodData::load_data() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    82
  MethodData* mdo = get_MethodData();
20695
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
    83
  if (mdo == NULL) {
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
    84
    return;
4f5a5e95090b 8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents: 20692
diff changeset
    85
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // To do: don't copy the data if it is not "ripe" -- require a minimum #
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // of invocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Snapshot the data -- actually, take an approximate snapshot of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // the data.  Any concurrently executing threads may be changing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // data as we copy it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    93
  Copy::disjoint_words((HeapWord*) mdo,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    94
                       (HeapWord*) &_orig,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    95
                       sizeof(_orig) / HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _data_size = mdo->data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _extra_data_size = mdo->extra_data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int total_size = _data_size + _extra_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  _data = (intptr_t *) arena->Amalloc(total_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Traverse the profile data, translating any oops into their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // ci equivalents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  ciProfileData* ci_data = first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  ProfileData* data = mdo->first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  while (is_valid(ci_data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    ci_data->translate_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    ci_data = next_data(ci_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    data = mdo->next_data(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   113
  if (mdo->parameters_type_data() != NULL) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   114
    _parameters = data_layout_at(mdo->parameters_type_data_di());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   115
    ciParametersTypeData* parameters = new ciParametersTypeData(_parameters);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   116
    parameters->translate_from(mdo->parameters_type_data());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   117
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   118
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Note:  Extra data are all BitData, and do not need translation.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   120
  _current_mileage = MethodData::mileage_of(mdo->method());
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   121
  _invocation_counter = mdo->invocation_count();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   122
  _backedge_counter = mdo->backedge_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _state = mdo->is_mature()? mature_state: immature_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _eflags = mdo->eflags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _arg_local = mdo->arg_local();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _arg_stack = mdo->arg_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _arg_returned  = mdo->arg_returned();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   129
#ifndef PRODUCT
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   130
  if (ReplayCompiles) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   131
    ciReplay::initialize(this);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   132
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   133
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   136
void ciReceiverTypeData::translate_receiver_data_from(const ProfileData* data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  for (uint row = 0; row < row_limit(); row++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   138
    Klass* k = data->as_ReceiverTypeData()->receiver(row);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    if (k != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   140
      ciKlass* klass = CURRENT_ENV->get_klass(k);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      set_receiver(row, klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   147
void ciTypeStackSlotEntries::translate_type_data_from(const TypeStackSlotEntries* entries) {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   148
  for (int i = 0; i < _number_of_entries; i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   149
    intptr_t k = entries->type(i);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   150
    TypeStackSlotEntries::set_type(i, translate_klass(k));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   151
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   152
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   153
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   154
void ciReturnTypeEntry::translate_type_data_from(const ReturnTypeEntry* ret) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   155
  intptr_t k = ret->type();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   156
  set_type(translate_klass(k));
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   157
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   158
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// Get the data at an arbitrary (sort of) data index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
ciProfileData* ciMethodData::data_at(int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (out_of_bounds(data_index)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  DataLayout* data_layout = data_layout_at(data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  switch (data_layout->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  case DataLayout::no_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  case DataLayout::bit_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    return new ciBitData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  case DataLayout::counter_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return new ciCounterData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  case DataLayout::jump_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    return new ciJumpData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  case DataLayout::receiver_type_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    return new ciReceiverTypeData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  case DataLayout::virtual_call_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    return new ciVirtualCallData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  case DataLayout::ret_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return new ciRetData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  case DataLayout::branch_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    return new ciBranchData(data_layout);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  case DataLayout::multi_branch_data_tag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return new ciMultiBranchData(data_layout);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   187
  case DataLayout::arg_info_data_tag:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   188
    return new ciArgInfoData(data_layout);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   189
  case DataLayout::call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   190
    return new ciCallTypeData(data_layout);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   191
  case DataLayout::virtual_call_type_data_tag:
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   192
    return new ciVirtualCallTypeData(data_layout);
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   193
  case DataLayout::parameters_type_data_tag:
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   194
    return new ciParametersTypeData(data_layout);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// Iteration over data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
ciProfileData* ciMethodData::next_data(ciProfileData* current) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  int current_index = dp_to_di(current->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  int next_index = current_index + current->size_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ciProfileData* next = data_at(next_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
// Translate a bci to its corresponding data, or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
ciProfileData* ciMethodData::bci_to_data(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  ciProfileData* data = data_before(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  for ( ; is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    if (data->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      set_hint_di(dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      return data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    } else if (data->bci() > bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // bci_to_extra_data(bci) ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  DataLayout* dp  = data_layout_at(data_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  DataLayout* end = data_layout_at(data_size() + extra_data_size());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   220
  for (; dp < end; dp = MethodData::next_extra(dp)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    if (dp->tag() == DataLayout::no_tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      _saw_free_extra_data = true;  // observed an empty slot (common case)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   225
    if (dp->tag() == DataLayout::arg_info_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   226
      break; // ArgInfoData is at the end of extra data section.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   227
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    if (dp->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      assert(dp->tag() == DataLayout::bit_data_tag, "sane");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      return new ciBitData(dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
// Conservatively decode the trap_state of a ciProfileData.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
int ciMethodData::has_trap_at(ciProfileData* data, int reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  typedef Deoptimization::DeoptReason DR_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  int per_bc_reason
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    = Deoptimization::reason_recorded_per_bytecode_if_any((DR_t) reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (trap_count(reason) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // Impossible for this trap to have occurred, regardless of trap_state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // Note:  This happens if the MDO is empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  } else if (per_bc_reason == Deoptimization::Reason_none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // We cannot conclude anything; a trap happened somewhere, maybe here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  } else if (data == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // No profile here, not even an extra_data record allocated on the fly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // If there are empty extra_data records, and there had been a trap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // there would have been a non-null data pointer.  If there are no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    // free extra_data records, we must return a conservative -1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    if (_saw_free_extra_data)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      return 0;                 // Q.E.D.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      return -1;                // bail with a conservative answer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
int ciMethodData::trap_recompiled_at(ciProfileData* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  if (data == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    return (_saw_free_extra_data? 0: -1);  // (see previous method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
void ciMethodData::clear_escape_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   272
  MethodData* mdo = get_MethodData();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   273
  if (mdo != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    mdo->clear_escape_info();
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   275
    ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   276
    int arg_count = (aid == NULL) ? 0 : aid->number_of_args();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   277
    for (int i = 0; i < arg_count; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   278
      set_arg_modified(i, 0);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   279
    }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   280
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _eflags = _arg_local = _arg_stack = _arg_returned = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   284
// copy our escape info to the MethodData* if it exists
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
void ciMethodData::update_escape_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   287
  MethodData* mdo = get_MethodData();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if ( mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    mdo->set_eflags(_eflags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    mdo->set_arg_local(_arg_local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    mdo->set_arg_stack(_arg_stack);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    mdo->set_arg_returned(_arg_returned);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   293
    int arg_count = mdo->method()->size_of_parameters();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   294
    for (int i = 0; i < arg_count; i++) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   295
      mdo->set_arg_modified(i, arg_modified(i));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   296
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   300
void ciMethodData::set_compilation_stats(short loops, short blocks) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   301
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   302
  MethodData* mdo = get_MethodData();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   303
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   304
    mdo->set_num_loops(loops);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   305
    mdo->set_num_blocks(blocks);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   306
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   307
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   308
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   309
void ciMethodData::set_would_profile(bool p) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   310
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   311
  MethodData* mdo = get_MethodData();
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   312
  if (mdo != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   313
    mdo->set_would_profile(p);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   314
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   315
}
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   316
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   317
void ciMethodData::set_argument_type(int bci, int i, ciKlass* k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   318
  VM_ENTRY_MARK;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   319
  MethodData* mdo = get_MethodData();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   320
  if (mdo != NULL) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   321
    ProfileData* data = mdo->bci_to_data(bci);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   322
    if (data->is_CallTypeData()) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   323
      data->as_CallTypeData()->set_argument_type(i, k->get_Klass());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   324
    } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   325
      assert(data->is_VirtualCallTypeData(), "no arguments!");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   326
      data->as_VirtualCallTypeData()->set_argument_type(i, k->get_Klass());
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   327
    }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   328
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   329
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   330
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   331
void ciMethodData::set_parameter_type(int i, ciKlass* k) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   332
  VM_ENTRY_MARK;
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   333
  MethodData* mdo = get_MethodData();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   334
  if (mdo != NULL) {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   335
    mdo->parameters_type_data()->set_type(i, k->get_Klass());
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   336
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   337
}
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   338
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   339
void ciMethodData::set_return_type(int bci, ciKlass* k) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   340
  VM_ENTRY_MARK;
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   341
  MethodData* mdo = get_MethodData();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   342
  if (mdo != NULL) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   343
    ProfileData* data = mdo->bci_to_data(bci);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   344
    if (data->is_CallTypeData()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   345
      data->as_CallTypeData()->set_return_type(k->get_Klass());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   346
    } else {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   347
      assert(data->is_VirtualCallTypeData(), "no arguments!");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   348
      data->as_VirtualCallTypeData()->set_return_type(k->get_Klass());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   349
    }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   350
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   351
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   352
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
bool ciMethodData::has_escape_info() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   354
  return eflag_set(MethodData::estimated);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   357
void ciMethodData::set_eflag(MethodData::EscapeFlag f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  set_bits(_eflags, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   361
void ciMethodData::clear_eflag(MethodData::EscapeFlag f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  clear_bits(_eflags, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   365
bool ciMethodData::eflag_set(MethodData::EscapeFlag f) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  return mask_bits(_eflags, f) != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
void ciMethodData::set_arg_local(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  set_nth_bit(_arg_local, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
void ciMethodData::set_arg_stack(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  set_nth_bit(_arg_stack, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
void ciMethodData::set_arg_returned(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  set_nth_bit(_arg_returned, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   381
void ciMethodData::set_arg_modified(int arg, uint val) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   382
  ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   383
  if (aid == NULL)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   384
    return;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   385
  assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   386
  aid->set_arg_modified(arg, val);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   387
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   388
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
bool ciMethodData::is_arg_local(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  return is_set_nth_bit(_arg_local, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
bool ciMethodData::is_arg_stack(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  return is_set_nth_bit(_arg_stack, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
bool ciMethodData::is_arg_returned(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  return is_set_nth_bit(_arg_returned, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   401
uint ciMethodData::arg_modified(int arg) const {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   402
  ArgInfoData *aid = arg_info();
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   403
  if (aid == NULL)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   404
    return 0;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   405
  assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   406
  return aid->arg_modified(arg);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   407
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   408
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
ByteSize ciMethodData::offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   410
  // Get offset within MethodData* of the data array
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   411
  ByteSize data_offset = MethodData::data_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // Get cell offset of the ProfileData within data array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  int cell_offset = dp_to_di(data->dp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // Add in counter_offset, the # of bytes into the ProfileData of counter or flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  int offset = in_bytes(data_offset) + cell_offset + in_bytes(slot_offset_in_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  return in_ByteSize(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   422
ciArgInfoData *ciMethodData::arg_info() const {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   423
  // Should be last, have to skip all traps.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   424
  DataLayout* dp  = data_layout_at(data_size());
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   425
  DataLayout* end = data_layout_at(data_size() + extra_data_size());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   426
  for (; dp < end; dp = MethodData::next_extra(dp)) {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   427
    if (dp->tag() == DataLayout::arg_info_data_tag)
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   428
      return new ciArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   429
  }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   430
  return NULL;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   431
}
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   432
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// Implementation of the print method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
void ciMethodData::print_impl(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   436
  ciMetadata::print_impl(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   439
void ciMethodData::dump_replay_data(outputStream* out) {
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14477
diff changeset
   440
  ResourceMark rm;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   441
  MethodData* mdo = get_MethodData();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   442
  Method* method = mdo->method();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   443
  Klass* holder = method->method_holder();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   444
  out->print("ciMethodData %s %s %s %d %d",
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   445
             holder->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   446
             method->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   447
             method->signature()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   448
             _state,
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   449
             current_mileage());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   450
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   451
  // dump the contents of the MDO header as raw data
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   452
  unsigned char* orig = (unsigned char*)&_orig;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   453
  int length = sizeof(_orig);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   454
  out->print(" orig %d", length);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   455
  for (int i = 0; i < length; i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   456
    out->print(" %d", orig[i]);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   457
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   458
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   459
  // dump the MDO data as raw data
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   460
  int elements = data_size() / sizeof(intptr_t);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   461
  out->print(" data %d", elements);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   462
  for (int i = 0; i < elements; i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   463
    // We could use INTPTR_FORMAT here but that's a zero justified
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   464
    // which makes comparing it with the SA version of this output
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   465
    // harder.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   466
#ifdef _LP64
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   467
    out->print(" 0x%" FORMAT64_MODIFIER "x", data()[i]);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   468
#else
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   469
    out->print(" 0x%x", data()[i]);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   470
#endif
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   471
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   472
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   473
  // The MDO contained oop references as ciObjects, so scan for those
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   474
  // and emit pairs of offset and klass name so that they can be
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   475
  // reconstructed at runtime.  The first round counts the number of
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   476
  // oop references and the second actually emits them.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   477
  int count = 0;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   478
  for (int round = 0; round < 2; round++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   479
    if (round == 1) out->print(" oops %d", count);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   480
    ProfileData* pdata = first_data();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   481
    for ( ; is_valid(pdata); pdata = next_data(pdata)) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   482
      if (pdata->is_ReceiverTypeData()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   483
        ciReceiverTypeData* vdata = (ciReceiverTypeData*)pdata;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   484
        for (uint i = 0; i < vdata->row_limit(); i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   485
          ciKlass* k = vdata->receiver(i);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   486
          if (k != NULL) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   487
            if (round == 0) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   488
              count++;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   489
            } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   490
              out->print(" %d %s", dp_to_di(vdata->dp() + in_bytes(vdata->receiver_offset(i))) / sizeof(intptr_t), k->name()->as_quoted_ascii());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   491
            }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   492
          }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   493
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   494
      } else if (pdata->is_VirtualCallData()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   495
        ciVirtualCallData* vdata = (ciVirtualCallData*)pdata;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   496
        for (uint i = 0; i < vdata->row_limit(); i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   497
          ciKlass* k = vdata->receiver(i);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   498
          if (k != NULL) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   499
            if (round == 0) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   500
              count++;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   501
            } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   502
              out->print(" %d %s", dp_to_di(vdata->dp() + in_bytes(vdata->receiver_offset(i))) / sizeof(intptr_t), k->name()->as_quoted_ascii());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   503
            }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   504
          }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   505
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   506
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   507
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   508
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   509
  out->cr();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   510
}
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   511
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
void ciMethodData::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  print_data_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
void ciMethodData::print_data_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  ciProfileData* data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  for (data = first_data(); is_valid(data); data = next_data(data)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    st->print("%d", dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  }
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   525
  st->print_cr("--- Extra data:");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   526
  DataLayout* dp  = data_layout_at(data_size());
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   527
  DataLayout* end = data_layout_at(data_size() + extra_data_size());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   528
  for (; dp < end; dp = MethodData::next_extra(dp)) {
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   529
    if (dp->tag() == DataLayout::no_tag)  continue;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   530
    if (dp->tag() == DataLayout::bit_data_tag) {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   531
      data = new BitData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   532
    } else {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   533
      assert(dp->tag() == DataLayout::arg_info_data_tag, "must be BitData or ArgInfo");
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   534
      data = new ciArgInfoData(dp);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   535
      dp = end; // ArgInfoData is at the end of extra data section.
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   536
    }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   537
    st->print("%d", dp_to_di(data->dp()));
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   538
    st->fill_to(6);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   539
    data->print_data_on(st);
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   540
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   543
void ciTypeEntries::print_ciklass(outputStream* st, intptr_t k) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   544
  if (TypeEntries::is_type_none(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   545
    st->print("none");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   546
  } else if (TypeEntries::is_type_unknown(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   547
    st->print("unknown");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   548
  } else {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   549
    valid_ciklass(k)->print_name_on(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   550
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   551
  if (TypeEntries::was_null_seen(k)) {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   552
    st->print(" (null seen)");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   553
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   554
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   555
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   556
void ciTypeStackSlotEntries::print_data_on(outputStream* st) const {
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   557
  for (int i = 0; i < _number_of_entries; i++) {
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   558
    _pd->tab(st);
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   559
    st->print("%d: stack (%u) ", i, stack_slot(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   560
    print_ciklass(st, type(i));
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   561
    st->cr();
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   562
  }
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   563
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   564
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   565
void ciReturnTypeEntry::print_data_on(outputStream* st) const {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   566
  _pd->tab(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   567
  st->print("ret ");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   568
  print_ciklass(st, type());
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   569
  st->cr();
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   570
}
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   571
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   572
void ciCallTypeData::print_data_on(outputStream* st) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   573
  print_shared(st, "ciCallTypeData");
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   574
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   575
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   576
    st->print("argument types");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   577
    args()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   578
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   579
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   580
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   581
    st->print("return type");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   582
    ret()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   583
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   584
}
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   585
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   586
void ciReceiverTypeData::print_receiver_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  uint row;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  int entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    if (receiver(row) != NULL)  entries++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  st->print_cr("count(%u) entries(%u)", count(), entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  for (row = 0; row < row_limit(); row++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    if (receiver(row) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
      tab(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
      receiver(row)->print_name_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
      st->print_cr("(%u)", receiver_count(row));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   602
void ciReceiverTypeData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  print_shared(st, "ciReceiverTypeData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   607
void ciVirtualCallData::print_data_on(outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  print_shared(st, "ciVirtualCallData");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  rtd_super()->print_receiver_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
}
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   611
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   612
void ciVirtualCallTypeData::print_data_on(outputStream* st) const {
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   613
  print_shared(st, "ciVirtualCallTypeData");
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   614
  rtd_super()->print_receiver_data_on(st);
20709
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   615
  if (has_arguments()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   616
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   617
    st->print("argument types");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   618
    args()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   619
  }
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   620
  if (has_return()) {
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   621
    tab(st, true);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   622
    st->print("return type");
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   623
    ret()->print_data_on(st);
034be898bf04 8026054: New type profiling points: type of return values at calls
roland
parents: 20702
diff changeset
   624
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 20695
diff changeset
   625
}
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   626
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   627
void ciParametersTypeData::print_data_on(outputStream* st) const {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   628
  st->print_cr("Parametertypes");
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   629
  parameters()->print_data_on(st);
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20709
diff changeset
   630
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
#endif