diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2017-03-23 19:00:02 +0000 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2017-03-23 19:00:02 +0000 |
commit | 8d2030d659791184ecac8de9d6e1403b316a94c2 (patch) | |
tree | a4156bc46452fdd750fa3dde54f8cca8a81d97e1 /benchtests | |
parent | ca4dc7465917beeb37af32891d4c867b5ac16883 (diff) | |
download | glibc-8d2030d659791184ecac8de9d6e1403b316a94c2.tar.gz glibc-8d2030d659791184ecac8de9d6e1403b316a94c2.tar.xz glibc-8d2030d659791184ecac8de9d6e1403b316a94c2.zip |
Add a new randomized memcpy test for copies up to 256 bytes. The distribution
of the size and alignment is based on a trace of SPEC2006. Instead of repeating the same copy over and over again like the existing tests, it times several thousand different copies to more accurately estimate the overhead of branch prediction. * benchtests/Makefile (string-benchset): Add memcpy-random. * benchtests/bench-memcpy-random.c: New file.
Diffstat (limited to 'benchtests')
-rw-r--r-- | benchtests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 81edf8a933..a96e9533b3 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -37,7 +37,7 @@ string-benchset := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \ strcat strchr strchrnul strcmp strcpy strcspn strlen \ strncasecmp strncat strncmp strncpy strnlen strpbrk strrchr \ strspn strstr strcpy_chk stpcpy_chk memrchr strsep strtok \ - strcoll memcpy-large memmove-large memset-large + strcoll memcpy-large memcpy-random memmove-large memset-large # Build and run locale-dependent benchmarks only if we're building natively. ifeq (no,$(cross-compiling)) |