powerpc: Add HWCAP3/HWCAP4 data to TCB for Power Architecture.
[glibc.git] / sysdeps / x86 / tst-string-rtm.h
blob0919df2b3a98c359cee1cd8351f1d5ce30bc4b3f
1 /* Test string function in a transactionally executing RTM region.
2 Copyright (C) 2021-2024 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 #include <string.h>
20 #include <x86intrin.h>
21 #include <sys/platform/x86.h>
22 #include <support/check.h>
23 #include <support/test-driver.h>
25 static int
26 do_test_1 (const char *name, unsigned int loop, int (*prepare) (void),
27 int (*function) (void))
29 if (!CPU_FEATURE_ACTIVE (RTM))
30 return EXIT_UNSUPPORTED;
32 int status = prepare ();
33 if (status != EXIT_SUCCESS)
34 return status;
36 unsigned int i;
37 unsigned int naborts = 0;
38 unsigned int failed = 0;
39 for (i = 0; i < loop; i++)
41 failed |= function ();
42 if (_xbegin() == _XBEGIN_STARTED)
44 failed |= function ();
45 _xend();
47 else
49 failed |= function ();
50 ++naborts;
54 if (failed)
55 FAIL_EXIT1 ("%s() failed", name);
57 if (naborts)
59 /* NB: Low single digit (<= 5%) noise-level aborts are normal for
60 TSX. */
61 double rate = 100 * ((double) naborts) / ((double) loop);
62 if (rate > 5)
63 FAIL_EXIT1 ("TSX abort rate: %.2f%% (%d out of %d)",
64 rate, naborts, loop);
67 return EXIT_SUCCESS;
70 static int do_test (void);
72 #include <support/test-driver.c>