8289801: [IR Framework] Add flags to whitelist which can be used to simulate a specific machine setup like UseAVX
Reviewed-by: kvn, xgong, thartmann
This commit is contained in:
parent
5a96a5db13
commit
4a4d8ed83b
@ -84,6 +84,7 @@ hotspot_containers_extended = \
|
|||||||
|
|
||||||
hotspot_vector_1 = \
|
hotspot_vector_1 = \
|
||||||
compiler/c2/cr6340864 \
|
compiler/c2/cr6340864 \
|
||||||
|
compiler/c2/irTests \
|
||||||
compiler/codegen \
|
compiler/codegen \
|
||||||
compiler/loopopts/superword \
|
compiler/loopopts/superword \
|
||||||
compiler/vectorapi \
|
compiler/vectorapi \
|
||||||
|
@ -33,7 +33,7 @@ import jdk.test.lib.Utils;
|
|||||||
* @bug 8283307
|
* @bug 8283307
|
||||||
* @key randomness
|
* @key randomness
|
||||||
* @summary Auto-vectorization enhancement for unsigned shift right on signed subword types
|
* @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 /
|
* @library /test/lib /
|
||||||
* @run driver compiler.c2.irTests.TestVectorizeURShiftSubword
|
* @run driver compiler.c2.irTests.TestVectorizeURShiftSubword
|
||||||
*/
|
*/
|
||||||
|
@ -133,6 +133,9 @@ public class TestFramework {
|
|||||||
"CompileThreshold",
|
"CompileThreshold",
|
||||||
"Xmixed",
|
"Xmixed",
|
||||||
"server",
|
"server",
|
||||||
|
"UseAVX",
|
||||||
|
"UseSSE",
|
||||||
|
"UseSVE",
|
||||||
"Xlog",
|
"Xlog",
|
||||||
"LogCompilation"
|
"LogCompilation"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user