1
1
/*
2
- * Copyright (c) 2002, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2002, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
30
30
*
31
31
* @library /vmTestbase
32
32
* /test/lib
33
+ * @build jdk.test.whitebox.WhiteBox
34
+ * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
33
35
* @run main/othervm
34
- * -XX:-UseGCOverheadLimit
36
+ * -Xbootclasspath/a:.
37
+ * -XX:+UnlockDiagnosticVMOptions
38
+ * -XX:+WhiteBoxAPI
35
39
* gc.gctests.ReferencesGC.ReferencesGC
36
40
* -range 200
37
41
* -ratio 0.9
41
45
package gc .gctests .ReferencesGC ;
42
46
43
47
import java .lang .ref .*;
48
+
49
+ import jdk .test .whitebox .WhiteBox ;
44
50
import nsk .share .TestFailure ;
45
- import nsk .share .gc .Algorithms ;
46
51
import nsk .share .gc .GC ;
47
52
import nsk .share .gc .ThreadedGCTest ;
48
- import nsk .share .gc .gp .GarbageProducer ;
49
- import nsk .share .gc .gp .GarbageUtils ;
50
53
import nsk .share .test .ExecutionController ;
51
54
52
55
public class ReferencesGC extends ThreadedGCTest {
@@ -87,7 +90,6 @@ private class Worker implements Runnable {
87
90
WeakReference wr [] = new WeakReference [RANGE ];
88
91
SoftReference sr [] = new SoftReference [RANGE ];
89
92
PhantomReference phr [] = new PhantomReference [RANGE ];
90
- GarbageProducer gp = GarbageUtils .getArrayProducers ().get (0 );
91
93
int iter = 0 ;
92
94
93
95
@ Override
@@ -98,21 +100,16 @@ public void run() {
98
100
99
101
while (stresser .continueExecution ()) {
100
102
int totalLive = 0 ;
101
- try {
102
- refq = new ReferenceQueue ();
103
- alive = new int [3 ];
104
- wrong = new int [3 ];
105
- for (int j = 0 ; j < RANGE ; j ++) {
106
- holder [j ] = new CircularLinkedList ();
107
- holder [j ].addNelements (300 );
108
- wr [j ] = new WeakReference (holder [j ], refq );
109
- sr [j ] = new SoftReference (holder [j ], refq );
110
- phr [j ] = new PhantomReference (holder [j ], refq );
111
- }
112
- } catch (OutOfMemoryError oome ) {
113
- // we should just skip the test
114
- // the other thread could eat all memory
115
- continue ;
103
+
104
+ refq = new ReferenceQueue ();
105
+ alive = new int [3 ];
106
+ wrong = new int [3 ];
107
+ for (int j = 0 ; j < RANGE ; j ++) {
108
+ holder [j ] = new CircularLinkedList ();
109
+ holder [j ].addNelements (300 );
110
+ wr [j ] = new WeakReference (holder [j ], refq );
111
+ sr [j ] = new SoftReference (holder [j ], refq );
112
+ phr [j ] = new PhantomReference (holder [j ], refq );
116
113
}
117
114
118
115
for (int i = 0 ; i < RANGE ; i ++) {
@@ -134,12 +131,11 @@ public void run() {
134
131
holder [i ] = null ;
135
132
}
136
133
137
- Algorithms .eatMemory (stresser );
134
+ // WB.fullGC() is guaranteed to clear all kinds of weak references.
135
+ WhiteBox .getWhiteBox ().fullGC ();
138
136
if (!stresser .continueExecution ()) {
139
137
break ;
140
138
}
141
- // At this point OOME was thrown and accordingly to spec
142
- // all weak refs should be processed
143
139
144
140
long waitTime = System .currentTimeMillis () + finalizationMaxTime ;
145
141
int totalQ = 0 ;
0 commit comments