annotate src/share/vm/oops/methodData.cpp @ 21947:9f70fc90169d

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