author | coleenp |
Fri, 05 Dec 2014 15:15:13 -0500 | |
changeset 28019 | a6303ff71902 |
parent 26440 | 0c9e5ee0083a |
child 33105 | 294e48b4f704 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23201
diff
changeset
|
2 |
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
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:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
26 |
#include "ci/ciMetadata.hpp" |
7397 | 27 |
#include "ci/ciMethodData.hpp" |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
28 |
#include "ci/ciReplay.hpp" |
7397 | 29 |
#include "ci/ciUtilities.hpp" |
30 |
#include "memory/allocation.inline.hpp" |
|
31 |
#include "memory/resourceArea.hpp" |
|
32 |
#include "runtime/deoptimization.hpp" |
|
33 |
#include "utilities/copy.hpp" |
|
1 | 34 |
|
35 |
// ciMethodData |
|
36 |
||
37 |
// ------------------------------------------------------------------ |
|
38 |
// ciMethodData::ciMethodData |
|
39 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
40 |
ciMethodData::ciMethodData(MethodData* md) : ciMetadata(md) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
41 |
assert(md != NULL, "no null method data"); |
1 | 42 |
Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord)); |
43 |
_data = NULL; |
|
44 |
_data_size = 0; |
|
45 |
_extra_data_size = 0; |
|
46 |
_current_mileage = 0; |
|
6453 | 47 |
_invocation_counter = 0; |
48 |
_backedge_counter = 0; |
|
1 | 49 |
_state = empty_state; |
50 |
_saw_free_extra_data = false; |
|
51 |
// Set an initial hint. Don't use set_hint_di() because |
|
52 |
// first_di() may be out of bounds if data_size is 0. |
|
53 |
_hint_di = first_di(); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
54 |
// Initialize the escape information (to "don't know."); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
55 |
_eflags = _arg_local = _arg_stack = _arg_returned = 0; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
56 |
_parameters = NULL; |
1 | 57 |
} |
58 |
||
59 |
// ------------------------------------------------------------------ |
|
60 |
// ciMethodData::ciMethodData |
|
61 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
62 |
// No MethodData*. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
63 |
ciMethodData::ciMethodData() : ciMetadata(NULL) { |
1 | 64 |
Copy::zero_to_words((HeapWord*) &_orig, sizeof(_orig) / sizeof(HeapWord)); |
65 |
_data = NULL; |
|
66 |
_data_size = 0; |
|
67 |
_extra_data_size = 0; |
|
68 |
_current_mileage = 0; |
|
6453 | 69 |
_invocation_counter = 0; |
70 |
_backedge_counter = 0; |
|
1 | 71 |
_state = empty_state; |
72 |
_saw_free_extra_data = false; |
|
73 |
// Set an initial hint. Don't use set_hint_di() because |
|
74 |
// first_di() may be out of bounds if data_size is 0. |
|
75 |
_hint_di = first_di(); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
76 |
// Initialize the escape information (to "don't know."); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
77 |
_eflags = _arg_local = _arg_stack = _arg_returned = 0; |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
78 |
_parameters = NULL; |
1 | 79 |
} |
80 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
81 |
void ciMethodData::load_extra_data() { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
82 |
MethodData* mdo = get_MethodData(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
83 |
|
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
84 |
MutexLocker(mdo->extra_data_lock()); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
85 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
86 |
// speculative trap entries also hold a pointer to a Method so need to be translated |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
87 |
DataLayout* dp_src = mdo->extra_data_base(); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
88 |
DataLayout* end_src = mdo->args_data_limit(); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
89 |
DataLayout* dp_dst = extra_data_base(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
90 |
for (;; dp_src = MethodData::next_extra(dp_src), dp_dst = MethodData::next_extra(dp_dst)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
91 |
assert(dp_src < end_src, "moved past end of extra data"); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
92 |
assert(((intptr_t)dp_dst) - ((intptr_t)extra_data_base()) == ((intptr_t)dp_src) - ((intptr_t)mdo->extra_data_base()), "source and destination don't match"); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
93 |
|
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
94 |
// New traps in the MDO may have been added since we copied the |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
95 |
// data (concurrent deoptimizations before we acquired |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
96 |
// extra_data_lock above) or can be removed (a safepoint may occur |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
97 |
// in the translate_from call below) as we translate the copy: |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
98 |
// update the copy as we go. |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
99 |
int tag = dp_src->tag(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
100 |
if (tag != DataLayout::arg_info_data_tag) { |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
101 |
memcpy(dp_dst, dp_src, ((intptr_t)MethodData::next_extra(dp_src)) - ((intptr_t)dp_src)); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
102 |
} |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
103 |
|
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
104 |
switch(tag) { |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
105 |
case DataLayout::speculative_trap_data_tag: { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
106 |
ciSpeculativeTrapData* data_dst = new ciSpeculativeTrapData(dp_dst); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
107 |
SpeculativeTrapData* data_src = new SpeculativeTrapData(dp_src); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
108 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
109 |
data_dst->translate_from(data_src); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
110 |
|
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
111 |
#ifdef ASSERT |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
112 |
SpeculativeTrapData* data_src2 = new SpeculativeTrapData(dp_src); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
113 |
assert(data_src2->method() == data_src->method() && data_src2->bci() == data_src->bci(), "entries changed while translating"); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
114 |
#endif |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
115 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
116 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
117 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
118 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
119 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
120 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
121 |
case DataLayout::arg_info_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
122 |
// An empty slot or ArgInfoData entry marks the end of the trap data |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
123 |
return; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
124 |
default: |
23201
6920163f479e
8035841: assert(dp_src->tag() == dp_dst->tag()) failed: should be same tags 1 != 0 at ciMethodData.cpp:90
roland
parents:
22916
diff
changeset
|
125 |
fatal(err_msg("bad tag = %d", dp_dst->tag())); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
126 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
127 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
128 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
129 |
|
1 | 130 |
void ciMethodData::load_data() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
131 |
MethodData* mdo = get_MethodData(); |
20695
4f5a5e95090b
8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents:
20692
diff
changeset
|
132 |
if (mdo == NULL) { |
4f5a5e95090b
8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents:
20692
diff
changeset
|
133 |
return; |
4f5a5e95090b
8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
twisti
parents:
20692
diff
changeset
|
134 |
} |
1 | 135 |
|
136 |
// To do: don't copy the data if it is not "ripe" -- require a minimum # |
|
137 |
// of invocations. |
|
138 |
||
139 |
// Snapshot the data -- actually, take an approximate snapshot of |
|
140 |
// the data. Any concurrently executing threads may be changing the |
|
141 |
// data as we copy it. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
142 |
Copy::disjoint_words((HeapWord*) mdo, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
143 |
(HeapWord*) &_orig, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
144 |
sizeof(_orig) / HeapWordSize); |
1 | 145 |
Arena* arena = CURRENT_ENV->arena(); |
146 |
_data_size = mdo->data_size(); |
|
147 |
_extra_data_size = mdo->extra_data_size(); |
|
148 |
int total_size = _data_size + _extra_data_size; |
|
149 |
_data = (intptr_t *) arena->Amalloc(total_size); |
|
150 |
Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize); |
|
151 |
||
152 |
// Traverse the profile data, translating any oops into their |
|
153 |
// ci equivalents. |
|
154 |
ResourceMark rm; |
|
155 |
ciProfileData* ci_data = first_data(); |
|
156 |
ProfileData* data = mdo->first_data(); |
|
157 |
while (is_valid(ci_data)) { |
|
158 |
ci_data->translate_from(data); |
|
159 |
ci_data = next_data(ci_data); |
|
160 |
data = mdo->next_data(data); |
|
161 |
} |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
162 |
if (mdo->parameters_type_data() != NULL) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
163 |
_parameters = data_layout_at(mdo->parameters_type_data_di()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
164 |
ciParametersTypeData* parameters = new ciParametersTypeData(_parameters); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
165 |
parameters->translate_from(mdo->parameters_type_data()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
166 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
167 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
168 |
load_extra_data(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
169 |
|
1 | 170 |
// Note: Extra data are all BitData, and do not need translation. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
171 |
_current_mileage = MethodData::mileage_of(mdo->method()); |
6453 | 172 |
_invocation_counter = mdo->invocation_count(); |
173 |
_backedge_counter = mdo->backedge_count(); |
|
1 | 174 |
_state = mdo->is_mature()? mature_state: immature_state; |
175 |
||
176 |
_eflags = mdo->eflags(); |
|
177 |
_arg_local = mdo->arg_local(); |
|
178 |
_arg_stack = mdo->arg_stack(); |
|
179 |
_arg_returned = mdo->arg_returned(); |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
180 |
#ifndef PRODUCT |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
181 |
if (ReplayCompiles) { |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
182 |
ciReplay::initialize(this); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
183 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
184 |
#endif |
1 | 185 |
} |
186 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
187 |
void ciReceiverTypeData::translate_receiver_data_from(const ProfileData* data) { |
1 | 188 |
for (uint row = 0; row < row_limit(); row++) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
189 |
Klass* k = data->as_ReceiverTypeData()->receiver(row); |
1 | 190 |
if (k != NULL) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
191 |
ciKlass* klass = CURRENT_ENV->get_klass(k); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
192 |
CURRENT_ENV->ensure_metadata_alive(klass); |
1 | 193 |
set_receiver(row, klass); |
194 |
} |
|
195 |
} |
|
196 |
} |
|
197 |
||
198 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
199 |
void ciTypeStackSlotEntries::translate_type_data_from(const TypeStackSlotEntries* entries) { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
200 |
for (int i = 0; i < number_of_entries(); i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
201 |
intptr_t k = entries->type(i); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
202 |
TypeStackSlotEntries::set_type(i, translate_klass(k)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
203 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
204 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
205 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
206 |
void ciReturnTypeEntry::translate_type_data_from(const ReturnTypeEntry* ret) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
207 |
intptr_t k = ret->type(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
208 |
set_type(translate_klass(k)); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
209 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
210 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
211 |
void ciSpeculativeTrapData::translate_from(const ProfileData* data) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
212 |
Method* m = data->as_SpeculativeTrapData()->method(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
213 |
ciMethod* ci_m = CURRENT_ENV->get_method(m); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
214 |
CURRENT_ENV->ensure_metadata_alive(ci_m); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
215 |
set_method(ci_m); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
216 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
217 |
|
1 | 218 |
// Get the data at an arbitrary (sort of) data index. |
219 |
ciProfileData* ciMethodData::data_at(int data_index) { |
|
220 |
if (out_of_bounds(data_index)) { |
|
221 |
return NULL; |
|
222 |
} |
|
223 |
DataLayout* data_layout = data_layout_at(data_index); |
|
224 |
||
225 |
switch (data_layout->tag()) { |
|
226 |
case DataLayout::no_tag: |
|
227 |
default: |
|
228 |
ShouldNotReachHere(); |
|
229 |
return NULL; |
|
230 |
case DataLayout::bit_data_tag: |
|
231 |
return new ciBitData(data_layout); |
|
232 |
case DataLayout::counter_data_tag: |
|
233 |
return new ciCounterData(data_layout); |
|
234 |
case DataLayout::jump_data_tag: |
|
235 |
return new ciJumpData(data_layout); |
|
236 |
case DataLayout::receiver_type_data_tag: |
|
237 |
return new ciReceiverTypeData(data_layout); |
|
238 |
case DataLayout::virtual_call_data_tag: |
|
239 |
return new ciVirtualCallData(data_layout); |
|
240 |
case DataLayout::ret_data_tag: |
|
241 |
return new ciRetData(data_layout); |
|
242 |
case DataLayout::branch_data_tag: |
|
243 |
return new ciBranchData(data_layout); |
|
244 |
case DataLayout::multi_branch_data_tag: |
|
245 |
return new ciMultiBranchData(data_layout); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
246 |
case DataLayout::arg_info_data_tag: |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
247 |
return new ciArgInfoData(data_layout); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
248 |
case DataLayout::call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
249 |
return new ciCallTypeData(data_layout); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
250 |
case DataLayout::virtual_call_type_data_tag: |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
251 |
return new ciVirtualCallTypeData(data_layout); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
252 |
case DataLayout::parameters_type_data_tag: |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
253 |
return new ciParametersTypeData(data_layout); |
1 | 254 |
}; |
255 |
} |
|
256 |
||
257 |
// Iteration over data. |
|
258 |
ciProfileData* ciMethodData::next_data(ciProfileData* current) { |
|
259 |
int current_index = dp_to_di(current->dp()); |
|
260 |
int next_index = current_index + current->size_in_bytes(); |
|
261 |
ciProfileData* next = data_at(next_index); |
|
262 |
return next; |
|
263 |
} |
|
264 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
265 |
ciProfileData* ciMethodData::bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots) { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
266 |
DataLayout* dp = extra_data_base(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
267 |
DataLayout* end = args_data_limit(); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
268 |
two_free_slots = false; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
269 |
for (;dp < end; dp = MethodData::next_extra(dp)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
270 |
switch(dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
271 |
case DataLayout::no_tag: |
1 | 272 |
_saw_free_extra_data = true; // observed an empty slot (common case) |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
273 |
two_free_slots = (MethodData::next_extra(dp)->tag() == DataLayout::no_tag); |
1 | 274 |
return NULL; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
275 |
case DataLayout::arg_info_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
276 |
return NULL; // ArgInfoData is at the end of extra data section. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
277 |
case DataLayout::bit_data_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
278 |
if (m == NULL && dp->bci() == bci) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
279 |
return new ciBitData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
280 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
281 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
282 |
case DataLayout::speculative_trap_data_tag: { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
283 |
ciSpeculativeTrapData* data = new ciSpeculativeTrapData(dp); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
284 |
// data->method() might be null if the MDO is snapshotted |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
285 |
// concurrently with a trap |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
286 |
if (m != NULL && data->method() == m && dp->bci() == bci) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
287 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
288 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
289 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
290 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
291 |
default: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
292 |
fatal(err_msg("bad tag = %d", dp->tag())); |
1 | 293 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
294 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
295 |
return NULL; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
296 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
297 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
298 |
// Translate a bci to its corresponding data, or NULL. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
299 |
ciProfileData* ciMethodData::bci_to_data(int bci, ciMethod* m) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
300 |
// If m is not NULL we look for a SpeculativeTrapData entry |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
301 |
if (m == NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
302 |
ciProfileData* data = data_before(bci); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
303 |
for ( ; is_valid(data); data = next_data(data)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
304 |
if (data->bci() == bci) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
305 |
set_hint_di(dp_to_di(data->dp())); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
306 |
return data; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
307 |
} else if (data->bci() > bci) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
308 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
309 |
} |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
310 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
311 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
312 |
bool two_free_slots = false; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
313 |
ciProfileData* result = bci_to_extra_data(bci, m, two_free_slots); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
314 |
if (result != NULL) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
315 |
return result; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
316 |
} |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
317 |
if (m != NULL && !two_free_slots) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
318 |
// We were looking for a SpeculativeTrapData entry we didn't |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
319 |
// find. Room is not available for more SpeculativeTrapData |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
320 |
// entries, look in the non SpeculativeTrapData entries. |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
321 |
return bci_to_data(bci, NULL); |
1 | 322 |
} |
323 |
return NULL; |
|
324 |
} |
|
325 |
||
326 |
// Conservatively decode the trap_state of a ciProfileData. |
|
327 |
int ciMethodData::has_trap_at(ciProfileData* data, int reason) { |
|
328 |
typedef Deoptimization::DeoptReason DR_t; |
|
329 |
int per_bc_reason |
|
330 |
= Deoptimization::reason_recorded_per_bytecode_if_any((DR_t) reason); |
|
331 |
if (trap_count(reason) == 0) { |
|
332 |
// Impossible for this trap to have occurred, regardless of trap_state. |
|
333 |
// Note: This happens if the MDO is empty. |
|
334 |
return 0; |
|
335 |
} else if (per_bc_reason == Deoptimization::Reason_none) { |
|
336 |
// We cannot conclude anything; a trap happened somewhere, maybe here. |
|
337 |
return -1; |
|
338 |
} else if (data == NULL) { |
|
339 |
// No profile here, not even an extra_data record allocated on the fly. |
|
340 |
// If there are empty extra_data records, and there had been a trap, |
|
341 |
// there would have been a non-null data pointer. If there are no |
|
342 |
// free extra_data records, we must return a conservative -1. |
|
343 |
if (_saw_free_extra_data) |
|
344 |
return 0; // Q.E.D. |
|
345 |
else |
|
346 |
return -1; // bail with a conservative answer |
|
347 |
} else { |
|
348 |
return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason); |
|
349 |
} |
|
350 |
} |
|
351 |
||
352 |
int ciMethodData::trap_recompiled_at(ciProfileData* data) { |
|
353 |
if (data == NULL) { |
|
354 |
return (_saw_free_extra_data? 0: -1); // (see previous method) |
|
355 |
} else { |
|
356 |
return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0; |
|
357 |
} |
|
358 |
} |
|
359 |
||
360 |
void ciMethodData::clear_escape_info() { |
|
361 |
VM_ENTRY_MARK; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
362 |
MethodData* mdo = get_MethodData(); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
363 |
if (mdo != NULL) { |
1 | 364 |
mdo->clear_escape_info(); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
365 |
ArgInfoData *aid = arg_info(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
366 |
int arg_count = (aid == NULL) ? 0 : aid->number_of_args(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
367 |
for (int i = 0; i < arg_count; i++) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
368 |
set_arg_modified(i, 0); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
369 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
370 |
} |
1 | 371 |
_eflags = _arg_local = _arg_stack = _arg_returned = 0; |
372 |
} |
|
373 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
374 |
// copy our escape info to the MethodData* if it exists |
1 | 375 |
void ciMethodData::update_escape_info() { |
376 |
VM_ENTRY_MARK; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
377 |
MethodData* mdo = get_MethodData(); |
1 | 378 |
if ( mdo != NULL) { |
379 |
mdo->set_eflags(_eflags); |
|
380 |
mdo->set_arg_local(_arg_local); |
|
381 |
mdo->set_arg_stack(_arg_stack); |
|
382 |
mdo->set_arg_returned(_arg_returned); |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
383 |
int arg_count = mdo->method()->size_of_parameters(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
384 |
for (int i = 0; i < arg_count; i++) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
385 |
mdo->set_arg_modified(i, arg_modified(i)); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
386 |
} |
1 | 387 |
} |
388 |
} |
|
389 |
||
6453 | 390 |
void ciMethodData::set_compilation_stats(short loops, short blocks) { |
391 |
VM_ENTRY_MARK; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
392 |
MethodData* mdo = get_MethodData(); |
6453 | 393 |
if (mdo != NULL) { |
394 |
mdo->set_num_loops(loops); |
|
395 |
mdo->set_num_blocks(blocks); |
|
396 |
} |
|
397 |
} |
|
398 |
||
399 |
void ciMethodData::set_would_profile(bool p) { |
|
400 |
VM_ENTRY_MARK; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
401 |
MethodData* mdo = get_MethodData(); |
6453 | 402 |
if (mdo != NULL) { |
403 |
mdo->set_would_profile(p); |
|
404 |
} |
|
405 |
} |
|
406 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
407 |
void ciMethodData::set_argument_type(int bci, int i, ciKlass* k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
408 |
VM_ENTRY_MARK; |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
409 |
MethodData* mdo = get_MethodData(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
410 |
if (mdo != NULL) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
411 |
ProfileData* data = mdo->bci_to_data(bci); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
412 |
if (data->is_CallTypeData()) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
413 |
data->as_CallTypeData()->set_argument_type(i, k->get_Klass()); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
414 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
415 |
assert(data->is_VirtualCallTypeData(), "no arguments!"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
416 |
data->as_VirtualCallTypeData()->set_argument_type(i, k->get_Klass()); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
417 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
418 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
419 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
420 |
|
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
421 |
void ciMethodData::set_parameter_type(int i, ciKlass* k) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
422 |
VM_ENTRY_MARK; |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
423 |
MethodData* mdo = get_MethodData(); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
424 |
if (mdo != NULL) { |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
425 |
mdo->parameters_type_data()->set_type(i, k->get_Klass()); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
426 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
427 |
} |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
428 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
429 |
void ciMethodData::set_return_type(int bci, ciKlass* k) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
430 |
VM_ENTRY_MARK; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
431 |
MethodData* mdo = get_MethodData(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
432 |
if (mdo != NULL) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
433 |
ProfileData* data = mdo->bci_to_data(bci); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
434 |
if (data->is_CallTypeData()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
435 |
data->as_CallTypeData()->set_return_type(k->get_Klass()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
436 |
} else { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
437 |
assert(data->is_VirtualCallTypeData(), "no arguments!"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
438 |
data->as_VirtualCallTypeData()->set_return_type(k->get_Klass()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
439 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
440 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
441 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
442 |
|
1 | 443 |
bool ciMethodData::has_escape_info() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
444 |
return eflag_set(MethodData::estimated); |
1 | 445 |
} |
446 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
447 |
void ciMethodData::set_eflag(MethodData::EscapeFlag f) { |
1 | 448 |
set_bits(_eflags, f); |
449 |
} |
|
450 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
451 |
void ciMethodData::clear_eflag(MethodData::EscapeFlag f) { |
1 | 452 |
clear_bits(_eflags, f); |
453 |
} |
|
454 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
455 |
bool ciMethodData::eflag_set(MethodData::EscapeFlag f) const { |
1 | 456 |
return mask_bits(_eflags, f) != 0; |
457 |
} |
|
458 |
||
459 |
void ciMethodData::set_arg_local(int i) { |
|
460 |
set_nth_bit(_arg_local, i); |
|
461 |
} |
|
462 |
||
463 |
void ciMethodData::set_arg_stack(int i) { |
|
464 |
set_nth_bit(_arg_stack, i); |
|
465 |
} |
|
466 |
||
467 |
void ciMethodData::set_arg_returned(int i) { |
|
468 |
set_nth_bit(_arg_returned, i); |
|
469 |
} |
|
470 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
471 |
void ciMethodData::set_arg_modified(int arg, uint val) { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
472 |
ArgInfoData *aid = arg_info(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
473 |
if (aid == NULL) |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
474 |
return; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
475 |
assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
476 |
aid->set_arg_modified(arg, val); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
477 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
478 |
|
1 | 479 |
bool ciMethodData::is_arg_local(int i) const { |
480 |
return is_set_nth_bit(_arg_local, i); |
|
481 |
} |
|
482 |
||
483 |
bool ciMethodData::is_arg_stack(int i) const { |
|
484 |
return is_set_nth_bit(_arg_stack, i); |
|
485 |
} |
|
486 |
||
487 |
bool ciMethodData::is_arg_returned(int i) const { |
|
488 |
return is_set_nth_bit(_arg_returned, i); |
|
489 |
} |
|
490 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
491 |
uint ciMethodData::arg_modified(int arg) const { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
492 |
ArgInfoData *aid = arg_info(); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
493 |
if (aid == NULL) |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
494 |
return 0; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
495 |
assert(arg >= 0 && arg < aid->number_of_args(), "valid argument number"); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
496 |
return aid->arg_modified(arg); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
497 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
498 |
|
1 | 499 |
ByteSize ciMethodData::offset_of_slot(ciProfileData* data, ByteSize slot_offset_in_data) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
500 |
// Get offset within MethodData* of the data array |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
501 |
ByteSize data_offset = MethodData::data_offset(); |
1 | 502 |
|
503 |
// Get cell offset of the ProfileData within data array |
|
504 |
int cell_offset = dp_to_di(data->dp()); |
|
505 |
||
506 |
// Add in counter_offset, the # of bytes into the ProfileData of counter or flag |
|
507 |
int offset = in_bytes(data_offset) + cell_offset + in_bytes(slot_offset_in_data); |
|
508 |
||
509 |
return in_ByteSize(offset); |
|
510 |
} |
|
511 |
||
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
512 |
ciArgInfoData *ciMethodData::arg_info() const { |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
513 |
// Should be last, have to skip all traps. |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
514 |
DataLayout* dp = extra_data_base(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
515 |
DataLayout* end = args_data_limit(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
516 |
for (; dp < end; dp = MethodData::next_extra(dp)) { |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
517 |
if (dp->tag() == DataLayout::arg_info_data_tag) |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
518 |
return new ciArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
519 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
520 |
return NULL; |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
521 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
522 |
|
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
523 |
|
1 | 524 |
// Implementation of the print method. |
525 |
void ciMethodData::print_impl(outputStream* st) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
526 |
ciMetadata::print_impl(st); |
1 | 527 |
} |
528 |
||
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
529 |
void ciMethodData::dump_replay_data_type_helper(outputStream* out, int round, int& count, ProfileData* pdata, ByteSize offset, ciKlass* k) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
530 |
if (k != NULL) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
531 |
if (round == 0) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
532 |
count++; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
533 |
} else { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
534 |
out->print(" %d %s", (int)(dp_to_di(pdata->dp() + in_bytes(offset)) / sizeof(intptr_t)), k->name()->as_quoted_ascii()); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
535 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
536 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
537 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
538 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
539 |
template<class T> void ciMethodData::dump_replay_data_receiver_type_helper(outputStream* out, int round, int& count, T* vdata) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
540 |
for (uint i = 0; i < vdata->row_limit(); i++) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
541 |
dump_replay_data_type_helper(out, round, count, vdata, vdata->receiver_offset(i), vdata->receiver(i)); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
542 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
543 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
544 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
545 |
template<class T> void ciMethodData::dump_replay_data_call_type_helper(outputStream* out, int round, int& count, T* call_type_data) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
546 |
if (call_type_data->has_arguments()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
547 |
for (int i = 0; i < call_type_data->number_of_arguments(); i++) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
548 |
dump_replay_data_type_helper(out, round, count, call_type_data, call_type_data->argument_type_offset(i), call_type_data->valid_argument_type(i)); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
549 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
550 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
551 |
if (call_type_data->has_return()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
552 |
dump_replay_data_type_helper(out, round, count, call_type_data, call_type_data->return_type_offset(), call_type_data->valid_return_type()); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
553 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
554 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
555 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
556 |
void ciMethodData::dump_replay_data_extra_data_helper(outputStream* out, int round, int& count) { |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
557 |
DataLayout* dp = extra_data_base(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
558 |
DataLayout* end = args_data_limit(); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
559 |
|
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
560 |
for (;dp < end; dp = MethodData::next_extra(dp)) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
561 |
switch(dp->tag()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
562 |
case DataLayout::no_tag: |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
563 |
case DataLayout::arg_info_data_tag: |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
564 |
return; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
565 |
case DataLayout::bit_data_tag: |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
566 |
break; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
567 |
case DataLayout::speculative_trap_data_tag: { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
568 |
ciSpeculativeTrapData* data = new ciSpeculativeTrapData(dp); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
569 |
ciMethod* m = data->method(); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
570 |
if (m != NULL) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
571 |
if (round == 0) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
572 |
count++; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
573 |
} else { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
574 |
out->print(" %d ", (int)(dp_to_di(((address)dp) + in_bytes(ciSpeculativeTrapData::method_offset())) / sizeof(intptr_t))); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
575 |
m->dump_name_as_ascii(out); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
576 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
577 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
578 |
break; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
579 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
580 |
default: |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
581 |
fatal(err_msg("bad tag = %d", dp->tag())); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
582 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
583 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
584 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
585 |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
586 |
void ciMethodData::dump_replay_data(outputStream* out) { |
15471
41f75023e6a6
8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents:
14477
diff
changeset
|
587 |
ResourceMark rm; |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
588 |
MethodData* mdo = get_MethodData(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
589 |
Method* method = mdo->method(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
590 |
Klass* holder = method->method_holder(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
591 |
out->print("ciMethodData %s %s %s %d %d", |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
592 |
holder->name()->as_quoted_ascii(), |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
593 |
method->name()->as_quoted_ascii(), |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
594 |
method->signature()->as_quoted_ascii(), |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
595 |
_state, |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
596 |
current_mileage()); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
597 |
|
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
598 |
// dump the contents of the MDO header as raw data |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
599 |
unsigned char* orig = (unsigned char*)&_orig; |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
600 |
int length = sizeof(_orig); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
601 |
out->print(" orig %d", length); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
602 |
for (int i = 0; i < length; i++) { |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
603 |
out->print(" %d", orig[i]); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
604 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
605 |
|
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
606 |
// dump the MDO data as raw data |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
607 |
int elements = (data_size() + extra_data_size()) / sizeof(intptr_t); |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
608 |
out->print(" data %d", elements); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
609 |
for (int i = 0; i < elements; i++) { |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
610 |
// We could use INTPTR_FORMAT here but that's a zero justified |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
611 |
// which makes comparing it with the SA version of this output |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
612 |
// harder. |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
613 |
#ifdef _LP64 |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
614 |
out->print(" 0x%" FORMAT64_MODIFIER "x", data()[i]); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
615 |
#else |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
616 |
out->print(" 0x%x", data()[i]); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
617 |
#endif |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
618 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
619 |
|
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
620 |
// The MDO contained oop references as ciObjects, so scan for those |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
621 |
// and emit pairs of offset and klass name so that they can be |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
622 |
// reconstructed at runtime. The first round counts the number of |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
623 |
// oop references and the second actually emits them. |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
624 |
ciParametersTypeData* parameters = parameters_type_data(); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
625 |
for (int count = 0, round = 0; round < 2; round++) { |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
626 |
if (round == 1) out->print(" oops %d", count); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
627 |
ProfileData* pdata = first_data(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
628 |
for ( ; is_valid(pdata); pdata = next_data(pdata)) { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
629 |
if (pdata->is_VirtualCallData()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
630 |
ciVirtualCallData* vdata = (ciVirtualCallData*)pdata; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
631 |
dump_replay_data_receiver_type_helper<ciVirtualCallData>(out, round, count, vdata); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
632 |
if (pdata->is_VirtualCallTypeData()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
633 |
ciVirtualCallTypeData* call_type_data = (ciVirtualCallTypeData*)pdata; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
634 |
dump_replay_data_call_type_helper<ciVirtualCallTypeData>(out, round, count, call_type_data); |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
635 |
} |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
636 |
} else if (pdata->is_ReceiverTypeData()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
637 |
ciReceiverTypeData* vdata = (ciReceiverTypeData*)pdata; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
638 |
dump_replay_data_receiver_type_helper<ciReceiverTypeData>(out, round, count, vdata); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
639 |
} else if (pdata->is_CallTypeData()) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
640 |
ciCallTypeData* call_type_data = (ciCallTypeData*)pdata; |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
641 |
dump_replay_data_call_type_helper<ciCallTypeData>(out, round, count, call_type_data); |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
642 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
643 |
} |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
644 |
if (parameters != NULL) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
645 |
for (int i = 0; i < parameters->number_of_parameters(); i++) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
646 |
dump_replay_data_type_helper(out, round, count, parameters, ParametersTypeData::type_offset(i), parameters->valid_parameter_type(i)); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
647 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
648 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
649 |
} |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
650 |
for (int count = 0, round = 0; round < 2; round++) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
651 |
if (round == 1) out->print(" methods %d", count); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
652 |
dump_replay_data_extra_data_helper(out, round, count); |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
653 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
654 |
out->cr(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
655 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13728
diff
changeset
|
656 |
|
1 | 657 |
#ifndef PRODUCT |
658 |
void ciMethodData::print() { |
|
659 |
print_data_on(tty); |
|
660 |
} |
|
661 |
||
662 |
void ciMethodData::print_data_on(outputStream* st) { |
|
663 |
ResourceMark rm; |
|
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
664 |
ciParametersTypeData* parameters = parameters_type_data(); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
665 |
if (parameters != NULL) { |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
666 |
parameters->print_data_on(st); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
667 |
} |
1 | 668 |
ciProfileData* data; |
669 |
for (data = first_data(); is_valid(data); data = next_data(data)) { |
|
670 |
st->print("%d", dp_to_di(data->dp())); |
|
671 |
st->fill_to(6); |
|
672 |
data->print_data_on(st); |
|
673 |
} |
|
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
674 |
st->print_cr("--- Extra data:"); |
26440
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
675 |
DataLayout* dp = extra_data_base(); |
0c9e5ee0083a
8057038: Speculative traps not robust when compilation and class unloading are concurrent
roland
parents:
25492
diff
changeset
|
676 |
DataLayout* end = args_data_limit(); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
677 |
for (;; dp = MethodData::next_extra(dp)) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
678 |
assert(dp < end, "moved past end of extra data"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
679 |
switch (dp->tag()) { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
680 |
case DataLayout::no_tag: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
681 |
continue; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
682 |
case DataLayout::bit_data_tag: |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
683 |
data = new BitData(dp); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
684 |
break; |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
685 |
case DataLayout::arg_info_data_tag: |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
686 |
data = new ciArgInfoData(dp); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
687 |
dp = end; // ArgInfoData is at the end of extra data section. |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
688 |
break; |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
689 |
case DataLayout::speculative_trap_data_tag: |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
690 |
data = new ciSpeculativeTrapData(dp); |
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
691 |
break; |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
692 |
default: |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
693 |
fatal(err_msg("unexpected tag %d", dp->tag())); |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
694 |
} |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
695 |
st->print("%d", dp_to_di(data->dp())); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
696 |
st->fill_to(6); |
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
697 |
data->print_data_on(st); |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
698 |
if (dp >= end) return; |
218
a0e996680b05
6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents:
1
diff
changeset
|
699 |
} |
1 | 700 |
} |
701 |
||
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
702 |
void ciTypeEntries::print_ciklass(outputStream* st, intptr_t k) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
703 |
if (TypeEntries::is_type_none(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
704 |
st->print("none"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
705 |
} else if (TypeEntries::is_type_unknown(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
706 |
st->print("unknown"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
707 |
} else { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
708 |
valid_ciklass(k)->print_name_on(st); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
709 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
710 |
if (TypeEntries::was_null_seen(k)) { |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
711 |
st->print(" (null seen)"); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
712 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
713 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
714 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
715 |
void ciTypeStackSlotEntries::print_data_on(outputStream* st) const { |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
716 |
for (int i = 0; i < number_of_entries(); i++) { |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
717 |
_pd->tab(st); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
718 |
st->print("%d: stack (%u) ", i, stack_slot(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
719 |
print_ciklass(st, type(i)); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
720 |
st->cr(); |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
721 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
722 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
723 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
724 |
void ciReturnTypeEntry::print_data_on(outputStream* st) const { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
725 |
_pd->tab(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
726 |
st->print("ret "); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
727 |
print_ciklass(st, type()); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
728 |
st->cr(); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
729 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
730 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
731 |
void ciCallTypeData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
732 |
print_shared(st, "ciCallTypeData", extra); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
733 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
734 |
tab(st, true); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
735 |
st->print_cr("argument types"); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
736 |
args()->print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
737 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
738 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
739 |
tab(st, true); |
24476
912595db2e75
8026694: New type profiling points break compilation replay
roland
parents:
24424
diff
changeset
|
740 |
st->print_cr("return type"); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
741 |
ret()->print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
742 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
743 |
} |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
744 |
|
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
745 |
void ciReceiverTypeData::print_receiver_data_on(outputStream* st) const { |
1 | 746 |
uint row; |
747 |
int entries = 0; |
|
748 |
for (row = 0; row < row_limit(); row++) { |
|
749 |
if (receiver(row) != NULL) entries++; |
|
750 |
} |
|
751 |
st->print_cr("count(%u) entries(%u)", count(), entries); |
|
752 |
for (row = 0; row < row_limit(); row++) { |
|
753 |
if (receiver(row) != NULL) { |
|
754 |
tab(st); |
|
755 |
receiver(row)->print_name_on(st); |
|
756 |
st->print_cr("(%u)", receiver_count(row)); |
|
757 |
} |
|
758 |
} |
|
759 |
} |
|
760 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
761 |
void ciReceiverTypeData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
762 |
print_shared(st, "ciReceiverTypeData", extra); |
1 | 763 |
print_receiver_data_on(st); |
764 |
} |
|
765 |
||
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
766 |
void ciVirtualCallData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
767 |
print_shared(st, "ciVirtualCallData", extra); |
1 | 768 |
rtd_super()->print_receiver_data_on(st); |
769 |
} |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
770 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
771 |
void ciVirtualCallTypeData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
772 |
print_shared(st, "ciVirtualCallTypeData", extra); |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
773 |
rtd_super()->print_receiver_data_on(st); |
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
774 |
if (has_arguments()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
775 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
776 |
st->print("argument types"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
777 |
args()->print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
778 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
779 |
if (has_return()) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
780 |
tab(st, true); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
781 |
st->print("return type"); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
782 |
ret()->print_data_on(st); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
20702
diff
changeset
|
783 |
} |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20695
diff
changeset
|
784 |
} |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
785 |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
786 |
void ciParametersTypeData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
787 |
st->print_cr("ciParametersTypeData"); |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
788 |
parameters()->print_data_on(st); |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
789 |
} |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
790 |
|
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
791 |
void ciSpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const { |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
792 |
st->print_cr("ciSpeculativeTrapData"); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
793 |
tab(st); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
794 |
method()->print_short_name(st); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
795 |
st->cr(); |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22234
diff
changeset
|
796 |
} |
1 | 797 |
#endif |