diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-05-23 19:36:36 -0400 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-05-23 19:36:36 -0400 |
commit | fc335a0ded2bcbade73f35c73eef66ff10eecdb8 (patch) | |
tree | 02d4daeb3aaf1afd4311faf6f0798c2a724eb65b /benchtests/bench-memcpy-walk.c | |
parent | 94bc766ec627b2c44a6c72bc40013957ffc4b6cd (diff) | |
download | glibc-fc335a0ded2bcbade73f35c73eef66ff10eecdb8.zip glibc-fc335a0ded2bcbade73f35c73eef66ff10eecdb8.tar.gz glibc-fc335a0ded2bcbade73f35c73eef66ff10eecdb8.tar.bz2 |
Bench: Add support for choose direction of memcpy in benchtests
This patch adds support for testing memcpy with both dst > src and dst
< src. Since memcpy is implemented as memmove which has seperate
control flows for certain sizes depending on dst > src it seems like
1) information that should be provided in the benchtest output and a
variable that can be controlled for the benchmarks.
Signed-off-by: Noah Goldstein <goldstein.w.n@gmail.com>
Diffstat (limited to 'benchtests/bench-memcpy-walk.c')
-rw-r--r-- | benchtests/bench-memcpy-walk.c | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/benchtests/bench-memcpy-walk.c b/benchtests/bench-memcpy-walk.c index b04d8ac..610529e 100644 --- a/benchtests/bench-memcpy-walk.c +++ b/benchtests/bench-memcpy-walk.c @@ -66,17 +66,30 @@ do_one_test (json_ctx_t *json_ctx, impl_t *impl, char *dst, char *src, } static void -do_test (json_ctx_t *json_ctx, size_t len) +do_test (json_ctx_t *json_ctx, size_t len, int both_ways) { - json_element_object_begin (json_ctx); - json_attr_uint (json_ctx, "length", (double) len); - json_array_begin (json_ctx, "timings"); - FOR_EACH_IMPL (impl, 0) - do_one_test (json_ctx, impl, (char *) buf2, (char *) buf1, len); + char *s1, *s2; + size_t repeats; + s1 = (char *) (buf1); + s2 = (char *) (buf2); + + for (repeats = both_ways ? 2 : 1; repeats; --repeats) + { + json_element_object_begin (json_ctx); + json_attr_uint (json_ctx, "length", (double) len); + json_attr_uint (json_ctx, "dst > src", (double) (s2 > s1)); + json_array_begin (json_ctx, "timings"); - json_array_end (json_ctx); - json_element_object_end (json_ctx); + FOR_EACH_IMPL (impl, 0) + do_one_test (json_ctx, impl, s2, s1, len); + + json_array_end (json_ctx); + json_element_object_end (json_ctx); + + s1 = (char *) (buf2); + s2 = (char *) (buf1); + } } int @@ -103,8 +116,8 @@ test_main (void) json_array_begin (&json_ctx, "results"); for (size_t i = START_SIZE; i <= MIN_PAGE_SIZE; i <<= 1) { - do_test (&json_ctx, i); - do_test (&json_ctx, i + 1); + do_test (&json_ctx, i, 1); + do_test (&json_ctx, i + 1, 1); } json_array_end (&json_ctx); |