Skip to content

Commit 4a4d8ed

Browse files
committedJul 18, 2022
8289801: [IR Framework] Add flags to whitelist which can be used to simulate a specific machine setup like UseAVX
Reviewed-by: kvn, xgong, thartmann
1 parent 5a96a5d commit 4a4d8ed

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎test/hotspot/jtreg/TEST.groups

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ hotspot_containers_extended = \
8484

8585
hotspot_vector_1 = \
8686
compiler/c2/cr6340864 \
87+
compiler/c2/irTests \
8788
compiler/codegen \
8889
compiler/loopopts/superword \
8990
compiler/vectorapi \

‎test/hotspot/jtreg/compiler/c2/irTests/TestVectorizeURShiftSubword.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @bug 8283307
3434
* @key randomness
3535
* @summary Auto-vectorization enhancement for unsigned shift right on signed subword types
36-
* @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
36+
* @requires ((os.arch=="amd64" | os.arch=="x86_64") & (vm.opt.UseSSE == "null" | vm.opt.UseSSE > 3)) | os.arch=="aarch64"
3737
* @library /test/lib /
3838
* @run driver compiler.c2.irTests.TestVectorizeURShiftSubword
3939
*/

‎test/hotspot/jtreg/compiler/lib/ir_framework/TestFramework.java

+3
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ public class TestFramework {
133133
"CompileThreshold",
134134
"Xmixed",
135135
"server",
136+
"UseAVX",
137+
"UseSSE",
138+
"UseSVE",
136139
"Xlog",
137140
"LogCompilation"
138141
)

0 commit comments

Comments
 (0)
Please sign in to comment.