annotate src/share/vm/oops/methodDataOop.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 0b27f3512f9e
children 8b46c4d82093
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 189
diff changeset
2 * Copyright 2000-2008 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class BytecodeStream;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // The MethodData object collects counts and other profile information
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // during zeroth-tier (interpretive) and first-tier execution.
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // The profile is used later by compilation heuristics. Some heuristics
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // enable use of aggressive (or "heroic") optimizations. An aggressive
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // optimization often has a down-side, a corner case that it handles
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // poorly, but which is thought to be rare. The profile provides
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // evidence of this rarity for a given method or even BCI. It allows
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // the compiler to back out of the optimization at places where it
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // has historically been a poor choice. Other heuristics try to use
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // specific information gathered about types observed at a given site.
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // All data in the profile is approximate. It is expected to be accurate
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // on the whole, but the system expects occasional inaccuraces, due to
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // counter overflow, multiprocessor races during data collection, space
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // limitations, missing MDO blocks, etc. Bad or missing data will degrade
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // optimization quality but will not affect correctness. Also, each MDO
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // is marked with its birth-date ("creation_mileage") which can be used
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // to assess the quality ("maturity") of its data.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 //
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Short (<32-bit) counters are designed to overflow to a known "saturated"
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // state. Also, certain recorded per-BCI events are given one-bit counters
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // which overflow to a saturated state which applied to all counters at
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // that BCI. In other words, there is a small lattice which approximates
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // the ideal of an infinite-precision counter for each event at each BCI,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // and the lattice quickly "bottoms out" in a state where all counters
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // are taken to be indefinitely large.
a61af66fc99e Initial load
duke
parents:
diff changeset
53 //
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // The reader will find many data races in profile gathering code, starting
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // with invocation counter incrementation. None of these races harm correct
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // execution of the compiled code.
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // DataLayout
a61af66fc99e Initial load
duke
parents:
diff changeset
59 //
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Overlay for generic profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 class DataLayout VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Every data layout begins with a header. This header
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // contains a tag, which is used to indicate the size/layout
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // of the data, 4 bits of flags, which can be used in any way,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // 4 bits of trap history (none/one reason/many reasons),
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // and a bci, which is used to tie this piece of data to a
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // specific bci in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 union {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 intptr_t _bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 u1 _tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 u1 _flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 u2 _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 } _struct;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // The data layout has an arbitrary number of cells, each sized
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // to accomodate a pointer or an integer.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 intptr_t _cells[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Some types of data layouts need a length field.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static bool needs_array_len(u1 tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 counter_increment = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
88 };
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 cell_size = sizeof(intptr_t)
a61af66fc99e Initial load
duke
parents:
diff changeset
92 };
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Tag values
a61af66fc99e Initial load
duke
parents:
diff changeset
95 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 no_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bit_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 counter_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 jump_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
100 receiver_type_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 virtual_call_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ret_data_tag,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 branch_data_tag,
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
104 multi_branch_data_tag,
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
105 arg_info_data_tag
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 };
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // The _struct._flags word is formatted as [trap_state:4 | flags:4].
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // The trap state breaks down further as [recompile:1 | reason:3].
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // This further breakdown is defined in deoptimization.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // See Deoptimization::trap_state_reason for an assert that
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // trap_bits is big enough to hold reasons < Reason_RECORDED_LIMIT.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // The trap_state is collected only if ProfileTraps is true.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 trap_bits = 1+3, // 3: enough to distinguish [0..Reason_RECORDED_LIMIT].
a61af66fc99e Initial load
duke
parents:
diff changeset
117 trap_shift = BitsPerByte - trap_bits,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 trap_mask = right_n_bits(trap_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
119 trap_mask_in_place = (trap_mask << trap_shift),
a61af66fc99e Initial load
duke
parents:
diff changeset
120 flag_limit = trap_shift,
a61af66fc99e Initial load
duke
parents:
diff changeset
121 flag_mask = right_n_bits(flag_limit),
a61af66fc99e Initial load
duke
parents:
diff changeset
122 first_flag = 0
a61af66fc99e Initial load
duke
parents:
diff changeset
123 };
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Size computation
a61af66fc99e Initial load
duke
parents:
diff changeset
126 static int header_size_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static int header_size_in_cells() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 static int compute_size_in_bytes(int cell_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return header_size_in_bytes() + cell_count * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
138 void initialize(u1 tag, u2 bci, int cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
141 u1 tag() {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 return _header._struct._tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Return a few bits of trap state. Range is [0..trap_mask].
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // The state tells if traps with zero, one, or many reasons have occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // It also tells whether zero or many recompilations have occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // The associated trap histogram in the MDO itself tells whether
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // traps are common or not. If a BCI shows that a trap X has
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // occurred, and the MDO shows N occurrences of X, we make the
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // simplifying assumption that all N occurrences can be blamed
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // on that BCI.
a61af66fc99e Initial load
duke
parents:
diff changeset
153 int trap_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return ((_header._struct._flags >> trap_shift) & trap_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void set_trap_state(int new_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 assert(ProfileTraps, "used only under +ProfileTraps");
a61af66fc99e Initial load
duke
parents:
diff changeset
159 uint old_flags = (_header._struct._flags & flag_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 _header._struct._flags = (new_state << trap_shift) | old_flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 u1 flags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 return _header._struct._flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 u2 bci() {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 return _header._struct._bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void set_header(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 _header._bits = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 void release_set_header(intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 OrderAccess::release_store_ptr(&_header._bits, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 intptr_t header() {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 return _header._bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void set_cell_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 _cells[index] = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void release_set_cell_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 OrderAccess::release_store_ptr(&_cells[index], value);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 intptr_t cell_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return _cells[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 intptr_t* adr_cell_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return &_cells[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 oop* adr_oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 return (oop*)&(_cells[index]);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void set_flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 assert(flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
198 _header._struct._flags |= (0x1 << flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 bool flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 assert(flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 return (_header._struct._flags & (0x1 << flag_number)) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Low-level support for code generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 static ByteSize header_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return byte_offset_of(DataLayout, _header);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 static ByteSize tag_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 return byte_offset_of(DataLayout, _header._struct._tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212 static ByteSize flags_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return byte_offset_of(DataLayout, _header._struct._flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215 static ByteSize bci_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 return byte_offset_of(DataLayout, _header._struct._bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218 static ByteSize cell_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return byte_offset_of(DataLayout, _cells[index]);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // Return a value which, when or-ed as a byte into _flags, sets the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 static int flag_number_to_byte_constant(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 assert(0 <= flag_number && flag_number < flag_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
224 DataLayout temp; temp.set_header(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 temp.set_flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 return temp._header._struct._flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Return a value which, when or-ed as a word into _header, sets the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
229 static intptr_t flag_mask_to_header_mask(int byte_constant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 DataLayout temp; temp.set_header(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 temp._header._struct._flags = byte_constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return temp._header._bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 };
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // ProfileData class hierarchy
a61af66fc99e Initial load
duke
parents:
diff changeset
238 class ProfileData;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 class BitData;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 class CounterData;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 class ReceiverTypeData;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 class VirtualCallData;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 class RetData;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 class JumpData;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 class BranchData;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 class ArrayData;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 class MultiBranchData;
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
248 class ArgInfoData;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
252 //
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // A ProfileData object is created to refer to a section of profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // data in a structured way.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 class ProfileData : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
257 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
258 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 tab_width_one = 16,
a61af66fc99e Initial load
duke
parents:
diff changeset
260 tab_width_two = 36
a61af66fc99e Initial load
duke
parents:
diff changeset
261 };
a61af66fc99e Initial load
duke
parents:
diff changeset
262 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // This is a pointer to a section of profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
265 DataLayout* _data;
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
268 DataLayout* data() { return _data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 cell_size = DataLayout::cell_size
a61af66fc99e Initial load
duke
parents:
diff changeset
272 };
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // How many cells are in this?
a61af66fc99e Initial load
duke
parents:
diff changeset
276 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
277 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
278 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Return the size of this data.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 int size_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 return DataLayout::compute_size_in_bytes(cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // Low-level accessors for underlying data
a61af66fc99e Initial load
duke
parents:
diff changeset
288 void set_intptr_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
290 data()->set_cell_at(index, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 void release_set_intptr_at(int index, intptr_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
294 data()->release_set_cell_at(index, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 intptr_t intptr_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 return data()->cell_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 void set_uint_at(int index, uint value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303 void release_set_uint_at(int index, uint value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 release_set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 uint uint_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 return (uint)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 void set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312 void release_set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 release_set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 int int_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 return (int)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318 int int_at_unchecked(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 return (int)data()->cell_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321 void set_oop_at(int index, oop value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 set_intptr_at(index, (intptr_t) value);
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324 oop oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 return (oop)intptr_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327 oop* adr_oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
328 assert(0 <= index && index < cell_count(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
329 return data()->adr_oop_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 void set_flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 data()->set_flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 bool flag_at(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 return data()->flag_at(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // two convenient imports for use by subclasses:
a61af66fc99e Initial load
duke
parents:
diff changeset
340 static ByteSize cell_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 return DataLayout::cell_offset(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 }
a61af66fc99e Initial load
duke
parents:
diff changeset
343 static int flag_number_to_byte_constant(int flag_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 return DataLayout::flag_number_to_byte_constant(flag_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 ProfileData(DataLayout* data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _data = data;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // Constructor for invalid ProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
353 ProfileData();
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 u2 bci() {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 return data()->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 address dp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 return (address)_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 int trap_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 return data()->trap_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void set_trap_state(int new_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 data()->set_trap_state(new_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // Type checking
a61af66fc99e Initial load
duke
parents:
diff changeset
371 virtual bool is_BitData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
372 virtual bool is_CounterData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
373 virtual bool is_JumpData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 virtual bool is_ReceiverTypeData(){ return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 virtual bool is_VirtualCallData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
376 virtual bool is_RetData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 virtual bool is_BranchData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
378 virtual bool is_ArrayData() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 virtual bool is_MultiBranchData() { return false; }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
380 virtual bool is_ArgInfoData() { return false; }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
381
0
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 BitData* as_BitData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 assert(is_BitData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
385 return is_BitData() ? (BitData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387 CounterData* as_CounterData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 assert(is_CounterData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
389 return is_CounterData() ? (CounterData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 JumpData* as_JumpData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 assert(is_JumpData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
393 return is_JumpData() ? (JumpData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395 ReceiverTypeData* as_ReceiverTypeData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 assert(is_ReceiverTypeData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
397 return is_ReceiverTypeData() ? (ReceiverTypeData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399 VirtualCallData* as_VirtualCallData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 assert(is_VirtualCallData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
401 return is_VirtualCallData() ? (VirtualCallData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403 RetData* as_RetData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 assert(is_RetData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
405 return is_RetData() ? (RetData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407 BranchData* as_BranchData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 assert(is_BranchData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
409 return is_BranchData() ? (BranchData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411 ArrayData* as_ArrayData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 assert(is_ArrayData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
413 return is_ArrayData() ? (ArrayData*) this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 MultiBranchData* as_MultiBranchData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 assert(is_MultiBranchData(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
417 return is_MultiBranchData() ? (MultiBranchData*)this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
419 ArgInfoData* as_ArgInfoData() {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
420 assert(is_ArgInfoData(), "wrong type");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
421 return is_ArgInfoData() ? (ArgInfoData*)this : NULL;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
422 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // Subclass specific initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
426 virtual void post_initialize(BytecodeStream* stream, methodDataOop mdo) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
429 virtual void follow_contents() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
430 virtual void oop_iterate(OopClosure* blk) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
431 virtual void oop_iterate_m(OopClosure* blk, MemRegion mr) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
432 virtual void adjust_pointers() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // Parallel old support
a61af66fc99e Initial load
duke
parents:
diff changeset
436 virtual void follow_contents(ParCompactionManager* cm) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
437 virtual void update_pointers() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
438 virtual void update_pointers(HeapWord* beg_addr, HeapWord* end_addr) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
439 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // CI translation: ProfileData can represent both MethodDataOop data
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // as well as CIMethodData data. This function is provided for translating
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // an oop in a ProfileData to the ci equivalent. Generally speaking,
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // most ProfileData don't require any translation, so we provide the null
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // translation here, and the required translators are in the ci subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
446 virtual void translate_from(ProfileData* data) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 virtual void print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
453 void print_shared(outputStream* st, const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
454 void tab(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
456 };
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // BitData
a61af66fc99e Initial load
duke
parents:
diff changeset
459 //
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // A BitData holds a flag or two in its header.
a61af66fc99e Initial load
duke
parents:
diff changeset
461 class BitData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
462 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
463 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // null_seen:
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // saw a null operand (cast/aastore/instanceof)
a61af66fc99e Initial load
duke
parents:
diff changeset
466 null_seen_flag = DataLayout::first_flag + 0
a61af66fc99e Initial load
duke
parents:
diff changeset
467 };
a61af66fc99e Initial load
duke
parents:
diff changeset
468 enum { bit_cell_count = 0 }; // no additional data fields needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
469 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
470 BitData(DataLayout* layout) : ProfileData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 virtual bool is_BitData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 return bit_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478
a61af66fc99e Initial load
duke
parents:
diff changeset
479 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
480 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // Accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // The null_seen flag bit is specially known to the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // Consulting it allows the compiler to avoid setting up null_check traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
487 bool null_seen() { return flag_at(null_seen_flag); }
a61af66fc99e Initial load
duke
parents:
diff changeset
488 void set_null_seen() { set_flag_at(null_seen_flag); }
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
492 static int null_seen_byte_constant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 return flag_number_to_byte_constant(null_seen_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 static ByteSize bit_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
497 return cell_offset(bit_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
501 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
502 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
503 };
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
506 //
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // A CounterData corresponds to a simple counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
508 class CounterData : public BitData {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
510 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
511 count_off,
a61af66fc99e Initial load
duke
parents:
diff changeset
512 counter_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
513 };
a61af66fc99e Initial load
duke
parents:
diff changeset
514 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
515 CounterData(DataLayout* layout) : BitData(layout) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 virtual bool is_CounterData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
518
a61af66fc99e Initial load
duke
parents:
diff changeset
519 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 return counter_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
524 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 // Direct accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
528 uint count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
529 return uint_at(count_off);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
533 static ByteSize count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 return cell_offset(count_off);
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536 static ByteSize counter_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 return cell_offset(counter_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
541 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
542 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
543 };
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 // JumpData
a61af66fc99e Initial load
duke
parents:
diff changeset
546 //
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // A JumpData is used to access profiling information for a direct
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // branch. It is a counter, used for counting the number of branches,
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // plus a data displacement, used for realigning the data pointer to
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // the corresponding target bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
551 class JumpData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
553 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
554 taken_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
555 displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
556 jump_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
557 };
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 void set_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
560 set_int_at(displacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562
a61af66fc99e Initial load
duke
parents:
diff changeset
563 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
564 JumpData(DataLayout* layout) : ProfileData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
565 assert(layout->tag() == DataLayout::jump_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
566 layout->tag() == DataLayout::branch_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 virtual bool is_JumpData() { 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 jump_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 taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 return uint_at(taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // Saturating counter
a61af66fc99e Initial load
duke
parents:
diff changeset
584 uint inc_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 uint cnt = taken() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 // Did we wrap? Will compiler screw us??
a61af66fc99e Initial load
duke
parents:
diff changeset
587 if (cnt == 0) cnt--;
a61af66fc99e Initial load
duke
parents:
diff changeset
588 set_uint_at(taken_off_set, cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
589 return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 int displacement() {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 return int_at(displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
597 static ByteSize taken_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
598 return cell_offset(taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 static ByteSize displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 return cell_offset(displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // Specific initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
606 void post_initialize(BytecodeStream* stream, methodDataOop mdo);
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
609 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
610 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
611 };
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // ReceiverTypeData
a61af66fc99e Initial load
duke
parents:
diff changeset
614 //
a61af66fc99e Initial load
duke
parents:
diff changeset
615 // A ReceiverTypeData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // dynamic type check. It consists of a counter which counts the total times
a61af66fc99e Initial load
duke
parents:
diff changeset
617 // that the check is reached, and a series of (klassOop, count) pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // which are used to store a type profile for the receiver of the check.
a61af66fc99e Initial load
duke
parents:
diff changeset
619 class ReceiverTypeData : public CounterData {
a61af66fc99e Initial load
duke
parents:
diff changeset
620 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
621 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 receiver0_offset = counter_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
623 count0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
624 receiver_type_row_cell_count = (count0_offset + 1) - receiver0_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
625 };
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
628 ReceiverTypeData(DataLayout* layout) : CounterData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 assert(layout->tag() == DataLayout::receiver_type_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
630 layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 virtual bool is_ReceiverTypeData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
634
a61af66fc99e Initial load
duke
parents:
diff changeset
635 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
636 return counter_cell_count + (uint) TypeProfileWidth * receiver_type_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
638
a61af66fc99e Initial load
duke
parents:
diff changeset
639 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
640 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
644 static uint row_limit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 return TypeProfileWidth;
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647 static int receiver_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
648 return receiver0_offset + row * receiver_type_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650 static int receiver_count_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
651 return count0_offset + row * receiver_type_row_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 // Get the receiver at row. The 'unchecked' version is needed by parallel old
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // gc; it does not assert the receiver is a klass. During compaction of the
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // perm gen, the klass may already have moved, so the is_klass() predicate
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // would fail. The 'normal' version should be used whenever possible.
a61af66fc99e Initial load
duke
parents:
diff changeset
658 klassOop receiver_unchecked(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
659 assert(row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
660 oop recv = oop_at(receiver_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
661 return (klassOop)recv;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 }
a61af66fc99e Initial load
duke
parents:
diff changeset
663
a61af66fc99e Initial load
duke
parents:
diff changeset
664 klassOop receiver(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 klassOop recv = receiver_unchecked(row);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 assert(recv == NULL || ((oop)recv)->is_klass(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
667 return recv;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 uint receiver_count(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 assert(row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
672 return uint_at(receiver_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
676 static ByteSize receiver_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 return cell_offset(receiver_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 static ByteSize receiver_count_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
680 return cell_offset(receiver_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682 static ByteSize receiver_type_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
683 return cell_offset(static_cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
687 virtual void follow_contents();
a61af66fc99e Initial load
duke
parents:
diff changeset
688 virtual void oop_iterate(OopClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
689 virtual void oop_iterate_m(OopClosure* blk, MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
690 virtual void adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
693 // Parallel old support
a61af66fc99e Initial load
duke
parents:
diff changeset
694 virtual void follow_contents(ParCompactionManager* cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 virtual void update_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
696 virtual void update_pointers(HeapWord* beg_addr, HeapWord* end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
697 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699 oop* adr_receiver(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 return adr_oop_at(receiver_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
702
a61af66fc99e Initial load
duke
parents:
diff changeset
703 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
704 void print_receiver_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
705 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
706 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
707 };
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // VirtualCallData
a61af66fc99e Initial load
duke
parents:
diff changeset
710 //
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // A VirtualCallData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // virtual call. For now, it has nothing more than a ReceiverTypeData.
a61af66fc99e Initial load
duke
parents:
diff changeset
713 class VirtualCallData : public ReceiverTypeData {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
715 VirtualCallData(DataLayout* layout) : ReceiverTypeData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 assert(layout->tag() == DataLayout::virtual_call_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
718
a61af66fc99e Initial load
duke
parents:
diff changeset
719 virtual bool is_VirtualCallData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // At this point we could add more profile state, e.g., for arguments.
a61af66fc99e Initial load
duke
parents:
diff changeset
723 // But for now it's the same size as the base record type.
a61af66fc99e Initial load
duke
parents:
diff changeset
724 return ReceiverTypeData::static_cell_count();
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 int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
728 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
732 static ByteSize virtual_call_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 return cell_offset(static_cell_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
737 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
738 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
739 };
a61af66fc99e Initial load
duke
parents:
diff changeset
740
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // RetData
a61af66fc99e Initial load
duke
parents:
diff changeset
742 //
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // A RetData is used to access profiling information for a ret bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // It is composed of a count of the number of times that the ret has
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // been executed, followed by a series of triples of the form
a61af66fc99e Initial load
duke
parents:
diff changeset
746 // (bci, count, di) which count the number of times that some bci was the
a61af66fc99e Initial load
duke
parents:
diff changeset
747 // target of the ret and cache a corresponding data displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
748 class RetData : public CounterData {
a61af66fc99e Initial load
duke
parents:
diff changeset
749 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
750 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 bci0_offset = counter_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
752 count0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
753 displacement0_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
754 ret_row_cell_count = (displacement0_offset + 1) - bci0_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
755 };
a61af66fc99e Initial load
duke
parents:
diff changeset
756
a61af66fc99e Initial load
duke
parents:
diff changeset
757 void set_bci(uint row, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
759 set_int_at(bci0_offset + row * ret_row_cell_count, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761 void release_set_bci(uint row, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
763 // 'release' when setting the bci acts as a valid flag for other
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // threads wrt bci_count and bci_displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
765 release_set_int_at(bci0_offset + row * ret_row_cell_count, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
766 }
a61af66fc99e Initial load
duke
parents:
diff changeset
767 void set_bci_count(uint row, uint count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 assert((uint)row < row_limit(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
769 set_uint_at(count0_offset + row * ret_row_cell_count, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
771 void set_bci_displacement(uint row, int disp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
772 set_int_at(displacement0_offset + row * ret_row_cell_count, disp);
a61af66fc99e Initial load
duke
parents:
diff changeset
773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
774
a61af66fc99e Initial load
duke
parents:
diff changeset
775 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
776 RetData(DataLayout* layout) : CounterData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
777 assert(layout->tag() == DataLayout::ret_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
779
a61af66fc99e Initial load
duke
parents:
diff changeset
780 virtual bool is_RetData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
783 no_bci = -1 // value of bci when bci1/2 are not in use.
a61af66fc99e Initial load
duke
parents:
diff changeset
784 };
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 return counter_cell_count + (uint) BciProfileWidth * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
791 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
793
a61af66fc99e Initial load
duke
parents:
diff changeset
794 static uint row_limit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 return BciProfileWidth;
a61af66fc99e Initial load
duke
parents:
diff changeset
796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
797 static int bci_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
798 return bci0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800 static int bci_count_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 return count0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
802 }
a61af66fc99e Initial load
duke
parents:
diff changeset
803 static int bci_displacement_cell_index(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
804 return displacement0_offset + row * ret_row_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // Direct accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
808 int bci(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
809 return int_at(bci_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
811 uint bci_count(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
812 return uint_at(bci_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
813 }
a61af66fc99e Initial load
duke
parents:
diff changeset
814 int bci_displacement(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 return int_at(bci_displacement_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817
a61af66fc99e Initial load
duke
parents:
diff changeset
818 // Interpreter Runtime support
a61af66fc99e Initial load
duke
parents:
diff changeset
819 address fixup_ret(int return_bci, methodDataHandle mdo);
a61af66fc99e Initial load
duke
parents:
diff changeset
820
a61af66fc99e Initial load
duke
parents:
diff changeset
821 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
822 static ByteSize bci_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
823 return cell_offset(bci_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
824 }
a61af66fc99e Initial load
duke
parents:
diff changeset
825 static ByteSize bci_count_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
826 return cell_offset(bci_count_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
828 static ByteSize bci_displacement_offset(uint row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
829 return cell_offset(bci_displacement_cell_index(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
830 }
a61af66fc99e Initial load
duke
parents:
diff changeset
831
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // Specific initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
833 void post_initialize(BytecodeStream* stream, methodDataOop mdo);
a61af66fc99e Initial load
duke
parents:
diff changeset
834
a61af66fc99e Initial load
duke
parents:
diff changeset
835 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
836 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
837 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
838 };
a61af66fc99e Initial load
duke
parents:
diff changeset
839
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // BranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
841 //
a61af66fc99e Initial load
duke
parents:
diff changeset
842 // A BranchData is used to access profiling data for a two-way branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
843 // It consists of taken and not_taken counts as well as a data displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
844 // for the taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
845 class BranchData : public JumpData {
a61af66fc99e Initial load
duke
parents:
diff changeset
846 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
847 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
848 not_taken_off_set = jump_cell_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
849 branch_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
850 };
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 void set_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
853 set_int_at(displacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
855
a61af66fc99e Initial load
duke
parents:
diff changeset
856 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
857 BranchData(DataLayout* layout) : JumpData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
858 assert(layout->tag() == DataLayout::branch_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_BranchData() { 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 return branch_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
868 return static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
869 }
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871 // Direct accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
872 uint not_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
873 return uint_at(not_taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 uint inc_not_taken() {
a61af66fc99e Initial load
duke
parents:
diff changeset
877 uint cnt = not_taken() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // Did we wrap? Will compiler screw us??
a61af66fc99e Initial load
duke
parents:
diff changeset
879 if (cnt == 0) cnt--;
a61af66fc99e Initial load
duke
parents:
diff changeset
880 set_uint_at(not_taken_off_set, cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
881 return cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
882 }
a61af66fc99e Initial load
duke
parents:
diff changeset
883
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
885 static ByteSize not_taken_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
886 return cell_offset(not_taken_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
887 }
a61af66fc99e Initial load
duke
parents:
diff changeset
888 static ByteSize branch_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
889 return cell_offset(branch_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
891
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // Specific initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
893 void post_initialize(BytecodeStream* stream, methodDataOop mdo);
a61af66fc99e Initial load
duke
parents:
diff changeset
894
a61af66fc99e Initial load
duke
parents:
diff changeset
895 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
896 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
897 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
898 };
a61af66fc99e Initial load
duke
parents:
diff changeset
899
a61af66fc99e Initial load
duke
parents:
diff changeset
900 // ArrayData
a61af66fc99e Initial load
duke
parents:
diff changeset
901 //
a61af66fc99e Initial load
duke
parents:
diff changeset
902 // A ArrayData is a base class for accessing profiling data which does
a61af66fc99e Initial load
duke
parents:
diff changeset
903 // not have a statically known size. It consists of an array length
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // and an array start.
a61af66fc99e Initial load
duke
parents:
diff changeset
905 class ArrayData : public ProfileData {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
907 friend class DataLayout;
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
910 array_len_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
911 array_start_off_set
a61af66fc99e Initial load
duke
parents:
diff changeset
912 };
a61af66fc99e Initial load
duke
parents:
diff changeset
913
a61af66fc99e Initial load
duke
parents:
diff changeset
914 uint array_uint_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
915 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
916 return uint_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918 int array_int_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
919 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 return int_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
921 }
a61af66fc99e Initial load
duke
parents:
diff changeset
922 oop array_oop_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
924 return oop_at(aindex);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
926 void array_set_int_at(int index, int value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
927 int aindex = index + array_start_off_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
928 set_int_at(aindex, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
930
a61af66fc99e Initial load
duke
parents:
diff changeset
931 // Code generation support for subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
932 static ByteSize array_element_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 return cell_offset(array_start_off_set + index);
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
937 ArrayData(DataLayout* layout) : ProfileData(layout) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
938
a61af66fc99e Initial load
duke
parents:
diff changeset
939 virtual bool is_ArrayData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
940
a61af66fc99e Initial load
duke
parents:
diff changeset
941 static int static_cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
942 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
943 }
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 int array_len() {
a61af66fc99e Initial load
duke
parents:
diff changeset
946 return int_at_unchecked(array_len_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
947 }
a61af66fc99e Initial load
duke
parents:
diff changeset
948
a61af66fc99e Initial load
duke
parents:
diff changeset
949 virtual int cell_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
950 return array_len() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
954 static ByteSize array_len_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 return cell_offset(array_len_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
956 }
a61af66fc99e Initial load
duke
parents:
diff changeset
957 static ByteSize array_start_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 return cell_offset(array_start_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
959 }
a61af66fc99e Initial load
duke
parents:
diff changeset
960 };
a61af66fc99e Initial load
duke
parents:
diff changeset
961
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // MultiBranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
963 //
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // A MultiBranchData is used to access profiling information for
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // a multi-way branch (*switch bytecodes). It consists of a series
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // of (count, displacement) pairs, which count the number of times each
a61af66fc99e Initial load
duke
parents:
diff changeset
967 // case was taken and specify the data displacment for each branch target.
a61af66fc99e Initial load
duke
parents:
diff changeset
968 class MultiBranchData : public ArrayData {
a61af66fc99e Initial load
duke
parents:
diff changeset
969 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
970 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 default_count_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
972 default_disaplacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
973 case_array_start
a61af66fc99e Initial load
duke
parents:
diff changeset
974 };
a61af66fc99e Initial load
duke
parents:
diff changeset
975 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 relative_count_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
977 relative_displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
978 per_case_cell_count
a61af66fc99e Initial load
duke
parents:
diff changeset
979 };
a61af66fc99e Initial load
duke
parents:
diff changeset
980
a61af66fc99e Initial load
duke
parents:
diff changeset
981 void set_default_displacement(int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
982 array_set_int_at(default_disaplacement_off_set, displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
984 void set_displacement_at(int index, int displacement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 array_set_int_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
986 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
987 relative_displacement_off_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
988 displacement);
a61af66fc99e Initial load
duke
parents:
diff changeset
989 }
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
992 MultiBranchData(DataLayout* layout) : ArrayData(layout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
993 assert(layout->tag() == DataLayout::multi_branch_data_tag, "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996 virtual bool is_MultiBranchData() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
997
a61af66fc99e Initial load
duke
parents:
diff changeset
998 static int compute_cell_count(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
999
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 int number_of_cases() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 int alen = array_len() - 2; // get rid of default case here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 assert(alen % per_case_cell_count == 0, "must be even");
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 return (alen / per_case_cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1005
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 uint default_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 return array_uint_at(default_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 int default_displacement() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 return array_int_at(default_disaplacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1012
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 uint count_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 return array_uint_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 relative_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 int displacement_at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 return array_int_at(case_array_start +
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 index * per_case_cell_count +
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 relative_displacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 static ByteSize default_count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 return array_element_offset(default_count_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 static ByteSize default_displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 return array_element_offset(default_disaplacement_off_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 static ByteSize case_count_offset(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 return case_array_offset() +
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 (per_case_size() * index) +
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 relative_count_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 static ByteSize case_array_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 return array_element_offset(case_array_start);
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 static ByteSize per_case_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 return in_ByteSize(per_case_cell_count) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 static ByteSize relative_count_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 return in_ByteSize(relative_count_off_set) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 static ByteSize relative_displacement_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 return in_ByteSize(relative_displacement_off_set) * cell_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 // Specific initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 void post_initialize(BytecodeStream* stream, methodDataOop mdo);
a61af66fc99e Initial load
duke
parents:
diff changeset
1051
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1056
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1057 class ArgInfoData : public ArrayData {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1058
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1059 public:
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1060 ArgInfoData(DataLayout* layout) : ArrayData(layout) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1061 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
1062 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1063
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1064 virtual bool is_ArgInfoData() { return true; }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1065
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1066
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1067 int number_of_args() {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1068 return array_len();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1069 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1070
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1071 uint arg_modified(int arg) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1072 return array_uint_at(arg);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1073 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1074
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1075 void set_arg_modified(int arg, uint val) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1076 array_set_int_at(arg, val);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1077 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1078
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1079 #ifndef PRODUCT
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1080 void print_data_on(outputStream* st);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1081 #endif
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1082 };
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1083
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 // methodDataOop
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 // A methodDataOop holds information which has been collected about
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 // a method. Its layout looks like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 // | header |
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 // | klass |
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 // | method |
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 // | size of the methodDataOop |
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 // | Data entries... |
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 // | (variable size) |
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 // . .
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // | |
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 // -----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 // The data entry area is a heterogeneous array of DataLayouts. Each
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // DataLayout in the array corresponds to a specific bytecode in the
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 // method. The entries in the array are sorted by the corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 // bytecode. Access to the data is via resource-allocated ProfileData,
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 // which point to the underlying blocks of DataLayout structures.
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // During interpretation, if profiling in enabled, the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 // maintains a method data pointer (mdp), which points at the entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // in the array corresponding to the current bci. In the course of
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 // intepretation, when a bytecode is encountered that has profile data
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // associated with it, the entry pointed to by mdp is updated, then the
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 // mdp is adjusted to point to the next appropriate DataLayout. If mdp
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 // is NULL to begin with, the interpreter assumes that the current method
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 // is not (yet) being profiled.
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 // In methodDataOop parlance, "dp" is a "data pointer", the actual address
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 // of a DataLayout element. A "di" is a "data index", the offset in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 // from the base of the data entry array. A "displacement" is the byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 // in certain ProfileData objects that indicate the amount the mdp must be
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // adjusted in the event of a change in control flow.
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1126
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 class methodDataOopDesc : public oopDesc {
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 friend class ProfileData;
a61af66fc99e Initial load
duke
parents:
diff changeset
1131
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 // Back pointer to the methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 methodOop _method;
a61af66fc99e Initial load
duke
parents:
diff changeset
1134
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 // Size of this oop in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 int _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1137
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 // Cached hint for bci_to_dp and bci_to_data
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 int _hint_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 // Whole-method sticky bits and flags
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 _trap_hist_limit = 16, // decoupled from Deoptimization::Reason_LIMIT
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 _trap_hist_mask = max_jubyte,
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 _extra_data_count = 4 // extra DataLayout headers, for trap history
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 }; // Public flag values
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 uint _nof_decompiles; // count of all nmethod removals
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 uint _nof_overflow_recompiles; // recompile count, excluding recomp. bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 uint _nof_overflow_traps; // trap count, excluding _trap_hist
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 union {
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 intptr_t _align;
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 u1 _array[_trap_hist_limit];
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 } _trap_hist;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 // Support for interprocedural escape analysis, from Thomas Kotzmann.
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 intx _eflags; // flags on escape information
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 intx _arg_local; // bit set of non-escaping arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 intx _arg_stack; // bit set of stack-allocatable arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 intx _arg_returned; // bit set of returned arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1162
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 int _creation_mileage; // method mileage at MDO creation
a61af66fc99e Initial load
duke
parents:
diff changeset
1164
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 // Size of _data array in bytes. (Excludes header and extra_data fields.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 int _data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 // Beginning of the data entries
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 intptr_t _data[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 // Helper for size computation
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 static int compute_data_size(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 static int bytecode_cell_count(Bytecodes::Code code);
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 enum { no_profile_data = -1, variable_cell_count = -2 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 // Helper for initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 DataLayout* data_layout_at(int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 assert(data_index % sizeof(intptr_t) == 0, "unaligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 return (DataLayout*) (((address)_data) + data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1181
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 // Initialize an individual data segment. Returns the size of
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 // the segment in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 int initialize_data(BytecodeStream* stream, int data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 // Helper for data_at
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 DataLayout* limit_data_position() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 return (DataLayout*)((address)data_base() + _data_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 bool out_of_bounds(int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 return data_index >= data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1193
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 // Give each of the data entries a chance to perform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 // data initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 void post_initialize(BytecodeStream* stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 // hint accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 int hint_di() const { return _hint_di; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 void set_hint_di(int di) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 assert(!out_of_bounds(di), "hint_di out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 _hint_di = di;
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 ProfileData* data_before(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 // avoid SEGV on this edge case
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 if (data_size() == 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 int hint = hint_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 if (data_layout_at(hint)->bci() <= bci)
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 return data_at(hint);
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 return first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1213
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 // What is the index of the first data entry?
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 int first_di() { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1216
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // Find or create an extra ProfileData:
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 ProfileData* bci_to_extra_data(int bci, bool create_if_missing);
a61af66fc99e Initial load
duke
parents:
diff changeset
1219
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1220 // return the argument info cell
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1221 ArgInfoData *arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1222
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 static int header_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 return sizeof(methodDataOopDesc)/wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1227
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 // Compute the size of a methodDataOop before it is created.
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 static int compute_allocation_size_in_bytes(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 static int compute_allocation_size_in_words(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 static int compute_extra_data_count(int data_size, int empty_bc_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 // Determine if a given bytecode can have profile information.
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 static bool bytecode_has_profile(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 return bytecode_cell_count(code) != no_profile_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1237
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 // Perform initialization of a new methodDataOop
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 void initialize(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 // My size
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 int object_size_in_bytes() { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 int object_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1246
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 int creation_mileage() const { return _creation_mileage; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 void set_creation_mileage(int x) { _creation_mileage = x; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 bool is_mature() const; // consult mileage and ProfileMaturityPercentage
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 static int mileage_of(methodOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1251
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 // Support for interprocedural escape analysis, from Thomas Kotzmann.
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 enum EscapeFlag {
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 estimated = 1 << 0,
78
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1255 return_local = 1 << 1,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1256 return_allocated = 1 << 2,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1257 allocated_escapes = 1 << 3,
e1e86702e43e 6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
kvn
parents: 45
diff changeset
1258 unknown_modified = 1 << 4
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1260
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 intx eflags() { return _eflags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 intx arg_local() { return _arg_local; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 intx arg_stack() { return _arg_stack; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 intx arg_returned() { return _arg_returned; }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1265 uint arg_modified(int a) { ArgInfoData *aid = arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1266 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
1267 return aid->arg_modified(a); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1268
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 void set_eflags(intx v) { _eflags = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 void set_arg_local(intx v) { _arg_local = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 void set_arg_stack(intx v) { _arg_stack = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 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
1273 void set_arg_modified(int a, uint v) { ArgInfoData *aid = arg_info();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1274 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
1275
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1276 aid->set_arg_modified(a, v); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1277
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 void clear_escape_info() { _eflags = _arg_local = _arg_stack = _arg_returned = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1279
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 // Location and size of data area
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 address data_base() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 return (address) _data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 int data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 return _data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1287
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 methodOop method() { return _method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1290
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 // Get the data at an arbitrary (sort of) data index.
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 ProfileData* data_at(int data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1293
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 // Walk through the data in order.
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 ProfileData* first_data() { return data_at(first_di()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 ProfileData* next_data(ProfileData* current);
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 bool is_valid(ProfileData* current) { return current != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1298
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 // Convert a dp (data pointer) to a di (data index).
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 int dp_to_di(address dp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 return dp - ((address)_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1303
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 address di_to_dp(int di) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 return (address)data_layout_at(di);
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1307
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 // bci to di/dp conversion.
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 address bci_to_dp(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 int bci_to_di(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 return dp_to_di(bci_to_dp(bci));
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1313
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 // Get the data at an arbitrary bci, or NULL if there is none.
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 ProfileData* bci_to_data(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1316
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 // Same, but try to create an extra_data record if one is needed:
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 ProfileData* allocate_bci_to_data(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 ProfileData* data = bci_to_data(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 return (data != NULL) ? data : bci_to_extra_data(bci, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1322
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 // Add a handful of extra data records, for trap tracking.
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 DataLayout* extra_data_base() { return limit_data_position(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 DataLayout* extra_data_limit() { return (DataLayout*)((address)this + object_size_in_bytes()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 int extra_data_size() { return (address)extra_data_limit()
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 - (address)extra_data_base(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 static DataLayout* next_extra(DataLayout* dp) { return (DataLayout*)((address)dp + in_bytes(DataLayout::cell_offset(0))); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1329
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 // Return (uint)-1 for overflow.
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 uint trap_count(int reason) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 assert((uint)reason < _trap_hist_limit, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 return (int)((_trap_hist._array[reason]+1) & _trap_hist_mask) - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 // For loops:
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 static uint trap_reason_limit() { return _trap_hist_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 static uint trap_count_limit() { return _trap_hist_mask; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 uint inc_trap_count(int reason) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 // Count another trap, anywhere in this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 assert(reason >= 0, "must be single trap");
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 if ((uint)reason < _trap_hist_limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 uint cnt1 = 1 + _trap_hist._array[reason];
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 if ((cnt1 & _trap_hist_mask) != 0) { // if no counter overflow...
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 _trap_hist._array[reason] = cnt1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 return cnt1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 return _trap_hist_mask + (++_nof_overflow_traps);
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 // Could not represent the count in the histogram.
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 return (++_nof_overflow_traps);
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1354
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 uint overflow_trap_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 return _nof_overflow_traps;
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 uint overflow_recompile_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 return _nof_overflow_recompiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 void inc_overflow_recompile_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 _nof_overflow_recompiles += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 uint decompile_count() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 return _nof_decompiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 void inc_decompile_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 _nof_decompiles += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1370
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 // Support for code generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 static ByteSize data_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 return byte_offset_of(methodDataOopDesc, _data[0]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1375
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 oop* adr_method() const { return (oop*)&_method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 bool object_is_parsable() const { return _size != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 void set_object_is_parsable(int object_size_in_bytes) { _size = object_size_in_bytes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1380
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 // printing support for method data
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 void print_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1385
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // verification
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 void verify_data_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 };