annotate src/share/vm/runtime/vframe.cpp @ 1152:cd37471eaecc

6914206: change way of permission checking for generated MethodHandle adapters Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler. Reviewed-by: kvn, never, jrose
author twisti
date Fri, 08 Jan 2010 11:09:46 +0100
parents 4ce7240d622c
children 2338d41fbd81
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1152
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
2 * Copyright 1997-2010 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_vframe.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
29 : _reg_map(reg_map), _thread(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 assert(fr != NULL, "must have frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
31 _fr = *fr;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 }
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 vframe::vframe(const frame* fr, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 : _reg_map(thread), _thread(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 assert(fr != NULL, "must have frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
37 _fr = *fr;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 }
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Interpreter frame
a61af66fc99e Initial load
duke
parents:
diff changeset
42 if (f->is_interpreted_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 return new interpretedVFrame(f, reg_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Compiled frame
a61af66fc99e Initial load
duke
parents:
diff changeset
47 CodeBlob* cb = f->cb();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if (cb != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 return new compiledVFrame(f, reg_map, thread, nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if (f->is_runtime_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Skip this frame and try again.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 RegisterMap temp_map = *reg_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 frame s = f->sender(&temp_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 return new_vframe(&s, &temp_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // External frame
a61af66fc99e Initial load
duke
parents:
diff changeset
63 return new externalVFrame(f, reg_map, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 vframe* vframe::sender() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 RegisterMap temp_map = *register_map();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 assert(is_top(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (_fr.is_entry_frame() && _fr.is_first_frame()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 frame s = _fr.real_sender(&temp_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (s.is_first_frame()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return vframe::new_vframe(&s, &temp_map, thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 vframe* vframe::top() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 vframe* vf = (vframe*) this;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 while (!vf->is_top()) vf = vf->sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 javaVFrame* vframe::java_sender() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 vframe* f = sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 while (f != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (f->is_java_frame()) return javaVFrame::cast(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 f = f->sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // ------------- javaVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(SafepointSynchronize::is_at_safepoint() || JavaThread::current() == thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
95 "must be at safepoint or it's a java frame of the current thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 GrowableArray<MonitorInfo*>* mons = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length());
a61af66fc99e Initial load
duke
parents:
diff changeset
99 if (mons->is_empty()) return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 bool found_first_monitor = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ObjectMonitor *pending_monitor = thread()->current_pending_monitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 for (int index = (mons->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 MonitorInfo* monitor = mons->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
109 if (monitor->eliminated() && is_compiled_frame()) continue; // skip eliminated monitor
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 oop obj = monitor->owner();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (obj == NULL) continue; // skip unowned monitor
a61af66fc99e Initial load
duke
parents:
diff changeset
112 //
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Skip the monitor that the thread is blocked to enter or waiting on
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115 if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 found_first_monitor = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 result->append(monitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static void print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (obj.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 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
127 if (obj->klass() == SystemDictionary::Class_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 klassOop target_klass = java_lang_Class::as_klassOop(obj());
a61af66fc99e Initial load
duke
parents:
diff changeset
129 st->print_cr("(a java.lang.Class for %s)", instanceKlass::cast(target_klass)->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 Klass* k = Klass::cast(obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
132 st->print_cr("(a %s)", k->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // If this is the first frame, and java.lang.Object.wait(...) then print out the receiver.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (frame_count == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 if (method()->name() == vmSymbols::wait_name() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
143 instanceKlass::cast(method()->method_holder())->name() == vmSymbols::java_lang_Object()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 StackValueCollection* locs = locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if (!locs->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 StackValue* sv = locs->at(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 if (sv->type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 Handle o = locs->at(0)->get_obj();
a61af66fc99e Initial load
duke
parents:
diff changeset
149 print_locked_object_class_name(st, o, "waiting on");
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 } else if (thread()->current_park_blocker() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 oop obj = thread()->current_park_blocker();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 Klass* k = Klass::cast(obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
155 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
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 // Print out all monitors that we have locked or are trying to lock
a61af66fc99e Initial load
duke
parents:
diff changeset
161 GrowableArray<MonitorInfo*>* mons = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (!mons->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 bool found_first_monitor = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 for (int index = (mons->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 MonitorInfo* monitor = mons->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
166 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
167 if (monitor->owner_is_scalar_replaced()) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
168 Klass* k = Klass::cast(monitor->owner_klass());
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
169 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
170 } else {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
171 oop obj = monitor->owner();
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
172 if (obj != NULL) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
173 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
174 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
175 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
176 continue;
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
177 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
178 if (monitor->owner() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // First, assume we have the monitor locked. If we haven't found an
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // owned monitor before and this is the first frame, then we need to
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // see if we have completed the lock or we are blocked trying to
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // acquire it - we can only be blocked if the monitor is inflated
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 const char *lock_state = "locked"; // assume we have the monitor locked
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (!found_first_monitor && frame_count == 0) {
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
187 markOop mark = monitor->owner()->mark();
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
188 if (mark->has_monitor() &&
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
189 mark->monitor() == thread()->current_pending_monitor()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
190 lock_state = "waiting to lock";
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
191 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 found_first_monitor = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 print_locked_object_class_name(st, monitor->owner(), lock_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // ------------- interpretedVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 u_char* interpretedVFrame::bcp() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return fr().interpreter_frame_bcp();
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void interpretedVFrame::set_bcp(u_char* bcp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 fr().interpreter_frame_set_bcp(bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 intptr_t* interpretedVFrame::locals_addr_at(int offset) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 assert(fr().is_interpreted_frame(), "frame should be an interpreted frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return fr().interpreter_frame_local_at(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
a61af66fc99e Initial load
duke
parents:
diff changeset
220 current >= fr().interpreter_frame_monitor_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
221 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
222 result->push(new MonitorInfo(current->obj(), current->lock(), false, false));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 int interpretedVFrame::bci() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 return method()->bci_from(bcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 methodOop interpretedVFrame::method() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return fr().interpreter_frame_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 StackValueCollection* interpretedVFrame::locals() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 int length = method()->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 if (method()->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // If the method is native, max_locals is not telling the truth.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // maxlocals then equals the size of parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
241 length = method()->size_of_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 StackValueCollection* result = new StackValueCollection(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Get oopmap describing oops and int for current bci
a61af66fc99e Initial load
duke
parents:
diff changeset
247 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 for(int i=0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
250 intptr_t *addr = locals_addr_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // Depending on oop/int put it in the right package
a61af66fc99e Initial load
duke
parents:
diff changeset
253 StackValue *sv;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 frame::Tag tag = fr().interpreter_frame_local_tag(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (tag == frame::TagReference) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // oop value
a61af66fc99e Initial load
duke
parents:
diff changeset
257 Handle h(*(oop *)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 sv = new StackValue(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // integer
a61af66fc99e Initial load
duke
parents:
diff changeset
261 sv = new StackValue(*addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
264 result->add(sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 InterpreterOopMap oop_mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (TraceDeoptimization && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 methodHandle m_h(thread(), method());
a61af66fc99e Initial load
duke
parents:
diff changeset
270 OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 method()->mask_for(bci(), &oop_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // handle locals
a61af66fc99e Initial load
duke
parents:
diff changeset
275 for(int i=0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
277 intptr_t *addr = locals_addr_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // Depending on oop/int put it in the right package
a61af66fc99e Initial load
duke
parents:
diff changeset
280 StackValue *sv;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 if (oop_mask.is_oop(i)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // oop value
a61af66fc99e Initial load
duke
parents:
diff changeset
283 Handle h(*(oop *)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 sv = new StackValue(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // integer
a61af66fc99e Initial load
duke
parents:
diff changeset
287 sv = new StackValue(*addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
290 result->add(sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void interpretedVFrame::set_locals(StackValueCollection* values) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if (values == NULL || values->size() == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 int length = method()->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
300 if (method()->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // If the method is native, max_locals is not telling the truth.
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // maxlocals then equals the size of parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
303 length = method()->size_of_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 assert(length == values->size(), "Mismatch between actual stack format and supplied data");
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // handle locals
a61af66fc99e Initial load
duke
parents:
diff changeset
309 for (int i = 0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
311 intptr_t *addr = locals_addr_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Depending on oop/int put it in the right package
a61af66fc99e Initial load
duke
parents:
diff changeset
314 StackValue *sv = values->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
316 if (sv->type() == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 *(oop *) addr = (sv->get_obj())();
a61af66fc99e Initial load
duke
parents:
diff changeset
318 } else { // integer
a61af66fc99e Initial load
duke
parents:
diff changeset
319 *addr = sv->get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 StackValueCollection* interpretedVFrame::expressions() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 int length = fr().interpreter_frame_expression_stack_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if (method()->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // If the method is native, there is no expression stack
a61af66fc99e Initial load
duke
parents:
diff changeset
328 length = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 int nof_locals = method()->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
332 StackValueCollection* result = new StackValueCollection(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // handle expressions
a61af66fc99e Initial load
duke
parents:
diff changeset
336 for(int i=0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
338 intptr_t *addr = fr().interpreter_frame_expression_stack_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 frame::Tag tag = fr().interpreter_frame_expression_stack_tag(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Depending on oop/int put it in the right package
a61af66fc99e Initial load
duke
parents:
diff changeset
342 StackValue *sv;
a61af66fc99e Initial load
duke
parents:
diff changeset
343 if (tag == frame::TagReference) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // oop value
a61af66fc99e Initial load
duke
parents:
diff changeset
345 Handle h(*(oop *)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 sv = new StackValue(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
349 sv = new StackValue(*addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
352 result->add(sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 InterpreterOopMap oop_mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // Get oopmap describing oops and int for current bci
a61af66fc99e Initial load
duke
parents:
diff changeset
357 if (TraceDeoptimization && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 methodHandle m_h(method());
a61af66fc99e Initial load
duke
parents:
diff changeset
359 OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 method()->mask_for(bci(), &oop_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // handle expressions
a61af66fc99e Initial load
duke
parents:
diff changeset
364 for(int i=0; i < length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Find stack location
a61af66fc99e Initial load
duke
parents:
diff changeset
366 intptr_t *addr = fr().interpreter_frame_expression_stack_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // Depending on oop/int put it in the right package
a61af66fc99e Initial load
duke
parents:
diff changeset
369 StackValue *sv;
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (oop_mask.is_oop(i + nof_locals)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // oop value
a61af66fc99e Initial load
duke
parents:
diff changeset
372 Handle h(*(oop *)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 sv = new StackValue(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // integer
a61af66fc99e Initial load
duke
parents:
diff changeset
376 sv = new StackValue(*addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378 assert(sv != NULL, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
379 result->add(sv);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
382 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // ------------- cChunk --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
389 : externalVFrame(fr, reg_map, thread) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 void vframeStreamCommon::found_bad_method_frame() {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // 6379830 Cut point for an assertion that occasionally fires when
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // we are using the performance analyzer.
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // Disable this assert when testing the analyzer with fastdebug.
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number)
a61af66fc99e Initial load
duke
parents:
diff changeset
397 assert(false, "invalid bci or invalid scope desc");
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // top-frame will be skipped
a61af66fc99e Initial load
duke
parents:
diff changeset
401 vframeStream::vframeStream(JavaThread* thread, frame top_frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
402 bool stop_at_java_call_stub) : vframeStreamCommon(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 _stop_at_java_call_stub = stop_at_java_call_stub;
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // skip top frame, as it may not be at safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
406 _frame = top_frame.sender(&_reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 while (!fill_from_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _frame = _frame.sender(&_reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // Step back n frames, skip any pseudo frames in between.
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // This function is used in Class.forName, Class.newInstance, Method.Invoke,
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // AccessController.doPrivileged.
a61af66fc99e Initial load
duke
parents:
diff changeset
416 //
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // NOTE that in JDK 1.4 this has been exposed to Java as
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // sun.reflect.Reflection.getCallerClass(), which can be inlined.
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // Inlined versions must match this routine's logic.
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // Native method prefixing logic does not need to match since
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // the method names don't match and inlining will not occur.
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // See, for example,
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // Parse::inline_native_Reflection_getCallerClass in
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // opto/library_call.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
425 void vframeStreamCommon::security_get_caller_frame(int depth) {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 bool use_new_reflection = JDK_Version::is_gte_jdk14x_version() && UseNewReflection;
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 while (!at_end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 if (Universe::reflect_invoke_cache()->is_same_method(method())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // This is Method.invoke() -- skip it
a61af66fc99e Initial load
duke
parents:
diff changeset
431 } else if (use_new_reflection &&
a61af66fc99e Initial load
duke
parents:
diff changeset
432 Klass::cast(method()->method_holder())
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 844
diff changeset
433 ->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // This is an auxilary frame -- skip it
1152
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
435 } else if (method()->is_method_handle_adapter()) {
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
436 // This is an internal adapter frame from the MethodHandleCompiler -- skip it
0
a61af66fc99e Initial load
duke
parents:
diff changeset
437 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // This is non-excluded frame, we need to count it against the depth
a61af66fc99e Initial load
duke
parents:
diff changeset
439 if (depth-- <= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // we have reached the desired depth, we are done
a61af66fc99e Initial load
duke
parents:
diff changeset
441 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (method()->is_prefixed_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 skip_prefixed_method_and_wrappers();
a61af66fc99e Initial load
duke
parents:
diff changeset
446 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 void vframeStreamCommon::skip_prefixed_method_and_wrappers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 int method_prefix_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
459 KlassHandle prefixed_klass(method()->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
460 const char* prefixed_name = method()->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
461 size_t prefixed_name_len = strlen(prefixed_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 int prefix_index = method_prefix_count-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 while (!at_end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
466 if (method()->method_holder() != prefixed_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 break; // classes don't match, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 const char* name = method()->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
470 size_t name_len = strlen(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 size_t prefix_len = prefixed_name_len - name_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
473 break; // prefixed name isn't prefixed version of method name, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475 for (; prefix_index >= 0; --prefix_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 const char* possible_prefix = method_prefixes[prefix_index];
a61af66fc99e Initial load
duke
parents:
diff changeset
477 size_t possible_prefix_len = strlen(possible_prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 if (possible_prefix_len == prefix_len &&
a61af66fc99e Initial load
duke
parents:
diff changeset
479 strncmp(possible_prefix, prefixed_name, prefix_len) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
480 break; // matching prefix found
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 if (prefix_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
484 break; // didn't find the prefix, can't be a wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486 prefixed_name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
487 prefixed_name_len = name_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void vframeStreamCommon::skip_reflection_related_frames() {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 while (!at_end() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
494 (JDK_Version::is_gte_jdk14x_version() && UseNewReflection &&
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 844
diff changeset
495 (Klass::cast(method()->method_holder())->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass()) ||
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 844
diff changeset
496 Klass::cast(method()->method_holder())->is_subclass_of(SystemDictionary::reflect_ConstructorAccessorImpl_klass())))) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
497 next();
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
503 void vframe::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if (WizardMode) _fr.print_value_on(tty,NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 void vframe::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 void entryVFrame::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
514 ((entryVFrame*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 void entryVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 vframe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
519 tty->print_cr("C Chunk inbetween Java");
a61af66fc99e Initial load
duke
parents:
diff changeset
520 tty->print_cr("C link " INTPTR_FORMAT, _fr.link());
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // ------------- javaVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 static void print_stack_values(const char* title, StackValueCollection* values) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 if (values->is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 tty->print_cr("\t%s:", title);
a61af66fc99e Initial load
duke
parents:
diff changeset
529 values->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 void javaVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 vframe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
536 tty->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
537 method()->print_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
538 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
539 tty->print_cr("\tbci: %d", bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 print_stack_values("locals", locals());
a61af66fc99e Initial load
duke
parents:
diff changeset
542 print_stack_values("expressions", expressions());
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 GrowableArray<MonitorInfo*>* list = monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
545 if (list->is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 tty->print_cr("\tmonitor list:");
a61af66fc99e Initial load
duke
parents:
diff changeset
547 for (int index = (list->length()-1); index >= 0; index--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 MonitorInfo* monitor = list->at(index);
818
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
549 tty->print("\t obj\t");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
550 if (monitor->owner_is_scalar_replaced()) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
551 Klass* k = Klass::cast(monitor->owner_klass());
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
552 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
553 } else if (monitor->owner() == NULL) {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
554 tty->print("( null )");
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
555 } else {
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
556 monitor->owner()->print_value();
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
557 tty->print("(" INTPTR_FORMAT ")", (address)monitor->owner());
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
558 }
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
559 if (monitor->eliminated() && is_compiled_frame())
b109e761e927 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 793
diff changeset
560 tty->print(" ( lock is eliminated )");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
561 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 tty->print("\t ");
a61af66fc99e Initial load
duke
parents:
diff changeset
563 monitor->lock()->print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
564 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 void javaVFrame::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 methodOop m = method();
a61af66fc99e Initial load
duke
parents:
diff changeset
571 klassOop k = m->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
572 tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")",
a61af66fc99e Initial load
duke
parents:
diff changeset
573 _fr.sp(), _fr.unextended_sp(), _fr.fp(), _fr.pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
574 tty->print("%s.%s", Klass::cast(k)->internal_name(), m->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 if (!m->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 symbolOop source_name = instanceKlass::cast(k)->source_file_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
578 int line_number = m->line_number_from_bci(bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
579 if (source_name != NULL && (line_number != -1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 tty->print("(%s:%d)", source_name->as_C_string(), line_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
582 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 tty->print("(Native Method)");
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585 // Check frame size and print warning if it looks suspiciously large
a61af66fc99e Initial load
duke
parents:
diff changeset
586 if (fr().sp() != NULL) {
793
eacd97c88873 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 196
diff changeset
587 RegisterMap map = *register_map();
eacd97c88873 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 196
diff changeset
588 uint size = fr().frame_size(&map);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
589 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
590 if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
a61af66fc99e Initial load
duke
parents:
diff changeset
591 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
592 if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
a61af66fc99e Initial load
duke
parents:
diff changeset
593 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 bool javaVFrame::structural_compare(javaVFrame* other) {
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // Check static part
a61af66fc99e Initial load
duke
parents:
diff changeset
600 if (method() != other->method()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
601 if (bci() != other->bci()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
602
a61af66fc99e Initial load
duke
parents:
diff changeset
603 // Check locals
a61af66fc99e Initial load
duke
parents:
diff changeset
604 StackValueCollection *locs = locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
605 StackValueCollection *other_locs = other->locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
606 assert(locs->size() == other_locs->size(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
607 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
608 for(i = 0; i < locs->size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // it might happen the compiler reports a conflict and
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // the interpreter reports a bogus int.
a61af66fc99e Initial load
duke
parents:
diff changeset
611 if ( is_compiled_frame() && locs->at(i)->type() == T_CONFLICT) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
612 if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 if (!locs->at(i)->equal(other_locs->at(i)))
a61af66fc99e Initial load
duke
parents:
diff changeset
615 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // Check expressions
a61af66fc99e Initial load
duke
parents:
diff changeset
619 StackValueCollection* exprs = expressions();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 StackValueCollection* other_exprs = other->expressions();
a61af66fc99e Initial load
duke
parents:
diff changeset
621 assert(exprs->size() == other_exprs->size(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
622 for(i = 0; i < exprs->size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
623 if (!exprs->at(i)->equal(other_exprs->at(i)))
a61af66fc99e Initial load
duke
parents:
diff changeset
624 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631 void javaVFrame::print_activation(int index) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // frame number and method
a61af66fc99e Initial load
duke
parents:
diff changeset
633 tty->print("%2d - ", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
634 ((vframe*)this)->print_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
635 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 if (WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
639 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 void javaVFrame::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 void interpretedVFrame::verify() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // ------------- externalVFrame --------------
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 void externalVFrame::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 _fr.print_value_on(tty,NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
656 }
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658
a61af66fc99e Initial load
duke
parents:
diff changeset
659 void externalVFrame::print_value() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
660 ((vframe*)this)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662 #endif // PRODUCT