author | jwilhelm |
Tue, 03 Mar 2015 18:01:27 +0100 | |
changeset 29697 | 92501504191b |
parent 29199 | db7ae483ecb2 |
child 33105 | 294e48b4f704 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29199
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
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 | 28 |
#include "oops/oop.inline.hpp" |
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24424
diff
changeset
|
29 |
#include "runtime/atomic.inline.hpp" |
7397 | 30 |
#include "runtime/handles.inline.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14120
diff
changeset
|
31 |
#include "runtime/thread.inline.hpp" |
1 | 32 |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
21198
diff
changeset
|
33 |
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
21198
diff
changeset
|
34 |
|
1 | 35 |
#ifdef ASSERT |
36 |
oop* HandleArea::allocate_handle(oop obj) { |
|
37 |
assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark"); |
|
38 |
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
|
39 |
assert(obj->is_oop(), err_msg("not an oop: " INTPTR_FORMAT, (intptr_t*) obj)); |
1 | 40 |
return real_allocate_handle(obj); |
41 |
} |
|
42 |
||
43 |
Handle::Handle(Thread* thread, oop obj) { |
|
44 |
assert(thread == Thread::current(), "sanity check"); |
|
45 |
if (obj == NULL) { |
|
46 |
_handle = NULL; |
|
47 |
} else { |
|
48 |
_handle = thread->handle_area()->allocate_handle(obj); |
|
49 |
} |
|
50 |
} |
|
51 |
||
52 |
#endif |
|
53 |
||
54 |
static uintx chunk_oops_do(OopClosure* f, Chunk* chunk, char* chunk_top) { |
|
55 |
oop* bottom = (oop*) chunk->bottom(); |
|
56 |
oop* top = (oop*) chunk_top; |
|
57 |
uintx handles_visited = top - bottom; |
|
58 |
assert(top >= bottom && top <= (oop*) chunk->top(), "just checking"); |
|
59 |
// during GC phase 3, a handle may be a forward pointer that |
|
60 |
// is not yet valid, so loosen the assertion |
|
61 |
while (bottom < top) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
62 |
// 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
|
63 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
64 |
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
|
65 |
|
1 | 66 |
f->do_oop(bottom++); |
67 |
} |
|
68 |
return handles_visited; |
|
69 |
} |
|
70 |
||
71 |
// Used for debugging handle allocation. |
|
72 |
NOT_PRODUCT(jint _nof_handlemarks = 0;) |
|
73 |
||
74 |
void HandleArea::oops_do(OopClosure* f) { |
|
75 |
uintx handles_visited = 0; |
|
76 |
// First handle the current chunk. It is filled to the high water mark. |
|
77 |
handles_visited += chunk_oops_do(f, _chunk, _hwm); |
|
78 |
// Then handle all previous chunks. They are completely filled. |
|
79 |
Chunk* k = _first; |
|
80 |
while(k != _chunk) { |
|
81 |
handles_visited += chunk_oops_do(f, k, k->top()); |
|
82 |
k = k->next(); |
|
83 |
} |
|
84 |
||
85 |
// The thread local handle areas should not get very large |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29199
diff
changeset
|
86 |
if (TraceHandleAllocation && (size_t)handles_visited > TotalHandleAllocationLimit) { |
1 | 87 |
#ifdef ASSERT |
88 |
warning("%d: Visited in HandleMark : %d", |
|
89 |
_nof_handlemarks, handles_visited); |
|
90 |
#else |
|
91 |
warning("Visited in HandleMark : %d", handles_visited); |
|
92 |
#endif |
|
93 |
} |
|
94 |
if (_prev != NULL) _prev->oops_do(f); |
|
95 |
} |
|
96 |
||
97 |
void HandleMark::initialize(Thread* thread) { |
|
98 |
_thread = thread; |
|
99 |
// Save area |
|
100 |
_area = thread->handle_area(); |
|
101 |
// Save current top |
|
102 |
_chunk = _area->_chunk; |
|
103 |
_hwm = _area->_hwm; |
|
104 |
_max = _area->_max; |
|
13195 | 105 |
_size_in_bytes = _area->_size_in_bytes; |
1 | 106 |
debug_only(_area->_handle_mark_nesting++); |
107 |
assert(_area->_handle_mark_nesting > 0, "must stack allocate HandleMarks"); |
|
108 |
debug_only(Atomic::inc(&_nof_handlemarks);) |
|
109 |
||
110 |
// Link this in the thread |
|
111 |
set_previous_handle_mark(thread->last_handle_mark()); |
|
112 |
thread->set_last_handle_mark(this); |
|
113 |
} |
|
114 |
||
115 |
||
116 |
HandleMark::~HandleMark() { |
|
117 |
HandleArea* area = _area; // help compilers with poor alias analysis |
|
118 |
assert(area == _thread->handle_area(), "sanity check"); |
|
119 |
assert(area->_handle_mark_nesting > 0, "must stack allocate HandleMarks" ); |
|
120 |
debug_only(area->_handle_mark_nesting--); |
|
121 |
||
122 |
// Debug code to trace the number of handles allocated per mark/ |
|
123 |
#ifdef ASSERT |
|
124 |
if (TraceHandleAllocation) { |
|
125 |
size_t handles = 0; |
|
126 |
Chunk *c = _chunk->next(); |
|
127 |
if (c == NULL) { |
|
128 |
handles = area->_hwm - _hwm; // no new chunk allocated |
|
129 |
} else { |
|
130 |
handles = _max - _hwm; // add rest in first chunk |
|
131 |
while(c != NULL) { |
|
132 |
handles += c->length(); |
|
133 |
c = c->next(); |
|
134 |
} |
|
135 |
handles -= area->_max - area->_hwm; // adjust for last trunk not full |
|
136 |
} |
|
137 |
handles /= sizeof(void *); // Adjust for size of a handle |
|
138 |
if (handles > HandleAllocationLimit) { |
|
139 |
// Note: _nof_handlemarks is only set in debug mode |
|
140 |
warning("%d: Allocated in HandleMark : %d", _nof_handlemarks, handles); |
|
141 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
142 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
143 |
tty->print_cr("Handles %d", handles); |
1 | 144 |
} |
145 |
#endif |
|
146 |
||
147 |
// Delete later chunks |
|
148 |
if( _chunk->next() ) { |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
14078
diff
changeset
|
149 |
// 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
|
150 |
// arena size could exceed total chunk size |
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
14078
diff
changeset
|
151 |
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
|
152 |
area->set_size_in_bytes(size_in_bytes()); |
1 | 153 |
_chunk->next_chop(); |
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
14078
diff
changeset
|
154 |
} else { |
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
14078
diff
changeset
|
155 |
assert(area->size_in_bytes() == size_in_bytes(), "Sanity check"); |
1 | 156 |
} |
157 |
// Roll back arena to saved top markers |
|
158 |
area->_chunk = _chunk; |
|
159 |
area->_hwm = _hwm; |
|
160 |
area->_max = _max; |
|
161 |
#ifdef ASSERT |
|
162 |
// clear out first chunk (to detect allocation bugs) |
|
163 |
if (ZapVMHandleArea) { |
|
164 |
memset(_hwm, badHandleValue, _max - _hwm); |
|
165 |
} |
|
166 |
Atomic::dec(&_nof_handlemarks); |
|
167 |
#endif |
|
168 |
||
169 |
// Unlink this from the thread |
|
170 |
_thread->set_last_handle_mark(previous_handle_mark()); |
|
171 |
} |
|
172 |
||
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
17376
diff
changeset
|
173 |
void* HandleMark::operator new(size_t size) throw() { |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
174 |
return AllocateHeap(size, mtThread); |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
175 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
176 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
17376
diff
changeset
|
177 |
void* HandleMark::operator new [] (size_t size) throw() { |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
178 |
return AllocateHeap(size, mtThread); |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
179 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
180 |
|
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
181 |
void HandleMark::operator delete(void* p) { |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
25468
diff
changeset
|
182 |
FreeHeap(p); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
183 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
184 |
|
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
185 |
void HandleMark::operator delete[](void* p) { |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
25468
diff
changeset
|
186 |
FreeHeap(p); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
187 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
14583
diff
changeset
|
188 |
|
1 | 189 |
#ifdef ASSERT |
190 |
||
191 |
NoHandleMark::NoHandleMark() { |
|
192 |
HandleArea* area = Thread::current()->handle_area(); |
|
193 |
area->_no_handle_mark_nesting++; |
|
194 |
assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" ); |
|
195 |
} |
|
196 |
||
197 |
||
198 |
NoHandleMark::~NoHandleMark() { |
|
199 |
HandleArea* area = Thread::current()->handle_area(); |
|
200 |
assert(area->_no_handle_mark_nesting > 0, "must stack allocate NoHandleMark" ); |
|
201 |
area->_no_handle_mark_nesting--; |
|
202 |
} |
|
203 |
||
204 |
||
205 |
ResetNoHandleMark::ResetNoHandleMark() { |
|
206 |
HandleArea* area = Thread::current()->handle_area(); |
|
207 |
_no_handle_mark_nesting = area->_no_handle_mark_nesting; |
|
208 |
area->_no_handle_mark_nesting = 0; |
|
209 |
} |
|
210 |
||
211 |
||
212 |
ResetNoHandleMark::~ResetNoHandleMark() { |
|
213 |
HandleArea* area = Thread::current()->handle_area(); |
|
214 |
area->_no_handle_mark_nesting = _no_handle_mark_nesting; |
|
215 |
} |
|
216 |
||
29199
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27880
diff
changeset
|
217 |
bool instanceKlassHandle::is_instanceKlass(const Klass* k) { |
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27880
diff
changeset
|
218 |
return k->oop_is_instance(); |
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27880
diff
changeset
|
219 |
} |
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27880
diff
changeset
|
220 |
|
1 | 221 |
#endif |