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