src/share/vm/runtime/handles.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hsx-gc Sdiff src/share/vm/runtime

src/share/vm/runtime/handles.cpp

Print this page
rev 3849 : imported patch thread.inline.hpp


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "memory/allocation.inline.hpp"
  27 #include "oops/constantPool.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/handles.inline.hpp"

  30 #ifdef TARGET_OS_FAMILY_linux
  31 # include "os_linux.inline.hpp"
  32 # include "thread_linux.inline.hpp"
  33 #endif
  34 #ifdef TARGET_OS_FAMILY_solaris
  35 # include "os_solaris.inline.hpp"
  36 # include "thread_solaris.inline.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_windows
  39 # include "os_windows.inline.hpp"
  40 # include "thread_windows.inline.hpp"
  41 #endif
  42 #ifdef TARGET_OS_FAMILY_bsd
  43 # include "os_bsd.inline.hpp"
  44 # include "thread_bsd.inline.hpp"
  45 #endif
  46 
  47 #ifdef ASSERT
  48 oop* HandleArea::allocate_handle(oop obj) {
  49   assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
  50   assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
  51   assert(obj->is_oop(), "sanity check");
  52   return real_allocate_handle(obj);
  53 }
  54 
  55 Handle::Handle(Thread* thread, oop obj) {
  56   assert(thread == Thread::current(), "sanity check");
  57   if (obj == NULL) {
  58     _handle = NULL;
  59   } else {
  60     _handle = thread->handle_area()->allocate_handle(obj);
  61   }
  62 }
  63 
  64 #endif




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "memory/allocation.inline.hpp"
  27 #include "oops/constantPool.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/handles.inline.hpp"
  30 #include "runtime/thread.inline.hpp"
  31 #ifdef TARGET_OS_FAMILY_linux
  32 # include "os_linux.inline.hpp"

  33 #endif
  34 #ifdef TARGET_OS_FAMILY_solaris
  35 # include "os_solaris.inline.hpp"

  36 #endif
  37 #ifdef TARGET_OS_FAMILY_windows
  38 # include "os_windows.inline.hpp"

  39 #endif
  40 #ifdef TARGET_OS_FAMILY_bsd
  41 # include "os_bsd.inline.hpp"

  42 #endif
  43 
  44 #ifdef ASSERT
  45 oop* HandleArea::allocate_handle(oop obj) {
  46   assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
  47   assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
  48   assert(obj->is_oop(), "sanity check");
  49   return real_allocate_handle(obj);
  50 }
  51 
  52 Handle::Handle(Thread* thread, oop obj) {
  53   assert(thread == Thread::current(), "sanity check");
  54   if (obj == NULL) {
  55     _handle = NULL;
  56   } else {
  57     _handle = thread->handle_area()->allocate_handle(obj);
  58   }
  59 }
  60 
  61 #endif


src/share/vm/runtime/handles.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File