diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-16 17:37:24 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-06-11 15:08:13 +0530 |
commit | c1f75dc386d533806d29b7e94118363a7b50eed8 (patch) | |
tree | 38d917f7a99bf569704a09e56a0dd5b7b4475be5 /benchtests/bench-memcpy-ifunc.c | |
parent | 50fd745b4dec07e8e213cf2703b5cabcfa128225 (diff) | |
download | glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.tar.gz glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.tar.xz glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.zip |
Begin porting string performance tests to benchtests
This is the initial support for string function performance tests, along with copying tests for memcpy and memcpy-ifunc as proof of concept. The string function benchmarks perform operations at different alignments and for different sizes and compare performance between plain operations and the optimized string operations. Due to this their output is incompatible with the function benchmarks where we're interested in fastest time, throughput, etc. In future, the correctness checks in the benchmark tests can be removed. Same goes for the performance measurements in the string/test-*.
Diffstat (limited to 'benchtests/bench-memcpy-ifunc.c')
-rw-r--r-- | benchtests/bench-memcpy-ifunc.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/benchtests/bench-memcpy-ifunc.c b/benchtests/bench-memcpy-ifunc.c new file mode 100644 index 0000000000..b5a89f723d --- /dev/null +++ b/benchtests/bench-memcpy-ifunc.c @@ -0,0 +1,20 @@ +/* Measure IFUNC implementations of memcpy function. + Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ + +#define TEST_IFUNC 1 +#include "bench-memcpy.c" |