24
24
package jdk .jfr .event .compiler ;
25
25
26
26
import java .util .List ;
27
+ import java .util .Comparator ;
27
28
28
29
import jdk .jfr .Recording ;
29
30
import jdk .jfr .consumer .RecordedEvent ;
50
51
public class TestJitRestart {
51
52
52
53
public static void main (String [] args ) throws Exception {
53
- boolean foundJitRestart = false ;
54
+ boolean checkJitRestartCompilation = false ;
54
55
for (BlobType btype : BlobType .getAvailable ()) {
55
56
boolean jr = testWithBlobType (btype , calculateAvailableSize (btype ));
56
57
if (jr ) {
57
- System .out .println ("JIT restart event found for BlobType " + btype );
58
- foundJitRestart = true ;
58
+ System .out .println ("JIT restart event / Compilation event check for BlobType " + btype + " was successful" );
59
+ checkJitRestartCompilation = true ;
59
60
}
60
61
}
61
- Asserts .assertTrue (foundJitRestart , "No JIT restart event found" );
62
+ Asserts .assertTrue (checkJitRestartCompilation , "No JIT restart event found and unexpected compilation seen " );
62
63
}
63
64
64
65
private static final WhiteBox WHITE_BOX = WhiteBox .getWhiteBox ();
65
66
66
67
private static boolean testWithBlobType (BlobType btype , long availableSize ) throws Exception {
67
68
Recording r = new Recording ();
68
69
r .enable (EventNames .CodeCacheFull );
70
+ r .enable (EventNames .Compilation );
69
71
r .enable (EventNames .JitRestart );
70
72
r .start ();
71
73
long addr = WHITE_BOX .allocateCodeBlob (availableSize , btype .id );
@@ -74,18 +76,34 @@ private static boolean testWithBlobType(BlobType btype, long availableSize) thro
74
76
r .stop ();
75
77
76
78
List <RecordedEvent > events = Events .fromRecording (r );
79
+ System .out .println ("---------------------------------------------" );
77
80
System .out .println ("# events:" + events .size ());
78
81
Events .hasEvents (events );
82
+ events .sort (Comparator .comparing (RecordedEvent ::getStartTime ));
79
83
84
+ boolean compilationCanHappen = true ;
80
85
for (RecordedEvent evt : events ) {
81
86
System .out .println (evt );
87
+ if (evt .getEventType ().getName ().equals ("jdk.CodeCacheFull" )) {
88
+ System .out .println ("--> jdk.CodeCacheFull found" );
89
+ compilationCanHappen = false ;
90
+ }
91
+ if (evt .getEventType ().getName ().equals ("jdk.Compilation" ) && !compilationCanHappen ) {
92
+ return false ;
93
+ }
82
94
if (evt .getEventType ().getName ().equals ("jdk.JitRestart" )) {
95
+ System .out .println ("--> jdk.JitRestart found" );
83
96
Events .assertField (evt , "codeCacheMaxCapacity" ).notEqual (0L );
84
97
Events .assertField (evt , "freedMemory" ).notEqual (0L );
98
+ System .out .println ("JIT restart event found for BlobType " + btype );
85
99
return true ;
86
100
}
87
101
}
88
- return false ;
102
+ System .out .println ("---------------------------------------------" );
103
+
104
+ // in some seldom cases we do not see the JitRestart event; but then
105
+ // do not fail (as long as no compilation happened before)
106
+ return true ;
89
107
}
90
108
91
109
// Compute the available size for this BlobType by taking into account
0 commit comments