Skip to content

Commit

Permalink
8289801: [IR Framework] Add flags to whitelist which can be used to s…
Browse files Browse the repository at this point in the history
…imulate a specific machine setup like UseAVX

Reviewed-by: kvn, xgong, thartmann
  • Loading branch information
DamonFool committed Jul 18, 2022
1 parent 5a96a5d commit 4a4d8ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/hotspot/jtreg/TEST.groups
Expand Up @@ -84,6 +84,7 @@ hotspot_containers_extended = \

hotspot_vector_1 = \
compiler/c2/cr6340864 \
compiler/c2/irTests \
compiler/codegen \
compiler/loopopts/superword \
compiler/vectorapi \
Expand Down
Expand Up @@ -33,7 +33,7 @@
* @bug 8283307
* @key randomness
* @summary Auto-vectorization enhancement for unsigned shift right on signed subword types
* @requires os.arch=="amd64" | os.arch=="x86_64" | os.arch=="aarch64"
* @requires ((os.arch=="amd64" | os.arch=="x86_64") & (vm.opt.UseSSE == "null" | vm.opt.UseSSE > 3)) | os.arch=="aarch64"
* @library /test/lib /
* @run driver compiler.c2.irTests.TestVectorizeURShiftSubword
*/
Expand Down
Expand Up @@ -133,6 +133,9 @@ public class TestFramework {
"CompileThreshold",
"Xmixed",
"server",
"UseAVX",
"UseSSE",
"UseSVE",
"Xlog",
"LogCompilation"
)
Expand Down

1 comment on commit 4a4d8ed

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.