hotspot/src/share/vm/runtime/handles.cpp
author drchase
Fri, 09 May 2014 16:50:54 -0400
changeset 24424 2658d7834c6e
parent 21198 dd647e8d1d72
child 25351 7c198a690050
permissions -rw-r--r--
8037816: Fix for 8036122 breaks build with Xcode5/clang Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21198
diff changeset
     2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "memory/allocation.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    27
#include "oops/constantPool.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.inline.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14120
diff changeset
    30
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
# include "os_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
# include "os_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
# include "os_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7397
diff changeset
    40
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7397
diff changeset
    41
# include "os_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 7397
diff changeset
    42
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21198
diff changeset
    44
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21198
diff changeset
    45
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
oop* HandleArea::allocate_handle(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 19696
diff changeset
    50
  assert(obj->is_oop(), err_msg("not an oop: " INTPTR_FORMAT, (intptr_t*) obj));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  return real_allocate_handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
Handle::Handle(Thread* thread, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  assert(thread == Thread::current(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  if (obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _handle = thread->handle_area()->allocate_handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
static uintx chunk_oops_do(OopClosure* f, Chunk* chunk, char* chunk_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  oop* bottom = (oop*) chunk->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  oop* top    = (oop*) chunk_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  uintx handles_visited = top - bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  assert(top >= bottom && top <= (oop*) chunk->top(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // during GC phase 3, a handle may be a forward pointer that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // is not yet valid, so loosen the assertion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  while (bottom < top) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    73
    // This test can be moved up but for now check every oop.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    74
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    75
    assert((*bottom)->is_oop(), "handle should point to oop");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    76
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    f->do_oop(bottom++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  return handles_visited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Used for debugging handle allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
NOT_PRODUCT(jint _nof_handlemarks  = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
void HandleArea::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  uintx handles_visited = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // First handle the current chunk. It is filled to the high water mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  handles_visited += chunk_oops_do(f, _chunk, _hwm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Then handle all previous chunks. They are completely filled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  Chunk* k = _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  while(k != _chunk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    handles_visited += chunk_oops_do(f, k, k->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    k = k->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // The thread local handle areas should not get very large
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  if (TraceHandleAllocation && handles_visited > TotalHandleAllocationLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    warning("%d: Visited in HandleMark : %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      _nof_handlemarks, handles_visited);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    warning("Visited in HandleMark : %d", handles_visited);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  if (_prev != NULL) _prev->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
void HandleMark::initialize(Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  _area  = thread->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Save current top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  _chunk = _area->_chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _hwm   = _area->_hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  _max   = _area->_max;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   116
  _size_in_bytes = _area->_size_in_bytes;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  debug_only(_area->_handle_mark_nesting++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  assert(_area->_handle_mark_nesting > 0, "must stack allocate HandleMarks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  debug_only(Atomic::inc(&_nof_handlemarks);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Link this in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  set_previous_handle_mark(thread->last_handle_mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  thread->set_last_handle_mark(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
HandleMark::~HandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  HandleArea* area = _area;   // help compilers with poor alias analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(area == _thread->handle_area(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  assert(area->_handle_mark_nesting > 0, "must stack allocate HandleMarks" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  debug_only(area->_handle_mark_nesting--);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // Debug code to trace the number of handles allocated per mark/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  if (TraceHandleAllocation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    size_t handles = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    Chunk *c = _chunk->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    if (c == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      handles = area->_hwm - _hwm; // no new chunk allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      handles = _max - _hwm;      // add rest in first chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      while(c != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
        handles += c->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
        c = c->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      handles -= area->_max - area->_hwm; // adjust for last trunk not full
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    handles /= sizeof(void *); // Adjust for size of a handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    if (handles > HandleAllocationLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      // Note: _nof_handlemarks is only set in debug mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      warning("%d: Allocated in HandleMark : %d", _nof_handlemarks, handles);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   153
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   154
    tty->print_cr("Handles %d", handles);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Delete later chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  if( _chunk->next() ) {
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   160
    // reset arena size before delete chunks. Otherwise, the total
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   161
    // arena size could exceed total chunk size
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   162
    assert(area->size_in_bytes() > size_in_bytes(), "Sanity check");
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   163
    area->set_size_in_bytes(size_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    _chunk->next_chop();
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   165
  } else {
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   166
    assert(area->size_in_bytes() == size_in_bytes(), "Sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Roll back arena to saved top markers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  area->_chunk = _chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  area->_hwm = _hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  area->_max = _max;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // clear out first chunk (to detect allocation bugs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  if (ZapVMHandleArea) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    memset(_hwm, badHandleValue, _max - _hwm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  Atomic::dec(&_nof_handlemarks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Unlink this from the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  _thread->set_last_handle_mark(previous_handle_mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   184
void* HandleMark::operator new(size_t size) throw() {
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   185
  return AllocateHeap(size, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   186
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   187
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   188
void* HandleMark::operator new [] (size_t size) throw() {
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   189
  return AllocateHeap(size, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   190
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   191
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   192
void HandleMark::operator delete(void* p) {
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   193
  FreeHeap(p, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   194
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   195
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   196
void HandleMark::operator delete[](void* p) {
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   197
  FreeHeap(p, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   198
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   199
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
NoHandleMark::NoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  area->_no_handle_mark_nesting++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
NoHandleMark::~NoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  area->_no_handle_mark_nesting--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
ResetNoHandleMark::ResetNoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  _no_handle_mark_nesting = area->_no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  area->_no_handle_mark_nesting = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
ResetNoHandleMark::~ResetNoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  area->_no_handle_mark_nesting = _no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
#endif