hotspot/src/share/vm/ci/ciMethodData.hpp
author xdono
Wed, 02 Jul 2008 12:55:16 -0700
changeset 670 ddf3e9583f2f
parent 218 a0e996680b05
child 5547 f4b087cbb361
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 218
diff changeset
     2
 * Copyright 2001-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class ciBitData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class ciCounterData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class ciJumpData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class ciReceiverTypeData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class ciRetData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ciBranchData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class ciArrayData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ciMultiBranchData;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
    33
class ciArgInfoData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
typedef ProfileData ciProfileData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ciBitData : public BitData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  ciBitData(DataLayout* layout) : BitData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ciCounterData : public CounterData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  ciCounterData(DataLayout* layout) : CounterData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class ciJumpData : public JumpData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  ciJumpData(DataLayout* layout) : JumpData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class ciReceiverTypeData : public ReceiverTypeData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  ciReceiverTypeData(DataLayout* layout) : ReceiverTypeData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  void set_receiver(uint row, ciKlass* recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    set_intptr_at(receiver0_offset + row * receiver_type_row_cell_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                  (intptr_t) recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ciKlass* receiver(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    assert((uint)row < row_limit(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    ciObject* recv = (ciObject*)intptr_at(receiver0_offset + row * receiver_type_row_cell_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    assert(recv == NULL || recv->is_klass(), "wrong type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return (ciKlass*)recv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Copy & translate from oop based ReceiverTypeData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual void translate_from(ProfileData* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    translate_receiver_data_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void translate_receiver_data_from(ProfileData* data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void print_receiver_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
class ciVirtualCallData : public VirtualCallData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Fake multiple inheritance...  It's a ciReceiverTypeData also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ciReceiverTypeData* rtd_super() { return (ciReceiverTypeData*) this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ciVirtualCallData(DataLayout* layout) : VirtualCallData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void set_receiver(uint row, ciKlass* recv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    rtd_super()->set_receiver(row, recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  ciKlass* receiver(uint row) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    return rtd_super()->receiver(row);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Copy & translate from oop based VirtualCallData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  virtual void translate_from(ProfileData* data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    rtd_super()->translate_receiver_data_from(data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
class ciRetData : public RetData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  ciRetData(DataLayout* layout) : RetData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
class ciBranchData : public BranchData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  ciBranchData(DataLayout* layout) : BranchData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
class ciArrayData : public ArrayData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  ciArrayData(DataLayout* layout) : ArrayData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
class ciMultiBranchData : public MultiBranchData {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  ciMultiBranchData(DataLayout* layout) : MultiBranchData(layout) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   125
class ciArgInfoData : public ArgInfoData {
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   126
public:
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   127
  ciArgInfoData(DataLayout* layout) : ArgInfoData(layout) {};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   128
};
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   129
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// ciMethodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// This class represents a methodDataOop in the HotSpot virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
class ciMethodData : public ciObject {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Size in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  int _data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  int _extra_data_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Data entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  intptr_t* _data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Cached hint for data_before()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  int _hint_di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // Is data attached?  And is it mature?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  enum { empty_state, immature_state, mature_state };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  u_char _state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Set this true if empty extra_data slots are ever witnessed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  u_char _saw_free_extra_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Support for interprocedural escape analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  intx              _eflags;          // flags on escape information
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  intx              _arg_local;       // bit set of non-escaping arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  intx              _arg_stack;       // bit set of stack-allocatable arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  intx              _arg_returned;    // bit set of returned arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Maturity of the oop when the snapshot is taken.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  int _current_mileage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Coherent snapshot of original header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  methodDataOopDesc _orig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  ciMethodData(methodDataHandle h_md);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  ciMethodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Accessors
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   172
  int data_size() const { return _data_size; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   173
  int extra_data_size() const { return _extra_data_size; }
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   174
  intptr_t * data() const { return _data; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  methodDataOop get_methodDataOop() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    if (handle() == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    methodDataOop mdo = (methodDataOop)get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    assert(mdo != NULL, "illegal use of unloaded method data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    return mdo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  const char* type_string()                      { return "ciMethodData"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   187
  DataLayout* data_layout_at(int data_index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    assert(data_index % sizeof(intptr_t) == 0, "unaligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    return (DataLayout*) (((address)_data) + data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  bool out_of_bounds(int data_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    return data_index >= data_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // hint accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  int      hint_di() const  { return _hint_di; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void set_hint_di(int di)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    assert(!out_of_bounds(di), "hint_di out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    _hint_di = di;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ciProfileData* data_before(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    // avoid SEGV on this edge case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    if (data_size() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    int hint = hint_di();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    if (data_layout_at(hint)->bci() <= bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      return data_at(hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    return first_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // What is the index of the first data entry?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  int first_di() { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   216
  ciArgInfoData *arg_info() const;
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   217
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  bool is_method_data()  { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool is_empty() { return _state == empty_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  bool is_mature() { return _state == mature_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int creation_mileage() { return _orig.creation_mileage(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  int current_mileage()  { return _current_mileage; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  void load_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Convert a dp (data pointer) to a di (data index).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  int dp_to_di(address dp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    return dp - ((address)_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Get the data at an arbitrary (sort of) data index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  ciProfileData* data_at(int data_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Walk through the data in order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  ciProfileData* first_data() { return data_at(first_di()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  ciProfileData* next_data(ciProfileData* current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  bool is_valid(ciProfileData* current) { return current != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Get the data at an arbitrary bci, or NULL if there is none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  ciProfileData* bci_to_data(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  ciProfileData* bci_to_extra_data(int bci, bool create_if_missing);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  uint overflow_trap_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    return _orig.overflow_trap_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  uint overflow_recompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    return _orig.overflow_recompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  uint decompile_count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    return _orig.decompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  uint trap_count(int reason) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    return _orig.trap_count(reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  uint trap_reason_limit() const { return _orig.trap_reason_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  uint trap_count_limit()  const { return _orig.trap_count_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Helpful query functions that decode trap_state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  int has_trap_at(ciProfileData* data, int reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  int has_trap_at(int bci, int reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    return has_trap_at(bci_to_data(bci), reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  int trap_recompiled_at(ciProfileData* data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  int trap_recompiled_at(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    return trap_recompiled_at(bci_to_data(bci));
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 clear_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  bool has_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  void update_escape_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  void set_eflag(methodDataOopDesc::EscapeFlag f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void clear_eflag(methodDataOopDesc::EscapeFlag f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  bool eflag_set(methodDataOopDesc::EscapeFlag f) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  void set_arg_local(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void set_arg_stack(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  void set_arg_returned(int i);
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   281
  void set_arg_modified(int arg, uint val);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  bool is_arg_local(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  bool is_arg_stack(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  bool is_arg_returned(int i) const;
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 1
diff changeset
   286
  uint arg_modified(int arg) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Code generation helper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  ByteSize offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  int      byte_offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) { return in_bytes(offset_of_slot(data, slot_offset_in_data)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // printing support for method data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  void print_data_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
};