Skip to content

Commit be0c937

Browse files
author
Rickard Bäckman
committedMay 20, 2020
Fix end calculation
1 parent 0454a32 commit be0c937

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/hotspot/share/runtime/continuation.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -3931,7 +3931,11 @@ class Thaw {
39313931
// }
39323932
OrderAccess::loadload(); // we must test the gc mode *after* the copy
39333933
if (UNLIKELY(should_fix(chunk))) {
3934-
fix_stack_chunk(chunk, vsp, vsp + size);
3934+
intptr_t* end = vsp + size - argsize;
3935+
if (argsize > 0) {
3936+
end -= 2; // RON FIXME, document!
3937+
}
3938+
fix_stack_chunk(chunk, vsp, end);
39353939
if (empty) {
39363940
// we've set
39373941
jdk_internal_misc_StackChunk::set_gc_mode(chunk, false);

0 commit comments

Comments
 (0)
Please sign in to comment.