annotate src/share/vm/oops/methodData.hpp @ 14420:abe03600372a

8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling Summary: Implement profiling for c2 jit compilation. Also enable new cppInterpreter features. Reviewed-by: kvn
author goetz
date Sun, 15 Sep 2013 15:28:58 +0200
parents 92ef81e2f571
children 2b8e28fdf503
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1251
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1251
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1251
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #ifndef SHARE_VM_OOPS_METHODDATAOOP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #define SHARE_VM_OOPS_METHODDATAOOP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "interpreter/bytecodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "memory/universe.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
30 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "oops/oop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
32 #include "runtime/orderAccess.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class BytecodeStream;
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
35 class KlassSizeStats;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // The MethodData object collects counts and other profile information
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // during zeroth-tier (interpretive) and first-tier execution.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // The profile is used later by compilation heuristics. Some heuristics
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // enable use of aggressive (or "heroic") optimizations. An aggressive
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // optimization often has a down-side, a corner case that it handles
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // poorly, but which is thought to be rare. The profile provides
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // evidence of this rarity for a given method or even BCI. It allows
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // the compiler to back out of the optimization at places where it
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // has historically been a poor choice. Other heuristics try to use
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // specific information gathered about types observed at a given site.
a61af66fc99e Initial load
duke
parents:
diff changeset
47 //
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // All data in the profile is approximate. It is expected to be accurate
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // on the whole, but the system expects occasional inaccuraces, due to
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // counter overflow, multiprocessor races during data collection, space
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // limitations, missing MDO blocks, etc. Bad or missing data will degrade
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // optimization quality but will not affect correctness. Also, each MDO
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // is marked with its birth-date ("creation_mileage") which can be used
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // to assess the quality ("maturity") of its data.
a61af66fc99e Initial load
duke
parents:
diff changeset
55 //
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Short (<32-bit) counters are designed to overflow to a known "saturated"
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // state. Also, certain recorded per-BCI events are given one-bit counters
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // which overflow to a saturated state which applied to all counters at
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // that BCI. In other words, there is a small lattice which approximates
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // the ideal of an infinite-precision counter for each event at each BCI,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // and the lattice quickly "bottoms out" in a state where all counters
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // are taken to be indefinitely large.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 //
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // The reader will find many data races in profile gathering code, starting
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // with invocation counter incrementation. None of these races harm correct
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // execution of the compiled code.
a61af66fc99e Initial load
duke
parents:
diff changeset
67
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
68 // forward decl
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
69 class ProfileData;
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
70
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // DataLayout
a61af66fc99e Initial load
duke
parents:
diff changeset
72 //
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Overlay for generic profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 class DataLayout VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Every data layout begins with a header. This header
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // contains a tag, which is used to indicate the size/layout
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // of the data, 4 bits of flags, which can be used in any way,
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // 4 bits of trap history (none/one reason/many reasons),
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // and a bci, which is used to tie this piece of data to a
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // specific bci in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 union {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 intptr_t _bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 u1 _tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 u1 _flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 u2 _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 } _struct;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // The data layout has an arbitrary number of cells, each sized
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // to accomodate a pointer or an integer.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 intptr_t _cells[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Some types of data layouts need a length field.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static bool needs_array_len(u1 tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 counter_increment = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
101 };
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 cell_size = sizeof(intptr_t)
a61af66fc99e Initial load
duke
parents:
diff changeset
105 };
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Tag values
a61af66fc99e Initial load
duke
parents:
diff changeset
108 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 no_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 bit_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 counter_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 jump_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 receiver_type_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 virtual_call_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ret_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
116 branch_data_tag,
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
117 multi_branch_data_tag,
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
118 arg_info_data_tag
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 };
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // The _struct._flags word is formatted as [trap_state:4 | flags:4].
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // The trap state breaks down further as [recompile:1 | reason:3].
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // This further breakdown is defined in deoptimization.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // See Deoptimization::trap_state_reason for an assert that
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
a61af66fc99e Initial load
duke
parents:
diff changeset
127 //
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // The trap_state is collected only if ProfileTraps is true.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 trap_bits = 1+3, // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
a61af66fc99e Initial load
duke
parents:
diff changeset
130 trap_shift = BitsPerByte - trap_bits,
a61af66fc99e Initial load
duke
parents:
diff changeset
131 trap_mask = right_n_bits(trap_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
132 trap_mask_in_place = (trap_mask << trap_shift),
a61af66fc99e Initial load
duke
parents:
diff changeset
133 flag_limit = trap_shift,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 flag_mask = right_n_bits(flag_limit),
a61af66fc99e Initial load
duke
parents:
diff changeset
135 first_flag = 0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 };
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Size computation
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static int header_size_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static int header_size_in_cells() {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 static int compute_size_in_bytes(int cell_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return header_size_in_bytes() + cell_count * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void initialize(u1 tag, u2 bci, int cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
154 u1 tag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 return _header._struct._tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // Return a few bits of trap state. Range is [0..trap_mask].
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // The state tells if traps with zero, one, or many reasons have occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // It also tells whether zero or many recompilations have occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // The associated trap histogram in the MDO itself tells whether
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // traps are common or not. If a BCI shows that a trap X has
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // occurred, and the MDO shows N occurrences of X, we make the
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // simplifying assumption that all N occurrences can be blamed
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // on that BCI.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 int trap_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 return ((_header._struct._flags >> trap_shift) & trap_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void set_trap_state(int new_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 assert(ProfileTraps, "used only under +ProfileTraps");
a61af66fc99e Initial load
duke
parents:
diff changeset
172 uint old_flags = (_header._struct._flags & flag_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 _header._struct._flags = (new_state << trap_shift) | old_flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 u1 flags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return _header._struct._flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 u2 bci() {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 return _header._struct._bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void set_header(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _header._bits = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 void release_set_header(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 OrderAccess::release_store_ptr(&_header._bits, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 intptr_t header() {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return _header._bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void set_cell_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _cells[index] = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void release_set_cell_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 OrderAccess::release_store_ptr(&_cells[index], value);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 intptr_t cell_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 return _cells[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void set_flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 assert(flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _header._struct._flags |= (0x1 << flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 bool flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 assert(flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
209 return (_header._struct._flags & (0x1 << flag_number)) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Low-level support for code generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
213 static ByteSize header_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 return byte_offset_of(DataLayout, _header);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 static ByteSize tag_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 return byte_offset_of(DataLayout, _header._struct._tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 static ByteSize flags_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 return byte_offset_of(DataLayout, _header._struct._flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 static ByteSize bci_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return byte_offset_of(DataLayout, _header._struct._bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 static ByteSize cell_offset(int index) {
2333
f767174aac14 7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents: 2264
diff changeset
226 return byte_offset_of(DataLayout, _cells) + in_ByteSize(index * cell_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
228 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
229 static int cell_offset_in_bytes(int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
230 return (int)offset_of(DataLayout, _cells[index]);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
231 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
232 #endif // CC_INTERP
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // Return a value which, when or-ed as a byte into _flags, sets the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 static int flag_number_to_byte_constant(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 assert(0 <= flag_number && flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
236 DataLayout temp; temp.set_header(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 temp.set_flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 return temp._header._struct._flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // Return a value which, when or-ed as a word into _header, sets the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
241 static intptr_t flag_mask_to_header_mask(int byte_constant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 DataLayout temp; temp.set_header(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 temp._header._struct._flags = byte_constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 return temp._header._bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
246
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
247 ProfileData* data_in();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
248
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
249 // GC support
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
250 void clean_weak_klass_links(BoolObjectClosure* cl);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
251 };
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // ProfileData class hierarchy
a61af66fc99e Initial load
duke
parents:
diff changeset
255 class ProfileData;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 class BitData;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 class CounterData;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 class ReceiverTypeData;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 class VirtualCallData;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 class RetData;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 class JumpData;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 class BranchData;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 class ArrayData;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 class MultiBranchData;
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
265 class ArgInfoData;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
269 //
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // A ProfileData object is created to refer to a section of profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // data in a structured way.
a61af66fc99e Initial load
duke
parents:
diff changeset
272 class ProfileData : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
274 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
275 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 tab_width_one = 16,
a61af66fc99e Initial load
duke
parents:
diff changeset
277 tab_width_two = 36
a61af66fc99e Initial load
duke
parents:
diff changeset
278 };
a61af66fc99e Initial load
duke
parents:
diff changeset
279 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // This is a pointer to a section of profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 DataLayout* _data;
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
285 DataLayout* data() { return _data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 cell_size = DataLayout::cell_size
a61af66fc99e Initial load
duke
parents:
diff changeset
289 };
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // How many cells are in this?
a61af66fc99e Initial load
duke
parents:
diff changeset
293 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
295 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // Return the size of this data.
a61af66fc99e Initial load
duke
parents:
diff changeset
299 int size_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 return DataLayout::compute_size_in_bytes(cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // Low-level accessors for underlying data
a61af66fc99e Initial load
duke
parents:
diff changeset
305 void set_intptr_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
307 data()->set_cell_at(index, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 void release_set_intptr_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
311 data()->release_set_cell_at(index, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 intptr_t intptr_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
315 return data()->cell_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 void set_uint_at(int index, uint value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320 void release_set_uint_at(int index, uint value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 release_set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323 uint uint_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 return (uint)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 void release_set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
330 release_set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 int int_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 return (int)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 int int_at_unchecked(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 return (int)data()->cell_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338 void set_oop_at(int index, oop value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
341 oop oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
342 return (oop)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 void set_flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 data()->set_flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348 bool flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 return data()->flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // two convenient imports for use by subclasses:
a61af66fc99e Initial load
duke
parents:
diff changeset
353 static ByteSize cell_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 return DataLayout::cell_offset(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356 static int flag_number_to_byte_constant(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 return DataLayout::flag_number_to_byte_constant(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 ProfileData(DataLayout* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 _data = data;
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
364 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
365 // Static low level accessors for DataLayout with ProfileData's semantics.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
366
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
367 static int cell_offset_in_bytes(int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
368 return DataLayout::cell_offset_in_bytes(index);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
369 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
370
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
371 static void increment_uint_at_no_overflow(DataLayout* layout, int index,
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
372 int inc = DataLayout::counter_increment) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
373 uint count = ((uint)layout->cell_at(index)) + inc;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
374 if (count == 0) return;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
375 layout->set_cell_at(index, (intptr_t) count);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
376 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
377
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
378 static int int_at(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
379 return (int)layout->cell_at(index);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
380 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
381
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
382 static int uint_at(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
383 return (uint)layout->cell_at(index);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
384 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
385
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
386 static oop oop_at(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
387 return (oop)layout->cell_at(index);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
388 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
389
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
390 static void set_intptr_at(DataLayout* layout, int index, intptr_t value) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
391 layout->set_cell_at(index, (intptr_t) value);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
392 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
393
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
394 static void set_flag_at(DataLayout* layout, int flag_number) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
395 layout->set_flag_at(flag_number);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
396 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
397 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
398
0
a61af66fc99e Initial load
duke
parents:
diff changeset
399 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // Constructor for invalid ProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
401 ProfileData();
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 u2 bci() {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 return data()->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 address dp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 return (address)_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411 int trap_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 return data()->trap_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 void set_trap_state(int new_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 data()->set_trap_state(new_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // Type checking
a61af66fc99e Initial load
duke
parents:
diff changeset
419 virtual bool is_BitData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
420 virtual bool is_CounterData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
421 virtual bool is_JumpData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
422 virtual bool is_ReceiverTypeData(){ return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
423 virtual bool is_VirtualCallData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 virtual bool is_RetData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
425 virtual bool is_BranchData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
426 virtual bool is_ArrayData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
427 virtual bool is_MultiBranchData() { return false; }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
428 virtual bool is_ArgInfoData() { return false; }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
429
0
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431 BitData* as_BitData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 assert(is_BitData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
433 return is_BitData() ? (BitData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435 CounterData* as_CounterData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 assert(is_CounterData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
437 return is_CounterData() ? (CounterData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 JumpData* as_JumpData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 assert(is_JumpData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
441 return is_JumpData() ? (JumpData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 ReceiverTypeData* as_ReceiverTypeData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 assert(is_ReceiverTypeData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
445 return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 VirtualCallData* as_VirtualCallData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 assert(is_VirtualCallData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
449 return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451 RetData* as_RetData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
452 assert(is_RetData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
453 return is_RetData() ? (RetData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 BranchData* as_BranchData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 assert(is_BranchData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
457 return is_BranchData() ? (BranchData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459 ArrayData* as_ArrayData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
460 assert(is_ArrayData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
461 return is_ArrayData() ? (ArrayData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 MultiBranchData* as_MultiBranchData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 assert(is_MultiBranchData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
465 return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
467 ArgInfoData* as_ArgInfoData() {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
468 assert(is_ArgInfoData(), "wrong type");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
469 return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
470 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // Subclass specific initialization
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
474 virtual void post_initialize(BytecodeStream* stream, MethodData* mdo) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // GC support
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
477 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
478
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // CI translation: ProfileData can represent both MethodDataOop data
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // as well as CIMethodData data. This function is provided for translating
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // an oop in a ProfileData to the ci equivalent. Generally speaking,
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // most ProfileData don't require any translation, so we provide the null
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // translation here, and the required translators are in the ci subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
484 virtual void translate_from(ProfileData* data) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 virtual void print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
491 void print_shared(outputStream* st, const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void tab(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
494 };
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // BitData
a61af66fc99e Initial load
duke
parents:
diff changeset
497 //
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // A BitData holds a flag or two in its header.
a61af66fc99e Initial load
duke
parents:
diff changeset
499 class BitData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
501 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // null_seen:
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // saw a null operand (cast/aastore/instanceof)
a61af66fc99e Initial load
duke
parents:
diff changeset
504 null_seen_flag = DataLayout::first_flag + 0
a61af66fc99e Initial load
duke
parents:
diff changeset
505 };
a61af66fc99e Initial load
duke
parents:
diff changeset
506 enum { bit_cell_count = 0 }; // no additional data fields needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
507 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
508 BitData(DataLayout* layout) : ProfileData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 virtual bool is_BitData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
514 return bit_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // Accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // The null_seen flag bit is specially known to the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Consulting it allows the compiler to avoid setting up null_check traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
525 bool null_seen() { return flag_at(null_seen_flag); }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 void set_null_seen() { set_flag_at(null_seen_flag); }
a61af66fc99e Initial load
duke
parents:
diff changeset
527
a61af66fc99e Initial load
duke
parents:
diff changeset
528
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
530 static int null_seen_byte_constant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
531 return flag_number_to_byte_constant(null_seen_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 static ByteSize bit_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 return cell_offset(bit_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
536 }
a61af66fc99e Initial load
duke
parents:
diff changeset
537
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
538 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
539 static int bit_data_size_in_bytes() {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
540 return cell_offset_in_bytes(bit_cell_count);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
541 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
542
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
543 static void set_null_seen(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
544 set_flag_at(layout, null_seen_flag);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
545 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
546
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
547 static DataLayout* advance(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
548 return (DataLayout*) (((address)layout) + (ssize_t)BitData::bit_data_size_in_bytes());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
549 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
550 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
551
0
a61af66fc99e Initial load
duke
parents:
diff changeset
552 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
553 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
554 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
555 };
a61af66fc99e Initial load
duke
parents:
diff changeset
556
a61af66fc99e Initial load
duke
parents:
diff changeset
557 // CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
558 //
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // A CounterData corresponds to a simple counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
560 class CounterData : public BitData {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
562 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 count_off,
a61af66fc99e Initial load
duke
parents:
diff changeset
564 counter_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
565 };
a61af66fc99e Initial load
duke
parents:
diff changeset
566 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
567 CounterData(DataLayout* layout) : BitData(layout) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 virtual bool is_CounterData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 return counter_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
573 }
a61af66fc99e Initial load
duke
parents:
diff changeset
574
a61af66fc99e Initial load
duke
parents:
diff changeset
575 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // Direct accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
580 uint count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 return uint_at(count_off);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
585 static ByteSize count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
586 return cell_offset(count_off);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 static ByteSize counter_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 return cell_offset(counter_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
1251
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
592 void set_count(uint count) {
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
593 set_uint_at(count_off, count);
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
594 }
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
595
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
596 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
597 static int counter_data_size_in_bytes() {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
598 return cell_offset_in_bytes(counter_cell_count);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
599 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
600
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
601 static void increment_count_no_overflow(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
602 increment_uint_at_no_overflow(layout, count_off);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
603 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
604
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
605 // Support counter decrementation at checkcast / subtype check failed.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
606 static void decrement_count(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
607 increment_uint_at_no_overflow(layout, count_off, -1);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
608 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
609
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
610 static DataLayout* advance(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
611 return (DataLayout*) (((address)layout) + (ssize_t)CounterData::counter_data_size_in_bytes());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
612 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
613 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
614
0
a61af66fc99e Initial load
duke
parents:
diff changeset
615 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
616 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
618 };
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // JumpData
a61af66fc99e Initial load
duke
parents:
diff changeset
621 //
a61af66fc99e Initial load
duke
parents:
diff changeset
622 // A JumpData is used to access profiling information for a direct
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // branch. It is a counter, used for counting the number of branches,
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // plus a data displacement, used for realigning the data pointer to
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // the corresponding target bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
626 class JumpData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
628 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 taken_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
630 displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
631 jump_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
632 };
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 void set_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
635 set_int_at(displacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
636 }
a61af66fc99e Initial load
duke
parents:
diff changeset
637
a61af66fc99e Initial load
duke
parents:
diff changeset
638 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
639 JumpData(DataLayout* layout) : ProfileData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
640 assert(layout->tag() == DataLayout::jump_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
641 layout->tag() == DataLayout::branch_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 virtual bool is_JumpData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
647 return jump_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
651 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // Direct accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
655 uint taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
656 return uint_at(taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
657 }
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
658
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
659 void set_taken(uint cnt) {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
660 set_uint_at(taken_off_set, cnt);
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
661 }
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
662
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 // Saturating counter
a61af66fc99e Initial load
duke
parents:
diff changeset
664 uint inc_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 uint cnt = taken() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Did we wrap? Will compiler screw us??
a61af66fc99e Initial load
duke
parents:
diff changeset
667 if (cnt == 0) cnt--;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 set_uint_at(taken_off_set, cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
671
a61af66fc99e Initial load
duke
parents:
diff changeset
672 int displacement() {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 return int_at(displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
677 static ByteSize taken_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
678 return cell_offset(taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680
a61af66fc99e Initial load
duke
parents:
diff changeset
681 static ByteSize displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 return cell_offset(displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
685 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
686 static void increment_taken_count_no_overflow(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
687 increment_uint_at_no_overflow(layout, taken_off_set);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
688 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
689
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
690 static DataLayout* advance_taken(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
691 return (DataLayout*) (((address)layout) + (ssize_t)int_at(layout, displacement_off_set));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
692 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
693
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
694 static uint taken_count(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
695 return (uint) uint_at(layout, taken_off_set);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
696 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
697 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
698
0
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // Specific initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
700 void post_initialize(BytecodeStream* stream, MethodData* mdo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
703 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
704 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
705 };
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // ReceiverTypeData
a61af66fc99e Initial load
duke
parents:
diff changeset
708 //
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // A ReceiverTypeData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // dynamic type check. It consists of a counter which counts the total times
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
711 // that the check is reached, and a series of (Klass*, count) pairs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // which are used to store a type profile for the receiver of the check.
a61af66fc99e Initial load
duke
parents:
diff changeset
713 class ReceiverTypeData : public CounterData {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
715 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 receiver0_offset = counter_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
717 count0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
718 receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
719 };
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
722 ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 assert(layout->tag() == DataLayout::receiver_type_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
724 layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
726
a61af66fc99e Initial load
duke
parents:
diff changeset
727 virtual bool is_ReceiverTypeData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
738 static uint row_limit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
739 return TypeProfileWidth;
a61af66fc99e Initial load
duke
parents:
diff changeset
740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
741 static int receiver_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
742 return receiver0_offset + row * receiver_type_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744 static int receiver_count_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
745 return count0_offset + row * receiver_type_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
748 Klass* receiver(uint row) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
749 assert(row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
750
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
751 Klass* recv = (Klass*)intptr_at(receiver_cell_index(row));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
752 assert(recv == NULL || recv->is_klass(), "wrong type");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
753 return recv;
a61af66fc99e Initial load
duke
parents:
diff changeset
754 }
a61af66fc99e Initial load
duke
parents:
diff changeset
755
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
756 void set_receiver(uint row, Klass* k) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
757 assert((uint)row < row_limit(), "oob");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
758 set_intptr_at(receiver_cell_index(row), (uintptr_t)k);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
759 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
760
0
a61af66fc99e Initial load
duke
parents:
diff changeset
761 uint receiver_count(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 assert(row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
763 return uint_at(receiver_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
765
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
766 void set_receiver_count(uint row, uint count) {
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
767 assert(row < row_limit(), "oob");
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
768 set_uint_at(receiver_count_cell_index(row), count);
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
769 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
770
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
771 void clear_row(uint row) {
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
772 assert(row < row_limit(), "oob");
1251
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
773 // Clear total count - indicator of polymorphic call site.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
774 // The site may look like as monomorphic after that but
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
775 // it allow to have more accurate profiling information because
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
776 // there was execution phase change since klasses were unloaded.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
777 // If the site is still polymorphic then MDO will be updated
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
778 // to reflect it. But it could be the case that the site becomes
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
779 // only bimorphic. Then keeping total count not 0 will be wrong.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
780 // Even if we use monomorphic (when it is not) for compilation
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
781 // we will only have trap, deoptimization and recompile again
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
782 // with updated MDO after executing method in Interpreter.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
783 // An additional receiver will be recorded in the cleaned row
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
784 // during next call execution.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
785 //
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
786 // Note: our profiling logic works with empty rows in any slot.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
787 // We do sorting a profiling info (ciCallProfile) for compilation.
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
788 //
576e77447e3c 6923002: assert(false,"this call site should not be polymorphic")
kvn
parents: 1206
diff changeset
789 set_count(0);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
790 set_receiver(row, NULL);
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
791 set_receiver_count(row, 0);
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
792 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 196
diff changeset
793
0
a61af66fc99e Initial load
duke
parents:
diff changeset
794 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
795 static ByteSize receiver_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
796 return cell_offset(receiver_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
798 static ByteSize receiver_count_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 return cell_offset(receiver_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
800 }
a61af66fc99e Initial load
duke
parents:
diff changeset
801 static ByteSize receiver_type_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 return cell_offset(static_cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
804
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // GC support
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
806 virtual void clean_weak_klass_links(BoolObjectClosure* is_alive_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
807
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
808 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
809 static int receiver_type_data_size_in_bytes() {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
810 return cell_offset_in_bytes(static_cell_count());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
811 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
812
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
813 static Klass *receiver_unchecked(DataLayout* layout, uint row) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
814 oop recv = oop_at(layout, receiver_cell_index(row));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
815 return (Klass *)recv;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
816 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
817
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
818 static void increment_receiver_count_no_overflow(DataLayout* layout, Klass *rcvr) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
819 const int num_rows = row_limit();
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
820 // Receiver already exists?
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
821 for (int row = 0; row < num_rows; row++) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
822 if (receiver_unchecked(layout, row) == rcvr) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
823 increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
824 return;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
825 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
826 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
827 // New receiver, find a free slot.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
828 for (int row = 0; row < num_rows; row++) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
829 if (receiver_unchecked(layout, row) == NULL) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
830 set_intptr_at(layout, receiver_cell_index(row), (intptr_t)rcvr);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
831 increment_uint_at_no_overflow(layout, receiver_count_cell_index(row));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
832 return;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
833 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
834 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
835 // Receiver did not match any saved receiver and there is no empty row for it.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
836 // Increment total counter to indicate polymorphic case.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
837 increment_count_no_overflow(layout);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
838 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
839
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
840 static DataLayout* advance(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
841 return (DataLayout*) (((address)layout) + (ssize_t)ReceiverTypeData::receiver_type_data_size_in_bytes());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
842 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
843 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
844
0
a61af66fc99e Initial load
duke
parents:
diff changeset
845 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
846 void print_receiver_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
847 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
848 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
849 };
a61af66fc99e Initial load
duke
parents:
diff changeset
850
a61af66fc99e Initial load
duke
parents:
diff changeset
851 // VirtualCallData
a61af66fc99e Initial load
duke
parents:
diff changeset
852 //
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // A VirtualCallData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // virtual call. For now, it has nothing more than a ReceiverTypeData.
a61af66fc99e Initial load
duke
parents:
diff changeset
855 class VirtualCallData : public ReceiverTypeData {
a61af66fc99e Initial load
duke
parents:
diff changeset
856 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
857 VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
858 assert(layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
859 }
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 virtual bool is_VirtualCallData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
864 // At this point we could add more profile state, e.g., for arguments.
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // But for now it's the same size as the base record type.
a61af66fc99e Initial load
duke
parents:
diff changeset
866 return ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
867 }
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
870 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
871 }
a61af66fc99e Initial load
duke
parents:
diff changeset
872
a61af66fc99e Initial load
duke
parents:
diff changeset
873 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
874 static ByteSize virtual_call_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
875 return cell_offset(static_cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
877
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
878 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
879 static int virtual_call_data_size_in_bytes() {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
880 return cell_offset_in_bytes(static_cell_count());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
881 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
882
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
883 static DataLayout* advance(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
884 return (DataLayout*) (((address)layout) + (ssize_t)VirtualCallData::virtual_call_data_size_in_bytes());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
885 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
886 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
887
0
a61af66fc99e Initial load
duke
parents:
diff changeset
888 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
889 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
890 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
891 };
a61af66fc99e Initial load
duke
parents:
diff changeset
892
a61af66fc99e Initial load
duke
parents:
diff changeset
893 // RetData
a61af66fc99e Initial load
duke
parents:
diff changeset
894 //
a61af66fc99e Initial load
duke
parents:
diff changeset
895 // A RetData is used to access profiling information for a ret bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
896 // It is composed of a count of the number of times that the ret has
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // been executed, followed by a series of triples of the form
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // (bci, count, di) which count the number of times that some bci was the
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // target of the ret and cache a corresponding data displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
900 class RetData : public CounterData {
a61af66fc99e Initial load
duke
parents:
diff changeset
901 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
902 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
903 bci0_offset = counter_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
904 count0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
905 displacement0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
906 ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
907 };
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 void set_bci(uint row, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
910 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
911 set_int_at(bci0_offset + row * ret_row_cell_count, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
912 }
a61af66fc99e Initial load
duke
parents:
diff changeset
913 void release_set_bci(uint row, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
914 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
915 // 'release' when setting the bci acts as a valid flag for other
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // threads wrt bci_count and bci_displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
917 release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
919 void set_bci_count(uint row, uint count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
921 set_uint_at(count0_offset + row * ret_row_cell_count, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
922 }
a61af66fc99e Initial load
duke
parents:
diff changeset
923 void set_bci_displacement(uint row, int disp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
924 set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
926
a61af66fc99e Initial load
duke
parents:
diff changeset
927 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 RetData(DataLayout* layout) : CounterData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
929 assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
931
a61af66fc99e Initial load
duke
parents:
diff changeset
932 virtual bool is_RetData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
933
a61af66fc99e Initial load
duke
parents:
diff changeset
934 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
935 no_bci = -1 // value of bci when bci1/2 are not in use.
a61af66fc99e Initial load
duke
parents:
diff changeset
936 };
a61af66fc99e Initial load
duke
parents:
diff changeset
937
a61af66fc99e Initial load
duke
parents:
diff changeset
938 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
939 return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
943 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
944 }
a61af66fc99e Initial load
duke
parents:
diff changeset
945
a61af66fc99e Initial load
duke
parents:
diff changeset
946 static uint row_limit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
947 return BciProfileWidth;
a61af66fc99e Initial load
duke
parents:
diff changeset
948 }
a61af66fc99e Initial load
duke
parents:
diff changeset
949 static int bci_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
950 return bci0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
952 static int bci_count_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
953 return count0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 }
a61af66fc99e Initial load
duke
parents:
diff changeset
955 static int bci_displacement_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
956 return displacement0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958
a61af66fc99e Initial load
duke
parents:
diff changeset
959 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
960 int bci(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
961 return int_at(bci_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
963 uint bci_count(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
964 return uint_at(bci_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
965 }
a61af66fc99e Initial load
duke
parents:
diff changeset
966 int bci_displacement(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
967 return int_at(bci_displacement_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // Interpreter Runtime support
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
971 address fixup_ret(int return_bci, MethodData* mdo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
972
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
974 static ByteSize bci_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
975 return cell_offset(bci_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
976 }
a61af66fc99e Initial load
duke
parents:
diff changeset
977 static ByteSize bci_count_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 return cell_offset(bci_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
979 }
a61af66fc99e Initial load
duke
parents:
diff changeset
980 static ByteSize bci_displacement_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
981 return cell_offset(bci_displacement_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
982 }
a61af66fc99e Initial load
duke
parents:
diff changeset
983
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
984 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
985 static DataLayout* advance(MethodData *md, int bci);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
986 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
987
0
a61af66fc99e Initial load
duke
parents:
diff changeset
988 // Specific initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
989 void post_initialize(BytecodeStream* stream, MethodData* mdo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
992 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
993 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
994 };
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996 // BranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
997 //
a61af66fc99e Initial load
duke
parents:
diff changeset
998 // A BranchData is used to access profiling data for a two-way branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // It consists of taken and not_taken counts as well as a data displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 // for the taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 class BranchData : public JumpData {
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 not_taken_off_set = jump_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 branch_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1007
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 void set_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 set_int_at(displacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1011
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 BranchData(DataLayout* layout) : JumpData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 assert(layout->tag() == DataLayout::branch_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1016
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 virtual bool is_BranchData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1018
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 return branch_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 // Direct accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 uint not_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 return uint_at(not_taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1031
3905
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
1032 void set_not_taken(uint cnt) {
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
1033 set_uint_at(not_taken_off_set, cnt);
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
1034 }
c26de9aef2ed 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 3345
diff changeset
1035
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 uint inc_not_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 uint cnt = not_taken() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 // Did we wrap? Will compiler screw us??
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 if (cnt == 0) cnt--;
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 set_uint_at(not_taken_off_set, cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1043
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 static ByteSize not_taken_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 return cell_offset(not_taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 static ByteSize branch_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 return cell_offset(branch_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1051
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1052 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1053 static int branch_data_size_in_bytes() {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1054 return cell_offset_in_bytes(branch_cell_count);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1055 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1056
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1057 static void increment_not_taken_count_no_overflow(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1058 increment_uint_at_no_overflow(layout, not_taken_off_set);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1059 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1060
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1061 static DataLayout* advance_not_taken(DataLayout* layout) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1062 return (DataLayout*) (((address)layout) + (ssize_t)BranchData::branch_data_size_in_bytes());
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1063 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1064 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1065
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 // Specific initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1067 void post_initialize(BytecodeStream* stream, MethodData* mdo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1068
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1073
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 // ArrayData
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 // A ArrayData is a base class for accessing profiling data which does
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // not have a statically known size. It consists of an array length
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 // and an array start.
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 class ArrayData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 friend class DataLayout;
a61af66fc99e Initial load
duke
parents:
diff changeset
1082
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 array_len_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 array_start_off_set
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1087
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 uint array_uint_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 return uint_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 int array_int_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 return int_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 oop array_oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 return oop_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 void array_set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 set_int_at(aindex, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1105 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1106 // Static low level accessors for DataLayout with ArrayData's semantics.
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1107
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1108 static void increment_array_uint_at_no_overflow(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1109 int aindex = index + array_start_off_set;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1110 increment_uint_at_no_overflow(layout, aindex);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1111 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1112
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1113 static int array_int_at(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1114 int aindex = index + array_start_off_set;
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1115 return int_at(layout, aindex);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1116 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1117 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1118
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 // Code generation support for subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 static ByteSize array_element_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 return cell_offset(array_start_off_set + index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 ArrayData(DataLayout* layout) : ProfileData(layout) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
1126
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 virtual bool is_ArrayData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1128
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1132
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 int array_len() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 return int_at_unchecked(array_len_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1136
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 return array_len() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 static ByteSize array_len_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 return cell_offset(array_len_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 static ByteSize array_start_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 return cell_offset(array_start_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1149
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 // MultiBranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 // A MultiBranchData is used to access profiling information for
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 // a multi-way branch (*switch bytecodes). It consists of a series
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // of (count, displacement) pairs, which count the number of times each
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 // case was taken and specify the data displacment for each branch target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 class MultiBranchData : public ArrayData {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 default_count_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 default_disaplacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 case_array_start
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 relative_count_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 relative_displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 per_case_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 void set_default_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 array_set_int_at(default_disaplacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 void set_displacement_at(int index, int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 array_set_int_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 relative_displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1178
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 MultiBranchData(DataLayout* layout) : ArrayData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1183
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 virtual bool is_MultiBranchData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1185
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 static int compute_cell_count(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 int number_of_cases() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 int alen = array_len() - 2; // get rid of default case here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 assert(alen % per_case_cell_count == 0, "must be even");
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 return (alen / per_case_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1193
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 uint default_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 return array_uint_at(default_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 int default_displacement() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 return array_int_at(default_disaplacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1200
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 uint count_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 return array_uint_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 relative_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 int displacement_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 return array_int_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 relative_displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 static ByteSize default_count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 return array_element_offset(default_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 static ByteSize default_displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 return array_element_offset(default_disaplacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 static ByteSize case_count_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 return case_array_offset() +
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 (per_case_size() * index) +
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 relative_count_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 static ByteSize case_array_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 return array_element_offset(case_array_start);
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 static ByteSize per_case_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 return in_ByteSize(per_case_cell_count) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 static ByteSize relative_count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 return in_ByteSize(relative_count_off_set) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 static ByteSize relative_displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 return in_ByteSize(relative_displacement_off_set) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1237 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1238 static void increment_count_no_overflow(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1239 if (index == -1) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1240 increment_array_uint_at_no_overflow(layout, default_count_off_set);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1241 } else {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1242 increment_array_uint_at_no_overflow(layout, case_array_start +
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1243 index * per_case_cell_count +
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1244 relative_count_off_set);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1245 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1246 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1247
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1248 static DataLayout* advance(DataLayout* layout, int index) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1249 if (index == -1) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1250 return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, default_disaplacement_off_set));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1251 } else {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1252 return (DataLayout*) (((address)layout) + (ssize_t)array_int_at(layout, case_array_start +
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1253 index * per_case_cell_count +
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1254 relative_displacement_off_set));
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1255 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1256 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1257 #endif // CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1258
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 // Specific initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1260 void post_initialize(BytecodeStream* stream, MethodData* mdo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1261
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1266
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1267 class ArgInfoData : public ArrayData {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1268
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1269 public:
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1270 ArgInfoData(DataLayout* layout) : ArrayData(layout) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1271 assert(layout->tag() == DataLayout::arg_info_data_tag, "wrong type");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1272 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1273
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1274 virtual bool is_ArgInfoData() { return true; }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1275
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1276
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1277 int number_of_args() {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1278 return array_len();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1279 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1280
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1281 uint arg_modified(int arg) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1282 return array_uint_at(arg);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1283 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1284
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1285 void set_arg_modified(int arg, uint val) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1286 array_set_int_at(arg, val);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1287 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1288
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1289 #ifndef PRODUCT
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1290 void print_data_on(outputStream* st);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1291 #endif
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1292 };
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1293
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1294 // MethodData*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1296 // A MethodData* holds information which has been collected about
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 // a method. Its layout looks like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 // | header |
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 // | klass |
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // | method |
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1304 // | size of the MethodData* |
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 // | Data entries... |
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 // | (variable size) |
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 // The data entry area is a heterogeneous array of DataLayouts. Each
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 // DataLayout in the array corresponds to a specific bytecode in the
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 // method. The entries in the array are sorted by the corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 // bytecode. Access to the data is via resource-allocated ProfileData,
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 // which point to the underlying blocks of DataLayout structures.
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // During interpretation, if profiling in enabled, the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 // maintains a method data pointer (mdp), which points at the entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 // in the array corresponding to the current bci. In the course of
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 // intepretation, when a bytecode is encountered that has profile data
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 // associated with it, the entry pointed to by mdp is updated, then the
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 // mdp is adjusted to point to the next appropriate DataLayout. If mdp
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 // is NULL to begin with, the interpreter assumes that the current method
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 // is not (yet) being profiled.
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1330 // In MethodData* parlance, "dp" is a "data pointer", the actual address
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 // of a DataLayout element. A "di" is a "data index", the offset in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 // from the base of the data entry array. A "displacement" is the byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 // in certain ProfileData objects that indicate the amount the mdp must be
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 // adjusted in the event of a change in control flow.
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1336
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1337 CC_INTERP_ONLY(class BytecodeInterpreter;)
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1338
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1339 class MethodData : public Metadata {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 friend class VMStructs;
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10265
diff changeset
1341 CC_INTERP_ONLY(friend class BytecodeInterpreter;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 friend class ProfileData;
a61af66fc99e Initial load
duke
parents:
diff changeset
1344
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1345 // Back pointer to the Method*
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1346 Method* _method;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1347
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 // Size of this oop in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 int _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1350
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 // Cached hint for bci_to_dp and bci_to_data
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 int _hint_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
1353
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1354 MethodData(methodHandle method, int size, TRAPS);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1355 public:
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1356 static MethodData* allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1357 MethodData() {}; // For ciMethodData
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1358
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1359 bool is_methodData() const volatile { return true; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1360
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 // Whole-method sticky bits and flags
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 enum {
3345
bad7ecd0b6ed 5091921: Sign flip issues in loop optimizer
kvn
parents: 2333
diff changeset
1363 _trap_hist_limit = 17, // decoupled from Deoptimization::Reason_LIMIT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 _trap_hist_mask = max_jubyte,
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 _extra_data_count = 4 // extra DataLayout headers, for trap history
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 }; // Public flag values
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 uint _nof_decompiles; // count of all nmethod removals
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 uint _nof_overflow_recompiles; // recompile count, excluding recomp. bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 uint _nof_overflow_traps; // trap count, excluding _trap_hist
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 union {
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 intptr_t _align;
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 u1 _array[_trap_hist_limit];
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 } _trap_hist;
a61af66fc99e Initial load
duke
parents:
diff changeset
1375
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 // Support for interprocedural escape analysis, from Thomas Kotzmann.
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 intx _eflags; // flags on escape information
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 intx _arg_local; // bit set of non-escaping arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 intx _arg_stack; // bit set of stack-allocatable arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 intx _arg_returned; // bit set of returned arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1381
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1382 int _creation_mileage; // method mileage at MDO creation
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1383
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1384 // How many invocations has this MDO seen?
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1385 // These counters are used to determine the exact age of MDO.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1386 // We need those because in tiered a method can be concurrently
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1387 // executed at different levels.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1388 InvocationCounter _invocation_counter;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1389 // Same for backedges.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1390 InvocationCounter _backedge_counter;
2252
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1391 // Counter values at the time profiling started.
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1392 int _invocation_counter_start;
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1393 int _backedge_counter_start;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1394 // Number of loops and blocks is computed when compiling the first
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1395 // time with C1. It is used to determine if method is trivial.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1396 short _num_loops;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1397 short _num_blocks;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1398 // Highest compile level this method has ever seen.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1399 u1 _highest_comp_level;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1400 // Same for OSR level
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1401 u1 _highest_osr_comp_level;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1402 // Does this method contain anything worth profiling?
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1403 bool _would_profile;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 // Size of _data array in bytes. (Excludes header and extra_data fields.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 int _data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1407
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 // Beginning of the data entries
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 intptr_t _data[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
1410
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 // Helper for size computation
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 static int compute_data_size(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 static int bytecode_cell_count(Bytecodes::Code code);
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 enum { no_profile_data = -1, variable_cell_count = -2 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1415
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 // Helper for initialization
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1417 DataLayout* data_layout_at(int data_index) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 assert(data_index % sizeof(intptr_t) == 0, "unaligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 return (DataLayout*) (((address)_data) + data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // Initialize an individual data segment. Returns the size of
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 // the segment in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 int initialize_data(BytecodeStream* stream, int data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1425
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // Helper for data_at
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1427 DataLayout* limit_data_position() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 return (DataLayout*)((address)data_base() + _data_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1430 bool out_of_bounds(int data_index) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 return data_index >= data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1433
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 // Give each of the data entries a chance to perform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 // data initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 void post_initialize(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1437
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // hint accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 int hint_di() const { return _hint_di; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 void set_hint_di(int di) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 assert(!out_of_bounds(di), "hint_di out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 _hint_di = di;
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 ProfileData* data_before(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 // avoid SEGV on this edge case
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 if (data_size() == 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 int hint = hint_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 if (data_layout_at(hint)->bci() <= bci)
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 return data_at(hint);
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 return first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1453
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 // What is the index of the first data entry?
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1455 int first_di() const { return 0; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1456
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 // Find or create an extra ProfileData:
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 ProfileData* bci_to_extra_data(int bci, bool create_if_missing);
a61af66fc99e Initial load
duke
parents:
diff changeset
1459
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1460 // return the argument info cell
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1461 ArgInfoData *arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1462
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 static int header_size() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1465 return sizeof(MethodData)/wordSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1467
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1468 // Compute the size of a MethodData* before it is created.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 static int compute_allocation_size_in_bytes(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 static int compute_allocation_size_in_words(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 static int compute_extra_data_count(int data_size, int empty_bc_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1472
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 // Determine if a given bytecode can have profile information.
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 static bool bytecode_has_profile(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 return bytecode_cell_count(code) != no_profile_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1477
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8000
diff changeset
1478 // reset into original state
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8000
diff changeset
1479 void init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 // My size
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1482 int size_in_bytes() const { return _size; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1483 int size() const { return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord); }
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1484 #if INCLUDE_SERVICES
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1485 void collect_statistics(KlassSizeStats *sz) const;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1486 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1487
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 int creation_mileage() const { return _creation_mileage; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 void set_creation_mileage(int x) { _creation_mileage = x; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1490
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1491 int invocation_count() {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1492 if (invocation_counter()->carry()) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1493 return InvocationCounter::count_limit;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1494 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1495 return invocation_counter()->count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1496 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1497 int backedge_count() {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1498 if (backedge_counter()->carry()) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1499 return InvocationCounter::count_limit;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1500 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1501 return backedge_counter()->count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1502 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1503
2252
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1504 int invocation_count_start() {
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1505 if (invocation_counter()->carry()) {
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1506 return 0;
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1507 }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1508 return _invocation_counter_start;
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1509 }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1510
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1511 int backedge_count_start() {
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1512 if (backedge_counter()->carry()) {
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1513 return 0;
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1514 }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1515 return _backedge_counter_start;
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1516 }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1517
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1518 int invocation_count_delta() { return invocation_count() - invocation_count_start(); }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1519 int backedge_count_delta() { return backedge_count() - backedge_count_start(); }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1520
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1521 void reset_start_counters() {
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1522 _invocation_counter_start = invocation_count();
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1523 _backedge_counter_start = backedge_count();
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1524 }
72d6c57d0658 7017434: Tiered needs to support reprofiling
iveresov
parents: 1972
diff changeset
1525
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1526 InvocationCounter* invocation_counter() { return &_invocation_counter; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1527 InvocationCounter* backedge_counter() { return &_backedge_counter; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1528
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1529 void set_would_profile(bool p) { _would_profile = p; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1530 bool would_profile() const { return _would_profile; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1531
10265
92ef81e2f571 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 9080
diff changeset
1532 int highest_comp_level() const { return _highest_comp_level; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1533 void set_highest_comp_level(int level) { _highest_comp_level = level; }
10265
92ef81e2f571 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 9080
diff changeset
1534 int highest_osr_comp_level() const { return _highest_osr_comp_level; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1535 void set_highest_osr_comp_level(int level) { _highest_osr_comp_level = level; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1536
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1537 int num_loops() const { return _num_loops; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1538 void set_num_loops(int n) { _num_loops = n; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1539 int num_blocks() const { return _num_blocks; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1540 void set_num_blocks(int n) { _num_blocks = n; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1541
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 bool is_mature() const; // consult mileage and ProfileMaturityPercentage
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1543 static int mileage_of(Method* m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1544
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 // Support for interprocedural escape analysis, from Thomas Kotzmann.
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 enum EscapeFlag {
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 estimated = 1 << 0,
78
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1548 return_local = 1 << 1,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1549 return_allocated = 1 << 2,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1550 allocated_escapes = 1 << 3,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1551 unknown_modified = 1 << 4
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1553
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 intx eflags() { return _eflags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 intx arg_local() { return _arg_local; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 intx arg_stack() { return _arg_stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 intx arg_returned() { return _arg_returned; }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1558 uint arg_modified(int a) { ArgInfoData *aid = arg_info();
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8000
diff changeset
1559 assert(aid != NULL, "arg_info must be not null");
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1560 assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1561 return aid->arg_modified(a); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1562
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 void set_eflags(intx v) { _eflags = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 void set_arg_local(intx v) { _arg_local = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 void set_arg_stack(intx v) { _arg_stack = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 void set_arg_returned(intx v) { _arg_returned = v; }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1567 void set_arg_modified(int a, uint v) { ArgInfoData *aid = arg_info();
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8000
diff changeset
1568 assert(aid != NULL, "arg_info must be not null");
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1569 assert(a >= 0 && a < aid->number_of_args(), "valid argument number");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1570 aid->set_arg_modified(a, v); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1571
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 void clear_escape_info() { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1573
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 // Location and size of data area
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 address data_base() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 return (address) _data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1578 int data_size() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 return _data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1581
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 // Accessors
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1583 Method* method() const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1584
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 // Get the data at an arbitrary (sort of) data index.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1586 ProfileData* data_at(int data_index) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1587
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 // Walk through the data in order.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1589 ProfileData* first_data() const { return data_at(first_di()); }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1590 ProfileData* next_data(ProfileData* current) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1591 bool is_valid(ProfileData* current) const { return current != NULL; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1592
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 // Convert a dp (data pointer) to a di (data index).
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1594 int dp_to_di(address dp) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 return dp - ((address)_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1597
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 address di_to_dp(int di) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 return (address)data_layout_at(di);
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1601
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 // bci to di/dp conversion.
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 address bci_to_dp(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 int bci_to_di(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 return dp_to_di(bci_to_dp(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1607
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 // Get the data at an arbitrary bci, or NULL if there is none.
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 ProfileData* bci_to_data(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1610
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 // Same, but try to create an extra_data record if one is needed:
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 ProfileData* allocate_bci_to_data(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 ProfileData* data = bci_to_data(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 return (data != NULL) ? data : bci_to_extra_data(bci, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1616
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 // Add a handful of extra data records, for trap tracking.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1618 DataLayout* extra_data_base() const { return limit_data_position(); }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1619 DataLayout* extra_data_limit() const { return (DataLayout*)((address)this + size_in_bytes()); }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1620 int extra_data_size() const { return (address)extra_data_limit()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 - (address)extra_data_base(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 static DataLayout* next_extra(DataLayout* dp) { return (DataLayout*)((address)dp + in_bytes(DataLayout::cell_offset(0))); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1623
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 // Return (uint)-1 for overflow.
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 uint trap_count(int reason) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 assert((uint)reason < _trap_hist_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 // For loops:
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 static uint trap_reason_limit() { return _trap_hist_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 static uint trap_count_limit() { return _trap_hist_mask; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 uint inc_trap_count(int reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 // Count another trap, anywhere in this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 assert(reason >= 0, "must be single trap");
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 if ((uint)reason < _trap_hist_limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 uint cnt1 = 1 + _trap_hist._array[reason];
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 if ((cnt1 & _trap_hist_mask) != 0) { // if no counter overflow...
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 _trap_hist._array[reason] = cnt1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 return cnt1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 return _trap_hist_mask + (++_nof_overflow_traps);
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 // Could not represent the count in the histogram.
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 return (++_nof_overflow_traps);
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1648
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 uint overflow_trap_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 return _nof_overflow_traps;
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 uint overflow_recompile_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 return _nof_overflow_recompiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 void inc_overflow_recompile_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 _nof_overflow_recompiles += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 uint decompile_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 return _nof_decompiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 void inc_decompile_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 _nof_decompiles += 1;
1206
87684f1a88b5 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 948
diff changeset
1663 if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
7998
6a51fc70a15e 8006613: adding reason to made_not_compilable
vlivanov
parents: 6725
diff changeset
1664 method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff");
1206
87684f1a88b5 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 948
diff changeset
1665 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 // Support for code generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 static ByteSize data_offset() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1670 return byte_offset_of(MethodData, _data[0]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1673 static ByteSize invocation_counter_offset() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1674 return byte_offset_of(MethodData, _invocation_counter);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1675 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1676 static ByteSize backedge_counter_offset() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1677 return byte_offset_of(MethodData, _backedge_counter);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1678 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1679
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1680 // Deallocation support - no pointer fields to deallocate
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1681 void deallocate_contents(ClassLoaderData* loader_data) {}
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1682
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 // GC support
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1684 void set_size(int object_size_in_bytes) { _size = object_size_in_bytes; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1685
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1686 // Printing
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1687 #ifndef PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1688 void print_on (outputStream* st) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1689 #endif
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1690 void print_value_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1691
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 // printing support for method data
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1694 void print_data_on(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1696
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1697 const char* internal_name() const { return "{method data}"; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1698
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 // verification
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3905
diff changeset
1700 void verify_on(outputStream* st);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 void verify_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
1703
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
1704 #endif // SHARE_VM_OOPS_METHODDATAOOP_HPP