annotate src/share/vm/oops/methodData.cpp @ 12355:cefad50507d8

Merge with hs25-b53
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 10:38:03 +0200
parents 836a62f43af9
children 359f7e70ae7f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 941
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 941
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 941
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27 #include "interpreter/bytecode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "interpreter/bytecodeStream.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "interpreter/linkResolver.hpp"
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
30 #include "memory/heapInspection.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
31 #include "oops/methodData.hpp"
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
32 #include "prims/jvmtiRedefineClasses.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33 #include "runtime/compilationPolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
34 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
35 #include "runtime/handles.inline.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // DataLayout
a61af66fc99e Initial load
duke
parents:
diff changeset
39 //
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // Overlay for generic profiling data.
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Some types of data layouts need a length field.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 bool DataLayout::needs_array_len(u1 tag) {
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
44 return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Perform generic initialization of the data. More specific
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // initialization occurs in overrides of ProfileData::post_initialize.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void DataLayout::initialize(u1 tag, u2 bci, int cell_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _header._bits = (intptr_t)0;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _header._struct._tag = tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _header._struct._bci = bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 for (int i = 0; i < cell_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 set_cell_at(i, (intptr_t)0);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 if (needs_array_len(tag)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
61 void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
62 ResourceMark m;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
63 data_in()->clean_weak_klass_links(cl);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
64 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
65
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
66
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
69 //
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // A ProfileData object is created to refer to a section of profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // data in a structured way.
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Constructor for invalid ProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ProfileData::ProfileData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void ProfileData::print_shared(outputStream* st, const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 st->print("bci: %d", bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
81 st->fill_to(tab_width_one);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 st->print("%s", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int trap = trap_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (trap != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
87 st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int flags = data()->flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 if (flags != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
91 st->print("flags(%d) ", flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 void ProfileData::tab(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 st->fill_to(tab_width_two);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // BitData
a61af66fc99e Initial load
duke
parents:
diff changeset
101 //
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // A BitData corresponds to a one-bit flag. This is used to indicate
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // whether a checkcast bytecode has seen a null value.
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void BitData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 print_shared(st, "BitData");
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // A CounterData corresponds to a simple counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void CounterData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 print_shared(st, "CounterData");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 st->print_cr("count(%u)", count());
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // JumpData
a61af66fc99e Initial load
duke
parents:
diff changeset
126 //
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // A JumpData is used to access profiling information for a direct
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // branch. It is a counter, used for counting the number of branches,
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // plus a data displacement, used for realigning the data pointer to
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // the corresponding target bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
131
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
132 void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 target = stream->dest_w();
a61af66fc99e Initial load
duke
parents:
diff changeset
138 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
148 void JumpData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 print_shared(st, "JumpData");
a61af66fc99e Initial load
duke
parents:
diff changeset
150 st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // ReceiverTypeData
a61af66fc99e Initial load
duke
parents:
diff changeset
156 //
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // A ReceiverTypeData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // dynamic type check. It consists of a counter which counts the total times
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
159 // that the check is reached, and a series of (Klass*, count) pairs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // which are used to store a type profile for the receiver of the check.
a61af66fc99e Initial load
duke
parents:
diff changeset
161
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
162 void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
163 for (uint row = 0; row < row_limit(); row++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
164 Klass* p = receiver(row);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
165 if (p != NULL && !p->is_loader_alive(is_alive_cl)) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
166 clear_row(row);
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
167 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
168 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
169 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
170
9765
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
171 #ifdef GRAAL
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
172 void VirtualCallData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
173 ReceiverTypeData::clean_weak_klass_links(is_alive_cl);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
174 for (uint row = 0; row < method_row_limit(); row++) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
175 Method* p = method(row);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
176 if (p != NULL && !p->method_holder()->is_loader_alive(is_alive_cl)) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
177 clear_method_row(row);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
178 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
179 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
180 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
181 #endif // GRAAL
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
182
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void ReceiverTypeData::print_receiver_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (receiver(row) != NULL) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 st->print_cr("count(%u) entries(%u)", count(), entries);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
191 int total = count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
192 for (row = 0; row < row_limit(); row++) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
193 if (receiver(row) != NULL) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
194 total += receiver_count(row);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
195 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
196 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 receiver(row)->print_value_on(st);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
201 st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void ReceiverTypeData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 print_shared(st, "ReceiverTypeData");
a61af66fc99e Initial load
duke
parents:
diff changeset
207 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void VirtualCallData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 print_shared(st, "VirtualCallData");
a61af66fc99e Initial load
duke
parents:
diff changeset
211 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // RetData
a61af66fc99e Initial load
duke
parents:
diff changeset
217 //
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // A RetData is used to access profiling information for a ret bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // It is composed of a count of the number of times that the ret has
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // been executed, followed by a series of triples of the form
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // (bci, count, di) which count the number of times that some bci was the
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // target of the ret and cache a corresponding displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
223
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
224 void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 set_bci_displacement(row, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 set_bci(row, no_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // release so other threads see a consistent state. bci is used as
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // a valid flag for bci_displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
231 OrderAccess::release();
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // This routine needs to atomically update the RetData structure, so the
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // caller needs to hold the RetData_lock before it gets here. Since taking
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // the lock can block (and allow GC) and since RetData is a ProfileData is a
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // wrapper around a derived oop, taking the lock in _this_ method will
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // basically cause the 'this' pointer's _data field to contain junk after the
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // lock. We require the caller to take the lock before making the ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // structure. Currently the only caller is InterpreterRuntime::update_mdp_for_ret
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
241 address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // First find the mdp which corresponds to the return bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
243 address mdp = h_mdo->bci_to_dp(return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Now check to see if any of the cache slots are open.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 if (bci(row) == no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 set_bci_displacement(row, mdp - dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
249 set_bci_count(row, DataLayout::counter_increment);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Barrier to ensure displacement is written before the bci; allows
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // the interpreter to read displacement without fear of race condition.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 release_set_bci(row, return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 return mdp;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
261 void RetData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 print_shared(st, "RetData");
a61af66fc99e Initial load
duke
parents:
diff changeset
263 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (bci(row) != no_bci) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
269 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 if (bci(row) != no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
272 st->print_cr("bci(%d: count(%u) displacement(%d))",
a61af66fc99e Initial load
duke
parents:
diff changeset
273 bci(row), bci_count(row), bci_displacement(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // BranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
281 //
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // A BranchData is used to access profiling data for a two-way branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // It consists of taken and not_taken counts as well as a data displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // for the taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
285
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
286 void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
287 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
288 int target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
289 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
290 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void BranchData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 print_shared(st, "BranchData");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 st->print_cr("taken(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
299 taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
300 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 st->print_cr("not taken(%u)", not_taken());
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // MultiBranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
307 //
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // A MultiBranchData is used to access profiling information for
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // a multi-way branch (*switch bytecodes). It consists of a series
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // of (count, displacement) pairs, which count the number of times each
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // case was taken and specify the data displacment for each branch target.
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int cell_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 if (stream->code() == Bytecodes::_tableswitch) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
316 Bytecode_tableswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
317 cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
0
a61af66fc99e Initial load
duke
parents:
diff changeset
318 } else {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
319 Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
320 cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
0
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 return cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 void MultiBranchData::post_initialize(BytecodeStream* stream,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
326 MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
327 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
328 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 int my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 int target_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 int offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 if (stream->code() == Bytecodes::_tableswitch) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
333 Bytecode_tableswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
334 int len = sw.length();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335 assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
336 for (int count = 0; count < len; count++) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
337 target = sw.dest_offset_at(count) + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
339 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 }
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
343 target = sw.default_offset() + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
344 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
345 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 set_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 } else {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
350 Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
351 int npairs = sw.number_of_pairs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
352 assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
353 for (int count = 0; count < npairs; count++) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
354 LookupswitchPair pair = sw.pair_at(count);
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
355 target = pair.offset() + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
356 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
357 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
359 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 }
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
361 target = sw.default_offset() + bci();
0
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_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
370 void MultiBranchData::print_data_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 print_shared(st, "MultiBranchData");
a61af66fc99e Initial load
duke
parents:
diff changeset
372 st->print_cr("default_count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
373 default_count(), default_displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
374 int cases = number_of_cases();
a61af66fc99e Initial load
duke
parents:
diff changeset
375 for (int i = 0; i < cases; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 st->print_cr("count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
378 count_at(i), displacement_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
382
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
383 #ifndef PRODUCT
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
384 void ArgInfoData::print_data_on(outputStream* st) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
385 print_shared(st, "ArgInfoData");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
386 int nargs = number_of_args();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
387 for (int i = 0; i < nargs; i++) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
388 st->print(" 0x%x", arg_modified(i));
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
389 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
390 st->cr();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
391 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
392
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
393 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // ==================================================================
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
395 // MethodData*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
396 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
397 // A MethodData* holds information which has been collected about
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // a method.
a61af66fc99e Initial load
duke
parents:
diff changeset
399
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
400 MethodData* MethodData::allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
401 int size = MethodData::compute_allocation_size_in_words(method);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
402
10376
a1ebd310d5c1 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 10107
diff changeset
403 return new (loader_data, size, false, MetaspaceObj::MethodDataType, THREAD)
a1ebd310d5c1 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 10107
diff changeset
404 MethodData(method(), size, CHECK_NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
405 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
406
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
407 int MethodData::bytecode_cell_count(Bytecodes::Code code) {
8883
b9a918201d47 Merge with hsx25
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8616 8860
diff changeset
408 #if defined(COMPILER1) && !(defined(COMPILER2) || defined(GRAAL))
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
409 return no_profile_data;
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
410 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
411 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
413 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
414 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
415 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 return ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
417 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 return BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
421 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return CounterData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
423 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
424 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
425 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
426 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
427 return JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
428 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
429 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return VirtualCallData::static_cell_count();
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
431 case Bytecodes::_invokedynamic:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
432 return CounterData::static_cell_count();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
434 return RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
435 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
436 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
437 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
438 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
439 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
440 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
441 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
442 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
443 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
444 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
445 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
446 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
447 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
448 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
449 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
450 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
451 return BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
453 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
454 return variable_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456 return no_profile_data;
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
457 #endif
0
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.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
462 int MethodData::compute_data_size(BytecodeStream* stream) {
0
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
8616
d343737786fe changed profiling of exceptions so that the ExceptionSeen flag also works without GRAALVM
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8615
diff changeset
476 #ifdef GRAAL
6948
e522a00b91aa Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/ after NPG - C++ build works
Doug Simon <doug.simon@oracle.com>
parents: 5150 6725
diff changeset
477 int MethodData::compute_extra_data_count(int data_size, int empty_bc_count) {
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
478 if (!ProfileTraps) return 0;
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
479
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
480 // Assume that up to 30% of the possibly trapping BCIs with no MDP will need to allocate one.
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
481 return MIN2(empty_bc_count, MAX2(4, (empty_bc_count * 30) / 100));
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
482 }
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
483 #else
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
484 int MethodData::compute_extra_data_count(int data_size, int empty_bc_count) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
485 if (ProfileTraps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // Assume that up to 3% of BCIs with no MDP will need to allocate one.
a61af66fc99e Initial load
duke
parents:
diff changeset
487 int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // If the method is large, let the extra BCIs grow numerous (to ~1%).
a61af66fc99e Initial load
duke
parents:
diff changeset
489 int one_percent_of_data
a61af66fc99e Initial load
duke
parents:
diff changeset
490 = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 if (extra_data_count < one_percent_of_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
492 extra_data_count = one_percent_of_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 if (extra_data_count > empty_bc_count)
a61af66fc99e Initial load
duke
parents:
diff changeset
494 extra_data_count = empty_bc_count; // no need for more
a61af66fc99e Initial load
duke
parents:
diff changeset
495 return extra_data_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
496 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
497 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
500 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
501
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
502 // Compute the size of the MethodData* necessary to store
0
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // profiling information about a given method. Size is in bytes.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
504 int MethodData::compute_allocation_size_in_bytes(methodHandle method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
505 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
506 BytecodeStream stream(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
507 Bytecodes::Code c;
a61af66fc99e Initial load
duke
parents:
diff changeset
508 int empty_bc_count = 0; // number of bytecodes lacking data
a61af66fc99e Initial load
duke
parents:
diff changeset
509 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 int size_in_bytes = compute_data_size(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
511 data_size += size_in_bytes;
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
512
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
513 if (is_empty_data(size_in_bytes, c)) empty_bc_count++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
515 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // Add some extra DataLayout cells (at least one) to track stray traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
518 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
519 object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
520
7154
5d0bb7d52783 changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
Doug Simon <doug.simon@oracle.com>
parents: 6948
diff changeset
521 #ifndef GRAALVM
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
522 // Add a cell to record information about modified arguments.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
523 int arg_size = method->size_of_parameters();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
524 object_size += DataLayout::compute_size_in_bytes(arg_size+1);
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
525 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 return object_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 }
a61af66fc99e Initial load
duke
parents:
diff changeset
528
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
529 // Compute the size of the MethodData* necessary to store
0
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // profiling information about a given method. Size is in words
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
531 int MethodData::compute_allocation_size_in_words(methodHandle method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
532 int byte_size = compute_allocation_size_in_bytes(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
534 return align_object_size(word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // Initialize an individual data segment. Returns the size of
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // the segment in bytes.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
539 int MethodData::initialize_data(BytecodeStream* stream,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540 int data_index) {
8883
b9a918201d47 Merge with hsx25
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8616 8860
diff changeset
541 #if defined(COMPILER1) && !(defined(COMPILER2) || defined(GRAAL))
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
542 return 0;
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
543 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
544 int cell_count = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
545 int tag = DataLayout::no_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
547 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
548 switch (c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
550 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
551 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
552 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 cell_count = ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
554 tag = DataLayout::receiver_type_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 cell_count = BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
557 tag = DataLayout::bit_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
561 case Bytecodes::_invokestatic:
a61af66fc99e Initial load
duke
parents:
diff changeset
562 cell_count = CounterData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
563 tag = DataLayout::counter_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
566 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
567 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
568 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
569 cell_count = JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
570 tag = DataLayout::jump_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
571 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
573 case Bytecodes::_invokeinterface:
a61af66fc99e Initial load
duke
parents:
diff changeset
574 cell_count = VirtualCallData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
575 tag = DataLayout::virtual_call_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 break;
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
577 case Bytecodes::_invokedynamic:
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
578 // %%% should make a type profile for any invokedynamic that takes a ref argument
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
579 cell_count = CounterData::static_cell_count();
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
580 tag = DataLayout::counter_data_tag;
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
581 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
582 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
583 cell_count = RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
584 tag = DataLayout::ret_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
585 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
587 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
588 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
589 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
590 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
591 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
592 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
593 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
594 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
595 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
596 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
597 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
598 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
599 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
600 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
601 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
602 cell_count = BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
603 tag = DataLayout::branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
606 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
607 cell_count = MultiBranchData::compute_cell_count(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
608 tag = DataLayout::multi_branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
609 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611 assert(tag == DataLayout::multi_branch_data_tag ||
a61af66fc99e Initial load
duke
parents:
diff changeset
612 cell_count == bytecode_cell_count(c), "cell counts must agree");
a61af66fc99e Initial load
duke
parents:
diff changeset
613 if (cell_count >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
614 assert(tag != DataLayout::no_tag, "bad tag");
a61af66fc99e Initial load
duke
parents:
diff changeset
615 assert(bytecode_has_profile(c), "agree w/ BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
616 data_layout->initialize(tag, stream->bci(), cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 return DataLayout::compute_size_in_bytes(cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
618 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
619 assert(!bytecode_has_profile(c), "agree w/ !BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
620 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
622 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // Get the data at an arbitrary (sort of) data index.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
626 ProfileData* MethodData::data_at(int data_index) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if (out_of_bounds(data_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630 DataLayout* data_layout = data_layout_at(data_index);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
631 return data_layout->data_in();
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
632 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
633
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
634 ProfileData* DataLayout::data_in() {
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
635 switch (tag()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
636 case DataLayout::no_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
637 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
638 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
639 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
640 case DataLayout::bit_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
641 return new BitData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
642 case DataLayout::counter_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
643 return new CounterData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
644 case DataLayout::jump_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
645 return new JumpData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
646 case DataLayout::receiver_type_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
647 return new ReceiverTypeData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
648 case DataLayout::virtual_call_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
649 return new VirtualCallData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 case DataLayout::ret_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
651 return new RetData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
652 case DataLayout::branch_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
653 return new BranchData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 case DataLayout::multi_branch_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
655 return new MultiBranchData(this);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
656 case DataLayout::arg_info_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
657 return new ArgInfoData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
658 };
a61af66fc99e Initial load
duke
parents:
diff changeset
659 }
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // Iteration over data.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
662 ProfileData* MethodData::next_data(ProfileData* current) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 int current_index = dp_to_di(current->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
664 int next_index = current_index + current->size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
665 ProfileData* next = data_at(next_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 return next;
a61af66fc99e Initial load
duke
parents:
diff changeset
667 }
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 // Give each of the data entries a chance to perform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // data initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
671 void MethodData::post_initialize(BytecodeStream* stream) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
672 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
673 ProfileData* data;
a61af66fc99e Initial load
duke
parents:
diff changeset
674 for (data = first_data(); is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 stream->set_start(data->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
676 stream->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
677 data->post_initialize(stream, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
681 // Initialize the MethodData* corresponding to a given method.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
682 MethodData::MethodData(methodHandle method, int size, TRAPS) {
8611
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
683 // Set the method back-pointer.
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
684 _method = method();
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
685 initialize();
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
686 }
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
687
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
688 void MethodData::initialize() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
689 No_Safepoint_Verifier no_safepoint; // init function atomic wrt GC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
690 ResourceMark rm;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
691
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
692 init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
693 set_creation_mileage(mileage_of(method()));
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // Go through the bytecodes and allocate and initialize the
a61af66fc99e Initial load
duke
parents:
diff changeset
696 // corresponding data cells.
a61af66fc99e Initial load
duke
parents:
diff changeset
697 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
698 int empty_bc_count = 0; // number of bytecodes lacking data
8712
3efdfd6ddbf2 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 7956
diff changeset
699 _data[0] = 0; // apparently not set below.
8611
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
700 BytecodeStream stream(method());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
701 Bytecodes::Code c;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
703 int size_in_bytes = initialize_data(&stream, data_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
704 data_size += size_in_bytes;
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
705
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
706 if (is_empty_data(size_in_bytes, c)) empty_bc_count++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708 _data_size = data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
709 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // Add some extra DataLayout cells (at least one) to track stray traps.
a61af66fc99e Initial load
duke
parents:
diff changeset
712 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
713 int extra_size = extra_data_count * DataLayout::compute_size_in_bytes(0);
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
714 object_size += extra_size;
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
715
8611
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
716 Copy::zero_to_bytes((HeapWord*) extra_data_base(), extra_size);
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
717
7154
5d0bb7d52783 changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
Doug Simon <doug.simon@oracle.com>
parents: 6948
diff changeset
718 #ifndef GRAALVM
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
719 // Add a cell to record information about modified arguments.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
720 // Set up _args_modified array after traps cells so that
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
721 // the code for traps cells works.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
722 DataLayout *dp = data_layout_at(data_size + extra_size);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
723
8615
91c79e13b9cf minor C1/C2 fix
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8611
diff changeset
724 int arg_size = method()->size_of_parameters();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
725 dp->initialize(DataLayout::arg_info_data_tag, 0, arg_size+1);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
726
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
727 object_size += DataLayout::compute_size_in_bytes(arg_size+1);
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
728 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // In that situation, _hint_di is never used, but at
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // least well-defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
734 _hint_di = first_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 post_initialize(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
737
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
738 set_size(object_size);
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
739 }
8712
3efdfd6ddbf2 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 7956
diff changeset
740
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
741 void MethodData::init() {
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
742 _invocation_counter.init();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
743 _backedge_counter.init();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
744 _invocation_counter_start = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
745 _backedge_counter_start = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
746 _num_loops = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
747 _num_blocks = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
748 _highest_comp_level = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
749 _highest_osr_comp_level = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
750 _would_profile = true;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
751
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
752 // Initialize flags and trap history.
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
753 _nof_decompiles = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
754 _nof_overflow_recompiles = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
755 _nof_overflow_traps = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
756 clear_escape_info();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
757 assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
758 Copy::zero_to_words((HeapWord*) &_trap_hist,
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
759 sizeof(_trap_hist) / sizeof(HeapWord));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761
6948
e522a00b91aa Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/ after NPG - C++ build works
Doug Simon <doug.simon@oracle.com>
parents: 5150 6725
diff changeset
762 bool MethodData::is_empty_data(int size_in_bytes, Bytecodes::Code code) {
8616
d343737786fe changed profiling of exceptions so that the ExceptionSeen flag also works without GRAALVM
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8615
diff changeset
763 #ifdef GRAAL
4568
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
764 return size_in_bytes == 0 && Bytecodes::can_trap(code);
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
765 #else
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
766 return size_in_bytes == 0;
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
767 #endif
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
768 }
8e1d9c27989a better allocation of methodData's extraData so that exceptions and deoptimizations can be recorded more accurately
Christian Haeubl <christian.haeubl@oracle.com>
parents: 4439
diff changeset
769
0
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // Get a measure of how much mileage the method has on it.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
771 int MethodData::mileage_of(Method* method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
772 int mileage = 0;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
773 if (TieredCompilation) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
774 mileage = MAX2(method->invocation_count(), method->backedge_count());
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
775 } else {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
776 int iic = method->interpreter_invocation_count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
777 if (mileage < iic) mileage = iic;
10105
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
778 MethodCounters* mcs = method->method_counters();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
779 if (mcs != NULL) {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
780 InvocationCounter* ic = mcs->invocation_counter();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
781 InvocationCounter* bc = mcs->backedge_counter();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
782 int icval = ic->count();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
783 if (ic->carry()) icval += CompileThreshold;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
784 if (mileage < icval) mileage = icval;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
785 int bcval = bc->count();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
786 if (bc->carry()) bcval += CompileThreshold;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
787 if (mileage < bcval) mileage = bcval;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
788 }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
789 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
790 return mileage;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
793 bool MethodData::is_mature() const {
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
794 return CompilationPolicy::policy()->is_mature(_method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 // Translate a bci to its corresponding data index (di).
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
798 address MethodData::bci_to_dp(int bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
799 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
800 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 ProfileData* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
802 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
803 if (data->bci() >= bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
804 if (data->bci() == bci) set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
805 else if (prev != NULL) set_hint_di(dp_to_di(prev->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
806 return data->dp();
a61af66fc99e Initial load
duke
parents:
diff changeset
807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
808 prev = data;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810 return (address)limit_data_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
811 }
a61af66fc99e Initial load
duke
parents:
diff changeset
812
a61af66fc99e Initial load
duke
parents:
diff changeset
813 // Translate a bci to its corresponding data, or NULL.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
814 ProfileData* MethodData::bci_to_data(int bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
815 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
816 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
817 if (data->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
818 set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
819 return data;
a61af66fc99e Initial load
duke
parents:
diff changeset
820 } else if (data->bci() > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
821 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824 return bci_to_extra_data(bci, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // Translate a bci to its corresponding extra data, or NULL.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
828 ProfileData* MethodData::bci_to_extra_data(int bci, bool create_if_missing) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
829 DataLayout* dp = extra_data_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
830 DataLayout* end = extra_data_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
831 DataLayout* avail = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
832 for (; dp < end; dp = next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // since the data structure is monotonic.
a61af66fc99e Initial load
duke
parents:
diff changeset
835 if (dp->tag() == DataLayout::no_tag) break;
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
836 if (dp->tag() == DataLayout::arg_info_data_tag) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
837 dp = end; // ArgInfoData is at the end of extra data section.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
838 break;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
839 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
840 if (dp->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
841 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
842 return new BitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
844 }
a61af66fc99e Initial load
duke
parents:
diff changeset
845 if (create_if_missing && dp < end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
846 // Allocate this one. There is no mutual exclusion,
a61af66fc99e Initial load
duke
parents:
diff changeset
847 // so two threads could allocate different BCIs to the
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // same data layout. This means these extra data
a61af66fc99e Initial load
duke
parents:
diff changeset
849 // records, like most other MDO contents, must not be
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // trusted too much.
a61af66fc99e Initial load
duke
parents:
diff changeset
851 DataLayout temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
852 temp.initialize(DataLayout::bit_data_tag, bci, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
853 dp->release_set_header(temp.header());
a61af66fc99e Initial load
duke
parents:
diff changeset
854 assert(dp->tag() == DataLayout::bit_data_tag, "sane");
a61af66fc99e Initial load
duke
parents:
diff changeset
855 //NO: assert(dp->bci() == bci, "no concurrent allocation");
a61af66fc99e Initial load
duke
parents:
diff changeset
856 return new BitData(dp);
a61af66fc99e Initial load
duke
parents:
diff changeset
857 }
a61af66fc99e Initial load
duke
parents:
diff changeset
858 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
859 }
a61af66fc99e Initial load
duke
parents:
diff changeset
860
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
861 ArgInfoData *MethodData::arg_info() {
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
862 DataLayout* dp = extra_data_base();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
863 DataLayout* end = extra_data_limit();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
864 for (; dp < end; dp = next_extra(dp)) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
865 if (dp->tag() == DataLayout::arg_info_data_tag)
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
866 return new ArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
867 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
868 return NULL;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
869 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
870
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
871 // Printing
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
872
0
a61af66fc99e Initial load
duke
parents:
diff changeset
873 #ifndef PRODUCT
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
874
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
875 void MethodData::print_on(outputStream* st) const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
876 assert(is_methodData(), "should be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
877 st->print("method data for ");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
878 method()->print_value_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
879 st->cr();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
880 print_data_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
881 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
882
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
883 #endif //PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
884
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
885 void MethodData::print_value_on(outputStream* st) const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
886 assert(is_methodData(), "should be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
887 st->print("method data for ");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
888 method()->print_value_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
889 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
890
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
891 #ifndef PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
892 void MethodData::print_data_on(outputStream* st) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
893 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 ProfileData* data = first_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
895 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
896 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
897 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
898 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
899 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
900 st->print_cr("--- Extra data:");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
901 DataLayout* dp = extra_data_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
902 DataLayout* end = extra_data_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
903 for (; dp < end; dp = next_extra(dp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
905 // since the data structure is monotonic.
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
906 if (dp->tag() == DataLayout::no_tag) continue;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
907 if (dp->tag() == DataLayout::bit_data_tag) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
908 data = new BitData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
909 } else {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
910 assert(dp->tag() == DataLayout::arg_info_data_tag, "must be BitData or ArgInfo");
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
911 data = new ArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
912 dp = end; // ArgInfoData is at the end of extra data section.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
913 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
914 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
915 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
916 data->print_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
919 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
920
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
921 #if INCLUDE_SERVICES
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
922 // Size Statistics
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
923 void MethodData::collect_statistics(KlassSizeStats *sz) const {
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
924 int n = sz->count(this);
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
925 sz->_method_data_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
926 sz->_method_all_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
927 sz->_rw_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
928 }
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
929 #endif // INCLUDE_SERVICES
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
930
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
931 // Verification
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
932
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
933 void MethodData::verify_on(outputStream* st) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
934 guarantee(is_methodData(), "object must be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
935 // guarantee(m->is_perm(), "should be in permspace");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
936 this->verify_data_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
937 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
938
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
939 void MethodData::verify_data_on(outputStream* st) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
940 NEEDS_CLEANUP;
a61af66fc99e Initial load
duke
parents:
diff changeset
941 // not yet implemented.
a61af66fc99e Initial load
duke
parents:
diff changeset
942 }