--- old/src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp 2020-02-11 20:31:25.080878762 -0500 +++ new/src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp 2020-02-11 20:31:23.902865715 -0500 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016, 2019 SAP SE. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * @@ -63,7 +63,7 @@ if (ret_frame.is_interpreted_frame()) { frame::z_ijava_state* istate = ret_frame.ijava_state_unchecked(); - if (stack_base() >= (address)istate && (address)istate > stack_end()) { + if (on_local_stack((address)istate)) { return false; } const Method *m = (const Method*)(istate->method);