diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2022-04-06 20:53:24 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2022-04-06 20:53:24 +0530 |
commit | 67e3b0c63c35769c1ba28fa2a32446332bb4fcef (patch) | |
tree | 30222f7961103558c51c99871cead59139e65fd5 /string/test-memcpy-support.h | |
parent | dfc7bf8a24f63532da167cc7131227c1c4027ffb (diff) | |
download | glibc-67e3b0c63c35769c1ba28fa2a32446332bb4fcef.tar.gz glibc-67e3b0c63c35769c1ba28fa2a32446332bb4fcef.tar.xz glibc-67e3b0c63c35769c1ba28fa2a32446332bb4fcef.zip |
tests/string: Drop simple/stupid/builtin tests
In most cases the simple/stupid/builtin functions were in there to benchmark optimized implementations against. Only in some cases the functions are used to check expected results. Remove these tests from IMPL() and only keep them in wherever they're used for a specific purpose, e.g. to generate expected results. This improves timing of `make subdirs=string` by over a minute and a half (over 15%) on a Whiskey Lake laptop. Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org> Reviewed-by: Noah Goldstein <libc-alpha@sourceware.org>
Diffstat (limited to 'string/test-memcpy-support.h')
-rw-r--r-- | string/test-memcpy-support.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/string/test-memcpy-support.h b/string/test-memcpy-support.h index 699c00ce4c..0ea982b429 100644 --- a/string/test-memcpy-support.h +++ b/string/test-memcpy-support.h @@ -29,12 +29,9 @@ #define TIMEOUT (8 * 60) #include "test-string.h" -char *simple_memcpy (char *, const char *, size_t); -char *builtin_memcpy (char *, const char *, size_t); - -IMPL (simple_memcpy, 0) -IMPL (builtin_memcpy, 0) IMPL (memcpy, 1) + +/* Naive implementation to verify results. */ char * simple_memcpy (char *dst, const char *src, size_t n) { @@ -44,11 +41,6 @@ simple_memcpy (char *dst, const char *src, size_t n) return ret; } -char * -builtin_memcpy (char *dst, const char *src, size_t n) -{ - return __builtin_memcpy (dst, src, n); -} #endif typedef char *(*proto_t) (char *, const char *, size_t); typedef uint32_t __attribute__ ((may_alias, aligned (1))) unaligned_uint32_t; |