forked from xiaoyvyv/JavaCompile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGC.java
More file actions
284 lines (243 loc) · 9.69 KB
/
GC.java
File metadata and controls
284 lines (243 loc) · 9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
* Copyright (c) 1998, 2006, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.misc;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.SortedSet;
import java.util.TreeSet;
/**
* Support for garbage-collection latency requests.
*
* @author Mark Reinhold
* @since 1.2
*/
public class GC {
private GC() { } /* To prevent instantiation */
/* Latency-target value indicating that there's no active target
*/
private static final long NO_TARGET = Long.MAX_VALUE;
/* The current latency target, or NO_TARGET if there is no target
*/
private static long latencyTarget = NO_TARGET;
/* The daemon thread that implements the latency-target mechanism,
* or null if there is presently no daemon thread
*/
private static Thread daemon = null;
/* The lock object for the latencyTarget and daemon fields. The daemon
* thread, if it exists, waits on this lock for notification that the
* latency target has changed.
*/
private static class LatencyLock extends Object { };
private static Object lock = new LatencyLock();
/**
* Returns the maximum <em>object-inspection age</em>, which is the number
* of real-time milliseconds that have elapsed since the
* least-recently-inspected heap object was last inspected by the garbage
* collector.
*
* <p> For simple stop-the-world collectors this value is just the time
* since the most recent collection. For generational collectors it is the
* time since the oldest generation was most recently collected. Other
* collectors are free to return a pessimistic estimate of the elapsed
* time, or simply the time since the last full collection was performed.
*
* <p> Note that in the presence of reference objects, a given object that
* is no longer strongly reachable may have to be inspected multiple times
* before it can be reclaimed.
*/
public static native long maxObjectInspectionAge();
private static class Daemon extends Thread {
public void run() {
for (;;) {
long l;
synchronized (lock) {
l = latencyTarget;
if (l == NO_TARGET) {
/* No latency target, so exit */
GC.daemon = null;
return;
}
long d = maxObjectInspectionAge();
if (d >= l) {
/* Do a full collection. There is a remote possibility
* that a full collection will occurr between the time
* we sample the inspection age and the time the GC
* actually starts, but this is sufficiently unlikely
* that it doesn't seem worth the more expensive JVM
* interface that would be required.
*/
System.gc();
d = 0;
}
/* Wait for the latency period to expire,
* or for notification that the period has changed
*/
try {
lock.wait(l - d);
} catch (InterruptedException x) {
continue;
}
}
}
}
private Daemon(ThreadGroup tg) {
super(tg, "GC Daemon");
}
/* Create a new daemon thread in the root thread group */
public static void create() {
PrivilegedAction pa = new PrivilegedAction() {
public Object run() {
ThreadGroup tg = Thread.currentThread().getThreadGroup();
for (ThreadGroup tgn = tg;
tgn != null;
tg = tgn, tgn = tg.getParent());
Daemon d = new Daemon(tg);
d.setDaemon(true);
d.setPriority(Thread.MIN_PRIORITY + 1);
d.start();
GC.daemon = d;
return null;
}};
AccessController.doPrivileged(pa);
}
}
/* Sets the latency target to the given value.
* Must be invoked while holding the lock.
*/
private static void setLatencyTarget(long ms) {
latencyTarget = ms;
if (daemon == null) {
/* Create a new daemon thread */
Daemon.create();
} else {
/* Notify the existing daemon thread
* that the lateency target has changed
*/
lock.notify();
}
}
/**
* Represents an active garbage-collection latency request. Instances of
* this class are created by the <code>{@link #requestLatency}</code>
* method. Given a request, the only interesting operation is that of
* cancellation.
*/
public static class LatencyRequest implements Comparable {
/* Instance counter, used to generate unique identifers */
private static long counter = 0;
/* Sorted set of active latency requests */
private static SortedSet requests = null;
/* Examine the request set and reset the latency target if necessary.
* Must be invoked while holding the lock.
*/
private static void adjustLatencyIfNeeded() {
if ((requests == null) || requests.isEmpty()) {
if (latencyTarget != NO_TARGET) {
setLatencyTarget(NO_TARGET);
}
} else {
LatencyRequest r = (LatencyRequest)requests.first();
if (r.latency != latencyTarget) {
setLatencyTarget(r.latency);
}
}
}
/* The requested latency, or NO_TARGET
* if this request has been cancelled
*/
private long latency;
/* Unique identifier for this request */
private long id;
private LatencyRequest(long ms) {
if (ms <= 0) {
throw new IllegalArgumentException("Non-positive latency: "
+ ms);
}
this.latency = ms;
synchronized (lock) {
this.id = ++counter;
if (requests == null) {
requests = new TreeSet();
}
requests.add(this);
adjustLatencyIfNeeded();
}
}
/**
* Cancels this latency request.
*
* @throws IllegalStateException
* If this request has already been cancelled
*/
public void cancel() {
synchronized (lock) {
if (this.latency == NO_TARGET) {
throw new IllegalStateException("Request already"
+ " cancelled");
}
if (!requests.remove(this)) {
throw new InternalError("Latency request "
+ this + " not found");
}
if (requests.isEmpty()) requests = null;
this.latency = NO_TARGET;
adjustLatencyIfNeeded();
}
}
public int compareTo(Object o) {
LatencyRequest r = (LatencyRequest)o;
long d = this.latency - r.latency;
if (d == 0) d = this.id - r.id;
return (d < 0) ? -1 : ((d > 0) ? +1 : 0);
}
public String toString() {
return (LatencyRequest.class.getName()
+ "[" + latency + "," + id + "]");
}
}
/**
* Makes a new request for a garbage-collection latency of the given
* number of real-time milliseconds. A low-priority daemon thread makes a
* best effort to ensure that the maximum object-inspection age never
* exceeds the smallest of the currently active requests.
*
* @param latency
* The requested latency
*
* @throws IllegalArgumentException
* If the given <code>latency</code> is non-positive
*/
public static LatencyRequest requestLatency(long latency) {
return new LatencyRequest(latency);
}
/**
* Returns the current smallest garbage-collection latency request, or zero
* if there are no active requests.
*/
public static long currentLatencyTarget() {
long t = latencyTarget;
return (t == NO_TARGET) ? 0 : t;
}
}