author | vlivanov |
Mon, 13 Feb 2017 23:58:00 +0300 | |
changeset 43951 | c23519aaccc1 |
parent 29081 | c61eb4914428 |
child 46542 | 73dd19b96b5d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
26440
diff
changeset
|
2 |
* Copyright (c) 2001, 2015, 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" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
26440
diff
changeset
|
33 |
#include "oops/oop.hpp" |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
34 |
#include "runtime/deoptimization.hpp" |
7397 | 35 |
|
1 | 36 |
class ciBitData; |
37 |
class ciCounterData; |
|
38 |
class ciJumpData; |
|
39 |
class ciReceiverTypeData; |
|
40 |
class ciRetData; |
|
41 |
class ciBranchData; |
|
42 |
class ciArrayData; |
|
43 |
class ciMultiBranchData; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
44 |
class ciArgInfoData; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
45 |
class ciCallTypeData; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
46 |
class ciVirtualCallTypeData; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
47 |
class ciParametersTypeData; |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
48 |
class ciSpeculativeTrapData; |
1 | 49 |
|
50 |
typedef ProfileData ciProfileData; |
|
51 |
||
52 |
class ciBitData : public BitData { |
|
53 |
public: |
|
54 |
ciBitData(DataLayout* layout) : BitData(layout) {}; |
|
55 |
}; |
|
56 |
||
57 |
class ciCounterData : public CounterData { |
|
58 |
public: |
|
59 |
ciCounterData(DataLayout* layout) : CounterData(layout) {}; |
|
60 |
}; |
|
61 |
||
62 |
class ciJumpData : public JumpData { |
|
63 |
public: |
|
64 |
ciJumpData(DataLayout* layout) : JumpData(layout) {}; |
|
65 |
}; |
|
66 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
67 |
class ciTypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
68 |
protected: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
69 |
static intptr_t translate_klass(intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
70 |
Klass* v = TypeEntries::valid_klass(k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
71 |
if (v != NULL) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
72 |
ciKlass* klass = CURRENT_ENV->get_klass(v); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
73 |
CURRENT_ENV->ensure_metadata_alive(klass); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
74 |
return with_status(klass, k); |
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 |
return with_status(NULL, k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
77 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
78 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
79 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
80 |
static ciKlass* valid_ciklass(intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
81 |
if (!TypeEntries::is_type_none(k) && |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
82 |
!TypeEntries::is_type_unknown(k)) { |
21581 | 83 |
ciKlass* res = (ciKlass*)TypeEntries::klass_part(k); |
84 |
assert(res != NULL, "invalid"); |
|
85 |
return res; |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
86 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
87 |
return NULL; |
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 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
91 |
static intptr_t with_status(ciKlass* k, intptr_t in) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
92 |
return TypeEntries::with_status((intptr_t)k, in); |
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 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
96 |
static void print_ciklass(outputStream* st, intptr_t k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
97 |
#endif |
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 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
100 |
class ciTypeStackSlotEntries : public TypeStackSlotEntries, ciTypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
101 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
102 |
void translate_type_data_from(const TypeStackSlotEntries* args); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
103 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
104 |
ciKlass* valid_type(int i) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
105 |
return valid_ciklass(type(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
106 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
107 |
|
21099 | 108 |
bool maybe_null(int i) const { |
109 |
return was_null_seen(type(i)); |
|
110 |
} |
|
111 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
112 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
113 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
114 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
115 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
116 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
117 |
class ciReturnTypeEntry : public ReturnTypeEntry, ciTypeEntries { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
118 |
public: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
119 |
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
|
120 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
121 |
ciKlass* valid_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
122 |
return valid_ciklass(type()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
123 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
124 |
|
21099 | 125 |
bool maybe_null() const { |
126 |
return was_null_seen(type()); |
|
127 |
} |
|
128 |
||
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
129 |
#ifndef PRODUCT |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
130 |
void print_data_on(outputStream* st) const; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
131 |
#endif |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
132 |
}; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
133 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
134 |
class ciCallTypeData : public CallTypeData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
135 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
136 |
ciCallTypeData(DataLayout* layout) : CallTypeData(layout) {} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
137 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
138 |
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
|
139 |
ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)CallTypeData::ret(); } |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
140 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
141 |
void translate_from(const ProfileData* data) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
142 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
143 |
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
|
144 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
145 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
146 |
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
|
147 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
148 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
149 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
150 |
intptr_t argument_type(int i) const { |
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"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
152 |
return args()->type(i); |
20702
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 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
155 |
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
|
156 |
assert(has_arguments(), "no arg type profiling data"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
157 |
return args()->valid_type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
158 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
159 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
160 |
intptr_t 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()->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 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
165 |
ciKlass* valid_return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
166 |
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
|
167 |
return ret()->valid_type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
168 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
169 |
|
21099 | 170 |
bool argument_maybe_null(int i) const { |
171 |
return args()->maybe_null(i); |
|
172 |
} |
|
173 |
||
174 |
bool return_maybe_null() const { |
|
175 |
return ret()->maybe_null(); |
|
176 |
} |
|
177 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
178 |
#ifndef PRODUCT |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
179 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
180 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
181 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
182 |
|
1 | 183 |
class ciReceiverTypeData : public ReceiverTypeData { |
184 |
public: |
|
185 |
ciReceiverTypeData(DataLayout* layout) : ReceiverTypeData(layout) {}; |
|
186 |
||
187 |
void set_receiver(uint row, ciKlass* recv) { |
|
188 |
assert((uint)row < row_limit(), "oob"); |
|
189 |
set_intptr_at(receiver0_offset + row * receiver_type_row_cell_count, |
|
190 |
(intptr_t) recv); |
|
191 |
} |
|
192 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
193 |
ciKlass* receiver(uint row) const { |
1 | 194 |
assert((uint)row < row_limit(), "oob"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
195 |
ciKlass* recv = (ciKlass*)intptr_at(receiver0_offset + row * receiver_type_row_cell_count); |
1 | 196 |
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
|
197 |
return recv; |
1 | 198 |
} |
199 |
||
200 |
// Copy & translate from oop based ReceiverTypeData |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
201 |
virtual void translate_from(const ProfileData* data) { |
1 | 202 |
translate_receiver_data_from(data); |
203 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
204 |
void translate_receiver_data_from(const ProfileData* data); |
1 | 205 |
#ifndef PRODUCT |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
206 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
207 |
void print_receiver_data_on(outputStream* st) const; |
1 | 208 |
#endif |
209 |
}; |
|
210 |
||
211 |
class ciVirtualCallData : public VirtualCallData { |
|
212 |
// Fake multiple inheritance... It's a ciReceiverTypeData also. |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
213 |
ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; } |
1 | 214 |
|
215 |
public: |
|
216 |
ciVirtualCallData(DataLayout* layout) : VirtualCallData(layout) {}; |
|
217 |
||
218 |
void set_receiver(uint row, ciKlass* recv) { |
|
219 |
rtd_super()->set_receiver(row, recv); |
|
220 |
} |
|
221 |
||
222 |
ciKlass* receiver(uint row) { |
|
223 |
return rtd_super()->receiver(row); |
|
224 |
} |
|
225 |
||
226 |
// Copy & translate from oop based VirtualCallData |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
227 |
virtual void translate_from(const ProfileData* data) { |
1 | 228 |
rtd_super()->translate_receiver_data_from(data); |
229 |
} |
|
230 |
#ifndef PRODUCT |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
231 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
232 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
233 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
234 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
235 |
class ciVirtualCallTypeData : public VirtualCallTypeData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
236 |
private: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
237 |
// Fake multiple inheritance... It's a ciReceiverTypeData also. |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
238 |
ciReceiverTypeData* rtd_super() const { return (ciReceiverTypeData*) this; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
239 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
240 |
ciVirtualCallTypeData(DataLayout* layout) : VirtualCallTypeData(layout) {} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
241 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
242 |
void set_receiver(uint row, ciKlass* recv) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
243 |
rtd_super()->set_receiver(row, recv); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
244 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
245 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
246 |
ciKlass* receiver(uint row) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
247 |
return rtd_super()->receiver(row); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
248 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
249 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
250 |
ciTypeStackSlotEntries* args() const { return (ciTypeStackSlotEntries*)VirtualCallTypeData::args(); } |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
251 |
ciReturnTypeEntry* ret() const { return (ciReturnTypeEntry*)VirtualCallTypeData::ret(); } |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
252 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
253 |
// Copy & translate from oop based VirtualCallData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
254 |
virtual void translate_from(const ProfileData* data) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
255 |
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
|
256 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
257 |
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
|
258 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
259 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
260 |
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
|
261 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
262 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
263 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
264 |
intptr_t argument_type(int i) const { |
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"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
266 |
return args()->type(i); |
20702
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 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
269 |
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
|
270 |
assert(has_arguments(), "no arg type profiling data"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
271 |
return args()->valid_type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
272 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
273 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
274 |
intptr_t 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()->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 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
279 |
ciKlass* valid_return_type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
280 |
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
|
281 |
return ret()->valid_type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
282 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
283 |
|
21099 | 284 |
bool argument_maybe_null(int i) const { |
285 |
return args()->maybe_null(i); |
|
286 |
} |
|
287 |
||
288 |
bool return_maybe_null() const { |
|
289 |
return ret()->maybe_null(); |
|
290 |
} |
|
291 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
292 |
#ifndef PRODUCT |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
293 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 294 |
#endif |
295 |
}; |
|
296 |
||
297 |
||
298 |
class ciRetData : public RetData { |
|
299 |
public: |
|
300 |
ciRetData(DataLayout* layout) : RetData(layout) {}; |
|
301 |
}; |
|
302 |
||
303 |
class ciBranchData : public BranchData { |
|
304 |
public: |
|
305 |
ciBranchData(DataLayout* layout) : BranchData(layout) {}; |
|
306 |
}; |
|
307 |
||
308 |
class ciArrayData : public ArrayData { |
|
309 |
public: |
|
310 |
ciArrayData(DataLayout* layout) : ArrayData(layout) {}; |
|
311 |
}; |
|
312 |
||
313 |
class ciMultiBranchData : public MultiBranchData { |
|
314 |
public: |
|
315 |
ciMultiBranchData(DataLayout* layout) : MultiBranchData(layout) {}; |
|
316 |
}; |
|
317 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
318 |
class ciArgInfoData : public ArgInfoData { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
319 |
public: |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
320 |
ciArgInfoData(DataLayout* layout) : ArgInfoData(layout) {}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
321 |
}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
322 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
323 |
class ciParametersTypeData : public ParametersTypeData { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
324 |
public: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
325 |
ciParametersTypeData(DataLayout* layout) : ParametersTypeData(layout) {} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
326 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
327 |
virtual void translate_from(const ProfileData* data) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
328 |
parameters()->translate_type_data_from(data->as_ParametersTypeData()->parameters()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
329 |
} |
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 |
ciTypeStackSlotEntries* parameters() const { return (ciTypeStackSlotEntries*)ParametersTypeData::parameters(); } |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
332 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
333 |
ciKlass* valid_parameter_type(int i) const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
334 |
return parameters()->valid_type(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
335 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
336 |
|
21099 | 337 |
bool parameter_maybe_null(int i) const { |
338 |
return parameters()->maybe_null(i); |
|
339 |
} |
|
340 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
341 |
#ifndef PRODUCT |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
342 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
343 |
#endif |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
344 |
}; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
345 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
346 |
class ciSpeculativeTrapData : public SpeculativeTrapData { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
347 |
public: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
348 |
ciSpeculativeTrapData(DataLayout* layout) : SpeculativeTrapData(layout) {} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
349 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
350 |
virtual void translate_from(const ProfileData* data); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
351 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
352 |
ciMethod* method() const { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
353 |
return (ciMethod*)intptr_at(speculative_trap_method); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
354 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
355 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
356 |
void set_method(ciMethod* m) { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
357 |
set_intptr_at(speculative_trap_method, (intptr_t)m); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
358 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
359 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
360 |
#ifndef PRODUCT |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
361 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
362 |
#endif |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
363 |
}; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
364 |
|
1 | 365 |
// ciMethodData |
366 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
367 |
// This class represents a MethodData* in the HotSpot virtual |
1 | 368 |
// machine. |
369 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
370 |
class ciMethodData : public ciMetadata { |
1 | 371 |
CI_PACKAGE_ACCESS |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
372 |
friend class ciReplay; |
1 | 373 |
|
374 |
private: |
|
375 |
// Size in bytes |
|
376 |
int _data_size; |
|
377 |
int _extra_data_size; |
|
378 |
||
379 |
// Data entries |
|
380 |
intptr_t* _data; |
|
381 |
||
382 |
// Cached hint for data_before() |
|
383 |
int _hint_di; |
|
384 |
||
385 |
// Is data attached? And is it mature? |
|
386 |
enum { empty_state, immature_state, mature_state }; |
|
387 |
u_char _state; |
|
388 |
||
389 |
// Set this true if empty extra_data slots are ever witnessed. |
|
390 |
u_char _saw_free_extra_data; |
|
391 |
||
392 |
// Support for interprocedural escape analysis |
|
393 |
intx _eflags; // flags on escape information |
|
394 |
intx _arg_local; // bit set of non-escaping arguments |
|
395 |
intx _arg_stack; // bit set of stack-allocatable arguments |
|
396 |
intx _arg_returned; // bit set of returned arguments |
|
397 |
||
398 |
// Maturity of the oop when the snapshot is taken. |
|
399 |
int _current_mileage; |
|
400 |
||
6453 | 401 |
// These counters hold the age of MDO in tiered. In tiered we can have the same method |
402 |
// running at different compilation levels concurrently. So, in order to precisely measure |
|
403 |
// its maturity we need separate counters. |
|
404 |
int _invocation_counter; |
|
405 |
int _backedge_counter; |
|
406 |
||
1 | 407 |
// Coherent snapshot of original header. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
408 |
MethodData _orig; |
1 | 409 |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
410 |
// Area dedicated to parameters. NULL if no parameter profiling for |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
411 |
// this method. |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
412 |
DataLayout* _parameters; |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
413 |
int parameters_size() const { |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
414 |
return _parameters == NULL ? 0 : parameters_type_data()->size_in_bytes(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
415 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
416 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
417 |
ciMethodData(MethodData* md); |
1 | 418 |
ciMethodData(); |
419 |
||
420 |
// Accessors |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
421 |
int data_size() const { return _data_size; } |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
422 |
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
|
423 |
intptr_t * data() const { return _data; } |
1 | 424 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
425 |
MethodData* get_MethodData() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
426 |
return (MethodData*)_metadata; |
1 | 427 |
} |
428 |
||
429 |
const char* type_string() { return "ciMethodData"; } |
|
430 |
||
431 |
void print_impl(outputStream* st); |
|
432 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
433 |
DataLayout* data_layout_at(int data_index) const { |
1 | 434 |
assert(data_index % sizeof(intptr_t) == 0, "unaligned"); |
435 |
return (DataLayout*) (((address)_data) + data_index); |
|
436 |
} |
|
437 |
||
438 |
bool out_of_bounds(int data_index) { |
|
439 |
return data_index >= data_size(); |
|
440 |
} |
|
441 |
||
442 |
// hint accessors |
|
443 |
int hint_di() const { return _hint_di; } |
|
444 |
void set_hint_di(int di) { |
|
445 |
assert(!out_of_bounds(di), "hint_di out of bounds"); |
|
446 |
_hint_di = di; |
|
447 |
} |
|
448 |
ciProfileData* data_before(int bci) { |
|
449 |
// avoid SEGV on this edge case |
|
450 |
if (data_size() == 0) |
|
451 |
return NULL; |
|
452 |
int hint = hint_di(); |
|
453 |
if (data_layout_at(hint)->bci() <= bci) |
|
454 |
return data_at(hint); |
|
455 |
return first_data(); |
|
456 |
} |
|
457 |
||
458 |
||
459 |
// What is the index of the first data entry? |
|
460 |
int first_di() { return 0; } |
|
461 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
462 |
ciArgInfoData *arg_info() const; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
463 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
464 |
address data_base() const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
465 |
return (address) _data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
466 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
467 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
468 |
void load_extra_data(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
469 |
ciProfileData* bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
470 |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
471 |
void dump_replay_data_type_helper(outputStream* out, int round, int& count, ProfileData* pdata, ByteSize offset, ciKlass* k); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
472 |
template<class T> void dump_replay_data_call_type_helper(outputStream* out, int round, int& count, T* call_type_data); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
473 |
template<class T> void dump_replay_data_receiver_type_helper(outputStream* out, int round, int& count, T* call_type_data); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
474 |
void dump_replay_data_extra_data_helper(outputStream* out, int round, int& count); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
23491
diff
changeset
|
475 |
|
1 | 476 |
public: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
477 |
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
|
478 |
|
a9e79f5cd83b
6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents:
7397
diff
changeset
|
479 |
bool is_empty() { return _state == empty_state; } |
1 | 480 |
bool is_mature() { return _state == mature_state; } |
481 |
||
482 |
int creation_mileage() { return _orig.creation_mileage(); } |
|
483 |
int current_mileage() { return _current_mileage; } |
|
484 |
||
6453 | 485 |
int invocation_count() { return _invocation_counter; } |
486 |
int backedge_count() { return _backedge_counter; } |
|
23491 | 487 |
|
488 |
#if INCLUDE_RTM_OPT |
|
489 |
// return cached value |
|
490 |
int rtm_state() { |
|
491 |
if (is_empty()) { |
|
492 |
return NoRTM; |
|
493 |
} else { |
|
494 |
return get_MethodData()->rtm_state(); |
|
495 |
} |
|
496 |
} |
|
497 |
#endif |
|
498 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
499 |
// Transfer information about the method to MethodData*. |
6453 | 500 |
// would_profile means we would like to profile this method, |
501 |
// meaning it's not trivial. |
|
502 |
void set_would_profile(bool p); |
|
503 |
// Also set the numer of loops and blocks in the method. |
|
504 |
// Again, this is used to determine if a method is trivial. |
|
505 |
void set_compilation_stats(short loops, short blocks); |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
506 |
// 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
|
507 |
// for sure, set it in the MethodData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
508 |
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
|
509 |
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
|
510 |
void set_return_type(int bci, ciKlass* k); |
6453 | 511 |
|
1 | 512 |
void load_data(); |
513 |
||
514 |
// Convert a dp (data pointer) to a di (data index). |
|
515 |
int dp_to_di(address dp) { |
|
516 |
return dp - ((address)_data); |
|
517 |
} |
|
518 |
||
519 |
// Get the data at an arbitrary (sort of) data index. |
|
520 |
ciProfileData* data_at(int data_index); |
|
521 |
||
522 |
// Walk through the data in order. |
|
523 |
ciProfileData* first_data() { return data_at(first_di()); } |
|
524 |
ciProfileData* next_data(ciProfileData* current); |
|
525 |
bool is_valid(ciProfileData* current) { return current != NULL; } |
|
526 |
||
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
527 |
DataLayout* extra_data_base() const { return data_layout_at(data_size()); } |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
528 |
DataLayout* args_data_limit() const { return data_layout_at(data_size() + extra_data_size() - |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
529 |
parameters_size()); } |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
530 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
531 |
// Get the data at an arbitrary bci, or NULL if there is none. If m |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
532 |
// is not NULL look for a SpeculativeTrapData if any first. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
533 |
ciProfileData* bci_to_data(int bci, ciMethod* m = NULL); |
1 | 534 |
|
535 |
uint overflow_trap_count() const { |
|
536 |
return _orig.overflow_trap_count(); |
|
537 |
} |
|
538 |
uint overflow_recompile_count() const { |
|
539 |
return _orig.overflow_recompile_count(); |
|
540 |
} |
|
541 |
uint decompile_count() const { |
|
542 |
return _orig.decompile_count(); |
|
543 |
} |
|
544 |
uint trap_count(int reason) const { |
|
545 |
return _orig.trap_count(reason); |
|
546 |
} |
|
547 |
uint trap_reason_limit() const { return _orig.trap_reason_limit(); } |
|
548 |
uint trap_count_limit() const { return _orig.trap_count_limit(); } |
|
549 |
||
550 |
// Helpful query functions that decode trap_state. |
|
551 |
int has_trap_at(ciProfileData* data, int reason); |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
552 |
int has_trap_at(int bci, ciMethod* m, int reason) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
553 |
assert((m != NULL) == Deoptimization::reason_is_speculate(reason), "inconsistent method/reason"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
554 |
return has_trap_at(bci_to_data(bci, m), reason); |
1 | 555 |
} |
556 |
int trap_recompiled_at(ciProfileData* data); |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
557 |
int trap_recompiled_at(int bci, ciMethod* m) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
558 |
return trap_recompiled_at(bci_to_data(bci, m)); |
1 | 559 |
} |
560 |
||
561 |
void clear_escape_info(); |
|
562 |
bool has_escape_info(); |
|
563 |
void update_escape_info(); |
|
564 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
565 |
void set_eflag(MethodData::EscapeFlag f); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
566 |
void clear_eflag(MethodData::EscapeFlag f); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9638
diff
changeset
|
567 |
bool eflag_set(MethodData::EscapeFlag f) const; |
1 | 568 |
|
569 |
void set_arg_local(int i); |
|
570 |
void set_arg_stack(int i); |
|
571 |
void set_arg_returned(int i); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
572 |
void set_arg_modified(int arg, uint val); |
1 | 573 |
|
574 |
bool is_arg_local(int i) const; |
|
575 |
bool is_arg_stack(int i) const; |
|
576 |
bool is_arg_returned(int i) const; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
577 |
uint arg_modified(int arg) const; |
1 | 578 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
579 |
ciParametersTypeData* parameters_type_data() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
580 |
return _parameters != NULL ? new ciParametersTypeData(_parameters) : NULL; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
581 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
582 |
|
1 | 583 |
// Code generation helper |
584 |
ByteSize offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data); |
|
585 |
int byte_offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) { return in_bytes(offset_of_slot(data, slot_offset_in_data)); } |
|
586 |
||
587 |
#ifndef PRODUCT |
|
588 |
// printing support for method data |
|
589 |
void print(); |
|
590 |
void print_data_on(outputStream* st); |
|
591 |
#endif |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
592 |
void dump_replay_data(outputStream* out); |
1 | 593 |
}; |
7397 | 594 |
|
595 |
#endif // SHARE_VM_CI_CIMETHODDATA_HPP |