Skip to content

Commit 380ff20

Browse files
committedMar 25, 2021
Fix crash due to bad oop
1 parent 72eb276 commit 380ff20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/cpu/x86/continuation_x86.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ template<typename FKind> frame Freeze<ConfigT>::new_hframe(frame& f, frame& call
250250
assert (sp <= fp && fp <= caller.unextended_sp(), "");
251251
caller.set_sp(fp + frame::sender_sp_offset);
252252
} else {
253-
fp = f.fp();
253+
fp = *(intptr_t**)(f.sp() - frame::sender_sp_offset); // we need to re-read fp because it may be an oop and we might have had a safepoint in finalize_freeze, after constructing f.
254254
int fsize = FKind::size(f);
255255
sp = caller.unextended_sp() - fsize;
256256
if (caller.is_interpreted_frame()) {

0 commit comments

Comments
 (0)
Please sign in to comment.