Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/runtime/frame.cpp
32285 views
1
/*
2
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
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
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#include "precompiled.hpp"
26
#include "compiler/abstractCompiler.hpp"
27
#include "compiler/disassembler.hpp"
28
#include "gc_interface/collectedHeap.inline.hpp"
29
#include "interpreter/interpreter.hpp"
30
#include "interpreter/oopMapCache.hpp"
31
#include "memory/resourceArea.hpp"
32
#include "memory/universe.inline.hpp"
33
#include "oops/markOop.hpp"
34
#include "oops/methodData.hpp"
35
#include "oops/method.hpp"
36
#include "oops/oop.inline.hpp"
37
#include "oops/oop.inline2.hpp"
38
#include "prims/methodHandles.hpp"
39
#include "runtime/frame.inline.hpp"
40
#include "runtime/handles.inline.hpp"
41
#include "runtime/javaCalls.hpp"
42
#include "runtime/monitorChunk.hpp"
43
#include "runtime/sharedRuntime.hpp"
44
#include "runtime/signature.hpp"
45
#include "runtime/stubCodeGenerator.hpp"
46
#include "runtime/stubRoutines.hpp"
47
#include "utilities/decoder.hpp"
48
49
#ifdef TARGET_ARCH_x86
50
# include "nativeInst_x86.hpp"
51
#endif
52
#ifdef TARGET_ARCH_aarch32
53
# include "nativeInst_aarch32.hpp"
54
#endif
55
#ifdef TARGET_ARCH_aarch64
56
# include "nativeInst_aarch64.hpp"
57
#endif
58
#ifdef TARGET_ARCH_sparc
59
# include "nativeInst_sparc.hpp"
60
#endif
61
#ifdef TARGET_ARCH_zero
62
# include "nativeInst_zero.hpp"
63
#endif
64
#ifdef TARGET_ARCH_arm
65
# include "nativeInst_arm.hpp"
66
#endif
67
#ifdef TARGET_ARCH_ppc
68
# include "nativeInst_ppc.hpp"
69
#endif
70
71
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
72
73
RegisterMap::RegisterMap(JavaThread *thread, bool update_map) {
74
_thread = thread;
75
_update_map = update_map;
76
clear();
77
debug_only(_update_for_id = NULL;)
78
#ifndef PRODUCT
79
for (int i = 0; i < reg_count ; i++ ) _location[i] = NULL;
80
#endif /* PRODUCT */
81
}
82
83
RegisterMap::RegisterMap(const RegisterMap* map) {
84
assert(map != this, "bad initialization parameter");
85
assert(map != NULL, "RegisterMap must be present");
86
_thread = map->thread();
87
_update_map = map->update_map();
88
_include_argument_oops = map->include_argument_oops();
89
debug_only(_update_for_id = map->_update_for_id;)
90
pd_initialize_from(map);
91
if (update_map()) {
92
for(int i = 0; i < location_valid_size; i++) {
93
LocationValidType bits = !update_map() ? 0 : map->_location_valid[i];
94
_location_valid[i] = bits;
95
// for whichever bits are set, pull in the corresponding map->_location
96
int j = i*location_valid_type_size;
97
while (bits != 0) {
98
if ((bits & 1) != 0) {
99
assert(0 <= j && j < reg_count, "range check");
100
_location[j] = map->_location[j];
101
}
102
bits >>= 1;
103
j += 1;
104
}
105
}
106
}
107
}
108
109
void RegisterMap::clear() {
110
set_include_argument_oops(true);
111
if (_update_map) {
112
for(int i = 0; i < location_valid_size; i++) {
113
_location_valid[i] = 0;
114
}
115
pd_clear();
116
} else {
117
pd_initialize();
118
}
119
}
120
121
#ifndef PRODUCT
122
123
void RegisterMap::print_on(outputStream* st) const {
124
st->print_cr("Register map");
125
for(int i = 0; i < reg_count; i++) {
126
127
VMReg r = VMRegImpl::as_VMReg(i);
128
intptr_t* src = (intptr_t*) location(r);
129
if (src != NULL) {
130
131
r->print_on(st);
132
st->print(" [" INTPTR_FORMAT "] = ", src);
133
if (((uintptr_t)src & (sizeof(*src)-1)) != 0) {
134
st->print_cr("<misaligned>");
135
} else {
136
st->print_cr(INTPTR_FORMAT, *src);
137
}
138
}
139
}
140
}
141
142
void RegisterMap::print() const {
143
print_on(tty);
144
}
145
146
#endif
147
// This returns the pc that if you were in the debugger you'd see. Not
148
// the idealized value in the frame object. This undoes the magic conversion
149
// that happens for deoptimized frames. In addition it makes the value the
150
// hardware would want to see in the native frame. The only user (at this point)
151
// is deoptimization. It likely no one else should ever use it.
152
153
address frame::raw_pc() const {
154
if (is_deoptimized_frame()) {
155
nmethod* nm = cb()->as_nmethod_or_null();
156
if (nm->is_method_handle_return(pc()))
157
return nm->deopt_mh_handler_begin() - pc_return_offset;
158
else
159
return nm->deopt_handler_begin() - pc_return_offset;
160
} else {
161
return (pc() - pc_return_offset);
162
}
163
}
164
165
// Change the pc in a frame object. This does not change the actual pc in
166
// actual frame. To do that use patch_pc.
167
//
168
void frame::set_pc(address newpc ) {
169
#ifdef ASSERT
170
if (_cb != NULL && _cb->is_nmethod()) {
171
assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant violation");
172
}
173
#endif // ASSERT
174
175
// Unsafe to use the is_deoptimzed tester after changing pc
176
_deopt_state = unknown;
177
_pc = newpc;
178
_cb = CodeCache::find_blob_unsafe(_pc);
179
180
}
181
182
// type testers
183
bool frame::is_ignored_frame() const {
184
return false; // FIXME: some LambdaForm frames should be ignored
185
}
186
bool frame::is_deoptimized_frame() const {
187
assert(_deopt_state != unknown, "not answerable");
188
return _deopt_state == is_deoptimized;
189
}
190
191
bool frame::is_native_frame() const {
192
return (_cb != NULL &&
193
_cb->is_nmethod() &&
194
((nmethod*)_cb)->is_native_method());
195
}
196
197
bool frame::is_java_frame() const {
198
if (is_interpreted_frame()) return true;
199
if (is_compiled_frame()) return true;
200
return false;
201
}
202
203
204
bool frame::is_compiled_frame() const {
205
if (_cb != NULL &&
206
_cb->is_nmethod() &&
207
((nmethod*)_cb)->is_java_method()) {
208
return true;
209
}
210
return false;
211
}
212
213
214
bool frame::is_runtime_frame() const {
215
return (_cb != NULL && _cb->is_runtime_stub());
216
}
217
218
bool frame::is_safepoint_blob_frame() const {
219
return (_cb != NULL && _cb->is_safepoint_stub());
220
}
221
222
// testers
223
224
bool frame::is_first_java_frame() const {
225
RegisterMap map(JavaThread::current(), false); // No update
226
frame s;
227
for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map));
228
return s.is_first_frame();
229
}
230
231
232
bool frame::entry_frame_is_first() const {
233
return entry_frame_call_wrapper()->is_first_frame();
234
}
235
236
JavaCallWrapper* frame::entry_frame_call_wrapper_if_safe(JavaThread* thread) const {
237
JavaCallWrapper** jcw = entry_frame_call_wrapper_addr();
238
address addr = (address) jcw;
239
240
// addr must be within the usable part of the stack
241
if (thread->is_in_usable_stack(addr)) {
242
return *jcw;
243
}
244
245
return NULL;
246
}
247
248
bool frame::is_entry_frame_valid(JavaThread* thread) const {
249
// Validate the JavaCallWrapper an entry frame must have
250
address jcw = (address)entry_frame_call_wrapper();
251
bool jcw_safe = (jcw < thread->stack_base()) && (jcw > (address)fp()); // less than stack base
252
if (!jcw_safe) {
253
return false;
254
}
255
256
// Validate sp saved in the java frame anchor
257
JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
258
return (jfa->last_Java_sp() > sp());
259
}
260
261
bool frame::should_be_deoptimized() const {
262
if (_deopt_state == is_deoptimized ||
263
!is_compiled_frame() ) return false;
264
assert(_cb != NULL && _cb->is_nmethod(), "must be an nmethod");
265
nmethod* nm = (nmethod *)_cb;
266
if (TraceDependencies) {
267
tty->print("checking (%s) ", nm->is_marked_for_deoptimization() ? "true" : "false");
268
nm->print_value_on(tty);
269
tty->cr();
270
}
271
272
if( !nm->is_marked_for_deoptimization() )
273
return false;
274
275
// If at the return point, then the frame has already been popped, and
276
// only the return needs to be executed. Don't deoptimize here.
277
return !nm->is_at_poll_return(pc());
278
}
279
280
bool frame::can_be_deoptimized() const {
281
if (!is_compiled_frame()) return false;
282
nmethod* nm = (nmethod*)_cb;
283
284
if( !nm->can_be_deoptimized() )
285
return false;
286
287
return !nm->is_at_poll_return(pc());
288
}
289
290
void frame::deoptimize(JavaThread* thread) {
291
// Schedule deoptimization of an nmethod activation with this frame.
292
assert(_cb != NULL && _cb->is_nmethod(), "must be");
293
nmethod* nm = (nmethod*)_cb;
294
295
// This is a fix for register window patching race
296
if (NeedsDeoptSuspend && Thread::current() != thread) {
297
assert(SafepointSynchronize::is_at_safepoint(),
298
"patching other threads for deopt may only occur at a safepoint");
299
300
// It is possible especially with DeoptimizeALot/DeoptimizeRandom that
301
// we could see the frame again and ask for it to be deoptimized since
302
// it might move for a long time. That is harmless and we just ignore it.
303
if (id() == thread->must_deopt_id()) {
304
assert(thread->is_deopt_suspend(), "lost suspension");
305
return;
306
}
307
308
// We are at a safepoint so the target thread can only be
309
// in 4 states:
310
// blocked - no problem
311
// blocked_trans - no problem (i.e. could have woken up from blocked
312
// during a safepoint).
313
// native - register window pc patching race
314
// native_trans - momentary state
315
//
316
// We could just wait out a thread in native_trans to block.
317
// Then we'd have all the issues that the safepoint code has as to
318
// whether to spin or block. It isn't worth it. Just treat it like
319
// native and be done with it.
320
//
321
// Examine the state of the thread at the start of safepoint since
322
// threads that were in native at the start of the safepoint could
323
// come to a halt during the safepoint, changing the current value
324
// of the safepoint_state.
325
JavaThreadState state = thread->safepoint_state()->orig_thread_state();
326
if (state == _thread_in_native || state == _thread_in_native_trans) {
327
// Since we are at a safepoint the target thread will stop itself
328
// before it can return to java as long as we remain at the safepoint.
329
// Therefore we can put an additional request for the thread to stop
330
// no matter what no (like a suspend). This will cause the thread
331
// to notice it needs to do the deopt on its own once it leaves native.
332
//
333
// The only reason we must do this is because on machine with register
334
// windows we have a race with patching the return address and the
335
// window coming live as the thread returns to the Java code (but still
336
// in native mode) and then blocks. It is only this top most frame
337
// that is at risk. So in truth we could add an additional check to
338
// see if this frame is one that is at risk.
339
RegisterMap map(thread, false);
340
frame at_risk = thread->last_frame().sender(&map);
341
if (id() == at_risk.id()) {
342
thread->set_must_deopt_id(id());
343
thread->set_deopt_suspend();
344
return;
345
}
346
}
347
} // NeedsDeoptSuspend
348
349
350
// If the call site is a MethodHandle call site use the MH deopt
351
// handler.
352
address deopt = nm->is_method_handle_return(pc()) ?
353
nm->deopt_mh_handler_begin() :
354
nm->deopt_handler_begin();
355
356
// Save the original pc before we patch in the new one
357
nm->set_original_pc(this, pc());
358
patch_pc(thread, deopt);
359
360
#ifdef ASSERT
361
{
362
RegisterMap map(thread, false);
363
frame check = thread->last_frame();
364
while (id() != check.id()) {
365
check = check.sender(&map);
366
}
367
assert(check.is_deoptimized_frame(), "missed deopt");
368
}
369
#endif // ASSERT
370
}
371
372
frame frame::java_sender() const {
373
RegisterMap map(JavaThread::current(), false);
374
frame s;
375
for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map)) ;
376
guarantee(s.is_java_frame(), "tried to get caller of first java frame");
377
return s;
378
}
379
380
frame frame::real_sender(RegisterMap* map) const {
381
frame result = sender(map);
382
while (result.is_runtime_frame() ||
383
result.is_ignored_frame()) {
384
result = result.sender(map);
385
}
386
return result;
387
}
388
389
// Note: called by profiler - NOT for current thread
390
frame frame::profile_find_Java_sender_frame(JavaThread *thread) {
391
// If we don't recognize this frame, walk back up the stack until we do
392
RegisterMap map(thread, false);
393
frame first_java_frame = frame();
394
395
// Find the first Java frame on the stack starting with input frame
396
if (is_java_frame()) {
397
// top frame is compiled frame or deoptimized frame
398
first_java_frame = *this;
399
} else if (safe_for_sender(thread)) {
400
for (frame sender_frame = sender(&map);
401
sender_frame.safe_for_sender(thread) && !sender_frame.is_first_frame();
402
sender_frame = sender_frame.sender(&map)) {
403
if (sender_frame.is_java_frame()) {
404
first_java_frame = sender_frame;
405
break;
406
}
407
}
408
}
409
return first_java_frame;
410
}
411
412
// Interpreter frames
413
414
415
void frame::interpreter_frame_set_locals(intptr_t* locs) {
416
assert(is_interpreted_frame(), "Not an interpreted frame");
417
*interpreter_frame_locals_addr() = locs;
418
}
419
420
Method* frame::interpreter_frame_method() const {
421
assert(is_interpreted_frame(), "interpreted frame expected");
422
Method* m = *interpreter_frame_method_addr();
423
assert(m->is_method(), "not a Method*");
424
return m;
425
}
426
427
void frame::interpreter_frame_set_method(Method* method) {
428
assert(is_interpreted_frame(), "interpreted frame expected");
429
*interpreter_frame_method_addr() = method;
430
}
431
432
void frame::interpreter_frame_set_bcx(intptr_t bcx) {
433
assert(is_interpreted_frame(), "Not an interpreted frame");
434
if (ProfileInterpreter) {
435
bool formerly_bci = is_bci(interpreter_frame_bcx());
436
bool is_now_bci = is_bci(bcx);
437
*interpreter_frame_bcx_addr() = bcx;
438
439
intptr_t mdx = interpreter_frame_mdx();
440
441
if (mdx != 0) {
442
if (formerly_bci) {
443
if (!is_now_bci) {
444
// The bcx was just converted from bci to bcp.
445
// Convert the mdx in parallel.
446
MethodData* mdo = interpreter_frame_method()->method_data();
447
assert(mdo != NULL, "");
448
int mdi = mdx - 1; // We distinguish valid mdi from zero by adding one.
449
address mdp = mdo->di_to_dp(mdi);
450
interpreter_frame_set_mdx((intptr_t)mdp);
451
}
452
} else {
453
if (is_now_bci) {
454
// The bcx was just converted from bcp to bci.
455
// Convert the mdx in parallel.
456
MethodData* mdo = interpreter_frame_method()->method_data();
457
assert(mdo != NULL, "");
458
int mdi = mdo->dp_to_di((address)mdx);
459
interpreter_frame_set_mdx((intptr_t)mdi + 1); // distinguish valid from 0.
460
}
461
}
462
}
463
} else {
464
*interpreter_frame_bcx_addr() = bcx;
465
}
466
}
467
468
jint frame::interpreter_frame_bci() const {
469
assert(is_interpreted_frame(), "interpreted frame expected");
470
intptr_t bcx = interpreter_frame_bcx();
471
return is_bci(bcx) ? bcx : interpreter_frame_method()->bci_from((address)bcx);
472
}
473
474
void frame::interpreter_frame_set_bci(jint bci) {
475
assert(is_interpreted_frame(), "interpreted frame expected");
476
assert(!is_bci(interpreter_frame_bcx()), "should not set bci during GC");
477
interpreter_frame_set_bcx((intptr_t)interpreter_frame_method()->bcp_from(bci));
478
}
479
480
address frame::interpreter_frame_bcp() const {
481
assert(is_interpreted_frame(), "interpreted frame expected");
482
intptr_t bcx = interpreter_frame_bcx();
483
return is_bci(bcx) ? interpreter_frame_method()->bcp_from(bcx) : (address)bcx;
484
}
485
486
void frame::interpreter_frame_set_bcp(address bcp) {
487
assert(is_interpreted_frame(), "interpreted frame expected");
488
assert(!is_bci(interpreter_frame_bcx()), "should not set bcp during GC");
489
interpreter_frame_set_bcx((intptr_t)bcp);
490
}
491
492
void frame::interpreter_frame_set_mdx(intptr_t mdx) {
493
assert(is_interpreted_frame(), "Not an interpreted frame");
494
assert(ProfileInterpreter, "must be profiling interpreter");
495
*interpreter_frame_mdx_addr() = mdx;
496
}
497
498
address frame::interpreter_frame_mdp() const {
499
assert(ProfileInterpreter, "must be profiling interpreter");
500
assert(is_interpreted_frame(), "interpreted frame expected");
501
intptr_t bcx = interpreter_frame_bcx();
502
intptr_t mdx = interpreter_frame_mdx();
503
504
assert(!is_bci(bcx), "should not access mdp during GC");
505
return (address)mdx;
506
}
507
508
void frame::interpreter_frame_set_mdp(address mdp) {
509
assert(is_interpreted_frame(), "interpreted frame expected");
510
if (mdp == NULL) {
511
// Always allow the mdp to be cleared.
512
interpreter_frame_set_mdx((intptr_t)mdp);
513
}
514
intptr_t bcx = interpreter_frame_bcx();
515
assert(!is_bci(bcx), "should not set mdp during GC");
516
interpreter_frame_set_mdx((intptr_t)mdp);
517
}
518
519
BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
520
assert(is_interpreted_frame(), "Not an interpreted frame");
521
#ifdef ASSERT
522
interpreter_frame_verify_monitor(current);
523
#endif
524
BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
525
return next;
526
}
527
528
BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
529
assert(is_interpreted_frame(), "Not an interpreted frame");
530
#ifdef ASSERT
531
// // This verification needs to be checked before being enabled
532
// interpreter_frame_verify_monitor(current);
533
#endif
534
BasicObjectLock* previous = (BasicObjectLock*) (((intptr_t*) current) - interpreter_frame_monitor_size());
535
return previous;
536
}
537
538
// Interpreter locals and expression stack locations.
539
540
intptr_t* frame::interpreter_frame_local_at(int index) const {
541
const int n = Interpreter::local_offset_in_bytes(index)/wordSize;
542
return &((*interpreter_frame_locals_addr())[n]);
543
}
544
545
intptr_t* frame::interpreter_frame_expression_stack_at(jint offset) const {
546
const int i = offset * interpreter_frame_expression_stack_direction();
547
const int n = i * Interpreter::stackElementWords;
548
return &(interpreter_frame_expression_stack()[n]);
549
}
550
551
jint frame::interpreter_frame_expression_stack_size() const {
552
// Number of elements on the interpreter expression stack
553
// Callers should span by stackElementWords
554
int element_size = Interpreter::stackElementWords;
555
size_t stack_size = 0;
556
if (frame::interpreter_frame_expression_stack_direction() < 0) {
557
stack_size = (interpreter_frame_expression_stack() -
558
interpreter_frame_tos_address() + 1)/element_size;
559
} else {
560
stack_size = (interpreter_frame_tos_address() -
561
interpreter_frame_expression_stack() + 1)/element_size;
562
}
563
assert( stack_size <= (size_t)max_jint, "stack size too big");
564
return ((jint)stack_size);
565
}
566
567
568
// (frame::interpreter_frame_sender_sp accessor is in frame_<arch>.cpp)
569
570
const char* frame::print_name() const {
571
if (is_native_frame()) return "Native";
572
if (is_interpreted_frame()) return "Interpreted";
573
if (is_compiled_frame()) {
574
if (is_deoptimized_frame()) return "Deoptimized";
575
return "Compiled";
576
}
577
if (sp() == NULL) return "Empty";
578
return "C";
579
}
580
581
void frame::print_value_on(outputStream* st, JavaThread *thread) const {
582
NOT_PRODUCT(address begin = pc()-40;)
583
NOT_PRODUCT(address end = NULL;)
584
585
st->print("%s frame (sp=" INTPTR_FORMAT " unextended sp=" INTPTR_FORMAT, print_name(), sp(), unextended_sp());
586
if (sp() != NULL)
587
st->print(", fp=" INTPTR_FORMAT ", real_fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT, fp(), real_fp(), pc());
588
589
if (StubRoutines::contains(pc())) {
590
st->print_cr(")");
591
st->print("(");
592
StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
593
st->print("~Stub::%s", desc->name());
594
NOT_PRODUCT(begin = desc->begin(); end = desc->end();)
595
} else if (Interpreter::contains(pc())) {
596
st->print_cr(")");
597
st->print("(");
598
InterpreterCodelet* desc = Interpreter::codelet_containing(pc());
599
if (desc != NULL) {
600
st->print("~");
601
desc->print_on(st);
602
NOT_PRODUCT(begin = desc->code_begin(); end = desc->code_end();)
603
} else {
604
st->print("~interpreter");
605
}
606
}
607
st->print_cr(")");
608
609
if (_cb != NULL) {
610
st->print(" ");
611
_cb->print_value_on(st);
612
st->cr();
613
#ifndef PRODUCT
614
if (end == NULL) {
615
begin = _cb->code_begin();
616
end = _cb->code_end();
617
}
618
#endif
619
}
620
NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);)
621
}
622
623
624
void frame::print_on(outputStream* st) const {
625
print_value_on(st,NULL);
626
if (is_interpreted_frame()) {
627
interpreter_frame_print_on(st);
628
}
629
}
630
631
632
void frame::interpreter_frame_print_on(outputStream* st) const {
633
#ifndef PRODUCT
634
assert(is_interpreted_frame(), "Not an interpreted frame");
635
jint i;
636
for (i = 0; i < interpreter_frame_method()->max_locals(); i++ ) {
637
intptr_t x = *interpreter_frame_local_at(i);
638
st->print(" - local [" INTPTR_FORMAT "]", x);
639
st->fill_to(23);
640
st->print_cr("; #%d", i);
641
}
642
for (i = interpreter_frame_expression_stack_size() - 1; i >= 0; --i ) {
643
intptr_t x = *interpreter_frame_expression_stack_at(i);
644
st->print(" - stack [" INTPTR_FORMAT "]", x);
645
st->fill_to(23);
646
st->print_cr("; #%d", i);
647
}
648
// locks for synchronization
649
for (BasicObjectLock* current = interpreter_frame_monitor_end();
650
current < interpreter_frame_monitor_begin();
651
current = next_monitor_in_interpreter_frame(current)) {
652
st->print(" - obj [");
653
current->obj()->print_value_on(st);
654
st->print_cr("]");
655
st->print(" - lock [");
656
current->lock()->print_on(st);
657
st->print_cr("]");
658
}
659
// monitor
660
st->print_cr(" - monitor[" INTPTR_FORMAT "]", interpreter_frame_monitor_begin());
661
// bcp
662
st->print(" - bcp [" INTPTR_FORMAT "]", interpreter_frame_bcp());
663
st->fill_to(23);
664
st->print_cr("; @%d", interpreter_frame_bci());
665
// locals
666
st->print_cr(" - locals [" INTPTR_FORMAT "]", interpreter_frame_local_at(0));
667
// method
668
st->print(" - method [" INTPTR_FORMAT "]", (address)interpreter_frame_method());
669
st->fill_to(23);
670
st->print("; ");
671
interpreter_frame_method()->print_name(st);
672
st->cr();
673
#endif
674
}
675
676
// Return whether the frame is in the VM or os indicating a Hotspot problem.
677
// Otherwise, it's likely a bug in the native library that the Java code calls,
678
// hopefully indicating where to submit bugs.
679
void frame::print_C_frame(outputStream* st, char* buf, int buflen, address pc) {
680
// C/C++ frame
681
bool in_vm = os::address_is_in_vm(pc);
682
st->print(in_vm ? "V" : "C");
683
684
int offset;
685
bool found;
686
687
// libname
688
found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
689
if (found) {
690
// skip directory names
691
const char *p1, *p2;
692
p1 = buf;
693
int len = (int)strlen(os::file_separator());
694
while ((p2 = strstr(p1, os::file_separator())) != NULL) p1 = p2 + len;
695
st->print(" [%s+0x%x]", p1, offset);
696
} else {
697
st->print(" " PTR_FORMAT, pc);
698
}
699
700
// function name - os::dll_address_to_function_name() may return confusing
701
// names if pc is within jvm.dll or libjvm.so, because JVM only has
702
// JVM_xxxx and a few other symbols in the dynamic symbol table. Do this
703
// only for native libraries.
704
if (!in_vm || Decoder::can_decode_C_frame_in_vm()) {
705
found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
706
707
if (found) {
708
st->print(" %s+0x%x", buf, offset);
709
}
710
}
711
}
712
713
// frame::print_on_error() is called by fatal error handler. Notice that we may
714
// crash inside this function if stack frame is corrupted. The fatal error
715
// handler can catch and handle the crash. Here we assume the frame is valid.
716
//
717
// First letter indicates type of the frame:
718
// J: Java frame (compiled)
719
// j: Java frame (interpreted)
720
// V: VM frame (C/C++)
721
// v: Other frames running VM generated code (e.g. stubs, adapters, etc.)
722
// C: C/C++ frame
723
//
724
// We don't need detailed frame type as that in frame::print_name(). "C"
725
// suggests the problem is in user lib; everything else is likely a VM bug.
726
727
void frame::print_on_error(outputStream* st, char* buf, int buflen, bool verbose) const {
728
if (_cb != NULL) {
729
if (Interpreter::contains(pc())) {
730
Method* m = this->interpreter_frame_method();
731
if (m != NULL) {
732
m->name_and_sig_as_C_string(buf, buflen);
733
st->print("j %s", buf);
734
st->print("+%d", this->interpreter_frame_bci());
735
} else {
736
st->print("j " PTR_FORMAT, pc());
737
}
738
} else if (StubRoutines::contains(pc())) {
739
StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
740
if (desc != NULL) {
741
st->print("v ~StubRoutines::%s", desc->name());
742
} else {
743
st->print("v ~StubRoutines::" PTR_FORMAT, pc());
744
}
745
} else if (_cb->is_buffer_blob()) {
746
st->print("v ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
747
} else if (_cb->is_nmethod()) {
748
nmethod* nm = (nmethod*)_cb;
749
Method* m = nm->method();
750
if (m != NULL) {
751
m->name_and_sig_as_C_string(buf, buflen);
752
st->print("J %d%s %s %s (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+0x%x]",
753
nm->compile_id(), (nm->is_osr_method() ? "%" : ""),
754
((nm->compiler() != NULL) ? nm->compiler()->name() : ""),
755
buf, m->code_size(), _pc, _cb->code_begin(), _pc - _cb->code_begin());
756
} else {
757
st->print("J " PTR_FORMAT, pc());
758
}
759
} else if (_cb->is_runtime_stub()) {
760
st->print("v ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
761
} else if (_cb->is_deoptimization_stub()) {
762
st->print("v ~DeoptimizationBlob");
763
} else if (_cb->is_exception_stub()) {
764
st->print("v ~ExceptionBlob");
765
} else if (_cb->is_safepoint_stub()) {
766
st->print("v ~SafepointBlob");
767
} else {
768
st->print("v blob " PTR_FORMAT, pc());
769
}
770
} else {
771
print_C_frame(st, buf, buflen, pc());
772
}
773
}
774
775
776
/*
777
The interpreter_frame_expression_stack_at method in the case of SPARC needs the
778
max_stack value of the method in order to compute the expression stack address.
779
It uses the Method* in order to get the max_stack value but during GC this
780
Method* value saved on the frame is changed by reverse_and_push and hence cannot
781
be used. So we save the max_stack value in the FrameClosure object and pass it
782
down to the interpreter_frame_expression_stack_at method
783
*/
784
class InterpreterFrameClosure : public OffsetClosure {
785
private:
786
frame* _fr;
787
OopClosure* _f;
788
int _max_locals;
789
int _max_stack;
790
791
public:
792
InterpreterFrameClosure(frame* fr, int max_locals, int max_stack,
793
OopClosure* f) {
794
_fr = fr;
795
_max_locals = max_locals;
796
_max_stack = max_stack;
797
_f = f;
798
}
799
800
void offset_do(int offset) {
801
oop* addr;
802
if (offset < _max_locals) {
803
addr = (oop*) _fr->interpreter_frame_local_at(offset);
804
assert((intptr_t*)addr >= _fr->sp(), "must be inside the frame");
805
_f->do_oop(addr);
806
} else {
807
addr = (oop*) _fr->interpreter_frame_expression_stack_at((offset - _max_locals));
808
// In case of exceptions, the expression stack is invalid and the esp will be reset to express
809
// this condition. Therefore, we call f only if addr is 'inside' the stack (i.e., addr >= esp for Intel).
810
bool in_stack;
811
if (frame::interpreter_frame_expression_stack_direction() > 0) {
812
in_stack = (intptr_t*)addr <= _fr->interpreter_frame_tos_address();
813
} else {
814
in_stack = (intptr_t*)addr >= _fr->interpreter_frame_tos_address();
815
}
816
if (in_stack) {
817
_f->do_oop(addr);
818
}
819
}
820
}
821
822
int max_locals() { return _max_locals; }
823
frame* fr() { return _fr; }
824
};
825
826
827
class InterpretedArgumentOopFinder: public SignatureInfo {
828
private:
829
OopClosure* _f; // Closure to invoke
830
int _offset; // TOS-relative offset, decremented with each argument
831
bool _has_receiver; // true if the callee has a receiver
832
frame* _fr;
833
834
void set(int size, BasicType type) {
835
_offset -= size;
836
if (type == T_OBJECT || type == T_ARRAY) oop_offset_do();
837
}
838
839
void oop_offset_do() {
840
oop* addr;
841
addr = (oop*)_fr->interpreter_frame_tos_at(_offset);
842
_f->do_oop(addr);
843
}
844
845
public:
846
InterpretedArgumentOopFinder(Symbol* signature, bool has_receiver, frame* fr, OopClosure* f) : SignatureInfo(signature), _has_receiver(has_receiver) {
847
// compute size of arguments
848
int args_size = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0);
849
assert(!fr->is_interpreted_frame() ||
850
args_size <= fr->interpreter_frame_expression_stack_size(),
851
"args cannot be on stack anymore");
852
// initialize InterpretedArgumentOopFinder
853
_f = f;
854
_fr = fr;
855
_offset = args_size;
856
}
857
858
void oops_do() {
859
if (_has_receiver) {
860
--_offset;
861
oop_offset_do();
862
}
863
iterate_parameters();
864
}
865
};
866
867
868
// Entry frame has following form (n arguments)
869
// +-----------+
870
// sp -> | last arg |
871
// +-----------+
872
// : ::: :
873
// +-----------+
874
// (sp+n)->| first arg|
875
// +-----------+
876
877
878
879
// visits and GC's all the arguments in entry frame
880
class EntryFrameOopFinder: public SignatureInfo {
881
private:
882
bool _is_static;
883
int _offset;
884
frame* _fr;
885
OopClosure* _f;
886
887
void set(int size, BasicType type) {
888
assert (_offset >= 0, "illegal offset");
889
if (type == T_OBJECT || type == T_ARRAY) oop_at_offset_do(_offset);
890
_offset -= size;
891
}
892
893
void oop_at_offset_do(int offset) {
894
assert (offset >= 0, "illegal offset");
895
oop* addr = (oop*) _fr->entry_frame_argument_at(offset);
896
_f->do_oop(addr);
897
}
898
899
public:
900
EntryFrameOopFinder(frame* frame, Symbol* signature, bool is_static) : SignatureInfo(signature) {
901
_f = NULL; // will be set later
902
_fr = frame;
903
_is_static = is_static;
904
_offset = ArgumentSizeComputer(signature).size() - 1; // last parameter is at index 0
905
}
906
907
void arguments_do(OopClosure* f) {
908
_f = f;
909
if (!_is_static) oop_at_offset_do(_offset+1); // do the receiver
910
iterate_parameters();
911
}
912
913
};
914
915
oop* frame::interpreter_callee_receiver_addr(Symbol* signature) {
916
ArgumentSizeComputer asc(signature);
917
int size = asc.size();
918
return (oop *)interpreter_frame_tos_at(size);
919
}
920
921
922
void frame::oops_interpreted_do(OopClosure* f, CLDClosure* cld_f,
923
const RegisterMap* map, bool query_oop_map_cache) {
924
assert(is_interpreted_frame(), "Not an interpreted frame");
925
assert(map != NULL, "map must be set");
926
Thread *thread = Thread::current();
927
methodHandle m (thread, interpreter_frame_method());
928
jint bci = interpreter_frame_bci();
929
930
assert(!Universe::heap()->is_in(m()),
931
"must be valid oop");
932
assert(m->is_method(), "checking frame value");
933
assert((m->is_native() && bci == 0) ||
934
(!m->is_native() && bci >= 0 && bci < m->code_size()),
935
"invalid bci value");
936
937
// Handle the monitor elements in the activation
938
for (
939
BasicObjectLock* current = interpreter_frame_monitor_end();
940
current < interpreter_frame_monitor_begin();
941
current = next_monitor_in_interpreter_frame(current)
942
) {
943
#ifdef ASSERT
944
interpreter_frame_verify_monitor(current);
945
#endif
946
current->oops_do(f);
947
}
948
949
// process fixed part
950
if (cld_f != NULL) {
951
// The method pointer in the frame might be the only path to the method's
952
// klass, and the klass needs to be kept alive while executing. The GCs
953
// don't trace through method pointers, so typically in similar situations
954
// the mirror or the class loader of the klass are installed as a GC root.
955
// To minimze the overhead of doing that here, we ask the GC to pass down a
956
// closure that knows how to keep klasses alive given a ClassLoaderData.
957
cld_f->do_cld(m->method_holder()->class_loader_data());
958
}
959
960
if (m->is_native() PPC32_ONLY(&& m->is_static())) {
961
f->do_oop(interpreter_frame_temp_oop_addr());
962
}
963
964
int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
965
966
Symbol* signature = NULL;
967
bool has_receiver = false;
968
969
// Process a callee's arguments if we are at a call site
970
// (i.e., if we are at an invoke bytecode)
971
// This is used sometimes for calling into the VM, not for another
972
// interpreted or compiled frame.
973
if (!m->is_native()) {
974
Bytecode_invoke call = Bytecode_invoke_check(m, bci);
975
if (call.is_valid()) {
976
signature = call.signature();
977
has_receiver = call.has_receiver();
978
if (map->include_argument_oops() &&
979
interpreter_frame_expression_stack_size() > 0) {
980
ResourceMark rm(thread); // is this right ???
981
// we are at a call site & the expression stack is not empty
982
// => process callee's arguments
983
//
984
// Note: The expression stack can be empty if an exception
985
// occurred during method resolution/execution. In all
986
// cases we empty the expression stack completely be-
987
// fore handling the exception (the exception handling
988
// code in the interpreter calls a blocking runtime
989
// routine which can cause this code to be executed).
990
// (was bug gri 7/27/98)
991
oops_interpreted_arguments_do(signature, has_receiver, f);
992
}
993
}
994
}
995
996
InterpreterFrameClosure blk(this, max_locals, m->max_stack(), f);
997
998
// process locals & expression stack
999
InterpreterOopMap mask;
1000
if (query_oop_map_cache) {
1001
m->mask_for(bci, &mask);
1002
} else {
1003
OopMapCache::compute_one_oop_map(m, bci, &mask);
1004
}
1005
mask.iterate_oop(&blk);
1006
}
1007
1008
1009
void frame::oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f) {
1010
InterpretedArgumentOopFinder finder(signature, has_receiver, this, f);
1011
finder.oops_do();
1012
}
1013
1014
void frame::oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* reg_map) {
1015
assert(_cb != NULL, "sanity check");
1016
if (_cb->oop_maps() != NULL) {
1017
OopMapSet::oops_do(this, reg_map, f);
1018
1019
// Preserve potential arguments for a callee. We handle this by dispatching
1020
// on the codeblob. For c2i, we do
1021
if (reg_map->include_argument_oops()) {
1022
_cb->preserve_callee_argument_oops(*this, reg_map, f);
1023
}
1024
}
1025
// In cases where perm gen is collected, GC will want to mark
1026
// oops referenced from nmethods active on thread stacks so as to
1027
// prevent them from being collected. However, this visit should be
1028
// restricted to certain phases of the collection only. The
1029
// closure decides how it wants nmethods to be traced.
1030
if (cf != NULL)
1031
cf->do_code_blob(_cb);
1032
}
1033
1034
class CompiledArgumentOopFinder: public SignatureInfo {
1035
protected:
1036
OopClosure* _f;
1037
int _offset; // the current offset, incremented with each argument
1038
bool _has_receiver; // true if the callee has a receiver
1039
bool _has_appendix; // true if the call has an appendix
1040
frame _fr;
1041
RegisterMap* _reg_map;
1042
int _arg_size;
1043
VMRegPair* _regs; // VMReg list of arguments
1044
1045
void set(int size, BasicType type) {
1046
if (type == T_OBJECT || type == T_ARRAY) handle_oop_offset();
1047
_offset += size;
1048
}
1049
1050
virtual void handle_oop_offset() {
1051
// Extract low order register number from register array.
1052
// In LP64-land, the high-order bits are valid but unhelpful.
1053
VMReg reg = _regs[_offset].first();
1054
oop *loc = _fr.oopmapreg_to_location(reg, _reg_map);
1055
_f->do_oop(loc);
1056
}
1057
1058
public:
1059
CompiledArgumentOopFinder(Symbol* signature, bool has_receiver, bool has_appendix, OopClosure* f, frame fr, const RegisterMap* reg_map)
1060
: SignatureInfo(signature) {
1061
1062
// initialize CompiledArgumentOopFinder
1063
_f = f;
1064
_offset = 0;
1065
_has_receiver = has_receiver;
1066
_has_appendix = has_appendix;
1067
_fr = fr;
1068
_reg_map = (RegisterMap*)reg_map;
1069
_arg_size = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0) + (has_appendix ? 1 : 0);
1070
1071
int arg_size;
1072
_regs = SharedRuntime::find_callee_arguments(signature, has_receiver, has_appendix, &arg_size);
1073
assert(arg_size == _arg_size, "wrong arg size");
1074
}
1075
1076
void oops_do() {
1077
if (_has_receiver) {
1078
handle_oop_offset();
1079
_offset++;
1080
}
1081
iterate_parameters();
1082
if (_has_appendix) {
1083
handle_oop_offset();
1084
_offset++;
1085
}
1086
}
1087
};
1088
1089
void frame::oops_compiled_arguments_do(Symbol* signature, bool has_receiver, bool has_appendix, const RegisterMap* reg_map, OopClosure* f) {
1090
ResourceMark rm;
1091
CompiledArgumentOopFinder finder(signature, has_receiver, has_appendix, f, *this, reg_map);
1092
finder.oops_do();
1093
}
1094
1095
1096
// Get receiver out of callers frame, i.e. find parameter 0 in callers
1097
// frame. Consult ADLC for where parameter 0 is to be found. Then
1098
// check local reg_map for it being a callee-save register or argument
1099
// register, both of which are saved in the local frame. If not found
1100
// there, it must be an in-stack argument of the caller.
1101
// Note: caller.sp() points to callee-arguments
1102
oop frame::retrieve_receiver(RegisterMap* reg_map) {
1103
frame caller = *this;
1104
1105
// First consult the ADLC on where it puts parameter 0 for this signature.
1106
VMReg reg = SharedRuntime::name_for_receiver();
1107
oop* oop_adr = caller.oopmapreg_to_location(reg, reg_map);
1108
if (oop_adr == NULL) {
1109
guarantee(oop_adr != NULL, "bad register save location");
1110
return NULL;
1111
}
1112
oop r = *oop_adr;
1113
assert(Universe::heap()->is_in_or_null(r), err_msg("bad receiver: " INTPTR_FORMAT " (" INTX_FORMAT ")", (void *) r, (void *) r));
1114
return r;
1115
}
1116
1117
1118
oop* frame::oopmapreg_to_location(VMReg reg, const RegisterMap* reg_map) const {
1119
if(reg->is_reg()) {
1120
// If it is passed in a register, it got spilled in the stub frame.
1121
return (oop *)reg_map->location(reg);
1122
} else {
1123
int sp_offset_in_bytes = reg->reg2stack() * VMRegImpl::stack_slot_size;
1124
return (oop*)(((address)unextended_sp()) + sp_offset_in_bytes);
1125
}
1126
}
1127
1128
BasicLock* frame::get_native_monitor() {
1129
nmethod* nm = (nmethod*)_cb;
1130
assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1131
"Should not call this unless it's a native nmethod");
1132
int byte_offset = in_bytes(nm->native_basic_lock_sp_offset());
1133
assert(byte_offset >= 0, "should not see invalid offset");
1134
return (BasicLock*) &sp()[byte_offset / wordSize];
1135
}
1136
1137
oop frame::get_native_receiver() {
1138
nmethod* nm = (nmethod*)_cb;
1139
assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1140
"Should not call this unless it's a native nmethod");
1141
int byte_offset = in_bytes(nm->native_receiver_sp_offset());
1142
assert(byte_offset >= 0, "should not see invalid offset");
1143
oop owner = ((oop*) sp())[byte_offset / wordSize];
1144
assert( Universe::heap()->is_in(owner), "bad receiver" );
1145
return owner;
1146
}
1147
1148
void frame::oops_entry_do(OopClosure* f, const RegisterMap* map) {
1149
assert(map != NULL, "map must be set");
1150
if (map->include_argument_oops()) {
1151
// must collect argument oops, as nobody else is doing it
1152
Thread *thread = Thread::current();
1153
methodHandle m (thread, entry_frame_call_wrapper()->callee_method());
1154
EntryFrameOopFinder finder(this, m->signature(), m->is_static());
1155
finder.arguments_do(f);
1156
}
1157
// Traverse the Handle Block saved in the entry frame
1158
entry_frame_call_wrapper()->oops_do(f);
1159
}
1160
1161
1162
void frame::oops_do_internal(OopClosure* f, CLDClosure* cld_f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache) {
1163
#ifndef PRODUCT
1164
// simulate GC crash here to dump java thread in error report
1165
if (CrashGCForDumpingJavaThread) {
1166
char *t = NULL;
1167
*t = 'c';
1168
}
1169
#endif
1170
if (is_interpreted_frame()) {
1171
oops_interpreted_do(f, cld_f, map, use_interpreter_oop_map_cache);
1172
} else if (is_entry_frame()) {
1173
oops_entry_do(f, map);
1174
} else if (CodeCache::contains(pc())) {
1175
oops_code_blob_do(f, cf, map);
1176
#ifdef SHARK
1177
} else if (is_fake_stub_frame()) {
1178
// nothing to do
1179
#endif // SHARK
1180
} else {
1181
ShouldNotReachHere();
1182
}
1183
}
1184
1185
void frame::nmethods_do(CodeBlobClosure* cf) {
1186
if (_cb != NULL && _cb->is_nmethod()) {
1187
cf->do_code_blob(_cb);
1188
}
1189
}
1190
1191
1192
// call f() on the interpreted Method*s in the stack.
1193
// Have to walk the entire code cache for the compiled frames Yuck.
1194
void frame::metadata_do(void f(Metadata*)) {
1195
if (_cb != NULL && Interpreter::contains(pc())) {
1196
Method* m = this->interpreter_frame_method();
1197
assert(m != NULL, "huh?");
1198
f(m);
1199
}
1200
}
1201
1202
void frame::gc_prologue() {
1203
if (is_interpreted_frame()) {
1204
// set bcx to bci to become Method* position independent during GC
1205
interpreter_frame_set_bcx(interpreter_frame_bci());
1206
}
1207
}
1208
1209
1210
void frame::gc_epilogue() {
1211
if (is_interpreted_frame()) {
1212
// set bcx back to bcp for interpreter
1213
interpreter_frame_set_bcx((intptr_t)interpreter_frame_bcp());
1214
}
1215
// call processor specific epilog function
1216
pd_gc_epilog();
1217
}
1218
1219
1220
# ifdef ENABLE_ZAP_DEAD_LOCALS
1221
1222
void frame::CheckValueClosure::do_oop(oop* p) {
1223
if (CheckOopishValues && Universe::heap()->is_in_reserved(*p)) {
1224
warning("value @ " INTPTR_FORMAT " looks oopish (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
1225
}
1226
}
1227
frame::CheckValueClosure frame::_check_value;
1228
1229
1230
void frame::CheckOopClosure::do_oop(oop* p) {
1231
if (*p != NULL && !(*p)->is_oop()) {
1232
warning("value @ " INTPTR_FORMAT " should be an oop (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
1233
}
1234
}
1235
frame::CheckOopClosure frame::_check_oop;
1236
1237
void frame::check_derived_oop(oop* base, oop* derived) {
1238
_check_oop.do_oop(base);
1239
}
1240
1241
1242
void frame::ZapDeadClosure::do_oop(oop* p) {
1243
if (TraceZapDeadLocals) tty->print_cr("zapping @ " INTPTR_FORMAT " containing " INTPTR_FORMAT, p, (address)*p);
1244
*p = cast_to_oop<intptr_t>(0xbabebabe);
1245
}
1246
frame::ZapDeadClosure frame::_zap_dead;
1247
1248
void frame::zap_dead_locals(JavaThread* thread, const RegisterMap* map) {
1249
assert(thread == Thread::current(), "need to synchronize to do this to another thread");
1250
// Tracing - part 1
1251
if (TraceZapDeadLocals) {
1252
ResourceMark rm(thread);
1253
tty->print_cr("--------------------------------------------------------------------------------");
1254
tty->print("Zapping dead locals in ");
1255
print_on(tty);
1256
tty->cr();
1257
}
1258
// Zapping
1259
if (is_entry_frame ()) zap_dead_entry_locals (thread, map);
1260
else if (is_interpreted_frame()) zap_dead_interpreted_locals(thread, map);
1261
else if (is_compiled_frame()) zap_dead_compiled_locals (thread, map);
1262
1263
else
1264
// could be is_runtime_frame
1265
// so remove error: ShouldNotReachHere();
1266
;
1267
// Tracing - part 2
1268
if (TraceZapDeadLocals) {
1269
tty->cr();
1270
}
1271
}
1272
1273
1274
void frame::zap_dead_interpreted_locals(JavaThread *thread, const RegisterMap* map) {
1275
// get current interpreter 'pc'
1276
assert(is_interpreted_frame(), "Not an interpreted frame");
1277
Method* m = interpreter_frame_method();
1278
int bci = interpreter_frame_bci();
1279
1280
int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
1281
1282
// process dynamic part
1283
InterpreterFrameClosure value_blk(this, max_locals, m->max_stack(),
1284
&_check_value);
1285
InterpreterFrameClosure oop_blk(this, max_locals, m->max_stack(),
1286
&_check_oop );
1287
InterpreterFrameClosure dead_blk(this, max_locals, m->max_stack(),
1288
&_zap_dead );
1289
1290
// get frame map
1291
InterpreterOopMap mask;
1292
m->mask_for(bci, &mask);
1293
mask.iterate_all( &oop_blk, &value_blk, &dead_blk);
1294
}
1295
1296
1297
void frame::zap_dead_compiled_locals(JavaThread* thread, const RegisterMap* reg_map) {
1298
1299
ResourceMark rm(thread);
1300
assert(_cb != NULL, "sanity check");
1301
if (_cb->oop_maps() != NULL) {
1302
OopMapSet::all_do(this, reg_map, &_check_oop, check_derived_oop, &_check_value);
1303
}
1304
}
1305
1306
1307
void frame::zap_dead_entry_locals(JavaThread*, const RegisterMap*) {
1308
if (TraceZapDeadLocals) warning("frame::zap_dead_entry_locals unimplemented");
1309
}
1310
1311
1312
void frame::zap_dead_deoptimized_locals(JavaThread*, const RegisterMap*) {
1313
if (TraceZapDeadLocals) warning("frame::zap_dead_deoptimized_locals unimplemented");
1314
}
1315
1316
# endif // ENABLE_ZAP_DEAD_LOCALS
1317
1318
void frame::verify(const RegisterMap* map) {
1319
// for now make sure receiver type is correct
1320
if (is_interpreted_frame()) {
1321
Method* method = interpreter_frame_method();
1322
guarantee(method->is_method(), "method is wrong in frame::verify");
1323
if (!method->is_static()) {
1324
// fetch the receiver
1325
oop* p = (oop*) interpreter_frame_local_at(0);
1326
// make sure we have the right receiver type
1327
}
1328
}
1329
COMPILER2_PRESENT(assert(DerivedPointerTable::is_empty(), "must be empty before verify");)
1330
oops_do_internal(&VerifyOopClosure::verify_oop, NULL, NULL, (RegisterMap*)map, false);
1331
}
1332
1333
1334
#ifdef ASSERT
1335
bool frame::verify_return_pc(address x) {
1336
if (StubRoutines::returns_to_call_stub(x)) {
1337
return true;
1338
}
1339
if (CodeCache::contains(x)) {
1340
return true;
1341
}
1342
if (Interpreter::contains(x)) {
1343
return true;
1344
}
1345
return false;
1346
}
1347
#endif
1348
1349
#ifdef ASSERT
1350
void frame::interpreter_frame_verify_monitor(BasicObjectLock* value) const {
1351
assert(is_interpreted_frame(), "Not an interpreted frame");
1352
// verify that the value is in the right part of the frame
1353
address low_mark = (address) interpreter_frame_monitor_end();
1354
address high_mark = (address) interpreter_frame_monitor_begin();
1355
address current = (address) value;
1356
1357
const int monitor_size = frame::interpreter_frame_monitor_size();
1358
guarantee((high_mark - current) % monitor_size == 0 , "Misaligned top of BasicObjectLock*");
1359
guarantee( high_mark > current , "Current BasicObjectLock* higher than high_mark");
1360
1361
guarantee((current - low_mark) % monitor_size == 0 , "Misaligned bottom of BasicObjectLock*");
1362
guarantee( current >= low_mark , "Current BasicObjectLock* below than low_mark");
1363
}
1364
#endif
1365
1366
#ifndef PRODUCT
1367
void frame::describe(FrameValues& values, int frame_no) {
1368
// boundaries: sp and the 'real' frame pointer
1369
values.describe(-1, sp(), err_msg("sp for #%d", frame_no), 1);
1370
intptr_t* frame_pointer = real_fp(); // Note: may differ from fp()
1371
1372
// print frame info at the highest boundary
1373
intptr_t* info_address = MAX2(sp(), frame_pointer);
1374
1375
if (info_address != frame_pointer) {
1376
// print frame_pointer explicitly if not marked by the frame info
1377
values.describe(-1, frame_pointer, err_msg("frame pointer for #%d", frame_no), 1);
1378
}
1379
1380
if (is_entry_frame() || is_compiled_frame() || is_interpreted_frame() || is_native_frame()) {
1381
// Label values common to most frames
1382
values.describe(-1, unextended_sp(), err_msg("unextended_sp for #%d", frame_no));
1383
}
1384
1385
if (is_interpreted_frame()) {
1386
Method* m = interpreter_frame_method();
1387
int bci = interpreter_frame_bci();
1388
1389
// Label the method and current bci
1390
values.describe(-1, info_address,
1391
FormatBuffer<1024>("#%d method %s @ %d", frame_no, m->name_and_sig_as_C_string(), bci), 2);
1392
values.describe(-1, info_address,
1393
err_msg("- %d locals %d max stack", m->max_locals(), m->max_stack()), 1);
1394
if (m->max_locals() > 0) {
1395
intptr_t* l0 = interpreter_frame_local_at(0);
1396
intptr_t* ln = interpreter_frame_local_at(m->max_locals() - 1);
1397
values.describe(-1, MAX2(l0, ln), err_msg("locals for #%d", frame_no), 1);
1398
// Report each local and mark as owned by this frame
1399
for (int l = 0; l < m->max_locals(); l++) {
1400
intptr_t* l0 = interpreter_frame_local_at(l);
1401
values.describe(frame_no, l0, err_msg("local %d", l));
1402
}
1403
}
1404
1405
// Compute the actual expression stack size
1406
InterpreterOopMap mask;
1407
OopMapCache::compute_one_oop_map(m, bci, &mask);
1408
intptr_t* tos = NULL;
1409
// Report each stack element and mark as owned by this frame
1410
for (int e = 0; e < mask.expression_stack_size(); e++) {
1411
tos = MAX2(tos, interpreter_frame_expression_stack_at(e));
1412
values.describe(frame_no, interpreter_frame_expression_stack_at(e),
1413
err_msg("stack %d", e));
1414
}
1415
if (tos != NULL) {
1416
values.describe(-1, tos, err_msg("expression stack for #%d", frame_no), 1);
1417
}
1418
if (interpreter_frame_monitor_begin() != interpreter_frame_monitor_end()) {
1419
values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_begin(), "monitors begin");
1420
values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_end(), "monitors end");
1421
}
1422
} else if (is_entry_frame()) {
1423
// For now just label the frame
1424
values.describe(-1, info_address, err_msg("#%d entry frame", frame_no), 2);
1425
} else if (is_compiled_frame()) {
1426
// For now just label the frame
1427
nmethod* nm = cb()->as_nmethod_or_null();
1428
values.describe(-1, info_address,
1429
FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for method %s%s", frame_no,
1430
nm, nm->method()->name_and_sig_as_C_string(),
1431
(_deopt_state == is_deoptimized) ?
1432
" (deoptimized)" :
1433
((_deopt_state == unknown) ? " (state unknown)" : "")),
1434
2);
1435
} else if (is_native_frame()) {
1436
// For now just label the frame
1437
nmethod* nm = cb()->as_nmethod_or_null();
1438
values.describe(-1, info_address,
1439
FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for native method %s", frame_no,
1440
nm, nm->method()->name_and_sig_as_C_string()), 2);
1441
} else {
1442
// provide default info if not handled before
1443
char *info = (char *) "special frame";
1444
if ((_cb != NULL) &&
1445
(_cb->name() != NULL)) {
1446
info = (char *)_cb->name();
1447
}
1448
values.describe(-1, info_address, err_msg("#%d <%s>", frame_no, info), 2);
1449
}
1450
1451
// platform dependent additional data
1452
describe_pd(values, frame_no);
1453
}
1454
1455
#endif
1456
1457
1458
//-----------------------------------------------------------------------------------
1459
// StackFrameStream implementation
1460
1461
StackFrameStream::StackFrameStream(JavaThread *thread, bool update) : _reg_map(thread, update) {
1462
assert(thread->has_last_Java_frame(), "sanity check");
1463
_fr = thread->last_frame();
1464
_is_done = false;
1465
}
1466
1467
1468
#ifndef PRODUCT
1469
1470
void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) {
1471
FrameValue fv;
1472
fv.location = location;
1473
fv.owner = owner;
1474
fv.priority = priority;
1475
fv.description = NEW_RESOURCE_ARRAY(char, strlen(description) + 1);
1476
strcpy(fv.description, description);
1477
_values.append(fv);
1478
}
1479
1480
1481
#ifdef ASSERT
1482
void FrameValues::validate() {
1483
_values.sort(compare);
1484
bool error = false;
1485
FrameValue prev;
1486
prev.owner = -1;
1487
for (int i = _values.length() - 1; i >= 0; i--) {
1488
FrameValue fv = _values.at(i);
1489
if (fv.owner == -1) continue;
1490
if (prev.owner == -1) {
1491
prev = fv;
1492
continue;
1493
}
1494
if (prev.location == fv.location) {
1495
if (fv.owner != prev.owner) {
1496
tty->print_cr("overlapping storage");
1497
tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", prev.location, *prev.location, prev.description);
1498
tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", fv.location, *fv.location, fv.description);
1499
error = true;
1500
}
1501
} else {
1502
prev = fv;
1503
}
1504
}
1505
assert(!error, "invalid layout");
1506
}
1507
#endif // ASSERT
1508
1509
void FrameValues::print(JavaThread* thread) {
1510
_values.sort(compare);
1511
1512
// Sometimes values like the fp can be invalid values if the
1513
// register map wasn't updated during the walk. Trim out values
1514
// that aren't actually in the stack of the thread.
1515
int min_index = 0;
1516
int max_index = _values.length() - 1;
1517
intptr_t* v0 = _values.at(min_index).location;
1518
intptr_t* v1 = _values.at(max_index).location;
1519
1520
if (thread == Thread::current()) {
1521
while (!thread->is_in_stack((address)v0)) {
1522
v0 = _values.at(++min_index).location;
1523
}
1524
while (!thread->is_in_stack((address)v1)) {
1525
v1 = _values.at(--max_index).location;
1526
}
1527
} else {
1528
while (!thread->on_local_stack((address)v0)) {
1529
v0 = _values.at(++min_index).location;
1530
}
1531
while (!thread->on_local_stack((address)v1)) {
1532
v1 = _values.at(--max_index).location;
1533
}
1534
}
1535
intptr_t* min = MIN2(v0, v1);
1536
intptr_t* max = MAX2(v0, v1);
1537
intptr_t* cur = max;
1538
intptr_t* last = NULL;
1539
for (int i = max_index; i >= min_index; i--) {
1540
FrameValue fv = _values.at(i);
1541
while (cur > fv.location) {
1542
tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT, cur, *cur);
1543
cur--;
1544
}
1545
if (last == fv.location) {
1546
const char* spacer = " " LP64_ONLY(" ");
1547
tty->print_cr(" %s %s %s", spacer, spacer, fv.description);
1548
} else {
1549
tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", fv.location, *fv.location, fv.description);
1550
last = fv.location;
1551
cur--;
1552
}
1553
}
1554
}
1555
1556
#endif // ndef PRODUCT
1557
1558