mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
target/arm: Fix SVE STR increment
The previous change missed updating one of the increments and
one of the MemOps. Add a test case for all vector lengths.
Cc: qemu-stable@nongnu.org
Fixes: e6dd5e782b
("target/arm: Use tcg_gen_qemu_{ld, st}_i128 in gen_sve_{ld, st}r")
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20231031143215.29764-1-richard.henderson@linaro.org
[PMM: fixed checkpatch nit]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
854c001f12
commit
b11293c212
3 changed files with 57 additions and 3 deletions
|
@ -103,7 +103,11 @@ sha512-sve: CFLAGS=-O3 -march=armv8.1-a+sve
|
|||
sha512-sve: sha512.c
|
||||
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
||||
|
||||
TESTS += sha512-sve
|
||||
sve-str: CFLAGS=-O1 -march=armv8.1-a+sve
|
||||
sve-str: sve-str.c
|
||||
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
||||
|
||||
TESTS += sha512-sve sve-str
|
||||
|
||||
ifneq ($(GDB),)
|
||||
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
||||
|
|
49
tests/tcg/aarch64/sve-str.c
Normal file
49
tests/tcg/aarch64/sve-str.c
Normal file
|
@ -0,0 +1,49 @@
|
|||
#include <stdio.h>
|
||||
#include <sys/prctl.h>
|
||||
|
||||
#define N (256 + 16)
|
||||
|
||||
static int __attribute__((noinline)) test(int vl)
|
||||
{
|
||||
unsigned char buf[N];
|
||||
int err = 0;
|
||||
|
||||
for (int i = 0; i < N; ++i) {
|
||||
buf[i] = (unsigned char)i;
|
||||
}
|
||||
|
||||
asm volatile (
|
||||
"mov z0.b, #255\n\t"
|
||||
"str z0, %0"
|
||||
: : "m" (buf) : "z0", "memory");
|
||||
|
||||
for (int i = 0; i < vl; ++i) {
|
||||
if (buf[i] != 0xff) {
|
||||
fprintf(stderr, "vl %d, index %d, expected 255, got %d\n",
|
||||
vl, i, buf[i]);
|
||||
err = 1;
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = vl; i < N; ++i) {
|
||||
if (buf[i] != (unsigned char)i) {
|
||||
fprintf(stderr, "vl %d, index %d, expected %d, got %d\n",
|
||||
vl, i, (unsigned char)i, buf[i]);
|
||||
err = 1;
|
||||
}
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int err = 0;
|
||||
|
||||
for (int i = 16; i <= 256; i += 16) {
|
||||
if (prctl(PR_SVE_SET_VL, i, 0, 0, 0, 0) == i) {
|
||||
err |= test(i);
|
||||
}
|
||||
}
|
||||
return err;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue