author | stefank |
Fri, 14 Feb 2014 09:29:56 +0100 | |
changeset 22883 | 5378704451dc |
parent 22234 | da823d78ad65 |
child 23540 | 06f7d6e1f654 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
20079
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, 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:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
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:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "memory/gcLocker.inline.hpp" |
|
27 |
#include "memory/resourceArea.hpp" |
|
28 |
#include "memory/sharedHeap.hpp" |
|
1 | 29 |
|
30 |
volatile jint GC_locker::_jni_lock_count = 0; |
|
31 |
volatile jint GC_locker::_lock_count = 0; |
|
32 |
volatile bool GC_locker::_needs_gc = false; |
|
33 |
volatile bool GC_locker::_doing_gc = false; |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
34 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
35 |
#ifdef ASSERT |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
36 |
volatile jint GC_locker::_debug_jni_lock_count = 0; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
37 |
#endif |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
38 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
39 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
40 |
#ifdef ASSERT |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
41 |
void GC_locker::verify_critical_count() { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
42 |
if (SafepointSynchronize::is_at_safepoint()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
43 |
assert(!needs_gc() || _debug_jni_lock_count == _jni_lock_count, "must agree"); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
44 |
int count = 0; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
45 |
// Count the number of threads with critical operations in progress |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
46 |
for (JavaThread* thr = Threads::first(); thr; thr = thr->next()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
47 |
if (thr->in_critical()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
48 |
count++; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
49 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
50 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
51 |
if (_jni_lock_count != count) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
52 |
tty->print_cr("critical counts don't match: %d != %d", _jni_lock_count, count); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
53 |
for (JavaThread* thr = Threads::first(); thr; thr = thr->next()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
54 |
if (thr->in_critical()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
55 |
tty->print_cr(INTPTR_FORMAT " in_critical %d", thr, thr->in_critical()); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
56 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
57 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
58 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
59 |
assert(_jni_lock_count == count, "must be equal"); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
60 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
61 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
62 |
#endif |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
63 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
64 |
bool GC_locker::check_active_before_gc() { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
65 |
assert(SafepointSynchronize::is_at_safepoint(), "only read at safepoint"); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
66 |
if (is_active() && !_needs_gc) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
67 |
verify_critical_count(); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
68 |
_needs_gc = true; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
69 |
if (PrintJNIGCStalls && PrintGCDetails) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
70 |
ResourceMark rm; // JavaThread::name() allocates to convert to UTF8 |
11788 | 71 |
gclog_or_tty->print_cr("%.3f: Setting _needs_gc. Thread \"%s\" %d locked.", |
72 |
gclog_or_tty->time_stamp().seconds(), Thread::current()->name(), _jni_lock_count); |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
73 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
74 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
75 |
} |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
76 |
return is_active(); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
77 |
} |
1 | 78 |
|
79 |
void GC_locker::stall_until_clear() { |
|
80 |
assert(!JavaThread::current()->in_critical(), "Would deadlock"); |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
81 |
MutexLocker ml(JNICritical_lock); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
82 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
83 |
if (needs_gc()) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
84 |
if (PrintJNIGCStalls && PrintGCDetails) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
85 |
ResourceMark rm; // JavaThread::name() allocates to convert to UTF8 |
11788 | 86 |
gclog_or_tty->print_cr("%.3f: Allocation failed. Thread \"%s\" is stalled by JNI critical section, %d locked.", |
87 |
gclog_or_tty->time_stamp().seconds(), Thread::current()->name(), _jni_lock_count); |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
88 |
} |
386
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
1
diff
changeset
|
89 |
} |
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
90 |
|
1 | 91 |
// Wait for _needs_gc to be cleared |
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
92 |
while (needs_gc()) { |
1 | 93 |
JNICritical_lock->wait(); |
94 |
} |
|
95 |
} |
|
96 |
||
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
97 |
void GC_locker::jni_lock(JavaThread* thread) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
98 |
assert(!thread->in_critical(), "shouldn't currently be in a critical region"); |
1 | 99 |
MutexLocker mu(JNICritical_lock); |
100 |
// Block entering threads if we know at least one thread is in a |
|
101 |
// JNI critical region and we need a GC. |
|
102 |
// We check that at least one thread is in a critical region before |
|
103 |
// blocking because blocked threads are woken up by a thread exiting |
|
104 |
// a JNI critical region. |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
105 |
while ((needs_gc() && is_jni_active()) || _doing_gc) { |
1 | 106 |
JNICritical_lock->wait(); |
107 |
} |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
108 |
thread->enter_critical(); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
109 |
_jni_lock_count++; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
110 |
increment_debug_jni_lock_count(); |
1 | 111 |
} |
112 |
||
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
113 |
void GC_locker::jni_unlock(JavaThread* thread) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
114 |
assert(thread->in_last_critical(), "should be exiting critical region"); |
1 | 115 |
MutexLocker mu(JNICritical_lock); |
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
116 |
_jni_lock_count--; |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
117 |
decrement_debug_jni_lock_count(); |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
118 |
thread->exit_critical(); |
1 | 119 |
if (needs_gc() && !is_jni_active()) { |
120 |
// We're the last thread out. Cause a GC to occur. |
|
121 |
// GC will also check is_active, so this check is not |
|
122 |
// strictly needed. It's added here to make it clear that |
|
123 |
// the GC will NOT be performed if any other caller |
|
124 |
// of GC_locker::lock() still needs GC locked. |
|
20079 | 125 |
if (!is_active_internal()) { |
1 | 126 |
_doing_gc = true; |
127 |
{ |
|
128 |
// Must give up the lock while at a safepoint |
|
129 |
MutexUnlocker munlock(JNICritical_lock); |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
130 |
if (PrintJNIGCStalls && PrintGCDetails) { |
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
131 |
ResourceMark rm; // JavaThread::name() allocates to convert to UTF8 |
11788 | 132 |
gclog_or_tty->print_cr("%.3f: Thread \"%s\" is performing GC after exiting critical section, %d locked", |
133 |
gclog_or_tty->time_stamp().seconds(), Thread::current()->name(), _jni_lock_count); |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
134 |
} |
1 | 135 |
Universe::heap()->collect(GCCause::_gc_locker); |
136 |
} |
|
137 |
_doing_gc = false; |
|
138 |
} |
|
11631
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
139 |
|
33813f69207b
7129164: JNI Get/ReleasePrimitiveArrayCritical doesn't scale
never
parents:
7397
diff
changeset
|
140 |
_needs_gc = false; |
1 | 141 |
JNICritical_lock->notify_all(); |
142 |
} |
|
143 |
} |
|
144 |
||
145 |
// Implementation of No_GC_Verifier |
|
146 |
||
147 |
#ifdef ASSERT |
|
148 |
||
149 |
No_GC_Verifier::No_GC_Verifier(bool verifygc) { |
|
150 |
_verifygc = verifygc; |
|
151 |
if (_verifygc) { |
|
152 |
CollectedHeap* h = Universe::heap(); |
|
153 |
assert(!h->is_gc_active(), "GC active during No_GC_Verifier"); |
|
154 |
_old_invocations = h->total_collections(); |
|
155 |
} |
|
156 |
} |
|
157 |
||
158 |
||
159 |
No_GC_Verifier::~No_GC_Verifier() { |
|
160 |
if (_verifygc) { |
|
161 |
CollectedHeap* h = Universe::heap(); |
|
162 |
assert(!h->is_gc_active(), "GC active during No_GC_Verifier"); |
|
163 |
if (_old_invocations != h->total_collections()) { |
|
164 |
fatal("collection in a No_GC_Verifier secured function"); |
|
165 |
} |
|
166 |
} |
|
167 |
} |
|
168 |
||
169 |
Pause_No_GC_Verifier::Pause_No_GC_Verifier(No_GC_Verifier * ngcv) { |
|
170 |
_ngcv = ngcv; |
|
171 |
if (_ngcv->_verifygc) { |
|
172 |
// if we were verifying, then make sure that nothing is |
|
173 |
// wrong before we "pause" verification |
|
174 |
CollectedHeap* h = Universe::heap(); |
|
175 |
assert(!h->is_gc_active(), "GC active during No_GC_Verifier"); |
|
176 |
if (_ngcv->_old_invocations != h->total_collections()) { |
|
177 |
fatal("collection in a No_GC_Verifier secured function"); |
|
178 |
} |
|
179 |
} |
|
180 |
} |
|
181 |
||
182 |
||
183 |
Pause_No_GC_Verifier::~Pause_No_GC_Verifier() { |
|
184 |
if (_ngcv->_verifygc) { |
|
185 |
// if we were verifying before, then reenable verification |
|
186 |
CollectedHeap* h = Universe::heap(); |
|
187 |
assert(!h->is_gc_active(), "GC active during No_GC_Verifier"); |
|
188 |
_ngcv->_old_invocations = h->total_collections(); |
|
189 |
} |
|
190 |
} |
|
191 |
||
192 |
||
193 |
// JRT_LEAF rules: |
|
194 |
// A JRT_LEAF method may not interfere with safepointing by |
|
195 |
// 1) acquiring or blocking on a Mutex or JavaLock - checked |
|
196 |
// 2) allocating heap memory - checked |
|
197 |
// 3) executing a VM operation - checked |
|
198 |
// 4) executing a system call (including malloc) that could block or grab a lock |
|
199 |
// 5) invoking GC |
|
200 |
// 6) reaching a safepoint |
|
201 |
// 7) running too long |
|
202 |
// Nor may any method it calls. |
|
203 |
JRT_Leaf_Verifier::JRT_Leaf_Verifier() |
|
204 |
: No_Safepoint_Verifier(true, JRT_Leaf_Verifier::should_verify_GC()) |
|
205 |
{ |
|
206 |
} |
|
207 |
||
208 |
JRT_Leaf_Verifier::~JRT_Leaf_Verifier() |
|
209 |
{ |
|
210 |
} |
|
211 |
||
212 |
bool JRT_Leaf_Verifier::should_verify_GC() { |
|
213 |
switch (JavaThread::current()->thread_state()) { |
|
214 |
case _thread_in_Java: |
|
215 |
// is in a leaf routine, there must be no safepoint. |
|
216 |
return true; |
|
217 |
case _thread_in_native: |
|
218 |
// A native thread is not subject to safepoints. |
|
219 |
// Even while it is in a leaf routine, GC is ok |
|
220 |
return false; |
|
221 |
default: |
|
222 |
// Leaf routines cannot be called from other contexts. |
|
223 |
ShouldNotReachHere(); |
|
224 |
return false; |
|
225 |
} |
|
226 |
} |
|
227 |
#endif |