aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/x86_64
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2022-02-25 17:20:16 +0000
committerAlex Bennée <alex.bennee@linaro.org>2022-02-28 16:42:35 +0000
commitf8a4c6d728bc2427c5455379482f40ba8706a96f (patch)
tree8787c24a286019968f515c43f8fbb66d1370ed6c /tests/tcg/x86_64
parentd426f4fc6fbd1f6d9d7a721998f92b6e30a3e9db (diff)
downloadqemu-f8a4c6d728bc2427c5455379482f40ba8706a96f.zip
qemu-f8a4c6d728bc2427c5455379482f40ba8706a96f.tar.gz
qemu-f8a4c6d728bc2427c5455379482f40ba8706a96f.tar.bz2
tests/tcg: add vectorised sha512 versions
This builds vectorised versions of sha512 to exercise the vector code: - aarch64 (AdvSimd) - i386 (SSE) - s390x (MVX) - ppc64/ppc64le (power10 vectors) Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220225172021.3493923-14-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg/x86_64')
-rw-r--r--tests/tcg/x86_64/Makefile.target7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/tcg/x86_64/Makefile.target b/tests/tcg/x86_64/Makefile.target
index 4a8a464..17cf168 100644
--- a/tests/tcg/x86_64/Makefile.target
+++ b/tests/tcg/x86_64/Makefile.target
@@ -22,3 +22,10 @@ test-x86_64: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h
vsyscall: $(SRC_PATH)/tests/tcg/x86_64/vsyscall.c
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
+
+# TCG does not yet support all SSE (SIGILL on pshufb)
+# sha512-sse: CFLAGS=-march=core2 -O3
+# sha512-sse: sha512.c
+# $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
+
+TESTS+=sha512-sse