24
24
/**
25
25
* @test
26
26
* @bug 8283044
27
+ * @requires vm.compiler1.enabled | vm.compiler2.enabled
27
28
* @summary Stress delivery of asynchronous exceptions.
28
29
* @library /test/lib /test/hotspot/jtreg
29
30
* @build AsyncExceptionTest
30
- * @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
31
- * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI AsyncExceptionTest
31
+ * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xcomp
32
+ -XX:CompileCommand=dontinline,AsyncExceptionTest::internalRun2
33
+ -XX:CompileCommand=compileonly,AsyncExceptionTest::internalRun1
34
+ -XX:CompileCommand=compileonly,AsyncExceptionTest::internalRun2
35
+ AsyncExceptionTest
32
36
*/
33
37
34
- import compiler .testlibrary .CompilerUtils ;
35
- import compiler .whitebox .CompilerWhiteBoxTest ;
36
38
import java .util .concurrent .CountDownLatch ;
37
- import sun .hotspot .WhiteBox ;
38
39
39
40
public class AsyncExceptionTest extends Thread {
40
41
private final static int DEF_TIME_MAX = 30 ; // default max # secs to test
41
42
private final static String PROG_NAME = "AsyncExceptionTest" ;
42
43
43
- public static final WhiteBox WB = WhiteBox .getWhiteBox ();
44
-
45
44
public CountDownLatch exitSyncObj = new CountDownLatch (1 );
46
45
public CountDownLatch startSyncObj = new CountDownLatch (1 );
47
46
48
- private boolean realRun ;
49
47
private boolean firstEntry = true ;
50
48
private boolean receivedThreadDeathinInternal1 = false ;
51
49
private boolean receivedThreadDeathinInternal2 = false ;
52
50
53
- public void setDontInline (String method ) {
54
- java .lang .reflect .Method m ;
55
- try {
56
- m = AsyncExceptionTest .class .getMethod (method );
57
- } catch (NoSuchMethodException e ) {
58
- throw new RuntimeException ("Unexpected: " + e );
59
- }
60
- WB .testSetDontInlineMethod (m , true );
61
- }
62
-
63
- public void checkCompLevel (String method ) {
64
- int highestLevel = CompilerUtils .getMaxCompilationLevel ();
65
- java .lang .reflect .Method m ;
66
- try {
67
- m = AsyncExceptionTest .class .getMethod (method );
68
- } catch (NoSuchMethodException e ) {
69
- throw new RuntimeException ("Unexpected: " + e );
70
- }
71
- int compLevel = WB .getMethodCompilationLevel (m );
72
- while (compLevel < (highestLevel - 1 )) {
73
- try {
74
- Thread .sleep (200 );
75
- } catch (InterruptedException e ) { /* ignored */ }
76
- compLevel = WB .getMethodCompilationLevel (m );
77
- }
78
- }
79
-
80
51
@ Override
81
52
public void run () {
82
53
try {
83
- setDontInline ("internalRun1" );
84
- setDontInline ("internalRun2" );
85
-
86
- int callCount = CompilerWhiteBoxTest .THRESHOLD ;
87
- while (callCount -- > 0 ) {
88
- receivedThreadDeathinInternal2 = false ;
89
- realRun = false ;
90
- internalRun1 ();
91
- }
92
- checkCompLevel ("internalRun1" );
93
- checkCompLevel ("internalRun2" );
94
-
95
- receivedThreadDeathinInternal2 = false ;
96
- realRun = true ;
97
54
internalRun1 ();
98
55
} catch (ThreadDeath td ) {
99
56
throw new RuntimeException ("Catched ThreadDeath in run() instead of internalRun2() or internalRun1(). receivedThreadDeathinInternal1=" + receivedThreadDeathinInternal1 + "; receivedThreadDeathinInternal2=" + receivedThreadDeathinInternal2 );
@@ -108,7 +65,6 @@ public void run() {
108
65
}
109
66
110
67
public void internalRun1 () {
111
- long start_time = System .currentTimeMillis ();
112
68
try {
113
69
while (!receivedThreadDeathinInternal2 ) {
114
70
internalRun2 ();
@@ -123,17 +79,13 @@ public void internalRun2() {
123
79
Integer myLocalCount = 1 ;
124
80
Integer myLocalCount2 = 1 ;
125
81
126
- if (realRun && firstEntry ) {
82
+ if (firstEntry ) {
127
83
// Tell main thread we have started.
128
84
startSyncObj .countDown ();
129
85
firstEntry = false ;
130
86
}
131
87
132
88
while (myLocalCount > 0 ) {
133
- if (!realRun ) {
134
- receivedThreadDeathinInternal2 = true ;
135
- break ;
136
- }
137
89
myLocalCount2 = (myLocalCount % 3 ) / 2 ;
138
90
myLocalCount -= 1 ;
139
91
}
0 commit comments