author | dholmes |
Sat, 23 Jun 2018 01:32:41 -0400 | |
changeset 50735 | 2f2af62dfac7 |
parent 49480 | d7df2dd501ce |
child 51860 | 54aafb3ba9ab |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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:
5542
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
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:
5542
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/javaClasses.hpp" |
|
27 |
#include "classfile/systemDictionary.hpp" |
|
28 |
#include "classfile/vmSymbols.hpp" |
|
29 |
#include "code/codeCache.hpp" |
|
30 |
#include "code/debugInfoRec.hpp" |
|
31 |
#include "code/nmethod.hpp" |
|
32 |
#include "code/pcDesc.hpp" |
|
33 |
#include "code/scopeDesc.hpp" |
|
34 |
#include "interpreter/interpreter.hpp" |
|
35 |
#include "interpreter/oopMapCache.hpp" |
|
36 |
#include "memory/resourceArea.hpp" |
|
37 |
#include "oops/instanceKlass.hpp" |
|
38 |
#include "oops/oop.inline.hpp" |
|
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
47216
diff
changeset
|
39 |
#include "runtime/frame.inline.hpp" |
7397 | 40 |
#include "runtime/handles.inline.hpp" |
41 |
#include "runtime/objectMonitor.hpp" |
|
42 |
#include "runtime/objectMonitor.inline.hpp" |
|
43 |
#include "runtime/signature.hpp" |
|
44 |
#include "runtime/stubRoutines.hpp" |
|
45 |
#include "runtime/synchronizer.hpp" |
|
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
47216
diff
changeset
|
46 |
#include "runtime/vframe.inline.hpp" |
7397 | 47 |
#include "runtime/vframeArray.hpp" |
48 |
#include "runtime/vframe_hp.hpp" |
|
1 | 49 |
|
50 |
vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) |
|
51 |
: _reg_map(reg_map), _thread(thread) { |
|
52 |
assert(fr != NULL, "must have frame"); |
|
53 |
_fr = *fr; |
|
54 |
} |
|
55 |
||
56 |
vframe::vframe(const frame* fr, JavaThread* thread) |
|
57 |
: _reg_map(thread), _thread(thread) { |
|
58 |
assert(fr != NULL, "must have frame"); |
|
59 |
_fr = *fr; |
|
60 |
} |
|
61 |
||
62 |
vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) { |
|
63 |
// Interpreter frame |
|
64 |
if (f->is_interpreted_frame()) { |
|
65 |
return new interpretedVFrame(f, reg_map, thread); |
|
66 |
} |
|
67 |
||
68 |
// Compiled frame |
|
69 |
CodeBlob* cb = f->cb(); |
|
70 |
if (cb != NULL) { |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
34643
diff
changeset
|
71 |
if (cb->is_compiled()) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
34643
diff
changeset
|
72 |
CompiledMethod* nm = (CompiledMethod*)cb; |
1 | 73 |
return new compiledVFrame(f, reg_map, thread, nm); |
74 |
} |
|
75 |
||
76 |
if (f->is_runtime_frame()) { |
|
77 |
// Skip this frame and try again. |
|
78 |
RegisterMap temp_map = *reg_map; |
|
79 |
frame s = f->sender(&temp_map); |
|
80 |
return new_vframe(&s, &temp_map, thread); |
|
81 |
} |
|
82 |
} |
|
83 |
||
84 |
// External frame |
|
85 |
return new externalVFrame(f, reg_map, thread); |
|
86 |
} |
|
87 |
||
88 |
vframe* vframe::sender() const { |
|
89 |
RegisterMap temp_map = *register_map(); |
|
90 |
assert(is_top(), "just checking"); |
|
91 |
if (_fr.is_entry_frame() && _fr.is_first_frame()) return NULL; |
|
92 |
frame s = _fr.real_sender(&temp_map); |
|
93 |
if (s.is_first_frame()) return NULL; |
|
94 |
return vframe::new_vframe(&s, &temp_map, thread()); |
|
95 |
} |
|
96 |
||
97 |
vframe* vframe::top() const { |
|
98 |
vframe* vf = (vframe*) this; |
|
99 |
while (!vf->is_top()) vf = vf->sender(); |
|
100 |
return vf; |
|
101 |
} |
|
102 |
||
103 |
||
104 |
javaVFrame* vframe::java_sender() const { |
|
105 |
vframe* f = sender(); |
|
106 |
while (f != NULL) { |
|
107 |
if (f->is_java_frame()) return javaVFrame::cast(f); |
|
108 |
f = f->sender(); |
|
109 |
} |
|
110 |
return NULL; |
|
111 |
} |
|
112 |
||
113 |
// ------------- javaVFrame -------------- |
|
114 |
||
115 |
GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() { |
|
116 |
assert(SafepointSynchronize::is_at_safepoint() || JavaThread::current() == thread(), |
|
117 |
"must be at safepoint or it's a java frame of the current thread"); |
|
118 |
||
119 |
GrowableArray<MonitorInfo*>* mons = monitors(); |
|
120 |
GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length()); |
|
121 |
if (mons->is_empty()) return result; |
|
122 |
||
123 |
bool found_first_monitor = false; |
|
124 |
ObjectMonitor *pending_monitor = thread()->current_pending_monitor(); |
|
125 |
ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor(); |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
5419
diff
changeset
|
126 |
oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : (oop) NULL); |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
5419
diff
changeset
|
127 |
oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : (oop) NULL); |
1 | 128 |
|
129 |
for (int index = (mons->length()-1); index >= 0; index--) { |
|
130 |
MonitorInfo* monitor = mons->at(index); |
|
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
131 |
if (monitor->eliminated() && is_compiled_frame()) continue; // skip eliminated monitor |
1 | 132 |
oop obj = monitor->owner(); |
133 |
if (obj == NULL) continue; // skip unowned monitor |
|
134 |
// |
|
135 |
// Skip the monitor that the thread is blocked to enter or waiting on |
|
136 |
// |
|
137 |
if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) { |
|
138 |
continue; |
|
139 |
} |
|
140 |
found_first_monitor = true; |
|
141 |
result->append(monitor); |
|
142 |
} |
|
143 |
return result; |
|
144 |
} |
|
145 |
||
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
146 |
void javaVFrame::print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) { |
1 | 147 |
if (obj.not_null()) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
148 |
st->print("\t- %s <" INTPTR_FORMAT "> ", lock_state, p2i(obj())); |
4571 | 149 |
if (obj->klass() == SystemDictionary::Class_klass()) { |
31970
4bb8e8a13f6a
8048353: jstack -l crashes VM when a Java mirror for a primitive type is locked
vkempik
parents:
31792
diff
changeset
|
150 |
st->print_cr("(a java.lang.Class for %s)", java_lang_Class::as_external_name(obj())); |
1 | 151 |
} else { |
14488 | 152 |
Klass* k = obj->klass(); |
1 | 153 |
st->print_cr("(a %s)", k->external_name()); |
154 |
} |
|
155 |
} |
|
156 |
} |
|
157 |
||
158 |
void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) { |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
159 |
Thread* THREAD = Thread::current(); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
160 |
ResourceMark rm(THREAD); |
1 | 161 |
|
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
162 |
// If this is the first frame and it is java.lang.Object.wait(...) |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
163 |
// then print out the receiver. Locals are not always available, |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
164 |
// e.g., compiled native frames have no scope so there are no locals. |
1 | 165 |
if (frame_count == 0) { |
166 |
if (method()->name() == vmSymbols::wait_name() && |
|
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13728
diff
changeset
|
167 |
method()->method_holder()->name() == vmSymbols::java_lang_Object()) { |
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
168 |
const char *wait_state = "waiting on"; // assume we are waiting |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
169 |
// If earlier in the output we reported java.lang.Thread.State == |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
170 |
// "WAITING (on object monitor)" and now we report "waiting on", then |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
171 |
// we are still waiting for notification or timeout. Otherwise if |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
172 |
// we earlier reported java.lang.Thread.State == "BLOCKED (on object |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
173 |
// monitor)", then we are actually waiting to re-lock the monitor. |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
174 |
// At this level we can't distinguish the two cases to report |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
175 |
// "waited on" rather than "waiting on" for the second case. |
1 | 176 |
StackValueCollection* locs = locals(); |
177 |
if (!locs->is_empty()) { |
|
178 |
StackValue* sv = locs->at(0); |
|
179 |
if (sv->type() == T_OBJECT) { |
|
180 |
Handle o = locs->at(0)->get_obj(); |
|
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
181 |
print_locked_object_class_name(st, o, wait_state); |
1 | 182 |
} |
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
183 |
} else { |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
184 |
st->print_cr("\t- %s <no object reference available>", wait_state); |
1 | 185 |
} |
186 |
} else if (thread()->current_park_blocker() != NULL) { |
|
187 |
oop obj = thread()->current_park_blocker(); |
|
14488 | 188 |
Klass* k = obj->klass(); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
189 |
st->print_cr("\t- %s <" INTPTR_FORMAT "> (a %s)", "parking to wait for ", p2i(obj), k->external_name()); |
1 | 190 |
} |
191 |
} |
|
192 |
||
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
193 |
// Print out all monitors that we have locked, or are trying to lock, |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
194 |
// including re-locking after being notified or timing out in a wait(). |
1 | 195 |
GrowableArray<MonitorInfo*>* mons = monitors(); |
196 |
if (!mons->is_empty()) { |
|
197 |
bool found_first_monitor = false; |
|
198 |
for (int index = (mons->length()-1); index >= 0; index--) { |
|
199 |
MonitorInfo* monitor = mons->at(index); |
|
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
200 |
if (monitor->eliminated() && is_compiled_frame()) { // Eliminated in compiled code |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
201 |
if (monitor->owner_is_scalar_replaced()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
202 |
Klass* k = java_lang_Class::as_Klass(monitor->owner_klass()); |
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
203 |
// format below for lockbits matches this one. |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
204 |
st->print("\t- eliminated <owner is scalar replaced> (a %s)", k->external_name()); |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
205 |
} else { |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
206 |
Handle obj(THREAD, monitor->owner()); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
207 |
if (obj() != NULL) { |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
208 |
print_locked_object_class_name(st, obj, "eliminated"); |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
209 |
} |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
210 |
} |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
211 |
continue; |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
212 |
} |
1 | 213 |
if (monitor->owner() != NULL) { |
24832
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
214 |
// the monitor is associated with an object, i.e., it is locked |
1 | 215 |
|
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
216 |
markOop mark = NULL; |
1 | 217 |
const char *lock_state = "locked"; // assume we have the monitor locked |
218 |
if (!found_first_monitor && frame_count == 0) { |
|
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
219 |
// If this is the first frame and we haven't found an owned |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
220 |
// monitor before, then we need to see if we have completed |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
221 |
// the lock or if we are blocked trying to acquire it. Only |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
222 |
// an inflated monitor that is first on the monitor list in |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
223 |
// the first frame can block us on a monitor enter. |
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
224 |
mark = monitor->owner()->mark(); |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
225 |
if (mark->has_monitor() && |
24832
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
226 |
( // we have marked ourself as pending on this monitor |
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
227 |
mark->monitor() == thread()->current_pending_monitor() || |
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
228 |
// we are not the owner of this monitor |
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
229 |
!mark->monitor()->is_entered(thread()) |
26a834fb508d
8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents:
24456
diff
changeset
|
230 |
)) { |
1 | 231 |
lock_state = "waiting to lock"; |
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
232 |
} else { |
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
233 |
// We own the monitor which is not as interesting so |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
234 |
// disable the extra printing below. |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
235 |
mark = NULL; |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
236 |
} |
34643
f2938769348a
8131694: backout the fix for JDK-8131331 when JDK-8131693 is fixed
dsamersoff
parents:
33198
diff
changeset
|
237 |
} else if (frame_count != 0) { |
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
238 |
// This is not the first frame so we either own this monitor |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
239 |
// or we owned the monitor before and called wait(). Because |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
240 |
// wait() could have been called on any monitor in a lower |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
241 |
// numbered frame on the stack, we have to check all the |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
242 |
// monitors on the list for this frame. |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
243 |
mark = monitor->owner()->mark(); |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
244 |
if (mark->has_monitor() && |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
245 |
( // we have marked ourself as pending on this monitor |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
246 |
mark->monitor() == thread()->current_pending_monitor() || |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
247 |
// we are not the owner of this monitor |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
248 |
!mark->monitor()->is_entered(thread()) |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
249 |
)) { |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
250 |
lock_state = "waiting to re-lock in wait()"; |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
251 |
} else { |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
252 |
// We own the monitor which is not as interesting so |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
253 |
// disable the extra printing below. |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
254 |
mark = NULL; |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
255 |
} |
1 | 256 |
} |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
257 |
print_locked_object_class_name(st, Handle(THREAD, monitor->owner()), lock_state); |
31782
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
258 |
if (ObjectMonitor::Knob_Verbose && mark != NULL) { |
b23b74f8ae8d
8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents:
29086
diff
changeset
|
259 |
st->print("\t- lockbits="); |
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
260 |
mark->print_on(st); |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
261 |
st->cr(); |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
262 |
} |
1 | 263 |
|
264 |
found_first_monitor = true; |
|
265 |
} |
|
266 |
} |
|
267 |
} |
|
268 |
} |
|
269 |
||
270 |
// ------------- interpretedVFrame -------------- |
|
271 |
||
272 |
u_char* interpretedVFrame::bcp() const { |
|
273 |
return fr().interpreter_frame_bcp(); |
|
274 |
} |
|
275 |
||
276 |
void interpretedVFrame::set_bcp(u_char* bcp) { |
|
277 |
fr().interpreter_frame_set_bcp(bcp); |
|
278 |
} |
|
279 |
||
280 |
intptr_t* interpretedVFrame::locals_addr_at(int offset) const { |
|
281 |
assert(fr().is_interpreted_frame(), "frame should be an interpreted frame"); |
|
282 |
return fr().interpreter_frame_local_at(offset); |
|
283 |
} |
|
284 |
||
285 |
||
286 |
GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const { |
|
287 |
GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5); |
|
288 |
for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin())); |
|
289 |
current >= fr().interpreter_frame_monitor_end(); |
|
290 |
current = fr().previous_monitor_in_interpreter_frame(current)) { |
|
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
291 |
result->push(new MonitorInfo(current->obj(), current->lock(), false, false)); |
1 | 292 |
} |
293 |
return result; |
|
294 |
} |
|
295 |
||
296 |
int interpretedVFrame::bci() const { |
|
297 |
return method()->bci_from(bcp()); |
|
298 |
} |
|
299 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
300 |
Method* interpretedVFrame::method() const { |
1 | 301 |
return fr().interpreter_frame_method(); |
302 |
} |
|
303 |
||
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
304 |
static StackValue* create_stack_value_from_oop_map(const InterpreterOopMap& oop_mask, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
305 |
int index, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
306 |
const intptr_t* const addr) { |
25475
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
307 |
|
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
308 |
assert(index >= 0 && |
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
309 |
index < oop_mask.number_of_entries(), "invariant"); |
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
310 |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
311 |
// categorize using oop_mask |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
312 |
if (oop_mask.is_oop(index)) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
313 |
// reference (oop) "r" |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
38133
diff
changeset
|
314 |
Handle h(Thread::current(), addr != NULL ? (*(oop*)addr) : (oop)NULL); |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
315 |
return new StackValue(h); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
316 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
317 |
// value (integer) "v" |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
318 |
return new StackValue(addr != NULL ? *addr : 0); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
319 |
} |
1 | 320 |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
321 |
static bool is_in_expression_stack(const frame& fr, const intptr_t* const addr) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
322 |
assert(addr != NULL, "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
323 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
324 |
// Ensure to be 'inside' the expresion stack (i.e., addr >= sp for Intel). |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
325 |
// In case of exceptions, the expression stack is invalid and the sp |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
326 |
// will be reset to express this condition. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
327 |
if (frame::interpreter_frame_expression_stack_direction() > 0) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
328 |
return addr <= fr.interpreter_frame_tos_address(); |
1 | 329 |
} |
330 |
||
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
331 |
return addr >= fr.interpreter_frame_tos_address(); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
332 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
333 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
334 |
static void stack_locals(StackValueCollection* result, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
335 |
int length, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
336 |
const InterpreterOopMap& oop_mask, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
337 |
const frame& fr) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
338 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
339 |
assert(result != NULL, "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
340 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
341 |
for (int i = 0; i < length; ++i) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
342 |
const intptr_t* const addr = fr.interpreter_frame_local_at(i); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
343 |
assert(addr != NULL, "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
344 |
assert(addr >= fr.sp(), "must be inside the frame"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
345 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
346 |
StackValue* const sv = create_stack_value_from_oop_map(oop_mask, i, addr); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
347 |
assert(sv != NULL, "sanity check"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
348 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
349 |
result->add(sv); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
350 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
351 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
352 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
353 |
static void stack_expressions(StackValueCollection* result, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
354 |
int length, |
25475
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
355 |
int max_locals, |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
356 |
const InterpreterOopMap& oop_mask, |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
357 |
const frame& fr) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
358 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
359 |
assert(result != NULL, "invariant"); |
1 | 360 |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
361 |
for (int i = 0; i < length; ++i) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
362 |
const intptr_t* addr = fr.interpreter_frame_expression_stack_at(i); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
363 |
assert(addr != NULL, "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
364 |
if (!is_in_expression_stack(fr, addr)) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
365 |
// Need to ensure no bogus escapes. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
366 |
addr = NULL; |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
367 |
} |
25475
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
368 |
|
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
369 |
StackValue* const sv = create_stack_value_from_oop_map(oop_mask, |
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
370 |
i + max_locals, |
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
371 |
addr); |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
372 |
assert(sv != NULL, "sanity check"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
373 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
374 |
result->add(sv); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
375 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
376 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
377 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
378 |
StackValueCollection* interpretedVFrame::locals() const { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
379 |
return stack_data(false); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
380 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
381 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
382 |
StackValueCollection* interpretedVFrame::expressions() const { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
383 |
return stack_data(true); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
384 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
385 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
386 |
/* |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
387 |
* Worker routine for fetching references and/or values |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
388 |
* for a particular bci in the interpretedVFrame. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
389 |
* |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
390 |
* Returns data for either "locals" or "expressions", |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
391 |
* using bci relative oop_map (oop_mask) information. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
392 |
* |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
393 |
* @param expressions bool switch controlling what data to return |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
394 |
(false == locals / true == expression) |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
395 |
* |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
396 |
*/ |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
397 |
StackValueCollection* interpretedVFrame::stack_data(bool expressions) const { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
398 |
|
5419 | 399 |
InterpreterOopMap oop_mask; |
46996 | 400 |
method()->mask_for(bci(), &oop_mask); |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
401 |
const int mask_len = oop_mask.number_of_entries(); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
402 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
403 |
// If the method is native, method()->max_locals() is not telling the truth. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
404 |
// For our purposes, max locals instead equals the size of parameters. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
405 |
const int max_locals = method()->is_native() ? |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
406 |
method()->size_of_parameters() : method()->max_locals(); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
407 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
408 |
assert(mask_len >= max_locals, "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
409 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
410 |
const int length = expressions ? mask_len - max_locals : max_locals; |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
411 |
assert(length >= 0, "invariant"); |
1 | 412 |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
413 |
StackValueCollection* const result = new StackValueCollection(length); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
414 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
415 |
if (0 == length) { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
416 |
return result; |
1 | 417 |
} |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
418 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
419 |
if (expressions) { |
25475
6adf1750b4f4
8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents:
25473
diff
changeset
|
420 |
stack_expressions(result, length, max_locals, oop_mask, fr()); |
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
421 |
} else { |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
422 |
stack_locals(result, length, oop_mask, fr()); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
423 |
} |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
424 |
|
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
425 |
assert(length == result->size(), "invariant"); |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
426 |
|
1 | 427 |
return result; |
428 |
} |
|
429 |
||
430 |
void interpretedVFrame::set_locals(StackValueCollection* values) const { |
|
431 |
if (values == NULL || values->size() == 0) return; |
|
432 |
||
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
433 |
// If the method is native, max_locals is not telling the truth. |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
434 |
// maxlocals then equals the size of parameters |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
435 |
const int max_locals = method()->is_native() ? |
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
436 |
method()->size_of_parameters() : method()->max_locals(); |
1 | 437 |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
438 |
assert(max_locals == values->size(), "Mismatch between actual stack format and supplied data"); |
1 | 439 |
|
440 |
// handle locals |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
441 |
for (int i = 0; i < max_locals; i++) { |
1 | 442 |
// Find stack location |
443 |
intptr_t *addr = locals_addr_at(i); |
|
444 |
||
445 |
// Depending on oop/int put it in the right package |
|
25473
185aff4215a4
8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents:
25057
diff
changeset
|
446 |
const StackValue* const sv = values->at(i); |
1 | 447 |
assert(sv != NULL, "sanity check"); |
448 |
if (sv->type() == T_OBJECT) { |
|
449 |
*(oop *) addr = (sv->get_obj())(); |
|
450 |
} else { // integer |
|
451 |
*addr = sv->get_int(); |
|
452 |
} |
|
453 |
} |
|
454 |
} |
|
455 |
||
456 |
// ------------- cChunk -------------- |
|
457 |
||
458 |
entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) |
|
459 |
: externalVFrame(fr, reg_map, thread) {} |
|
460 |
||
43980
792a70d867f4
8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents:
38133
diff
changeset
|
461 |
#ifdef ASSERT |
792a70d867f4
8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents:
38133
diff
changeset
|
462 |
void vframeStreamCommon::found_bad_method_frame() const { |
1 | 463 |
// 6379830 Cut point for an assertion that occasionally fires when |
464 |
// we are using the performance analyzer. |
|
465 |
// Disable this assert when testing the analyzer with fastdebug. |
|
466 |
// -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number) |
|
43980
792a70d867f4
8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents:
38133
diff
changeset
|
467 |
fatal("invalid bci or invalid scope desc"); |
1 | 468 |
} |
43980
792a70d867f4
8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents:
38133
diff
changeset
|
469 |
#endif |
1 | 470 |
|
471 |
// top-frame will be skipped |
|
472 |
vframeStream::vframeStream(JavaThread* thread, frame top_frame, |
|
473 |
bool stop_at_java_call_stub) : vframeStreamCommon(thread) { |
|
474 |
_stop_at_java_call_stub = stop_at_java_call_stub; |
|
475 |
||
476 |
// skip top frame, as it may not be at safepoint |
|
477 |
_frame = top_frame.sender(&_reg_map); |
|
478 |
while (!fill_from_frame()) { |
|
479 |
_frame = _frame.sender(&_reg_map); |
|
480 |
} |
|
481 |
} |
|
482 |
||
483 |
||
484 |
// Step back n frames, skip any pseudo frames in between. |
|
485 |
// This function is used in Class.forName, Class.newInstance, Method.Invoke, |
|
486 |
// AccessController.doPrivileged. |
|
487 |
void vframeStreamCommon::security_get_caller_frame(int depth) { |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31970
diff
changeset
|
488 |
assert(depth >= 0, "invalid depth: %d", depth); |
16617
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
489 |
for (int n = 0; !at_end(); security_next()) { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
490 |
if (!method()->is_ignored_by_security_stack_walk()) { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
491 |
if (n == depth) { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
492 |
// We have reached the desired depth; return. |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
493 |
return; |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
494 |
} |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
495 |
n++; // this is a non-skipped frame; count it against the depth |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
496 |
} |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
497 |
} |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
498 |
// NOTE: At this point there were not enough frames on the stack |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
499 |
// to walk to depth. Callers of this method have to check for at_end. |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
500 |
} |
1 | 501 |
|
16617
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
502 |
|
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
503 |
void vframeStreamCommon::security_next() { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
504 |
if (method()->is_prefixed_native()) { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
505 |
skip_prefixed_method_and_wrappers(); // calls next() |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
506 |
} else { |
6235d2c7549f
7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents:
14488
diff
changeset
|
507 |
next(); |
1 | 508 |
} |
509 |
} |
|
510 |
||
511 |
||
512 |
void vframeStreamCommon::skip_prefixed_method_and_wrappers() { |
|
513 |
ResourceMark rm; |
|
514 |
HandleMark hm; |
|
515 |
||
516 |
int method_prefix_count = 0; |
|
517 |
char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
518 |
Klass* prefixed_klass = method()->method_holder(); |
1 | 519 |
const char* prefixed_name = method()->name()->as_C_string(); |
520 |
size_t prefixed_name_len = strlen(prefixed_name); |
|
521 |
int prefix_index = method_prefix_count-1; |
|
522 |
||
523 |
while (!at_end()) { |
|
524 |
next(); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46327
diff
changeset
|
525 |
if (method()->method_holder() != prefixed_klass) { |
1 | 526 |
break; // classes don't match, can't be a wrapper |
527 |
} |
|
528 |
const char* name = method()->name()->as_C_string(); |
|
529 |
size_t name_len = strlen(name); |
|
530 |
size_t prefix_len = prefixed_name_len - name_len; |
|
531 |
if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) { |
|
532 |
break; // prefixed name isn't prefixed version of method name, can't be a wrapper |
|
533 |
} |
|
534 |
for (; prefix_index >= 0; --prefix_index) { |
|
535 |
const char* possible_prefix = method_prefixes[prefix_index]; |
|
536 |
size_t possible_prefix_len = strlen(possible_prefix); |
|
537 |
if (possible_prefix_len == prefix_len && |
|
538 |
strncmp(possible_prefix, prefixed_name, prefix_len) == 0) { |
|
539 |
break; // matching prefix found |
|
540 |
} |
|
541 |
} |
|
542 |
if (prefix_index < 0) { |
|
543 |
break; // didn't find the prefix, can't be a wrapper |
|
544 |
} |
|
545 |
prefixed_name = name; |
|
546 |
prefixed_name_len = name_len; |
|
547 |
} |
|
548 |
} |
|
549 |
||
550 |
||
551 |
void vframeStreamCommon::skip_reflection_related_frames() { |
|
552 |
while (!at_end() && |
|
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13728
diff
changeset
|
553 |
(method()->method_holder()->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass()) || |
25057 | 554 |
method()->method_holder()->is_subclass_of(SystemDictionary::reflect_ConstructorAccessorImpl_klass()))) { |
1 | 555 |
next(); |
556 |
} |
|
557 |
} |
|
558 |
||
559 |
||
560 |
#ifndef PRODUCT |
|
561 |
void vframe::print() { |
|
562 |
if (WizardMode) _fr.print_value_on(tty,NULL); |
|
563 |
} |
|
564 |
||
565 |
||
566 |
void vframe::print_value() const { |
|
567 |
((vframe*)this)->print(); |
|
568 |
} |
|
569 |
||
570 |
||
571 |
void entryVFrame::print_value() const { |
|
572 |
((entryVFrame*)this)->print(); |
|
573 |
} |
|
574 |
||
575 |
void entryVFrame::print() { |
|
576 |
vframe::print(); |
|
577 |
tty->print_cr("C Chunk inbetween Java"); |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
578 |
tty->print_cr("C link " INTPTR_FORMAT, p2i(_fr.link())); |
1 | 579 |
} |
580 |
||
581 |
||
582 |
// ------------- javaVFrame -------------- |
|
583 |
||
584 |
static void print_stack_values(const char* title, StackValueCollection* values) { |
|
585 |
if (values->is_empty()) return; |
|
586 |
tty->print_cr("\t%s:", title); |
|
587 |
values->print(); |
|
588 |
} |
|
589 |
||
590 |
||
591 |
void javaVFrame::print() { |
|
592 |
ResourceMark rm; |
|
593 |
vframe::print(); |
|
594 |
tty->print("\t"); |
|
595 |
method()->print_value(); |
|
596 |
tty->cr(); |
|
597 |
tty->print_cr("\tbci: %d", bci()); |
|
598 |
||
599 |
print_stack_values("locals", locals()); |
|
600 |
print_stack_values("expressions", expressions()); |
|
601 |
||
602 |
GrowableArray<MonitorInfo*>* list = monitors(); |
|
603 |
if (list->is_empty()) return; |
|
604 |
tty->print_cr("\tmonitor list:"); |
|
605 |
for (int index = (list->length()-1); index >= 0; index--) { |
|
606 |
MonitorInfo* monitor = list->at(index); |
|
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
607 |
tty->print("\t obj\t"); |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
608 |
if (monitor->owner_is_scalar_replaced()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
609 |
Klass* k = java_lang_Class::as_Klass(monitor->owner_klass()); |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
610 |
tty->print("( is scalar replaced %s)", k->external_name()); |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
611 |
} else if (monitor->owner() == NULL) { |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
612 |
tty->print("( null )"); |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
613 |
} else { |
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
614 |
monitor->owner()->print_value(); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
615 |
tty->print("(owner=" INTPTR_FORMAT ")", p2i(monitor->owner())); |
3171
aa289b22b577
6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents:
2880
diff
changeset
|
616 |
} |
29086
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
617 |
if (monitor->eliminated()) { |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
618 |
if(is_compiled_frame()) { |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
619 |
tty->print(" ( lock is eliminated in compiled frame )"); |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
620 |
} else { |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
621 |
tty->print(" ( lock is eliminated, frame not compiled )"); |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
622 |
} |
74100114a95a
8069412: Locks need better debug-printing support
drchase
parents:
25475
diff
changeset
|
623 |
} |
1 | 624 |
tty->cr(); |
625 |
tty->print("\t "); |
|
626 |
monitor->lock()->print_on(tty); |
|
627 |
tty->cr(); |
|
628 |
} |
|
629 |
} |
|
630 |
||
631 |
||
632 |
void javaVFrame::print_value() const { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
633 |
Method* m = method(); |
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13728
diff
changeset
|
634 |
InstanceKlass* k = m->method_holder(); |
1 | 635 |
tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")", |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
636 |
p2i(_fr.sp()), p2i(_fr.unextended_sp()), p2i(_fr.fp()), p2i(_fr.pc())); |
14488 | 637 |
tty->print("%s.%s", k->internal_name(), m->name()->as_C_string()); |
1 | 638 |
|
639 |
if (!m->is_native()) { |
|
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13728
diff
changeset
|
640 |
Symbol* source_name = k->source_file_name(); |
1 | 641 |
int line_number = m->line_number_from_bci(bci()); |
642 |
if (source_name != NULL && (line_number != -1)) { |
|
643 |
tty->print("(%s:%d)", source_name->as_C_string(), line_number); |
|
644 |
} |
|
645 |
} else { |
|
646 |
tty->print("(Native Method)"); |
|
647 |
} |
|
648 |
// Check frame size and print warning if it looks suspiciously large |
|
649 |
if (fr().sp() != NULL) { |
|
2880
c2974244a496
6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents:
670
diff
changeset
|
650 |
RegisterMap map = *register_map(); |
c2974244a496
6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents:
670
diff
changeset
|
651 |
uint size = fr().frame_size(&map); |
1 | 652 |
#ifdef _LP64 |
653 |
if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size); |
|
654 |
#else |
|
655 |
if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size); |
|
656 |
#endif |
|
657 |
} |
|
658 |
} |
|
659 |
||
660 |
||
661 |
bool javaVFrame::structural_compare(javaVFrame* other) { |
|
662 |
// Check static part |
|
663 |
if (method() != other->method()) return false; |
|
664 |
if (bci() != other->bci()) return false; |
|
665 |
||
666 |
// Check locals |
|
667 |
StackValueCollection *locs = locals(); |
|
668 |
StackValueCollection *other_locs = other->locals(); |
|
669 |
assert(locs->size() == other_locs->size(), "sanity check"); |
|
670 |
int i; |
|
671 |
for(i = 0; i < locs->size(); i++) { |
|
672 |
// it might happen the compiler reports a conflict and |
|
673 |
// the interpreter reports a bogus int. |
|
674 |
if ( is_compiled_frame() && locs->at(i)->type() == T_CONFLICT) continue; |
|
675 |
if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue; |
|
676 |
||
677 |
if (!locs->at(i)->equal(other_locs->at(i))) |
|
678 |
return false; |
|
679 |
} |
|
680 |
||
681 |
// Check expressions |
|
682 |
StackValueCollection* exprs = expressions(); |
|
683 |
StackValueCollection* other_exprs = other->expressions(); |
|
684 |
assert(exprs->size() == other_exprs->size(), "sanity check"); |
|
685 |
for(i = 0; i < exprs->size(); i++) { |
|
686 |
if (!exprs->at(i)->equal(other_exprs->at(i))) |
|
687 |
return false; |
|
688 |
} |
|
689 |
||
690 |
return true; |
|
691 |
} |
|
692 |
||
693 |
||
694 |
void javaVFrame::print_activation(int index) const { |
|
695 |
// frame number and method |
|
696 |
tty->print("%2d - ", index); |
|
697 |
((vframe*)this)->print_value(); |
|
698 |
tty->cr(); |
|
699 |
||
700 |
if (WizardMode) { |
|
701 |
((vframe*)this)->print(); |
|
702 |
tty->cr(); |
|
703 |
} |
|
704 |
} |
|
705 |
||
706 |
||
707 |
void javaVFrame::verify() const { |
|
708 |
} |
|
709 |
||
710 |
||
711 |
void interpretedVFrame::verify() const { |
|
712 |
} |
|
713 |
||
714 |
||
715 |
// ------------- externalVFrame -------------- |
|
716 |
||
717 |
void externalVFrame::print() { |
|
718 |
_fr.print_value_on(tty,NULL); |
|
719 |
} |
|
720 |
||
721 |
||
722 |
void externalVFrame::print_value() const { |
|
723 |
((vframe*)this)->print(); |
|
724 |
} |
|
725 |
#endif // PRODUCT |