author | coleenp |
Wed, 24 Jul 2019 10:22:11 -0400 | |
changeset 57511 | 00ae3b739184 |
parent 55595 | cf5a438b3c41 |
child 58273 | 08a5148e7c4e |
permissions | -rw-r--r-- |
1 | 1 |
/* |
54669
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
2 |
* Copyright (c) 2000, 2019, 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" |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
32 |
#include "memory/metaspaceClosure.hpp" |
37248 | 33 |
#include "memory/resourceArea.hpp" |
49340
4e82736053ae
8191102: Incorrect include file use in classLoader.hpp
hseigel
parents:
47216
diff
changeset
|
34 |
#include "oops/methodData.inline.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
35 |
#include "prims/jvmtiRedefineClasses.hpp" |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
36 |
#include "runtime/arguments.hpp" |
7397 | 37 |
#include "runtime/compilationPolicy.hpp" |
38 |
#include "runtime/deoptimization.hpp" |
|
39 |
#include "runtime/handles.inline.hpp" |
|
50429
83aec1d357d4
8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents:
50322
diff
changeset
|
40 |
#include "runtime/orderAccess.hpp" |
49594
898ef81cbc0e
8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents:
49449
diff
changeset
|
41 |
#include "runtime/safepointVerifiers.hpp" |
46625 | 42 |
#include "utilities/align.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28650
diff
changeset
|
43 |
#include "utilities/copy.hpp" |
1 | 44 |
|
45 |
// ================================================================== |
|
46 |
// DataLayout |
|
47 |
// |
|
48 |
// Overlay for generic profiling data. |
|
49 |
||
50 |
// Some types of data layouts need a length field. |
|
51 |
bool DataLayout::needs_array_len(u1 tag) { |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
52 |
return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag) || (tag == parameters_type_data_tag); |
1 | 53 |
} |
54 |
||
55 |
// Perform generic initialization of the data. More specific |
|
56 |
// initialization occurs in overrides of ProfileData::post_initialize. |
|
57 |
void DataLayout::initialize(u1 tag, u2 bci, int cell_count) { |
|
58 |
_header._bits = (intptr_t)0; |
|
59 |
_header._struct._tag = tag; |
|
60 |
_header._struct._bci = bci; |
|
61 |
for (int i = 0; i < cell_count; i++) { |
|
62 |
set_cell_at(i, (intptr_t)0); |
|
63 |
} |
|
64 |
if (needs_array_len(tag)) { |
|
65 |
set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header. |
|
66 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
67 |
if (tag == call_type_data_tag) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
68 |
CallTypeData::initialize(this, cell_count); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
69 |
} else if (tag == virtual_call_type_data_tag) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
70 |
VirtualCallTypeData::initialize(this, cell_count); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
71 |
} |
1 | 72 |
} |
73 |
||
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
74 |
void DataLayout::clean_weak_klass_links(bool always_clean) { |
3696 | 75 |
ResourceMark m; |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
76 |
data_in()->clean_weak_klass_links(always_clean); |
3696 | 77 |
} |
78 |
||
79 |
||
1 | 80 |
// ================================================================== |
81 |
// ProfileData |
|
82 |
// |
|
83 |
// A ProfileData object is created to refer to a section of profiling |
|
84 |
// data in a structured way. |
|
85 |
||
86 |
// Constructor for invalid ProfileData. |
|
87 |
ProfileData::ProfileData() { |
|
88 |
_data = NULL; |
|
89 |
} |
|
90 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
91 |
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
|
92 |
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
|
93 |
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
|
94 |
stringStream ss; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
95 |
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
|
96 |
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
|
97 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
98 |
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
|
99 |
if (dp->bci() == bci()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
100 |
SpeculativeTrapData* data = new SpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
101 |
int trap = data->trap_state(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
102 |
char buf[100]; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
103 |
ss.print("trap/"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
104 |
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
|
105 |
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
|
106 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
107 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
108 |
case DataLayout::bit_data_tag: |
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 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
111 |
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
|
112 |
return ss.as_string(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
113 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
114 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
115 |
fatal("unexpected tag %d", dp->tag()); |
22916
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 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
118 |
return NULL; |
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_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
|
122 |
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
|
123 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
124 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
125 |
void ProfileData::print_shared(outputStream* st, const char* name, const char* extra) const { |
1 | 126 |
st->print("bci: %d", bci()); |
127 |
st->fill_to(tab_width_one); |
|
128 |
st->print("%s", name); |
|
129 |
tab(st); |
|
130 |
int trap = trap_state(); |
|
131 |
if (trap != 0) { |
|
132 |
char buf[100]; |
|
133 |
st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap)); |
|
134 |
} |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
135 |
if (extra != NULL) { |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24351
diff
changeset
|
136 |
st->print("%s", extra); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
137 |
} |
1 | 138 |
int flags = data()->flags(); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
139 |
if (flags != 0) { |
1 | 140 |
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
|
141 |
} |
1 | 142 |
} |
143 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
144 |
void ProfileData::tab(outputStream* st, bool first) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
145 |
st->fill_to(first ? tab_width_one : tab_width_two); |
1 | 146 |
} |
147 |
||
148 |
// ================================================================== |
|
149 |
// BitData |
|
150 |
// |
|
151 |
// A BitData corresponds to a one-bit flag. This is used to indicate |
|
152 |
// whether a checkcast bytecode has seen a null value. |
|
153 |
||
154 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
155 |
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
|
156 |
print_shared(st, "BitData", extra); |
30183 | 157 |
st->cr(); |
1 | 158 |
} |
159 |
||
160 |
// ================================================================== |
|
161 |
// CounterData |
|
162 |
// |
|
163 |
// A CounterData corresponds to a simple counter. |
|
164 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
165 |
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
|
166 |
print_shared(st, "CounterData", extra); |
1 | 167 |
st->print_cr("count(%u)", count()); |
168 |
} |
|
169 |
||
170 |
// ================================================================== |
|
171 |
// JumpData |
|
172 |
// |
|
173 |
// A JumpData is used to access profiling information for a direct |
|
174 |
// branch. It is a counter, used for counting the number of branches, |
|
175 |
// plus a data displacement, used for realigning the data pointer to |
|
176 |
// the corresponding target bci. |
|
177 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
178 |
void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 179 |
assert(stream->bci() == bci(), "wrong pos"); |
180 |
int target; |
|
181 |
Bytecodes::Code c = stream->code(); |
|
182 |
if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) { |
|
183 |
target = stream->dest_w(); |
|
184 |
} else { |
|
185 |
target = stream->dest(); |
|
186 |
} |
|
187 |
int my_di = mdo->dp_to_di(dp()); |
|
188 |
int target_di = mdo->bci_to_di(target); |
|
189 |
int offset = target_di - my_di; |
|
190 |
set_displacement(offset); |
|
191 |
} |
|
192 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
193 |
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
|
194 |
print_shared(st, "JumpData", extra); |
1 | 195 |
st->print_cr("taken(%u) displacement(%d)", taken(), displacement()); |
196 |
} |
|
197 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
198 |
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
|
199 |
// Parameter profiling include the receiver |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
200 |
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
|
201 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
202 |
SignatureStream ss(signature); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
203 |
args_count += ss.reference_parameter_count(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
204 |
args_count = MIN2(args_count, max); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
205 |
return args_count * per_arg_cell_count; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
206 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
207 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
208 |
int TypeEntriesAtCall::compute_cell_count(BytecodeStream* stream) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
209 |
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
|
210 |
assert(TypeStackSlotEntries::per_arg_count() > ReturnTypeEntry::static_cell_count(), "code to test for arguments/results broken"); |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
211 |
const methodHandle m = stream->method(); |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
212 |
int bci = stream->bci(); |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
213 |
Bytecode_invoke inv(m, bci); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
214 |
int args_cell = 0; |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
215 |
if (MethodData::profile_arguments_for_invoke(m, bci)) { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
216 |
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
|
217 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
218 |
int ret_cell = 0; |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
219 |
if (MethodData::profile_return_for_invoke(m, bci) && (inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY)) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
220 |
ret_cell = ReturnTypeEntry::static_cell_count(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
221 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
222 |
int header_cell = 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
223 |
if (args_cell + ret_cell > 0) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
224 |
header_cell = header_cell_count(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
225 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
226 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
227 |
return header_cell + args_cell + ret_cell; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
228 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
229 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
230 |
class ArgumentOffsetComputer : public SignatureInfo { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
231 |
private: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
232 |
int _max; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
233 |
GrowableArray<int> _offsets; |
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 set(int size, BasicType type) { _size += size; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
236 |
void do_object(int begin, int end) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
237 |
if (_offsets.length() < _max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
238 |
_offsets.push(_size); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
239 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
240 |
SignatureInfo::do_object(begin, end); |
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 |
void do_array (int begin, int end) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
243 |
if (_offsets.length() < _max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
244 |
_offsets.push(_size); |
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 |
SignatureInfo::do_array(begin, end); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
247 |
} |
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 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
250 |
ArgumentOffsetComputer(Symbol* signature, int max) |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
251 |
: SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
252 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
253 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
254 |
int total() { lazy_iterate_parameters(); return _size; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
255 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
256 |
int off_at(int i) const { return _offsets.at(i); } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
257 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
258 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
259 |
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
|
260 |
ResourceMark rm; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
261 |
int start = 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
262 |
// Parameter profiling include the receiver |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
263 |
if (include_receiver && has_receiver) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
264 |
set_stack_slot(0, 0); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
265 |
set_type(0, type_none()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
266 |
start += 1; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
267 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
268 |
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
|
269 |
aos.total(); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
270 |
for (int i = start; i < _number_of_entries; i++) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
271 |
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
|
272 |
set_type(i, type_none()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
273 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
274 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
275 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
276 |
void CallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
277 |
assert(Bytecodes::is_invoke(stream->code()), "should be invoke"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
278 |
Bytecode_invoke inv(stream->method(), stream->bci()); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
279 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
280 |
SignatureStream ss(inv.signature()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
281 |
if (has_arguments()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
282 |
#ifdef ASSERT |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
283 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
284 |
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
|
285 |
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
|
286 |
check_number_of_arguments(count); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
287 |
#endif |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
288 |
_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
|
289 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
290 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
291 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
292 |
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
|
293 |
_ret.post_initialize(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
294 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
295 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
296 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
297 |
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
|
298 |
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
|
299 |
Bytecode_invoke inv(stream->method(), stream->bci()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
300 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
301 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
302 |
#ifdef ASSERT |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
303 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
304 |
SignatureStream ss(inv.signature()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
305 |
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
|
306 |
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
|
307 |
check_number_of_arguments(count); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
308 |
#endif |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
309 |
_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
|
310 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
311 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
312 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
313 |
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
|
314 |
_ret.post_initialize(); |
20702
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 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
317 |
|
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
318 |
void TypeStackSlotEntries::clean_weak_klass_links(bool always_clean) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
319 |
for (int i = 0; i < _number_of_entries; i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
320 |
intptr_t p = type(i); |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
321 |
Klass* k = (Klass*)klass_part(p); |
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
322 |
if (k != NULL && (always_clean || !k->is_loader_alive())) { |
21581 | 323 |
set_type(i, with_status((Klass*)NULL, p)); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
324 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
325 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
326 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
327 |
|
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
328 |
void ReturnTypeEntry::clean_weak_klass_links(bool always_clean) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
329 |
intptr_t p = type(); |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
330 |
Klass* k = (Klass*)klass_part(p); |
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
331 |
if (k != NULL && (always_clean || !k->is_loader_alive())) { |
21581 | 332 |
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
|
333 |
} |
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::return_profiling_enabled() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
337 |
return MethodData::profile_return(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
338 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
339 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
340 |
bool TypeEntriesAtCall::arguments_profiling_enabled() { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
341 |
return MethodData::profile_arguments(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
342 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
343 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
344 |
void TypeEntries::print_klass(outputStream* st, intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
345 |
if (is_type_none(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
346 |
st->print("none"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
347 |
} else if (is_type_unknown(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
348 |
st->print("unknown"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
349 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
350 |
valid_klass(k)->print_value_on(st); |
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 |
if (was_null_seen(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
353 |
st->print(" (null seen)"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
354 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
355 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
356 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
357 |
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
|
358 |
for (int i = 0; i < _number_of_entries; i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
359 |
_pd->tab(st); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
360 |
st->print("%d: stack(%u) ", i, stack_slot(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
361 |
print_klass(st, type(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
362 |
st->cr(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
363 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
364 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
365 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
366 |
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
|
367 |
_pd->tab(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
368 |
print_klass(st, type()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
369 |
st->cr(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
370 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
371 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
372 |
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
|
373 |
CounterData::print_data_on(st, extra); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
374 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
375 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
376 |
st->print("argument types"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
377 |
_args.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
378 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
379 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
380 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
381 |
st->print("return type"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
382 |
_ret.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
383 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
384 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
385 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
386 |
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
|
387 |
VirtualCallData::print_data_on(st, extra); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
388 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
389 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
390 |
st->print("argument types"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
391 |
_args.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
392 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
393 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
394 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
395 |
st->print("return type"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
396 |
_ret.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
397 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
398 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
399 |
|
1 | 400 |
// ================================================================== |
401 |
// ReceiverTypeData |
|
402 |
// |
|
403 |
// A ReceiverTypeData is used to access profiling information about a |
|
404 |
// 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
|
405 |
// that the check is reached, and a series of (Klass*, count) pairs |
1 | 406 |
// which are used to store a type profile for the receiver of the check. |
407 |
||
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
408 |
void ReceiverTypeData::clean_weak_klass_links(bool always_clean) { |
3696 | 409 |
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
|
410 |
Klass* p = receiver(row); |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
411 |
if (p != NULL && (always_clean || !p->is_loader_alive())) { |
3696 | 412 |
clear_row(row); |
413 |
} |
|
414 |
} |
|
415 |
} |
|
416 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
417 |
#if INCLUDE_JVMCI |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
418 |
void VirtualCallData::clean_weak_klass_links(bool always_clean) { |
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
419 |
ReceiverTypeData::clean_weak_klass_links(always_clean); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
420 |
for (uint row = 0; row < method_row_limit(); row++) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
421 |
Method* p = method(row); |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
422 |
if (p != NULL && (always_clean || !p->method_holder()->is_loader_alive())) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
423 |
clear_method_row(row); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
424 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
425 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
426 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
427 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
428 |
void VirtualCallData::clean_weak_method_links() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
429 |
ReceiverTypeData::clean_weak_method_links(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
430 |
for (uint row = 0; row < method_row_limit(); row++) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
431 |
Method* p = method(row); |
49969
8624981f1ffa
8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents:
49821
diff
changeset
|
432 |
if (p != NULL && p->is_old()) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
433 |
clear_method_row(row); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
434 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
435 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
436 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
437 |
#endif // INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
438 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
439 |
void ReceiverTypeData::print_receiver_data_on(outputStream* st) const { |
1 | 440 |
uint row; |
441 |
int entries = 0; |
|
442 |
for (row = 0; row < row_limit(); row++) { |
|
443 |
if (receiver(row) != NULL) entries++; |
|
444 |
} |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
445 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
446 |
st->print_cr("count(%u) nonprofiled_count(%u) entries(%u)", count(), nonprofiled_count(), entries); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
447 |
#else |
1 | 448 |
st->print_cr("count(%u) entries(%u)", count(), entries); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
449 |
#endif |
6453 | 450 |
int total = count(); |
451 |
for (row = 0; row < row_limit(); row++) { |
|
452 |
if (receiver(row) != NULL) { |
|
453 |
total += receiver_count(row); |
|
454 |
} |
|
455 |
} |
|
1 | 456 |
for (row = 0; row < row_limit(); row++) { |
457 |
if (receiver(row) != NULL) { |
|
458 |
tab(st); |
|
459 |
receiver(row)->print_value_on(st); |
|
6453 | 460 |
st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total); |
1 | 461 |
} |
462 |
} |
|
463 |
} |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
464 |
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
|
465 |
print_shared(st, "ReceiverTypeData", extra); |
1 | 466 |
print_receiver_data_on(st); |
467 |
} |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
468 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
469 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
470 |
void VirtualCallData::print_method_data_on(outputStream* st) const { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
471 |
uint row; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
472 |
int entries = 0; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
473 |
for (row = 0; row < method_row_limit(); row++) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
474 |
if (method(row) != NULL) entries++; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
475 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
476 |
tab(st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
477 |
st->print_cr("method_entries(%u)", entries); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
478 |
int total = count(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
479 |
for (row = 0; row < method_row_limit(); row++) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
480 |
if (method(row) != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
481 |
total += method_count(row); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
482 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
483 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
484 |
for (row = 0; row < method_row_limit(); row++) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
485 |
if (method(row) != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
486 |
tab(st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
487 |
method(row)->print_value_on(st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
488 |
st->print_cr("(%u %4.2f)", method_count(row), (float) method_count(row) / (float) total); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
489 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
490 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
491 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
492 |
#endif // INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
493 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
494 |
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
|
495 |
print_shared(st, "VirtualCallData", extra); |
1 | 496 |
print_receiver_data_on(st); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
497 |
print_method_data_on(st); |
1 | 498 |
} |
499 |
||
500 |
// ================================================================== |
|
501 |
// RetData |
|
502 |
// |
|
503 |
// A RetData is used to access profiling information for a ret bytecode. |
|
504 |
// It is composed of a count of the number of times that the ret has |
|
505 |
// been executed, followed by a series of triples of the form |
|
506 |
// (bci, count, di) which count the number of times that some bci was the |
|
507 |
// target of the ret and cache a corresponding displacement. |
|
508 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
509 |
void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 510 |
for (uint row = 0; row < row_limit(); row++) { |
511 |
set_bci_displacement(row, -1); |
|
512 |
set_bci(row, no_bci); |
|
513 |
} |
|
514 |
// release so other threads see a consistent state. bci is used as |
|
515 |
// a valid flag for bci_displacement. |
|
516 |
OrderAccess::release(); |
|
517 |
} |
|
518 |
||
519 |
// This routine needs to atomically update the RetData structure, so the |
|
520 |
// caller needs to hold the RetData_lock before it gets here. Since taking |
|
521 |
// the lock can block (and allow GC) and since RetData is a ProfileData is a |
|
522 |
// wrapper around a derived oop, taking the lock in _this_ method will |
|
523 |
// basically cause the 'this' pointer's _data field to contain junk after the |
|
524 |
// lock. We require the caller to take the lock before making the ProfileData |
|
525 |
// 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
|
526 |
address RetData::fixup_ret(int return_bci, MethodData* h_mdo) { |
1 | 527 |
// First find the mdp which corresponds to the return bci. |
528 |
address mdp = h_mdo->bci_to_dp(return_bci); |
|
529 |
||
530 |
// Now check to see if any of the cache slots are open. |
|
531 |
for (uint row = 0; row < row_limit(); row++) { |
|
532 |
if (bci(row) == no_bci) { |
|
533 |
set_bci_displacement(row, mdp - dp()); |
|
534 |
set_bci_count(row, DataLayout::counter_increment); |
|
535 |
// Barrier to ensure displacement is written before the bci; allows |
|
536 |
// the interpreter to read displacement without fear of race condition. |
|
537 |
release_set_bci(row, return_bci); |
|
538 |
break; |
|
539 |
} |
|
540 |
} |
|
541 |
return mdp; |
|
542 |
} |
|
543 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
544 |
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
|
545 |
print_shared(st, "RetData", extra); |
1 | 546 |
uint row; |
547 |
int entries = 0; |
|
548 |
for (row = 0; row < row_limit(); row++) { |
|
549 |
if (bci(row) != no_bci) entries++; |
|
550 |
} |
|
551 |
st->print_cr("count(%u) entries(%u)", count(), entries); |
|
552 |
for (row = 0; row < row_limit(); row++) { |
|
553 |
if (bci(row) != no_bci) { |
|
554 |
tab(st); |
|
555 |
st->print_cr("bci(%d: count(%u) displacement(%d))", |
|
556 |
bci(row), bci_count(row), bci_displacement(row)); |
|
557 |
} |
|
558 |
} |
|
559 |
} |
|
560 |
||
561 |
// ================================================================== |
|
562 |
// BranchData |
|
563 |
// |
|
564 |
// A BranchData is used to access profiling data for a two-way branch. |
|
565 |
// It consists of taken and not_taken counts as well as a data displacement |
|
566 |
// for the taken case. |
|
567 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
568 |
void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 569 |
assert(stream->bci() == bci(), "wrong pos"); |
570 |
int target = stream->dest(); |
|
571 |
int my_di = mdo->dp_to_di(dp()); |
|
572 |
int target_di = mdo->bci_to_di(target); |
|
573 |
int offset = target_di - my_di; |
|
574 |
set_displacement(offset); |
|
575 |
} |
|
576 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
577 |
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
|
578 |
print_shared(st, "BranchData", extra); |
1 | 579 |
st->print_cr("taken(%u) displacement(%d)", |
580 |
taken(), displacement()); |
|
581 |
tab(st); |
|
582 |
st->print_cr("not taken(%u)", not_taken()); |
|
583 |
} |
|
584 |
||
585 |
// ================================================================== |
|
586 |
// MultiBranchData |
|
587 |
// |
|
588 |
// A MultiBranchData is used to access profiling information for |
|
589 |
// a multi-way branch (*switch bytecodes). It consists of a series |
|
590 |
// of (count, displacement) pairs, which count the number of times each |
|
591 |
// case was taken and specify the data displacment for each branch target. |
|
592 |
||
593 |
int MultiBranchData::compute_cell_count(BytecodeStream* stream) { |
|
594 |
int cell_count = 0; |
|
595 |
if (stream->code() == Bytecodes::_tableswitch) { |
|
7913 | 596 |
Bytecode_tableswitch sw(stream->method()(), stream->bcp()); |
597 |
cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default |
|
1 | 598 |
} else { |
7913 | 599 |
Bytecode_lookupswitch sw(stream->method()(), stream->bcp()); |
600 |
cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default |
|
1 | 601 |
} |
602 |
return cell_count; |
|
603 |
} |
|
604 |
||
605 |
void MultiBranchData::post_initialize(BytecodeStream* stream, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
606 |
MethodData* mdo) { |
1 | 607 |
assert(stream->bci() == bci(), "wrong pos"); |
608 |
int target; |
|
609 |
int my_di; |
|
610 |
int target_di; |
|
611 |
int offset; |
|
612 |
if (stream->code() == Bytecodes::_tableswitch) { |
|
7913 | 613 |
Bytecode_tableswitch sw(stream->method()(), stream->bcp()); |
614 |
int len = sw.length(); |
|
1 | 615 |
assert(array_len() == per_case_cell_count * (len + 1), "wrong len"); |
616 |
for (int count = 0; count < len; count++) { |
|
7913 | 617 |
target = sw.dest_offset_at(count) + bci(); |
1 | 618 |
my_di = mdo->dp_to_di(dp()); |
619 |
target_di = mdo->bci_to_di(target); |
|
620 |
offset = target_di - my_di; |
|
621 |
set_displacement_at(count, offset); |
|
622 |
} |
|
7913 | 623 |
target = sw.default_offset() + bci(); |
1 | 624 |
my_di = mdo->dp_to_di(dp()); |
625 |
target_di = mdo->bci_to_di(target); |
|
626 |
offset = target_di - my_di; |
|
627 |
set_default_displacement(offset); |
|
628 |
||
629 |
} else { |
|
7913 | 630 |
Bytecode_lookupswitch sw(stream->method()(), stream->bcp()); |
631 |
int npairs = sw.number_of_pairs(); |
|
1 | 632 |
assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len"); |
633 |
for (int count = 0; count < npairs; count++) { |
|
7913 | 634 |
LookupswitchPair pair = sw.pair_at(count); |
635 |
target = pair.offset() + bci(); |
|
1 | 636 |
my_di = mdo->dp_to_di(dp()); |
637 |
target_di = mdo->bci_to_di(target); |
|
638 |
offset = target_di - my_di; |
|
639 |
set_displacement_at(count, offset); |
|
640 |
} |
|
7913 | 641 |
target = sw.default_offset() + bci(); |
1 | 642 |
my_di = mdo->dp_to_di(dp()); |
643 |
target_di = mdo->bci_to_di(target); |
|
644 |
offset = target_di - my_di; |
|
645 |
set_default_displacement(offset); |
|
646 |
} |
|
647 |
} |
|
648 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
649 |
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
|
650 |
print_shared(st, "MultiBranchData", extra); |
1 | 651 |
st->print_cr("default_count(%u) displacement(%d)", |
652 |
default_count(), default_displacement()); |
|
653 |
int cases = number_of_cases(); |
|
654 |
for (int i = 0; i < cases; i++) { |
|
655 |
tab(st); |
|
656 |
st->print_cr("count(%u) displacement(%d)", |
|
657 |
count_at(i), displacement_at(i)); |
|
658 |
} |
|
659 |
} |
|
660 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
661 |
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
|
662 |
print_shared(st, "ArgInfoData", extra); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
663 |
int nargs = number_of_args(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
664 |
for (int i = 0; i < nargs; i++) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
665 |
st->print(" 0x%x", arg_modified(i)); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
666 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
667 |
st->cr(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
668 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
669 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
670 |
int ParametersTypeData::compute_cell_count(Method* m) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
671 |
if (!MethodData::profile_parameters_for_method(m)) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
672 |
return 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
673 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
674 |
int max = TypeProfileParmsLimit == -1 ? INT_MAX : TypeProfileParmsLimit; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
675 |
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
|
676 |
if (obj_args > 0) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
677 |
return obj_args + 1; // 1 cell for array len |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
678 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
679 |
return 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
680 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
681 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
682 |
void ParametersTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
683 |
_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
|
684 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
685 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
686 |
bool ParametersTypeData::profiling_enabled() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
687 |
return MethodData::profile_parameters(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
688 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
689 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
690 |
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
|
691 |
st->print("parameter types"); // FIXME extra ignored? |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
692 |
_parameters.print_data_on(st); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
693 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
694 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
695 |
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
|
696 |
print_shared(st, "SpeculativeTrapData", extra); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
697 |
tab(st); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
698 |
method()->print_short_name(st); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
699 |
st->cr(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
700 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
701 |
|
1 | 702 |
// ================================================================== |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
703 |
// MethodData* |
1 | 704 |
// |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
705 |
// A MethodData* holds information which has been collected about |
1 | 706 |
// a method. |
707 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
708 |
MethodData* MethodData::allocate(ClassLoaderData* loader_data, const methodHandle& method, TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
709 |
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
|
710 |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
711 |
return new (loader_data, size, MetaspaceObj::MethodDataType, THREAD) |
27680
8ecc0871c18e
8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents:
26586
diff
changeset
|
712 |
MethodData(method(), size, THREAD); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
713 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
714 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
715 |
int MethodData::bytecode_cell_count(Bytecodes::Code code) { |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
716 |
if (is_client_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
717 |
return no_profile_data; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
718 |
} |
1 | 719 |
switch (code) { |
720 |
case Bytecodes::_checkcast: |
|
721 |
case Bytecodes::_instanceof: |
|
722 |
case Bytecodes::_aastore: |
|
723 |
if (TypeProfileCasts) { |
|
724 |
return ReceiverTypeData::static_cell_count(); |
|
725 |
} else { |
|
726 |
return BitData::static_cell_count(); |
|
727 |
} |
|
728 |
case Bytecodes::_invokespecial: |
|
729 |
case Bytecodes::_invokestatic: |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
730 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
731 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
732 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
733 |
return CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
734 |
} |
1 | 735 |
case Bytecodes::_goto: |
736 |
case Bytecodes::_goto_w: |
|
737 |
case Bytecodes::_jsr: |
|
738 |
case Bytecodes::_jsr_w: |
|
739 |
return JumpData::static_cell_count(); |
|
740 |
case Bytecodes::_invokevirtual: |
|
741 |
case Bytecodes::_invokeinterface: |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
742 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
743 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
744 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
745 |
return VirtualCallData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
746 |
} |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
747 |
case Bytecodes::_invokedynamic: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
748 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
749 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
750 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
751 |
return CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
752 |
} |
1 | 753 |
case Bytecodes::_ret: |
754 |
return RetData::static_cell_count(); |
|
755 |
case Bytecodes::_ifeq: |
|
756 |
case Bytecodes::_ifne: |
|
757 |
case Bytecodes::_iflt: |
|
758 |
case Bytecodes::_ifge: |
|
759 |
case Bytecodes::_ifgt: |
|
760 |
case Bytecodes::_ifle: |
|
761 |
case Bytecodes::_if_icmpeq: |
|
762 |
case Bytecodes::_if_icmpne: |
|
763 |
case Bytecodes::_if_icmplt: |
|
764 |
case Bytecodes::_if_icmpge: |
|
765 |
case Bytecodes::_if_icmpgt: |
|
766 |
case Bytecodes::_if_icmple: |
|
767 |
case Bytecodes::_if_acmpeq: |
|
768 |
case Bytecodes::_if_acmpne: |
|
769 |
case Bytecodes::_ifnull: |
|
770 |
case Bytecodes::_ifnonnull: |
|
771 |
return BranchData::static_cell_count(); |
|
772 |
case Bytecodes::_lookupswitch: |
|
773 |
case Bytecodes::_tableswitch: |
|
774 |
return variable_cell_count; |
|
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46625
diff
changeset
|
775 |
default: |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46625
diff
changeset
|
776 |
return no_profile_data; |
1 | 777 |
} |
778 |
} |
|
779 |
||
780 |
// Compute the size of the profiling information corresponding to |
|
781 |
// the current bytecode. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
782 |
int MethodData::compute_data_size(BytecodeStream* stream) { |
1 | 783 |
int cell_count = bytecode_cell_count(stream->code()); |
784 |
if (cell_count == no_profile_data) { |
|
785 |
return 0; |
|
786 |
} |
|
787 |
if (cell_count == variable_cell_count) { |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
788 |
switch (stream->code()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
789 |
case Bytecodes::_lookupswitch: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
790 |
case Bytecodes::_tableswitch: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
791 |
cell_count = MultiBranchData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
792 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
793 |
case Bytecodes::_invokespecial: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
794 |
case Bytecodes::_invokestatic: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
795 |
case Bytecodes::_invokedynamic: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
796 |
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
|
797 |
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
|
798 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
799 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
800 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
801 |
cell_count = CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
802 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
803 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
804 |
case Bytecodes::_invokevirtual: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
805 |
case Bytecodes::_invokeinterface: { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
806 |
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
|
807 |
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
|
808 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
809 |
cell_count = VirtualCallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
810 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
811 |
cell_count = VirtualCallData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
812 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
813 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
814 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
815 |
default: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
816 |
fatal("unexpected bytecode for var length profile data"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
817 |
} |
1 | 818 |
} |
819 |
// Note: cell_count might be zero, meaning that there is just |
|
820 |
// a DataLayout header, with no extra cells. |
|
821 |
assert(cell_count >= 0, "sanity"); |
|
822 |
return DataLayout::compute_size_in_bytes(cell_count); |
|
823 |
} |
|
824 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
825 |
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
|
826 |
// 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
|
827 |
switch (code) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
828 |
case Bytecodes::_checkcast: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
829 |
case Bytecodes::_instanceof: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
830 |
case Bytecodes::_aastore: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
831 |
case Bytecodes::_invokevirtual: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
832 |
case Bytecodes::_invokeinterface: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
833 |
case Bytecodes::_if_acmpeq: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
834 |
case Bytecodes::_if_acmpne: |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23491
diff
changeset
|
835 |
case Bytecodes::_ifnull: |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23491
diff
changeset
|
836 |
case Bytecodes::_ifnonnull: |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
837 |
case Bytecodes::_invokestatic: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
838 |
#ifdef COMPILER2 |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
839 |
if (is_server_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
840 |
return UseTypeSpeculation; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
841 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
842 |
#endif |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
843 |
default: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
844 |
return false; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
845 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
846 |
return false; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
847 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
848 |
|
54669
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
849 |
#if INCLUDE_JVMCI |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
850 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
851 |
void* FailedSpeculation::operator new(size_t size, size_t fs_size) throw() { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
852 |
return CHeapObj<mtCompiler>::operator new(fs_size, std::nothrow); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
853 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
854 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
855 |
FailedSpeculation::FailedSpeculation(address speculation, int speculation_len) : _data_len(speculation_len), _next(NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
856 |
memcpy(data(), speculation, speculation_len); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
857 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
858 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
859 |
// A heuristic check to detect nmethods that outlive a failed speculations list. |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
860 |
static void guarantee_failed_speculations_alive(nmethod* nm, FailedSpeculation** failed_speculations_address) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
861 |
jlong head = (jlong)(address) *failed_speculations_address; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
862 |
if ((head & 0x1) == 0x1) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
863 |
stringStream st; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
864 |
if (nm != NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
865 |
st.print("%d", nm->compile_id()); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
866 |
Method* method = nm->method(); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
867 |
st.print_raw("{"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
868 |
if (method != NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
869 |
method->print_name(&st); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
870 |
} else { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
871 |
const char* jvmci_name = nm->jvmci_name(); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
872 |
if (jvmci_name != NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
873 |
st.print_raw(jvmci_name); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
874 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
875 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
876 |
st.print_raw("}"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
877 |
} else { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
878 |
st.print("<unknown>"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
879 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
880 |
fatal("Adding to failed speculations list that appears to have been freed. Source: %s", st.as_string()); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
881 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
882 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
883 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
884 |
bool FailedSpeculation::add_failed_speculation(nmethod* nm, FailedSpeculation** failed_speculations_address, address speculation, int speculation_len) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
885 |
assert(failed_speculations_address != NULL, "must be"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
886 |
size_t fs_size = sizeof(FailedSpeculation) + speculation_len; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
887 |
FailedSpeculation* fs = new (fs_size) FailedSpeculation(speculation, speculation_len); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
888 |
if (fs == NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
889 |
// no memory -> ignore failed speculation |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
890 |
return false; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
891 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
892 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
893 |
guarantee(is_aligned(fs, sizeof(FailedSpeculation*)), "FailedSpeculation objects must be pointer aligned"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
894 |
guarantee_failed_speculations_alive(nm, failed_speculations_address); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
895 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
896 |
FailedSpeculation** cursor = failed_speculations_address; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
897 |
do { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
898 |
if (*cursor == NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
899 |
FailedSpeculation* old_fs = Atomic::cmpxchg(fs, cursor, (FailedSpeculation*) NULL); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
900 |
if (old_fs == NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
901 |
// Successfully appended fs to end of the list |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
902 |
return true; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
903 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
904 |
cursor = old_fs->next_adr(); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
905 |
} else { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
906 |
cursor = (*cursor)->next_adr(); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
907 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
908 |
} while (true); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
909 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
910 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
911 |
void FailedSpeculation::free_failed_speculations(FailedSpeculation** failed_speculations_address) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
912 |
assert(failed_speculations_address != NULL, "must be"); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
913 |
FailedSpeculation* fs = *failed_speculations_address; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
914 |
while (fs != NULL) { |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
915 |
FailedSpeculation* next = fs->next(); |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
916 |
delete fs; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
917 |
fs = next; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
918 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
919 |
|
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
920 |
// Write an unaligned value to failed_speculations_address to denote |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
921 |
// that it is no longer a valid pointer. This is allows for the check |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
922 |
// in add_failed_speculation against adding to a freed failed |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
923 |
// speculations list. |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
924 |
long* head = (long*) failed_speculations_address; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
925 |
(*head) = (*head) | 0x1; |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
926 |
} |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
927 |
#endif // INCLUDE_JVMCI |
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
928 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
929 |
int MethodData::compute_extra_data_count(int data_size, int empty_bc_count, bool needs_speculative_traps) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
930 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
931 |
if (ProfileTraps) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
932 |
// Assume that up to 30% of the possibly trapping BCIs with no MDP will need to allocate one. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
933 |
int extra_data_count = MIN2(empty_bc_count, MAX2(4, (empty_bc_count * 30) / 100)); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
934 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
935 |
// Make sure we have a minimum number of extra data slots to |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
936 |
// allocate SpeculativeTrapData entries. We would want to have one |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
937 |
// entry per compilation that inlines this method and for which |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
938 |
// some type speculation assumption fails. So the room we need for |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
939 |
// the SpeculativeTrapData entries doesn't directly depend on the |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
940 |
// size of the method. Because it's hard to estimate, we reserve |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
941 |
// space for an arbitrary number of entries. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
942 |
int spec_data_count = (needs_speculative_traps ? SpecTrapLimitExtraEntries : 0) * |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
943 |
(SpeculativeTrapData::static_cell_count() + DataLayout::header_size_in_cells()); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
944 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
945 |
return MAX2(extra_data_count, spec_data_count); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
946 |
} else { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
947 |
return 0; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
948 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
949 |
#else // INCLUDE_JVMCI |
1 | 950 |
if (ProfileTraps) { |
951 |
// Assume that up to 3% of BCIs with no MDP will need to allocate one. |
|
952 |
int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1; |
|
953 |
// If the method is large, let the extra BCIs grow numerous (to ~1%). |
|
954 |
int one_percent_of_data |
|
955 |
= (uint)data_size / (DataLayout::header_size_in_bytes()*128); |
|
956 |
if (extra_data_count < one_percent_of_data) |
|
957 |
extra_data_count = one_percent_of_data; |
|
958 |
if (extra_data_count > empty_bc_count) |
|
959 |
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
|
960 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
961 |
// 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
|
962 |
// 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
|
963 |
// 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
|
964 |
// 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
|
965 |
// 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
|
966 |
// 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
|
967 |
// 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
|
968 |
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
|
969 |
(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
|
970 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
971 |
return MAX2(extra_data_count, spec_data_count); |
1 | 972 |
} else { |
973 |
return 0; |
|
974 |
} |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
975 |
#endif // INCLUDE_JVMCI |
1 | 976 |
} |
977 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
978 |
// Compute the size of the MethodData* necessary to store |
1 | 979 |
// profiling information about a given method. Size is in bytes. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
980 |
int MethodData::compute_allocation_size_in_bytes(const methodHandle& method) { |
1 | 981 |
int data_size = 0; |
982 |
BytecodeStream stream(method); |
|
983 |
Bytecodes::Code c; |
|
984 |
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
|
985 |
bool needs_speculative_traps = false; |
1 | 986 |
while ((c = stream.next()) >= 0) { |
987 |
int size_in_bytes = compute_data_size(&stream); |
|
988 |
data_size += size_in_bytes; |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
989 |
if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
990 |
needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c); |
1 | 991 |
} |
992 |
int object_size = in_bytes(data_offset()) + data_size; |
|
993 |
||
994 |
// 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
|
995 |
int extra_data_count = compute_extra_data_count(data_size, empty_bc_count, needs_speculative_traps); |
1 | 996 |
object_size += extra_data_count * DataLayout::compute_size_in_bytes(0); |
997 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
998 |
// 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
|
999 |
int arg_size = method->size_of_parameters(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1000 |
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
|
1001 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1002 |
// 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
|
1003 |
// parameters |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1004 |
int args_cell = ParametersTypeData::compute_cell_count(method()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1005 |
if (args_cell > 0) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1006 |
object_size += DataLayout::compute_size_in_bytes(args_cell); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1007 |
} |
1 | 1008 |
return object_size; |
1009 |
} |
|
1010 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1011 |
// Compute the size of the MethodData* necessary to store |
1 | 1012 |
// profiling information about a given method. Size is in words |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1013 |
int MethodData::compute_allocation_size_in_words(const methodHandle& method) { |
1 | 1014 |
int byte_size = compute_allocation_size_in_bytes(method); |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46542
diff
changeset
|
1015 |
int word_size = align_up(byte_size, BytesPerWord) / BytesPerWord; |
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35492
diff
changeset
|
1016 |
return align_metadata_size(word_size); |
1 | 1017 |
} |
1018 |
||
1019 |
// Initialize an individual data segment. Returns the size of |
|
1020 |
// the segment in bytes. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1021 |
int MethodData::initialize_data(BytecodeStream* stream, |
1 | 1022 |
int data_index) { |
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
1023 |
if (is_client_compilation_mode_vm()) { |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
1024 |
return 0; |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
37473
diff
changeset
|
1025 |
} |
1 | 1026 |
int cell_count = -1; |
1027 |
int tag = DataLayout::no_tag; |
|
1028 |
DataLayout* data_layout = data_layout_at(data_index); |
|
1029 |
Bytecodes::Code c = stream->code(); |
|
1030 |
switch (c) { |
|
1031 |
case Bytecodes::_checkcast: |
|
1032 |
case Bytecodes::_instanceof: |
|
1033 |
case Bytecodes::_aastore: |
|
1034 |
if (TypeProfileCasts) { |
|
1035 |
cell_count = ReceiverTypeData::static_cell_count(); |
|
1036 |
tag = DataLayout::receiver_type_data_tag; |
|
1037 |
} else { |
|
1038 |
cell_count = BitData::static_cell_count(); |
|
1039 |
tag = DataLayout::bit_data_tag; |
|
1040 |
} |
|
1041 |
break; |
|
1042 |
case Bytecodes::_invokespecial: |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1043 |
case Bytecodes::_invokestatic: { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1044 |
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
|
1045 |
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
|
1046 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1047 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1048 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1049 |
cell_count = counter_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1050 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1051 |
if (cell_count > counter_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1052 |
tag = DataLayout::call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1053 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1054 |
tag = DataLayout::counter_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1055 |
} |
1 | 1056 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1057 |
} |
1 | 1058 |
case Bytecodes::_goto: |
1059 |
case Bytecodes::_goto_w: |
|
1060 |
case Bytecodes::_jsr: |
|
1061 |
case Bytecodes::_jsr_w: |
|
1062 |
cell_count = JumpData::static_cell_count(); |
|
1063 |
tag = DataLayout::jump_data_tag; |
|
1064 |
break; |
|
1065 |
case Bytecodes::_invokevirtual: |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1066 |
case Bytecodes::_invokeinterface: { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1067 |
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
|
1068 |
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
|
1069 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1070 |
cell_count = VirtualCallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1071 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1072 |
cell_count = virtual_call_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1073 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1074 |
if (cell_count > virtual_call_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1075 |
tag = DataLayout::virtual_call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1076 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1077 |
tag = DataLayout::virtual_call_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1078 |
} |
1 | 1079 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1080 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1081 |
case Bytecodes::_invokedynamic: { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
1082 |
// %%% 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
|
1083 |
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
|
1084 |
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
|
1085 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1086 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1087 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1088 |
cell_count = counter_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1089 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1090 |
if (cell_count > counter_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1091 |
tag = DataLayout::call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1092 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1093 |
tag = DataLayout::counter_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1094 |
} |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
1095 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1096 |
} |
1 | 1097 |
case Bytecodes::_ret: |
1098 |
cell_count = RetData::static_cell_count(); |
|
1099 |
tag = DataLayout::ret_data_tag; |
|
1100 |
break; |
|
1101 |
case Bytecodes::_ifeq: |
|
1102 |
case Bytecodes::_ifne: |
|
1103 |
case Bytecodes::_iflt: |
|
1104 |
case Bytecodes::_ifge: |
|
1105 |
case Bytecodes::_ifgt: |
|
1106 |
case Bytecodes::_ifle: |
|
1107 |
case Bytecodes::_if_icmpeq: |
|
1108 |
case Bytecodes::_if_icmpne: |
|
1109 |
case Bytecodes::_if_icmplt: |
|
1110 |
case Bytecodes::_if_icmpge: |
|
1111 |
case Bytecodes::_if_icmpgt: |
|
1112 |
case Bytecodes::_if_icmple: |
|
1113 |
case Bytecodes::_if_acmpeq: |
|
1114 |
case Bytecodes::_if_acmpne: |
|
1115 |
case Bytecodes::_ifnull: |
|
1116 |
case Bytecodes::_ifnonnull: |
|
1117 |
cell_count = BranchData::static_cell_count(); |
|
1118 |
tag = DataLayout::branch_data_tag; |
|
1119 |
break; |
|
1120 |
case Bytecodes::_lookupswitch: |
|
1121 |
case Bytecodes::_tableswitch: |
|
1122 |
cell_count = MultiBranchData::compute_cell_count(stream); |
|
1123 |
tag = DataLayout::multi_branch_data_tag; |
|
1124 |
break; |
|
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46625
diff
changeset
|
1125 |
default: |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46625
diff
changeset
|
1126 |
break; |
1 | 1127 |
} |
1128 |
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
|
1129 |
((MethodData::profile_arguments() || MethodData::profile_return()) && |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1130 |
(tag == DataLayout::call_type_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1131 |
tag == DataLayout::counter_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1132 |
tag == DataLayout::virtual_call_type_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1133 |
tag == DataLayout::virtual_call_data_tag)) || |
1 | 1134 |
cell_count == bytecode_cell_count(c), "cell counts must agree"); |
1135 |
if (cell_count >= 0) { |
|
1136 |
assert(tag != DataLayout::no_tag, "bad tag"); |
|
1137 |
assert(bytecode_has_profile(c), "agree w/ BHP"); |
|
1138 |
data_layout->initialize(tag, stream->bci(), cell_count); |
|
1139 |
return DataLayout::compute_size_in_bytes(cell_count); |
|
1140 |
} else { |
|
1141 |
assert(!bytecode_has_profile(c), "agree w/ !BHP"); |
|
1142 |
return 0; |
|
1143 |
} |
|
1144 |
} |
|
1145 |
||
1146 |
// 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
|
1147 |
ProfileData* MethodData::data_at(int data_index) const { |
1 | 1148 |
if (out_of_bounds(data_index)) { |
1149 |
return NULL; |
|
1150 |
} |
|
1151 |
DataLayout* data_layout = data_layout_at(data_index); |
|
3696 | 1152 |
return data_layout->data_in(); |
1153 |
} |
|
1 | 1154 |
|
3696 | 1155 |
ProfileData* DataLayout::data_in() { |
1156 |
switch (tag()) { |
|
1 | 1157 |
case DataLayout::no_tag: |
1158 |
default: |
|
1159 |
ShouldNotReachHere(); |
|
1160 |
return NULL; |
|
1161 |
case DataLayout::bit_data_tag: |
|
3696 | 1162 |
return new BitData(this); |
1 | 1163 |
case DataLayout::counter_data_tag: |
3696 | 1164 |
return new CounterData(this); |
1 | 1165 |
case DataLayout::jump_data_tag: |
3696 | 1166 |
return new JumpData(this); |
1 | 1167 |
case DataLayout::receiver_type_data_tag: |
3696 | 1168 |
return new ReceiverTypeData(this); |
1 | 1169 |
case DataLayout::virtual_call_data_tag: |
3696 | 1170 |
return new VirtualCallData(this); |
1 | 1171 |
case DataLayout::ret_data_tag: |
3696 | 1172 |
return new RetData(this); |
1 | 1173 |
case DataLayout::branch_data_tag: |
3696 | 1174 |
return new BranchData(this); |
1 | 1175 |
case DataLayout::multi_branch_data_tag: |
3696 | 1176 |
return new MultiBranchData(this); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1177 |
case DataLayout::arg_info_data_tag: |
3696 | 1178 |
return new ArgInfoData(this); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1179 |
case DataLayout::call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1180 |
return new CallTypeData(this); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1181 |
case DataLayout::virtual_call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1182 |
return new VirtualCallTypeData(this); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1183 |
case DataLayout::parameters_type_data_tag: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1184 |
return new ParametersTypeData(this); |
33632 | 1185 |
case DataLayout::speculative_trap_data_tag: |
1186 |
return new SpeculativeTrapData(this); |
|
1187 |
} |
|
1 | 1188 |
} |
1189 |
||
1190 |
// Iteration over data. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1191 |
ProfileData* MethodData::next_data(ProfileData* current) const { |
1 | 1192 |
int current_index = dp_to_di(current->dp()); |
1193 |
int next_index = current_index + current->size_in_bytes(); |
|
1194 |
ProfileData* next = data_at(next_index); |
|
1195 |
return next; |
|
1196 |
} |
|
1197 |
||
1198 |
// Give each of the data entries a chance to perform specific |
|
1199 |
// data initialization. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1200 |
void MethodData::post_initialize(BytecodeStream* stream) { |
1 | 1201 |
ResourceMark rm; |
1202 |
ProfileData* data; |
|
1203 |
for (data = first_data(); is_valid(data); data = next_data(data)) { |
|
1204 |
stream->set_start(data->bci()); |
|
1205 |
stream->next(); |
|
1206 |
data->post_initialize(stream, this); |
|
1207 |
} |
|
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1208 |
if (_parameters_type_data_di != no_parameters) { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1209 |
parameters_type_data()->post_initialize(NULL, this); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1210 |
} |
1 | 1211 |
} |
1212 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1213 |
// Initialize the MethodData* corresponding to a given method. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1214 |
MethodData::MethodData(const methodHandle& method, int size, TRAPS) |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1215 |
: _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
|
1216 |
_parameters_type_data_di(parameters_uninitialized) { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1217 |
// Set the method back-pointer. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1218 |
_method = method(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1219 |
initialize(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1220 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1221 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1222 |
void MethodData::initialize() { |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
33638
diff
changeset
|
1223 |
NoSafepointVerifier no_safepoint; // init function atomic wrt GC |
1 | 1224 |
ResourceMark rm; |
6453 | 1225 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1226 |
init(); |
1 | 1227 |
set_creation_mileage(mileage_of(method())); |
1228 |
||
1229 |
// Go through the bytecodes and allocate and initialize the |
|
1230 |
// corresponding data cells. |
|
1231 |
int data_size = 0; |
|
1232 |
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
|
1233 |
_data[0] = 0; // apparently not set below. |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1234 |
BytecodeStream stream(method()); |
1 | 1235 |
Bytecodes::Code c; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1236 |
bool needs_speculative_traps = false; |
1 | 1237 |
while ((c = stream.next()) >= 0) { |
1238 |
int size_in_bytes = initialize_data(&stream, data_size); |
|
1239 |
data_size += size_in_bytes; |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1240 |
if (size_in_bytes == 0 JVMCI_ONLY(&& Bytecodes::can_trap(c))) empty_bc_count += 1; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1241 |
needs_speculative_traps = needs_speculative_traps || is_speculative_trap_bytecode(c); |
1 | 1242 |
} |
1243 |
_data_size = data_size; |
|
1244 |
int object_size = in_bytes(data_offset()) + data_size; |
|
1245 |
||
1246 |
// 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
|
1247 |
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
|
1248 |
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
|
1249 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1250 |
// 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
|
1251 |
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
|
1252 |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1253 |
// 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
|
1254 |
// 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
|
1255 |
// the code for traps cells works. |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1256 |
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
|
1257 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1258 |
int arg_size = method()->size_of_parameters(); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1259 |
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
|
1260 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1261 |
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
|
1262 |
object_size += extra_size + arg_data_size; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1263 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1264 |
int parms_cell = ParametersTypeData::compute_cell_count(method()); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1265 |
// 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
|
1266 |
// 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
|
1267 |
// 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
|
1268 |
// 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
|
1269 |
// 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
|
1270 |
if (parms_cell > 0) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1271 |
object_size += DataLayout::compute_size_in_bytes(parms_cell); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1272 |
_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
|
1273 |
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
|
1274 |
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
|
1275 |
} else { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1276 |
_parameters_type_data_di = no_parameters; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1277 |
} |
1 | 1278 |
|
1279 |
// Set an initial hint. Don't use set_hint_di() because |
|
1280 |
// first_di() may be out of bounds if data_size is 0. |
|
1281 |
// In that situation, _hint_di is never used, but at |
|
1282 |
// least well-defined. |
|
1283 |
_hint_di = first_di(); |
|
1284 |
||
1285 |
post_initialize(&stream); |
|
1286 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1287 |
assert(object_size == compute_allocation_size_in_bytes(methodHandle(_method)), "MethodData: computed size != initialized size"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1288 |
set_size(object_size); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1289 |
} |
15928
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15437
diff
changeset
|
1290 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1291 |
void MethodData::init() { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1292 |
_invocation_counter.init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1293 |
_backedge_counter.init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1294 |
_invocation_counter_start = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1295 |
_backedge_counter_start = 0; |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
1296 |
|
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
1297 |
// Set per-method invoke- and backedge mask. |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
1298 |
double scale = 1.0; |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
1299 |
CompilerOracle::has_option_value(_method, "CompileThresholdScaling", scale); |
50589
e5d741569070
8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents:
50429
diff
changeset
|
1300 |
_invoke_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift; |
e5d741569070
8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents:
50429
diff
changeset
|
1301 |
_backedge_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift; |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28365
diff
changeset
|
1302 |
|
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
1303 |
_tenure_traps = 0; |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1304 |
_num_loops = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1305 |
_num_blocks = 0; |
27643
fe8f95a2d9bc
8056071: compiler/whitebox/IsMethodCompilableTest.java fails with 'method() is not compilable after 3 iterations'
thartmann
parents:
26586
diff
changeset
|
1306 |
_would_profile = unknown; |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1307 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1308 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1309 |
_jvmci_ir_size = 0; |
54669
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
53278
diff
changeset
|
1310 |
_failed_speculations = NULL; |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1311 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30183
diff
changeset
|
1312 |
|
23491 | 1313 |
#if INCLUDE_RTM_OPT |
1314 |
_rtm_state = NoRTM; // No RTM lock eliding by default |
|
1315 |
if (UseRTMLocking && |
|
1316 |
!CompilerOracle::has_option_string(_method, "NoRTMLockEliding")) { |
|
1317 |
if (CompilerOracle::has_option_string(_method, "UseRTMLockEliding") || !UseRTMDeopt) { |
|
1318 |
// Generate RTM lock eliding code without abort ratio calculation code. |
|
1319 |
_rtm_state = UseRTM; |
|
1320 |
} else if (UseRTMDeopt) { |
|
1321 |
// Generate RTM lock eliding code and include abort ratio calculation |
|
1322 |
// code if UseRTMDeopt is on. |
|
1323 |
_rtm_state = ProfileRTM; |
|
1324 |
} |
|
1325 |
} |
|
1326 |
#endif |
|
1327 |
||
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1328 |
// Initialize flags and trap history. |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1329 |
_nof_decompiles = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1330 |
_nof_overflow_recompiles = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1331 |
_nof_overflow_traps = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1332 |
clear_escape_info(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1333 |
assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align"); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1334 |
Copy::zero_to_words((HeapWord*) &_trap_hist, |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1335 |
sizeof(_trap_hist) / sizeof(HeapWord)); |
1 | 1336 |
} |
1337 |
||
1338 |
// 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
|
1339 |
int MethodData::mileage_of(Method* method) { |
1 | 1340 |
int mileage = 0; |
6453 | 1341 |
if (TieredCompilation) { |
1342 |
mileage = MAX2(method->invocation_count(), method->backedge_count()); |
|
1343 |
} else { |
|
1344 |
int iic = method->interpreter_invocation_count(); |
|
1345 |
if (mileage < iic) mileage = iic; |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1346 |
MethodCounters* mcs = method->method_counters(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1347 |
if (mcs != NULL) { |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1348 |
InvocationCounter* ic = mcs->invocation_counter(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1349 |
InvocationCounter* bc = mcs->backedge_counter(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1350 |
int icval = ic->count(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1351 |
if (ic->carry()) icval += CompileThreshold; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1352 |
if (mileage < icval) mileage = icval; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1353 |
int bcval = bc->count(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1354 |
if (bc->carry()) bcval += CompileThreshold; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1355 |
if (mileage < bcval) mileage = bcval; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1356 |
} |
6453 | 1357 |
} |
1 | 1358 |
return mileage; |
1359 |
} |
|
1360 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1361 |
bool MethodData::is_mature() const { |
6453 | 1362 |
return CompilationPolicy::policy()->is_mature(_method); |
1 | 1363 |
} |
1364 |
||
1365 |
// 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
|
1366 |
address MethodData::bci_to_dp(int bci) { |
1 | 1367 |
ResourceMark rm; |
1368 |
ProfileData* data = data_before(bci); |
|
1369 |
ProfileData* prev = NULL; |
|
1370 |
for ( ; is_valid(data); data = next_data(data)) { |
|
1371 |
if (data->bci() >= bci) { |
|
1372 |
if (data->bci() == bci) set_hint_di(dp_to_di(data->dp())); |
|
1373 |
else if (prev != NULL) set_hint_di(dp_to_di(prev->dp())); |
|
1374 |
return data->dp(); |
|
1375 |
} |
|
1376 |
prev = data; |
|
1377 |
} |
|
1378 |
return (address)limit_data_position(); |
|
1379 |
} |
|
1380 |
||
1381 |
// 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
|
1382 |
ProfileData* MethodData::bci_to_data(int bci) { |
1 | 1383 |
ProfileData* data = data_before(bci); |
1384 |
for ( ; is_valid(data); data = next_data(data)) { |
|
1385 |
if (data->bci() == bci) { |
|
1386 |
set_hint_di(dp_to_di(data->dp())); |
|
1387 |
return data; |
|
1388 |
} else if (data->bci() > bci) { |
|
1389 |
break; |
|
1390 |
} |
|
1391 |
} |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1392 |
return bci_to_extra_data(bci, NULL, false); |
1 | 1393 |
} |
1394 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1395 |
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
|
1396 |
int nb_cells = 0; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1397 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1398 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1399 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1400 |
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
|
1401 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1402 |
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
|
1403 |
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
|
1404 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1405 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
1406 |
fatal("unexpected tag %d", dp->tag()); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1407 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1408 |
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
|
1409 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1410 |
|
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
|
1411 |
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
|
1412 |
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
|
1413 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1414 |
for (;; dp = next_extra(dp)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1415 |
assert(dp < end, "moved past end of extra data"); |
1 | 1416 |
// No need for "OrderAccess::load_acquire" ops, |
1417 |
// 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
|
1418 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1419 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1420 |
return NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1421 |
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
|
1422 |
dp = end; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1423 |
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
|
1424 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1425 |
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
|
1426 |
return new BitData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1427 |
} |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1428 |
break; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1429 |
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
|
1430 |
if (m != NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1431 |
SpeculativeTrapData* data = new SpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1432 |
// 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
|
1433 |
// 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
|
1434 |
// entry in that case. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1435 |
if (dp->bci() == bci) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1436 |
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
|
1437 |
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
|
1438 |
return NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1439 |
} else if (data->method() == m) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1440 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1441 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1442 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1443 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1444 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1445 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
1446 |
fatal("unexpected tag %d", dp->tag()); |
1 | 1447 |
} |
1448 |
} |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1449 |
return NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1450 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1451 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1452 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1453 |
// 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
|
1454 |
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
|
1455 |
// 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
|
1456 |
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
|
1457 |
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
|
1458 |
"code needs to be adjusted"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1459 |
|
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1460 |
// 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
|
1461 |
if (m != NULL && m->is_old()) { |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1462 |
return NULL; |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1463 |
} |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1464 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1465 |
DataLayout* dp = extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1466 |
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
|
1467 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1468 |
// 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
|
1469 |
// 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
|
1470 |
// 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
|
1471 |
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
|
1472 |
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
|
1473 |
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
|
1474 |
} |
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
|
1475 |
|
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
|
1476 |
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
|
1477 |
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
|
1478 |
// 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
|
1479 |
// 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
|
1480 |
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
|
1481 |
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
|
1482 |
return result; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1483 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1484 |
|
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
|
1485 |
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
|
1486 |
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
|
1487 |
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
|
1488 |
// 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
|
1489 |
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
|
1490 |
return NULL; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1491 |
} |
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
|
1492 |
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
|
1493 |
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
|
1494 |
|
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
|
1495 |
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
|
1496 |
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
|
1497 |
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
|
1498 |
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
|
1499 |
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
|
1500 |
} 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
|
1501 |
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
|
1502 |
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
|
1503 |
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
|
1504 |
} |
1 | 1505 |
} |
1506 |
return NULL; |
|
1507 |
} |
|
1508 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1509 |
ArgInfoData *MethodData::arg_info() { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1510 |
DataLayout* dp = extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1511 |
DataLayout* end = args_data_limit(); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1512 |
for (; dp < end; dp = next_extra(dp)) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1513 |
if (dp->tag() == DataLayout::arg_info_data_tag) |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1514 |
return new ArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1515 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1516 |
return NULL; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1517 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1518 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1519 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1520 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1521 |
void MethodData::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1522 |
assert(is_methodData(), "should be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1523 |
st->print("method data for "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1524 |
method()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1525 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1526 |
print_data_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1527 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1528 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1529 |
void MethodData::print_value_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1530 |
assert(is_methodData(), "should be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1531 |
st->print("method data for "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1532 |
method()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1533 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1534 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1535 |
void MethodData::print_data_on(outputStream* st) const { |
1 | 1536 |
ResourceMark rm; |
1537 |
ProfileData* data = first_data(); |
|
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1538 |
if (_parameters_type_data_di != no_parameters) { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1539 |
parameters_type_data()->print_data_on(st); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1540 |
} |
1 | 1541 |
for ( ; is_valid(data); data = next_data(data)) { |
1542 |
st->print("%d", dp_to_di(data->dp())); |
|
1543 |
st->fill_to(6); |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1544 |
data->print_data_on(st, this); |
1 | 1545 |
} |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1546 |
st->print_cr("--- Extra data:"); |
1 | 1547 |
DataLayout* dp = extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1548 |
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
|
1549 |
for (;; dp = next_extra(dp)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1550 |
assert(dp < end, "moved past end of extra data"); |
1 | 1551 |
// No need for "OrderAccess::load_acquire" ops, |
1552 |
// 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
|
1553 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1554 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1555 |
continue; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1556 |
case DataLayout::bit_data_tag: |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1557 |
data = new BitData(dp); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1558 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1559 |
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
|
1560 |
data = new SpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1561 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1562 |
case DataLayout::arg_info_data_tag: |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1563 |
data = new ArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1564 |
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
|
1565 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1566 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
1567 |
fatal("unexpected tag %d", dp->tag()); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1568 |
} |
1 | 1569 |
st->print("%d", dp_to_di(data->dp())); |
1570 |
st->fill_to(6); |
|
1571 |
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
|
1572 |
if (dp >= end) return; |
1 | 1573 |
} |
1574 |
} |
|
1575 |
||
15437 | 1576 |
#if INCLUDE_SERVICES |
1577 |
// Size Statistics |
|
1578 |
void MethodData::collect_statistics(KlassSizeStats *sz) const { |
|
1579 |
int n = sz->count(this); |
|
1580 |
sz->_method_data_bytes += n; |
|
1581 |
sz->_method_all_bytes += n; |
|
1582 |
sz->_rw_bytes += n; |
|
1583 |
} |
|
1584 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1585 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1586 |
// Verification |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1587 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1588 |
void MethodData::verify_on(outputStream* st) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1589 |
guarantee(is_methodData(), "object must be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1590 |
// guarantee(m->is_perm(), "should be in permspace"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1591 |
this->verify_data_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1592 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1593 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1594 |
void MethodData::verify_data_on(outputStream* st) { |
1 | 1595 |
NEEDS_CLEANUP; |
1596 |
// not yet implemented. |
|
1597 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1598 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1599 |
bool MethodData::profile_jsr292(const methodHandle& m, int bci) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1600 |
if (m->is_compiled_lambda_form()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1601 |
return true; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1602 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1603 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1604 |
Bytecode_invoke inv(m , bci); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1605 |
return inv.is_invokedynamic() || inv.is_invokehandle(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1606 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1607 |
|
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1608 |
bool MethodData::profile_unsafe(const methodHandle& m, int bci) { |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1609 |
Bytecode_invoke inv(m , bci); |
55595
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1610 |
if (inv.is_invokevirtual()) { |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1611 |
if (inv.klass() == vmSymbols::jdk_internal_misc_Unsafe() || |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1612 |
inv.klass() == vmSymbols::sun_misc_Unsafe()) { |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1613 |
ResourceMark rm; |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1614 |
char* name = inv.name()->as_C_string(); |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1615 |
if (!strncmp(name, "get", 3) || !strncmp(name, "put", 3)) { |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1616 |
return true; |
cf5a438b3c41
8226409: Enable argument profiling for sun.misc.Unsafe.put*/get*
vlivanov
parents:
54669
diff
changeset
|
1617 |
} |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1618 |
} |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1619 |
} |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1620 |
return false; |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1621 |
} |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1622 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1623 |
int MethodData::profile_arguments_flag() { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1624 |
return TypeProfileLevel % 10; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1625 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1626 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1627 |
bool MethodData::profile_arguments() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1628 |
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
|
1629 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1630 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1631 |
bool MethodData::profile_arguments_jsr292_only() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1632 |
return profile_arguments_flag() == type_profile_jsr292; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1633 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1634 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1635 |
bool MethodData::profile_all_arguments() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1636 |
return profile_arguments_flag() == type_profile_all; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1637 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1638 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1639 |
bool MethodData::profile_arguments_for_invoke(const methodHandle& m, int bci) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1640 |
if (!profile_arguments()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1641 |
return false; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1642 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1643 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1644 |
if (profile_all_arguments()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1645 |
return true; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1646 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1647 |
|
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1648 |
if (profile_unsafe(m, bci)) { |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1649 |
return true; |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1650 |
} |
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
43455
diff
changeset
|
1651 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1652 |
assert(profile_arguments_jsr292_only(), "inconsistent"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1653 |
return profile_jsr292(m, bci); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1654 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1655 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1656 |
int MethodData::profile_return_flag() { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1657 |
return (TypeProfileLevel % 100) / 10; |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1658 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1659 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1660 |
bool MethodData::profile_return() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1661 |
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
|
1662 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1663 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1664 |
bool MethodData::profile_return_jsr292_only() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1665 |
return profile_return_flag() == type_profile_jsr292; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1666 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1667 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1668 |
bool MethodData::profile_all_return() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1669 |
return profile_return_flag() == type_profile_all; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1670 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1671 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1672 |
bool MethodData::profile_return_for_invoke(const methodHandle& m, int bci) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1673 |
if (!profile_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1674 |
return false; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1675 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1676 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1677 |
if (profile_all_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1678 |
return true; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1679 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1680 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1681 |
assert(profile_return_jsr292_only(), "inconsistent"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1682 |
return profile_jsr292(m, bci); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1683 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1684 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1685 |
int MethodData::profile_parameters_flag() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1686 |
return TypeProfileLevel / 100; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1687 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1688 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1689 |
bool MethodData::profile_parameters() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1690 |
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
|
1691 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1692 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1693 |
bool MethodData::profile_parameters_jsr292_only() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1694 |
return profile_parameters_flag() == type_profile_jsr292; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1695 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1696 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1697 |
bool MethodData::profile_all_parameters() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1698 |
return profile_parameters_flag() == type_profile_all; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1699 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1700 |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33198
diff
changeset
|
1701 |
bool MethodData::profile_parameters_for_method(const methodHandle& m) { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1702 |
if (!profile_parameters()) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1703 |
return false; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1704 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1705 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1706 |
if (profile_all_parameters()) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1707 |
return true; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1708 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1709 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1710 |
assert(profile_parameters_jsr292_only(), "inconsistent"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1711 |
return m->is_compiled_lambda_form(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1712 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1713 |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
1714 |
void MethodData::metaspace_pointers_do(MetaspaceClosure* it) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
1715 |
log_trace(cds)("Iter(MethodData): %p", this); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
1716 |
it->push(&_method); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
1717 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
1718 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1719 |
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
|
1720 |
if (shift == 0) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1721 |
return; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1722 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1723 |
if (!reset) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1724 |
// 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
|
1725 |
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
|
1726 |
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
|
1727 |
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
|
1728 |
*(ptr-shift) = *ptr; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1729 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1730 |
} else { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1731 |
// 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
|
1732 |
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
|
1733 |
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
|
1734 |
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
|
1735 |
*ptr = 0; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1736 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1737 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1738 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1739 |
|
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1740 |
// Check for entries that reference an unloaded method |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1741 |
class CleanExtraDataKlassClosure : public CleanExtraDataClosure { |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1742 |
bool _always_clean; |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1743 |
public: |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1744 |
CleanExtraDataKlassClosure(bool always_clean) : _always_clean(always_clean) {} |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1745 |
bool is_live(Method* m) { |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1746 |
return !(_always_clean) && m->method_holder()->is_loader_alive(); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1747 |
} |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1748 |
}; |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1749 |
|
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1750 |
// Check for entries that reference a redefined method |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1751 |
class CleanExtraDataMethodClosure : public CleanExtraDataClosure { |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1752 |
public: |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1753 |
CleanExtraDataMethodClosure() {} |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1754 |
bool is_live(Method* m) { return !m->is_old(); } |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1755 |
}; |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1756 |
|
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1757 |
|
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1758 |
// Remove SpeculativeTrapData entries that reference an unloaded or |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1759 |
// redefined method |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1760 |
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
|
1761 |
DataLayout* dp = extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1762 |
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
|
1763 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1764 |
int shift = 0; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1765 |
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
|
1766 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1767 |
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
|
1768 |
SpeculativeTrapData* data = new SpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1769 |
Method* m = data->method(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1770 |
assert(m != NULL, "should have a method"); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1771 |
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
|
1772 |
// "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
|
1773 |
// 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
|
1774 |
// 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
|
1775 |
// 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
|
1776 |
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
|
1777 |
} else { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1778 |
// 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
|
1779 |
// SpeculativeTrapData entries |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1780 |
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
|
1781 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1782 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1783 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1784 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1785 |
// 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
|
1786 |
// entries |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1787 |
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
|
1788 |
continue; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1789 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1790 |
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
|
1791 |
// 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
|
1792 |
// 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
|
1793 |
// 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
|
1794 |
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
|
1795 |
return; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1796 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
1797 |
fatal("unexpected tag %d", dp->tag()); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1798 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1799 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1800 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1801 |
|
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1802 |
// 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
|
1803 |
// SpeculativeTrapData entry |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1804 |
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
|
1805 |
#ifdef ASSERT |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1806 |
DataLayout* dp = extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25635
diff
changeset
|
1807 |
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
|
1808 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1809 |
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
|
1810 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1811 |
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
|
1812 |
SpeculativeTrapData* data = new SpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1813 |
Method* m = data->method(); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1814 |
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
|
1815 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1816 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1817 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1818 |
continue; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1819 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1820 |
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
|
1821 |
return; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1822 |
default: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30183
diff
changeset
|
1823 |
fatal("unexpected tag %d", dp->tag()); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1824 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1825 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1826 |
#endif |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1827 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1828 |
|
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1829 |
void MethodData::clean_method_data(bool always_clean) { |
37473
8af1deb0c879
8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents:
37248
diff
changeset
|
1830 |
ResourceMark rm; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1831 |
for (ProfileData* data = first_data(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1832 |
is_valid(data); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1833 |
data = next_data(data)) { |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1834 |
data->clean_weak_klass_links(always_clean); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1835 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1836 |
ParametersTypeData* parameters = parameters_type_data(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1837 |
if (parameters != NULL) { |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1838 |
parameters->clean_weak_klass_links(always_clean); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1839 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22851
diff
changeset
|
1840 |
|
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49594
diff
changeset
|
1841 |
CleanExtraDataKlassClosure cl(always_clean); |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1842 |
clean_extra_data(&cl); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1843 |
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
|
1844 |
} |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1845 |
|
49969
8624981f1ffa
8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents:
49821
diff
changeset
|
1846 |
// This is called during redefinition to clean all "old" redefined |
8624981f1ffa
8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents:
49821
diff
changeset
|
1847 |
// methods out of MethodData for all methods. |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1848 |
void MethodData::clean_weak_method_links() { |
37473
8af1deb0c879
8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents:
37248
diff
changeset
|
1849 |
ResourceMark rm; |
23845
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1850 |
for (ProfileData* data = first_data(); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1851 |
is_valid(data); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1852 |
data = next_data(data)) { |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1853 |
data->clean_weak_method_links(); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1854 |
} |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1855 |
|
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1856 |
CleanExtraDataMethodClosure cl; |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1857 |
clean_extra_data(&cl); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1858 |
verify_extra_data_clean(&cl); |
ebd1fafcc362
8038636: speculative traps break when classes are redefined
roland
parents:
23526
diff
changeset
|
1859 |
} |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1860 |
|
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1861 |
#ifdef ASSERT |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1862 |
void MethodData::verify_clean_weak_method_links() { |
37473
8af1deb0c879
8149405: OOM Error running java/lang/invoke/MethodHandlesTest.java on windows-x86
drwhite
parents:
37248
diff
changeset
|
1863 |
ResourceMark rm; |
28365
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1864 |
for (ProfileData* data = first_data(); |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1865 |
is_valid(data); |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1866 |
data = next_data(data)) { |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1867 |
data->verify_clean_weak_method_links(); |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1868 |
} |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1869 |
|
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1870 |
CleanExtraDataMethodClosure cl; |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1871 |
verify_extra_data_clean(&cl); |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1872 |
} |
ccf31849c7a4
8067713: Move clean_weak_method_links for redefinition out of class unloading
coleenp
parents:
27685
diff
changeset
|
1873 |
#endif // ASSERT |