annotate src/share/vm/oops/methodDataOop.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 48a3fa21394b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2000-2007 Sun Microsystems, Inc. All Rights Reserved.
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 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_methodDataOop.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // DataLayout
a61af66fc99e Initial load
duke
parents:
diff changeset
30 //
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Overlay for generic profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // Some types of data layouts need a length field.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 bool DataLayout::needs_array_len(u1 tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 return (tag == multi_branch_data_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
36 }
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // Perform generic initialization of the data. More specific
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // initialization occurs in overrides of ProfileData::post_initialize.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _header._bits = (intptr_t)0;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _header._struct._tag = tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _header._struct._bci = bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 for (int i = 0; i < cell_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 set_cell_at(i, (intptr_t)0);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (needs_array_len(tag)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // A ProfileData object is created to refer to a section of profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // data in a structured way.
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Constructor for invalid ProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ProfileData::ProfileData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
64 void ProfileData::print_shared(outputStream* st, const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 st->print("bci: %d", bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
66 st->fill_to(tab_width_one);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 st->print("%s", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 int trap = trap_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 if (trap != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
72 st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int flags = data()->flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (flags != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 st->print("flags(%d) ", flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void ProfileData::tab(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 st->fill_to(tab_width_two);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // BitData
a61af66fc99e Initial load
duke
parents:
diff changeset
86 //
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // A BitData corresponds to a one-bit flag. This is used to indicate
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // whether a checkcast bytecode has seen a null value.
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
92 void BitData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 print_shared(st, "BitData");
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
99 //
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // A CounterData corresponds to a simple counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void CounterData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 print_shared(st, "CounterData");
a61af66fc99e Initial load
duke
parents:
diff changeset
105 st->print_cr("count(%u)", count());
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // JumpData
a61af66fc99e Initial load
duke
parents:
diff changeset
111 //
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // A JumpData is used to access profiling information for a direct
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // branch. It is a counter, used for counting the number of branches,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // plus a data displacement, used for realigning the data pointer to
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // the corresponding target bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void JumpData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 target = stream->dest_w();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
127 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void JumpData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 print_shared(st, "JumpData");
a61af66fc99e Initial load
duke
parents:
diff changeset
135 st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // ReceiverTypeData
a61af66fc99e Initial load
duke
parents:
diff changeset
141 //
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // A ReceiverTypeData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // dynamic type check. It consists of a counter which counts the total times
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // that the check is reached, and a series of (klassOop, count) pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // which are used to store a type profile for the receiver of the check.
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 void ReceiverTypeData::follow_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 MarkSweep::mark_and_push(adr_receiver(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void ReceiverTypeData::follow_contents(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 PSParallelCompact::mark_and_push(cm, adr_receiver(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 void ReceiverTypeData::oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 blk->do_oop(adr_receiver(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void ReceiverTypeData::oop_iterate_m(OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 oop* adr = adr_receiver(row);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (mr.contains(adr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 blk->do_oop(adr);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void ReceiverTypeData::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 MarkSweep::adjust_pointer(adr_receiver(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void ReceiverTypeData::update_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (receiver_unchecked(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 PSParallelCompact::adjust_pointer(adr_receiver(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void ReceiverTypeData::update_pointers(HeapWord* beg_addr, HeapWord* end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // The loop bounds could be computed based on beg_addr/end_addr and the
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // boundary test hoisted outside the loop (see klassVTable for an example);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // however, row_limit() is small enough (2) to make that less efficient.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (receiver_unchecked(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 PSParallelCompact::adjust_pointer(adr_receiver(row), beg_addr, end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void ReceiverTypeData::print_receiver_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 if (receiver(row) != NULL) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 receiver(row)->print_value_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 st->print_cr("(%u)", receiver_count(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 void ReceiverTypeData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 print_shared(st, "ReceiverTypeData");
a61af66fc99e Initial load
duke
parents:
diff changeset
231 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void VirtualCallData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 print_shared(st, "VirtualCallData");
a61af66fc99e Initial load
duke
parents:
diff changeset
235 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // RetData
a61af66fc99e Initial load
duke
parents:
diff changeset
241 //
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // A RetData is used to access profiling information for a ret bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // It is composed of a count of the number of times that the ret has
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // been executed, followed by a series of triples of the form
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // (bci, count, di) which count the number of times that some bci was the
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // target of the ret and cache a corresponding displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 void RetData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 set_bci_displacement(row, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 set_bci(row, no_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // release so other threads see a consistent state. bci is used as
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // a valid flag for bci_displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 OrderAccess::release();
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // This routine needs to atomically update the RetData structure, so the
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // caller needs to hold the RetData_lock before it gets here. Since taking
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // the lock can block (and allow GC) and since RetData is a ProfileData is a
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // wrapper around a derived oop, taking the lock in _this_ method will
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // basically cause the 'this' pointer's _data field to contain junk after the
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // lock. We require the caller to take the lock before making the ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // structure. Currently the only caller is InterpreterRuntime::update_mdp_for_ret
a61af66fc99e Initial load
duke
parents:
diff changeset
265 address RetData::fixup_ret(int return_bci, methodDataHandle h_mdo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // First find the mdp which corresponds to the return bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
267 address mdp = h_mdo->bci_to_dp(return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // Now check to see if any of the cache slots are open.
a61af66fc99e Initial load
duke
parents:
diff changeset
270 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 if (bci(row) == no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 set_bci_displacement(row, mdp - dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
273 set_bci_count(row, DataLayout::counter_increment);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // Barrier to ensure displacement is written before the bci; allows
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // the interpreter to read displacement without fear of race condition.
a61af66fc99e Initial load
duke
parents:
diff changeset
276 release_set_bci(row, return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 return mdp;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
285 void RetData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 print_shared(st, "RetData");
a61af66fc99e Initial load
duke
parents:
diff changeset
287 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if (bci(row) != no_bci) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 if (bci(row) != no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 st->print_cr("bci(%d: count(%u) displacement(%d))",
a61af66fc99e Initial load
duke
parents:
diff changeset
297 bci(row), bci_count(row), bci_displacement(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // BranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
305 //
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // A BranchData is used to access profiling data for a two-way branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // It consists of taken and not_taken counts as well as a data displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // for the taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 void BranchData::post_initialize(BytecodeStream* stream, methodDataOop mdo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
312 int target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
313 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
320 void BranchData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 print_shared(st, "BranchData");
a61af66fc99e Initial load
duke
parents:
diff changeset
322 st->print_cr("taken(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
323 taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
324 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 st->print_cr("not taken(%u)", not_taken());
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // MultiBranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
331 //
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // A MultiBranchData is used to access profiling information for
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // a multi-way branch (*switch bytecodes). It consists of a series
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // of (count, displacement) pairs, which count the number of times each
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // case was taken and specify the data displacment for each branch target.
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 int cell_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
339 if (stream->code() == Bytecodes::_tableswitch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
340 Bytecode_tableswitch* sw = Bytecode_tableswitch_at(stream->bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
341 cell_count = 1 + per_case_cell_count * (1 + sw->length()); // 1 for default
a61af66fc99e Initial load
duke
parents:
diff changeset
342 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 Bytecode_lookupswitch* sw = Bytecode_lookupswitch_at(stream->bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
344 cell_count = 1 + per_case_cell_count * (sw->number_of_pairs() + 1); // 1 for default
a61af66fc99e Initial load
duke
parents:
diff changeset
345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
346 return cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 void MultiBranchData::post_initialize(BytecodeStream* stream,
a61af66fc99e Initial load
duke
parents:
diff changeset
350 methodDataOop mdo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
352 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 int my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 int target_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 int offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 if (stream->code() == Bytecodes::_tableswitch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 Bytecode_tableswitch* sw = Bytecode_tableswitch_at(stream->bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
358 int len = sw->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
359 assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
360 for (int count = 0; count < len; count++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 target = sw->dest_offset_at(count) + bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
363 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 target = sw->default_offset() + bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
368 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
369 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 set_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 Bytecode_lookupswitch* sw = Bytecode_lookupswitch_at(stream->bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
375 int npairs = sw->number_of_pairs();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
377 for (int count = 0; count < npairs; count++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 LookupswitchPair *pair = sw->pair_at(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 target = pair->offset() + bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
380 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
381 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
383 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 target = sw->default_offset() + bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
386 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
387 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 set_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
394 void MultiBranchData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 print_shared(st, "MultiBranchData");
a61af66fc99e Initial load
duke
parents:
diff changeset
396 st->print_cr("default_count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
397 default_count(), default_displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
398 int cases = number_of_cases();
a61af66fc99e Initial load
duke
parents:
diff changeset
399 for (int i = 0; i < cases; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 st->print_cr("count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
402 count_at(i), displacement_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // methodDataOop
a61af66fc99e Initial load
duke
parents:
diff changeset
409 //
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // A methodDataOop holds information which has been collected about
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // a method.
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 int methodDataOopDesc::bytecode_cell_count(Bytecodes::Code code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
414 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
416 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
417 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 return ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
420 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 return BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
424 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
425 return CounterData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
426 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
427 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
428 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
429 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
431 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
432 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
433 return VirtualCallData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
434 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
435 return RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
436 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
437 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
438 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
439 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
440 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
441 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
442 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
443 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
444 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
445 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
446 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
447 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
448 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
449 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
450 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
451 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
452 return BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
453 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
454 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
455 return variable_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
456 }
a61af66fc99e Initial load
duke
parents:
diff changeset
457 return no_profile_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // Compute the size of the profiling information corresponding to
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // the current bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
462 int methodDataOopDesc::compute_data_size(BytecodeStream* stream) {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 int cell_count = bytecode_cell_count(stream->code());
a61af66fc99e Initial load
duke
parents:
diff changeset
464 if (cell_count == no_profile_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 if (cell_count == variable_cell_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
468 cell_count = MultiBranchData::compute_cell_count(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // Note: cell_count might be zero, meaning that there is just
a61af66fc99e Initial load
duke
parents:
diff changeset
471 // a DataLayout header, with no extra cells.
a61af66fc99e Initial load
duke
parents:
diff changeset
472 assert(cell_count >= 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
473 return DataLayout::compute_size_in_bytes(cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 int methodDataOopDesc::compute_extra_data_count(int data_size, int empty_bc_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (ProfileTraps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // Assume that up to 3% of BCIs with no MDP will need to allocate one.
a61af66fc99e Initial load
duke
parents:
diff changeset
479 int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // If the method is large, let the extra BCIs grow numerous (to ~1%).
a61af66fc99e Initial load
duke
parents:
diff changeset
481 int one_percent_of_data
a61af66fc99e Initial load
duke
parents:
diff changeset
482 = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
a61af66fc99e Initial load
duke
parents:
diff changeset
483 if (extra_data_count < one_percent_of_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
484 extra_data_count = one_percent_of_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 if (extra_data_count > empty_bc_count)
a61af66fc99e Initial load
duke
parents:
diff changeset
486 extra_data_count = empty_bc_count; // no need for more
a61af66fc99e Initial load
duke
parents:
diff changeset
487 return extra_data_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
488 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491 }
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // Compute the size of the methodDataOop necessary to store
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // profiling information about a given method. Size is in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
495 int methodDataOopDesc::compute_allocation_size_in_bytes(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 BytecodeStream stream(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 Bytecodes::Code c;
a61af66fc99e Initial load
duke
parents:
diff changeset
499 int empty_bc_count = 0; // number of bytecodes lacking data
a61af66fc99e Initial load
duke
parents:
diff changeset
500 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 int size_in_bytes = compute_data_size(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
502 data_size += size_in_bytes;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 if (size_in_bytes == 0) empty_bc_count += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
504 }
a61af66fc99e Initial load
duke
parents:
diff changeset
505 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // Add some extra DataLayout cells (at least one) to track stray traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
508 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 return object_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // Compute the size of the methodDataOop necessary to store
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // profiling information about a given method. Size is in words
a61af66fc99e Initial load
duke
parents:
diff changeset
516 int methodDataOopDesc::compute_allocation_size_in_words(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 int byte_size = compute_allocation_size_in_bytes(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
518 int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 return align_object_size(word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
521
a61af66fc99e Initial load
duke
parents:
diff changeset
522 // Initialize an individual data segment. Returns the size of
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // the segment in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
524 int methodDataOopDesc::initialize_data(BytecodeStream* stream,
a61af66fc99e Initial load
duke
parents:
diff changeset
525 int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 int cell_count = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 int tag = DataLayout::no_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
529 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
530 switch (c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
531 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
532 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
533 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 cell_count = ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
536 tag = DataLayout::receiver_type_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 cell_count = BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
539 tag = DataLayout::bit_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
541 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
542 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
543 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
544 cell_count = CounterData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
545 tag = DataLayout::counter_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
548 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
549 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
550 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
551 cell_count = JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
552 tag = DataLayout::jump_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
554 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
555 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
556 cell_count = VirtualCallData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
557 tag = DataLayout::virtual_call_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
559 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
560 cell_count = RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
561 tag = DataLayout::ret_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
562 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
564 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
565 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
566 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
567 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
568 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
569 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
570 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
571 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
572 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
573 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
574 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
575 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
576 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
577 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
578 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
579 cell_count = BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
580 tag = DataLayout::branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
581 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
583 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
584 cell_count = MultiBranchData::compute_cell_count(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 tag = DataLayout::multi_branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 assert(tag == DataLayout::multi_branch_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
589 cell_count == bytecode_cell_count(c), "cell counts must agree");
a61af66fc99e Initial load
duke
parents:
diff changeset
590 if (cell_count >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
591 assert(tag != DataLayout::no_tag, "bad tag");
a61af66fc99e Initial load
duke
parents:
diff changeset
592 assert(bytecode_has_profile(c), "agree w/ BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
593 data_layout->initialize(tag, stream->bci(), cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 return DataLayout::compute_size_in_bytes(cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
596 assert(!bytecode_has_profile(c), "agree w/ !BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
597 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // Get the data at an arbitrary (sort of) data index.
a61af66fc99e Initial load
duke
parents:
diff changeset
602 ProfileData* methodDataOopDesc::data_at(int data_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 if (out_of_bounds(data_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 }
a61af66fc99e Initial load
duke
parents:
diff changeset
606 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 switch (data_layout->tag()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 case DataLayout::no_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
610 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
611 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
612 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
613 case DataLayout::bit_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
614 return new BitData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
615 case DataLayout::counter_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
616 return new CounterData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 case DataLayout::jump_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
618 return new JumpData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 case DataLayout::receiver_type_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
620 return new ReceiverTypeData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
621 case DataLayout::virtual_call_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
622 return new VirtualCallData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
623 case DataLayout::ret_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
624 return new RetData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
625 case DataLayout::branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
626 return new BranchData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 case DataLayout::multi_branch_data_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
628 return new MultiBranchData(data_layout);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 };
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // Iteration over data.
a61af66fc99e Initial load
duke
parents:
diff changeset
633 ProfileData* methodDataOopDesc::next_data(ProfileData* current) {
a61af66fc99e Initial load
duke
parents:
diff changeset
634 int current_index = dp_to_di(current->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
635 int next_index = current_index + current->size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
636 ProfileData* next = data_at(next_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
637 return next;
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // Give each of the data entries a chance to perform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // data initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
642 void methodDataOopDesc::post_initialize(BytecodeStream* stream) {
a61af66fc99e Initial load
duke
parents:
diff changeset
643 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
644 ProfileData* data;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 for (data = first_data(); is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
646 stream->set_start(data->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
647 stream->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
648 data->post_initialize(stream, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650 }
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // Initialize the methodDataOop corresponding to a given method.
a61af66fc99e Initial load
duke
parents:
diff changeset
653 void methodDataOopDesc::initialize(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Set the method back-pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
657 _method = method();
a61af66fc99e Initial load
duke
parents:
diff changeset
658 set_creation_mileage(mileage_of(method()));
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // Initialize flags and trap history.
a61af66fc99e Initial load
duke
parents:
diff changeset
661 _nof_decompiles = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 _nof_overflow_recompiles = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
663 _nof_overflow_traps = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
664 assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
a61af66fc99e Initial load
duke
parents:
diff changeset
665 Copy::zero_to_words((HeapWord*) &_trap_hist,
a61af66fc99e Initial load
duke
parents:
diff changeset
666 sizeof(_trap_hist) / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
667
a61af66fc99e Initial load
duke
parents:
diff changeset
668 // Go through the bytecodes and allocate and initialize the
a61af66fc99e Initial load
duke
parents:
diff changeset
669 // corresponding data cells.
a61af66fc99e Initial load
duke
parents:
diff changeset
670 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
671 int empty_bc_count = 0; // number of bytecodes lacking data
a61af66fc99e Initial load
duke
parents:
diff changeset
672 BytecodeStream stream(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 Bytecodes::Code c;
a61af66fc99e Initial load
duke
parents:
diff changeset
674 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 int size_in_bytes = initialize_data(&stream, data_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
676 data_size += size_in_bytes;
a61af66fc99e Initial load
duke
parents:
diff changeset
677 if (size_in_bytes == 0) empty_bc_count += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 _data_size = data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // Add some extra DataLayout cells (at least one) to track stray traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
683 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
684 object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
687 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // In that situation, _hint_di is never used, but at
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // least well-defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
690 _hint_di = first_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 post_initialize(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694 set_object_is_parsable(object_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 // Get a measure of how much mileage the method has on it.
a61af66fc99e Initial load
duke
parents:
diff changeset
698 int methodDataOopDesc::mileage_of(methodOop method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 int mileage = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
700 int iic = method->interpreter_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
701 if (mileage < iic) mileage = iic;
a61af66fc99e Initial load
duke
parents:
diff changeset
702
a61af66fc99e Initial load
duke
parents:
diff changeset
703 InvocationCounter* ic = method->invocation_counter();
a61af66fc99e Initial load
duke
parents:
diff changeset
704 InvocationCounter* bc = method->backedge_counter();
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 int icval = ic->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
707 if (ic->carry()) icval += CompileThreshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if (mileage < icval) mileage = icval;
a61af66fc99e Initial load
duke
parents:
diff changeset
709 int bcval = bc->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
710 if (bc->carry()) bcval += CompileThreshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 if (mileage < bcval) mileage = bcval;
a61af66fc99e Initial load
duke
parents:
diff changeset
712 return mileage;
a61af66fc99e Initial load
duke
parents:
diff changeset
713 }
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 bool methodDataOopDesc::is_mature() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 uint current = mileage_of(_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
717 uint initial = creation_mileage();
a61af66fc99e Initial load
duke
parents:
diff changeset
718 if (current < initial)
a61af66fc99e Initial load
duke
parents:
diff changeset
719 return true; // some sort of overflow
a61af66fc99e Initial load
duke
parents:
diff changeset
720 uint target;
a61af66fc99e Initial load
duke
parents:
diff changeset
721 if (ProfileMaturityPercentage <= 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
722 target = (uint) -ProfileMaturityPercentage; // absolute value
a61af66fc99e Initial load
duke
parents:
diff changeset
723 else
a61af66fc99e Initial load
duke
parents:
diff changeset
724 target = (uint)( (ProfileMaturityPercentage * CompileThreshold) / 100 );
a61af66fc99e Initial load
duke
parents:
diff changeset
725 return (current >= initial + target);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 }
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // Translate a bci to its corresponding data index (di).
a61af66fc99e Initial load
duke
parents:
diff changeset
729 address methodDataOopDesc::bci_to_dp(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
732 ProfileData* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
733 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 if (data->bci() >= bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
735 if (data->bci() == bci) set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
736 else if (prev != NULL) set_hint_di(dp_to_di(prev->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
737 return data->dp();
a61af66fc99e Initial load
duke
parents:
diff changeset
738 }
a61af66fc99e Initial load
duke
parents:
diff changeset
739 prev = data;
a61af66fc99e Initial load
duke
parents:
diff changeset
740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
741 return (address)limit_data_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
742 }
a61af66fc99e Initial load
duke
parents:
diff changeset
743
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // Translate a bci to its corresponding data, or NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ProfileData* methodDataOopDesc::bci_to_data(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
746 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
748 if (data->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
749 set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
750 return data;
a61af66fc99e Initial load
duke
parents:
diff changeset
751 } else if (data->bci() > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754 }
a61af66fc99e Initial load
duke
parents:
diff changeset
755 return bci_to_extra_data(bci, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // Translate a bci to its corresponding extra data, or NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
759 ProfileData* methodDataOopDesc::bci_to_extra_data(int bci, bool create_if_missing) {
a61af66fc99e Initial load
duke
parents:
diff changeset
760 DataLayout* dp = extra_data_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
761 DataLayout* end = extra_data_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
762 DataLayout* avail = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
763 for (; dp < end; dp = next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // since the data structure is monotonic.
a61af66fc99e Initial load
duke
parents:
diff changeset
766 if (dp->tag() == DataLayout::no_tag) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
767 if (dp->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
769 return new BitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
772 if (create_if_missing && dp < end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
773 // Allocate this one. There is no mutual exclusion,
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // so two threads could allocate different BCIs to the
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // same data layout. This means these extra data
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // records, like most other MDO contents, must not be
a61af66fc99e Initial load
duke
parents:
diff changeset
777 // trusted too much.
a61af66fc99e Initial load
duke
parents:
diff changeset
778 DataLayout temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
779 temp.initialize(DataLayout::bit_data_tag, bci, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
780 dp->release_set_header(temp.header());
a61af66fc99e Initial load
duke
parents:
diff changeset
781 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
782 //NO: assert(dp->bci() == bci, "no concurrent allocation");
a61af66fc99e Initial load
duke
parents:
diff changeset
783 return new BitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
786 }
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
789 void methodDataOopDesc::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
790 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 ProfileData* data = first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
792 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
793 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
794 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
797 DataLayout* dp = extra_data_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
798 DataLayout* end = extra_data_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
799 for (; dp < end; dp = next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
800 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
801 // since the data structure is monotonic.
a61af66fc99e Initial load
duke
parents:
diff changeset
802 if (dp->tag() == DataLayout::no_tag) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
803 if (dp == extra_data_base())
a61af66fc99e Initial load
duke
parents:
diff changeset
804 st->print_cr("--- Extra data:");
a61af66fc99e Initial load
duke
parents:
diff changeset
805 data = new BitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
807 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
808 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
811 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
812
a61af66fc99e Initial load
duke
parents:
diff changeset
813 void methodDataOopDesc::verify_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
814 NEEDS_CLEANUP;
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // not yet implemented.
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }