1 /* Measure string and memory functions.
2 Copyright (C) 2013-2017 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 <http://www.gnu.org/licenses/>. */
20 #include <sys/cdefs.h>
28 extern impl_t __start_impls
[], __stop_impls
[];
30 #define IMPL(name, test) \
32 __attribute__ ((section ("impls"), aligned (sizeof (void *)))) \
33 = { __STRING (name), (void (*) (void))name, test };
41 # undef __USE_STRING_INLINES
46 # include <sys/mman.h>
47 # include <sys/param.h>
53 # include <ifunc-impl-list.h>
56 # include "bench-timing.h"
59 # define TEST_FUNCTION test_main
61 # define TIMEOUT (4 * 60)
63 # define OPT_ITERATIONS 10000
64 # define OPT_RANDOM 10001
65 # define OPT_SEED 10002
67 # define INNER_LOOP_ITERS 64
69 unsigned char *buf1
, *buf2
;
75 size_t iterations
= 100000;
76 # define ITERATIONS_OPTIONS \
77 { "iterations", required_argument, NULL, OPT_ITERATIONS },
78 # define ITERATIONS_PROCESS \
79 case OPT_ITERATIONS: \
80 iterations = strtoul (optarg, NULL, 0); \
82 # define ITERATIONS iterations
84 # define ITERATIONS_OPTIONS
85 # define ITERATIONS_PROCESS
88 # define CMDLINE_OPTIONS ITERATIONS_OPTIONS \
89 { "random", no_argument, NULL, OPT_RANDOM }, \
90 { "seed", required_argument, NULL, OPT_SEED },
92 static void __attribute__ ((used
))
93 cmdline_process_function (int c
)
100 int fdr
= open ("/dev/urandom", O_RDONLY
);
101 if (fdr
< 0 || read (fdr
, &seed
, sizeof(seed
)) != sizeof (seed
))
110 seed
= strtoul (optarg
, NULL
, 0);
115 # define CMDLINE_PROCESS cmdline_process_function
116 # define CALL(impl, ...) \
117 (* (proto_t) (impl)->fn) (__VA_ARGS__)
120 /* Increase size of FUNC_LIST if assert is triggered at run-time. */
121 static struct libc_ifunc_impl func_list
[32];
122 static int func_count
;
123 static int impl_count
= -1;
124 static impl_t
*impl_array
;
126 # define FOR_EACH_IMPL(impl, notall) \
129 if (impl_count == -1) \
132 if (func_count != 0) \
135 impl_t *skip = NULL, *a; \
136 for (impl = __start_impls; impl < __stop_impls; ++impl) \
137 if (strcmp (impl->name, TEST_NAME) == 0) \
141 a = impl_array = malloc ((impl_count + func_count) * \
143 for (impl = __start_impls; impl < __stop_impls; ++impl) \
146 for (f = 0; f < func_count; f++) \
147 if (func_list[f].usable) \
149 a->name = func_list[f].name; \
150 a->fn = func_list[f].fn; \
154 impl_count = a - impl_array; \
158 impl_count = __stop_impls - __start_impls; \
159 impl_array = __start_impls; \
163 for (count = 0; count < impl_count; ++count, ++impl) \
164 if (!notall || impl->test)
165 # else /* !TEST_NAME */
166 # define FOR_EACH_IMPL(impl, notall) \
167 for (impl_t *impl = __start_impls; impl < __stop_impls; ++impl) \
168 if (!notall || impl->test)
169 # endif /* !TEST_NAME */
179 func_count
= __libc_ifunc_impl_list (TEST_NAME
, func_list
,
181 / sizeof func_list
[0]));
184 page_size
= 2 * getpagesize ();
185 # ifdef MIN_PAGE_SIZE
186 if (page_size
< MIN_PAGE_SIZE
)
187 page_size
= MIN_PAGE_SIZE
;
189 buf1
= mmap (0, (BUF1PAGES
+ 1) * page_size
, PROT_READ
| PROT_WRITE
,
190 MAP_PRIVATE
| MAP_ANON
, -1, 0);
191 if (buf1
== MAP_FAILED
)
192 error (EXIT_FAILURE
, errno
, "mmap failed");
193 if (mprotect (buf1
+ BUF1PAGES
* page_size
, page_size
, PROT_NONE
))
194 error (EXIT_FAILURE
, errno
, "mprotect failed");
195 buf2
= mmap (0, 2 * page_size
, PROT_READ
| PROT_WRITE
,
196 MAP_PRIVATE
| MAP_ANON
, -1, 0);
197 if (buf2
== MAP_FAILED
)
198 error (EXIT_FAILURE
, errno
, "mmap failed");
199 if (mprotect (buf2
+ page_size
, page_size
, PROT_NONE
))
200 error (EXIT_FAILURE
, errno
, "mprotect failed");
203 printf ("Setting seed to 0x%x\n", seed
);
207 memset (buf1
, 0xa5, BUF1PAGES
* page_size
);
208 memset (buf2
, 0x5a, page_size
);
211 #endif /* TEST_MAIN */