1
/* Test and measure string and memory functions.
2
Copyright (C) 1999, 2002, 2004, 2008 Free Software Foundation, Inc.
3
This file is part of the GNU C Library.
4
Written by Jakub Jelinek <jakub@redhat.com>, 1999.
6
The GNU C Library is free software; you can redistribute it and/or
7
modify it under the terms of the GNU Lesser General Public
8
License as published by the Free Software Foundation; either
9
version 2.1 of the License, or (at your option) any later version.
11
The GNU C Library is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
Lesser General Public License for more details.
16
You should have received a copy of the GNU Lesser General Public
17
License along with the GNU C Library; if not, write to the Free
18
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27
extern impl_t __start_impls[], __stop_impls[];
29
#define IMPL(name, test) \
31
__attribute__ ((section ("impls"), aligned (sizeof (void *)))) \
32
= { #name, (void (*) (void))name, test };
40
#undef __USE_STRING_INLINES
53
#include <hp-timing.h>
56
# define TEST_FUNCTION test_main ()
57
# define TIMEOUT (4 * 60)
58
# define OPT_ITERATIONS 10000
59
# define OPT_RANDOM 10001
60
# define OPT_SEED 10002
62
unsigned char *buf1, *buf2;
67
hp_timing_t _dl_hp_timing_overhead;
70
size_t iterations = 100000;
71
# define ITERATIONS_OPTIONS \
72
{ "iterations", required_argument, NULL, OPT_ITERATIONS },
73
# define ITERATIONS_PROCESS \
74
case OPT_ITERATIONS: \
75
iterations = strtoul (optarg, NULL, 0); \
77
# define ITERATIONS iterations
79
# define ITERATIONS_OPTIONS
80
# define ITERATIONS_PROCESS
83
# define CMDLINE_OPTIONS ITERATIONS_OPTIONS \
84
{ "random", no_argument, NULL, OPT_RANDOM }, \
85
{ "seed", required_argument, NULL, OPT_SEED },
86
# define CMDLINE_PROCESS ITERATIONS_PROCESS \
89
int fdr = open ("/dev/urandom", O_RDONLY); \
91
if (fdr < 0 || read (fdr, &seed, sizeof(seed)) != sizeof (seed)) \
100
seed = strtoul (optarg, NULL, 0); \
104
#define CALL(impl, ...) \
105
(* (proto_t) (impl)->fn) (__VA_ARGS__)
107
#define FOR_EACH_IMPL(impl, notall) \
108
for (impl_t *impl = __start_impls; impl < __stop_impls; ++impl) \
109
if (!notall || impl->test)
111
#define HP_TIMING_BEST(best_time, start, end) \
114
hp_timing_t tmptime; \
115
HP_TIMING_DIFF (tmptime, start + _dl_hp_timing_overhead, end); \
116
if (best_time > tmptime) \
117
best_time = tmptime; \
128
page_size = 2 * getpagesize ();
130
if (page_size < MIN_PAGE_SIZE)
131
page_size = MIN_PAGE_SIZE;
133
buf1 = mmap (0, (BUF1PAGES + 1) * page_size, PROT_READ | PROT_WRITE,
134
MAP_PRIVATE | MAP_ANON, -1, 0);
135
if (buf1 == MAP_FAILED)
136
error (EXIT_FAILURE, errno, "mmap failed");
137
if (mprotect (buf1 + BUF1PAGES * page_size, page_size, PROT_NONE))
138
error (EXIT_FAILURE, errno, "mprotect failed");
139
buf2 = mmap (0, 2 * page_size, PROT_READ | PROT_WRITE,
140
MAP_PRIVATE | MAP_ANON, -1, 0);
141
if (buf2 == MAP_FAILED)
142
error (EXIT_FAILURE, errno, "mmap failed");
143
if (mprotect (buf2 + page_size, page_size, PROT_NONE))
144
error (EXIT_FAILURE, errno, "mprotect failed");
145
HP_TIMING_DIFF_INIT ();
148
printf ("Setting seed to 0x%x\n", seed);
152
memset (buf1, 0xa5, BUF1PAGES * page_size);
153
memset (buf2, 0x5a, page_size);