author | jwilhelm |
Thu, 08 Dec 2016 17:03:45 +0100 | |
changeset 42647 | d01f2abf2c65 |
parent 41701 | 908cd3b6bddc |
child 43489 | a07cb821130d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35123
diff
changeset
|
2 |
* Copyright (c) 2000, 2016, 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:
4892
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4892
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:
4892
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_METHODDATAOOP_HPP |
26 |
#define SHARE_VM_OOPS_METHODDATAOOP_HPP |
|
27 |
||
28 |
#include "interpreter/bytecodes.hpp" |
|
29 |
#include "memory/universe.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
30 |
#include "oops/method.hpp" |
7397 | 31 |
#include "oops/oop.hpp" |
32 |
#include "runtime/orderAccess.hpp" |
|
40869
2f53be0a45ee
8163864: [JVMCI] move MethodProfileWidth to jvmci_globals.hpp
dnsimon
parents:
35898
diff
changeset
|
33 |
#if INCLUDE_JVMCI |
2f53be0a45ee
8163864: [JVMCI] move MethodProfileWidth to jvmci_globals.hpp
dnsimon
parents:
35898
diff
changeset
|
34 |
#include "jvmci/jvmci_globals.hpp" |
2f53be0a45ee
8163864: [JVMCI] move MethodProfileWidth to jvmci_globals.hpp
dnsimon
parents:
35898
diff
changeset
|
35 |
#endif |
7397 | 36 |
|
1 | 37 |
class BytecodeStream; |
15437 | 38 |
class KlassSizeStats; |
1 | 39 |
|
40 |
// The MethodData object collects counts and other profile information |
|
41 |
// during zeroth-tier (interpretive) and first-tier execution. |
|
42 |
// The profile is used later by compilation heuristics. Some heuristics |
|
43 |
// enable use of aggressive (or "heroic") optimizations. An aggressive |
|
44 |
// optimization often has a down-side, a corner case that it handles |
|
45 |
// poorly, but which is thought to be rare. The profile provides |
|
46 |
// evidence of this rarity for a given method or even BCI. It allows |
|
47 |
// the compiler to back out of the optimization at places where it |
|
48 |
// has historically been a poor choice. Other heuristics try to use |
|
49 |
// specific information gathered about types observed at a given site. |
|
50 |
// |
|
51 |
// All data in the profile is approximate. It is expected to be accurate |
|
52 |
// on the whole, but the system expects occasional inaccuraces, due to |
|
53 |
// counter overflow, multiprocessor races during data collection, space |
|
54 |
// limitations, missing MDO blocks, etc. Bad or missing data will degrade |
|
55 |
// optimization quality but will not affect correctness. Also, each MDO |
|
56 |
// is marked with its birth-date ("creation_mileage") which can be used |
|
57 |
// to assess the quality ("maturity") of its data. |
|
58 |
// |
|
59 |
// Short (<32-bit) counters are designed to overflow to a known "saturated" |
|
60 |
// state. Also, certain recorded per-BCI events are given one-bit counters |
|
61 |
// which overflow to a saturated state which applied to all counters at |
|
62 |
// that BCI. In other words, there is a small lattice which approximates |
|
63 |
// the ideal of an infinite-precision counter for each event at each BCI, |
|
64 |
// and the lattice quickly "bottoms out" in a state where all counters |
|
65 |
// are taken to be indefinitely large. |
|
66 |
// |
|
67 |
// The reader will find many data races in profile gathering code, starting |
|
68 |
// with invocation counter incrementation. None of these races harm correct |
|
69 |
// execution of the compiled code. |
|
70 |
||
3696 | 71 |
// forward decl |
72 |
class ProfileData; |
|
73 |
||
1 | 74 |
// DataLayout |
75 |
// |
|
76 |
// Overlay for generic profiling data. |
|
77 |
class DataLayout VALUE_OBJ_CLASS_SPEC { |
|
20011
d74937287461
8024760: add more types, fields and constants to VMStructs
twisti
parents:
17370
diff
changeset
|
78 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
79 |
friend class JVMCIVMStructs; |
20011
d74937287461
8024760: add more types, fields and constants to VMStructs
twisti
parents:
17370
diff
changeset
|
80 |
|
1 | 81 |
private: |
82 |
// Every data layout begins with a header. This header |
|
83 |
// contains a tag, which is used to indicate the size/layout |
|
84 |
// of the data, 4 bits of flags, which can be used in any way, |
|
85 |
// 4 bits of trap history (none/one reason/many reasons), |
|
86 |
// and a bci, which is used to tie this piece of data to a |
|
87 |
// specific bci in the bytecodes. |
|
88 |
union { |
|
89 |
intptr_t _bits; |
|
90 |
struct { |
|
91 |
u1 _tag; |
|
92 |
u1 _flags; |
|
93 |
u2 _bci; |
|
94 |
} _struct; |
|
95 |
} _header; |
|
96 |
||
97 |
// The data layout has an arbitrary number of cells, each sized |
|
98 |
// to accomodate a pointer or an integer. |
|
99 |
intptr_t _cells[1]; |
|
100 |
||
101 |
// Some types of data layouts need a length field. |
|
102 |
static bool needs_array_len(u1 tag); |
|
103 |
||
104 |
public: |
|
105 |
enum { |
|
106 |
counter_increment = 1 |
|
107 |
}; |
|
108 |
||
109 |
enum { |
|
110 |
cell_size = sizeof(intptr_t) |
|
111 |
}; |
|
112 |
||
113 |
// Tag values |
|
114 |
enum { |
|
115 |
no_tag, |
|
116 |
bit_data_tag, |
|
117 |
counter_data_tag, |
|
118 |
jump_data_tag, |
|
119 |
receiver_type_data_tag, |
|
120 |
virtual_call_data_tag, |
|
121 |
ret_data_tag, |
|
122 |
branch_data_tag, |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
123 |
multi_branch_data_tag, |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
124 |
arg_info_data_tag, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
125 |
call_type_data_tag, |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
126 |
virtual_call_type_data_tag, |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
127 |
parameters_type_data_tag, |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
128 |
speculative_trap_data_tag |
1 | 129 |
}; |
130 |
||
131 |
enum { |
|
132 |
// The _struct._flags word is formatted as [trap_state:4 | flags:4]. |
|
133 |
// The trap state breaks down further as [recompile:1 | reason:3]. |
|
134 |
// This further breakdown is defined in deoptimization.cpp. |
|
135 |
// See Deoptimization::trap_state_reason for an assert that |
|
136 |
// trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT. |
|
137 |
// |
|
138 |
// The trap_state is collected only if ProfileTraps is true. |
|
139 |
trap_bits = 1+3, // 3: enough to distinguish [0..Reason_RECORDED_LIMIT]. |
|
140 |
trap_shift = BitsPerByte - trap_bits, |
|
141 |
trap_mask = right_n_bits(trap_bits), |
|
142 |
trap_mask_in_place = (trap_mask << trap_shift), |
|
143 |
flag_limit = trap_shift, |
|
144 |
flag_mask = right_n_bits(flag_limit), |
|
145 |
first_flag = 0 |
|
146 |
}; |
|
147 |
||
148 |
// Size computation |
|
149 |
static int header_size_in_bytes() { |
|
150 |
return cell_size; |
|
151 |
} |
|
152 |
static int header_size_in_cells() { |
|
153 |
return 1; |
|
154 |
} |
|
155 |
||
156 |
static int compute_size_in_bytes(int cell_count) { |
|
157 |
return header_size_in_bytes() + cell_count * cell_size; |
|
158 |
} |
|
159 |
||
160 |
// Initialization |
|
161 |
void initialize(u1 tag, u2 bci, int cell_count); |
|
162 |
||
163 |
// Accessors |
|
164 |
u1 tag() { |
|
165 |
return _header._struct._tag; |
|
166 |
} |
|
167 |
||
168 |
// Return a few bits of trap state. Range is [0..trap_mask]. |
|
169 |
// The state tells if traps with zero, one, or many reasons have occurred. |
|
170 |
// It also tells whether zero or many recompilations have occurred. |
|
171 |
// The associated trap histogram in the MDO itself tells whether |
|
172 |
// traps are common or not. If a BCI shows that a trap X has |
|
173 |
// occurred, and the MDO shows N occurrences of X, we make the |
|
174 |
// simplifying assumption that all N occurrences can be blamed |
|
175 |
// on that BCI. |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
176 |
int trap_state() const { |
1 | 177 |
return ((_header._struct._flags >> trap_shift) & trap_mask); |
178 |
} |
|
179 |
||
180 |
void set_trap_state(int new_state) { |
|
181 |
assert(ProfileTraps, "used only under +ProfileTraps"); |
|
182 |
uint old_flags = (_header._struct._flags & flag_mask); |
|
183 |
_header._struct._flags = (new_state << trap_shift) | old_flags; |
|
184 |
} |
|
185 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
186 |
u1 flags() const { |
1 | 187 |
return _header._struct._flags; |
188 |
} |
|
189 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
190 |
u2 bci() const { |
1 | 191 |
return _header._struct._bci; |
192 |
} |
|
193 |
||
194 |
void set_header(intptr_t value) { |
|
195 |
_header._bits = value; |
|
196 |
} |
|
197 |
intptr_t header() { |
|
198 |
return _header._bits; |
|
199 |
} |
|
200 |
void set_cell_at(int index, intptr_t value) { |
|
201 |
_cells[index] = value; |
|
202 |
} |
|
203 |
void release_set_cell_at(int index, intptr_t value) { |
|
204 |
OrderAccess::release_store_ptr(&_cells[index], value); |
|
205 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
206 |
intptr_t cell_at(int index) const { |
1 | 207 |
return _cells[index]; |
208 |
} |
|
209 |
||
210 |
void set_flag_at(int flag_number) { |
|
211 |
assert(flag_number < flag_limit, "oob"); |
|
212 |
_header._struct._flags |= (0x1 << flag_number); |
|
213 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
214 |
bool flag_at(int flag_number) const { |
1 | 215 |
assert(flag_number < flag_limit, "oob"); |
216 |
return (_header._struct._flags & (0x1 << flag_number)) != 0; |
|
217 |
} |
|
218 |
||
219 |
// Low-level support for code generation. |
|
220 |
static ByteSize header_offset() { |
|
221 |
return byte_offset_of(DataLayout, _header); |
|
222 |
} |
|
223 |
static ByteSize tag_offset() { |
|
224 |
return byte_offset_of(DataLayout, _header._struct._tag); |
|
225 |
} |
|
226 |
static ByteSize flags_offset() { |
|
227 |
return byte_offset_of(DataLayout, _header._struct._flags); |
|
228 |
} |
|
229 |
static ByteSize bci_offset() { |
|
230 |
return byte_offset_of(DataLayout, _header._struct._bci); |
|
231 |
} |
|
232 |
static ByteSize cell_offset(int index) { |
|
8652
209b2ce94ce5
7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents:
8334
diff
changeset
|
233 |
return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size); |
1 | 234 |
} |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
235 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
236 |
static int cell_offset_in_bytes(int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
237 |
return (int)offset_of(DataLayout, _cells[index]); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
238 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
239 |
#endif // CC_INTERP |
1 | 240 |
// Return a value which, when or-ed as a byte into _flags, sets the flag. |
241 |
static int flag_number_to_byte_constant(int flag_number) { |
|
242 |
assert(0 <= flag_number && flag_number < flag_limit, "oob"); |
|
243 |
DataLayout temp; temp.set_header(0); |
|
244 |
temp.set_flag_at(flag_number); |
|
245 |
return temp._header._struct._flags; |
|
246 |
} |
|
247 |
// Return a value which, when or-ed as a word into _header, sets the flag. |
|
248 |
static intptr_t flag_mask_to_header_mask(int byte_constant) { |
|
249 |
DataLayout temp; temp.set_header(0); |
|
250 |
temp._header._struct._flags = byte_constant; |
|
251 |
return temp._header._bits; |
|
252 |
} |
|
3696 | 253 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
254 |
ProfileData* data_in(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
255 |
|
3696 | 256 |
// GC support |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
257 |
void clean_weak_klass_links(BoolObjectClosure* cl); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
258 |
|
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
259 |
// Redefinition support |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
260 |
void clean_weak_method_links(); |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27643
diff
changeset
|
261 |
DEBUG_ONLY(void verify_clean_weak_method_links();) |
1 | 262 |
}; |
263 |
||
264 |
||
265 |
// ProfileData class hierarchy |
|
266 |
class ProfileData; |
|
267 |
class BitData; |
|
268 |
class CounterData; |
|
269 |
class ReceiverTypeData; |
|
270 |
class VirtualCallData; |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
271 |
class VirtualCallTypeData; |
1 | 272 |
class RetData; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
273 |
class CallTypeData; |
1 | 274 |
class JumpData; |
275 |
class BranchData; |
|
276 |
class ArrayData; |
|
277 |
class MultiBranchData; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
278 |
class ArgInfoData; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
279 |
class ParametersTypeData; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
280 |
class SpeculativeTrapData; |
1 | 281 |
|
282 |
// ProfileData |
|
283 |
// |
|
284 |
// A ProfileData object is created to refer to a section of profiling |
|
285 |
// data in a structured way. |
|
286 |
class ProfileData : public ResourceObj { |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
287 |
friend class TypeEntries; |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
288 |
friend class ReturnTypeEntry; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
289 |
friend class TypeStackSlotEntries; |
1 | 290 |
private: |
291 |
enum { |
|
292 |
tab_width_one = 16, |
|
293 |
tab_width_two = 36 |
|
294 |
}; |
|
295 |
||
296 |
// This is a pointer to a section of profiling data. |
|
297 |
DataLayout* _data; |
|
298 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
299 |
char* print_data_on_helper(const MethodData* md) const; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
300 |
|
1 | 301 |
protected: |
302 |
DataLayout* data() { return _data; } |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
303 |
const DataLayout* data() const { return _data; } |
1 | 304 |
|
305 |
enum { |
|
306 |
cell_size = DataLayout::cell_size |
|
307 |
}; |
|
308 |
||
309 |
public: |
|
310 |
// How many cells are in this? |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
311 |
virtual int cell_count() const { |
1 | 312 |
ShouldNotReachHere(); |
313 |
return -1; |
|
314 |
} |
|
315 |
||
316 |
// Return the size of this data. |
|
317 |
int size_in_bytes() { |
|
318 |
return DataLayout::compute_size_in_bytes(cell_count()); |
|
319 |
} |
|
320 |
||
321 |
protected: |
|
322 |
// Low-level accessors for underlying data |
|
323 |
void set_intptr_at(int index, intptr_t value) { |
|
324 |
assert(0 <= index && index < cell_count(), "oob"); |
|
325 |
data()->set_cell_at(index, value); |
|
326 |
} |
|
327 |
void release_set_intptr_at(int index, intptr_t value) { |
|
328 |
assert(0 <= index && index < cell_count(), "oob"); |
|
329 |
data()->release_set_cell_at(index, value); |
|
330 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
331 |
intptr_t intptr_at(int index) const { |
1 | 332 |
assert(0 <= index && index < cell_count(), "oob"); |
333 |
return data()->cell_at(index); |
|
334 |
} |
|
335 |
void set_uint_at(int index, uint value) { |
|
336 |
set_intptr_at(index, (intptr_t) value); |
|
337 |
} |
|
338 |
void release_set_uint_at(int index, uint value) { |
|
339 |
release_set_intptr_at(index, (intptr_t) value); |
|
340 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
341 |
uint uint_at(int index) const { |
1 | 342 |
return (uint)intptr_at(index); |
343 |
} |
|
344 |
void set_int_at(int index, int value) { |
|
345 |
set_intptr_at(index, (intptr_t) value); |
|
346 |
} |
|
347 |
void release_set_int_at(int index, int value) { |
|
348 |
release_set_intptr_at(index, (intptr_t) value); |
|
349 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
350 |
int int_at(int index) const { |
1 | 351 |
return (int)intptr_at(index); |
352 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
353 |
int int_at_unchecked(int index) const { |
1 | 354 |
return (int)data()->cell_at(index); |
355 |
} |
|
356 |
void set_oop_at(int index, oop value) { |
|
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
20011
diff
changeset
|
357 |
set_intptr_at(index, cast_from_oop<intptr_t>(value)); |
1 | 358 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
359 |
oop oop_at(int index) const { |
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
20011
diff
changeset
|
360 |
return cast_to_oop(intptr_at(index)); |
1 | 361 |
} |
362 |
||
363 |
void set_flag_at(int flag_number) { |
|
364 |
data()->set_flag_at(flag_number); |
|
365 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
366 |
bool flag_at(int flag_number) const { |
1 | 367 |
return data()->flag_at(flag_number); |
368 |
} |
|
369 |
||
370 |
// two convenient imports for use by subclasses: |
|
371 |
static ByteSize cell_offset(int index) { |
|
372 |
return DataLayout::cell_offset(index); |
|
373 |
} |
|
374 |
static int flag_number_to_byte_constant(int flag_number) { |
|
375 |
return DataLayout::flag_number_to_byte_constant(flag_number); |
|
376 |
} |
|
377 |
||
378 |
ProfileData(DataLayout* data) { |
|
379 |
_data = data; |
|
380 |
} |
|
381 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
382 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
383 |
// Static low level accessors for DataLayout with ProfileData's semantics. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
384 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
385 |
static int cell_offset_in_bytes(int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
386 |
return DataLayout::cell_offset_in_bytes(index); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
387 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
388 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
389 |
static void increment_uint_at_no_overflow(DataLayout* layout, int index, |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
390 |
int inc = DataLayout::counter_increment) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
391 |
uint count = ((uint)layout->cell_at(index)) + inc; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
392 |
if (count == 0) return; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
393 |
layout->set_cell_at(index, (intptr_t) count); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
394 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
395 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
396 |
static int int_at(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
397 |
return (int)layout->cell_at(index); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
398 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
399 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
400 |
static int uint_at(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
401 |
return (uint)layout->cell_at(index); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
402 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
403 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
404 |
static oop oop_at(DataLayout* layout, int index) { |
22849
b8670e920530
8028514: PPC64: Fix C++ Interpreter after '7195622: CheckUnhandledOops has limited usefulness now'
simonis
parents:
22838
diff
changeset
|
405 |
return cast_to_oop(layout->cell_at(index)); |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
406 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
407 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
408 |
static void set_intptr_at(DataLayout* layout, int index, intptr_t value) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
409 |
layout->set_cell_at(index, (intptr_t) value); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
410 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
411 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
412 |
static void set_flag_at(DataLayout* layout, int flag_number) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
413 |
layout->set_flag_at(flag_number); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
414 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
415 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
416 |
|
1 | 417 |
public: |
418 |
// Constructor for invalid ProfileData. |
|
419 |
ProfileData(); |
|
420 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
421 |
u2 bci() const { |
1 | 422 |
return data()->bci(); |
423 |
} |
|
424 |
||
425 |
address dp() { |
|
426 |
return (address)_data; |
|
427 |
} |
|
428 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
429 |
int trap_state() const { |
1 | 430 |
return data()->trap_state(); |
431 |
} |
|
432 |
void set_trap_state(int new_state) { |
|
433 |
data()->set_trap_state(new_state); |
|
434 |
} |
|
435 |
||
436 |
// Type checking |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
437 |
virtual bool is_BitData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
438 |
virtual bool is_CounterData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
439 |
virtual bool is_JumpData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
440 |
virtual bool is_ReceiverTypeData()const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
441 |
virtual bool is_VirtualCallData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
442 |
virtual bool is_RetData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
443 |
virtual bool is_BranchData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
444 |
virtual bool is_ArrayData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
445 |
virtual bool is_MultiBranchData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
446 |
virtual bool is_ArgInfoData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
447 |
virtual bool is_CallTypeData() const { return false; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
448 |
virtual bool is_VirtualCallTypeData()const { return false; } |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
449 |
virtual bool is_ParametersTypeData() const { return false; } |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
450 |
virtual bool is_SpeculativeTrapData()const { return false; } |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
451 |
|
1 | 452 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
453 |
BitData* as_BitData() const { |
1 | 454 |
assert(is_BitData(), "wrong type"); |
455 |
return is_BitData() ? (BitData*) this : NULL; |
|
456 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
457 |
CounterData* as_CounterData() const { |
1 | 458 |
assert(is_CounterData(), "wrong type"); |
459 |
return is_CounterData() ? (CounterData*) this : NULL; |
|
460 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
461 |
JumpData* as_JumpData() const { |
1 | 462 |
assert(is_JumpData(), "wrong type"); |
463 |
return is_JumpData() ? (JumpData*) this : NULL; |
|
464 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
465 |
ReceiverTypeData* as_ReceiverTypeData() const { |
1 | 466 |
assert(is_ReceiverTypeData(), "wrong type"); |
467 |
return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL; |
|
468 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
469 |
VirtualCallData* as_VirtualCallData() const { |
1 | 470 |
assert(is_VirtualCallData(), "wrong type"); |
471 |
return is_VirtualCallData() ? (VirtualCallData*)this : NULL; |
|
472 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
473 |
RetData* as_RetData() const { |
1 | 474 |
assert(is_RetData(), "wrong type"); |
475 |
return is_RetData() ? (RetData*) this : NULL; |
|
476 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
477 |
BranchData* as_BranchData() const { |
1 | 478 |
assert(is_BranchData(), "wrong type"); |
479 |
return is_BranchData() ? (BranchData*) this : NULL; |
|
480 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
481 |
ArrayData* as_ArrayData() const { |
1 | 482 |
assert(is_ArrayData(), "wrong type"); |
483 |
return is_ArrayData() ? (ArrayData*) this : NULL; |
|
484 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
485 |
MultiBranchData* as_MultiBranchData() const { |
1 | 486 |
assert(is_MultiBranchData(), "wrong type"); |
487 |
return is_MultiBranchData() ? (MultiBranchData*)this : NULL; |
|
488 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
489 |
ArgInfoData* as_ArgInfoData() const { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
490 |
assert(is_ArgInfoData(), "wrong type"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
491 |
return is_ArgInfoData() ? (ArgInfoData*)this : NULL; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
492 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
493 |
CallTypeData* as_CallTypeData() const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
494 |
assert(is_CallTypeData(), "wrong type"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
495 |
return is_CallTypeData() ? (CallTypeData*)this : NULL; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
496 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
497 |
VirtualCallTypeData* as_VirtualCallTypeData() const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
498 |
assert(is_VirtualCallTypeData(), "wrong type"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
499 |
return is_VirtualCallTypeData() ? (VirtualCallTypeData*)this : NULL; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
500 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
501 |
ParametersTypeData* as_ParametersTypeData() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
502 |
assert(is_ParametersTypeData(), "wrong type"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
503 |
return is_ParametersTypeData() ? (ParametersTypeData*)this : NULL; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
504 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
505 |
SpeculativeTrapData* as_SpeculativeTrapData() const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
506 |
assert(is_SpeculativeTrapData(), "wrong type"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
507 |
return is_SpeculativeTrapData() ? (SpeculativeTrapData*)this : NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
508 |
} |
1 | 509 |
|
510 |
||
511 |
// Subclass specific initialization |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
512 |
virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {} |
1 | 513 |
|
514 |
// GC support |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
515 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {} |
1 | 516 |
|
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
517 |
// Redefinition support |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
518 |
virtual void clean_weak_method_links() {} |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27643
diff
changeset
|
519 |
DEBUG_ONLY(virtual void verify_clean_weak_method_links() {}) |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
520 |
|
1 | 521 |
// CI translation: ProfileData can represent both MethodDataOop data |
522 |
// as well as CIMethodData data. This function is provided for translating |
|
523 |
// an oop in a ProfileData to the ci equivalent. Generally speaking, |
|
524 |
// most ProfileData don't require any translation, so we provide the null |
|
525 |
// translation here, and the required translators are in the ci subclasses. |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
526 |
virtual void translate_from(const ProfileData* data) {} |
1 | 527 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
528 |
virtual void print_data_on(outputStream* st, const char* extra = NULL) const { |
1 | 529 |
ShouldNotReachHere(); |
530 |
} |
|
531 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
532 |
void print_data_on(outputStream* st, const MethodData* md) const; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
533 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
534 |
void print_shared(outputStream* st, const char* name, const char* extra) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
535 |
void tab(outputStream* st, bool first = false) const; |
1 | 536 |
}; |
537 |
||
538 |
// BitData |
|
539 |
// |
|
540 |
// A BitData holds a flag or two in its header. |
|
541 |
class BitData : public ProfileData { |
|
33632 | 542 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
543 |
friend class JVMCIVMStructs; |
1 | 544 |
protected: |
545 |
enum { |
|
546 |
// null_seen: |
|
547 |
// saw a null operand (cast/aastore/instanceof) |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
548 |
null_seen_flag = DataLayout::first_flag + 0 |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
549 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
550 |
// bytecode threw any exception |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
551 |
, exception_seen_flag = null_seen_flag + 1 |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
552 |
#endif |
1 | 553 |
}; |
554 |
enum { bit_cell_count = 0 }; // no additional data fields needed. |
|
555 |
public: |
|
556 |
BitData(DataLayout* layout) : ProfileData(layout) { |
|
557 |
} |
|
558 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
559 |
virtual bool is_BitData() const { return true; } |
1 | 560 |
|
561 |
static int static_cell_count() { |
|
562 |
return bit_cell_count; |
|
563 |
} |
|
564 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
565 |
virtual int cell_count() const { |
1 | 566 |
return static_cell_count(); |
567 |
} |
|
568 |
||
569 |
// Accessor |
|
570 |
||
571 |
// The null_seen flag bit is specially known to the interpreter. |
|
572 |
// Consulting it allows the compiler to avoid setting up null_check traps. |
|
573 |
bool null_seen() { return flag_at(null_seen_flag); } |
|
574 |
void set_null_seen() { set_flag_at(null_seen_flag); } |
|
575 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
576 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
577 |
// true if an exception was thrown at the specific BCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
578 |
bool exception_seen() { return flag_at(exception_seen_flag); } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
579 |
void set_exception_seen() { set_flag_at(exception_seen_flag); } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
580 |
#endif |
1 | 581 |
|
582 |
// Code generation support |
|
583 |
static int null_seen_byte_constant() { |
|
584 |
return flag_number_to_byte_constant(null_seen_flag); |
|
585 |
} |
|
586 |
||
587 |
static ByteSize bit_data_size() { |
|
588 |
return cell_offset(bit_cell_count); |
|
589 |
} |
|
590 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
591 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
592 |
static int bit_data_size_in_bytes() { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
593 |
return cell_offset_in_bytes(bit_cell_count); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
594 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
595 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
596 |
static void set_null_seen(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
597 |
set_flag_at(layout, null_seen_flag); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
598 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
599 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
600 |
static DataLayout* advance(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
601 |
return (DataLayout*) (((address)layout) + (ssize_t)BitData::bit_data_size_in_bytes()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
602 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
603 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
604 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
605 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 606 |
}; |
607 |
||
608 |
// CounterData |
|
609 |
// |
|
610 |
// A CounterData corresponds to a simple counter. |
|
611 |
class CounterData : public BitData { |
|
33632 | 612 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
613 |
friend class JVMCIVMStructs; |
1 | 614 |
protected: |
615 |
enum { |
|
616 |
count_off, |
|
617 |
counter_cell_count |
|
618 |
}; |
|
619 |
public: |
|
620 |
CounterData(DataLayout* layout) : BitData(layout) {} |
|
621 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
622 |
virtual bool is_CounterData() const { return true; } |
1 | 623 |
|
624 |
static int static_cell_count() { |
|
625 |
return counter_cell_count; |
|
626 |
} |
|
627 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
628 |
virtual int cell_count() const { |
1 | 629 |
return static_cell_count(); |
630 |
} |
|
631 |
||
632 |
// Direct accessor |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
633 |
uint count() const { |
1 | 634 |
return uint_at(count_off); |
635 |
} |
|
636 |
||
637 |
// Code generation support |
|
638 |
static ByteSize count_offset() { |
|
639 |
return cell_offset(count_off); |
|
640 |
} |
|
641 |
static ByteSize counter_data_size() { |
|
642 |
return cell_offset(counter_cell_count); |
|
643 |
} |
|
644 |
||
4892
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
645 |
void set_count(uint count) { |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
646 |
set_uint_at(count_off, count); |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
647 |
} |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
648 |
|
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
649 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
650 |
static int counter_data_size_in_bytes() { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
651 |
return cell_offset_in_bytes(counter_cell_count); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
652 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
653 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
654 |
static void increment_count_no_overflow(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
655 |
increment_uint_at_no_overflow(layout, count_off); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
656 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
657 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
658 |
// Support counter decrementation at checkcast / subtype check failed. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
659 |
static void decrement_count(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
660 |
increment_uint_at_no_overflow(layout, count_off, -1); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
661 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
662 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
663 |
static DataLayout* advance(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
664 |
return (DataLayout*) (((address)layout) + (ssize_t)CounterData::counter_data_size_in_bytes()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
665 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
666 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
667 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
668 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 669 |
}; |
670 |
||
671 |
// JumpData |
|
672 |
// |
|
673 |
// A JumpData is used to access profiling information for a direct |
|
674 |
// branch. It is a counter, used for counting the number of branches, |
|
675 |
// plus a data displacement, used for realigning the data pointer to |
|
676 |
// the corresponding target bci. |
|
677 |
class JumpData : public ProfileData { |
|
33632 | 678 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
679 |
friend class JVMCIVMStructs; |
1 | 680 |
protected: |
681 |
enum { |
|
682 |
taken_off_set, |
|
683 |
displacement_off_set, |
|
684 |
jump_cell_count |
|
685 |
}; |
|
686 |
||
687 |
void set_displacement(int displacement) { |
|
688 |
set_int_at(displacement_off_set, displacement); |
|
689 |
} |
|
690 |
||
691 |
public: |
|
692 |
JumpData(DataLayout* layout) : ProfileData(layout) { |
|
693 |
assert(layout->tag() == DataLayout::jump_data_tag || |
|
694 |
layout->tag() == DataLayout::branch_data_tag, "wrong type"); |
|
695 |
} |
|
696 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
697 |
virtual bool is_JumpData() const { return true; } |
1 | 698 |
|
699 |
static int static_cell_count() { |
|
700 |
return jump_cell_count; |
|
701 |
} |
|
702 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
703 |
virtual int cell_count() const { |
1 | 704 |
return static_cell_count(); |
705 |
} |
|
706 |
||
707 |
// Direct accessor |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
708 |
uint taken() const { |
1 | 709 |
return uint_at(taken_off_set); |
710 |
} |
|
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
711 |
|
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
712 |
void set_taken(uint cnt) { |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
713 |
set_uint_at(taken_off_set, cnt); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
714 |
} |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
715 |
|
1 | 716 |
// Saturating counter |
717 |
uint inc_taken() { |
|
718 |
uint cnt = taken() + 1; |
|
719 |
// Did we wrap? Will compiler screw us?? |
|
720 |
if (cnt == 0) cnt--; |
|
721 |
set_uint_at(taken_off_set, cnt); |
|
722 |
return cnt; |
|
723 |
} |
|
724 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
725 |
int displacement() const { |
1 | 726 |
return int_at(displacement_off_set); |
727 |
} |
|
728 |
||
729 |
// Code generation support |
|
730 |
static ByteSize taken_offset() { |
|
731 |
return cell_offset(taken_off_set); |
|
732 |
} |
|
733 |
||
734 |
static ByteSize displacement_offset() { |
|
735 |
return cell_offset(displacement_off_set); |
|
736 |
} |
|
737 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
738 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
739 |
static void increment_taken_count_no_overflow(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
740 |
increment_uint_at_no_overflow(layout, taken_off_set); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
741 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
742 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
743 |
static DataLayout* advance_taken(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
744 |
return (DataLayout*) (((address)layout) + (ssize_t)int_at(layout, displacement_off_set)); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
745 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
746 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
747 |
static uint taken_count(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
748 |
return (uint) uint_at(layout, taken_off_set); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
749 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
750 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
751 |
|
1 | 752 |
// Specific initialization. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
753 |
void post_initialize(BytecodeStream* stream, MethodData* mdo); |
1 | 754 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
755 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
756 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
757 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
758 |
// Entries in a ProfileData object to record types: it can either be |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
759 |
// none (no profile), unknown (conflicting profile data) or a klass if |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
760 |
// a single one is seen. Whether a null reference was seen is also |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
761 |
// recorded. No counter is associated with the type and a single type |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
762 |
// is tracked (unlike VirtualCallData). |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
763 |
class TypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
764 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
765 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
766 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
767 |
// A single cell is used to record information for a type: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
768 |
// - the cell is initialized to 0 |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
769 |
// - when a type is discovered it is stored in the cell |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
770 |
// - bit zero of the cell is used to record whether a null reference |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
771 |
// was encountered or not |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
772 |
// - bit 1 is set to record a conflict in the type information |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
773 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
774 |
enum { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
775 |
null_seen = 1, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
776 |
type_mask = ~null_seen, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
777 |
type_unknown = 2, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
778 |
status_bits = null_seen | type_unknown, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
779 |
type_klass_mask = ~status_bits |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
780 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
781 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
782 |
// what to initialize a cell to |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
783 |
static intptr_t type_none() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
784 |
return 0; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
785 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
786 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
787 |
// null seen = bit 0 set? |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
788 |
static bool was_null_seen(intptr_t v) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
789 |
return (v & null_seen) != 0; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
790 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
791 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
792 |
// conflicting type information = bit 1 set? |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
793 |
static bool is_type_unknown(intptr_t v) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
794 |
return (v & type_unknown) != 0; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
795 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
796 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
797 |
// not type information yet = all bits cleared, ignoring bit 0? |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
798 |
static bool is_type_none(intptr_t v) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
799 |
return (v & type_mask) == 0; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
800 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
801 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
802 |
// recorded type: cell without bit 0 and 1 |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
803 |
static intptr_t klass_part(intptr_t v) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
804 |
intptr_t r = v & type_klass_mask; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
805 |
return r; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
806 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
807 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
808 |
// type recorded |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
809 |
static Klass* valid_klass(intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
810 |
if (!is_type_none(k) && |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
811 |
!is_type_unknown(k)) { |
21581 | 812 |
Klass* res = (Klass*)klass_part(k); |
813 |
assert(res != NULL, "invalid"); |
|
814 |
return res; |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
815 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
816 |
return NULL; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
817 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
818 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
819 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
820 |
static intptr_t with_status(intptr_t k, intptr_t in) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
821 |
return k | (in & status_bits); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
822 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
823 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
824 |
static intptr_t with_status(Klass* k, intptr_t in) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
825 |
return with_status((intptr_t)k, in); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
826 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
827 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
828 |
static void print_klass(outputStream* st, intptr_t k); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
829 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
830 |
// GC support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
831 |
static bool is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
832 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
833 |
protected: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
834 |
// ProfileData object these entries are part of |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
835 |
ProfileData* _pd; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
836 |
// offset within the ProfileData object where the entries start |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
837 |
const int _base_off; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
838 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
839 |
TypeEntries(int base_off) |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
840 |
: _base_off(base_off), _pd(NULL) {} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
841 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
842 |
void set_intptr_at(int index, intptr_t value) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
843 |
_pd->set_intptr_at(index, value); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
844 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
845 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
846 |
intptr_t intptr_at(int index) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
847 |
return _pd->intptr_at(index); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
848 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
849 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
850 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
851 |
void set_profile_data(ProfileData* pd) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
852 |
_pd = pd; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
853 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
854 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
855 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
856 |
// Type entries used for arguments passed at a call and parameters on |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
857 |
// method entry. 2 cells per entry: one for the type encoded as in |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
858 |
// TypeEntries and one initialized with the stack slot where the |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
859 |
// profiled object is to be found so that the interpreter can locate |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
860 |
// it quickly. |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
861 |
class TypeStackSlotEntries : public TypeEntries { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
862 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
863 |
private: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
864 |
enum { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
865 |
stack_slot_entry, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
866 |
type_entry, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
867 |
per_arg_cell_count |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
868 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
869 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
870 |
// offset of cell for stack slot for entry i within ProfileData object |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
871 |
int stack_slot_offset(int i) const { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
872 |
return _base_off + stack_slot_local_offset(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
873 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
874 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
875 |
const int _number_of_entries; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
876 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
877 |
// offset of cell for type for entry i within ProfileData object |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
878 |
int type_offset_in_cells(int i) const { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
879 |
return _base_off + type_local_offset(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
880 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
881 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
882 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
883 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
884 |
TypeStackSlotEntries(int base_off, int nb_entries) |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
885 |
: TypeEntries(base_off), _number_of_entries(nb_entries) {} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
886 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
887 |
static int compute_cell_count(Symbol* signature, bool include_receiver, int max); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
888 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
889 |
void post_initialize(Symbol* signature, bool has_receiver, bool include_receiver); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
890 |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
891 |
int number_of_entries() const { return _number_of_entries; } |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
892 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
893 |
// offset of cell for stack slot for entry i within this block of cells for a TypeStackSlotEntries |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
894 |
static int stack_slot_local_offset(int i) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
895 |
return i * per_arg_cell_count + stack_slot_entry; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
896 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
897 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
898 |
// offset of cell for type for entry i within this block of cells for a TypeStackSlotEntries |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
899 |
static int type_local_offset(int i) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
900 |
return i * per_arg_cell_count + type_entry; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
901 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
902 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
903 |
// stack slot for entry i |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
904 |
uint stack_slot(int i) const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
905 |
assert(i >= 0 && i < _number_of_entries, "oob"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
906 |
return _pd->uint_at(stack_slot_offset(i)); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
907 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
908 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
909 |
// set stack slot for entry i |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
910 |
void set_stack_slot(int i, uint num) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
911 |
assert(i >= 0 && i < _number_of_entries, "oob"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
912 |
_pd->set_uint_at(stack_slot_offset(i), num); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
913 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
914 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
915 |
// type for entry i |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
916 |
intptr_t type(int i) const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
917 |
assert(i >= 0 && i < _number_of_entries, "oob"); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
918 |
return _pd->intptr_at(type_offset_in_cells(i)); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
919 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
920 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
921 |
// set type for entry i |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
922 |
void set_type(int i, intptr_t k) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
923 |
assert(i >= 0 && i < _number_of_entries, "oob"); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
924 |
_pd->set_intptr_at(type_offset_in_cells(i), k); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
925 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
926 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
927 |
static ByteSize per_arg_size() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
928 |
return in_ByteSize(per_arg_cell_count * DataLayout::cell_size); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
929 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
930 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
931 |
static int per_arg_count() { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
932 |
return per_arg_cell_count; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
933 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
934 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
935 |
ByteSize type_offset(int i) const { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
936 |
return DataLayout::cell_offset(type_offset_in_cells(i)); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
937 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
938 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
939 |
// GC support |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
940 |
void clean_weak_klass_links(BoolObjectClosure* is_alive_closure); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
941 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
942 |
void print_data_on(outputStream* st) const; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
943 |
}; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
944 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
945 |
// Type entry used for return from a call. A single cell to record the |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
946 |
// type. |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
947 |
class ReturnTypeEntry : public TypeEntries { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
948 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
949 |
private: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
950 |
enum { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
951 |
cell_count = 1 |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
952 |
}; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
953 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
954 |
public: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
955 |
ReturnTypeEntry(int base_off) |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
956 |
: TypeEntries(base_off) {} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
957 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
958 |
void post_initialize() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
959 |
set_type(type_none()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
960 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
961 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
962 |
intptr_t type() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
963 |
return _pd->intptr_at(_base_off); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
964 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
965 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
966 |
void set_type(intptr_t k) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
967 |
_pd->set_intptr_at(_base_off, k); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
968 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
969 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
970 |
static int static_cell_count() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
971 |
return cell_count; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
972 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
973 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
974 |
static ByteSize size() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
975 |
return in_ByteSize(cell_count * DataLayout::cell_size); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
976 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
977 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
978 |
ByteSize type_offset() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
979 |
return DataLayout::cell_offset(_base_off); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
980 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
981 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
982 |
// GC support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
983 |
void clean_weak_klass_links(BoolObjectClosure* is_alive_closure); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
984 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
985 |
void print_data_on(outputStream* st) const; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
986 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
987 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
988 |
// Entries to collect type information at a call: contains arguments |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
989 |
// (TypeStackSlotEntries), a return type (ReturnTypeEntry) and a |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
990 |
// number of cells. Because the number of cells for the return type is |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
991 |
// smaller than the number of cells for the type of an arguments, the |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
992 |
// number of cells is used to tell how many arguments are profiled and |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
993 |
// whether a return value is profiled. See has_arguments() and |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
994 |
// has_return(). |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
995 |
class TypeEntriesAtCall { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
996 |
private: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
997 |
static int stack_slot_local_offset(int i) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
998 |
return header_cell_count() + TypeStackSlotEntries::stack_slot_local_offset(i); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
999 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1000 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1001 |
static int argument_type_local_offset(int i) { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1002 |
return header_cell_count() + TypeStackSlotEntries::type_local_offset(i); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1003 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1004 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1005 |
public: |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1006 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1007 |
static int header_cell_count() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1008 |
return 1; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1009 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1010 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1011 |
static int cell_count_local_offset() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1012 |
return 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1013 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1014 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1015 |
static int compute_cell_count(BytecodeStream* stream); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1016 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1017 |
static void initialize(DataLayout* dl, int base, int cell_count) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1018 |
int off = base + cell_count_local_offset(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1019 |
dl->set_cell_at(off, cell_count - base - header_cell_count()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1020 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1021 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1022 |
static bool arguments_profiling_enabled(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1023 |
static bool return_profiling_enabled(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1024 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1025 |
// Code generation support |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1026 |
static ByteSize cell_count_offset() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1027 |
return in_ByteSize(cell_count_local_offset() * DataLayout::cell_size); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1028 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1029 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1030 |
static ByteSize args_data_offset() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1031 |
return in_ByteSize(header_cell_count() * DataLayout::cell_size); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1032 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1033 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1034 |
static ByteSize stack_slot_offset(int i) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1035 |
return in_ByteSize(stack_slot_local_offset(i) * DataLayout::cell_size); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1036 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1037 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1038 |
static ByteSize argument_type_offset(int i) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1039 |
return in_ByteSize(argument_type_local_offset(i) * DataLayout::cell_size); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1040 |
} |
24088
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
1041 |
|
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
1042 |
static ByteSize return_only_size() { |
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
1043 |
return ReturnTypeEntry::size() + in_ByteSize(header_cell_count() * DataLayout::cell_size); |
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
1044 |
} |
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
1045 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1046 |
}; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1047 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1048 |
// CallTypeData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1049 |
// |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1050 |
// A CallTypeData is used to access profiling information about a non |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1051 |
// virtual call for which we collect type information about arguments |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1052 |
// and return value. |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1053 |
class CallTypeData : public CounterData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1054 |
private: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1055 |
// entries for arguments if any |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1056 |
TypeStackSlotEntries _args; |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1057 |
// entry for return type if any |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1058 |
ReturnTypeEntry _ret; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1059 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1060 |
int cell_count_global_offset() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1061 |
return CounterData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1062 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1063 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1064 |
// number of cells not counting the header |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1065 |
int cell_count_no_header() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1066 |
return uint_at(cell_count_global_offset()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1067 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1068 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1069 |
void check_number_of_arguments(int total) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1070 |
assert(number_of_arguments() == total, "should be set in DataLayout::initialize"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1071 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1072 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1073 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1074 |
CallTypeData(DataLayout* layout) : |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1075 |
CounterData(layout), |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1076 |
_args(CounterData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()), |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1077 |
_ret(cell_count() - ReturnTypeEntry::static_cell_count()) |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1078 |
{ |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1079 |
assert(layout->tag() == DataLayout::call_type_data_tag, "wrong type"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1080 |
// Some compilers (VC++) don't want this passed in member initialization list |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1081 |
_args.set_profile_data(this); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1082 |
_ret.set_profile_data(this); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1083 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1084 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1085 |
const TypeStackSlotEntries* args() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1086 |
assert(has_arguments(), "no profiling of arguments"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1087 |
return &_args; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1088 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1089 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1090 |
const ReturnTypeEntry* ret() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1091 |
assert(has_return(), "no profiling of return value"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1092 |
return &_ret; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1093 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1094 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1095 |
virtual bool is_CallTypeData() const { return true; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1096 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1097 |
static int static_cell_count() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1098 |
return -1; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1099 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1100 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1101 |
static int compute_cell_count(BytecodeStream* stream) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1102 |
return CounterData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1103 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1104 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1105 |
static void initialize(DataLayout* dl, int cell_count) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1106 |
TypeEntriesAtCall::initialize(dl, CounterData::static_cell_count(), cell_count); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1107 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1108 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1109 |
virtual void post_initialize(BytecodeStream* stream, MethodData* mdo); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1110 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1111 |
virtual int cell_count() const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1112 |
return CounterData::static_cell_count() + |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1113 |
TypeEntriesAtCall::header_cell_count() + |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1114 |
int_at_unchecked(cell_count_global_offset()); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1115 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1116 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1117 |
int number_of_arguments() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1118 |
return cell_count_no_header() / TypeStackSlotEntries::per_arg_count(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1119 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1120 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1121 |
void set_argument_type(int i, Klass* k) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1122 |
assert(has_arguments(), "no arguments!"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1123 |
intptr_t current = _args.type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1124 |
_args.set_type(i, TypeEntries::with_status(k, current)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1125 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1126 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1127 |
void set_return_type(Klass* k) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1128 |
assert(has_return(), "no return!"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1129 |
intptr_t current = _ret.type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1130 |
_ret.set_type(TypeEntries::with_status(k, current)); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1131 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1132 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1133 |
// An entry for a return value takes less space than an entry for an |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1134 |
// argument so if the number of cells exceeds the number of cells |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1135 |
// needed for an argument, this object contains type information for |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1136 |
// at least one argument. |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1137 |
bool has_arguments() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1138 |
bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1139 |
assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1140 |
return res; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1141 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1142 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1143 |
// An entry for a return value takes less space than an entry for an |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1144 |
// argument, so if the remainder of the number of cells divided by |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1145 |
// the number of cells for an argument is not null, a return value |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1146 |
// is profiled in this object. |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1147 |
bool has_return() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1148 |
bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1149 |
assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1150 |
return res; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1151 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1152 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1153 |
// Code generation support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1154 |
static ByteSize args_data_offset() { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1155 |
return cell_offset(CounterData::static_cell_count()) + TypeEntriesAtCall::args_data_offset(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1156 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1157 |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1158 |
ByteSize argument_type_offset(int i) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1159 |
return _args.type_offset(i); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1160 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1161 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1162 |
ByteSize return_type_offset() { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1163 |
return _ret.type_offset(); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1164 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1165 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1166 |
// GC support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1167 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1168 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1169 |
_args.clean_weak_klass_links(is_alive_closure); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1170 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1171 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1172 |
_ret.clean_weak_klass_links(is_alive_closure); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1173 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1174 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1175 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1176 |
virtual void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1177 |
}; |
1178 |
||
1179 |
// ReceiverTypeData |
|
1180 |
// |
|
1181 |
// A ReceiverTypeData is used to access profiling information about a |
|
1182 |
// dynamic type check. It consists of a counter which counts the total times |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1183 |
// that the check is reached, and a series of (Klass*, count) pairs |
1 | 1184 |
// which are used to store a type profile for the receiver of the check. |
1185 |
class ReceiverTypeData : public CounterData { |
|
33632 | 1186 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
1187 |
friend class JVMCIVMStructs; |
1 | 1188 |
protected: |
1189 |
enum { |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1190 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1191 |
// Description of the different counters |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1192 |
// ReceiverTypeData for instanceof/checkcast/aastore: |
41701 | 1193 |
// count is decremented for failed type checks |
1194 |
// JVMCI only: nonprofiled_count is incremented on type overflow |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1195 |
// VirtualCallData for invokevirtual/invokeinterface: |
41701 | 1196 |
// count is incremented on type overflow |
1197 |
// JVMCI only: nonprofiled_count is incremented on method overflow |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1198 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1199 |
// JVMCI is interested in knowing the percentage of type checks involving a type not explicitly in the profile |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1200 |
nonprofiled_count_off_set = counter_cell_count, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1201 |
receiver0_offset, |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1202 |
#else |
1 | 1203 |
receiver0_offset = counter_cell_count, |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1204 |
#endif |
1 | 1205 |
count0_offset, |
1206 |
receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset |
|
1207 |
}; |
|
1208 |
||
1209 |
public: |
|
1210 |
ReceiverTypeData(DataLayout* layout) : CounterData(layout) { |
|
1211 |
assert(layout->tag() == DataLayout::receiver_type_data_tag || |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1212 |
layout->tag() == DataLayout::virtual_call_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1213 |
layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type"); |
1 | 1214 |
} |
1215 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1216 |
virtual bool is_ReceiverTypeData() const { return true; } |
1 | 1217 |
|
1218 |
static int static_cell_count() { |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1219 |
return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count JVMCI_ONLY(+ 1); |
1 | 1220 |
} |
1221 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1222 |
virtual int cell_count() const { |
1 | 1223 |
return static_cell_count(); |
1224 |
} |
|
1225 |
||
1226 |
// Direct accessors |
|
1227 |
static uint row_limit() { |
|
1228 |
return TypeProfileWidth; |
|
1229 |
} |
|
1230 |
static int receiver_cell_index(uint row) { |
|
1231 |
return receiver0_offset + row * receiver_type_row_cell_count; |
|
1232 |
} |
|
1233 |
static int receiver_count_cell_index(uint row) { |
|
1234 |
return count0_offset + row * receiver_type_row_cell_count; |
|
1235 |
} |
|
1236 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1237 |
Klass* receiver(uint row) const { |
1 | 1238 |
assert(row < row_limit(), "oob"); |
1239 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1240 |
Klass* recv = (Klass*)intptr_at(receiver_cell_index(row)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1241 |
assert(recv == NULL || recv->is_klass(), "wrong type"); |
1 | 1242 |
return recv; |
1243 |
} |
|
1244 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1245 |
void set_receiver(uint row, Klass* k) { |
3696 | 1246 |
assert((uint)row < row_limit(), "oob"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1247 |
set_intptr_at(receiver_cell_index(row), (uintptr_t)k); |
3696 | 1248 |
} |
1249 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1250 |
uint receiver_count(uint row) const { |
1 | 1251 |
assert(row < row_limit(), "oob"); |
1252 |
return uint_at(receiver_count_cell_index(row)); |
|
1253 |
} |
|
1254 |
||
3696 | 1255 |
void set_receiver_count(uint row, uint count) { |
1256 |
assert(row < row_limit(), "oob"); |
|
1257 |
set_uint_at(receiver_count_cell_index(row), count); |
|
1258 |
} |
|
1259 |
||
1260 |
void clear_row(uint row) { |
|
1261 |
assert(row < row_limit(), "oob"); |
|
4892
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1262 |
// Clear total count - indicator of polymorphic call site. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1263 |
// The site may look like as monomorphic after that but |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1264 |
// it allow to have more accurate profiling information because |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1265 |
// there was execution phase change since klasses were unloaded. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1266 |
// If the site is still polymorphic then MDO will be updated |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1267 |
// to reflect it. But it could be the case that the site becomes |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1268 |
// only bimorphic. Then keeping total count not 0 will be wrong. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1269 |
// Even if we use monomorphic (when it is not) for compilation |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1270 |
// we will only have trap, deoptimization and recompile again |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1271 |
// with updated MDO after executing method in Interpreter. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1272 |
// An additional receiver will be recorded in the cleaned row |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1273 |
// during next call execution. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1274 |
// |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1275 |
// Note: our profiling logic works with empty rows in any slot. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1276 |
// We do sorting a profiling info (ciCallProfile) for compilation. |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1277 |
// |
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
1278 |
set_count(0); |
3696 | 1279 |
set_receiver(row, NULL); |
1280 |
set_receiver_count(row, 0); |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1281 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1282 |
if (!this->is_VirtualCallData()) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1283 |
// if this is a ReceiverTypeData for JVMCI, the nonprofiled_count |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1284 |
// must also be reset (see "Description of the different counters" above) |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1285 |
set_nonprofiled_count(0); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1286 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1287 |
#endif |
3696 | 1288 |
} |
1289 |
||
1 | 1290 |
// Code generation support |
1291 |
static ByteSize receiver_offset(uint row) { |
|
1292 |
return cell_offset(receiver_cell_index(row)); |
|
1293 |
} |
|
1294 |
static ByteSize receiver_count_offset(uint row) { |
|
1295 |
return cell_offset(receiver_count_cell_index(row)); |
|
1296 |
} |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1297 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1298 |
static ByteSize nonprofiled_receiver_count_offset() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1299 |
return cell_offset(nonprofiled_count_off_set); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1300 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1301 |
uint nonprofiled_count() const { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1302 |
return uint_at(nonprofiled_count_off_set); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1303 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1304 |
void set_nonprofiled_count(uint count) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1305 |
set_uint_at(nonprofiled_count_off_set, count); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1306 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1307 |
#endif // INCLUDE_JVMCI |
1 | 1308 |
static ByteSize receiver_type_data_size() { |
1309 |
return cell_offset(static_cell_count()); |
|
1310 |
} |
|
1311 |
||
1312 |
// GC support |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1313 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure); |
1 | 1314 |
|
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1315 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1316 |
static int receiver_type_data_size_in_bytes() { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1317 |
return cell_offset_in_bytes(static_cell_count()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1318 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1319 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1320 |
static Klass *receiver_unchecked(DataLayout* layout, uint row) { |
22849
b8670e920530
8028514: PPC64: Fix C++ Interpreter after '7195622: CheckUnhandledOops has limited usefulness now'
simonis
parents:
22838
diff
changeset
|
1321 |
Klass* recv = (Klass*)layout->cell_at(receiver_cell_index(row)); |
b8670e920530
8028514: PPC64: Fix C++ Interpreter after '7195622: CheckUnhandledOops has limited usefulness now'
simonis
parents:
22838
diff
changeset
|
1322 |
return recv; |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1323 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1324 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1325 |
static void increment_receiver_count_no_overflow(DataLayout* layout, Klass *rcvr) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1326 |
const int num_rows = row_limit(); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1327 |
// Receiver already exists? |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1328 |
for (int row = 0; row < num_rows; row++) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1329 |
if (receiver_unchecked(layout, row) == rcvr) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1330 |
increment_uint_at_no_overflow(layout, receiver_count_cell_index(row)); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1331 |
return; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1332 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1333 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1334 |
// New receiver, find a free slot. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1335 |
for (int row = 0; row < num_rows; row++) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1336 |
if (receiver_unchecked(layout, row) == NULL) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1337 |
set_intptr_at(layout, receiver_cell_index(row), (intptr_t)rcvr); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1338 |
increment_uint_at_no_overflow(layout, receiver_count_cell_index(row)); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1339 |
return; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1340 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1341 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1342 |
// Receiver did not match any saved receiver and there is no empty row for it. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1343 |
// Increment total counter to indicate polymorphic case. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1344 |
increment_count_no_overflow(layout); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1345 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1346 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1347 |
static DataLayout* advance(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1348 |
return (DataLayout*) (((address)layout) + (ssize_t)ReceiverTypeData::receiver_type_data_size_in_bytes()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1349 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1350 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1351 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1352 |
void print_receiver_data_on(outputStream* st) const; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1353 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1354 |
}; |
1355 |
||
1356 |
// VirtualCallData |
|
1357 |
// |
|
1358 |
// A VirtualCallData is used to access profiling information about a |
|
1359 |
// virtual call. For now, it has nothing more than a ReceiverTypeData. |
|
1360 |
class VirtualCallData : public ReceiverTypeData { |
|
1361 |
public: |
|
1362 |
VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) { |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1363 |
assert(layout->tag() == DataLayout::virtual_call_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1364 |
layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type"); |
1 | 1365 |
} |
1366 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1367 |
virtual bool is_VirtualCallData() const { return true; } |
1 | 1368 |
|
1369 |
static int static_cell_count() { |
|
1370 |
// At this point we could add more profile state, e.g., for arguments. |
|
1371 |
// But for now it's the same size as the base record type. |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1372 |
return ReceiverTypeData::static_cell_count() JVMCI_ONLY(+ (uint) MethodProfileWidth * receiver_type_row_cell_count); |
1 | 1373 |
} |
1374 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1375 |
virtual int cell_count() const { |
1 | 1376 |
return static_cell_count(); |
1377 |
} |
|
1378 |
||
1379 |
// Direct accessors |
|
1380 |
static ByteSize virtual_call_data_size() { |
|
1381 |
return cell_offset(static_cell_count()); |
|
1382 |
} |
|
1383 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1384 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1385 |
static int virtual_call_data_size_in_bytes() { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1386 |
return cell_offset_in_bytes(static_cell_count()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1387 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1388 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1389 |
static DataLayout* advance(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1390 |
return (DataLayout*) (((address)layout) + (ssize_t)VirtualCallData::virtual_call_data_size_in_bytes()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1391 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1392 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1393 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1394 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1395 |
static ByteSize method_offset(uint row) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1396 |
return cell_offset(method_cell_index(row)); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1397 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1398 |
static ByteSize method_count_offset(uint row) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1399 |
return cell_offset(method_count_cell_index(row)); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1400 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1401 |
static int method_cell_index(uint row) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1402 |
return receiver0_offset + (row + TypeProfileWidth) * receiver_type_row_cell_count; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1403 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1404 |
static int method_count_cell_index(uint row) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1405 |
return count0_offset + (row + TypeProfileWidth) * receiver_type_row_cell_count; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1406 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1407 |
static uint method_row_limit() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1408 |
return MethodProfileWidth; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1409 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1410 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1411 |
Method* method(uint row) const { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1412 |
assert(row < method_row_limit(), "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1413 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1414 |
Method* method = (Method*)intptr_at(method_cell_index(row)); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1415 |
assert(method == NULL || method->is_method(), "must be"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1416 |
return method; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1417 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1418 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1419 |
uint method_count(uint row) const { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1420 |
assert(row < method_row_limit(), "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1421 |
return uint_at(method_count_cell_index(row)); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1422 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1423 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1424 |
void set_method(uint row, Method* m) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1425 |
assert((uint)row < method_row_limit(), "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1426 |
set_intptr_at(method_cell_index(row), (uintptr_t)m); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1427 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1428 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1429 |
void set_method_count(uint row, uint count) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1430 |
assert(row < method_row_limit(), "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1431 |
set_uint_at(method_count_cell_index(row), count); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1432 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1433 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1434 |
void clear_method_row(uint row) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1435 |
assert(row < method_row_limit(), "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1436 |
// Clear total count - indicator of polymorphic call site (see comment for clear_row() in ReceiverTypeData). |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1437 |
set_nonprofiled_count(0); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1438 |
set_method(row, NULL); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1439 |
set_method_count(row, 0); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1440 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1441 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1442 |
// GC support |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1443 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1444 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1445 |
// Redefinition support |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1446 |
virtual void clean_weak_method_links(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1447 |
#endif // INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1448 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1449 |
void print_method_data_on(outputStream* st) const NOT_JVMCI_RETURN; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1450 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1451 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1452 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1453 |
// VirtualCallTypeData |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1454 |
// |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1455 |
// A VirtualCallTypeData is used to access profiling information about |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1456 |
// a virtual call for which we collect type information about |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1457 |
// arguments and return value. |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1458 |
class VirtualCallTypeData : public VirtualCallData { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1459 |
private: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1460 |
// entries for arguments if any |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1461 |
TypeStackSlotEntries _args; |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1462 |
// entry for return type if any |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1463 |
ReturnTypeEntry _ret; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1464 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1465 |
int cell_count_global_offset() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1466 |
return VirtualCallData::static_cell_count() + TypeEntriesAtCall::cell_count_local_offset(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1467 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1468 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1469 |
// number of cells not counting the header |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1470 |
int cell_count_no_header() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1471 |
return uint_at(cell_count_global_offset()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1472 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1473 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1474 |
void check_number_of_arguments(int total) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1475 |
assert(number_of_arguments() == total, "should be set in DataLayout::initialize"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1476 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1477 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1478 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1479 |
VirtualCallTypeData(DataLayout* layout) : |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1480 |
VirtualCallData(layout), |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1481 |
_args(VirtualCallData::static_cell_count()+TypeEntriesAtCall::header_cell_count(), number_of_arguments()), |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1482 |
_ret(cell_count() - ReturnTypeEntry::static_cell_count()) |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1483 |
{ |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1484 |
assert(layout->tag() == DataLayout::virtual_call_type_data_tag, "wrong type"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1485 |
// Some compilers (VC++) don't want this passed in member initialization list |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1486 |
_args.set_profile_data(this); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1487 |
_ret.set_profile_data(this); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1488 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1489 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1490 |
const TypeStackSlotEntries* args() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1491 |
assert(has_arguments(), "no profiling of arguments"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1492 |
return &_args; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1493 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1494 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1495 |
const ReturnTypeEntry* ret() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1496 |
assert(has_return(), "no profiling of return value"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1497 |
return &_ret; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1498 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1499 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1500 |
virtual bool is_VirtualCallTypeData() const { return true; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1501 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1502 |
static int static_cell_count() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1503 |
return -1; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1504 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1505 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1506 |
static int compute_cell_count(BytecodeStream* stream) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1507 |
return VirtualCallData::static_cell_count() + TypeEntriesAtCall::compute_cell_count(stream); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1508 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1509 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1510 |
static void initialize(DataLayout* dl, int cell_count) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1511 |
TypeEntriesAtCall::initialize(dl, VirtualCallData::static_cell_count(), cell_count); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1512 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1513 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1514 |
virtual void post_initialize(BytecodeStream* stream, MethodData* mdo); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1515 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1516 |
virtual int cell_count() const { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1517 |
return VirtualCallData::static_cell_count() + |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1518 |
TypeEntriesAtCall::header_cell_count() + |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1519 |
int_at_unchecked(cell_count_global_offset()); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1520 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1521 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1522 |
int number_of_arguments() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1523 |
return cell_count_no_header() / TypeStackSlotEntries::per_arg_count(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1524 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1525 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1526 |
void set_argument_type(int i, Klass* k) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1527 |
assert(has_arguments(), "no arguments!"); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1528 |
intptr_t current = _args.type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1529 |
_args.set_type(i, TypeEntries::with_status(k, current)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1530 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1531 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1532 |
void set_return_type(Klass* k) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1533 |
assert(has_return(), "no return!"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1534 |
intptr_t current = _ret.type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1535 |
_ret.set_type(TypeEntries::with_status(k, current)); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1536 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1537 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1538 |
// An entry for a return value takes less space than an entry for an |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1539 |
// argument, so if the remainder of the number of cells divided by |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1540 |
// the number of cells for an argument is not null, a return value |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1541 |
// is profiled in this object. |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1542 |
bool has_return() const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1543 |
bool res = (cell_count_no_header() % TypeStackSlotEntries::per_arg_count()) != 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1544 |
assert (!res || TypeEntriesAtCall::return_profiling_enabled(), "no profiling of return values"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1545 |
return res; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1546 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1547 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1548 |
// An entry for a return value takes less space than an entry for an |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1549 |
// argument so if the number of cells exceeds the number of cells |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1550 |
// needed for an argument, this object contains type information for |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1551 |
// at least one argument. |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1552 |
bool has_arguments() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1553 |
bool res = cell_count_no_header() >= TypeStackSlotEntries::per_arg_count(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1554 |
assert (!res || TypeEntriesAtCall::arguments_profiling_enabled(), "no profiling of arguments"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1555 |
return res; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1556 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1557 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1558 |
// Code generation support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1559 |
static ByteSize args_data_offset() { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1560 |
return cell_offset(VirtualCallData::static_cell_count()) + TypeEntriesAtCall::args_data_offset(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1561 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1562 |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1563 |
ByteSize argument_type_offset(int i) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1564 |
return _args.type_offset(i); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1565 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1566 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1567 |
ByteSize return_type_offset() { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1568 |
return _ret.type_offset(); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1569 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
1570 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1571 |
// GC support |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1572 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1573 |
ReceiverTypeData::clean_weak_klass_links(is_alive_closure); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1574 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1575 |
_args.clean_weak_klass_links(is_alive_closure); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1576 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1577 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1578 |
_ret.clean_weak_klass_links(is_alive_closure); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1579 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1580 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1581 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1582 |
virtual void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1583 |
}; |
1584 |
||
1585 |
// RetData |
|
1586 |
// |
|
1587 |
// A RetData is used to access profiling information for a ret bytecode. |
|
1588 |
// It is composed of a count of the number of times that the ret has |
|
1589 |
// been executed, followed by a series of triples of the form |
|
1590 |
// (bci, count, di) which count the number of times that some bci was the |
|
1591 |
// target of the ret and cache a corresponding data displacement. |
|
1592 |
class RetData : public CounterData { |
|
1593 |
protected: |
|
1594 |
enum { |
|
1595 |
bci0_offset = counter_cell_count, |
|
1596 |
count0_offset, |
|
1597 |
displacement0_offset, |
|
1598 |
ret_row_cell_count = (displacement0_offset + 1) - bci0_offset |
|
1599 |
}; |
|
1600 |
||
1601 |
void set_bci(uint row, int bci) { |
|
1602 |
assert((uint)row < row_limit(), "oob"); |
|
1603 |
set_int_at(bci0_offset + row * ret_row_cell_count, bci); |
|
1604 |
} |
|
1605 |
void release_set_bci(uint row, int bci) { |
|
1606 |
assert((uint)row < row_limit(), "oob"); |
|
1607 |
// 'release' when setting the bci acts as a valid flag for other |
|
1608 |
// threads wrt bci_count and bci_displacement. |
|
1609 |
release_set_int_at(bci0_offset + row * ret_row_cell_count, bci); |
|
1610 |
} |
|
1611 |
void set_bci_count(uint row, uint count) { |
|
1612 |
assert((uint)row < row_limit(), "oob"); |
|
1613 |
set_uint_at(count0_offset + row * ret_row_cell_count, count); |
|
1614 |
} |
|
1615 |
void set_bci_displacement(uint row, int disp) { |
|
1616 |
set_int_at(displacement0_offset + row * ret_row_cell_count, disp); |
|
1617 |
} |
|
1618 |
||
1619 |
public: |
|
1620 |
RetData(DataLayout* layout) : CounterData(layout) { |
|
1621 |
assert(layout->tag() == DataLayout::ret_data_tag, "wrong type"); |
|
1622 |
} |
|
1623 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1624 |
virtual bool is_RetData() const { return true; } |
1 | 1625 |
|
1626 |
enum { |
|
1627 |
no_bci = -1 // value of bci when bci1/2 are not in use. |
|
1628 |
}; |
|
1629 |
||
1630 |
static int static_cell_count() { |
|
1631 |
return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count; |
|
1632 |
} |
|
1633 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1634 |
virtual int cell_count() const { |
1 | 1635 |
return static_cell_count(); |
1636 |
} |
|
1637 |
||
1638 |
static uint row_limit() { |
|
1639 |
return BciProfileWidth; |
|
1640 |
} |
|
1641 |
static int bci_cell_index(uint row) { |
|
1642 |
return bci0_offset + row * ret_row_cell_count; |
|
1643 |
} |
|
1644 |
static int bci_count_cell_index(uint row) { |
|
1645 |
return count0_offset + row * ret_row_cell_count; |
|
1646 |
} |
|
1647 |
static int bci_displacement_cell_index(uint row) { |
|
1648 |
return displacement0_offset + row * ret_row_cell_count; |
|
1649 |
} |
|
1650 |
||
1651 |
// Direct accessors |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1652 |
int bci(uint row) const { |
1 | 1653 |
return int_at(bci_cell_index(row)); |
1654 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1655 |
uint bci_count(uint row) const { |
1 | 1656 |
return uint_at(bci_count_cell_index(row)); |
1657 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1658 |
int bci_displacement(uint row) const { |
1 | 1659 |
return int_at(bci_displacement_cell_index(row)); |
1660 |
} |
|
1661 |
||
1662 |
// Interpreter Runtime support |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1663 |
address fixup_ret(int return_bci, MethodData* mdo); |
1 | 1664 |
|
1665 |
// Code generation support |
|
1666 |
static ByteSize bci_offset(uint row) { |
|
1667 |
return cell_offset(bci_cell_index(row)); |
|
1668 |
} |
|
1669 |
static ByteSize bci_count_offset(uint row) { |
|
1670 |
return cell_offset(bci_count_cell_index(row)); |
|
1671 |
} |
|
1672 |
static ByteSize bci_displacement_offset(uint row) { |
|
1673 |
return cell_offset(bci_displacement_cell_index(row)); |
|
1674 |
} |
|
1675 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1676 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1677 |
static DataLayout* advance(MethodData *md, int bci); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1678 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1679 |
|
1 | 1680 |
// Specific initialization. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1681 |
void post_initialize(BytecodeStream* stream, MethodData* mdo); |
1 | 1682 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1683 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1684 |
}; |
1685 |
||
1686 |
// BranchData |
|
1687 |
// |
|
1688 |
// A BranchData is used to access profiling data for a two-way branch. |
|
1689 |
// It consists of taken and not_taken counts as well as a data displacement |
|
1690 |
// for the taken case. |
|
1691 |
class BranchData : public JumpData { |
|
33632 | 1692 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
1693 |
friend class JVMCIVMStructs; |
1 | 1694 |
protected: |
1695 |
enum { |
|
1696 |
not_taken_off_set = jump_cell_count, |
|
1697 |
branch_cell_count |
|
1698 |
}; |
|
1699 |
||
1700 |
void set_displacement(int displacement) { |
|
1701 |
set_int_at(displacement_off_set, displacement); |
|
1702 |
} |
|
1703 |
||
1704 |
public: |
|
1705 |
BranchData(DataLayout* layout) : JumpData(layout) { |
|
1706 |
assert(layout->tag() == DataLayout::branch_data_tag, "wrong type"); |
|
1707 |
} |
|
1708 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1709 |
virtual bool is_BranchData() const { return true; } |
1 | 1710 |
|
1711 |
static int static_cell_count() { |
|
1712 |
return branch_cell_count; |
|
1713 |
} |
|
1714 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1715 |
virtual int cell_count() const { |
1 | 1716 |
return static_cell_count(); |
1717 |
} |
|
1718 |
||
1719 |
// Direct accessor |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1720 |
uint not_taken() const { |
1 | 1721 |
return uint_at(not_taken_off_set); |
1722 |
} |
|
1723 |
||
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
1724 |
void set_not_taken(uint cnt) { |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
1725 |
set_uint_at(not_taken_off_set, cnt); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
1726 |
} |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
9446
diff
changeset
|
1727 |
|
1 | 1728 |
uint inc_not_taken() { |
1729 |
uint cnt = not_taken() + 1; |
|
1730 |
// Did we wrap? Will compiler screw us?? |
|
1731 |
if (cnt == 0) cnt--; |
|
1732 |
set_uint_at(not_taken_off_set, cnt); |
|
1733 |
return cnt; |
|
1734 |
} |
|
1735 |
||
1736 |
// Code generation support |
|
1737 |
static ByteSize not_taken_offset() { |
|
1738 |
return cell_offset(not_taken_off_set); |
|
1739 |
} |
|
1740 |
static ByteSize branch_data_size() { |
|
1741 |
return cell_offset(branch_cell_count); |
|
1742 |
} |
|
1743 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1744 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1745 |
static int branch_data_size_in_bytes() { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1746 |
return cell_offset_in_bytes(branch_cell_count); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1747 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1748 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1749 |
static void increment_not_taken_count_no_overflow(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1750 |
increment_uint_at_no_overflow(layout, not_taken_off_set); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1751 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1752 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1753 |
static DataLayout* advance_not_taken(DataLayout* layout) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1754 |
return (DataLayout*) (((address)layout) + (ssize_t)BranchData::branch_data_size_in_bytes()); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1755 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1756 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1757 |
|
1 | 1758 |
// Specific initialization. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1759 |
void post_initialize(BytecodeStream* stream, MethodData* mdo); |
1 | 1760 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1761 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1762 |
}; |
1763 |
||
1764 |
// ArrayData |
|
1765 |
// |
|
1766 |
// A ArrayData is a base class for accessing profiling data which does |
|
1767 |
// not have a statically known size. It consists of an array length |
|
1768 |
// and an array start. |
|
1769 |
class ArrayData : public ProfileData { |
|
33632 | 1770 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
1771 |
friend class JVMCIVMStructs; |
1 | 1772 |
protected: |
1773 |
friend class DataLayout; |
|
1774 |
||
1775 |
enum { |
|
1776 |
array_len_off_set, |
|
1777 |
array_start_off_set |
|
1778 |
}; |
|
1779 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1780 |
uint array_uint_at(int index) const { |
1 | 1781 |
int aindex = index + array_start_off_set; |
1782 |
return uint_at(aindex); |
|
1783 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1784 |
int array_int_at(int index) const { |
1 | 1785 |
int aindex = index + array_start_off_set; |
1786 |
return int_at(aindex); |
|
1787 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1788 |
oop array_oop_at(int index) const { |
1 | 1789 |
int aindex = index + array_start_off_set; |
1790 |
return oop_at(aindex); |
|
1791 |
} |
|
1792 |
void array_set_int_at(int index, int value) { |
|
1793 |
int aindex = index + array_start_off_set; |
|
1794 |
set_int_at(aindex, value); |
|
1795 |
} |
|
1796 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1797 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1798 |
// Static low level accessors for DataLayout with ArrayData's semantics. |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1799 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1800 |
static void increment_array_uint_at_no_overflow(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1801 |
int aindex = index + array_start_off_set; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1802 |
increment_uint_at_no_overflow(layout, aindex); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1803 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1804 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1805 |
static int array_int_at(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1806 |
int aindex = index + array_start_off_set; |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1807 |
return int_at(layout, aindex); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1808 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1809 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1810 |
|
1 | 1811 |
// Code generation support for subclasses. |
1812 |
static ByteSize array_element_offset(int index) { |
|
1813 |
return cell_offset(array_start_off_set + index); |
|
1814 |
} |
|
1815 |
||
1816 |
public: |
|
1817 |
ArrayData(DataLayout* layout) : ProfileData(layout) {} |
|
1818 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1819 |
virtual bool is_ArrayData() const { return true; } |
1 | 1820 |
|
1821 |
static int static_cell_count() { |
|
1822 |
return -1; |
|
1823 |
} |
|
1824 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1825 |
int array_len() const { |
1 | 1826 |
return int_at_unchecked(array_len_off_set); |
1827 |
} |
|
1828 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1829 |
virtual int cell_count() const { |
1 | 1830 |
return array_len() + 1; |
1831 |
} |
|
1832 |
||
1833 |
// Code generation support |
|
1834 |
static ByteSize array_len_offset() { |
|
1835 |
return cell_offset(array_len_off_set); |
|
1836 |
} |
|
1837 |
static ByteSize array_start_offset() { |
|
1838 |
return cell_offset(array_start_off_set); |
|
1839 |
} |
|
1840 |
}; |
|
1841 |
||
1842 |
// MultiBranchData |
|
1843 |
// |
|
1844 |
// A MultiBranchData is used to access profiling information for |
|
1845 |
// a multi-way branch (*switch bytecodes). It consists of a series |
|
1846 |
// of (count, displacement) pairs, which count the number of times each |
|
1847 |
// case was taken and specify the data displacment for each branch target. |
|
1848 |
class MultiBranchData : public ArrayData { |
|
33632 | 1849 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
1850 |
friend class JVMCIVMStructs; |
1 | 1851 |
protected: |
1852 |
enum { |
|
1853 |
default_count_off_set, |
|
1854 |
default_disaplacement_off_set, |
|
1855 |
case_array_start |
|
1856 |
}; |
|
1857 |
enum { |
|
1858 |
relative_count_off_set, |
|
1859 |
relative_displacement_off_set, |
|
1860 |
per_case_cell_count |
|
1861 |
}; |
|
1862 |
||
1863 |
void set_default_displacement(int displacement) { |
|
1864 |
array_set_int_at(default_disaplacement_off_set, displacement); |
|
1865 |
} |
|
1866 |
void set_displacement_at(int index, int displacement) { |
|
1867 |
array_set_int_at(case_array_start + |
|
1868 |
index * per_case_cell_count + |
|
1869 |
relative_displacement_off_set, |
|
1870 |
displacement); |
|
1871 |
} |
|
1872 |
||
1873 |
public: |
|
1874 |
MultiBranchData(DataLayout* layout) : ArrayData(layout) { |
|
1875 |
assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type"); |
|
1876 |
} |
|
1877 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1878 |
virtual bool is_MultiBranchData() const { return true; } |
1 | 1879 |
|
1880 |
static int compute_cell_count(BytecodeStream* stream); |
|
1881 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1882 |
int number_of_cases() const { |
1 | 1883 |
int alen = array_len() - 2; // get rid of default case here. |
1884 |
assert(alen % per_case_cell_count == 0, "must be even"); |
|
1885 |
return (alen / per_case_cell_count); |
|
1886 |
} |
|
1887 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1888 |
uint default_count() const { |
1 | 1889 |
return array_uint_at(default_count_off_set); |
1890 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1891 |
int default_displacement() const { |
1 | 1892 |
return array_int_at(default_disaplacement_off_set); |
1893 |
} |
|
1894 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1895 |
uint count_at(int index) const { |
1 | 1896 |
return array_uint_at(case_array_start + |
1897 |
index * per_case_cell_count + |
|
1898 |
relative_count_off_set); |
|
1899 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1900 |
int displacement_at(int index) const { |
1 | 1901 |
return array_int_at(case_array_start + |
1902 |
index * per_case_cell_count + |
|
1903 |
relative_displacement_off_set); |
|
1904 |
} |
|
1905 |
||
1906 |
// Code generation support |
|
1907 |
static ByteSize default_count_offset() { |
|
1908 |
return array_element_offset(default_count_off_set); |
|
1909 |
} |
|
1910 |
static ByteSize default_displacement_offset() { |
|
1911 |
return array_element_offset(default_disaplacement_off_set); |
|
1912 |
} |
|
1913 |
static ByteSize case_count_offset(int index) { |
|
1914 |
return case_array_offset() + |
|
1915 |
(per_case_size() * index) + |
|
1916 |
relative_count_offset(); |
|
1917 |
} |
|
1918 |
static ByteSize case_array_offset() { |
|
1919 |
return array_element_offset(case_array_start); |
|
1920 |
} |
|
1921 |
static ByteSize per_case_size() { |
|
1922 |
return in_ByteSize(per_case_cell_count) * cell_size; |
|
1923 |
} |
|
1924 |
static ByteSize relative_count_offset() { |
|
1925 |
return in_ByteSize(relative_count_off_set) * cell_size; |
|
1926 |
} |
|
1927 |
static ByteSize relative_displacement_offset() { |
|
1928 |
return in_ByteSize(relative_displacement_off_set) * cell_size; |
|
1929 |
} |
|
1930 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1931 |
#ifdef CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1932 |
static void increment_count_no_overflow(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1933 |
if (index == -1) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1934 |
increment_array_uint_at_no_overflow(layout, default_count_off_set); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1935 |
} else { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1936 |
increment_array_uint_at_no_overflow(layout, case_array_start + |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1937 |
index * per_case_cell_count + |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1938 |
relative_count_off_set); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1939 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1940 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1941 |
|
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1942 |
static DataLayout* advance(DataLayout* layout, int index) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1943 |
if (index == -1) { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1944 |
return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, default_disaplacement_off_set)); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1945 |
} else { |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1946 |
return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, case_array_start + |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1947 |
index * per_case_cell_count + |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1948 |
relative_displacement_off_set)); |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1949 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1950 |
} |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1951 |
#endif // CC_INTERP |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
1952 |
|
1 | 1953 |
// Specific initialization. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
1954 |
void post_initialize(BytecodeStream* stream, MethodData* mdo); |
1 | 1955 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1956 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
1 | 1957 |
}; |
1958 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1959 |
class ArgInfoData : public ArrayData { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1960 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1961 |
public: |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1962 |
ArgInfoData(DataLayout* layout) : ArrayData(layout) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1963 |
assert(layout->tag() == DataLayout::arg_info_data_tag, "wrong type"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1964 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1965 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1966 |
virtual bool is_ArgInfoData() const { return true; } |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1967 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1968 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1969 |
int number_of_args() const { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1970 |
return array_len(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1971 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1972 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
1973 |
uint arg_modified(int arg) const { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1974 |
return array_uint_at(arg); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1975 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1976 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1977 |
void set_arg_modified(int arg, uint val) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1978 |
array_set_int_at(arg, val); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1979 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1980 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1981 |
void print_data_on(outputStream* st, const char* extra = NULL) const; |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1982 |
}; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1983 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1984 |
// ParametersTypeData |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1985 |
// |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1986 |
// A ParametersTypeData is used to access profiling information about |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1987 |
// types of parameters to a method |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1988 |
class ParametersTypeData : public ArrayData { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1989 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1990 |
private: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1991 |
TypeStackSlotEntries _parameters; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1992 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1993 |
static int stack_slot_local_offset(int i) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1994 |
assert_profiling_enabled(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1995 |
return array_start_off_set + TypeStackSlotEntries::stack_slot_local_offset(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1996 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1997 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1998 |
static int type_local_offset(int i) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1999 |
assert_profiling_enabled(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2000 |
return array_start_off_set + TypeStackSlotEntries::type_local_offset(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2001 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2002 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2003 |
static bool profiling_enabled(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2004 |
static void assert_profiling_enabled() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2005 |
assert(profiling_enabled(), "method parameters profiling should be on"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2006 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2007 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2008 |
public: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2009 |
ParametersTypeData(DataLayout* layout) : ArrayData(layout), _parameters(1, number_of_parameters()) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2010 |
assert(layout->tag() == DataLayout::parameters_type_data_tag, "wrong type"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2011 |
// Some compilers (VC++) don't want this passed in member initialization list |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2012 |
_parameters.set_profile_data(this); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2013 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2014 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2015 |
static int compute_cell_count(Method* m); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2016 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2017 |
virtual bool is_ParametersTypeData() const { return true; } |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2018 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2019 |
virtual void post_initialize(BytecodeStream* stream, MethodData* mdo); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2020 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2021 |
int number_of_parameters() const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2022 |
return array_len() / TypeStackSlotEntries::per_arg_count(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2023 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2024 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2025 |
const TypeStackSlotEntries* parameters() const { return &_parameters; } |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2026 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2027 |
uint stack_slot(int i) const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2028 |
return _parameters.stack_slot(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2029 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2030 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2031 |
void set_type(int i, Klass* k) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2032 |
intptr_t current = _parameters.type(i); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2033 |
_parameters.set_type(i, TypeEntries::with_status((intptr_t)k, current)); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2034 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2035 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2036 |
virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2037 |
_parameters.clean_weak_klass_links(is_alive_closure); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2038 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2039 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2040 |
virtual 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
|
2041 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2042 |
static ByteSize stack_slot_offset(int i) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2043 |
return cell_offset(stack_slot_local_offset(i)); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2044 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2045 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2046 |
static ByteSize type_offset(int i) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2047 |
return cell_offset(type_local_offset(i)); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2048 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2049 |
}; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2050 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2051 |
// SpeculativeTrapData |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2052 |
// |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2053 |
// A SpeculativeTrapData is used to record traps due to type |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2054 |
// speculation. It records the root of the compilation: that type |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2055 |
// speculation is wrong in the context of one compilation (for |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2056 |
// method1) doesn't mean it's wrong in the context of another one (for |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2057 |
// method2). Type speculation could have more/different data in the |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2058 |
// context of the compilation of method2 and it's worthwhile to try an |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2059 |
// optimization that failed for compilation of method1 in the context |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2060 |
// of compilation of method2. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2061 |
// Space for SpeculativeTrapData entries is allocated from the extra |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2062 |
// data space in the MDO. If we run out of space, the trap data for |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2063 |
// the ProfileData at that bci is updated. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2064 |
class SpeculativeTrapData : public ProfileData { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2065 |
protected: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2066 |
enum { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2067 |
speculative_trap_method, |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2068 |
speculative_trap_cell_count |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2069 |
}; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2070 |
public: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2071 |
SpeculativeTrapData(DataLayout* layout) : ProfileData(layout) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2072 |
assert(layout->tag() == DataLayout::speculative_trap_data_tag, "wrong type"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2073 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2074 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2075 |
virtual bool is_SpeculativeTrapData() const { return true; } |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2076 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2077 |
static int static_cell_count() { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2078 |
return speculative_trap_cell_count; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2079 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2080 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2081 |
virtual int cell_count() const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2082 |
return static_cell_count(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2083 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2084 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2085 |
// Direct accessor |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2086 |
Method* method() const { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2087 |
return (Method*)intptr_at(speculative_trap_method); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2088 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2089 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2090 |
void set_method(Method* m) { |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27643
diff
changeset
|
2091 |
assert(!m->is_old(), "cannot add old methods"); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2092 |
set_intptr_at(speculative_trap_method, (intptr_t)m); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2093 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2094 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2095 |
static ByteSize method_offset() { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24442
diff
changeset
|
2096 |
return cell_offset(speculative_trap_method); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2097 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2098 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2099 |
virtual void print_data_on(outputStream* st, const char* extra = NULL) const; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2100 |
}; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2101 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2102 |
// MethodData* |
1 | 2103 |
// |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2104 |
// A MethodData* holds information which has been collected about |
1 | 2105 |
// a method. Its layout looks like this: |
2106 |
// |
|
2107 |
// ----------------------------- |
|
2108 |
// | header | |
|
2109 |
// | klass | |
|
2110 |
// ----------------------------- |
|
2111 |
// | method | |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2112 |
// | size of the MethodData* | |
1 | 2113 |
// ----------------------------- |
2114 |
// | Data entries... | |
|
2115 |
// | (variable size) | |
|
2116 |
// | | |
|
2117 |
// . . |
|
2118 |
// . . |
|
2119 |
// . . |
|
2120 |
// | | |
|
2121 |
// ----------------------------- |
|
2122 |
// |
|
2123 |
// The data entry area is a heterogeneous array of DataLayouts. Each |
|
2124 |
// DataLayout in the array corresponds to a specific bytecode in the |
|
2125 |
// method. The entries in the array are sorted by the corresponding |
|
2126 |
// bytecode. Access to the data is via resource-allocated ProfileData, |
|
2127 |
// which point to the underlying blocks of DataLayout structures. |
|
2128 |
// |
|
2129 |
// During interpretation, if profiling in enabled, the interpreter |
|
2130 |
// maintains a method data pointer (mdp), which points at the entry |
|
2131 |
// in the array corresponding to the current bci. In the course of |
|
2132 |
// intepretation, when a bytecode is encountered that has profile data |
|
2133 |
// associated with it, the entry pointed to by mdp is updated, then the |
|
2134 |
// mdp is adjusted to point to the next appropriate DataLayout. If mdp |
|
2135 |
// is NULL to begin with, the interpreter assumes that the current method |
|
2136 |
// is not (yet) being profiled. |
|
2137 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2138 |
// In MethodData* parlance, "dp" is a "data pointer", the actual address |
1 | 2139 |
// of a DataLayout element. A "di" is a "data index", the offset in bytes |
2140 |
// from the base of the data entry array. A "displacement" is the byte offset |
|
2141 |
// in certain ProfileData objects that indicate the amount the mdp must be |
|
2142 |
// adjusted in the event of a change in control flow. |
|
2143 |
// |
|
2144 |
||
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
2145 |
CC_INTERP_ONLY(class BytecodeInterpreter;) |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
2146 |
class CleanExtraDataClosure; |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
2147 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2148 |
class MethodData : public Metadata { |
1 | 2149 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33638
diff
changeset
|
2150 |
friend class JVMCIVMStructs; |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
17370
diff
changeset
|
2151 |
CC_INTERP_ONLY(friend class BytecodeInterpreter;) |
1 | 2152 |
private: |
2153 |
friend class ProfileData; |
|
2154 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2155 |
// Back pointer to the Method* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2156 |
Method* _method; |
1 | 2157 |
|
2158 |
// Size of this oop in bytes |
|
2159 |
int _size; |
|
2160 |
||
2161 |
// Cached hint for bci_to_dp and bci_to_data |
|
2162 |
int _hint_di; |
|
2163 |
||
23201
6920163f479e
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents:
22916
diff
changeset
|
2164 |
Mutex _extra_data_lock; |
6920163f479e
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents:
22916
diff
changeset
|
2165 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2166 |
MethodData(const methodHandle& method, int size, TRAPS); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2167 |
public: |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2168 |
static MethodData* allocate(ClassLoaderData* loader_data, const methodHandle& method, TRAPS); |
23201
6920163f479e
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents:
22916
diff
changeset
|
2169 |
MethodData() : _extra_data_lock(Monitor::leaf, "MDO extra data lock") {}; // For ciMethodData |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2170 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2171 |
bool is_methodData() const volatile { return true; } |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2172 |
void initialize(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2173 |
|
1 | 2174 |
// Whole-method sticky bits and flags |
2175 |
enum { |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2176 |
_trap_hist_limit = 22 JVMCI_ONLY(+5), // decoupled from Deoptimization::Reason_LIMIT |
1 | 2177 |
_trap_hist_mask = max_jubyte, |
2178 |
_extra_data_count = 4 // extra DataLayout headers, for trap history |
|
2179 |
}; // Public flag values |
|
2180 |
private: |
|
2181 |
uint _nof_decompiles; // count of all nmethod removals |
|
2182 |
uint _nof_overflow_recompiles; // recompile count, excluding recomp. bits |
|
2183 |
uint _nof_overflow_traps; // trap count, excluding _trap_hist |
|
2184 |
union { |
|
2185 |
intptr_t _align; |
|
2186 |
u1 _array[_trap_hist_limit]; |
|
2187 |
} _trap_hist; |
|
2188 |
||
2189 |
// Support for interprocedural escape analysis, from Thomas Kotzmann. |
|
2190 |
intx _eflags; // flags on escape information |
|
2191 |
intx _arg_local; // bit set of non-escaping arguments |
|
2192 |
intx _arg_stack; // bit set of stack-allocatable arguments |
|
2193 |
intx _arg_returned; // bit set of returned arguments |
|
2194 |
||
6453 | 2195 |
int _creation_mileage; // method mileage at MDO creation |
2196 |
||
2197 |
// How many invocations has this MDO seen? |
|
2198 |
// These counters are used to determine the exact age of MDO. |
|
2199 |
// We need those because in tiered a method can be concurrently |
|
2200 |
// executed at different levels. |
|
2201 |
InvocationCounter _invocation_counter; |
|
2202 |
// Same for backedges. |
|
2203 |
InvocationCounter _backedge_counter; |
|
8322 | 2204 |
// Counter values at the time profiling started. |
2205 |
int _invocation_counter_start; |
|
2206 |
int _backedge_counter_start; |
|
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2207 |
uint _tenure_traps; |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2208 |
int _invoke_mask; // per-method Tier0InvokeNotifyFreqLog |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2209 |
int _backedge_mask; // per-method Tier0BackedgeNotifyFreqLog |
23491 | 2210 |
|
2211 |
#if INCLUDE_RTM_OPT |
|
2212 |
// State of RTM code generation during compilation of the method |
|
2213 |
int _rtm_state; |
|
2214 |
#endif |
|
2215 |
||
6453 | 2216 |
// Number of loops and blocks is computed when compiling the first |
2217 |
// time with C1. It is used to determine if method is trivial. |
|
2218 |
short _num_loops; |
|
2219 |
short _num_blocks; |
|
2220 |
// Does this method contain anything worth profiling? |
|
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26586
diff
changeset
|
2221 |
enum WouldProfile {unknown, no_profile, profile}; |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26586
diff
changeset
|
2222 |
WouldProfile _would_profile; |
1 | 2223 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2224 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2225 |
// Support for HotSpotMethodData.setCompiledIRSize(int) |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2226 |
int _jvmci_ir_size; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2227 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2228 |
|
1 | 2229 |
// Size of _data array in bytes. (Excludes header and extra_data fields.) |
2230 |
int _data_size; |
|
2231 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2232 |
// data index for the area dedicated to parameters. -1 if no |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2233 |
// parameter profiling. |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2234 |
enum { no_parameters = -2, parameters_uninitialized = -1 }; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2235 |
int _parameters_type_data_di; |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2236 |
int parameters_size_in_bytes() const { |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2237 |
ParametersTypeData* param = parameters_type_data(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2238 |
return param == NULL ? 0 : param->size_in_bytes(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2239 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2240 |
|
1 | 2241 |
// Beginning of the data entries |
2242 |
intptr_t _data[1]; |
|
2243 |
||
2244 |
// Helper for size computation |
|
2245 |
static int compute_data_size(BytecodeStream* stream); |
|
2246 |
static int bytecode_cell_count(Bytecodes::Code code); |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2247 |
static bool is_speculative_trap_bytecode(Bytecodes::Code code); |
1 | 2248 |
enum { no_profile_data = -1, variable_cell_count = -2 }; |
2249 |
||
2250 |
// Helper for initialization |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2251 |
DataLayout* data_layout_at(int data_index) const { |
1 | 2252 |
assert(data_index % sizeof(intptr_t) == 0, "unaligned"); |
2253 |
return (DataLayout*) (((address)_data) + data_index); |
|
2254 |
} |
|
2255 |
||
2256 |
// Initialize an individual data segment. Returns the size of |
|
2257 |
// the segment in bytes. |
|
2258 |
int initialize_data(BytecodeStream* stream, int data_index); |
|
2259 |
||
2260 |
// Helper for data_at |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2261 |
DataLayout* limit_data_position() const { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2262 |
return data_layout_at(_data_size); |
1 | 2263 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2264 |
bool out_of_bounds(int data_index) const { |
1 | 2265 |
return data_index >= data_size(); |
2266 |
} |
|
2267 |
||
2268 |
// Give each of the data entries a chance to perform specific |
|
2269 |
// data initialization. |
|
2270 |
void post_initialize(BytecodeStream* stream); |
|
2271 |
||
2272 |
// hint accessors |
|
2273 |
int hint_di() const { return _hint_di; } |
|
2274 |
void set_hint_di(int di) { |
|
2275 |
assert(!out_of_bounds(di), "hint_di out of bounds"); |
|
2276 |
_hint_di = di; |
|
2277 |
} |
|
2278 |
ProfileData* data_before(int bci) { |
|
2279 |
// avoid SEGV on this edge case |
|
2280 |
if (data_size() == 0) |
|
2281 |
return NULL; |
|
2282 |
int hint = hint_di(); |
|
2283 |
if (data_layout_at(hint)->bci() <= bci) |
|
2284 |
return data_at(hint); |
|
2285 |
return first_data(); |
|
2286 |
} |
|
2287 |
||
2288 |
// What is the index of the first data entry? |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2289 |
int first_di() const { return 0; } |
1 | 2290 |
|
23201
6920163f479e
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents:
22916
diff
changeset
|
2291 |
ProfileData* bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp, bool concurrent); |
1 | 2292 |
// Find or create an extra ProfileData: |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2293 |
ProfileData* bci_to_extra_data(int bci, Method* m, bool create_if_missing); |
1 | 2294 |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2295 |
// return the argument info cell |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2296 |
ArgInfoData *arg_info(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2297 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2298 |
enum { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2299 |
no_type_profile = 0, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2300 |
type_profile_jsr292 = 1, |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2301 |
type_profile_all = 2 |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2302 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2303 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2304 |
static bool profile_jsr292(const methodHandle& m, int bci); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2305 |
static int profile_arguments_flag(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2306 |
static bool profile_all_arguments(); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2307 |
static bool profile_arguments_for_invoke(const methodHandle& m, int bci); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
2308 |
static int profile_return_flag(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
2309 |
static bool profile_all_return(); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2310 |
static bool profile_return_for_invoke(const methodHandle& m, int bci); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2311 |
static int profile_parameters_flag(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2312 |
static bool profile_parameters_jsr292_only(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2313 |
static bool profile_all_parameters(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2314 |
|
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
2315 |
void clean_extra_data(CleanExtraDataClosure* cl); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2316 |
void clean_extra_data_helper(DataLayout* dp, int shift, bool reset = false); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
2317 |
void verify_extra_data_clean(CleanExtraDataClosure* cl); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2318 |
|
1 | 2319 |
public: |
2320 |
static int header_size() { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2321 |
return sizeof(MethodData)/wordSize; |
1 | 2322 |
} |
2323 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2324 |
// Compute the size of a MethodData* before it is created. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2325 |
static int compute_allocation_size_in_bytes(const methodHandle& method); |
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2326 |
static int compute_allocation_size_in_words(const methodHandle& method); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2327 |
static int compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps); |
1 | 2328 |
|
2329 |
// Determine if a given bytecode can have profile information. |
|
2330 |
static bool bytecode_has_profile(Bytecodes::Code code) { |
|
2331 |
return bytecode_cell_count(code) != no_profile_data; |
|
2332 |
} |
|
2333 |
||
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
15481
diff
changeset
|
2334 |
// reset into original state |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
15481
diff
changeset
|
2335 |
void init(); |
1 | 2336 |
|
2337 |
// My size |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2338 |
int size_in_bytes() const { return _size; } |
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35123
diff
changeset
|
2339 |
int size() const { return align_metadata_size(align_size_up(_size, BytesPerWord)/BytesPerWord); } |
15437 | 2340 |
#if INCLUDE_SERVICES |
2341 |
void collect_statistics(KlassSizeStats *sz) const; |
|
2342 |
#endif |
|
1 | 2343 |
|
2344 |
int creation_mileage() const { return _creation_mileage; } |
|
2345 |
void set_creation_mileage(int x) { _creation_mileage = x; } |
|
6453 | 2346 |
|
2347 |
int invocation_count() { |
|
2348 |
if (invocation_counter()->carry()) { |
|
2349 |
return InvocationCounter::count_limit; |
|
2350 |
} |
|
2351 |
return invocation_counter()->count(); |
|
2352 |
} |
|
2353 |
int backedge_count() { |
|
2354 |
if (backedge_counter()->carry()) { |
|
2355 |
return InvocationCounter::count_limit; |
|
2356 |
} |
|
2357 |
return backedge_counter()->count(); |
|
2358 |
} |
|
2359 |
||
8322 | 2360 |
int invocation_count_start() { |
2361 |
if (invocation_counter()->carry()) { |
|
2362 |
return 0; |
|
2363 |
} |
|
2364 |
return _invocation_counter_start; |
|
2365 |
} |
|
2366 |
||
2367 |
int backedge_count_start() { |
|
2368 |
if (backedge_counter()->carry()) { |
|
2369 |
return 0; |
|
2370 |
} |
|
2371 |
return _backedge_counter_start; |
|
2372 |
} |
|
2373 |
||
2374 |
int invocation_count_delta() { return invocation_count() - invocation_count_start(); } |
|
2375 |
int backedge_count_delta() { return backedge_count() - backedge_count_start(); } |
|
2376 |
||
2377 |
void reset_start_counters() { |
|
2378 |
_invocation_counter_start = invocation_count(); |
|
2379 |
_backedge_counter_start = backedge_count(); |
|
2380 |
} |
|
2381 |
||
6453 | 2382 |
InvocationCounter* invocation_counter() { return &_invocation_counter; } |
2383 |
InvocationCounter* backedge_counter() { return &_backedge_counter; } |
|
2384 |
||
23491 | 2385 |
#if INCLUDE_RTM_OPT |
2386 |
int rtm_state() const { |
|
2387 |
return _rtm_state; |
|
2388 |
} |
|
2389 |
void set_rtm_state(RTMState rstate) { |
|
2390 |
_rtm_state = (int)rstate; |
|
2391 |
} |
|
2392 |
void atomic_set_rtm_state(RTMState rstate) { |
|
2393 |
Atomic::store((int)rstate, &_rtm_state); |
|
2394 |
} |
|
2395 |
||
2396 |
static int rtm_state_offset_in_bytes() { |
|
2397 |
return offset_of(MethodData, _rtm_state); |
|
2398 |
} |
|
2399 |
#endif |
|
2400 |
||
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26586
diff
changeset
|
2401 |
void set_would_profile(bool p) { _would_profile = p ? profile : no_profile; } |
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26586
diff
changeset
|
2402 |
bool would_profile() const { return _would_profile != no_profile; } |
6453 | 2403 |
|
2404 |
int num_loops() const { return _num_loops; } |
|
2405 |
void set_num_loops(int n) { _num_loops = n; } |
|
2406 |
int num_blocks() const { return _num_blocks; } |
|
2407 |
void set_num_blocks(int n) { _num_blocks = n; } |
|
2408 |
||
1 | 2409 |
bool is_mature() const; // consult mileage and ProfileMaturityPercentage |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2410 |
static int mileage_of(Method* m); |
1 | 2411 |
|
2412 |
// Support for interprocedural escape analysis, from Thomas Kotzmann. |
|
2413 |
enum EscapeFlag { |
|
2414 |
estimated = 1 << 0, |
|
251
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
2415 |
return_local = 1 << 1, |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
2416 |
return_allocated = 1 << 2, |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
2417 |
allocated_escapes = 1 << 3, |
cb2e73f71205
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents:
218
diff
changeset
|
2418 |
unknown_modified = 1 << 4 |
1 | 2419 |
}; |
2420 |
||
2421 |
intx eflags() { return _eflags; } |
|
2422 |
intx arg_local() { return _arg_local; } |
|
2423 |
intx arg_stack() { return _arg_stack; } |
|
2424 |
intx arg_returned() { return _arg_returned; } |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2425 |
uint arg_modified(int a) { ArgInfoData *aid = arg_info(); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
15481
diff
changeset
|
2426 |
assert(aid != NULL, "arg_info must be not null"); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2427 |
assert(a >= 0 && a < aid->number_of_args(), "valid argument number"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2428 |
return aid->arg_modified(a); } |
1 | 2429 |
|
2430 |
void set_eflags(intx v) { _eflags = v; } |
|
2431 |
void set_arg_local(intx v) { _arg_local = v; } |
|
2432 |
void set_arg_stack(intx v) { _arg_stack = v; } |
|
2433 |
void set_arg_returned(intx v) { _arg_returned = v; } |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2434 |
void set_arg_modified(int a, uint v) { ArgInfoData *aid = arg_info(); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
15481
diff
changeset
|
2435 |
assert(aid != NULL, "arg_info must be not null"); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2436 |
assert(a >= 0 && a < aid->number_of_args(), "valid argument number"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
2437 |
aid->set_arg_modified(a, v); } |
1 | 2438 |
|
2439 |
void clear_escape_info() { _eflags = _arg_local = _arg_stack = _arg_returned = 0; } |
|
2440 |
||
2441 |
// Location and size of data area |
|
2442 |
address data_base() const { |
|
2443 |
return (address) _data; |
|
2444 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2445 |
int data_size() const { |
1 | 2446 |
return _data_size; |
2447 |
} |
|
2448 |
||
2449 |
// Accessors |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2450 |
Method* method() const { return _method; } |
1 | 2451 |
|
2452 |
// Get the data at an arbitrary (sort of) data index. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2453 |
ProfileData* data_at(int data_index) const; |
1 | 2454 |
|
2455 |
// Walk through the data in order. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2456 |
ProfileData* first_data() const { return data_at(first_di()); } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2457 |
ProfileData* next_data(ProfileData* current) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2458 |
bool is_valid(ProfileData* current) const { return current != NULL; } |
1 | 2459 |
|
2460 |
// Convert a dp (data pointer) to a di (data index). |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2461 |
int dp_to_di(address dp) const { |
1 | 2462 |
return dp - ((address)_data); |
2463 |
} |
|
2464 |
||
2465 |
// bci to di/dp conversion. |
|
2466 |
address bci_to_dp(int bci); |
|
2467 |
int bci_to_di(int bci) { |
|
2468 |
return dp_to_di(bci_to_dp(bci)); |
|
2469 |
} |
|
2470 |
||
2471 |
// Get the data at an arbitrary bci, or NULL if there is none. |
|
2472 |
ProfileData* bci_to_data(int bci); |
|
2473 |
||
2474 |
// Same, but try to create an extra_data record if one is needed: |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2475 |
ProfileData* allocate_bci_to_data(int bci, Method* m) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2476 |
ProfileData* data = NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2477 |
// If m not NULL, try to allocate a SpeculativeTrapData entry |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2478 |
if (m == NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2479 |
data = bci_to_data(bci); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2480 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2481 |
if (data != NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2482 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2483 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2484 |
data = bci_to_extra_data(bci, m, true); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2485 |
if (data != NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2486 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2487 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2488 |
// If SpeculativeTrapData allocation fails try to allocate a |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2489 |
// regular entry |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2490 |
data = bci_to_data(bci); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2491 |
if (data != NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2492 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2493 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2494 |
return bci_to_extra_data(bci, NULL, true); |
1 | 2495 |
} |
2496 |
||
2497 |
// Add a handful of extra data records, for trap tracking. |
|
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2498 |
DataLayout* extra_data_base() const { return limit_data_position(); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2499 |
DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); } |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2500 |
DataLayout* args_data_limit() const { return (DataLayout*)((address)this + size_in_bytes() - |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2501 |
parameters_size_in_bytes()); } |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2502 |
int extra_data_size() const { return (address)extra_data_limit() - (address)extra_data_base(); } |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2503 |
static DataLayout* next_extra(DataLayout* dp); |
1 | 2504 |
|
2505 |
// Return (uint)-1 for overflow. |
|
2506 |
uint trap_count(int reason) const { |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2507 |
assert((uint)reason < JVMCI_ONLY(2*) _trap_hist_limit, "oob"); |
1 | 2508 |
return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1; |
2509 |
} |
|
2510 |
// For loops: |
|
2511 |
static uint trap_reason_limit() { return _trap_hist_limit; } |
|
2512 |
static uint trap_count_limit() { return _trap_hist_mask; } |
|
2513 |
uint inc_trap_count(int reason) { |
|
2514 |
// Count another trap, anywhere in this method. |
|
2515 |
assert(reason >= 0, "must be single trap"); |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2516 |
assert((uint)reason < JVMCI_ONLY(2*) _trap_hist_limit, "oob"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2517 |
uint cnt1 = 1 + _trap_hist._array[reason]; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2518 |
if ((cnt1 & _trap_hist_mask) != 0) { // if no counter overflow... |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2519 |
_trap_hist._array[reason] = cnt1; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2520 |
return cnt1; |
1 | 2521 |
} else { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2522 |
return _trap_hist_mask + (++_nof_overflow_traps); |
1 | 2523 |
} |
2524 |
} |
|
2525 |
||
2526 |
uint overflow_trap_count() const { |
|
2527 |
return _nof_overflow_traps; |
|
2528 |
} |
|
2529 |
uint overflow_recompile_count() const { |
|
2530 |
return _nof_overflow_recompiles; |
|
2531 |
} |
|
2532 |
void inc_overflow_recompile_count() { |
|
2533 |
_nof_overflow_recompiles += 1; |
|
2534 |
} |
|
2535 |
uint decompile_count() const { |
|
2536 |
return _nof_decompiles; |
|
2537 |
} |
|
2538 |
void inc_decompile_count() { |
|
2539 |
_nof_decompiles += 1; |
|
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
3795
diff
changeset
|
2540 |
if (decompile_count() > (uint)PerMethodRecompilationCutoff) { |
15479 | 2541 |
method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff"); |
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
3795
diff
changeset
|
2542 |
} |
1 | 2543 |
} |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2544 |
uint tenure_traps() const { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2545 |
return _tenure_traps; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2546 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2547 |
void inc_tenure_traps() { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2548 |
_tenure_traps += 1; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24088
diff
changeset
|
2549 |
} |
1 | 2550 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2551 |
// Return pointer to area dedicated to parameters in MDO |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2552 |
ParametersTypeData* parameters_type_data() const { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2553 |
assert(_parameters_type_data_di != parameters_uninitialized, "called too early"); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2554 |
return _parameters_type_data_di != no_parameters ? data_layout_at(_parameters_type_data_di)->data_in()->as_ParametersTypeData() : NULL; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2555 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2556 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2557 |
int parameters_type_data_di() const { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2558 |
assert(_parameters_type_data_di != parameters_uninitialized && _parameters_type_data_di != no_parameters, "no args type data"); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2559 |
return _parameters_type_data_di; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2560 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2561 |
|
1 | 2562 |
// Support for code generation |
2563 |
static ByteSize data_offset() { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2564 |
return byte_offset_of(MethodData, _data[0]); |
1 | 2565 |
} |
2566 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2567 |
static ByteSize trap_history_offset() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2568 |
return byte_offset_of(MethodData, _trap_hist._array); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2569 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
2570 |
|
6453 | 2571 |
static ByteSize invocation_counter_offset() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2572 |
return byte_offset_of(MethodData, _invocation_counter); |
6453 | 2573 |
} |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2574 |
|
6453 | 2575 |
static ByteSize backedge_counter_offset() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2576 |
return byte_offset_of(MethodData, _backedge_counter); |
6453 | 2577 |
} |
2578 |
||
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2579 |
static ByteSize invoke_mask_offset() { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2580 |
return byte_offset_of(MethodData, _invoke_mask); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2581 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2582 |
|
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2583 |
static ByteSize backedge_mask_offset() { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2584 |
return byte_offset_of(MethodData, _backedge_mask); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2585 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
2586 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2587 |
static ByteSize parameters_type_data_di_offset() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2588 |
return byte_offset_of(MethodData, _parameters_type_data_di); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2589 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2590 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2591 |
// Deallocation support - no pointer fields to deallocate |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2592 |
void deallocate_contents(ClassLoaderData* loader_data) {} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2593 |
|
1 | 2594 |
// GC support |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2595 |
void set_size(int object_size_in_bytes) { _size = object_size_in_bytes; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2596 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2597 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2598 |
void print_on (outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2599 |
void print_value_on(outputStream* st) const; |
1 | 2600 |
|
2601 |
// printing support for method data |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2602 |
void print_data_on(outputStream* st) const; |
1 | 2603 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2604 |
const char* internal_name() const { return "{method data}"; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2605 |
|
1 | 2606 |
// verification |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10514
diff
changeset
|
2607 |
void verify_on(outputStream* st); |
1 | 2608 |
void verify_data_on(outputStream* st); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2609 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
2610 |
static bool profile_parameters_for_method(const methodHandle& m); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20282
diff
changeset
|
2611 |
static bool profile_arguments(); |
24088
adf36ca51f17
8039975: SIGSEGV in MethodData::next_data(ProfileData*)
roland
parents:
23845
diff
changeset
|
2612 |
static bool profile_arguments_jsr292_only(); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
2613 |
static bool profile_return(); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
2614 |
static bool profile_parameters(); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
2615 |
static bool profile_return_jsr292_only(); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2616 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
2617 |
void clean_method_data(BoolObjectClosure* is_alive); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
2618 |
void clean_weak_method_links(); |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27643
diff
changeset
|
2619 |
DEBUG_ONLY(void verify_clean_weak_method_links();) |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25714
diff
changeset
|
2620 |
Mutex* extra_data_lock() { return &_extra_data_lock; } |
1 | 2621 |
}; |
7397 | 2622 |
|
2623 |
#endif // SHARE_VM_OOPS_METHODDATAOOP_HPP |