We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8894d6a commit d46f769Copy full SHA for d46f769
src/hotspot/cpu/aarch64/frame_aarch64.cpp
@@ -84,7 +84,7 @@ bool frame::safe_for_sender(JavaThread *thread) {
84
// So unextended sp must be within the stack but we need not to check
85
// that unextended sp >= sp
86
87
- bool unextended_sp_safe = (unextended_sp < thread->stack_base());
+ bool unextended_sp_safe = (unextended_sp < thread->stack_base() && unextended_sp >= thread->stack_end());
88
89
if (!unextended_sp_safe) {
90
return false;
0 commit comments