src/hotspot/share/runtime/handles.cpp
author redestad
Thu, 07 Feb 2019 10:26:32 +0100
changeset 53682 e30211561a17
parent 49449 ef5d5d343e2a
permissions -rw-r--r--
8218565: HandleMark cleanup Reviewed-by: coleenp, kbarrett, rehn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
     2
 * Copyright (c) 1997, 2019, 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"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
oop* HandleArea::allocate_handle(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46329
diff changeset
    36
  assert(oopDesc::is_oop(obj), "not an oop: " INTPTR_FORMAT, p2i(obj));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  return real_allocate_handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
}
35194
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    39
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
35194
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    41
// Copy constructors and destructors for metadata handles
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    42
// These do too much to inline.
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    43
#define DEF_METADATA_HANDLE_FN_NOINLINE(name, type) \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    44
name##Handle::name##Handle(const name##Handle &h) {                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    45
  _value = h._value;                                                   \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    46
  if (_value != NULL) {                                                \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    47
    assert(_value->is_valid(), "obj is valid");                        \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    48
    if (h._thread != NULL) {                                           \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    49
      assert(h._thread == Thread::current(), "thread must be current");\
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    50
      _thread = h._thread;                                             \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    51
    } else {                                                           \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    52
      _thread = Thread::current();                                     \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    53
    }                                                                  \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    54
    assert (_thread->is_in_stack((address)this), "not on stack?");     \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    55
    _thread->metadata_handles()->push((Metadata*)_value);              \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    56
  } else {                                                             \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    57
    _thread = NULL;                                                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    58
  }                                                                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    59
}                                                                      \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    60
name##Handle& name##Handle::operator=(const name##Handle &s) {         \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    61
  remove();                                                            \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    62
  _value = s._value;                                                   \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    63
  if (_value != NULL) {                                                \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    64
    assert(_value->is_valid(), "obj is valid");                        \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    65
    if (s._thread != NULL) {                                           \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    66
      assert(s._thread == Thread::current(), "thread must be current");\
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    67
      _thread = s._thread;                                             \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    68
    } else {                                                           \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    69
      _thread = Thread::current();                                     \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    70
    }                                                                  \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    71
    assert (_thread->is_in_stack((address)this), "not on stack?");     \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    72
    _thread->metadata_handles()->push((Metadata*)_value);              \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    73
  } else {                                                             \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    74
    _thread = NULL;                                                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    75
  }                                                                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    76
  return *this;                                                        \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    77
}                                                                      \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    78
inline void name##Handle::remove() {                                   \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    79
  if (_value != NULL) {                                                \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    80
    int i = _thread->metadata_handles()->find_from_end((Metadata*)_value); \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    81
    assert(i!=-1, "not in metadata_handles list");                     \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    82
    _thread->metadata_handles()->remove_at(i);                         \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    83
  }                                                                    \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    84
}                                                                      \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    85
name##Handle::~name##Handle () { remove(); }                           \
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    86
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    87
DEF_METADATA_HANDLE_FN_NOINLINE(method, Method)
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    88
DEF_METADATA_HANDLE_FN_NOINLINE(constantPool, ConstantPool)
7151995ee79e 8144256: compiler/uncommontrap/TestStackBangRbp.java crashes VM on Solaris
coleenp
parents: 33611
diff changeset
    89
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
static uintx chunk_oops_do(OopClosure* f, Chunk* chunk, char* chunk_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  oop* bottom = (oop*) chunk->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  oop* top    = (oop*) chunk_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  uintx handles_visited = top - bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(top >= bottom && top <= (oop*) chunk->top(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // during GC phase 3, a handle may be a forward pointer that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // is not yet valid, so loosen the assertion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  while (bottom < top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    f->do_oop(bottom++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return handles_visited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void HandleArea::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  uintx handles_visited = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // First handle the current chunk. It is filled to the high water mark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  handles_visited += chunk_oops_do(f, _chunk, _hwm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Then handle all previous chunks. They are completely filled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  Chunk* k = _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  while(k != _chunk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    handles_visited += chunk_oops_do(f, k, k->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    k = k->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  if (_prev != NULL) _prev->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
void HandleMark::initialize(Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _area  = thread->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Save current top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _chunk = _area->_chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  _hwm   = _area->_hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _max   = _area->_max;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   126
  _size_in_bytes = _area->_size_in_bytes;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  debug_only(_area->_handle_mark_nesting++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  assert(_area->_handle_mark_nesting > 0, "must stack allocate HandleMarks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Link this in the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  set_previous_handle_mark(thread->last_handle_mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  thread->set_last_handle_mark(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
HandleMark::~HandleMark() {
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   136
  assert(_area == _thread->handle_area(), "sanity check");
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   137
  assert(_area->_handle_mark_nesting > 0, "must stack allocate HandleMarks" );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   139
  pop_and_restore();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // clear out first chunk (to detect allocation bugs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  if (ZapVMHandleArea) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    memset(_hwm, badHandleValue, _max - _hwm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Unlink this from the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _thread->set_last_handle_mark(previous_handle_mark());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   151
void HandleMark::chop_later_chunks() {
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   152
  // reset arena size before delete chunks. Otherwise, the total
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   153
  // arena size could exceed total chunk size
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   154
  _area->set_size_in_bytes(size_in_bytes());
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   155
  _chunk->next_chop();
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   156
}
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 49449
diff changeset
   157
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   158
void* HandleMark::operator new(size_t size) throw() {
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   159
  return AllocateHeap(size, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   160
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   161
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17376
diff changeset
   162
void* HandleMark::operator new [] (size_t size) throw() {
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   163
  return AllocateHeap(size, mtThread);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   164
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   165
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   166
void HandleMark::operator delete(void* p) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 25468
diff changeset
   167
  FreeHeap(p);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   168
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   169
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   170
void HandleMark::operator delete[](void* p) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 25468
diff changeset
   171
  FreeHeap(p);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   172
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 14583
diff changeset
   173
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
NoHandleMark::NoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  area->_no_handle_mark_nesting++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
NoHandleMark::~NoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  area->_no_handle_mark_nesting--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
ResetNoHandleMark::ResetNoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  _no_handle_mark_nesting = area->_no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  area->_no_handle_mark_nesting = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
ResetNoHandleMark::~ResetNoHandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  HandleArea* area = Thread::current()->handle_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  area->_no_handle_mark_nesting = _no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49013
diff changeset
   202
#endif // ASSERT