@@ -56,6 +56,7 @@ public HotSpotPidFileParser(String testClass) {
56
56
public void setCompilationsMap (Map <String , IRMethod > compilationsMap ) {
57
57
this .compilationsMap = compilationsMap ;
58
58
}
59
+
59
60
/**
60
61
* Parse the hotspot_pid*.log file from the test VM. Read the PrintIdeal and PrintOptoAssembly outputs for all
61
62
* methods of the test class that need to be IR matched (found in compilations map).
@@ -75,18 +76,28 @@ private void processFileLines(String hotspotPidFileName) throws IOException {
75
76
Map <Integer , IRMethod > compileIdMap = new HashMap <>();
76
77
try (var reader = Files .newBufferedReader (Paths .get (hotspotPidFileName ))) {
77
78
Line line = new Line (reader , compileIdPatternForTestClass );
78
- BlockOutputReader blockOutputReader = new BlockOutputReader (reader );
79
+ BlockOutputReader blockOutputReader = new BlockOutputReader (reader , compileIdPatternForTestClass );
79
80
while (line .readLine ()) {
80
81
if (line .isTestClassCompilation ()) {
81
82
parseTestMethodCompileId (compileIdMap , line .getLine ());
82
83
} else if (isTestMethodBlockStart (line , compileIdMap )) {
83
- String blockOutput = blockOutputReader .readBlock ();
84
- setIRMethodOutput (blockOutput , line , compileIdMap );
84
+ processMethodBlock (compileIdMap , line , blockOutputReader );
85
85
}
86
86
}
87
87
}
88
88
}
89
89
90
+ private void processMethodBlock (Map <Integer , IRMethod > compileIdMap , Line line , BlockOutputReader blockOutputReader )
91
+ throws IOException {
92
+ Block block = blockOutputReader .readBlock ();
93
+ if (block .containsTestClassCompilations ()) {
94
+ // Register all test method compilations that could have been emitted during a rare safepoint while
95
+ // dumping the PrintIdeal/PrintOptoAssembly output.
96
+ block .getTestClassCompilations ().forEach (l -> parseTestMethodCompileId (compileIdMap , l ));
97
+ }
98
+ setIRMethodOutput (block .getOutput (), line , compileIdMap );
99
+ }
100
+
90
101
private void parseTestMethodCompileId (Map <Integer , IRMethod > compileIdMap , String line ) {
91
102
String methodName = parseMethodName (line );
92
103
if (isTestAnnotatedMethod (methodName )) {
@@ -101,6 +112,9 @@ private String parseMethodName(String line) {
101
112
return matcher .group (2 );
102
113
}
103
114
115
+ /**
116
+ * Is this a @Test method?
117
+ */
104
118
private boolean isTestAnnotatedMethod (String testMethodName ) {
105
119
return compilationsMap .containsKey (testMethodName );
106
120
}
@@ -109,8 +123,6 @@ private IRMethod getIrMethod(String testMethodName) {
109
123
return compilationsMap .get (testMethodName );
110
124
}
111
125
112
-
113
-
114
126
private int getCompileId (String line ) {
115
127
Matcher matcher = COMPILE_ID_PATTERN .matcher (line );
116
128
if (!matcher .find ()) {
@@ -119,6 +131,9 @@ private int getCompileId(String line) {
119
131
return Integer .parseInt (matcher .group (1 ));
120
132
}
121
133
134
+ /**
135
+ * Is this line the start of a PrintIdeal/PrintOptoAssembly output block of a @Test method?
136
+ */
122
137
private boolean isTestMethodBlockStart (Line line , Map <Integer , IRMethod > compileIdMap ) {
123
138
return line .isBlockStart () && isTestClassMethodBlock (line , compileIdMap );
124
139
}
0 commit comments