Skip to content

Commit 5d1ad39

Browse files
committedJul 28, 2022
8290839: jdk/jfr/event/compiler/TestJitRestart.java failed with "RuntimeException: No JIT restart event found: expected true, was false"
Reviewed-by: egahlin, lucy
1 parent 97fc8de commit 5d1ad39

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed
 

‎test/jdk/jdk/jfr/event/compiler/TestJitRestart.java

+23-5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
package jdk.jfr.event.compiler;
2525

2626
import java.util.List;
27+
import java.util.Comparator;
2728

2829
import jdk.jfr.Recording;
2930
import jdk.jfr.consumer.RecordedEvent;
@@ -50,22 +51,23 @@
5051
public class TestJitRestart {
5152

5253
public static void main(String[] args) throws Exception {
53-
boolean foundJitRestart = false;
54+
boolean checkJitRestartCompilation = false;
5455
for (BlobType btype : BlobType.getAvailable()) {
5556
boolean jr = testWithBlobType(btype, calculateAvailableSize(btype));
5657
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;
5960
}
6061
}
61-
Asserts.assertTrue(foundJitRestart, "No JIT restart event found");
62+
Asserts.assertTrue(checkJitRestartCompilation, "No JIT restart event found and unexpected compilation seen");
6263
}
6364

6465
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
6566

6667
private static boolean testWithBlobType(BlobType btype, long availableSize) throws Exception {
6768
Recording r = new Recording();
6869
r.enable(EventNames.CodeCacheFull);
70+
r.enable(EventNames.Compilation);
6971
r.enable(EventNames.JitRestart);
7072
r.start();
7173
long addr = WHITE_BOX.allocateCodeBlob(availableSize, btype.id);
@@ -74,18 +76,34 @@ private static boolean testWithBlobType(BlobType btype, long availableSize) thro
7476
r.stop();
7577

7678
List<RecordedEvent> events = Events.fromRecording(r);
79+
System.out.println("---------------------------------------------");
7780
System.out.println("# events:" + events.size());
7881
Events.hasEvents(events);
82+
events.sort(Comparator.comparing(RecordedEvent::getStartTime));
7983

84+
boolean compilationCanHappen = true;
8085
for (RecordedEvent evt: events) {
8186
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+
}
8294
if (evt.getEventType().getName().equals("jdk.JitRestart")) {
95+
System.out.println("--> jdk.JitRestart found");
8396
Events.assertField(evt, "codeCacheMaxCapacity").notEqual(0L);
8497
Events.assertField(evt, "freedMemory").notEqual(0L);
98+
System.out.println("JIT restart event found for BlobType " + btype);
8599
return true;
86100
}
87101
}
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;
89107
}
90108

91109
// Compute the available size for this BlobType by taking into account

0 commit comments

Comments
 (0)
Please sign in to comment.