< prev index next >

src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2016, 2019, 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. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as --- 1,7 ---- /* ! * 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. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as
*** 61,71 **** return false; } 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()) { return false; } const Method *m = (const Method*)(istate->method); if (!Method::is_valid_method(m)) return false; if (!Metaspace::contains(m->constMethod())) return false; --- 61,71 ---- return false; } if (ret_frame.is_interpreted_frame()) { frame::z_ijava_state* istate = ret_frame.ijava_state_unchecked(); ! if (on_local_stack((address)istate)) { return false; } const Method *m = (const Method*)(istate->method); if (!Method::is_valid_method(m)) return false; if (!Metaspace::contains(m->constMethod())) return false;
< prev index next >