diff options
author | Paul Brook <paul@nowt.org> | 2022-04-24 23:02:03 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-01 20:16:33 +0200 |
commit | 91117bc546b10aeefd6d78502d82df5729f5f780 (patch) | |
tree | d87de82d96503e4ce15b65f8be4548a1be18f633 /tests/tcg/Makefile.target | |
parent | bf30ad8cefeb3b199f5485c5d78f2801cd248264 (diff) |
tests/tcg: i386: add SSE tests
Tests for correct operation of most x86-64 SSE instructions.
It should cover all combinations of overlapping register and memory
operands on a set of random-ish data.
Results are bit-identical to an Intel i5-8500, with the exception of
the RCPSS and RSQRT approximations where the real CPU gives less accurate
results (the Intel spec allows relative errors up to 1.5 * 2^-12)
Signed-off-by: Paul Brook <paul@nowt.org>
Acked-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220424220204.2493824-42-paul@nowt.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/tcg/Makefile.target')
-rw-r--r-- | tests/tcg/Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index e68830af15..c896d1033e 100644 --- a/tests/tcg/Makefile.target +++ b/tests/tcg/Makefile.target @@ -188,4 +188,4 @@ gdb-%: % run: $(RUN_TESTS) clean: - rm -f $(TESTS) *.o + rm -f $(TESTS) *.o $(CLEANFILES) |