annotate src/share/vm/oops/methodData.cpp @ 14518:d8041d695d19

Merged with jdk9/dev/hotspot changeset 3812c088b945
author twisti
date Tue, 11 Mar 2014 18:45:59 -0700
parents 389d40d7d99f fdad2932c73f
children 12eaf1a47a90
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) {
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
44 return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag) || (tag == parameters_type_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 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
59 if (tag == call_type_data_tag) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
60 CallTypeData::initialize(this, cell_count);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
61 } else if (tag == virtual_call_type_data_tag) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
62 VirtualCallTypeData::initialize(this, cell_count);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
63 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
66 void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
67 ResourceMark m;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
68 data_in()->clean_weak_klass_links(cl);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
69 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
70
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
71
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
74 //
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // A ProfileData object is created to refer to a section of profiling
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // data in a structured way.
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Constructor for invalid ProfileData.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ProfileData::ProfileData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
83 char* ProfileData::print_data_on_helper(const MethodData* md) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
84 DataLayout* dp = md->extra_data_base();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
85 DataLayout* end = md->extra_data_limit();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
86 stringStream ss;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
87 for (;; dp = MethodData::next_extra(dp)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
88 assert(dp < end, "moved past end of extra data");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
89 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
90 case DataLayout::speculative_trap_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
91 if (dp->bci() == bci()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
92 SpeculativeTrapData* data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
93 int trap = data->trap_state();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
94 char buf[100];
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
95 ss.print("trap/");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
96 data->method()->print_short_name(&ss);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
97 ss.print("(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
98 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
99 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
100 case DataLayout::bit_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
101 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
102 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
103 case DataLayout::arg_info_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
104 return ss.as_string();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
105 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
106 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
107 fatal(err_msg("unexpected tag %d", dp->tag()));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
108 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
109 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
110 return NULL;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
111 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
112
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
113 void ProfileData::print_data_on(outputStream* st, const MethodData* md) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
114 print_data_on(st, print_data_on_helper(md));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
115 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
116
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
118 void ProfileData::print_shared(outputStream* st, const char* name, const char* extra) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 st->print("bci: %d", bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
120 st->fill_to(tab_width_one);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 st->print("%s", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int trap = trap_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (trap != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
126 st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
128 if (extra != NULL) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
129 st->print(extra);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
130 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 int flags = data()->flags();
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
132 if (flags != 0) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 st->print("flags(%d) ", flags);
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
134 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
137 void ProfileData::tab(outputStream* st, bool first) const {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
138 st->fill_to(first ? tab_width_one : tab_width_two);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // BitData
a61af66fc99e Initial load
duke
parents:
diff changeset
144 //
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // A BitData corresponds to a one-bit flag. This is used to indicate
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // whether a checkcast bytecode has seen a null value.
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
150 void BitData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
151 print_shared(st, "BitData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
157 //
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // A CounterData corresponds to a simple counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
161 void CounterData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
162 print_shared(st, "CounterData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 st->print_cr("count(%u)", count());
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // JumpData
a61af66fc99e Initial load
duke
parents:
diff changeset
169 //
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // A JumpData is used to access profiling information for a direct
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // branch. It is a counter, used for counting the number of branches,
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // plus a data displacement, used for realigning the data pointer to
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // the corresponding target bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
174
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
175 void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
177 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 target = stream->dest_w();
a61af66fc99e Initial load
duke
parents:
diff changeset
181 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
185 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
191 void JumpData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
192 print_shared(st, "JumpData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193 st->print_cr("taken(%u) displacement(%d)", taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
196
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
197 int TypeStackSlotEntries::compute_cell_count(Symbol* signature, bool include_receiver, int max) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
198 // Parameter profiling include the receiver
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
199 int args_count = include_receiver ? 1 : 0;
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
200 ResourceMark rm;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
201 SignatureStream ss(signature);
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
202 args_count += ss.reference_parameter_count();
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
203 args_count = MIN2(args_count, max);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
204 return args_count * per_arg_cell_count;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
205 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
206
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
207 int TypeEntriesAtCall::compute_cell_count(BytecodeStream* stream) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
208 assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
209 assert(TypeStackSlotEntries::per_arg_count() > ReturnTypeEntry::static_cell_count(), "code to test for arguments/results broken");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
210 Bytecode_invoke inv(stream->method(), stream->bci());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
211 int args_cell = 0;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
212 if (arguments_profiling_enabled()) {
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
213 args_cell = TypeStackSlotEntries::compute_cell_count(inv.signature(), false, TypeProfileArgsLimit);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
214 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
215 int ret_cell = 0;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
216 if (return_profiling_enabled() && (inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY)) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
217 ret_cell = ReturnTypeEntry::static_cell_count();
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
218 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
219 int header_cell = 0;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
220 if (args_cell + ret_cell > 0) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
221 header_cell = header_cell_count();
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
222 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
223
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
224 return header_cell + args_cell + ret_cell;
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
225 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
226
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
227 class ArgumentOffsetComputer : public SignatureInfo {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
228 private:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
229 int _max;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
230 GrowableArray<int> _offsets;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
231
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
232 void set(int size, BasicType type) { _size += size; }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
233 void do_object(int begin, int end) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
234 if (_offsets.length() < _max) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
235 _offsets.push(_size);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
236 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
237 SignatureInfo::do_object(begin, end);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
238 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
239 void do_array (int begin, int end) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
240 if (_offsets.length() < _max) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
241 _offsets.push(_size);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
242 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
243 SignatureInfo::do_array(begin, end);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
244 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
245
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
246 public:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
247 ArgumentOffsetComputer(Symbol* signature, int max)
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
248 : SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
249 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
250
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
251 int total() { lazy_iterate_parameters(); return _size; }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
252
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
253 int off_at(int i) const { return _offsets.at(i); }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
254 };
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
255
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
256 void TypeStackSlotEntries::post_initialize(Symbol* signature, bool has_receiver, bool include_receiver) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
257 ResourceMark rm;
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
258 int start = 0;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
259 // Parameter profiling include the receiver
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
260 if (include_receiver && has_receiver) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
261 set_stack_slot(0, 0);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
262 set_type(0, type_none());
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
263 start += 1;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
264 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
265 ArgumentOffsetComputer aos(signature, _number_of_entries-start);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
266 aos.total();
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
267 for (int i = start; i < _number_of_entries; i++) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
268 set_stack_slot(i, aos.off_at(i-start) + (has_receiver ? 1 : 0));
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
269 set_type(i, type_none());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
270 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
271 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
272
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
273 void CallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
274 assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
275 Bytecode_invoke inv(stream->method(), stream->bci());
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
276
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
277 SignatureStream ss(inv.signature());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
278 if (has_arguments()) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
279 #ifdef ASSERT
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
280 ResourceMark rm;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
281 int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
282 assert(count > 0, "room for args type but none found?");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
283 check_number_of_arguments(count);
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
284 #endif
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
285 _args.post_initialize(inv.signature(), inv.has_receiver(), false);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
286 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
287
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
288 if (has_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
289 assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
290 _ret.post_initialize();
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
291 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
292 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
293
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
294 void VirtualCallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
295 assert(Bytecodes::is_invoke(stream->code()), "should be invoke");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
296 Bytecode_invoke inv(stream->method(), stream->bci());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
297
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
298 if (has_arguments()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
299 #ifdef ASSERT
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
300 ResourceMark rm;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
301 SignatureStream ss(inv.signature());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
302 int count = MIN2(ss.reference_parameter_count(), (int)TypeProfileArgsLimit);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
303 assert(count > 0, "room for args type but none found?");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
304 check_number_of_arguments(count);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
305 #endif
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
306 _args.post_initialize(inv.signature(), inv.has_receiver(), false);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
307 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
308
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
309 if (has_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
310 assert(inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY, "room for a ret type but doesn't return obj?");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
311 _ret.post_initialize();
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
312 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
313 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
314
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
315 bool TypeEntries::is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p) {
13080
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
316 Klass* k = (Klass*)klass_part(p);
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
317 return k != NULL && k->is_loader_alive(is_alive_cl);
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
318 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
319
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
320 void TypeStackSlotEntries::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
321 for (int i = 0; i < _number_of_entries; i++) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
322 intptr_t p = type(i);
13080
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
323 if (!is_loader_alive(is_alive_cl, p)) {
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
324 set_type(i, with_status((Klass*)NULL, p));
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
325 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
326 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
327 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
328
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
329 void ReturnTypeEntry::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
330 intptr_t p = type();
13080
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
331 if (!is_loader_alive(is_alive_cl, p)) {
6e1826d5c23e 8027572: assert(r != 0) failed: invalid
roland
parents: 12962
diff changeset
332 set_type(with_status((Klass*)NULL, p));
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
333 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
334 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
335
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
336 bool TypeEntriesAtCall::return_profiling_enabled() {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
337 return MethodData::profile_return();
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
338 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
339
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
340 bool TypeEntriesAtCall::arguments_profiling_enabled() {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
341 return MethodData::profile_arguments();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
342 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
343
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
344 #ifndef PRODUCT
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
345 void TypeEntries::print_klass(outputStream* st, intptr_t k) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
346 if (is_type_none(k)) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
347 st->print("none");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
348 } else if (is_type_unknown(k)) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
349 st->print("unknown");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
350 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
351 valid_klass(k)->print_value_on(st);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
352 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
353 if (was_null_seen(k)) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
354 st->print(" (null seen)");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
355 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
356 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
357
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
358 void TypeStackSlotEntries::print_data_on(outputStream* st) const {
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
359 for (int i = 0; i < _number_of_entries; i++) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
360 _pd->tab(st);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
361 st->print("%d: stack(%u) ", i, stack_slot(i));
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
362 print_klass(st, type(i));
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
363 st->cr();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
364 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
365 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
366
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
367 void ReturnTypeEntry::print_data_on(outputStream* st) const {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
368 _pd->tab(st);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
369 print_klass(st, type());
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
370 st->cr();
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
371 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
372
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
373 void CallTypeData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
374 CounterData::print_data_on(st, extra);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
375 if (has_arguments()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
376 tab(st, true);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
377 st->print("argument types");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
378 _args.print_data_on(st);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
379 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
380 if (has_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
381 tab(st, true);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
382 st->print("return type");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
383 _ret.print_data_on(st);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
384 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
385 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
386
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
387 void VirtualCallTypeData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
388 VirtualCallData::print_data_on(st, extra);
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
389 if (has_arguments()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
390 tab(st, true);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
391 st->print("argument types");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
392 _args.print_data_on(st);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
393 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
394 if (has_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
395 tab(st, true);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
396 st->print("return type");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
397 _ret.print_data_on(st);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
398 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
399 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
400 #endif
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
401
0
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // ReceiverTypeData
a61af66fc99e Initial load
duke
parents:
diff changeset
404 //
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // A ReceiverTypeData is used to access profiling information about a
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // 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
407 // that the check is reached, and a series of (Klass*, count) pairs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // which are used to store a type profile for the receiver of the check.
a61af66fc99e Initial load
duke
parents:
diff changeset
409
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
410 void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
411 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
412 Klass* p = receiver(row);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
413 if (p != NULL && !p->is_loader_alive(is_alive_cl)) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
414 clear_row(row);
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
415 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
416 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
417 }
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
418
9765
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
419 #ifdef GRAAL
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
420 void VirtualCallData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
421 ReceiverTypeData::clean_weak_klass_links(is_alive_cl);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
422 for (uint row = 0; row < method_row_limit(); row++) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
423 Method* p = method(row);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
424 if (p != NULL && !p->method_holder()->is_loader_alive(is_alive_cl)) {
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
425 clear_method_row(row);
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
426 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
427 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
428 }
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
429 #endif // GRAAL
2461285a2f90 Bugfix.
Christian Haeubl <haeubl@ssw.jku.at>
parents: 9762
diff changeset
430
0
a61af66fc99e Initial load
duke
parents:
diff changeset
431 #ifndef PRODUCT
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
432 void ReceiverTypeData::print_receiver_data_on(outputStream* st) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 if (receiver(row) != NULL) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
13108
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
438 #ifdef GRAAL
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
439 st->print_cr("count(%u) nonprofiled_count(%u) entries(%u)", count(), nonprofiled_count(), entries);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
440 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
441 st->print_cr("count(%u) entries(%u)", count(), entries);
13108
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
442 #endif
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
443 int total = count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
444 for (row = 0; row < row_limit(); row++) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
445 if (receiver(row) != NULL) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
446 total += receiver_count(row);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
447 }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
448 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
449 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 if (receiver(row) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
452 receiver(row)->print_value_on(st);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
453 st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
457 void ReceiverTypeData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
458 print_shared(st, "ReceiverTypeData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
459 print_receiver_data_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
13108
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
461
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
462 #ifdef GRAAL
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
463 void VirtualCallData::print_method_data_on(outputStream* st) const {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
464 uint row;
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
465 int entries = 0;
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
466 for (row = 0; row < method_row_limit(); row++) {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
467 if (method(row) != NULL) entries++;
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
468 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
469 tab(st);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
470 st->print_cr("method_entries(%u)", entries);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
471 int total = count();
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
472 for (row = 0; row < method_row_limit(); row++) {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
473 if (method(row) != NULL) {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
474 total += method_count(row);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
475 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
476 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
477 for (row = 0; row < method_row_limit(); row++) {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
478 if (method(row) != NULL) {
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
479 tab(st);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
480 method(row)->print_value_on(st);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
481 st->print_cr("(%u %4.2f)", method_count(row), (float) method_count(row) / (float) total);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
482 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
483 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
484 }
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
485 #endif
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
486
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
487 void VirtualCallData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
488 print_shared(st, "VirtualCallData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
489 print_receiver_data_on(st);
13108
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
490 #ifdef GRAAL
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
491 print_method_data_on(st);
d84fa69a9874 added support for printing method profiles for virtual calls
Doug Simon <doug.simon@oracle.com>
parents: 13087
diff changeset
492 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // RetData
a61af66fc99e Initial load
duke
parents:
diff changeset
498 //
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // A RetData is used to access profiling information for a ret bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // It is composed of a count of the number of times that the ret has
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // been executed, followed by a series of triples of the form
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // (bci, count, di) which count the number of times that some bci was the
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // target of the ret and cache a corresponding displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
504
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
505 void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
506 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 set_bci_displacement(row, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 set_bci(row, no_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // release so other threads see a consistent state. bci is used as
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // a valid flag for bci_displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
512 OrderAccess::release();
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // This routine needs to atomically update the RetData structure, so the
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // caller needs to hold the RetData_lock before it gets here. Since taking
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // the lock can block (and allow GC) and since RetData is a ProfileData is a
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // wrapper around a derived oop, taking the lock in _this_ method will
a61af66fc99e Initial load
duke
parents:
diff changeset
519 // basically cause the 'this' pointer's _data field to contain junk after the
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // lock. We require the caller to take the lock before making the ProfileData
a61af66fc99e Initial load
duke
parents:
diff changeset
521 // 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
522 address RetData::fixup_ret(int return_bci, MethodData* h_mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // First find the mdp which corresponds to the return bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
524 address mdp = h_mdo->bci_to_dp(return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // Now check to see if any of the cache slots are open.
a61af66fc99e Initial load
duke
parents:
diff changeset
527 for (uint row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 if (bci(row) == no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
529 set_bci_displacement(row, mdp - dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
530 set_bci_count(row, DataLayout::counter_increment);
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // Barrier to ensure displacement is written before the bci; allows
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // the interpreter to read displacement without fear of race condition.
a61af66fc99e Initial load
duke
parents:
diff changeset
533 release_set_bci(row, return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536 }
a61af66fc99e Initial load
duke
parents:
diff changeset
537 return mdp;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539
14420
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10376
diff changeset
540 #ifdef CC_INTERP
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10376
diff changeset
541 DataLayout* RetData::advance(MethodData *md, int bci) {
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10376
diff changeset
542 return (DataLayout*) md->bci_to_dp(bci);
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10376
diff changeset
543 }
abe03600372a 8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents: 10376
diff changeset
544 #endif // CC_INTERP
0
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
547 void RetData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
548 print_shared(st, "RetData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
549 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
550 int entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
551 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 if (bci(row) != no_bci) entries++;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554 st->print_cr("count(%u) entries(%u)", count(), entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
555 for (row = 0; row < row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 if (bci(row) != no_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
557 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
558 st->print_cr("bci(%d: count(%u) displacement(%d))",
a61af66fc99e Initial load
duke
parents:
diff changeset
559 bci(row), bci_count(row), bci_displacement(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // BranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
567 //
a61af66fc99e Initial load
duke
parents:
diff changeset
568 // A BranchData is used to access profiling data for a two-way branch.
a61af66fc99e Initial load
duke
parents:
diff changeset
569 // It consists of taken and not_taken counts as well as a data displacement
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // for the taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
571
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
572 void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
573 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
574 int target = stream->dest();
a61af66fc99e Initial load
duke
parents:
diff changeset
575 int my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
576 int target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 int offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 set_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
582 void BranchData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
583 print_shared(st, "BranchData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
584 st->print_cr("taken(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
585 taken(), displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
586 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 st->print_cr("not taken(%u)", not_taken());
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // ==================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
592 // MultiBranchData
a61af66fc99e Initial load
duke
parents:
diff changeset
593 //
a61af66fc99e Initial load
duke
parents:
diff changeset
594 // A MultiBranchData is used to access profiling information for
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // a multi-way branch (*switch bytecodes). It consists of a series
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // of (count, displacement) pairs, which count the number of times each
a61af66fc99e Initial load
duke
parents:
diff changeset
597 // case was taken and specify the data displacment for each branch target.
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 int MultiBranchData::compute_cell_count(BytecodeStream* stream) {
a61af66fc99e Initial load
duke
parents:
diff changeset
600 int cell_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
601 if (stream->code() == Bytecodes::_tableswitch) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
602 Bytecode_tableswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
603 cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604 } else {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
605 Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
606 cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default
0
a61af66fc99e Initial load
duke
parents:
diff changeset
607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
608 return cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
609 }
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 void MultiBranchData::post_initialize(BytecodeStream* stream,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
612 MethodData* mdo) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
613 assert(stream->bci() == bci(), "wrong pos");
a61af66fc99e Initial load
duke
parents:
diff changeset
614 int target;
a61af66fc99e Initial load
duke
parents:
diff changeset
615 int my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 int target_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
617 int offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
618 if (stream->code() == Bytecodes::_tableswitch) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
619 Bytecode_tableswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
620 int len = sw.length();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
621 assert(array_len() == per_case_cell_count * (len + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
622 for (int count = 0; count < len; count++) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
623 target = sw.dest_offset_at(count) + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
624 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
625 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
626 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
627 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
629 target = sw.default_offset() + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
630 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
631 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
632 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
633 set_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
634
a61af66fc99e Initial load
duke
parents:
diff changeset
635 } else {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
636 Bytecode_lookupswitch sw(stream->method()(), stream->bcp());
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
637 int npairs = sw.number_of_pairs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
638 assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len");
a61af66fc99e Initial load
duke
parents:
diff changeset
639 for (int count = 0; count < npairs; count++) {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
640 LookupswitchPair pair = sw.pair_at(count);
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
641 target = pair.offset() + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
642 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
643 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
644 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 set_displacement_at(count, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
647 target = sw.default_offset() + bci();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
648 my_di = mdo->dp_to_di(dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
649 target_di = mdo->bci_to_di(target);
a61af66fc99e Initial load
duke
parents:
diff changeset
650 offset = target_di - my_di;
a61af66fc99e Initial load
duke
parents:
diff changeset
651 set_default_displacement(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
656 void MultiBranchData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
657 print_shared(st, "MultiBranchData", extra);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
658 st->print_cr("default_count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
659 default_count(), default_displacement());
a61af66fc99e Initial load
duke
parents:
diff changeset
660 int cases = number_of_cases();
a61af66fc99e Initial load
duke
parents:
diff changeset
661 for (int i = 0; i < cases; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 tab(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
663 st->print_cr("count(%u) displacement(%d)",
a61af66fc99e Initial load
duke
parents:
diff changeset
664 count_at(i), displacement_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
665 }
a61af66fc99e Initial load
duke
parents:
diff changeset
666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
667 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
668
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
669 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
670 void ArgInfoData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
671 print_shared(st, "ArgInfoData", extra);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
672 int nargs = number_of_args();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
673 for (int i = 0; i < nargs; i++) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
674 st->print(" 0x%x", arg_modified(i));
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
675 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
676 st->cr();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
677 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
678
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
679 #endif
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
680
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
681 int ParametersTypeData::compute_cell_count(Method* m) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
682 if (!MethodData::profile_parameters_for_method(m)) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
683 return 0;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
684 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
685 int max = TypeProfileParmsLimit == -1 ? INT_MAX : TypeProfileParmsLimit;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
686 int obj_args = TypeStackSlotEntries::compute_cell_count(m->signature(), !m->is_static(), max);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
687 if (obj_args > 0) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
688 return obj_args + 1; // 1 cell for array len
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
689 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
690 return 0;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
691 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
692
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
693 void ParametersTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
694 _parameters.post_initialize(mdo->method()->signature(), !mdo->method()->is_static(), true);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
695 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
696
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
697 bool ParametersTypeData::profiling_enabled() {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
698 return MethodData::profile_parameters();
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
699 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
700
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
701 #ifndef PRODUCT
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
702 void ParametersTypeData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
703 st->print("parameter types", extra);
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
704 _parameters.print_data_on(st);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
705 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
706
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
707 void SpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
708 print_shared(st, "SpeculativeTrapData", extra);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
709 tab(st);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
710 method()->print_short_name(st);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
711 st->cr();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
712 }
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
713 #endif
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
714
0
a61af66fc99e Initial load
duke
parents:
diff changeset
715 // ==================================================================
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
716 // MethodData*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
717 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
718 // A MethodData* holds information which has been collected about
0
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // a method.
a61af66fc99e Initial load
duke
parents:
diff changeset
720
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
721 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
722 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
723
10376
a1ebd310d5c1 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 10107
diff changeset
724 return new (loader_data, size, false, MetaspaceObj::MethodDataType, THREAD)
a1ebd310d5c1 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 10107
diff changeset
725 MethodData(method(), size, CHECK_NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
726 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
727
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
728 int MethodData::bytecode_cell_count(Bytecodes::Code code) {
8883
b9a918201d47 Merge with hsx25
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8616 8860
diff changeset
729 #if defined(COMPILER1) && !(defined(COMPILER2) || defined(GRAAL))
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
730 return no_profile_data;
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
731 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
732 switch (code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
734 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
735 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
736 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 return ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
738 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
739 return BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
741 case Bytecodes::_invokespecial:
a61af66fc99e Initial load
duke
parents:
diff changeset
742 case Bytecodes::_invokestatic:
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
743 if (MethodData::profile_arguments() || MethodData::profile_return()) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
744 return variable_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
745 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
746 return CounterData::static_cell_count();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
747 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
748 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
749 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
750 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
751 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
752 return JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
753 case Bytecodes::_invokevirtual:
a61af66fc99e Initial load
duke
parents:
diff changeset
754 case Bytecodes::_invokeinterface:
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
755 if (MethodData::profile_arguments() || MethodData::profile_return()) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
756 return variable_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
757 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
758 return VirtualCallData::static_cell_count();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
759 }
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
760 case Bytecodes::_invokedynamic:
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
761 if (MethodData::profile_arguments() || MethodData::profile_return()) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
762 return variable_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
763 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
764 return CounterData::static_cell_count();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
765 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
766 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
767 return RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
768 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
769 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
770 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
771 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
772 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
773 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
774 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
775 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
776 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
777 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
778 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
779 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
780 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
781 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
782 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
783 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
784 return BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
785 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
786 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
787 return variable_cell_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789 return no_profile_data;
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
790 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // Compute the size of the profiling information corresponding to
a61af66fc99e Initial load
duke
parents:
diff changeset
794 // the current bytecode.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
795 int MethodData::compute_data_size(BytecodeStream* stream) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
796 int cell_count = bytecode_cell_count(stream->code());
a61af66fc99e Initial load
duke
parents:
diff changeset
797 if (cell_count == no_profile_data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
798 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800 if (cell_count == variable_cell_count) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
801 switch (stream->code()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
802 case Bytecodes::_lookupswitch:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
803 case Bytecodes::_tableswitch:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
804 cell_count = MultiBranchData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
805 break;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
806 case Bytecodes::_invokespecial:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
807 case Bytecodes::_invokestatic:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
808 case Bytecodes::_invokedynamic:
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
809 assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
810 if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
811 profile_return_for_invoke(stream->method(), stream->bci())) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
812 cell_count = CallTypeData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
813 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
814 cell_count = CounterData::static_cell_count();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
815 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
816 break;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
817 case Bytecodes::_invokevirtual:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
818 case Bytecodes::_invokeinterface: {
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
819 assert(MethodData::profile_arguments() || MethodData::profile_return(), "should be collecting args profile");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
820 if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
821 profile_return_for_invoke(stream->method(), stream->bci())) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
822 cell_count = VirtualCallTypeData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
823 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
824 cell_count = VirtualCallData::static_cell_count();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
825 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
826 break;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
827 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
828 default:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
829 fatal("unexpected bytecode for var length profile data");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
830 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // Note: cell_count might be zero, meaning that there is just
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // a DataLayout header, with no extra cells.
a61af66fc99e Initial load
duke
parents:
diff changeset
834 assert(cell_count >= 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
835 return DataLayout::compute_size_in_bytes(cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
836 }
a61af66fc99e Initial load
duke
parents:
diff changeset
837
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
838 bool MethodData::is_speculative_trap_bytecode(Bytecodes::Code code) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
839 // Bytecodes for which we may use speculation
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
840 switch (code) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
841 case Bytecodes::_checkcast:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
842 case Bytecodes::_instanceof:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
843 case Bytecodes::_aastore:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
844 case Bytecodes::_invokevirtual:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
845 case Bytecodes::_invokeinterface:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
846 case Bytecodes::_if_acmpeq:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
847 case Bytecodes::_if_acmpne:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
848 case Bytecodes::_invokestatic:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
849 #ifdef COMPILER2
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
850 return UseTypeSpeculation;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
851 #endif
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
852 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
853 return false;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
854 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
855 return false;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
856 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
857
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
858 #ifdef GRAAL
14518
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
859 int MethodData::compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps) {
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
860 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
861
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
862 // 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
863 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
864 }
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
865 #else
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
866 int MethodData::compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
867 if (ProfileTraps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
868 // Assume that up to 3% of BCIs with no MDP will need to allocate one.
a61af66fc99e Initial load
duke
parents:
diff changeset
869 int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // If the method is large, let the extra BCIs grow numerous (to ~1%).
a61af66fc99e Initial load
duke
parents:
diff changeset
871 int one_percent_of_data
a61af66fc99e Initial load
duke
parents:
diff changeset
872 = (uint)data_size / (DataLayout::header_size_in_bytes()*128);
a61af66fc99e Initial load
duke
parents:
diff changeset
873 if (extra_data_count < one_percent_of_data)
a61af66fc99e Initial load
duke
parents:
diff changeset
874 extra_data_count = one_percent_of_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
875 if (extra_data_count > empty_bc_count)
a61af66fc99e Initial load
duke
parents:
diff changeset
876 extra_data_count = empty_bc_count; // no need for more
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
877
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
878 // Make sure we have a minimum number of extra data slots to
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
879 // allocate SpeculativeTrapData entries. We would want to have one
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
880 // entry per compilation that inlines this method and for which
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
881 // some type speculation assumption fails. So the room we need for
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
882 // the SpeculativeTrapData entries doesn't directly depend on the
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
883 // size of the method. Because it's hard to estimate, we reserve
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
884 // space for an arbitrary number of entries.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
885 int spec_data_count = (needs_speculative_traps ? SpecTrapLimitExtraEntries : 0) *
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
886 (SpeculativeTrapData::static_cell_count() + DataLayout::header_size_in_cells());
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
887
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
888 return MAX2(extra_data_count, spec_data_count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
889 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
892 }
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
893 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
894
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
895 // Compute the size of the MethodData* necessary to store
0
a61af66fc99e Initial load
duke
parents:
diff changeset
896 // 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
897 int MethodData::compute_allocation_size_in_bytes(methodHandle method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
898 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
899 BytecodeStream stream(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
900 Bytecodes::Code c;
a61af66fc99e Initial load
duke
parents:
diff changeset
901 int empty_bc_count = 0; // number of bytecodes lacking data
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
902 bool needs_speculative_traps = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
903 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
904 int size_in_bytes = compute_data_size(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
905 data_size += size_in_bytes;
13181
389d40d7d99f fixed bug in MethodData and added assertion that precomputed size == initialized size
Doug Simon <doug.simon@oracle.com>
parents: 13108
diff changeset
906 if (size_in_bytes == 0 GRAAL_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1;
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
907 needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
909 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // Add some extra DataLayout cells (at least one) to track stray traps.
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
912 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
913 object_size += extra_data_count * DataLayout::compute_size_in_bytes(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
914
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
915 // 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
916 int arg_size = method->size_of_parameters();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
917 object_size += DataLayout::compute_size_in_bytes(arg_size+1);
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
918
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
919 // Reserve room for an area of the MDO dedicated to profiling of
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
920 // parameters
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
921 int args_cell = ParametersTypeData::compute_cell_count(method());
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
922 if (args_cell > 0) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
923 object_size += DataLayout::compute_size_in_bytes(args_cell);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
924 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
925 return object_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 }
a61af66fc99e Initial load
duke
parents:
diff changeset
927
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
928 // Compute the size of the MethodData* necessary to store
0
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // 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
930 int MethodData::compute_allocation_size_in_words(methodHandle method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
931 int byte_size = compute_allocation_size_in_bytes(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
932 int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
933 return align_object_size(word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // Initialize an individual data segment. Returns the size of
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // the segment in bytes.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
938 int MethodData::initialize_data(BytecodeStream* stream,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
939 int data_index) {
8883
b9a918201d47 Merge with hsx25
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8616 8860
diff changeset
940 #if defined(COMPILER1) && !(defined(COMPILER2) || defined(GRAAL))
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
941 return 0;
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
942 #else
0
a61af66fc99e Initial load
duke
parents:
diff changeset
943 int cell_count = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
944 int tag = DataLayout::no_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 DataLayout* data_layout = data_layout_at(data_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
946 Bytecodes::Code c = stream->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
947 switch (c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
948 case Bytecodes::_checkcast:
a61af66fc99e Initial load
duke
parents:
diff changeset
949 case Bytecodes::_instanceof:
a61af66fc99e Initial load
duke
parents:
diff changeset
950 case Bytecodes::_aastore:
a61af66fc99e Initial load
duke
parents:
diff changeset
951 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
952 cell_count = ReceiverTypeData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
953 tag = DataLayout::receiver_type_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 cell_count = BitData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
956 tag = DataLayout::bit_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
959 case Bytecodes::_invokespecial:
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
960 case Bytecodes::_invokestatic: {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
961 int counter_data_cell_count = CounterData::static_cell_count();
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
962 if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
963 profile_return_for_invoke(stream->method(), stream->bci())) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
964 cell_count = CallTypeData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
965 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
966 cell_count = counter_data_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
967 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
968 if (cell_count > counter_data_cell_count) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
969 tag = DataLayout::call_type_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
970 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
971 tag = DataLayout::counter_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
972 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
973 break;
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
974 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
975 case Bytecodes::_goto:
a61af66fc99e Initial load
duke
parents:
diff changeset
976 case Bytecodes::_goto_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
977 case Bytecodes::_jsr:
a61af66fc99e Initial load
duke
parents:
diff changeset
978 case Bytecodes::_jsr_w:
a61af66fc99e Initial load
duke
parents:
diff changeset
979 cell_count = JumpData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
980 tag = DataLayout::jump_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
981 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
982 case Bytecodes::_invokevirtual:
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
983 case Bytecodes::_invokeinterface: {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
984 int virtual_call_data_cell_count = VirtualCallData::static_cell_count();
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
985 if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
986 profile_return_for_invoke(stream->method(), stream->bci())) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
987 cell_count = VirtualCallTypeData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
988 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
989 cell_count = virtual_call_data_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
990 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
991 if (cell_count > virtual_call_data_cell_count) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
992 tag = DataLayout::virtual_call_type_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
993 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
994 tag = DataLayout::virtual_call_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
995 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
996 break;
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
997 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
998 case Bytecodes::_invokedynamic: {
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
999 // %%% should make a type profile for any invokedynamic that takes a ref argument
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1000 int counter_data_cell_count = CounterData::static_cell_count();
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1001 if (profile_arguments_for_invoke(stream->method(), stream->bci()) ||
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1002 profile_return_for_invoke(stream->method(), stream->bci())) {
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1003 cell_count = CallTypeData::compute_cell_count(stream);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1004 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1005 cell_count = counter_data_cell_count;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1006 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1007 if (cell_count > counter_data_cell_count) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1008 tag = DataLayout::call_type_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1009 } else {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1010 tag = DataLayout::counter_data_tag;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1011 }
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 196
diff changeset
1012 break;
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1013 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 case Bytecodes::_ret:
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 cell_count = RetData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 tag = DataLayout::ret_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 case Bytecodes::_ifeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 case Bytecodes::_ifne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 case Bytecodes::_iflt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 case Bytecodes::_ifge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 case Bytecodes::_ifgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 case Bytecodes::_ifle:
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 case Bytecodes::_if_icmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 case Bytecodes::_if_icmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 case Bytecodes::_if_icmplt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 case Bytecodes::_if_icmpge:
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 case Bytecodes::_if_icmpgt:
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 case Bytecodes::_if_icmple:
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 case Bytecodes::_if_acmpeq:
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 case Bytecodes::_if_acmpne:
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 case Bytecodes::_ifnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 case Bytecodes::_ifnonnull:
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 cell_count = BranchData::static_cell_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 tag = DataLayout::branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 case Bytecodes::_lookupswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 case Bytecodes::_tableswitch:
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 cell_count = MultiBranchData::compute_cell_count(stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 tag = DataLayout::multi_branch_data_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 assert(tag == DataLayout::multi_branch_data_tag ||
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1044 ((MethodData::profile_arguments() || MethodData::profile_return()) &&
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1045 (tag == DataLayout::call_type_data_tag ||
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1046 tag == DataLayout::counter_data_tag ||
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1047 tag == DataLayout::virtual_call_type_data_tag ||
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1048 tag == DataLayout::virtual_call_data_tag)) ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 cell_count == bytecode_cell_count(c), "cell counts must agree");
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 if (cell_count >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 assert(tag != DataLayout::no_tag, "bad tag");
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 assert(bytecode_has_profile(c), "agree w/ BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 data_layout->initialize(tag, stream->bci(), cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 return DataLayout::compute_size_in_bytes(cell_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 assert(!bytecode_has_profile(c), "agree w/ !BHP");
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 }
8860
46f6f063b272 7153771: array bound check elimination for c1
roland
parents: 8712
diff changeset
1059 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1061
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 // 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
1063 ProfileData* MethodData::data_at(int data_index) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 if (out_of_bounds(data_index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 DataLayout* data_layout = data_layout_at(data_index);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1068 return data_layout->data_in();
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1069 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1071 ProfileData* DataLayout::data_in() {
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1072 switch (tag()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 case DataLayout::no_tag:
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 case DataLayout::bit_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1078 return new BitData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 case DataLayout::counter_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1080 return new CounterData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 case DataLayout::jump_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1082 return new JumpData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 case DataLayout::receiver_type_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1084 return new ReceiverTypeData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 case DataLayout::virtual_call_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1086 return new VirtualCallData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 case DataLayout::ret_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1088 return new RetData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 case DataLayout::branch_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1090 return new BranchData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 case DataLayout::multi_branch_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1092 return new MultiBranchData(this);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1093 case DataLayout::arg_info_data_tag:
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 844
diff changeset
1094 return new ArgInfoData(this);
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1095 case DataLayout::call_type_data_tag:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1096 return new CallTypeData(this);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1097 case DataLayout::virtual_call_type_data_tag:
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1098 return new VirtualCallTypeData(this);
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1099 case DataLayout::parameters_type_data_tag:
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1100 return new ParametersTypeData(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1103
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 // Iteration over data.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1105 ProfileData* MethodData::next_data(ProfileData* current) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 int current_index = dp_to_di(current->dp());
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 int next_index = current_index + current->size_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 ProfileData* next = data_at(next_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 return next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1111
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 // Give each of the data entries a chance to perform specific
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // data initialization.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1114 void MethodData::post_initialize(BytecodeStream* stream) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 ProfileData* data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 for (data = first_data(); is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 stream->set_start(data->bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 stream->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 data->post_initialize(stream, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 }
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1122 if (_parameters_type_data_di != -1) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1123 parameters_type_data()->post_initialize(NULL, this);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1124 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1126
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1127 // Initialize the MethodData* corresponding to a given method.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1128 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
1129 // 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
1130 _method = method();
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
1131 initialize();
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
1132 }
6c4db417385a added API to reset the profiling information for a method
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8125
diff changeset
1133
13181
389d40d7d99f fixed bug in MethodData and added assertion that precomputed size == initialized size
Doug Simon <doug.simon@oracle.com>
parents: 13108
diff changeset
1134 void MethodData::initialize(bool for_reprofile) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1135 No_Safepoint_Verifier no_safepoint; // init function atomic wrt GC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 ResourceMark rm;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1137
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1138 init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 set_creation_mileage(mileage_of(method()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 // Go through the bytecodes and allocate and initialize the
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 // corresponding data cells.
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 int data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 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
1145 _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
1146 BytecodeStream stream(method());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 Bytecodes::Code c;
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1148 bool needs_speculative_traps = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 while ((c = stream.next()) >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 int size_in_bytes = initialize_data(&stream, data_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 data_size += size_in_bytes;
13181
389d40d7d99f fixed bug in MethodData and added assertion that precomputed size == initialized size
Doug Simon <doug.simon@oracle.com>
parents: 13108
diff changeset
1152 if (size_in_bytes == 0 GRAAL_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1;
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1153 needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 _data_size = data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 int object_size = in_bytes(data_offset()) + data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1157
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // Add some extra DataLayout cells (at least one) to track stray traps.
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1159 int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps);
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1160 int extra_size = extra_data_count * DataLayout::compute_size_in_bytes(0);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1161
14518
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1162 //#ifdef GRAAL
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1163 // if (for_reprofile) {
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1164 // // Clear out extra data
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1165 // Copy::zero_to_bytes((HeapWord*) extra_data_base(), extra_size);
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1166 // }
d8041d695d19 Merged with jdk9/dev/hotspot changeset 3812c088b945
twisti
parents: 13181 14500
diff changeset
1167 //#endif
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1168 // Let's zero the space for the extra data
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1169 Copy::zero_to_bytes(((address)_data) + data_size, extra_size);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1170
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1171 // 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
1172 // 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
1173 // the code for traps cells works.
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1174 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
1175
8615
91c79e13b9cf minor C1/C2 fix
Christian Haeubl <haeubl@ssw.jku.at>
parents: 8611
diff changeset
1176 int arg_size = method()->size_of_parameters();
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1177 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
1178
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1179 int arg_data_size = DataLayout::compute_size_in_bytes(arg_size+1);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1180 object_size += extra_size + arg_data_size;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1181
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1182 int parms_cell = ParametersTypeData::compute_cell_count(method());
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1183 // If we are profiling parameters, we reserver an area near the end
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1184 // of the MDO after the slots for bytecodes (because there's no bci
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1185 // for method entry so they don't fit with the framework for the
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1186 // profiling of bytecodes). We store the offset within the MDO of
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1187 // this area (or -1 if no parameter is profiled)
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1188 if (parms_cell > 0) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1189 object_size += DataLayout::compute_size_in_bytes(parms_cell);
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1190 _parameters_type_data_di = data_size + extra_size + arg_data_size;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1191 DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size);
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1192 dp->initialize(DataLayout::parameters_type_data_tag, 0, parms_cell);
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1193 } else {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1194 _parameters_type_data_di = -1;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1195 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1196
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 // Set an initial hint. Don't use set_hint_di() because
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 // first_di() may be out of bounds if data_size is 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 // In that situation, _hint_di is never used, but at
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 // least well-defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 _hint_di = first_di();
a61af66fc99e Initial load
duke
parents:
diff changeset
1202
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 post_initialize(&stream);
a61af66fc99e Initial load
duke
parents:
diff changeset
1204
13181
389d40d7d99f fixed bug in MethodData and added assertion that precomputed size == initialized size
Doug Simon <doug.simon@oracle.com>
parents: 13108
diff changeset
1205 assert(object_size == compute_allocation_size_in_bytes(methodHandle(_method)), "MethodData: computed size != initialized size");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1206 set_size(object_size);
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1207 }
8712
3efdfd6ddbf2 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 7956
diff changeset
1208
9080
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1209 void MethodData::init() {
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1210 _invocation_counter.init();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1211 _backedge_counter.init();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1212 _invocation_counter_start = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1213 _backedge_counter_start = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1214 _num_loops = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1215 _num_blocks = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1216 _highest_comp_level = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1217 _highest_osr_comp_level = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1218 _would_profile = true;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1219
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1220 // Initialize flags and trap history.
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1221 _nof_decompiles = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1222 _nof_overflow_recompiles = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1223 _nof_overflow_traps = 0;
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1224 clear_escape_info();
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1225 assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align");
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1226 Copy::zero_to_words((HeapWord*) &_trap_hist,
b84fd7d73702 8007288: Additional WB API for compiler's testing
iignatyev
parents: 8860
diff changeset
1227 sizeof(_trap_hist) / sizeof(HeapWord));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1229
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 // 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
1231 int MethodData::mileage_of(Method* method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 int mileage = 0;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1233 if (TieredCompilation) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1234 mileage = MAX2(method->invocation_count(), method->backedge_count());
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1235 } else {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1236 int iic = method->interpreter_invocation_count();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1237 if (mileage < iic) mileage = iic;
10105
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1238 MethodCounters* mcs = method->method_counters();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1239 if (mcs != NULL) {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1240 InvocationCounter* ic = mcs->invocation_counter();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1241 InvocationCounter* bc = mcs->backedge_counter();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1242 int icval = ic->count();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1243 if (ic->carry()) icval += CompileThreshold;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1244 if (mileage < icval) mileage = icval;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1245 int bcval = bc->count();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1246 if (bc->carry()) bcval += CompileThreshold;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1247 if (mileage < bcval) mileage = bcval;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 8860
diff changeset
1248 }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1249 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 return mileage;
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1252
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1253 bool MethodData::is_mature() const {
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
1254 return CompilationPolicy::policy()->is_mature(_method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1256
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 // 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
1258 address MethodData::bci_to_dp(int bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 ProfileData* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 if (data->bci() >= bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 if (data->bci() == bci) set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 else if (prev != NULL) set_hint_di(dp_to_di(prev->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 return data->dp();
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 prev = data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 return (address)limit_data_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1272
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 // 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
1274 ProfileData* MethodData::bci_to_data(int bci) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 ProfileData* data = data_before(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 if (data->bci() == bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 set_hint_di(dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 return data;
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 } else if (data->bci() > bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1284 return bci_to_extra_data(bci, NULL, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1286
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1287 DataLayout* MethodData::next_extra(DataLayout* dp) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1288 int nb_cells = 0;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1289 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1290 case DataLayout::bit_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1291 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1292 nb_cells = BitData::static_cell_count();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1293 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1294 case DataLayout::speculative_trap_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1295 nb_cells = SpeculativeTrapData::static_cell_count();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1296 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1297 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1298 fatal(err_msg("unexpected tag %d", dp->tag()));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1299 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1300 return (DataLayout*)((address)dp + DataLayout::compute_size_in_bytes(nb_cells));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1301 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1302
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1303 ProfileData* MethodData::bci_to_extra_data_helper(int bci, Method* m, DataLayout*& dp) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1304 DataLayout* end = extra_data_limit();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1305
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1306 for (;; dp = next_extra(dp)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1307 assert(dp < end, "moved past end of extra data");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 // since the data structure is monotonic.
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1310 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1311 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1312 return NULL;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1313 case DataLayout::arg_info_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1314 dp = end;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1315 return NULL; // ArgInfoData is at the end of extra data section.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1316 case DataLayout::bit_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1317 if (m == NULL && dp->bci() == bci) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1318 return new BitData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1319 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1320 break;
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1321 case DataLayout::speculative_trap_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1322 if (m != NULL) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1323 SpeculativeTrapData* data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1324 // data->method() may be null in case of a concurrent
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1325 // allocation. Assume it's for the same method and use that
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1326 // entry in that case.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1327 if (dp->bci() == bci) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1328 if (data->method() == NULL) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1329 return NULL;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1330 } else if (data->method() == m) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1331 return data;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1332 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1333 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1334 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1335 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1336 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1337 fatal(err_msg("unexpected tag %d", dp->tag()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1340 return NULL;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1341 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1342
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1343
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1344 // Translate a bci to its corresponding extra data, or NULL.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1345 ProfileData* MethodData::bci_to_extra_data(int bci, Method* m, bool create_if_missing) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1346 // This code assumes an entry for a SpeculativeTrapData is 2 cells
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1347 assert(2*DataLayout::compute_size_in_bytes(BitData::static_cell_count()) ==
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1348 DataLayout::compute_size_in_bytes(SpeculativeTrapData::static_cell_count()),
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1349 "code needs to be adjusted");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1350
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1351 DataLayout* dp = extra_data_base();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1352 DataLayout* end = extra_data_limit();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1353
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1354 // Allocation in the extra data space has to be atomic because not
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1355 // all entries have the same size and non atomic concurrent
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1356 // allocation would result in a corrupted extra data space.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1357 while (true) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1358 ProfileData* result = bci_to_extra_data_helper(bci, m, dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1359 if (result != NULL) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1360 return result;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1361 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1362
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1363 if (create_if_missing && dp < end) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1364 assert(dp->tag() == DataLayout::no_tag || (dp->tag() == DataLayout::speculative_trap_data_tag && m != NULL), "should be free");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1365 assert(next_extra(dp)->tag() == DataLayout::no_tag || next_extra(dp)->tag() == DataLayout::arg_info_data_tag, "should be free or arg info");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1366 u1 tag = m == NULL ? DataLayout::bit_data_tag : DataLayout::speculative_trap_data_tag;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1367 // SpeculativeTrapData is 2 slots. Make sure we have room.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1368 if (m != NULL && next_extra(dp)->tag() != DataLayout::no_tag) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1369 return NULL;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1370 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1371 DataLayout temp;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1372 temp.initialize(tag, bci, 0);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1373 // May have been set concurrently
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1374 if (dp->header() != temp.header() && !dp->atomic_set_header(temp.header())) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1375 // Allocation failure because of concurrent allocation. Try
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1376 // again.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1377 continue;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1378 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1379 assert(dp->tag() == tag, "sane");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1380 assert(dp->bci() == bci, "no concurrent allocation");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1381 if (tag == DataLayout::bit_data_tag) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1382 return new BitData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1383 } else {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1384 // If being allocated concurrently, one trap may be lost
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1385 SpeculativeTrapData* data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1386 data->set_method(m);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1387 return data;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1388 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1389 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1390 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1394
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1395 ArgInfoData *MethodData::arg_info() {
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1396 DataLayout* dp = extra_data_base();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1397 DataLayout* end = extra_data_limit();
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1398 for (; dp < end; dp = next_extra(dp)) {
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1399 if (dp->tag() == DataLayout::arg_info_data_tag)
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1400 return new ArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1401 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1402 return NULL;
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1403 }
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1404
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1405 // Printing
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1406
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 #ifndef PRODUCT
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1408
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1409 void MethodData::print_on(outputStream* st) const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1410 assert(is_methodData(), "should be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1411 st->print("method data for ");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1412 method()->print_value_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1413 st->cr();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1414 print_data_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1415 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1416
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1417 #endif //PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1418
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1419 void MethodData::print_value_on(outputStream* st) const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1420 assert(is_methodData(), "should be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1421 st->print("method data for ");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1422 method()->print_value_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1423 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1424
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1425 #ifndef PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1426 void MethodData::print_data_on(outputStream* st) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 ProfileData* data = first_data();
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1429 if (_parameters_type_data_di != -1) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1430 parameters_type_data()->print_data_on(st);
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1431 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 for ( ; is_valid(data); data = next_data(data)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 st->fill_to(6);
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1435 data->print_data_on(st, this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 }
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1437 st->print_cr("--- Extra data:");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 DataLayout* dp = extra_data_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 DataLayout* end = extra_data_limit();
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1440 for (;; dp = next_extra(dp)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1441 assert(dp < end, "moved past end of extra data");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 // No need for "OrderAccess::load_acquire" ops,
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 // since the data structure is monotonic.
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1444 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1445 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1446 continue;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1447 case DataLayout::bit_data_tag:
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1448 data = new BitData(dp);
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1449 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1450 case DataLayout::speculative_trap_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1451 data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1452 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1453 case DataLayout::arg_info_data_tag:
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1454 data = new ArgInfoData(dp);
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1455 dp = end; // ArgInfoData is at the end of extra data section.
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1456 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1457 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1458 fatal(err_msg("unexpected tag %d", dp->tag()));
45
48a3fa21394b 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 0
diff changeset
1459 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 st->print("%d", dp_to_di(data->dp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 st->fill_to(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 data->print_data_on(st);
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1463 if (dp >= end) return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1467
7956
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1468 #if INCLUDE_SERVICES
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1469 // Size Statistics
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1470 void MethodData::collect_statistics(KlassSizeStats *sz) const {
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1471 int n = sz->count(this);
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1472 sz->_method_data_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1473 sz->_method_all_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1474 sz->_rw_bytes += n;
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1475 }
16fb9f942703 6479360: PrintClassHistogram improvements
acorn
parents: 6725
diff changeset
1476 #endif // INCLUDE_SERVICES
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1477
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1478 // Verification
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1479
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1480 void MethodData::verify_on(outputStream* st) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1481 guarantee(is_methodData(), "object must be method data");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1482 // guarantee(m->is_perm(), "should be in permspace");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1483 this->verify_data_on(st);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1484 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1485
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 2264
diff changeset
1486 void MethodData::verify_data_on(outputStream* st) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 NEEDS_CLEANUP;
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 // not yet implemented.
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 }
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1490
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1491 bool MethodData::profile_jsr292(methodHandle m, int bci) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1492 if (m->is_compiled_lambda_form()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1493 return true;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1494 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1495
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1496 Bytecode_invoke inv(m , bci);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1497 return inv.is_invokedynamic() || inv.is_invokehandle();
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1498 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1499
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1500 int MethodData::profile_arguments_flag() {
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1501 return TypeProfileLevel % 10;
12875
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1502 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1503
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1504 bool MethodData::profile_arguments() {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1505 return profile_arguments_flag() > no_type_profile && profile_arguments_flag() <= type_profile_all;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1506 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1507
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1508 bool MethodData::profile_arguments_jsr292_only() {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1509 return profile_arguments_flag() == type_profile_jsr292;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1510 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1511
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1512 bool MethodData::profile_all_arguments() {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1513 return profile_arguments_flag() == type_profile_all;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1514 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1515
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1516 bool MethodData::profile_arguments_for_invoke(methodHandle m, int bci) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1517 if (!profile_arguments()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1518 return false;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1519 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1520
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1521 if (profile_all_arguments()) {
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1522 return true;
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1523 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1524
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1525 assert(profile_arguments_jsr292_only(), "inconsistent");
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1526 return profile_jsr292(m, bci);
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1527 }
d13d7aba8c12 8023657: New type profiling points: arguments to call
roland
parents: 10376
diff changeset
1528
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1529 int MethodData::profile_return_flag() {
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1530 return (TypeProfileLevel % 100) / 10;
12882
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1531 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1532
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1533 bool MethodData::profile_return() {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1534 return profile_return_flag() > no_type_profile && profile_return_flag() <= type_profile_all;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1535 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1536
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1537 bool MethodData::profile_return_jsr292_only() {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1538 return profile_return_flag() == type_profile_jsr292;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1539 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1540
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1541 bool MethodData::profile_all_return() {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1542 return profile_return_flag() == type_profile_all;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1543 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1544
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1545 bool MethodData::profile_return_for_invoke(methodHandle m, int bci) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1546 if (!profile_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1547 return false;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1548 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1549
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1550 if (profile_all_return()) {
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1551 return true;
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1552 }
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1553
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1554 assert(profile_return_jsr292_only(), "inconsistent");
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1555 return profile_jsr292(m, bci);
ce0cc25bc5e2 8026054: New type profiling points: type of return values at calls
roland
parents: 12875
diff changeset
1556 }
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1557
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1558 int MethodData::profile_parameters_flag() {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1559 return TypeProfileLevel / 100;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1560 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1561
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1562 bool MethodData::profile_parameters() {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1563 return profile_parameters_flag() > no_type_profile && profile_parameters_flag() <= type_profile_all;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1564 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1565
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1566 bool MethodData::profile_parameters_jsr292_only() {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1567 return profile_parameters_flag() == type_profile_jsr292;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1568 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1569
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1570 bool MethodData::profile_all_parameters() {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1571 return profile_parameters_flag() == type_profile_all;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1572 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1573
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1574 bool MethodData::profile_parameters_for_method(methodHandle m) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1575 if (!profile_parameters()) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1576 return false;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1577 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1578
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1579 if (profile_all_parameters()) {
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1580 return true;
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1581 }
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1582
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1583 assert(profile_parameters_jsr292_only(), "inconsistent");
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1584 return m->is_compiled_lambda_form();
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12882
diff changeset
1585 }
14500
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1586
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1587 void MethodData::clean_extra_data_helper(DataLayout* dp, int shift, bool reset) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1588 if (shift == 0) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1589 return;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1590 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1591 if (!reset) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1592 // Move all cells of trap entry at dp left by "shift" cells
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1593 intptr_t* start = (intptr_t*)dp;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1594 intptr_t* end = (intptr_t*)next_extra(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1595 for (intptr_t* ptr = start; ptr < end; ptr++) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1596 *(ptr-shift) = *ptr;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1597 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1598 } else {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1599 // Reset "shift" cells stopping at dp
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1600 intptr_t* start = ((intptr_t*)dp) - shift;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1601 intptr_t* end = (intptr_t*)dp;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1602 for (intptr_t* ptr = start; ptr < end; ptr++) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1603 *ptr = 0;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1604 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1605 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1606 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1607
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1608 // Remove SpeculativeTrapData entries that reference an unloaded
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1609 // method
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1610 void MethodData::clean_extra_data(BoolObjectClosure* is_alive) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1611 DataLayout* dp = extra_data_base();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1612 DataLayout* end = extra_data_limit();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1613
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1614 int shift = 0;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1615 for (; dp < end; dp = next_extra(dp)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1616 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1617 case DataLayout::speculative_trap_data_tag: {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1618 SpeculativeTrapData* data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1619 Method* m = data->method();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1620 assert(m != NULL, "should have a method");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1621 if (!m->method_holder()->is_loader_alive(is_alive)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1622 // "shift" accumulates the number of cells for dead
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1623 // SpeculativeTrapData entries that have been seen so
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1624 // far. Following entries must be shifted left by that many
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1625 // cells to remove the dead SpeculativeTrapData entries.
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1626 shift += (int)((intptr_t*)next_extra(dp) - (intptr_t*)dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1627 } else {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1628 // Shift this entry left if it follows dead
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1629 // SpeculativeTrapData entries
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1630 clean_extra_data_helper(dp, shift);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1631 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1632 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1633 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1634 case DataLayout::bit_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1635 // Shift this entry left if it follows dead SpeculativeTrapData
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1636 // entries
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1637 clean_extra_data_helper(dp, shift);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1638 continue;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1639 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1640 case DataLayout::arg_info_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1641 // We are at end of the live trap entries. The previous "shift"
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1642 // cells contain entries that are either dead or were shifted
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1643 // left. They need to be reset to no_tag
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1644 clean_extra_data_helper(dp, shift, true);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1645 return;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1646 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1647 fatal(err_msg("unexpected tag %d", dp->tag()));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1648 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1649 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1650 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1651
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1652 // Verify there's no unloaded method referenced by a
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1653 // SpeculativeTrapData entry
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1654 void MethodData::verify_extra_data_clean(BoolObjectClosure* is_alive) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1655 #ifdef ASSERT
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1656 DataLayout* dp = extra_data_base();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1657 DataLayout* end = extra_data_limit();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1658
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1659 for (; dp < end; dp = next_extra(dp)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1660 switch(dp->tag()) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1661 case DataLayout::speculative_trap_data_tag: {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1662 SpeculativeTrapData* data = new SpeculativeTrapData(dp);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1663 Method* m = data->method();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1664 assert(m != NULL && m->method_holder()->is_loader_alive(is_alive), "Method should exist");
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1665 break;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1666 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1667 case DataLayout::bit_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1668 continue;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1669 case DataLayout::no_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1670 case DataLayout::arg_info_data_tag:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1671 return;
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1672 default:
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1673 fatal(err_msg("unexpected tag %d", dp->tag()));
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1674 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1675 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1676 #endif
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1677 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1678
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1679 void MethodData::clean_method_data(BoolObjectClosure* is_alive) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1680 for (ProfileData* data = first_data();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1681 is_valid(data);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1682 data = next_data(data)) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1683 data->clean_weak_klass_links(is_alive);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1684 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1685 ParametersTypeData* parameters = parameters_type_data();
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1686 if (parameters != NULL) {
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1687 parameters->clean_weak_klass_links(is_alive);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1688 }
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1689
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1690 clean_extra_data(is_alive);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1691 verify_extra_data_clean(is_alive);
fdad2932c73f 8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents: 14435
diff changeset
1692 }