author | roland |
Wed, 23 Oct 2013 12:40:23 +0200 | |
changeset 21099 | 46e6bbecd9e5 |
parent 21095 | 1a04f7b3946e |
child 21581 | 73584c201e2d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
2 |
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CI_CIMETHODDATA_HPP |
26 |
#define SHARE_VM_CI_CIMETHODDATA_HPP |
|
27 |
||
28 |
#include "ci/ciClassList.hpp" |
|
29 |
#include "ci/ciKlass.hpp" |
|
30 |
#include "ci/ciObject.hpp" |
|
31 |
#include "ci/ciUtilities.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
32 |
#include "oops/methodData.hpp" |
7397 | 33 |
#include "oops/oop.inline.hpp" |
34 |
||
1 | 35 |
class ciBitData; |
36 |
class ciCounterData; |
|
37 |
class ciJumpData; |
|
38 |
class ciReceiverTypeData; |
|
39 |
class ciRetData; |
|
40 |
class ciBranchData; |
|
41 |
class ciArrayData; |
|
42 |
class ciMultiBranchData; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
43 |
class ciArgInfoData; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
44 |
class ciCallTypeData; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
45 |
class ciVirtualCallTypeData; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
46 |
class ciParametersTypeData; |
1 | 47 |
|
48 |
typedef ProfileData ciProfileData; |
|
49 |
||
50 |
class ciBitData : public BitData { |
|
51 |
public: |
|
52 |
ciBitData(DataLayout* layout) : BitData(layout) {}; |
|
53 |
}; |
|
54 |
||
55 |
class ciCounterData : public CounterData { |
|
56 |
public: |
|
57 |
ciCounterData(DataLayout* layout) : CounterData(layout) {}; |
|
58 |
}; |
|
59 |
||
60 |
class ciJumpData : public JumpData { |
|
61 |
public: |
|
62 |
ciJumpData(DataLayout* layout) : JumpData(layout) {}; |
|
63 |
}; |
|
64 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
65 |
class ciTypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
66 |
protected: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
67 |
static intptr_t translate_klass(intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
68 |
Klass* v = TypeEntries::valid_klass(k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
69 |
if (v != NULL) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
70 |
ciKlass* klass = CURRENT_ENV->get_klass(v); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
71 |
return with_status(klass, k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
72 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
73 |
return with_status(NULL, k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
74 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
75 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
76 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
77 |
static ciKlass* valid_ciklass(intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
78 |
if (!TypeEntries::is_type_none(k) && |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
79 |
!TypeEntries::is_type_unknown(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
80 |
return (ciKlass*)TypeEntries::klass_part(k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
81 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
82 |
return NULL; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
83 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
84 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
85 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
86 |
static intptr_t with_status(ciKlass* k, intptr_t in) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
87 |
return TypeEntries::with_status((intptr_t)k, in); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
88 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
89 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
90 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
91 |
static void print_ciklass(outputStream* st, intptr_t k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
92 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
93 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
94 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
95 |
class ciTypeStackSlotEntries : public TypeStackSlotEntries, ciTypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
96 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
97 |
void translate_type_data_from(const TypeStackSlotEntries* args); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
98 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
99 |
ciKlass* valid_type(int i) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
100 |
return valid_ciklass(type(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
101 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
102 |
|
21099 | 103 |
bool maybe_null(int i) const { |
104 |
return was_null_seen(type(i)); |
|
105 |
} |
|
106 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
107 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
108 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
109 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
110 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
111 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
112 |
class ciReturnTypeEntry : public ReturnTypeEntry, ciTypeEntries { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
113 |
public: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
114 |
void translate_type_data_from(const ReturnTypeEntry* ret); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
115 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
116 |
ciKlass* valid_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
117 |
return valid_ciklass(type()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
118 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
119 |
|
21099 | 120 |
bool maybe_null() const { |
121 |
return was_null_seen(type()); |
|
122 |
} |
|
123 |
||
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
124 |
#ifndef PRODUCT |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
125 |
void print_data_on(outputStream* st) const; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
126 |
#endif |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
127 |
}; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
128 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
129 |
class ciCallTypeData : public CallTypeData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
130 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
131 |
ciCallTypeData(DataLayout* layout) : CallTypeData(layout) {} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
132 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
133 |
ciTypeStackSlotEntries* args() const { return (ciTypeStackSlotEntries*)CallTypeData::args(); } |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
134 |
ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)CallTypeData::ret(); } |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
135 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
136 |
void translate_from(const ProfileData* data) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
137 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
138 |
args()->translate_type_data_from(data->as_CallTypeData()->args()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
139 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
140 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
141 |
ret()->translate_type_data_from(data->as_CallTypeData()->ret()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
142 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
143 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
144 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
145 |
intptr_t argument_type(int i) const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
146 |
assert(has_arguments(), "no arg type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
147 |
return args()->type(i); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
148 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
149 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
150 |
ciKlass* valid_argument_type(int i) const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
151 |
assert(has_arguments(), "no arg type profiling data"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
152 |
return args()->valid_type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
153 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
154 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
155 |
intptr_t return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
156 |
assert(has_return(), "no ret type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
157 |
return ret()->type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
158 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
159 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
160 |
ciKlass* valid_return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
161 |
assert(has_return(), "no ret type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
162 |
return ret()->valid_type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
163 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
164 |
|
21099 | 165 |
bool argument_maybe_null(int i) const { |
166 |
return args()->maybe_null(i); |
|
167 |
} |
|
168 |
||
169 |
bool return_maybe_null() const { |
|
170 |
return ret()->maybe_null(); |
|
171 |
} |
|
172 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
173 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
174 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
175 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
176 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
177 |
|
1 | 178 |
class ciReceiverTypeData : public ReceiverTypeData { |
179 |
public: |
|
180 |
ciReceiverTypeData(DataLayout* layout) : ReceiverTypeData(layout) {}; |
|
181 |
||
182 |
void set_receiver(uint row, ciKlass* recv) { |
|
183 |
assert((uint)row < row_limit(), "oob"); |
|
184 |
set_intptr_at(receiver0_offset + row * receiver_type_row_cell_count, |
|
185 |
(intptr_t) recv); |
|
186 |
} |
|
187 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
188 |
ciKlass* receiver(uint row) const { |
1 | 189 |
assert((uint)row < row_limit(), "oob"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
190 |
ciKlass* recv = (ciKlass*)intptr_at(receiver0_offset + row * receiver_type_row_cell_count); |
1 | 191 |
assert(recv == NULL || recv->is_klass(), "wrong type"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
192 |
return recv; |
1 | 193 |
} |
194 |
||
195 |
// Copy & translate from oop based ReceiverTypeData |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
196 |
virtual void translate_from(const ProfileData* data) { |
1 | 197 |
translate_receiver_data_from(data); |
198 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
199 |
void translate_receiver_data_from(const ProfileData* data); |
1 | 200 |
#ifndef PRODUCT |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
201 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
202 |
void print_receiver_data_on(outputStream* st) const; |
1 | 203 |
#endif |
204 |
}; |
|
205 |
||
206 |
class ciVirtualCallData : public VirtualCallData { |
|
207 |
// Fake multiple inheritance... It's a ciReceiverTypeData also. |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
208 |
ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; } |
1 | 209 |
|
210 |
public: |
|
211 |
ciVirtualCallData(DataLayout* layout) : VirtualCallData(layout) {}; |
|
212 |
||
213 |
void set_receiver(uint row, ciKlass* recv) { |
|
214 |
rtd_super()->set_receiver(row, recv); |
|
215 |
} |
|
216 |
||
217 |
ciKlass* receiver(uint row) { |
|
218 |
return rtd_super()->receiver(row); |
|
219 |
} |
|
220 |
||
221 |
// Copy & translate from oop based VirtualCallData |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
222 |
virtual void translate_from(const ProfileData* data) { |
1 | 223 |
rtd_super()->translate_receiver_data_from(data); |
224 |
} |
|
225 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
226 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
227 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
228 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
229 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
230 |
class ciVirtualCallTypeData : public VirtualCallTypeData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
231 |
private: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
232 |
// Fake multiple inheritance... It's a ciReceiverTypeData also. |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
233 |
ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
234 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
235 |
ciVirtualCallTypeData(DataLayout* layout) : VirtualCallTypeData(layout) {} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
236 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
237 |
void set_receiver(uint row, ciKlass* recv) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
238 |
rtd_super()->set_receiver(row, recv); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
239 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
240 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
241 |
ciKlass* receiver(uint row) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
242 |
return rtd_super()->receiver(row); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
243 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
244 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
245 |
ciTypeStackSlotEntries* args() const { return (ciTypeStackSlotEntries*)VirtualCallTypeData::args(); } |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
246 |
ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)VirtualCallTypeData::ret(); } |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
247 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
248 |
// Copy & translate from oop based VirtualCallData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
249 |
virtual void translate_from(const ProfileData* data) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
250 |
rtd_super()->translate_receiver_data_from(data); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
251 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
252 |
args()->translate_type_data_from(data->as_VirtualCallTypeData()->args()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
253 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
254 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
255 |
ret()->translate_type_data_from(data->as_VirtualCallTypeData()->ret()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
256 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
257 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
258 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
259 |
intptr_t argument_type(int i) const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
260 |
assert(has_arguments(), "no arg type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
261 |
return args()->type(i); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
262 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
263 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
264 |
ciKlass* valid_argument_type(int i) const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
265 |
assert(has_arguments(), "no arg type profiling data"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
266 |
return args()->valid_type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
267 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
268 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
269 |
intptr_t return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
270 |
assert(has_return(), "no ret type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
271 |
return ret()->type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
272 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
273 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
274 |
ciKlass* valid_return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
275 |
assert(has_return(), "no ret type profiling data"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
276 |
return ret()->valid_type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
277 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
278 |
|
21099 | 279 |
bool argument_maybe_null(int i) const { |
280 |
return args()->maybe_null(i); |
|
281 |
} |
|
282 |
||
283 |
bool return_maybe_null() const { |
|
284 |
return ret()->maybe_null(); |
|
285 |
} |
|
286 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
287 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
288 |
void print_data_on(outputStream* st) const; |
1 | 289 |
#endif |
290 |
}; |
|
291 |
||
292 |
||
293 |
class ciRetData : public RetData { |
|
294 |
public: |
|
295 |
ciRetData(DataLayout* layout) : RetData(layout) {}; |
|
296 |
}; |
|
297 |
||
298 |
class ciBranchData : public BranchData { |
|
299 |
public: |
|
300 |
ciBranchData(DataLayout* layout) : BranchData(layout) {}; |
|
301 |
}; |
|
302 |
||
303 |
class ciArrayData : public ArrayData { |
|
304 |
public: |
|
305 |
ciArrayData(DataLayout* layout) : ArrayData(layout) {}; |
|
306 |
}; |
|
307 |
||
308 |
class ciMultiBranchData : public MultiBranchData { |
|
309 |
public: |
|
310 |
ciMultiBranchData(DataLayout* layout) : MultiBranchData(layout) {}; |
|
311 |
}; |
|
312 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
313 |
class ciArgInfoData : public ArgInfoData { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
314 |
public: |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
315 |
ciArgInfoData(DataLayout* layout) : ArgInfoData(layout) {}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
316 |
}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
317 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
318 |
class ciParametersTypeData : public ParametersTypeData { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
319 |
public: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
320 |
ciParametersTypeData(DataLayout* layout) : ParametersTypeData(layout) {} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
321 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
322 |
virtual void translate_from(const ProfileData* data) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
323 |
parameters()->translate_type_data_from(data->as_ParametersTypeData()->parameters()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
324 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
325 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
326 |
ciTypeStackSlotEntries* parameters() const { return (ciTypeStackSlotEntries*)ParametersTypeData::parameters(); } |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
327 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
328 |
ciKlass* valid_parameter_type(int i) const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
329 |
return parameters()->valid_type(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
330 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
331 |
|
21099 | 332 |
bool parameter_maybe_null(int i) const { |
333 |
return parameters()->maybe_null(i); |
|
334 |
} |
|
335 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
336 |
#ifndef PRODUCT |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
337 |
void print_data_on(outputStream* st) const; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
338 |
#endif |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
339 |
}; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
340 |
|
1 | 341 |
// ciMethodData |
342 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
343 |
// This class represents a MethodData* in the HotSpot virtual |
1 | 344 |
// machine. |
345 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
346 |
class ciMethodData : public ciMetadata { |
1 | 347 |
CI_PACKAGE_ACCESS |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
348 |
friend class ciReplay; |
1 | 349 |
|
350 |
private: |
|
351 |
// Size in bytes |
|
352 |
int _data_size; |
|
353 |
int _extra_data_size; |
|
354 |
||
355 |
// Data entries |
|
356 |
intptr_t* _data; |
|
357 |
||
358 |
// Cached hint for data_before() |
|
359 |
int _hint_di; |
|
360 |
||
361 |
// Is data attached? And is it mature? |
|
362 |
enum { empty_state, immature_state, mature_state }; |
|
363 |
u_char _state; |
|
364 |
||
365 |
// Set this true if empty extra_data slots are ever witnessed. |
|
366 |
u_char _saw_free_extra_data; |
|
367 |
||
368 |
// Support for interprocedural escape analysis |
|
369 |
intx _eflags; // flags on escape information |
|
370 |
intx _arg_local; // bit set of non-escaping arguments |
|
371 |
intx _arg_stack; // bit set of stack-allocatable arguments |
|
372 |
intx _arg_returned; // bit set of returned arguments |
|
373 |
||
374 |
// Maturity of the oop when the snapshot is taken. |
|
375 |
int _current_mileage; |
|
376 |
||
6453 | 377 |
// These counters hold the age of MDO in tiered. In tiered we can have the same method |
378 |
// running at different compilation levels concurrently. So, in order to precisely measure |
|
379 |
// its maturity we need separate counters. |
|
380 |
int _invocation_counter; |
|
381 |
int _backedge_counter; |
|
382 |
||
1 | 383 |
// Coherent snapshot of original header. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
384 |
MethodData _orig; |
1 | 385 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
386 |
// Dedicated area dedicated to parameters. Null if no parameter |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
387 |
// profiling for this method. |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
388 |
DataLayout* _parameters; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
389 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
390 |
ciMethodData(MethodData* md); |
1 | 391 |
ciMethodData(); |
392 |
||
393 |
// Accessors |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
394 |
int data_size() const { return _data_size; } |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
395 |
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
|
396 |
intptr_t * data() const { return _data; } |
1 | 397 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
398 |
MethodData* get_MethodData() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
399 |
return (MethodData*)_metadata; |
1 | 400 |
} |
401 |
||
402 |
const char* type_string() { return "ciMethodData"; } |
|
403 |
||
404 |
void print_impl(outputStream* st); |
|
405 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
406 |
DataLayout* data_layout_at(int data_index) const { |
1 | 407 |
assert(data_index % sizeof(intptr_t) == 0, "unaligned"); |
408 |
return (DataLayout*) (((address)_data) + data_index); |
|
409 |
} |
|
410 |
||
411 |
bool out_of_bounds(int data_index) { |
|
412 |
return data_index >= data_size(); |
|
413 |
} |
|
414 |
||
415 |
// hint accessors |
|
416 |
int hint_di() const { return _hint_di; } |
|
417 |
void set_hint_di(int di) { |
|
418 |
assert(!out_of_bounds(di), "hint_di out of bounds"); |
|
419 |
_hint_di = di; |
|
420 |
} |
|
421 |
ciProfileData* data_before(int bci) { |
|
422 |
// avoid SEGV on this edge case |
|
423 |
if (data_size() == 0) |
|
424 |
return NULL; |
|
425 |
int hint = hint_di(); |
|
426 |
if (data_layout_at(hint)->bci() <= bci) |
|
427 |
return data_at(hint); |
|
428 |
return first_data(); |
|
429 |
} |
|
430 |
||
431 |
||
432 |
// What is the index of the first data entry? |
|
433 |
int first_di() { return 0; } |
|
434 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
435 |
ciArgInfoData *arg_info() const; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
436 |
|
1 | 437 |
public: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
438 |
bool is_method_data() const { return true; } |
9638
a9e79f5cd83b
6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents:
7397
diff
changeset
|
439 |
|
a9e79f5cd83b
6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents:
7397
diff
changeset
|
440 |
bool is_empty() { return _state == empty_state; } |
1 | 441 |
bool is_mature() { return _state == mature_state; } |
442 |
||
443 |
int creation_mileage() { return _orig.creation_mileage(); } |
|
444 |
int current_mileage() { return _current_mileage; } |
|
445 |
||
6453 | 446 |
int invocation_count() { return _invocation_counter; } |
447 |
int backedge_count() { return _backedge_counter; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
448 |
// Transfer information about the method to MethodData*. |
6453 | 449 |
// would_profile means we would like to profile this method, |
450 |
// meaning it's not trivial. |
|
451 |
void set_would_profile(bool p); |
|
452 |
// Also set the numer of loops and blocks in the method. |
|
453 |
// Again, this is used to determine if a method is trivial. |
|
454 |
void set_compilation_stats(short loops, short blocks); |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
455 |
// If the compiler finds a profiled type that is known statically |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
456 |
// for sure, set it in the MethodData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
457 |
void set_argument_type(int bci, int i, ciKlass* k); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
458 |
void set_parameter_type(int i, ciKlass* k); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
459 |
void set_return_type(int bci, ciKlass* k); |
6453 | 460 |
|
1 | 461 |
void load_data(); |
462 |
||
463 |
// Convert a dp (data pointer) to a di (data index). |
|
464 |
int dp_to_di(address dp) { |
|
465 |
return dp - ((address)_data); |
|
466 |
} |
|
467 |
||
468 |
// Get the data at an arbitrary (sort of) data index. |
|
469 |
ciProfileData* data_at(int data_index); |
|
470 |
||
471 |
// Walk through the data in order. |
|
472 |
ciProfileData* first_data() { return data_at(first_di()); } |
|
473 |
ciProfileData* next_data(ciProfileData* current); |
|
474 |
bool is_valid(ciProfileData* current) { return current != NULL; } |
|
475 |
||
476 |
// Get the data at an arbitrary bci, or NULL if there is none. |
|
477 |
ciProfileData* bci_to_data(int bci); |
|
478 |
ciProfileData* bci_to_extra_data(int bci, bool create_if_missing); |
|
479 |
||
480 |
uint overflow_trap_count() const { |
|
481 |
return _orig.overflow_trap_count(); |
|
482 |
} |
|
483 |
uint overflow_recompile_count() const { |
|
484 |
return _orig.overflow_recompile_count(); |
|
485 |
} |
|
486 |
uint decompile_count() const { |
|
487 |
return _orig.decompile_count(); |
|
488 |
} |
|
489 |
uint trap_count(int reason) const { |
|
490 |
return _orig.trap_count(reason); |
|
491 |
} |
|
492 |
uint trap_reason_limit() const { return _orig.trap_reason_limit(); } |
|
493 |
uint trap_count_limit() const { return _orig.trap_count_limit(); } |
|
494 |
||
495 |
// Helpful query functions that decode trap_state. |
|
496 |
int has_trap_at(ciProfileData* data, int reason); |
|
497 |
int has_trap_at(int bci, int reason) { |
|
498 |
return has_trap_at(bci_to_data(bci), reason); |
|
499 |
} |
|
500 |
int trap_recompiled_at(ciProfileData* data); |
|
501 |
int trap_recompiled_at(int bci) { |
|
502 |
return trap_recompiled_at(bci_to_data(bci)); |
|
503 |
} |
|
504 |
||
505 |
void clear_escape_info(); |
|
506 |
bool has_escape_info(); |
|
507 |
void update_escape_info(); |
|
508 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
509 |
void set_eflag(MethodData::EscapeFlag f); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
510 |
void clear_eflag(MethodData::EscapeFlag f); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
511 |
bool eflag_set(MethodData::EscapeFlag f) const; |
1 | 512 |
|
513 |
void set_arg_local(int i); |
|
514 |
void set_arg_stack(int i); |
|
515 |
void set_arg_returned(int i); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
516 |
void set_arg_modified(int arg, uint val); |
1 | 517 |
|
518 |
bool is_arg_local(int i) const; |
|
519 |
bool is_arg_stack(int i) const; |
|
520 |
bool is_arg_returned(int i) const; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
521 |
uint arg_modified(int arg) const; |
1 | 522 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
523 |
ciParametersTypeData* parameters_type_data() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
524 |
return _parameters != NULL ? new ciParametersTypeData(_parameters) : NULL; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
525 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
526 |
|
1 | 527 |
// Code generation helper |
528 |
ByteSize offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data); |
|
529 |
int byte_offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) { return in_bytes(offset_of_slot(data, slot_offset_in_data)); } |
|
530 |
||
531 |
#ifndef PRODUCT |
|
532 |
// printing support for method data |
|
533 |
void print(); |
|
534 |
void print_data_on(outputStream* st); |
|
535 |
#endif |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
536 |
void dump_replay_data(outputStream* out); |
1 | 537 |
}; |
7397 | 538 |
|
539 |
#endif // SHARE_VM_CI_CIMETHODDATA_HPP |