annotate src/share/vm/runtime/vframe.cpp @ 23071:fb260f267e87

8036913: make DeoptimizeALot dependent on number of threads Reviewed-by: kvn, shade
author iignatyev
date Sun, 02 Nov 2014 18:42:30 +0300
parents 6e8e0bf87bbe
children 7d8724b3c156
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "code/codeCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "code/debugInfoRec.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "code/nmethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "code/pcDesc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "code/scopeDesc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "interpreter/oopMapCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 #include "runtime/objectMonitor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #include "runtime/objectMonitor.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 #include "runtime/stubRoutines.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 #include "runtime/synchronizer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 #include "runtime/vframeArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
47 #include "runtime/vframe_hp.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17467
diff changeset
49 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17467
diff changeset
50
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 : _reg_map(reg_map), _thread(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 assert(fr != NULL, "must have frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _fr = *fr;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 vframe::vframe(const frame* fr, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
58 : _reg_map(thread), _thread(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 assert(fr != NULL, "must have frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _fr = *fr;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Interpreter frame
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (f->is_interpreted_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return new interpretedVFrame(f, reg_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Compiled frame
a61af66fc99e Initial load
duke
parents:
diff changeset
70 CodeBlob* cb = f->cb();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (cb != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 return new compiledVFrame(f, reg_map, thread, nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (f->is_runtime_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Skip this frame and try again.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 RegisterMap temp_map = *reg_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 frame s = f->sender(&temp_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 return new_vframe(&s, &temp_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // External frame
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return new externalVFrame(f, reg_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 vframe* vframe::sender() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 RegisterMap temp_map = *register_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 assert(is_top(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (_fr.is_entry_frame() && _fr.is_first_frame()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 frame s = _fr.real_sender(&temp_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (s.is_first_frame()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return vframe::new_vframe(&s, &temp_map, thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 vframe* vframe::top() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 vframe* vf = (vframe*) this;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 while (!vf->is_top()) vf = vf->sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 javaVFrame* vframe::java_sender() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 vframe* f = sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 while (f != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (f->is_java_frame()) return javaVFrame::cast(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 f = f->sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // ------------- javaVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(SafepointSynchronize::is_at_safepoint() || JavaThread::current() == thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
118 "must be at safepoint or it's a java frame of the current thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 GrowableArray<MonitorInfo*>* mons = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length());
a61af66fc99e Initial load
duke
parents:
diff changeset
122 if (mons->is_empty()) return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool found_first_monitor = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ObjectMonitor *pending_monitor = thread()->current_pending_monitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor();
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 1506
diff changeset
127 oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : (oop) NULL);
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 1506
diff changeset
128 oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : (oop) NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 for (int index = (mons->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 MonitorInfo* monitor = mons->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
132 if (monitor->eliminated() && is_compiled_frame()) continue; // skip eliminated monitor
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 oop obj = monitor->owner();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (obj == NULL) continue; // skip unowned monitor
a61af66fc99e Initial load
duke
parents:
diff changeset
135 //
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Skip the monitor that the thread is blocked to enter or waiting on
a61af66fc99e Initial load
duke
parents:
diff changeset
137 //
a61af66fc99e Initial load
duke
parents:
diff changeset
138 if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 found_first_monitor = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 result->append(monitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static void print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (obj.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 st->print("\t- %s <" INTPTR_FORMAT "> ", lock_state, (address)obj());
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 844
diff changeset
150 if (obj->klass() == SystemDictionary::Class_klass()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
151 Klass* target_klass = java_lang_Class::as_Klass(obj());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
152 st->print_cr("(a java.lang.Class for %s)", InstanceKlass::cast(target_klass)->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 } else {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
154 Klass* k = obj->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 st->print_cr("(a %s)", k->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // If this is the first frame, and java.lang.Object.wait(...) then print out the receiver.
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (frame_count == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if (method()->name() == vmSymbols::wait_name() &&
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6725
diff changeset
166 method()->method_holder()->name() == vmSymbols::java_lang_Object()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 StackValueCollection* locs = locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 if (!locs->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 StackValue* sv = locs->at(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (sv->type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 Handle o = locs->at(0)->get_obj();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 print_locked_object_class_name(st, o, "waiting on");
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 } else if (thread()->current_park_blocker() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 oop obj = thread()->current_park_blocker();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
177 Klass* k = obj->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
178 st->print_cr("\t- %s <" INTPTR_FORMAT "> (a %s)", "parking to wait for ", (address)obj, k->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Print out all monitors that we have locked or are trying to lock
a61af66fc99e Initial load
duke
parents:
diff changeset
184 GrowableArray<MonitorInfo*>* mons = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (!mons->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 bool found_first_monitor = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 for (int index = (mons->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 MonitorInfo* monitor = mons->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
189 if (monitor->eliminated() && is_compiled_frame()) { // Eliminated in compiled code
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
190 if (monitor->owner_is_scalar_replaced()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
191 Klass* k = java_lang_Class::as_Klass(monitor->owner_klass());
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
192 // format below for lockbits matches this one.
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
193 st->print("\t- eliminated <owner is scalar replaced> (a %s)", k->external_name());
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
194 } else {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
195 oop obj = monitor->owner();
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
196 if (obj != NULL) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
197 print_locked_object_class_name(st, obj, "eliminated");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
198 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
199 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
200 continue;
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
201 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
202 if (monitor->owner() != NULL) {
17965
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
203 // the monitor is associated with an object, i.e., it is locked
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // First, assume we have the monitor locked. If we haven't found an
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // owned monitor before and this is the first frame, then we need to
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // see if we have completed the lock or we are blocked trying to
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // acquire it - we can only be blocked if the monitor is inflated
a61af66fc99e Initial load
duke
parents:
diff changeset
209
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
210 markOop mark = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 const char *lock_state = "locked"; // assume we have the monitor locked
a61af66fc99e Initial load
duke
parents:
diff changeset
212 if (!found_first_monitor && frame_count == 0) {
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
213 mark = monitor->owner()->mark();
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
214 if (mark->has_monitor() &&
17965
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
215 ( // we have marked ourself as pending on this monitor
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
216 mark->monitor() == thread()->current_pending_monitor() ||
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
217 // we are not the owner of this monitor
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
218 !mark->monitor()->is_entered(thread())
4a1062dc52d1 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 17937
diff changeset
219 )) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
220 lock_state = "waiting to lock";
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
221 } else {
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
222 mark = NULL; // Disable printing below
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
223 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
225 print_locked_object_class_name(st, monitor->owner(), lock_state);
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
226 if (Verbose && mark != NULL) {
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
227 // match with format above, replacing "-" with " ".
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
228 st->print("\t lockbits=");
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
229 mark->print_on(st);
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
230 st->cr();
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
231 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 found_first_monitor = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // ------------- interpretedVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 u_char* interpretedVFrame::bcp() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 return fr().interpreter_frame_bcp();
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 void interpretedVFrame::set_bcp(u_char* bcp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 fr().interpreter_frame_set_bcp(bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 intptr_t* interpretedVFrame::locals_addr_at(int offset) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 assert(fr().is_interpreted_frame(), "frame should be an interpreted frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
251 return fr().interpreter_frame_local_at(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
a61af66fc99e Initial load
duke
parents:
diff changeset
258 current >= fr().interpreter_frame_monitor_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 current = fr().previous_monitor_in_interpreter_frame(current)) {
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
260 result->push(new MonitorInfo(current->obj(), current->lock(), false, false));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 int interpretedVFrame::bci() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 return method()->bci_from(bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
269 Method* interpretedVFrame::method() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return fr().interpreter_frame_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
273 static StackValue* create_stack_value_from_oop_map(const InterpreterOopMap& oop_mask,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
274 int index,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
275 const intptr_t* const addr) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
276
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
277 assert(index >= 0 &&
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
278 index < oop_mask.number_of_entries(), "invariant");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
279
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
280 // categorize using oop_mask
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
281 if (oop_mask.is_oop(index)) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
282 // reference (oop) "r"
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
283 Handle h(addr != NULL ? (*(oop*)addr) : (oop)NULL);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
284 return new StackValue(h);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
285 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
286 // value (integer) "v"
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
287 return new StackValue(addr != NULL ? *addr : 0);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
288 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
289
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
290 static bool is_in_expression_stack(const frame& fr, const intptr_t* const addr) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
291 assert(addr != NULL, "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
292
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
293 // Ensure to be 'inside' the expresion stack (i.e., addr >= sp for Intel).
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
294 // In case of exceptions, the expression stack is invalid and the sp
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
295 // will be reset to express this condition.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
296 if (frame::interpreter_frame_expression_stack_direction() > 0) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
297 return addr <= fr.interpreter_frame_tos_address();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
300 return addr >= fr.interpreter_frame_tos_address();
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
301 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
302
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
303 static void stack_locals(StackValueCollection* result,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
304 int length,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
305 const InterpreterOopMap& oop_mask,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
306 const frame& fr) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
307
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
308 assert(result != NULL, "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
309
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
310 for (int i = 0; i < length; ++i) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
311 const intptr_t* const addr = fr.interpreter_frame_local_at(i);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
312 assert(addr != NULL, "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
313 assert(addr >= fr.sp(), "must be inside the frame");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
314
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
315 StackValue* const sv = create_stack_value_from_oop_map(oop_mask, i, addr);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
316 assert(sv != NULL, "sanity check");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
317
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
318 result->add(sv);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
319 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
320 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
321
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
322 static void stack_expressions(StackValueCollection* result,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
323 int length,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
324 int max_locals,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
325 const InterpreterOopMap& oop_mask,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
326 const frame& fr) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
327
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
328 assert(result != NULL, "invariant");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
329
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
330 for (int i = 0; i < length; ++i) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
331 const intptr_t* addr = fr.interpreter_frame_expression_stack_at(i);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
332 assert(addr != NULL, "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
333 if (!is_in_expression_stack(fr, addr)) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
334 // Need to ensure no bogus escapes.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
335 addr = NULL;
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
336 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
337
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
338 StackValue* const sv = create_stack_value_from_oop_map(oop_mask,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
339 i + max_locals,
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
340 addr);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
341 assert(sv != NULL, "sanity check");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
342
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
343 result->add(sv);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
344 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
345 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
346
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
347 StackValueCollection* interpretedVFrame::locals() const {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
348 return stack_data(false);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
349 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
350
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
351 StackValueCollection* interpretedVFrame::expressions() const {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
352 return stack_data(true);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
353 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
354
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
355 /*
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
356 * Worker routine for fetching references and/or values
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
357 * for a particular bci in the interpretedVFrame.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
358 *
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
359 * Returns data for either "locals" or "expressions",
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
360 * using bci relative oop_map (oop_mask) information.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
361 *
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
362 * @param expressions bool switch controlling what data to return
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
363 (false == locals / true == expressions)
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
364 *
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
365 */
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
366 StackValueCollection* interpretedVFrame::stack_data(bool expressions) const {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
367
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 1152
diff changeset
368 InterpreterOopMap oop_mask;
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
369 // oopmap for current bci
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 1152
diff changeset
370 if (TraceDeoptimization && Verbose) {
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
371 methodHandle m_h(Thread::current(), method());
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 1152
diff changeset
372 OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
373 } else {
1506
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 1152
diff changeset
374 method()->mask_for(bci(), &oop_mask);
2338d41fbd81 6943304: remove tagged stack interpreter
twisti
parents: 1152
diff changeset
375 }
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
376
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
377 const int mask_len = oop_mask.number_of_entries();
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
378
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
379 // If the method is native, method()->max_locals() is not telling the truth.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
380 // For our purposes, max locals instead equals the size of parameters.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
381 const int max_locals = method()->is_native() ?
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
382 method()->size_of_parameters() : method()->max_locals();
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
383
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
384 assert(mask_len >= max_locals, "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
385
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
386 const int length = expressions ? mask_len - max_locals : max_locals;
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
387 assert(length >= 0, "invariant");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
388
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
389 StackValueCollection* const result = new StackValueCollection(length);
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
390
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
391 if (0 == length) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
392 return result;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
394
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
395 if (expressions) {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
396 stack_expressions(result, length, max_locals, oop_mask, fr());
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
397 } else {
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
398 stack_locals(result, length, oop_mask, fr());
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
399 }
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
400
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
401 assert(length == result->size(), "invariant");
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
402
0
a61af66fc99e Initial load
duke
parents:
diff changeset
403 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 void interpretedVFrame::set_locals(StackValueCollection* values) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 if (values == NULL || values->size() == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
408
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
409 // If the method is native, max_locals is not telling the truth.
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
410 // maxlocals then equals the size of parameters
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
411 const int max_locals = method()->is_native() ?
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
412 method()->size_of_parameters() : method()->max_locals();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
413
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
414 assert(max_locals == values->size(), "Mismatch between actual stack format and supplied data");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // handle locals
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
417 for (int i = 0; i < max_locals; i++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
419 intptr_t *addr = locals_addr_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // Depending on oop/int put it in the right package
20501
c204e2044c29 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 17965
diff changeset
422 const StackValue* const sv = values->at(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
423 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
424 if (sv->type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 *(oop *) addr = (sv->get_obj())();
a61af66fc99e Initial load
duke
parents:
diff changeset
426 } else { // integer
a61af66fc99e Initial load
duke
parents:
diff changeset
427 *addr = sv->get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
429 }
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // ------------- cChunk --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
435 : externalVFrame(fr, reg_map, thread) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 void vframeStreamCommon::found_bad_method_frame() {
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // 6379830 Cut point for an assertion that occasionally fires when
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // we are using the performance analyzer.
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Disable this assert when testing the analyzer with fastdebug.
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number)
a61af66fc99e Initial load
duke
parents:
diff changeset
443 assert(false, "invalid bci or invalid scope desc");
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // top-frame will be skipped
a61af66fc99e Initial load
duke
parents:
diff changeset
447 vframeStream::vframeStream(JavaThread* thread, frame top_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
448 bool stop_at_java_call_stub) : vframeStreamCommon(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 _stop_at_java_call_stub = stop_at_java_call_stub;
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // skip top frame, as it may not be at safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
452 _frame = top_frame.sender(&_reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 while (!fill_from_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 _frame = _frame.sender(&_reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456 }
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // Step back n frames, skip any pseudo frames in between.
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // This function is used in Class.forName, Class.newInstance, Method.Invoke,
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // AccessController.doPrivileged.
a61af66fc99e Initial load
duke
parents:
diff changeset
462 void vframeStreamCommon::security_get_caller_frame(int depth) {
8866
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
463 assert(depth >= 0, err_msg("invalid depth: %d", depth));
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
464 for (int n = 0; !at_end(); security_next()) {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
465 if (!method()->is_ignored_by_security_stack_walk()) {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
466 if (n == depth) {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
467 // We have reached the desired depth; return.
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
468 return;
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
469 }
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
470 n++; // this is a non-skipped frame; count it against the depth
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
471 }
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
472 }
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
473 // NOTE: At this point there were not enough frames on the stack
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
474 // to walk to depth. Callers of this method have to check for at_end.
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
475 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
476
8866
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
477
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
478 void vframeStreamCommon::security_next() {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
479 if (method()->is_prefixed_native()) {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
480 skip_prefixed_method_and_wrappers(); // calls next()
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
481 } else {
16885e702c88 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 6983
diff changeset
482 next();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 void vframeStreamCommon::skip_prefixed_method_and_wrappers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
488 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
489 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 int method_prefix_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
492 char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 KlassHandle prefixed_klass(method()->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
494 const char* prefixed_name = method()->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
495 size_t prefixed_name_len = strlen(prefixed_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 int prefix_index = method_prefix_count-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 while (!at_end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
500 if (method()->method_holder() != prefixed_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 break; // classes don't match, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 const char* name = method()->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
504 size_t name_len = strlen(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 size_t prefix_len = prefixed_name_len - name_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 break; // prefixed name isn't prefixed version of method name, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 for (; prefix_index >= 0; --prefix_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 const char* possible_prefix = method_prefixes[prefix_index];
a61af66fc99e Initial load
duke
parents:
diff changeset
511 size_t possible_prefix_len = strlen(possible_prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (possible_prefix_len == prefix_len &&
a61af66fc99e Initial load
duke
parents:
diff changeset
513 strncmp(possible_prefix, prefixed_name, prefix_len) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
514 break; // matching prefix found
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if (prefix_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 break; // didn't find the prefix, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520 prefixed_name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 prefixed_name_len = name_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 void vframeStreamCommon::skip_reflection_related_frames() {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 while (!at_end() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
528 (JDK_Version::is_gte_jdk14x_version() && UseNewReflection &&
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6725
diff changeset
529 (method()->method_holder()->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass()) ||
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6725
diff changeset
530 method()->method_holder()->is_subclass_of(SystemDictionary::reflect_ConstructorAccessorImpl_klass())))) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
537 void vframe::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 if (WizardMode) _fr.print_value_on(tty,NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 void vframe::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547 void entryVFrame::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 ((entryVFrame*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 void entryVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 vframe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
553 tty->print_cr("C Chunk inbetween Java");
a61af66fc99e Initial load
duke
parents:
diff changeset
554 tty->print_cr("C link " INTPTR_FORMAT, _fr.link());
a61af66fc99e Initial load
duke
parents:
diff changeset
555 }
a61af66fc99e Initial load
duke
parents:
diff changeset
556
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // ------------- javaVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 static void print_stack_values(const char* title, StackValueCollection* values) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 if (values->is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
562 tty->print_cr("\t%s:", title);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 values->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 void javaVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
569 vframe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
570 tty->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
571 method()->print_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
572 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
573 tty->print_cr("\tbci: %d", bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
574
a61af66fc99e Initial load
duke
parents:
diff changeset
575 print_stack_values("locals", locals());
a61af66fc99e Initial load
duke
parents:
diff changeset
576 print_stack_values("expressions", expressions());
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 GrowableArray<MonitorInfo*>* list = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
579 if (list->is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
580 tty->print_cr("\tmonitor list:");
a61af66fc99e Initial load
duke
parents:
diff changeset
581 for (int index = (list->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
582 MonitorInfo* monitor = list->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
583 tty->print("\t obj\t");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
584 if (monitor->owner_is_scalar_replaced()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
585 Klass* k = java_lang_Class::as_Klass(monitor->owner_klass());
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
586 tty->print("( is scalar replaced %s)", k->external_name());
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
587 } else if (monitor->owner() == NULL) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
588 tty->print("( null )");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
589 } else {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
590 monitor->owner()->print_value();
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
591 tty->print("(owner=" INTPTR_FORMAT ")", (address)monitor->owner());
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
592 }
22833
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
593 if (monitor->eliminated()) {
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
594 if(is_compiled_frame()) {
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
595 tty->print(" ( lock is eliminated in compiled frame )");
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
596 } else {
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
597 tty->print(" ( lock is eliminated, frame not compiled )");
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
598 }
6e8e0bf87bbe 8069412: Locks need better debug-printing support
drchase
parents: 20501
diff changeset
599 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
600 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
601 tty->print("\t ");
a61af66fc99e Initial load
duke
parents:
diff changeset
602 monitor->lock()->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
604 }
a61af66fc99e Initial load
duke
parents:
diff changeset
605 }
a61af66fc99e Initial load
duke
parents:
diff changeset
606
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 void javaVFrame::print_value() const {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
609 Method* m = method();
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6725
diff changeset
610 InstanceKlass* k = m->method_holder();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
611 tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")",
a61af66fc99e Initial load
duke
parents:
diff changeset
612 _fr.sp(), _fr.unextended_sp(), _fr.fp(), _fr.pc());
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
613 tty->print("%s.%s", k->internal_name(), m->name()->as_C_string());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
614
a61af66fc99e Initial load
duke
parents:
diff changeset
615 if (!m->is_native()) {
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6725
diff changeset
616 Symbol* source_name = k->source_file_name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
617 int line_number = m->line_number_from_bci(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
618 if (source_name != NULL && (line_number != -1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
619 tty->print("(%s:%d)", source_name->as_C_string(), line_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 tty->print("(Native Method)");
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // Check frame size and print warning if it looks suspiciously large
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if (fr().sp() != NULL) {
793
eacd97c88873 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 196
diff changeset
626 RegisterMap map = *register_map();
eacd97c88873 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 196
diff changeset
627 uint size = fr().frame_size(&map);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
628 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
629 if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
a61af66fc99e Initial load
duke
parents:
diff changeset
630 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
631 if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
a61af66fc99e Initial load
duke
parents:
diff changeset
632 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 bool javaVFrame::structural_compare(javaVFrame* other) {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // Check static part
a61af66fc99e Initial load
duke
parents:
diff changeset
639 if (method() != other->method()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
640 if (bci() != other->bci()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // Check locals
a61af66fc99e Initial load
duke
parents:
diff changeset
643 StackValueCollection *locs = locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
644 StackValueCollection *other_locs = other->locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
645 assert(locs->size() == other_locs->size(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
646 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
647 for(i = 0; i < locs->size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // it might happen the compiler reports a conflict and
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // the interpreter reports a bogus int.
a61af66fc99e Initial load
duke
parents:
diff changeset
650 if ( is_compiled_frame() && locs->at(i)->type() == T_CONFLICT) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
651 if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 if (!locs->at(i)->equal(other_locs->at(i)))
a61af66fc99e Initial load
duke
parents:
diff changeset
654 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // Check expressions
a61af66fc99e Initial load
duke
parents:
diff changeset
658 StackValueCollection* exprs = expressions();
a61af66fc99e Initial load
duke
parents:
diff changeset
659 StackValueCollection* other_exprs = other->expressions();
a61af66fc99e Initial load
duke
parents:
diff changeset
660 assert(exprs->size() == other_exprs->size(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
661 for(i = 0; i < exprs->size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 if (!exprs->at(i)->equal(other_exprs->at(i)))
a61af66fc99e Initial load
duke
parents:
diff changeset
663 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
667 }
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 void javaVFrame::print_activation(int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 // frame number and method
a61af66fc99e Initial load
duke
parents:
diff changeset
672 tty->print("%2d - ", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 ((vframe*)this)->print_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
674 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if (WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
678 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683 void javaVFrame::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 void interpretedVFrame::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
689
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691 // ------------- externalVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
692
a61af66fc99e Initial load
duke
parents:
diff changeset
693 void externalVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
694 _fr.print_value_on(tty,NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 void externalVFrame::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
701 #endif // PRODUCT