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