mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-16 05:37:49 +07:00
selftests/powerpc: Add memcmp testcase
Add a testcase for the new ppc64 memcmp. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
15c2d45d17
commit
521adf5357
@ -13,7 +13,7 @@ CFLAGS := -Wall -O2 -flto -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CUR
|
|||||||
|
|
||||||
export CC CFLAGS
|
export CC CFLAGS
|
||||||
|
|
||||||
TARGETS = pmu copyloops mm tm primitives
|
TARGETS = pmu copyloops mm tm primitives stringloops
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
1
tools/testing/selftests/powerpc/stringloops/.gitignore
vendored
Normal file
1
tools/testing/selftests/powerpc/stringloops/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
memcmp
|
20
tools/testing/selftests/powerpc/stringloops/Makefile
Normal file
20
tools/testing/selftests/powerpc/stringloops/Makefile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# The loops are all 64-bit code
|
||||||
|
CFLAGS += -m64
|
||||||
|
CFLAGS += -I$(CURDIR)
|
||||||
|
|
||||||
|
PROGS := memcmp
|
||||||
|
EXTRA_SOURCES := memcmp_64.S ../harness.c
|
||||||
|
|
||||||
|
all: $(PROGS)
|
||||||
|
|
||||||
|
$(PROGS): $(EXTRA_SOURCES)
|
||||||
|
|
||||||
|
run_tests: all
|
||||||
|
@-for PROG in $(PROGS); do \
|
||||||
|
./$$PROG; \
|
||||||
|
done;
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(PROGS) *.o
|
||||||
|
|
||||||
|
.PHONY: all run_tests clean
|
@ -0,0 +1,7 @@
|
|||||||
|
#include <ppc-asm.h>
|
||||||
|
|
||||||
|
#ifndef r1
|
||||||
|
#define r1 sp
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define _GLOBAL(A) FUNC_START(test_ ## A)
|
103
tools/testing/selftests/powerpc/stringloops/memcmp.c
Normal file
103
tools/testing/selftests/powerpc/stringloops/memcmp.c
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
#include <malloc.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include "../utils.h"
|
||||||
|
|
||||||
|
#define SIZE 256
|
||||||
|
#define ITERATIONS 10000
|
||||||
|
|
||||||
|
int test_memcmp(const void *s1, const void *s2, size_t n);
|
||||||
|
|
||||||
|
/* test all offsets and lengths */
|
||||||
|
static void test_one(char *s1, char *s2)
|
||||||
|
{
|
||||||
|
unsigned long offset, size;
|
||||||
|
|
||||||
|
for (offset = 0; offset < SIZE; offset++) {
|
||||||
|
for (size = 0; size < (SIZE-offset); size++) {
|
||||||
|
int x, y;
|
||||||
|
unsigned long i;
|
||||||
|
|
||||||
|
y = memcmp(s1+offset, s2+offset, size);
|
||||||
|
x = test_memcmp(s1+offset, s2+offset, size);
|
||||||
|
|
||||||
|
if (((x ^ y) < 0) && /* Trick to compare sign */
|
||||||
|
((x | y) != 0)) { /* check for zero */
|
||||||
|
printf("memcmp returned %d, should have returned %d (offset %ld size %ld)\n", x, y, offset, size);
|
||||||
|
|
||||||
|
for (i = offset; i < offset+size; i++)
|
||||||
|
printf("%02x ", s1[i]);
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
|
for (i = offset; i < offset+size; i++)
|
||||||
|
printf("%02x ", s2[i]);
|
||||||
|
printf("\n");
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int testcase(void)
|
||||||
|
{
|
||||||
|
char *s1;
|
||||||
|
char *s2;
|
||||||
|
unsigned long i;
|
||||||
|
|
||||||
|
s1 = memalign(128, SIZE);
|
||||||
|
if (!s1) {
|
||||||
|
perror("memalign");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
s2 = memalign(128, SIZE);
|
||||||
|
if (!s2) {
|
||||||
|
perror("memalign");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
srandom(1);
|
||||||
|
|
||||||
|
for (i = 0; i < ITERATIONS; i++) {
|
||||||
|
unsigned long j;
|
||||||
|
unsigned long change;
|
||||||
|
|
||||||
|
for (j = 0; j < SIZE; j++)
|
||||||
|
s1[j] = random();
|
||||||
|
|
||||||
|
memcpy(s2, s1, SIZE);
|
||||||
|
|
||||||
|
/* change one byte */
|
||||||
|
change = random() % SIZE;
|
||||||
|
s2[change] = random() & 0xff;
|
||||||
|
|
||||||
|
test_one(s1, s2);
|
||||||
|
}
|
||||||
|
|
||||||
|
srandom(1);
|
||||||
|
|
||||||
|
for (i = 0; i < ITERATIONS; i++) {
|
||||||
|
unsigned long j;
|
||||||
|
unsigned long change;
|
||||||
|
|
||||||
|
for (j = 0; j < SIZE; j++)
|
||||||
|
s1[j] = random();
|
||||||
|
|
||||||
|
memcpy(s2, s1, SIZE);
|
||||||
|
|
||||||
|
/* change multiple bytes, 1/8 of total */
|
||||||
|
for (j = 0; j < SIZE / 8; j++) {
|
||||||
|
change = random() % SIZE;
|
||||||
|
s2[change] = random() & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
test_one(s1, s2);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
return test_harness(testcase, "memcmp");
|
||||||
|
}
|
1
tools/testing/selftests/powerpc/stringloops/memcmp_64.S
Symbolic link
1
tools/testing/selftests/powerpc/stringloops/memcmp_64.S
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../../../../arch/powerpc/lib/memcmp_64.S
|
Loading…
Reference in New Issue
Block a user