< prev index next >

src/hotspot/share/runtime/handles.cpp

Print this page
rev 58071 : imported patch v1

*** 1,7 **** /* ! * Copyright (c) 1997, 2019, Oracle and/or its affiliates. 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 * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2020, Oracle and/or its affiliates. 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 * published by the Free Software Foundation.
*** 49,59 **** assert(h._thread == Thread::current(), "thread must be current");\ _thread = h._thread; \ } else { \ _thread = Thread::current(); \ } \ ! assert (_thread->is_in_stack((address)this), "not on stack?"); \ _thread->metadata_handles()->push((Metadata*)_value); \ } else { \ _thread = NULL; \ } \ } \ --- 49,59 ---- assert(h._thread == Thread::current(), "thread must be current");\ _thread = h._thread; \ } else { \ _thread = Thread::current(); \ } \ ! assert (_thread->is_in_live_stack((address)this), "not on stack?");\ _thread->metadata_handles()->push((Metadata*)_value); \ } else { \ _thread = NULL; \ } \ } \
*** 66,76 **** assert(s._thread == Thread::current(), "thread must be current");\ _thread = s._thread; \ } else { \ _thread = Thread::current(); \ } \ ! assert (_thread->is_in_stack((address)this), "not on stack?"); \ _thread->metadata_handles()->push((Metadata*)_value); \ } else { \ _thread = NULL; \ } \ return *this; \ --- 66,76 ---- assert(s._thread == Thread::current(), "thread must be current");\ _thread = s._thread; \ } else { \ _thread = Thread::current(); \ } \ ! assert (_thread->is_in_live_stack((address)this), "not on stack?");\ _thread->metadata_handles()->push((Metadata*)_value); \ } else { \ _thread = NULL; \ } \ return *this; \
< prev index next >