src/share/vm/runtime/handles.cpp

Wed, 10 Oct 2012 14:35:58 -0400

author
jprovino
date
Wed, 10 Oct 2012 14:35:58 -0400
changeset 4165
fb19af007ffc
parent 4037
da91efe96a93
child 4178
bdb5f8c9978b
permissions
-rw-r--r--

7189254: Change makefiles for more flexibility to override defaults
Summary: Change makefiles so that targets and parameters can be overridden by alternate makefiles.
Reviewed-by: dholmes, coleenp

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "memory/allocation.inline.hpp"
coleenp@4037 27 #include "oops/constantPool.hpp"
stefank@2314 28 #include "oops/oop.inline.hpp"
stefank@2314 29 #include "runtime/handles.inline.hpp"
stefank@2314 30 #ifdef TARGET_OS_FAMILY_linux
stefank@2314 31 # include "os_linux.inline.hpp"
stefank@2314 32 # include "thread_linux.inline.hpp"
stefank@2314 33 #endif
stefank@2314 34 #ifdef TARGET_OS_FAMILY_solaris
stefank@2314 35 # include "os_solaris.inline.hpp"
stefank@2314 36 # include "thread_solaris.inline.hpp"
stefank@2314 37 #endif
stefank@2314 38 #ifdef TARGET_OS_FAMILY_windows
stefank@2314 39 # include "os_windows.inline.hpp"
stefank@2314 40 # include "thread_windows.inline.hpp"
stefank@2314 41 #endif
never@3156 42 #ifdef TARGET_OS_FAMILY_bsd
never@3156 43 # include "os_bsd.inline.hpp"
never@3156 44 # include "thread_bsd.inline.hpp"
never@3156 45 #endif
duke@435 46
duke@435 47 #ifdef ASSERT
duke@435 48 oop* HandleArea::allocate_handle(oop obj) {
duke@435 49 assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
duke@435 50 assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
duke@435 51 assert(SharedSkipVerify || obj->is_oop(), "sanity check");
duke@435 52 return real_allocate_handle(obj);
duke@435 53 }
duke@435 54
duke@435 55 Handle::Handle(Thread* thread, oop obj) {
duke@435 56 assert(thread == Thread::current(), "sanity check");
duke@435 57 if (obj == NULL) {
duke@435 58 _handle = NULL;
duke@435 59 } else {
duke@435 60 _handle = thread->handle_area()->allocate_handle(obj);
duke@435 61 }
duke@435 62 }
duke@435 63
duke@435 64 #endif
duke@435 65
duke@435 66 static uintx chunk_oops_do(OopClosure* f, Chunk* chunk, char* chunk_top) {
duke@435 67 oop* bottom = (oop*) chunk->bottom();
duke@435 68 oop* top = (oop*) chunk_top;
duke@435 69 uintx handles_visited = top - bottom;
duke@435 70 assert(top >= bottom && top <= (oop*) chunk->top(), "just checking");
duke@435 71 // during GC phase 3, a handle may be a forward pointer that
duke@435 72 // is not yet valid, so loosen the assertion
duke@435 73 while (bottom < top) {
coleenp@4037 74 // This test can be moved up but for now check every oop.
coleenp@4037 75
coleenp@4037 76 assert((*bottom)->is_oop(), "handle should point to oop");
coleenp@4037 77
duke@435 78 f->do_oop(bottom++);
duke@435 79 }
duke@435 80 return handles_visited;
duke@435 81 }
duke@435 82
duke@435 83 // Used for debugging handle allocation.
duke@435 84 NOT_PRODUCT(jint _nof_handlemarks = 0;)
duke@435 85
duke@435 86 void HandleArea::oops_do(OopClosure* f) {
duke@435 87 uintx handles_visited = 0;
duke@435 88 // First handle the current chunk. It is filled to the high water mark.
duke@435 89 handles_visited += chunk_oops_do(f, _chunk, _hwm);
duke@435 90 // Then handle all previous chunks. They are completely filled.
duke@435 91 Chunk* k = _first;
duke@435 92 while(k != _chunk) {
duke@435 93 handles_visited += chunk_oops_do(f, k, k->top());
duke@435 94 k = k->next();
duke@435 95 }
duke@435 96
duke@435 97 // The thread local handle areas should not get very large
duke@435 98 if (TraceHandleAllocation && handles_visited > TotalHandleAllocationLimit) {
duke@435 99 #ifdef ASSERT
duke@435 100 warning("%d: Visited in HandleMark : %d",
duke@435 101 _nof_handlemarks, handles_visited);
duke@435 102 #else
duke@435 103 warning("Visited in HandleMark : %d", handles_visited);
duke@435 104 #endif
duke@435 105 }
duke@435 106 if (_prev != NULL) _prev->oops_do(f);
duke@435 107 }
duke@435 108
duke@435 109 void HandleMark::initialize(Thread* thread) {
duke@435 110 _thread = thread;
duke@435 111 // Save area
duke@435 112 _area = thread->handle_area();
duke@435 113 // Save current top
duke@435 114 _chunk = _area->_chunk;
duke@435 115 _hwm = _area->_hwm;
duke@435 116 _max = _area->_max;
zgu@3900 117 _size_in_bytes = _area->_size_in_bytes;
duke@435 118 debug_only(_area->_handle_mark_nesting++);
duke@435 119 assert(_area->_handle_mark_nesting > 0, "must stack allocate HandleMarks");
duke@435 120 debug_only(Atomic::inc(&_nof_handlemarks);)
duke@435 121
duke@435 122 // Link this in the thread
duke@435 123 set_previous_handle_mark(thread->last_handle_mark());
duke@435 124 thread->set_last_handle_mark(this);
duke@435 125 }
duke@435 126
duke@435 127
duke@435 128 HandleMark::~HandleMark() {
duke@435 129 HandleArea* area = _area; // help compilers with poor alias analysis
duke@435 130 assert(area == _thread->handle_area(), "sanity check");
duke@435 131 assert(area->_handle_mark_nesting > 0, "must stack allocate HandleMarks" );
duke@435 132 debug_only(area->_handle_mark_nesting--);
duke@435 133
duke@435 134 // Debug code to trace the number of handles allocated per mark/
duke@435 135 #ifdef ASSERT
duke@435 136 if (TraceHandleAllocation) {
duke@435 137 size_t handles = 0;
duke@435 138 Chunk *c = _chunk->next();
duke@435 139 if (c == NULL) {
duke@435 140 handles = area->_hwm - _hwm; // no new chunk allocated
duke@435 141 } else {
duke@435 142 handles = _max - _hwm; // add rest in first chunk
duke@435 143 while(c != NULL) {
duke@435 144 handles += c->length();
duke@435 145 c = c->next();
duke@435 146 }
duke@435 147 handles -= area->_max - area->_hwm; // adjust for last trunk not full
duke@435 148 }
duke@435 149 handles /= sizeof(void *); // Adjust for size of a handle
duke@435 150 if (handles > HandleAllocationLimit) {
duke@435 151 // Note: _nof_handlemarks is only set in debug mode
duke@435 152 warning("%d: Allocated in HandleMark : %d", _nof_handlemarks, handles);
duke@435 153 }
coleenp@4037 154
coleenp@4037 155 tty->print_cr("Handles %d", handles);
duke@435 156 }
duke@435 157 #endif
duke@435 158
duke@435 159 // Delete later chunks
duke@435 160 if( _chunk->next() ) {
duke@435 161 _chunk->next_chop();
duke@435 162 }
duke@435 163 // Roll back arena to saved top markers
duke@435 164 area->_chunk = _chunk;
duke@435 165 area->_hwm = _hwm;
duke@435 166 area->_max = _max;
zgu@3900 167 area->set_size_in_bytes(_size_in_bytes);
duke@435 168 #ifdef ASSERT
duke@435 169 // clear out first chunk (to detect allocation bugs)
duke@435 170 if (ZapVMHandleArea) {
duke@435 171 memset(_hwm, badHandleValue, _max - _hwm);
duke@435 172 }
duke@435 173 Atomic::dec(&_nof_handlemarks);
duke@435 174 #endif
duke@435 175
duke@435 176 // Unlink this from the thread
duke@435 177 _thread->set_last_handle_mark(previous_handle_mark());
duke@435 178 }
duke@435 179
duke@435 180 #ifdef ASSERT
duke@435 181
duke@435 182 NoHandleMark::NoHandleMark() {
duke@435 183 HandleArea* area = Thread::current()->handle_area();
duke@435 184 area->_no_handle_mark_nesting++;
duke@435 185 assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
duke@435 186 }
duke@435 187
duke@435 188
duke@435 189 NoHandleMark::~NoHandleMark() {
duke@435 190 HandleArea* area = Thread::current()->handle_area();
duke@435 191 assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" );
duke@435 192 area->_no_handle_mark_nesting--;
duke@435 193 }
duke@435 194
duke@435 195
duke@435 196 ResetNoHandleMark::ResetNoHandleMark() {
duke@435 197 HandleArea* area = Thread::current()->handle_area();
duke@435 198 _no_handle_mark_nesting = area->_no_handle_mark_nesting;
duke@435 199 area->_no_handle_mark_nesting = 0;
duke@435 200 }
duke@435 201
duke@435 202
duke@435 203 ResetNoHandleMark::~ResetNoHandleMark() {
duke@435 204 HandleArea* area = Thread::current()->handle_area();
duke@435 205 area->_no_handle_mark_nesting = _no_handle_mark_nesting;
duke@435 206 }
duke@435 207
duke@435 208 #endif

mercurial