We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0454a32 commit be0c937Copy full SHA for be0c937
src/hotspot/share/runtime/continuation.cpp
@@ -3931,7 +3931,11 @@ class Thaw {
3931
// }
3932
OrderAccess::loadload(); // we must test the gc mode *after* the copy
3933
if (UNLIKELY(should_fix(chunk))) {
3934
- fix_stack_chunk(chunk, vsp, vsp + size);
+ intptr_t* end = vsp + size - argsize;
3935
+ if (argsize > 0) {
3936
+ end -= 2; // RON FIXME, document!
3937
+ }
3938
+ fix_stack_chunk(chunk, vsp, end);
3939
if (empty) {
3940
// we've set
3941
jdk_internal_misc_StackChunk::set_gc_mode(chunk, false);
0 commit comments