Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/gc/gctests/InterruptGC/InterruptGC.java
41159 views
1
/*
2
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
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
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
25
/*
26
* @test
27
* @key stress randomness
28
*
29
* @summary converted from VM Testbase gc/gctests/InterruptGC.
30
* VM Testbase keywords: [gc, stress, stressopt, nonconcurrent]
31
* VM Testbase readme:
32
* In this test, threads perform garbage collection while constantly
33
* interrupting each other. Another thread generates the garbage.
34
* The test runs for approximately one minute (see nsk.share.runner.ThreadsRunner
35
* and nsk.share.runner.RunParams). The test passes if no exceptions are generated.
36
*
37
* @library /vmTestbase
38
* /test/lib
39
* @run main/othervm gc.gctests.InterruptGC.InterruptGC -gp random(arrays) -ms low
40
*/
41
42
package gc.gctests.InterruptGC;
43
44
import nsk.share.gc.*;
45
import nsk.share.test.*;
46
import nsk.share.gc.gp.*;
47
48
import java.util.*;
49
50
/**
51
* The test starts one thread which generates garbage and several other
52
* thread which continuously do System.gc() and interrupt each other.
53
*/
54
public class InterruptGC extends ThreadedGCTest implements GarbageProducerAware, MemoryStrategyAware {
55
private GarbageProducer garbageProducer;
56
private MemoryStrategy memoryStrategy;
57
private List<Interrupter> interrupters = new ArrayList<Interrupter>();
58
private int count;
59
private long size;
60
61
private class GarbageCreator implements Runnable {
62
public void run() {
63
Object[] arr = new Object[count];
64
for (int i = 0; i < count && getExecutionController().continueExecution(); ++i)
65
arr[i] = garbageProducer.create(size);
66
}
67
}
68
69
private class Interrupter implements Runnable {
70
private Thread thread;
71
72
public void run() {
73
if (thread == null)
74
thread = Thread.currentThread();
75
Interrupter interrupter = interrupters.get(LocalRandom.nextInt(interrupters.size()));
76
Thread thread = interrupter.getThread();
77
if (thread != null)
78
thread.interrupt();
79
System.gc();
80
}
81
82
public Thread getThread() {
83
return thread;
84
}
85
}
86
87
protected Runnable createRunnable(int i) {
88
switch (i) {
89
case 0:
90
return new GarbageCreator();
91
default:
92
Interrupter interrupter = new Interrupter();
93
interrupters.add(interrupter);
94
return interrupter;
95
}
96
}
97
98
public void run() {
99
size = GarbageUtils.getArraySize(runParams.getTestMemory(), memoryStrategy);
100
count = GarbageUtils.getArrayCount(runParams.getTestMemory(), memoryStrategy);
101
super.run();
102
}
103
104
public void setGarbageProducer(GarbageProducer garbageProducer) {
105
this.garbageProducer = garbageProducer;
106
}
107
108
public void setMemoryStrategy(MemoryStrategy memoryStrategy) {
109
this.memoryStrategy = memoryStrategy;
110
}
111
112
public static void main(String[] args) {
113
GC.runTest(new InterruptGC(), args);
114
}
115
}
116
117