File tree 4 files changed +7
-21
lines changed
src/hotspot/share/gc/shenandoah
test/hotspot/jtreg/gc/shenandoah/generational
4 files changed +7
-21
lines changed Original file line number Diff line number Diff line change 36
36
#include " gc/shenandoah/shenandoahMark.inline.hpp"
37
37
#include " gc/shenandoah/shenandoahMonitoringSupport.hpp"
38
38
#include " gc/shenandoah/shenandoahOopClosures.inline.hpp"
39
+ #include " gc/shenandoah/shenandoahOldGC.hpp"
39
40
#include " gc/shenandoah/shenandoahRootProcessor.inline.hpp"
40
41
#include " gc/shenandoah/shenandoahUtils.hpp"
41
42
#include " gc/shenandoah/shenandoahVMOperations.hpp"
47
48
#include " memory/metaspaceStats.hpp"
48
49
#include " memory/universe.hpp"
49
50
#include " runtime/atomic.hpp"
50
- #include " shenandoahOldGC.hpp"
51
51
52
52
ShenandoahControlThread::ShenandoahControlThread () :
53
53
ConcurrentGCThread(),
@@ -230,6 +230,8 @@ void ShenandoahControlThread::run_service() {
230
230
assert (!gc_requested || cause != GCCause::_last_gc_cause, " GC cause should be set" );
231
231
232
232
if (gc_requested) {
233
+ // GC is starting, bump the internal ID
234
+ update_gc_id ();
233
235
234
236
heap->reset_bytes_allocated_since_gc_start ();
235
237
@@ -273,9 +275,6 @@ void ShenandoahControlThread::run_service() {
273
275
}
274
276
}
275
277
276
- // GC is finished, bump the internal ID before notifying waiters.
277
- update_gc_id ();
278
-
279
278
// If this was the requested GC cycle, notify waiters about it
280
279
if (explicit_gc_requested || implicit_gc_requested) {
281
280
notify_gc_waiters ();
Original file line number Diff line number Diff line change 31
31
* @summary Test argument processing for -XX:+ShenandoahGCMode=generational.
32
32
* @library /testlibrary /test/lib /
33
33
* @build sun.hotspot.WhiteBox
34
- * @run driver ClassFileInstaller sun.hotspot.WhiteBox
34
+ * @run driver jdk.test.lib.helpers. ClassFileInstaller sun.hotspot.WhiteBox
35
35
* @run main/othervm -Xbootclasspath/a:.
36
36
* -XX:+IgnoreUnrecognizedVMOptions
37
37
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
Original file line number Diff line number Diff line change 28
28
import java .util .Random ;
29
29
import java .util .HashMap ;
30
30
31
- /* WARNING!
32
- * As of the date on which this test was added into the jtreg suite, heuristic
33
- * of old-gen GC passes is very simplistic. A further shortcoming of the
34
- * Generational Shenandoah as of introduction of this test is that it does
35
- * not currently support full GC. If garbage collection falls behind mutator
36
- * allocations, a full GC will be triggered and Generational Shenandoah will
37
- * abort itself with an assertion error. Both of these limitations will be
38
- * addressed in future releases of Generational Shenandoah.
39
- *
31
+ /*
40
32
* To avoid the risk of false regressions identified by this test, the heap
41
33
* size is set artificially high. Though this test is known to run reliably
42
34
* in 66 MB heap, the heap size for this test run is currently set to 256 MB.
48
40
* @summary Confirm that card marking and remembered set scanning do not crash.
49
41
* @library /testlibrary /test/lib /
50
42
* @build sun.hotspot.WhiteBox
51
- * @run driver ClassFileInstaller sun.hotspot.WhiteBox
43
+ * @run driver jdk.test.lib.helpers. ClassFileInstaller sun.hotspot.WhiteBox
52
44
* @run main/othervm -Xbootclasspath/a:.
53
45
* -Xms256m -Xmx256m
54
46
* -XX:+IgnoreUnrecognizedVMOptions
Original file line number Diff line number Diff line change 33
33
* @summary Confirm that card marking and remembered set scanning do not crash.
34
34
* @library /testlibrary /test/lib /
35
35
* @build sun.hotspot.WhiteBox
36
- * @run driver ClassFileInstaller sun.hotspot.WhiteBox
36
+ * @run driver jdk.test.lib.helpers. ClassFileInstaller sun.hotspot.WhiteBox
37
37
* @run main/othervm -Xbootclasspath/a:.
38
38
* -XX:+IgnoreUnrecognizedVMOptions
39
39
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
40
40
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=generational
41
41
* gc.shenandoah.generational.TestSimpleGenerational
42
42
*/
43
-
44
- /* This used to be part of the run command, but caused problems.
45
- * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
46
- */
47
-
48
43
public class TestSimpleGenerational {
49
44
private static WhiteBox wb = WhiteBox .getWhiteBox ();
50
45
static private final int SeedForRandom = 46 ;
You can’t perform that action at this time.
0 commit comments