File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ tier1_compiler_1 = \
171
171
-compiler/c2/Test6912517.java
172
172
173
173
tier1_compiler_2 = \
174
+ compiler/ccp/ \
175
+ compiler/ciTypeFlow/ \
174
176
compiler/classUnloading/ \
175
177
compiler/codecache/ \
176
178
compiler/codegen/ \
@@ -181,11 +183,11 @@ tier1_compiler_2 = \
181
183
compiler/exceptions/ \
182
184
compiler/floatingpoint/ \
183
185
compiler/gcbarriers/ \
186
+ compiler/igvn/ \
184
187
compiler/inlining/ \
185
188
compiler/integerArithmetic/ \
186
189
compiler/interpreter/ \
187
190
compiler/jvmci/ \
188
- compiler/igvn/ \
189
191
-compiler/classUnloading/methodUnloading/TestOverloadCompileQueues.java \
190
192
-compiler/codecache/stress \
191
193
-compiler/codegen/aes \
@@ -199,9 +201,12 @@ tier1_compiler_3 = \
199
201
compiler/macronodes/ \
200
202
compiler/memoryinitialization/ \
201
203
compiler/osr/ \
204
+ compiler/predicates/ \
202
205
compiler/profiling \
203
206
compiler/regalloc/ \
204
207
compiler/runtime/ \
208
+ compiler/sharedstubs/ \
209
+ compiler/splitif/ \
205
210
compiler/startup/ \
206
211
compiler/types/ \
207
212
compiler/uncommontrap/ \
Original file line number Diff line number Diff line change 26
26
* @bug 8350563
27
27
* @summary Test that And nodes are monotonic and added to the CCP worklist if they have a constant as input.
28
28
* @run main/othervm -Xbatch -XX:-TieredCompilation compiler.ccp.TestAndConZeroCCP
29
- * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:RepeatCompilation=300 -XX:+StressIGVN -XX:+StressCCP -Xcomp
29
+ * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:RepeatCompilation=100 -XX:+StressIGVN -XX:+StressCCP -Xcomp
30
30
* -XX:CompileOnly=java.lang.Integer::parseInt compiler.ccp.TestAndConZeroCCP compileonly
31
31
* @run main compiler.ccp.TestAndConZeroCCP
32
32
*/
@@ -42,7 +42,7 @@ public static void main(String[] args) {
42
42
return ;
43
43
}
44
44
45
- for (int i = 0 ; i < 10000 ; ++i ) {
45
+ for (int i = 0 ; i < 100 ; ++i ) {
46
46
run ();
47
47
}
48
48
}
You can’t perform that action at this time.
0 commit comments