configure: Use -Wno-ignored-attributes if compiler warns about multiple aliases
[glibc.git] / sysdeps / x86_64 / tst-rsi-strlen.c
blob0bd82c2aad326850951cdd96e2136d14abd4d160
1 /* Test strlen with 0 in the RSI register.
2 Copyright (C) 2021-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #ifdef WIDE
20 # define TEST_NAME "wcslen"
21 #else
22 # define TEST_NAME "strlen"
23 #endif /* WIDE */
25 #define TEST_MAIN
26 #include <string/test-string.h>
28 #ifdef WIDE
29 # include <wchar.h>
30 # define STRLEN wcslen
31 # define CHAR wchar_t
32 #else
33 # define STRLEN strlen
34 # define CHAR char
35 #endif /* WIDE */
37 IMPL (STRLEN, 1)
39 typedef size_t (*proto_t) (const CHAR *);
41 typedef struct
43 void (*fn) (void);
44 } parameter_t;
46 size_t
47 __attribute__ ((weak, noinline, noclone))
48 do_strlen (parameter_t *a, int zero, const CHAR *str)
50 return CALL (a, str);
53 static int
54 test_main (void)
56 test_init ();
58 size_t size = page_size / sizeof (CHAR) - 1;
59 CHAR *buf = (CHAR *) buf2;
60 buf[size] = 0;
62 parameter_t a;
64 int ret = 0;
65 FOR_EACH_IMPL (impl, 0)
67 a.fn = impl->fn;
68 /* NB: Pass 0 in RSI. */
69 size_t res = do_strlen (&a, 0, buf);
70 if (res != size)
72 error (0, 0, "Wrong result in function %s: %zu != %zu",
73 impl->name, res, size);
74 ret = 1;
78 return ret ? EXIT_FAILURE : EXIT_SUCCESS;
81 #include <support/test-driver.c>