1 /* Test string function in a transactionally executing RTM region.
2 Copyright (C) 2021-2023 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/>. */
20 #include <x86intrin.h>
21 #include <sys/platform/x86.h>
22 #include <support/check.h>
23 #include <support/test-driver.h>
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
)
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 ();
49 failed
|= function ();
55 FAIL_EXIT1 ("%s() failed", name
);
59 /* NB: Low single digit (<= 5%) noise-level aborts are normal for
61 double rate
= 100 * ((double) naborts
) / ((double) loop
);
63 FAIL_EXIT1 ("TSX abort rate: %.2f%% (%d out of %d)",
70 static int do_test (void);
72 #include <support/test-driver.c>