@@ -528,6 +528,12 @@ void trace_method_handle_stub(const char* adaptername,
528
528
}
529
529
tty->cr ();
530
530
531
+ // Note: We want to allow trace_method_handle from any call site.
532
+ // While trace_method_handle creates a frame, it may be entered
533
+ // without a PC on the stack top (e.g. not just after a call).
534
+ // Walking that frame could lead to failures due to that invalid PC.
535
+ // => carefully detect that frame when doing the stack walking
536
+
531
537
{
532
538
// dumping last frame with frame::describe
533
539
@@ -536,43 +542,38 @@ void trace_method_handle_stub(const char* adaptername,
536
542
PRESERVE_EXCEPTION_MARK; // may not be needed but safer and inexpensive here
537
543
FrameValues values;
538
544
539
- // Note: We want to allow trace_method_handle from any call site.
540
- // While trace_method_handle creates a frame, it may be entered
541
- // without a PC on the stack top (e.g. not just after a call).
542
- // Walking that frame could lead to failures due to that invalid PC.
543
- // => carefully detect that frame when doing the stack walking
544
-
545
545
// Current C frame
546
546
frame cur_frame = os::current_frame ();
547
547
548
- // Robust search of trace_calling_frame (independant of inlining).
549
- // Assumes saved_regs comes from a pusha in the trace_calling_frame.
550
- assert (cur_frame.sp () < saved_regs, " registers not saved on stack ?" );
551
- frame trace_calling_frame = os::get_sender_for_C_frame (&cur_frame);
552
- while (trace_calling_frame.fp () < saved_regs) {
553
- trace_calling_frame = os::get_sender_for_C_frame (&trace_calling_frame);
554
- }
555
-
556
- // safely create a frame and call frame::describe
557
- intptr_t *dump_sp = trace_calling_frame.sender_sp ();
558
- intptr_t *dump_fp = trace_calling_frame.link ();
559
-
560
- bool walkable = has_mh; // whether the traced frame shoud be walkable
561
-
562
- if (walkable) {
563
- // The previous definition of walkable may have to be refined
564
- // if new call sites cause the next frame constructor to start
565
- // failing. Alternatively, frame constructors could be
566
- // modified to support the current or future non walkable
567
- // frames (but this is more intrusive and is not considered as
568
- // part of this RFE, which will instead use a simpler output).
569
- frame dump_frame = frame (dump_sp, dump_fp);
570
- dump_frame.describe (values, 1 );
571
- } else {
572
- // Stack may not be walkable (invalid PC above FP):
573
- // Add descriptions without building a Java frame to avoid issues
574
- values.describe (-1 , dump_fp, " fp for #1 <not parsed, cannot trust pc>" );
575
- values.describe (-1 , dump_sp, " sp for #1" );
548
+ if (cur_frame.fp () != 0 ) { // not walkable
549
+
550
+ // Robust search of trace_calling_frame (independent of inlining).
551
+ // Assumes saved_regs comes from a pusha in the trace_calling_frame.
552
+ assert (cur_frame.sp () < saved_regs, " registers not saved on stack ?" );
553
+ frame trace_calling_frame = os::get_sender_for_C_frame (&cur_frame);
554
+ while (trace_calling_frame.fp () < saved_regs) {
555
+ trace_calling_frame = os::get_sender_for_C_frame (&trace_calling_frame);
556
+ }
557
+
558
+ // safely create a frame and call frame::describe
559
+ intptr_t *dump_sp = trace_calling_frame.sender_sp ();
560
+ intptr_t *dump_fp = trace_calling_frame.link ();
561
+
562
+ if (has_mh) {
563
+ // The previous definition of walkable may have to be refined
564
+ // if new call sites cause the next frame constructor to start
565
+ // failing. Alternatively, frame constructors could be
566
+ // modified to support the current or future non walkable
567
+ // frames (but this is more intrusive and is not considered as
568
+ // part of this RFE, which will instead use a simpler output).
569
+ frame dump_frame = frame (dump_sp, dump_fp);
570
+ dump_frame.describe (values, 1 );
571
+ } else {
572
+ // Stack may not be walkable (invalid PC above FP):
573
+ // Add descriptions without building a Java frame to avoid issues
574
+ values.describe (-1 , dump_fp, " fp for #1 <not parsed, cannot trust pc>" );
575
+ values.describe (-1 , dump_sp, " sp for #1" );
576
+ }
576
577
}
577
578
values.describe (-1 , entry_sp, " raw top of stack" );
578
579
0 commit comments