24
24
/*
25
25
* @test id=default
26
26
* @summary Test virtual thread with monitor enter/exit
27
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
27
28
* @modules java.base/java.lang:+open
28
29
* @library /test/lib
29
30
* @run junit/othervm --enable-native-access=ALL-UNNAMED MonitorEnterExit
30
31
*/
31
32
32
33
/*
33
- * @test id=Xint
34
+ * @test id=default-LM_LEGACY
35
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
36
+ * @modules java.base/java.lang:+open
37
+ * @library /test/lib
38
+ * @run junit/othervm -XX:LockingMode=1 --enable-native-access=ALL-UNNAMED MonitorEnterExit
39
+ */
40
+
41
+ /*
42
+ * @test id=default-LM_LIGHTWEIGHT
43
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
44
+ * @modules java.base/java.lang:+open
45
+ * @library /test/lib
46
+ * @run junit/othervm -XX:LockingMode=1 --enable-native-access=ALL-UNNAMED MonitorEnterExit
47
+ */
48
+
49
+ /*
50
+ * @test id=Xint-LM_LEGACY
51
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
34
52
* @modules java.base/java.lang:+open
35
53
* @library /test/lib
36
54
* @run junit/othervm -Xint -XX:LockingMode=1 --enable-native-access=ALL-UNNAMED MonitorEnterExit
55
+ */
56
+
57
+ /*
58
+ * @test id=Xint-LM_LIGHTWEIGHT
59
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
60
+ * @modules java.base/java.lang:+open
61
+ * @library /test/lib
37
62
* @run junit/othervm -Xint -XX:LockingMode=2 --enable-native-access=ALL-UNNAMED MonitorEnterExit
38
63
*/
39
64
40
65
/*
41
- * @test id=TieredStopAtLevel1
66
+ * @test id=Xcomp-TieredStopAtLevel1-LM_LEGACY
67
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
42
68
* @modules java.base/java.lang:+open
43
69
* @library /test/lib
44
70
* @run junit/othervm -Xcomp -XX:TieredStopAtLevel=1 -XX:LockingMode=1 --enable-native-access=ALL-UNNAMED MonitorEnterExit
71
+ */
72
+
73
+ /*
74
+ * @test id=Xcomp-TieredStopAtLevel1-LM_LIGHTWEIGHT
75
+ * @modules java.base/java.lang:+open
76
+ * @library /test/lib
45
77
* @run junit/othervm -Xcomp -XX:TieredStopAtLevel=1 -XX:LockingMode=2 --enable-native-access=ALL-UNNAMED MonitorEnterExit
46
78
*/
47
79
48
80
/*
49
- * @test id=noTieredCompilation
81
+ * @test id=Xcomp-noTieredCompilation-LM_LEGACY
82
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
50
83
* @modules java.base/java.lang:+open
51
84
* @library /test/lib
52
85
* @run junit/othervm -Xcomp -XX:-TieredCompilation -XX:LockingMode=1 --enable-native-access=ALL-UNNAMED MonitorEnterExit
86
+ */
87
+
88
+ /*
89
+ * @test id=Xcomp-noTieredCompilation-LM_LIGHTWEIGHT
90
+ * @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
91
+ * @modules java.base/java.lang:+open
92
+ * @library /test/lib
53
93
* @run junit/othervm -Xcomp -XX:-TieredCompilation -XX:LockingMode=2 --enable-native-access=ALL-UNNAMED MonitorEnterExit
54
94
*/
55
95
66
106
import java .util .stream .IntStream ;
67
107
import java .util .stream .Stream ;
68
108
69
- import jdk .test .lib .Platform ;
70
109
import jdk .test .lib .thread .VThreadRunner ;
71
110
import jdk .test .lib .thread .VThreadPinner ;
72
111
@@ -98,6 +137,22 @@ void testEnterNoContention() throws Exception {
98
137
});
99
138
}
100
139
140
+ /**
141
+ * Test monitor enter with contention, monitor is held by platform thread.
142
+ */
143
+ @ Test
144
+ void testEnterWhenHeldByPlatformThread () throws Exception {
145
+ testEnterWithContention ();
146
+ }
147
+
148
+ /**
149
+ * Test monitor enter with contention, monitor is held by virtual thread.
150
+ */
151
+ @ Test
152
+ void testEnterWhenHeldByVirtualThread () throws Exception {
153
+ VThreadRunner .run (this ::testEnterWithContention );
154
+ }
155
+
101
156
/**
102
157
* Test monitor enter with contention, monitor will be held by caller thread.
103
158
*/
@@ -129,22 +184,6 @@ private void testEnterWithContention() throws Exception {
129
184
assertTrue (entered .get ());
130
185
}
131
186
132
- /**
133
- * Test monitor enter with contention, monitor is held by platform thread.
134
- */
135
- @ Test
136
- void testEnterWhenHeldByPlatformThread () throws Exception {
137
- testEnterWithContention ();
138
- }
139
-
140
- /**
141
- * Test monitor enter with contention, monitor is held by virtual thread.
142
- */
143
- @ Test
144
- void testEnterWhenHeldByVirtualThread () throws Exception {
145
- VThreadRunner .run (this ::testEnterWithContention );
146
- }
147
-
148
187
/**
149
188
* Test monitor reenter.
150
189
*/
@@ -171,7 +210,6 @@ private void testReenter(Object lock, int depth) {
171
210
* Test monitor reenter when there are other threads blocked trying to enter.
172
211
*/
173
212
@ Test
174
- // @EnabledIf("platformIsX64")
175
213
void testReenterWithContention () throws Exception {
176
214
var lock = new Object ();
177
215
VThreadRunner .run (() -> {
@@ -248,6 +286,28 @@ void testReenterWhenPinned() throws Exception {
248
286
});
249
287
}
250
288
289
+ /**
290
+ * Test contended monitor enter when pinned. Monitor is held by platform thread.
291
+ */
292
+ @ Test
293
+ void testContendedEnterWhenPinnedHeldByPlatformThread () throws Exception {
294
+ testEnterWithContentionWhenPinned ();
295
+ }
296
+
297
+ /**
298
+ * Test contended monitor enter when pinned. Monitor is held by virtual thread.
299
+ */
300
+ @ Test
301
+ void testContendedEnterWhenPinnedHeldByVirtualThread () throws Exception {
302
+ // need at least two carrier threads
303
+ int previousParallelism = VThreadRunner .ensureParallelism (2 );
304
+ try {
305
+ VThreadRunner .run (this ::testEnterWithContentionWhenPinned );
306
+ } finally {
307
+ VThreadRunner .setParallelism (previousParallelism );
308
+ }
309
+ }
310
+
251
311
/**
252
312
* Test contended monitor enter when pinned, monitor will be held by caller thread.
253
313
*/
@@ -276,33 +336,10 @@ private void testEnterWithContentionWhenPinned() throws Exception {
276
336
assertTrue (entered .get ());
277
337
}
278
338
279
- /**
280
- * Test contended monitor enter when pinned. Monitor is held by platform thread.
281
- */
282
- @ Test
283
- void testContendedEnterWhenPinnedHeldByPlatformThread () throws Exception {
284
- testEnterWithContentionWhenPinned ();
285
- }
286
-
287
- /**
288
- * Test contended monitor enter when pinned. Monitor is held by virtual thread.
289
- */
290
- @ Test
291
- void testContendedEnterWhenPinnedHeldByVirtualThread () throws Exception {
292
- // need at least two carrier threads
293
- int previousParallelism = VThreadRunner .ensureParallelism (2 );
294
- try {
295
- VThreadRunner .run (this ::testEnterWithContentionWhenPinned );
296
- } finally {
297
- VThreadRunner .setParallelism (previousParallelism );
298
- }
299
- }
300
-
301
339
/**
302
340
* Test that parking while holding a monitor releases the carrier.
303
341
*/
304
342
@ ParameterizedTest
305
- // @EnabledIf("platformIsX64")
306
343
@ ValueSource (booleans = { true , false })
307
344
void testReleaseWhenParked (boolean reenter ) throws Exception {
308
345
assumeTrue (ThreadBuilders .supportsCustomScheduler (), "No support for custom schedulers" );
@@ -349,7 +386,6 @@ void testReleaseWhenParked(boolean reenter) throws Exception {
349
386
* Test that blocking waiting to enter a monitor releases the carrier.
350
387
*/
351
388
@ Test
352
- // @EnabledIf("platformIsX64")
353
389
void testReleaseWhenBlocked () throws Exception {
354
390
assumeTrue (ThreadBuilders .supportsCustomScheduler (), "No support for custom schedulers" );
355
391
try (ExecutorService scheduler = Executors .newFixedThreadPool (1 )) {
@@ -389,10 +425,9 @@ void testReleaseWhenBlocked() throws Exception {
389
425
/**
390
426
* Test lots of virtual threads parked while holding a monitor. If the number of
391
427
* virtual threads exceeds the number of carrier threads then this test will hang if
392
- * carriers aren 't released .
428
+ * parking doesn 't release the carrier .
393
429
*/
394
430
@ Test
395
- // @EnabledIf("platformIsX64")
396
431
void testManyParkedThreads () throws Exception {
397
432
Thread [] vthreads = new Thread [MAX_VTHREAD_COUNT ];
398
433
var done = new AtomicBoolean ();
@@ -428,7 +463,6 @@ void testManyParkedThreads() throws Exception {
428
463
* carriers aren't released.
429
464
*/
430
465
@ Test
431
- // @EnabledIf("platformIsX64")
432
466
void testManyBlockedThreads () throws Exception {
433
467
Thread [] vthreads = new Thread [MAX_VTHREAD_COUNT ];
434
468
var lock = new Object ();
@@ -484,13 +518,15 @@ synchronized void increment() {
484
518
var threads = new Thread [nThreads ];
485
519
int index = 0 ;
486
520
for (int i = 0 ; i < nPlatformThreads ; i ++) {
487
- threads [index ] = Thread .ofPlatform ().unstarted (counter ::increment );
488
- threads [index ].setName ("platform-" + index );
521
+ threads [index ] = Thread .ofPlatform ()
522
+ .name ("platform-" + index )
523
+ .unstarted (counter ::increment );
489
524
index ++;
490
525
}
491
526
for (int i = 0 ; i < nVirtualThreads ; i ++) {
492
- threads [index ] = Thread .ofVirtual ().unstarted (counter ::increment );
493
- threads [index ].setName ("virtual-" + index );
527
+ threads [index ] = Thread .ofVirtual ()
528
+ .name ("virtual-" + index )
529
+ .unstarted (counter ::increment );
494
530
index ++;
495
531
}
496
532
// start all threads
@@ -504,6 +540,23 @@ synchronized void increment() {
504
540
assertEquals (nThreads , counter .count );
505
541
}
506
542
543
+ /**
544
+ * Test unblocking a virtual thread waiting to enter a monitor held by a platform thread.
545
+ */
546
+ @ RepeatedTest (20 )
547
+ void testUnblockingByPlatformThread () throws Exception {
548
+ testUnblocking ();
549
+ }
550
+
551
+ /**
552
+ * Test unblocking a virtual thread waiting to enter a monitor held by another
553
+ * virtual thread.
554
+ */
555
+ @ RepeatedTest (20 )
556
+ void testUnblockingByVirtualThread () throws Exception {
557
+ VThreadRunner .run (this ::testUnblocking );
558
+ }
559
+
507
560
/**
508
561
* Test unblocking a virtual thread waiting to enter a monitor, monitor will be
509
562
* initially be held by caller thread.
@@ -540,23 +593,6 @@ private void testUnblocking() throws Exception {
540
593
assertTrue (entered .get ());
541
594
}
542
595
543
- /**
544
- * Test unblocking a virtual thread waiting to enter a monitor held by a platform thread.
545
- */
546
- @ RepeatedTest (20 )
547
- void testUnblockingByPlatformThread () throws Exception {
548
- testUnblocking ();
549
- }
550
-
551
- /**
552
- * Test unblocking a virtual thread waiting to enter a monitor held by another
553
- * virtual thread.
554
- */
555
- @ RepeatedTest (20 )
556
- void testUnblockingByVirtualThread () throws Exception {
557
- VThreadRunner .run (this ::testUnblocking );
558
- }
559
-
560
596
/**
561
597
* Test that unblocking a virtual thread waiting to enter a monitor does not consume
562
598
* the thread's parking permit.
@@ -624,8 +660,4 @@ private void await(Thread thread, Thread.State expectedState) throws Interrupted
624
660
state = thread .getState ();
625
661
}
626
662
}
627
-
628
- static boolean platformIsX64 () {
629
- return Platform .isX64 ();
630
- }
631
663
}
0 commit comments