author | roland |
Wed, 13 Nov 2013 13:45:50 +0100 | |
changeset 21581 | 73584c201e2d |
parent 21095 | 1a04f7b3946e |
child 22851 | 4c4b6a45be43 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15437 | 2 |
* Copyright (c) 2000, 2013, 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" |
|
27 |
#include "interpreter/bytecode.hpp" |
|
28 |
#include "interpreter/bytecodeStream.hpp" |
|
29 |
#include "interpreter/linkResolver.hpp" |
|
15437 | 30 |
#include "memory/heapInspection.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
31 |
#include "oops/methodData.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
32 |
#include "prims/jvmtiRedefineClasses.hpp" |
7397 | 33 |
#include "runtime/compilationPolicy.hpp" |
34 |
#include "runtime/deoptimization.hpp" |
|
35 |
#include "runtime/handles.inline.hpp" |
|
1 | 36 |
|
37 |
// ================================================================== |
|
38 |
// DataLayout |
|
39 |
// |
|
40 |
// Overlay for generic profiling data. |
|
41 |
||
42 |
// Some types of data layouts need a length field. |
|
43 |
bool DataLayout::needs_array_len(u1 tag) { |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
44 |
return (tag == multi_branch_data_tag) || (tag == arg_info_data_tag) || (tag == parameters_type_data_tag); |
1 | 45 |
} |
46 |
||
47 |
// Perform generic initialization of the data. More specific |
|
48 |
// initialization occurs in overrides of ProfileData::post_initialize. |
|
49 |
void DataLayout::initialize(u1 tag, u2 bci, int cell_count) { |
|
50 |
_header._bits = (intptr_t)0; |
|
51 |
_header._struct._tag = tag; |
|
52 |
_header._struct._bci = bci; |
|
53 |
for (int i = 0; i < cell_count; i++) { |
|
54 |
set_cell_at(i, (intptr_t)0); |
|
55 |
} |
|
56 |
if (needs_array_len(tag)) { |
|
57 |
set_cell_at(ArrayData::array_len_off_set, cell_count - 1); // -1 for header. |
|
58 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
59 |
if (tag == call_type_data_tag) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
60 |
CallTypeData::initialize(this, cell_count); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
61 |
} else if (tag == virtual_call_type_data_tag) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
62 |
VirtualCallTypeData::initialize(this, cell_count); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
63 |
} |
1 | 64 |
} |
65 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
66 |
void DataLayout::clean_weak_klass_links(BoolObjectClosure* cl) { |
3696 | 67 |
ResourceMark m; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
68 |
data_in()->clean_weak_klass_links(cl); |
3696 | 69 |
} |
70 |
||
71 |
||
1 | 72 |
// ================================================================== |
73 |
// ProfileData |
|
74 |
// |
|
75 |
// A ProfileData object is created to refer to a section of profiling |
|
76 |
// data in a structured way. |
|
77 |
||
78 |
// Constructor for invalid ProfileData. |
|
79 |
ProfileData::ProfileData() { |
|
80 |
_data = NULL; |
|
81 |
} |
|
82 |
||
83 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
84 |
void ProfileData::print_shared(outputStream* st, const char* name) const { |
1 | 85 |
st->print("bci: %d", bci()); |
86 |
st->fill_to(tab_width_one); |
|
87 |
st->print("%s", name); |
|
88 |
tab(st); |
|
89 |
int trap = trap_state(); |
|
90 |
if (trap != 0) { |
|
91 |
char buf[100]; |
|
92 |
st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap)); |
|
93 |
} |
|
94 |
int flags = data()->flags(); |
|
95 |
if (flags != 0) |
|
96 |
st->print("flags(%d) ", flags); |
|
97 |
} |
|
98 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
99 |
void ProfileData::tab(outputStream* st, bool first) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
100 |
st->fill_to(first ? tab_width_one : tab_width_two); |
1 | 101 |
} |
102 |
#endif // !PRODUCT |
|
103 |
||
104 |
// ================================================================== |
|
105 |
// BitData |
|
106 |
// |
|
107 |
// A BitData corresponds to a one-bit flag. This is used to indicate |
|
108 |
// whether a checkcast bytecode has seen a null value. |
|
109 |
||
110 |
||
111 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
112 |
void BitData::print_data_on(outputStream* st) const { |
1 | 113 |
print_shared(st, "BitData"); |
114 |
} |
|
115 |
#endif // !PRODUCT |
|
116 |
||
117 |
// ================================================================== |
|
118 |
// CounterData |
|
119 |
// |
|
120 |
// A CounterData corresponds to a simple counter. |
|
121 |
||
122 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
123 |
void CounterData::print_data_on(outputStream* st) const { |
1 | 124 |
print_shared(st, "CounterData"); |
125 |
st->print_cr("count(%u)", count()); |
|
126 |
} |
|
127 |
#endif // !PRODUCT |
|
128 |
||
129 |
// ================================================================== |
|
130 |
// JumpData |
|
131 |
// |
|
132 |
// A JumpData is used to access profiling information for a direct |
|
133 |
// branch. It is a counter, used for counting the number of branches, |
|
134 |
// plus a data displacement, used for realigning the data pointer to |
|
135 |
// the corresponding target bci. |
|
136 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
137 |
void JumpData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 138 |
assert(stream->bci() == bci(), "wrong pos"); |
139 |
int target; |
|
140 |
Bytecodes::Code c = stream->code(); |
|
141 |
if (c == Bytecodes::_goto_w || c == Bytecodes::_jsr_w) { |
|
142 |
target = stream->dest_w(); |
|
143 |
} else { |
|
144 |
target = stream->dest(); |
|
145 |
} |
|
146 |
int my_di = mdo->dp_to_di(dp()); |
|
147 |
int target_di = mdo->bci_to_di(target); |
|
148 |
int offset = target_di - my_di; |
|
149 |
set_displacement(offset); |
|
150 |
} |
|
151 |
||
152 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
153 |
void JumpData::print_data_on(outputStream* st) const { |
1 | 154 |
print_shared(st, "JumpData"); |
155 |
st->print_cr("taken(%u) displacement(%d)", taken(), displacement()); |
|
156 |
} |
|
157 |
#endif // !PRODUCT |
|
158 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
159 |
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
|
160 |
// Parameter profiling include the receiver |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
161 |
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
|
162 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
163 |
SignatureStream ss(signature); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
164 |
args_count += ss.reference_parameter_count(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
165 |
args_count = MIN2(args_count, max); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
166 |
return args_count * per_arg_cell_count; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
167 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
168 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
169 |
int TypeEntriesAtCall::compute_cell_count(BytecodeStream* stream) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
170 |
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
|
171 |
assert(TypeStackSlotEntries::per_arg_count() > ReturnTypeEntry::static_cell_count(), "code to test for arguments/results broken"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
172 |
Bytecode_invoke inv(stream->method(), stream->bci()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
173 |
int args_cell = 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
174 |
if (arguments_profiling_enabled()) { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
175 |
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
|
176 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
177 |
int ret_cell = 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
178 |
if (return_profiling_enabled() && (inv.result_type() == T_OBJECT || inv.result_type() == T_ARRAY)) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
179 |
ret_cell = ReturnTypeEntry::static_cell_count(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
180 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
181 |
int header_cell = 0; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
182 |
if (args_cell + ret_cell > 0) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
183 |
header_cell = header_cell_count(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
184 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
185 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
186 |
return header_cell + args_cell + ret_cell; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
187 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
188 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
189 |
class ArgumentOffsetComputer : public SignatureInfo { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
190 |
private: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
191 |
int _max; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
192 |
GrowableArray<int> _offsets; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
193 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
194 |
void set(int size, BasicType type) { _size += size; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
195 |
void do_object(int begin, int end) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
196 |
if (_offsets.length() < _max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
197 |
_offsets.push(_size); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
198 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
199 |
SignatureInfo::do_object(begin, end); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
200 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
201 |
void do_array (int begin, int end) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
202 |
if (_offsets.length() < _max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
203 |
_offsets.push(_size); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
204 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
205 |
SignatureInfo::do_array(begin, end); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
206 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
207 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
208 |
public: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
209 |
ArgumentOffsetComputer(Symbol* signature, int max) |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
210 |
: SignatureInfo(signature), _max(max), _offsets(Thread::current(), max) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
211 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
212 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
213 |
int total() { lazy_iterate_parameters(); return _size; } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
214 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
215 |
int off_at(int i) const { return _offsets.at(i); } |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
216 |
}; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
217 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
218 |
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
|
219 |
ResourceMark rm; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
220 |
int start = 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
221 |
// Parameter profiling include the receiver |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
222 |
if (include_receiver && has_receiver) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
223 |
set_stack_slot(0, 0); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
224 |
set_type(0, type_none()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
225 |
start += 1; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
226 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
227 |
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
|
228 |
aos.total(); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
229 |
for (int i = start; i < _number_of_entries; i++) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
230 |
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
|
231 |
set_type(i, type_none()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
232 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
233 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
234 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
235 |
void CallTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
236 |
assert(Bytecodes::is_invoke(stream->code()), "should be invoke"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
237 |
Bytecode_invoke inv(stream->method(), stream->bci()); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
238 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
239 |
SignatureStream ss(inv.signature()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
240 |
if (has_arguments()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
241 |
#ifdef ASSERT |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
242 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
243 |
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
|
244 |
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
|
245 |
check_number_of_arguments(count); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
246 |
#endif |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
247 |
_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
|
248 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
249 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
250 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
251 |
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
|
252 |
_ret.post_initialize(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
253 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
254 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
255 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
256 |
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
|
257 |
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
|
258 |
Bytecode_invoke inv(stream->method(), stream->bci()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
259 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
260 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
261 |
#ifdef ASSERT |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
262 |
ResourceMark rm; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
263 |
SignatureStream ss(inv.signature()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
264 |
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
|
265 |
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
|
266 |
check_number_of_arguments(count); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
267 |
#endif |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
268 |
_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
|
269 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
270 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
271 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
272 |
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
|
273 |
_ret.post_initialize(); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
274 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
275 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
276 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
277 |
bool TypeEntries::is_loader_alive(BoolObjectClosure* is_alive_cl, intptr_t p) { |
21581 | 278 |
Klass* k = (Klass*)klass_part(p); |
279 |
return k != NULL && k->is_loader_alive(is_alive_cl); |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
280 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
281 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
282 |
void TypeStackSlotEntries::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
283 |
for (int i = 0; i < _number_of_entries; i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
284 |
intptr_t p = type(i); |
21581 | 285 |
if (!is_loader_alive(is_alive_cl, p)) { |
286 |
set_type(i, with_status((Klass*)NULL, p)); |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
287 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
288 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
289 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
290 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
291 |
void ReturnTypeEntry::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
292 |
intptr_t p = type(); |
21581 | 293 |
if (!is_loader_alive(is_alive_cl, p)) { |
294 |
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
|
295 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
296 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
297 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
298 |
bool TypeEntriesAtCall::return_profiling_enabled() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
299 |
return MethodData::profile_return(); |
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 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
302 |
bool TypeEntriesAtCall::arguments_profiling_enabled() { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
303 |
return MethodData::profile_arguments(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
304 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
305 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
306 |
#ifndef PRODUCT |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
307 |
void TypeEntries::print_klass(outputStream* st, intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
308 |
if (is_type_none(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
309 |
st->print("none"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
310 |
} else if (is_type_unknown(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
311 |
st->print("unknown"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
312 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
313 |
valid_klass(k)->print_value_on(st); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
314 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
315 |
if (was_null_seen(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
316 |
st->print(" (null seen)"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
317 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
318 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
319 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
320 |
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
|
321 |
for (int i = 0; i < _number_of_entries; i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
322 |
_pd->tab(st); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
323 |
st->print("%d: stack(%u) ", i, stack_slot(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
324 |
print_klass(st, type(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
325 |
st->cr(); |
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 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
328 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
329 |
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
|
330 |
_pd->tab(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
331 |
print_klass(st, type()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
332 |
st->cr(); |
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 |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
335 |
void CallTypeData::print_data_on(outputStream* st) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
336 |
CounterData::print_data_on(st); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
337 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
338 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
339 |
st->print("argument types"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
340 |
_args.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
341 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
342 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
343 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
344 |
st->print("return type"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
345 |
_ret.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
346 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
347 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
348 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
349 |
void VirtualCallTypeData::print_data_on(outputStream* st) const { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
350 |
VirtualCallData::print_data_on(st); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
351 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
352 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
353 |
st->print("argument types"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
354 |
_args.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
355 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
356 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
357 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
358 |
st->print("return type"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
359 |
_ret.print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
360 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
361 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
362 |
#endif |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
363 |
|
1 | 364 |
// ================================================================== |
365 |
// ReceiverTypeData |
|
366 |
// |
|
367 |
// A ReceiverTypeData is used to access profiling information about a |
|
368 |
// 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
|
369 |
// that the check is reached, and a series of (Klass*, count) pairs |
1 | 370 |
// which are used to store a type profile for the receiver of the check. |
371 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
372 |
void ReceiverTypeData::clean_weak_klass_links(BoolObjectClosure* is_alive_cl) { |
3696 | 373 |
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
|
374 |
Klass* p = receiver(row); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
375 |
if (p != NULL && !p->is_loader_alive(is_alive_cl)) { |
3696 | 376 |
clear_row(row); |
377 |
} |
|
378 |
} |
|
379 |
} |
|
380 |
||
1 | 381 |
#ifndef PRODUCT |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
382 |
void ReceiverTypeData::print_receiver_data_on(outputStream* st) const { |
1 | 383 |
uint row; |
384 |
int entries = 0; |
|
385 |
for (row = 0; row < row_limit(); row++) { |
|
386 |
if (receiver(row) != NULL) entries++; |
|
387 |
} |
|
388 |
st->print_cr("count(%u) entries(%u)", count(), entries); |
|
6453 | 389 |
int total = count(); |
390 |
for (row = 0; row < row_limit(); row++) { |
|
391 |
if (receiver(row) != NULL) { |
|
392 |
total += receiver_count(row); |
|
393 |
} |
|
394 |
} |
|
1 | 395 |
for (row = 0; row < row_limit(); row++) { |
396 |
if (receiver(row) != NULL) { |
|
397 |
tab(st); |
|
398 |
receiver(row)->print_value_on(st); |
|
6453 | 399 |
st->print_cr("(%u %4.2f)", receiver_count(row), (float) receiver_count(row) / (float) total); |
1 | 400 |
} |
401 |
} |
|
402 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
403 |
void ReceiverTypeData::print_data_on(outputStream* st) const { |
1 | 404 |
print_shared(st, "ReceiverTypeData"); |
405 |
print_receiver_data_on(st); |
|
406 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
407 |
void VirtualCallData::print_data_on(outputStream* st) const { |
1 | 408 |
print_shared(st, "VirtualCallData"); |
409 |
print_receiver_data_on(st); |
|
410 |
} |
|
411 |
#endif // !PRODUCT |
|
412 |
||
413 |
// ================================================================== |
|
414 |
// RetData |
|
415 |
// |
|
416 |
// A RetData is used to access profiling information for a ret bytecode. |
|
417 |
// It is composed of a count of the number of times that the ret has |
|
418 |
// been executed, followed by a series of triples of the form |
|
419 |
// (bci, count, di) which count the number of times that some bci was the |
|
420 |
// target of the ret and cache a corresponding displacement. |
|
421 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
422 |
void RetData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 423 |
for (uint row = 0; row < row_limit(); row++) { |
424 |
set_bci_displacement(row, -1); |
|
425 |
set_bci(row, no_bci); |
|
426 |
} |
|
427 |
// release so other threads see a consistent state. bci is used as |
|
428 |
// a valid flag for bci_displacement. |
|
429 |
OrderAccess::release(); |
|
430 |
} |
|
431 |
||
432 |
// This routine needs to atomically update the RetData structure, so the |
|
433 |
// caller needs to hold the RetData_lock before it gets here. Since taking |
|
434 |
// the lock can block (and allow GC) and since RetData is a ProfileData is a |
|
435 |
// wrapper around a derived oop, taking the lock in _this_ method will |
|
436 |
// basically cause the 'this' pointer's _data field to contain junk after the |
|
437 |
// lock. We require the caller to take the lock before making the ProfileData |
|
438 |
// 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
|
439 |
address RetData::fixup_ret(int return_bci, MethodData* h_mdo) { |
1 | 440 |
// First find the mdp which corresponds to the return bci. |
441 |
address mdp = h_mdo->bci_to_dp(return_bci); |
|
442 |
||
443 |
// Now check to see if any of the cache slots are open. |
|
444 |
for (uint row = 0; row < row_limit(); row++) { |
|
445 |
if (bci(row) == no_bci) { |
|
446 |
set_bci_displacement(row, mdp - dp()); |
|
447 |
set_bci_count(row, DataLayout::counter_increment); |
|
448 |
// Barrier to ensure displacement is written before the bci; allows |
|
449 |
// the interpreter to read displacement without fear of race condition. |
|
450 |
release_set_bci(row, return_bci); |
|
451 |
break; |
|
452 |
} |
|
453 |
} |
|
454 |
return mdp; |
|
455 |
} |
|
456 |
||
457 |
||
458 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
459 |
void RetData::print_data_on(outputStream* st) const { |
1 | 460 |
print_shared(st, "RetData"); |
461 |
uint row; |
|
462 |
int entries = 0; |
|
463 |
for (row = 0; row < row_limit(); row++) { |
|
464 |
if (bci(row) != no_bci) entries++; |
|
465 |
} |
|
466 |
st->print_cr("count(%u) entries(%u)", count(), entries); |
|
467 |
for (row = 0; row < row_limit(); row++) { |
|
468 |
if (bci(row) != no_bci) { |
|
469 |
tab(st); |
|
470 |
st->print_cr("bci(%d: count(%u) displacement(%d))", |
|
471 |
bci(row), bci_count(row), bci_displacement(row)); |
|
472 |
} |
|
473 |
} |
|
474 |
} |
|
475 |
#endif // !PRODUCT |
|
476 |
||
477 |
// ================================================================== |
|
478 |
// BranchData |
|
479 |
// |
|
480 |
// A BranchData is used to access profiling data for a two-way branch. |
|
481 |
// It consists of taken and not_taken counts as well as a data displacement |
|
482 |
// for the taken case. |
|
483 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
484 |
void BranchData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1 | 485 |
assert(stream->bci() == bci(), "wrong pos"); |
486 |
int target = stream->dest(); |
|
487 |
int my_di = mdo->dp_to_di(dp()); |
|
488 |
int target_di = mdo->bci_to_di(target); |
|
489 |
int offset = target_di - my_di; |
|
490 |
set_displacement(offset); |
|
491 |
} |
|
492 |
||
493 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
494 |
void BranchData::print_data_on(outputStream* st) const { |
1 | 495 |
print_shared(st, "BranchData"); |
496 |
st->print_cr("taken(%u) displacement(%d)", |
|
497 |
taken(), displacement()); |
|
498 |
tab(st); |
|
499 |
st->print_cr("not taken(%u)", not_taken()); |
|
500 |
} |
|
501 |
#endif |
|
502 |
||
503 |
// ================================================================== |
|
504 |
// MultiBranchData |
|
505 |
// |
|
506 |
// A MultiBranchData is used to access profiling information for |
|
507 |
// a multi-way branch (*switch bytecodes). It consists of a series |
|
508 |
// of (count, displacement) pairs, which count the number of times each |
|
509 |
// case was taken and specify the data displacment for each branch target. |
|
510 |
||
511 |
int MultiBranchData::compute_cell_count(BytecodeStream* stream) { |
|
512 |
int cell_count = 0; |
|
513 |
if (stream->code() == Bytecodes::_tableswitch) { |
|
7913 | 514 |
Bytecode_tableswitch sw(stream->method()(), stream->bcp()); |
515 |
cell_count = 1 + per_case_cell_count * (1 + sw.length()); // 1 for default |
|
1 | 516 |
} else { |
7913 | 517 |
Bytecode_lookupswitch sw(stream->method()(), stream->bcp()); |
518 |
cell_count = 1 + per_case_cell_count * (sw.number_of_pairs() + 1); // 1 for default |
|
1 | 519 |
} |
520 |
return cell_count; |
|
521 |
} |
|
522 |
||
523 |
void MultiBranchData::post_initialize(BytecodeStream* stream, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
524 |
MethodData* mdo) { |
1 | 525 |
assert(stream->bci() == bci(), "wrong pos"); |
526 |
int target; |
|
527 |
int my_di; |
|
528 |
int target_di; |
|
529 |
int offset; |
|
530 |
if (stream->code() == Bytecodes::_tableswitch) { |
|
7913 | 531 |
Bytecode_tableswitch sw(stream->method()(), stream->bcp()); |
532 |
int len = sw.length(); |
|
1 | 533 |
assert(array_len() == per_case_cell_count * (len + 1), "wrong len"); |
534 |
for (int count = 0; count < len; count++) { |
|
7913 | 535 |
target = sw.dest_offset_at(count) + bci(); |
1 | 536 |
my_di = mdo->dp_to_di(dp()); |
537 |
target_di = mdo->bci_to_di(target); |
|
538 |
offset = target_di - my_di; |
|
539 |
set_displacement_at(count, offset); |
|
540 |
} |
|
7913 | 541 |
target = sw.default_offset() + bci(); |
1 | 542 |
my_di = mdo->dp_to_di(dp()); |
543 |
target_di = mdo->bci_to_di(target); |
|
544 |
offset = target_di - my_di; |
|
545 |
set_default_displacement(offset); |
|
546 |
||
547 |
} else { |
|
7913 | 548 |
Bytecode_lookupswitch sw(stream->method()(), stream->bcp()); |
549 |
int npairs = sw.number_of_pairs(); |
|
1 | 550 |
assert(array_len() == per_case_cell_count * (npairs + 1), "wrong len"); |
551 |
for (int count = 0; count < npairs; count++) { |
|
7913 | 552 |
LookupswitchPair pair = sw.pair_at(count); |
553 |
target = pair.offset() + bci(); |
|
1 | 554 |
my_di = mdo->dp_to_di(dp()); |
555 |
target_di = mdo->bci_to_di(target); |
|
556 |
offset = target_di - my_di; |
|
557 |
set_displacement_at(count, offset); |
|
558 |
} |
|
7913 | 559 |
target = sw.default_offset() + bci(); |
1 | 560 |
my_di = mdo->dp_to_di(dp()); |
561 |
target_di = mdo->bci_to_di(target); |
|
562 |
offset = target_di - my_di; |
|
563 |
set_default_displacement(offset); |
|
564 |
} |
|
565 |
} |
|
566 |
||
567 |
#ifndef PRODUCT |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
568 |
void MultiBranchData::print_data_on(outputStream* st) const { |
1 | 569 |
print_shared(st, "MultiBranchData"); |
570 |
st->print_cr("default_count(%u) displacement(%d)", |
|
571 |
default_count(), default_displacement()); |
|
572 |
int cases = number_of_cases(); |
|
573 |
for (int i = 0; i < cases; i++) { |
|
574 |
tab(st); |
|
575 |
st->print_cr("count(%u) displacement(%d)", |
|
576 |
count_at(i), displacement_at(i)); |
|
577 |
} |
|
578 |
} |
|
579 |
#endif |
|
580 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
581 |
#ifndef PRODUCT |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
582 |
void ArgInfoData::print_data_on(outputStream* st) const { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
583 |
print_shared(st, "ArgInfoData"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
584 |
int nargs = number_of_args(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
585 |
for (int i = 0; i < nargs; i++) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
586 |
st->print(" 0x%x", arg_modified(i)); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
587 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
588 |
st->cr(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
589 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
590 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
591 |
#endif |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
592 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
593 |
int ParametersTypeData::compute_cell_count(Method* m) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
594 |
if (!MethodData::profile_parameters_for_method(m)) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
595 |
return 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
596 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
597 |
int max = TypeProfileParmsLimit == -1 ? INT_MAX : TypeProfileParmsLimit; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
598 |
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
|
599 |
if (obj_args > 0) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
600 |
return obj_args + 1; // 1 cell for array len |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
601 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
602 |
return 0; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
603 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
604 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
605 |
void ParametersTypeData::post_initialize(BytecodeStream* stream, MethodData* mdo) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
606 |
_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
|
607 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
608 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
609 |
bool ParametersTypeData::profiling_enabled() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
610 |
return MethodData::profile_parameters(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
611 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
612 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
613 |
#ifndef PRODUCT |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
614 |
void ParametersTypeData::print_data_on(outputStream* st) const { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
615 |
st->print("parameter types"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
616 |
_parameters.print_data_on(st); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
617 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
618 |
#endif |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
619 |
|
1 | 620 |
// ================================================================== |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
621 |
// MethodData* |
1 | 622 |
// |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
623 |
// A MethodData* holds information which has been collected about |
1 | 624 |
// a method. |
625 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
626 |
MethodData* MethodData::allocate(ClassLoaderData* loader_data, methodHandle method, TRAPS) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
627 |
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
|
628 |
|
17858
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17002
diff
changeset
|
629 |
return new (loader_data, size, false, MetaspaceObj::MethodDataType, THREAD) |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17002
diff
changeset
|
630 |
MethodData(method(), size, CHECK_NULL); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
631 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
632 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
633 |
int MethodData::bytecode_cell_count(Bytecodes::Code code) { |
16611 | 634 |
#if defined(COMPILER1) && !defined(COMPILER2) |
635 |
return no_profile_data; |
|
636 |
#else |
|
1 | 637 |
switch (code) { |
638 |
case Bytecodes::_checkcast: |
|
639 |
case Bytecodes::_instanceof: |
|
640 |
case Bytecodes::_aastore: |
|
641 |
if (TypeProfileCasts) { |
|
642 |
return ReceiverTypeData::static_cell_count(); |
|
643 |
} else { |
|
644 |
return BitData::static_cell_count(); |
|
645 |
} |
|
646 |
case Bytecodes::_invokespecial: |
|
647 |
case Bytecodes::_invokestatic: |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
648 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
649 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
650 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
651 |
return CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
652 |
} |
1 | 653 |
case Bytecodes::_goto: |
654 |
case Bytecodes::_goto_w: |
|
655 |
case Bytecodes::_jsr: |
|
656 |
case Bytecodes::_jsr_w: |
|
657 |
return JumpData::static_cell_count(); |
|
658 |
case Bytecodes::_invokevirtual: |
|
659 |
case Bytecodes::_invokeinterface: |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
660 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
661 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
662 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
663 |
return VirtualCallData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
664 |
} |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
665 |
case Bytecodes::_invokedynamic: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
666 |
if (MethodData::profile_arguments() || MethodData::profile_return()) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
667 |
return variable_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
668 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
669 |
return CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
670 |
} |
1 | 671 |
case Bytecodes::_ret: |
672 |
return RetData::static_cell_count(); |
|
673 |
case Bytecodes::_ifeq: |
|
674 |
case Bytecodes::_ifne: |
|
675 |
case Bytecodes::_iflt: |
|
676 |
case Bytecodes::_ifge: |
|
677 |
case Bytecodes::_ifgt: |
|
678 |
case Bytecodes::_ifle: |
|
679 |
case Bytecodes::_if_icmpeq: |
|
680 |
case Bytecodes::_if_icmpne: |
|
681 |
case Bytecodes::_if_icmplt: |
|
682 |
case Bytecodes::_if_icmpge: |
|
683 |
case Bytecodes::_if_icmpgt: |
|
684 |
case Bytecodes::_if_icmple: |
|
685 |
case Bytecodes::_if_acmpeq: |
|
686 |
case Bytecodes::_if_acmpne: |
|
687 |
case Bytecodes::_ifnull: |
|
688 |
case Bytecodes::_ifnonnull: |
|
689 |
return BranchData::static_cell_count(); |
|
690 |
case Bytecodes::_lookupswitch: |
|
691 |
case Bytecodes::_tableswitch: |
|
692 |
return variable_cell_count; |
|
693 |
} |
|
694 |
return no_profile_data; |
|
16611 | 695 |
#endif |
1 | 696 |
} |
697 |
||
698 |
// Compute the size of the profiling information corresponding to |
|
699 |
// the current bytecode. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
700 |
int MethodData::compute_data_size(BytecodeStream* stream) { |
1 | 701 |
int cell_count = bytecode_cell_count(stream->code()); |
702 |
if (cell_count == no_profile_data) { |
|
703 |
return 0; |
|
704 |
} |
|
705 |
if (cell_count == variable_cell_count) { |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
706 |
switch (stream->code()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
707 |
case Bytecodes::_lookupswitch: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
708 |
case Bytecodes::_tableswitch: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
709 |
cell_count = MultiBranchData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
710 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
711 |
case Bytecodes::_invokespecial: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
712 |
case Bytecodes::_invokestatic: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
713 |
case Bytecodes::_invokedynamic: |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
714 |
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
|
715 |
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
|
716 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
717 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
718 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
719 |
cell_count = CounterData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
720 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
721 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
722 |
case Bytecodes::_invokevirtual: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
723 |
case Bytecodes::_invokeinterface: { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
724 |
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
|
725 |
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
|
726 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
727 |
cell_count = VirtualCallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
728 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
729 |
cell_count = VirtualCallData::static_cell_count(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
730 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
731 |
break; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
732 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
733 |
default: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
734 |
fatal("unexpected bytecode for var length profile data"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
735 |
} |
1 | 736 |
} |
737 |
// Note: cell_count might be zero, meaning that there is just |
|
738 |
// a DataLayout header, with no extra cells. |
|
739 |
assert(cell_count >= 0, "sanity"); |
|
740 |
return DataLayout::compute_size_in_bytes(cell_count); |
|
741 |
} |
|
742 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
743 |
int MethodData::compute_extra_data_count(int data_size, int empty_bc_count) { |
1 | 744 |
if (ProfileTraps) { |
745 |
// Assume that up to 3% of BCIs with no MDP will need to allocate one. |
|
746 |
int extra_data_count = (uint)(empty_bc_count * 3) / 128 + 1; |
|
747 |
// If the method is large, let the extra BCIs grow numerous (to ~1%). |
|
748 |
int one_percent_of_data |
|
749 |
= (uint)data_size / (DataLayout::header_size_in_bytes()*128); |
|
750 |
if (extra_data_count < one_percent_of_data) |
|
751 |
extra_data_count = one_percent_of_data; |
|
752 |
if (extra_data_count > empty_bc_count) |
|
753 |
extra_data_count = empty_bc_count; // no need for more |
|
754 |
return extra_data_count; |
|
755 |
} else { |
|
756 |
return 0; |
|
757 |
} |
|
758 |
} |
|
759 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
760 |
// Compute the size of the MethodData* necessary to store |
1 | 761 |
// profiling information about a given method. Size is in bytes. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
762 |
int MethodData::compute_allocation_size_in_bytes(methodHandle method) { |
1 | 763 |
int data_size = 0; |
764 |
BytecodeStream stream(method); |
|
765 |
Bytecodes::Code c; |
|
766 |
int empty_bc_count = 0; // number of bytecodes lacking data |
|
767 |
while ((c = stream.next()) >= 0) { |
|
768 |
int size_in_bytes = compute_data_size(&stream); |
|
769 |
data_size += size_in_bytes; |
|
770 |
if (size_in_bytes == 0) empty_bc_count += 1; |
|
771 |
} |
|
772 |
int object_size = in_bytes(data_offset()) + data_size; |
|
773 |
||
774 |
// Add some extra DataLayout cells (at least one) to track stray traps. |
|
775 |
int extra_data_count = compute_extra_data_count(data_size, empty_bc_count); |
|
776 |
object_size += extra_data_count * DataLayout::compute_size_in_bytes(0); |
|
777 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
778 |
// 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
|
779 |
int arg_size = method->size_of_parameters(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
780 |
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
|
781 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
782 |
// 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
|
783 |
// parameters |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
784 |
int args_cell = ParametersTypeData::compute_cell_count(method()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
785 |
if (args_cell > 0) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
786 |
object_size += DataLayout::compute_size_in_bytes(args_cell); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
787 |
} |
1 | 788 |
return object_size; |
789 |
} |
|
790 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
791 |
// Compute the size of the MethodData* necessary to store |
1 | 792 |
// profiling information about a given method. Size is in words |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
793 |
int MethodData::compute_allocation_size_in_words(methodHandle method) { |
1 | 794 |
int byte_size = compute_allocation_size_in_bytes(method); |
795 |
int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord; |
|
796 |
return align_object_size(word_size); |
|
797 |
} |
|
798 |
||
799 |
// Initialize an individual data segment. Returns the size of |
|
800 |
// the segment in bytes. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
801 |
int MethodData::initialize_data(BytecodeStream* stream, |
1 | 802 |
int data_index) { |
16611 | 803 |
#if defined(COMPILER1) && !defined(COMPILER2) |
804 |
return 0; |
|
805 |
#else |
|
1 | 806 |
int cell_count = -1; |
807 |
int tag = DataLayout::no_tag; |
|
808 |
DataLayout* data_layout = data_layout_at(data_index); |
|
809 |
Bytecodes::Code c = stream->code(); |
|
810 |
switch (c) { |
|
811 |
case Bytecodes::_checkcast: |
|
812 |
case Bytecodes::_instanceof: |
|
813 |
case Bytecodes::_aastore: |
|
814 |
if (TypeProfileCasts) { |
|
815 |
cell_count = ReceiverTypeData::static_cell_count(); |
|
816 |
tag = DataLayout::receiver_type_data_tag; |
|
817 |
} else { |
|
818 |
cell_count = BitData::static_cell_count(); |
|
819 |
tag = DataLayout::bit_data_tag; |
|
820 |
} |
|
821 |
break; |
|
822 |
case Bytecodes::_invokespecial: |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
823 |
case Bytecodes::_invokestatic: { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
824 |
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
|
825 |
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
|
826 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
827 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
828 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
829 |
cell_count = counter_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
830 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
831 |
if (cell_count > counter_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
832 |
tag = DataLayout::call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
833 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
834 |
tag = DataLayout::counter_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
835 |
} |
1 | 836 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
837 |
} |
1 | 838 |
case Bytecodes::_goto: |
839 |
case Bytecodes::_goto_w: |
|
840 |
case Bytecodes::_jsr: |
|
841 |
case Bytecodes::_jsr_w: |
|
842 |
cell_count = JumpData::static_cell_count(); |
|
843 |
tag = DataLayout::jump_data_tag; |
|
844 |
break; |
|
845 |
case Bytecodes::_invokevirtual: |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
846 |
case Bytecodes::_invokeinterface: { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
847 |
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
|
848 |
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
|
849 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
850 |
cell_count = VirtualCallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
851 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
852 |
cell_count = virtual_call_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
853 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
854 |
if (cell_count > virtual_call_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
855 |
tag = DataLayout::virtual_call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
856 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
857 |
tag = DataLayout::virtual_call_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
858 |
} |
1 | 859 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
860 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
861 |
case Bytecodes::_invokedynamic: { |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
862 |
// %%% 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
|
863 |
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
|
864 |
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
|
865 |
profile_return_for_invoke(stream->method(), stream->bci())) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
866 |
cell_count = CallTypeData::compute_cell_count(stream); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
867 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
868 |
cell_count = counter_data_cell_count; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
869 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
870 |
if (cell_count > counter_data_cell_count) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
871 |
tag = DataLayout::call_type_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
872 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
873 |
tag = DataLayout::counter_data_tag; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
874 |
} |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
670
diff
changeset
|
875 |
break; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
876 |
} |
1 | 877 |
case Bytecodes::_ret: |
878 |
cell_count = RetData::static_cell_count(); |
|
879 |
tag = DataLayout::ret_data_tag; |
|
880 |
break; |
|
881 |
case Bytecodes::_ifeq: |
|
882 |
case Bytecodes::_ifne: |
|
883 |
case Bytecodes::_iflt: |
|
884 |
case Bytecodes::_ifge: |
|
885 |
case Bytecodes::_ifgt: |
|
886 |
case Bytecodes::_ifle: |
|
887 |
case Bytecodes::_if_icmpeq: |
|
888 |
case Bytecodes::_if_icmpne: |
|
889 |
case Bytecodes::_if_icmplt: |
|
890 |
case Bytecodes::_if_icmpge: |
|
891 |
case Bytecodes::_if_icmpgt: |
|
892 |
case Bytecodes::_if_icmple: |
|
893 |
case Bytecodes::_if_acmpeq: |
|
894 |
case Bytecodes::_if_acmpne: |
|
895 |
case Bytecodes::_ifnull: |
|
896 |
case Bytecodes::_ifnonnull: |
|
897 |
cell_count = BranchData::static_cell_count(); |
|
898 |
tag = DataLayout::branch_data_tag; |
|
899 |
break; |
|
900 |
case Bytecodes::_lookupswitch: |
|
901 |
case Bytecodes::_tableswitch: |
|
902 |
cell_count = MultiBranchData::compute_cell_count(stream); |
|
903 |
tag = DataLayout::multi_branch_data_tag; |
|
904 |
break; |
|
905 |
} |
|
906 |
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
|
907 |
((MethodData::profile_arguments() || MethodData::profile_return()) && |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
908 |
(tag == DataLayout::call_type_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
909 |
tag == DataLayout::counter_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
910 |
tag == DataLayout::virtual_call_type_data_tag || |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
911 |
tag == DataLayout::virtual_call_data_tag)) || |
1 | 912 |
cell_count == bytecode_cell_count(c), "cell counts must agree"); |
913 |
if (cell_count >= 0) { |
|
914 |
assert(tag != DataLayout::no_tag, "bad tag"); |
|
915 |
assert(bytecode_has_profile(c), "agree w/ BHP"); |
|
916 |
data_layout->initialize(tag, stream->bci(), cell_count); |
|
917 |
return DataLayout::compute_size_in_bytes(cell_count); |
|
918 |
} else { |
|
919 |
assert(!bytecode_has_profile(c), "agree w/ !BHP"); |
|
920 |
return 0; |
|
921 |
} |
|
16611 | 922 |
#endif |
1 | 923 |
} |
924 |
||
925 |
// 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
|
926 |
ProfileData* MethodData::data_at(int data_index) const { |
1 | 927 |
if (out_of_bounds(data_index)) { |
928 |
return NULL; |
|
929 |
} |
|
930 |
DataLayout* data_layout = data_layout_at(data_index); |
|
3696 | 931 |
return data_layout->data_in(); |
932 |
} |
|
1 | 933 |
|
3696 | 934 |
ProfileData* DataLayout::data_in() { |
935 |
switch (tag()) { |
|
1 | 936 |
case DataLayout::no_tag: |
937 |
default: |
|
938 |
ShouldNotReachHere(); |
|
939 |
return NULL; |
|
940 |
case DataLayout::bit_data_tag: |
|
3696 | 941 |
return new BitData(this); |
1 | 942 |
case DataLayout::counter_data_tag: |
3696 | 943 |
return new CounterData(this); |
1 | 944 |
case DataLayout::jump_data_tag: |
3696 | 945 |
return new JumpData(this); |
1 | 946 |
case DataLayout::receiver_type_data_tag: |
3696 | 947 |
return new ReceiverTypeData(this); |
1 | 948 |
case DataLayout::virtual_call_data_tag: |
3696 | 949 |
return new VirtualCallData(this); |
1 | 950 |
case DataLayout::ret_data_tag: |
3696 | 951 |
return new RetData(this); |
1 | 952 |
case DataLayout::branch_data_tag: |
3696 | 953 |
return new BranchData(this); |
1 | 954 |
case DataLayout::multi_branch_data_tag: |
3696 | 955 |
return new MultiBranchData(this); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
956 |
case DataLayout::arg_info_data_tag: |
3696 | 957 |
return new ArgInfoData(this); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
958 |
case DataLayout::call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
959 |
return new CallTypeData(this); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
960 |
case DataLayout::virtual_call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
961 |
return new VirtualCallTypeData(this); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
962 |
case DataLayout::parameters_type_data_tag: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
963 |
return new ParametersTypeData(this); |
1 | 964 |
}; |
965 |
} |
|
966 |
||
967 |
// Iteration over data. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
968 |
ProfileData* MethodData::next_data(ProfileData* current) const { |
1 | 969 |
int current_index = dp_to_di(current->dp()); |
970 |
int next_index = current_index + current->size_in_bytes(); |
|
971 |
ProfileData* next = data_at(next_index); |
|
972 |
return next; |
|
973 |
} |
|
974 |
||
975 |
// Give each of the data entries a chance to perform specific |
|
976 |
// data initialization. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
977 |
void MethodData::post_initialize(BytecodeStream* stream) { |
1 | 978 |
ResourceMark rm; |
979 |
ProfileData* data; |
|
980 |
for (data = first_data(); is_valid(data); data = next_data(data)) { |
|
981 |
stream->set_start(data->bci()); |
|
982 |
stream->next(); |
|
983 |
data->post_initialize(stream, this); |
|
984 |
} |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
985 |
if (_parameters_type_data_di != -1) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
986 |
parameters_type_data()->post_initialize(NULL, this); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
987 |
} |
1 | 988 |
} |
989 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
990 |
// Initialize the MethodData* corresponding to a given method. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
991 |
MethodData::MethodData(methodHandle method, int size, TRAPS) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
992 |
No_Safepoint_Verifier no_safepoint; // init function atomic wrt GC |
1 | 993 |
ResourceMark rm; |
994 |
// Set the method back-pointer. |
|
995 |
_method = method(); |
|
6453 | 996 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
997 |
init(); |
1 | 998 |
set_creation_mileage(mileage_of(method())); |
999 |
||
1000 |
// Go through the bytecodes and allocate and initialize the |
|
1001 |
// corresponding data cells. |
|
1002 |
int data_size = 0; |
|
1003 |
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
|
1004 |
_data[0] = 0; // apparently not set below. |
1 | 1005 |
BytecodeStream stream(method); |
1006 |
Bytecodes::Code c; |
|
1007 |
while ((c = stream.next()) >= 0) { |
|
1008 |
int size_in_bytes = initialize_data(&stream, data_size); |
|
1009 |
data_size += size_in_bytes; |
|
1010 |
if (size_in_bytes == 0) empty_bc_count += 1; |
|
1011 |
} |
|
1012 |
_data_size = data_size; |
|
1013 |
int object_size = in_bytes(data_offset()) + data_size; |
|
1014 |
||
1015 |
// Add some extra DataLayout cells (at least one) to track stray traps. |
|
1016 |
int extra_data_count = compute_extra_data_count(data_size, empty_bc_count); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1017 |
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
|
1018 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1019 |
// 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
|
1020 |
// 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
|
1021 |
// the code for traps cells works. |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1022 |
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
|
1023 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1024 |
int arg_size = method->size_of_parameters(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1025 |
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
|
1026 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1027 |
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
|
1028 |
object_size += extra_size + arg_data_size; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1029 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1030 |
int args_cell = ParametersTypeData::compute_cell_count(method()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1031 |
// 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
|
1032 |
// 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
|
1033 |
// 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
|
1034 |
// 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
|
1035 |
// this area (or -1 if no parameter is profiled) |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1036 |
if (args_cell > 0) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1037 |
object_size += DataLayout::compute_size_in_bytes(args_cell); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1038 |
_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
|
1039 |
DataLayout *dp = data_layout_at(data_size + extra_size + arg_data_size); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1040 |
dp->initialize(DataLayout::parameters_type_data_tag, 0, args_cell); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1041 |
} else { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1042 |
_parameters_type_data_di = -1; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1043 |
} |
1 | 1044 |
|
1045 |
// Set an initial hint. Don't use set_hint_di() because |
|
1046 |
// first_di() may be out of bounds if data_size is 0. |
|
1047 |
// In that situation, _hint_di is never used, but at |
|
1048 |
// least well-defined. |
|
1049 |
_hint_di = first_di(); |
|
1050 |
||
1051 |
post_initialize(&stream); |
|
1052 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1053 |
set_size(object_size); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1054 |
} |
15928
f9d5c6e4107f
8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents:
15437
diff
changeset
|
1055 |
|
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1056 |
void MethodData::init() { |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1057 |
_invocation_counter.init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1058 |
_backedge_counter.init(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1059 |
_invocation_counter_start = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1060 |
_backedge_counter_start = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1061 |
_num_loops = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1062 |
_num_blocks = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1063 |
_highest_comp_level = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1064 |
_highest_osr_comp_level = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1065 |
_would_profile = true; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1066 |
|
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1067 |
// Initialize flags and trap history. |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1068 |
_nof_decompiles = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1069 |
_nof_overflow_recompiles = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1070 |
_nof_overflow_traps = 0; |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1071 |
clear_escape_info(); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1072 |
assert(sizeof(_trap_hist) % sizeof(HeapWord) == 0, "align"); |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1073 |
Copy::zero_to_words((HeapWord*) &_trap_hist, |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1074 |
sizeof(_trap_hist) / sizeof(HeapWord)); |
1 | 1075 |
} |
1076 |
||
1077 |
// 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
|
1078 |
int MethodData::mileage_of(Method* method) { |
1 | 1079 |
int mileage = 0; |
6453 | 1080 |
if (TieredCompilation) { |
1081 |
mileage = MAX2(method->invocation_count(), method->backedge_count()); |
|
1082 |
} else { |
|
1083 |
int iic = method->interpreter_invocation_count(); |
|
1084 |
if (mileage < iic) mileage = iic; |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1085 |
MethodCounters* mcs = method->method_counters(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1086 |
if (mcs != NULL) { |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1087 |
InvocationCounter* ic = mcs->invocation_counter(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1088 |
InvocationCounter* bc = mcs->backedge_counter(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1089 |
int icval = ic->count(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1090 |
if (ic->carry()) icval += CompileThreshold; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1091 |
if (mileage < icval) mileage = icval; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1092 |
int bcval = bc->count(); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1093 |
if (bc->carry()) bcval += CompileThreshold; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1094 |
if (mileage < bcval) mileage = bcval; |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16611
diff
changeset
|
1095 |
} |
6453 | 1096 |
} |
1 | 1097 |
return mileage; |
1098 |
} |
|
1099 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1100 |
bool MethodData::is_mature() const { |
6453 | 1101 |
return CompilationPolicy::policy()->is_mature(_method); |
1 | 1102 |
} |
1103 |
||
1104 |
// 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
|
1105 |
address MethodData::bci_to_dp(int bci) { |
1 | 1106 |
ResourceMark rm; |
1107 |
ProfileData* data = data_before(bci); |
|
1108 |
ProfileData* prev = NULL; |
|
1109 |
for ( ; is_valid(data); data = next_data(data)) { |
|
1110 |
if (data->bci() >= bci) { |
|
1111 |
if (data->bci() == bci) set_hint_di(dp_to_di(data->dp())); |
|
1112 |
else if (prev != NULL) set_hint_di(dp_to_di(prev->dp())); |
|
1113 |
return data->dp(); |
|
1114 |
} |
|
1115 |
prev = data; |
|
1116 |
} |
|
1117 |
return (address)limit_data_position(); |
|
1118 |
} |
|
1119 |
||
1120 |
// 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
|
1121 |
ProfileData* MethodData::bci_to_data(int bci) { |
1 | 1122 |
ProfileData* data = data_before(bci); |
1123 |
for ( ; is_valid(data); data = next_data(data)) { |
|
1124 |
if (data->bci() == bci) { |
|
1125 |
set_hint_di(dp_to_di(data->dp())); |
|
1126 |
return data; |
|
1127 |
} else if (data->bci() > bci) { |
|
1128 |
break; |
|
1129 |
} |
|
1130 |
} |
|
1131 |
return bci_to_extra_data(bci, false); |
|
1132 |
} |
|
1133 |
||
1134 |
// Translate a bci to its corresponding extra data, or NULL. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1135 |
ProfileData* MethodData::bci_to_extra_data(int bci, bool create_if_missing) { |
1 | 1136 |
DataLayout* dp = extra_data_base(); |
1137 |
DataLayout* end = extra_data_limit(); |
|
1138 |
DataLayout* avail = NULL; |
|
1139 |
for (; dp < end; dp = next_extra(dp)) { |
|
1140 |
// No need for "OrderAccess::load_acquire" ops, |
|
1141 |
// since the data structure is monotonic. |
|
1142 |
if (dp->tag() == DataLayout::no_tag) break; |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1143 |
if (dp->tag() == DataLayout::arg_info_data_tag) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1144 |
dp = end; // ArgInfoData is at the end of extra data section. |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1145 |
break; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1146 |
} |
1 | 1147 |
if (dp->bci() == bci) { |
1148 |
assert(dp->tag() == DataLayout::bit_data_tag, "sane"); |
|
1149 |
return new BitData(dp); |
|
1150 |
} |
|
1151 |
} |
|
1152 |
if (create_if_missing && dp < end) { |
|
1153 |
// Allocate this one. There is no mutual exclusion, |
|
1154 |
// so two threads could allocate different BCIs to the |
|
1155 |
// same data layout. This means these extra data |
|
1156 |
// records, like most other MDO contents, must not be |
|
1157 |
// trusted too much. |
|
1158 |
DataLayout temp; |
|
1159 |
temp.initialize(DataLayout::bit_data_tag, bci, 0); |
|
1160 |
dp->release_set_header(temp.header()); |
|
1161 |
assert(dp->tag() == DataLayout::bit_data_tag, "sane"); |
|
1162 |
//NO: assert(dp->bci() == bci, "no concurrent allocation"); |
|
1163 |
return new BitData(dp); |
|
1164 |
} |
|
1165 |
return NULL; |
|
1166 |
} |
|
1167 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1168 |
ArgInfoData *MethodData::arg_info() { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1169 |
DataLayout* dp = extra_data_base(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1170 |
DataLayout* end = extra_data_limit(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1171 |
for (; dp < end; dp = next_extra(dp)) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1172 |
if (dp->tag() == DataLayout::arg_info_data_tag) |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1173 |
return new ArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1174 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1175 |
return NULL; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1176 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1177 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1178 |
// Printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1179 |
|
1 | 1180 |
#ifndef PRODUCT |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1181 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1182 |
void MethodData::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1183 |
assert(is_methodData(), "should be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1184 |
st->print("method data for "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1185 |
method()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1186 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1187 |
print_data_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1188 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1189 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1190 |
#endif //PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1191 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1192 |
void MethodData::print_value_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1193 |
assert(is_methodData(), "should be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1194 |
st->print("method data for "); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1195 |
method()->print_value_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1196 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1197 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1198 |
#ifndef PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1199 |
void MethodData::print_data_on(outputStream* st) const { |
1 | 1200 |
ResourceMark rm; |
1201 |
ProfileData* data = first_data(); |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1202 |
if (_parameters_type_data_di != -1) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1203 |
parameters_type_data()->print_data_on(st); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1204 |
} |
1 | 1205 |
for ( ; is_valid(data); data = next_data(data)) { |
1206 |
st->print("%d", dp_to_di(data->dp())); |
|
1207 |
st->fill_to(6); |
|
1208 |
data->print_data_on(st); |
|
1209 |
} |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1210 |
st->print_cr("--- Extra data:"); |
1 | 1211 |
DataLayout* dp = extra_data_base(); |
1212 |
DataLayout* end = extra_data_limit(); |
|
1213 |
for (; dp < end; dp = next_extra(dp)) { |
|
1214 |
// No need for "OrderAccess::load_acquire" ops, |
|
1215 |
// since the data structure is monotonic. |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1216 |
if (dp->tag() == DataLayout::no_tag) continue; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1217 |
if (dp->tag() == DataLayout::bit_data_tag) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1218 |
data = new BitData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1219 |
} else { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1220 |
assert(dp->tag() == DataLayout::arg_info_data_tag, "must be BitData or ArgInfo"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1221 |
data = new ArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1222 |
dp = end; // ArgInfoData is at the end of extra data section. |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
1223 |
} |
1 | 1224 |
st->print("%d", dp_to_di(data->dp())); |
1225 |
st->fill_to(6); |
|
1226 |
data->print_data_on(st); |
|
1227 |
} |
|
1228 |
} |
|
1229 |
#endif |
|
1230 |
||
15437 | 1231 |
#if INCLUDE_SERVICES |
1232 |
// Size Statistics |
|
1233 |
void MethodData::collect_statistics(KlassSizeStats *sz) const { |
|
1234 |
int n = sz->count(this); |
|
1235 |
sz->_method_data_bytes += n; |
|
1236 |
sz->_method_all_bytes += n; |
|
1237 |
sz->_rw_bytes += n; |
|
1238 |
} |
|
1239 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1240 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1241 |
// Verification |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1242 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1243 |
void MethodData::verify_on(outputStream* st) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1244 |
guarantee(is_methodData(), "object must be method data"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1245 |
// guarantee(m->is_perm(), "should be in permspace"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1246 |
this->verify_data_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1247 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1248 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8334
diff
changeset
|
1249 |
void MethodData::verify_data_on(outputStream* st) { |
1 | 1250 |
NEEDS_CLEANUP; |
1251 |
// not yet implemented. |
|
1252 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1253 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1254 |
bool MethodData::profile_jsr292(methodHandle m, int bci) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1255 |
if (m->is_compiled_lambda_form()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1256 |
return true; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1257 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1258 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1259 |
Bytecode_invoke inv(m , bci); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1260 |
return inv.is_invokedynamic() || inv.is_invokehandle(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1261 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1262 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1263 |
int MethodData::profile_arguments_flag() { |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1264 |
return TypeProfileLevel % 10; |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1265 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1266 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1267 |
bool MethodData::profile_arguments() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1268 |
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
|
1269 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1270 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1271 |
bool MethodData::profile_arguments_jsr292_only() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1272 |
return profile_arguments_flag() == type_profile_jsr292; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1273 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1274 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1275 |
bool MethodData::profile_all_arguments() { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1276 |
return profile_arguments_flag() == type_profile_all; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1277 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1278 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1279 |
bool MethodData::profile_arguments_for_invoke(methodHandle m, int bci) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1280 |
if (!profile_arguments()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1281 |
return false; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1282 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1283 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1284 |
if (profile_all_arguments()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1285 |
return true; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1286 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1287 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1288 |
assert(profile_arguments_jsr292_only(), "inconsistent"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1289 |
return profile_jsr292(m, bci); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1290 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
17858
diff
changeset
|
1291 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1292 |
int MethodData::profile_return_flag() { |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1293 |
return (TypeProfileLevel % 100) / 10; |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1294 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1295 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1296 |
bool MethodData::profile_return() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1297 |
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
|
1298 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1299 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1300 |
bool MethodData::profile_return_jsr292_only() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1301 |
return profile_return_flag() == type_profile_jsr292; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1302 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1303 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1304 |
bool MethodData::profile_all_return() { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1305 |
return profile_return_flag() == type_profile_all; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1306 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1307 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1308 |
bool MethodData::profile_return_for_invoke(methodHandle m, int bci) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1309 |
if (!profile_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1310 |
return false; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1311 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1312 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1313 |
if (profile_all_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1314 |
return true; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1315 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1316 |
|
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1317 |
assert(profile_return_jsr292_only(), "inconsistent"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1318 |
return profile_jsr292(m, bci); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
1319 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1320 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1321 |
int MethodData::profile_parameters_flag() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1322 |
return TypeProfileLevel / 100; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1323 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1324 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1325 |
bool MethodData::profile_parameters() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1326 |
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
|
1327 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1328 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1329 |
bool MethodData::profile_parameters_jsr292_only() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1330 |
return profile_parameters_flag() == type_profile_jsr292; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1331 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1332 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1333 |
bool MethodData::profile_all_parameters() { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1334 |
return profile_parameters_flag() == type_profile_all; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1335 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1336 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1337 |
bool MethodData::profile_parameters_for_method(methodHandle m) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1338 |
if (!profile_parameters()) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1339 |
return false; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1340 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1341 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1342 |
if (profile_all_parameters()) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1343 |
return true; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1344 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1345 |
|
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1346 |
assert(profile_parameters_jsr292_only(), "inconsistent"); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1347 |
return m->is_compiled_lambda_form(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1348 |
} |