<div dir="ltr">Hello,<div><br></div><div>JBS: <a href="https://bugs.openjdk.org/browse/JDK-8315380">https://bugs.openjdk.org/browse/JDK-8315380</a><br>PR  : <a href="https://github.com/openjdk/jdk11u-dev/pull/3003">https://github.com/openjdk/jdk11u-dev/pull/3003</a></div><div><br></div><div>Could you please review this JDK 11 specific bug fix?</div><div><br></div><div>The change addresses an issue in frame_aarch64.cpp, within the safe_for_sender function. The existing code </div><div>```</div><div>bool unextended_sp_safe = unextended_sp < thread->stack_base(); </div><div>```</div><div>checks only one unsafe scenario. It does not consider the case where the unextended_sp falls within the stack space.</div><div><br></div><div>The proposed change </div><div>```</div><div>bool unextended_sp_safe = (unextended_sp < thread->stack_base() && </div><div>                           sp >= thread->stack_base() - thread->stack_size());</div><div>```</div><div>ensures that the behavior aligns with JDK 15+ (since JDK-8238988), where the unextended_sp is checked against the stack limits.</div><div><br></div><div>Unfortunately, I couldn't create a reliable JTReg test to trigger this issue. However, I ran existing tier1-tier4 tests on a linux-aarch64 system and observed no new failures.</div><div><br></div><div>The same change would apply to jdk8u-dev where I plan to backport it once this PR is merged.</div><div><br></div><div><br></div><div>Cheers,</div><div>Jaroslav Bachorík </div><div><br></div></div>