WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / stringloops / strlen.c
blob9055ebc484d0c2acab5661f735aa84be6917ec8d
1 // SPDX-License-Identifier: GPL-2.0
2 #include <malloc.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include <time.h>
6 #include "utils.h"
8 #define SIZE 256
9 #define ITERATIONS 1000
10 #define ITERATIONS_BENCH 100000
12 int test_strlen(const void *s);
14 /* test all offsets and lengths */
15 static void test_one(char *s)
17 unsigned long offset;
19 for (offset = 0; offset < SIZE; offset++) {
20 int x, y;
21 unsigned long i;
23 y = strlen(s + offset);
24 x = test_strlen(s + offset);
26 if (x != y) {
27 printf("strlen() returned %d, should have returned %d (%p offset %ld)\n", x, y, s, offset);
29 for (i = offset; i < SIZE; i++)
30 printf("%02x ", s[i]);
31 printf("\n");
36 static void bench_test(char *s)
38 struct timespec ts_start, ts_end;
39 int i;
41 clock_gettime(CLOCK_MONOTONIC, &ts_start);
43 for (i = 0; i < ITERATIONS_BENCH; i++)
44 test_strlen(s);
46 clock_gettime(CLOCK_MONOTONIC, &ts_end);
48 printf("len %3.3d : time = %.6f\n", test_strlen(s), ts_end.tv_sec - ts_start.tv_sec + (ts_end.tv_nsec - ts_start.tv_nsec) / 1e9);
51 static int testcase(void)
53 char *s;
54 unsigned long i;
56 s = memalign(128, SIZE);
57 if (!s) {
58 perror("memalign");
59 exit(1);
62 srandom(1);
64 memset(s, 0, SIZE);
65 for (i = 0; i < SIZE; i++) {
66 char c;
68 do {
69 c = random() & 0x7f;
70 } while (!c);
71 s[i] = c;
72 test_one(s);
75 for (i = 0; i < ITERATIONS; i++) {
76 unsigned long j;
78 for (j = 0; j < SIZE; j++) {
79 char c;
81 do {
82 c = random() & 0x7f;
83 } while (!c);
84 s[j] = c;
86 for (j = 0; j < sizeof(long); j++) {
87 s[SIZE - 1 - j] = 0;
88 test_one(s);
92 for (i = 0; i < SIZE; i++) {
93 char c;
95 do {
96 c = random() & 0x7f;
97 } while (!c);
98 s[i] = c;
101 bench_test(s);
103 s[16] = 0;
104 bench_test(s);
106 s[8] = 0;
107 bench_test(s);
109 s[4] = 0;
110 bench_test(s);
112 s[3] = 0;
113 bench_test(s);
115 s[2] = 0;
116 bench_test(s);
118 s[1] = 0;
119 bench_test(s);
121 return 0;
124 int main(void)
126 return test_harness(testcase, "strlen");