hurd: Add mlockall support
[glibc.git] / benchtests / bench-memmove-walk.c
blobeee5d0bac7abf233e309944b37fd06a46990ae21
1 /* Measure memmove function combined throughput for different alignments.
2 Copyright (C) 2017-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 /* This microbenchmark measures the throughput of memmove for various sizes from
20 1 byte to 32MiB, doubling every iteration and then misaligning by 0-15
21 bytes. The copies are done from source to destination and then back and the
22 source walks forward across the array and the destination walks backward by
23 one byte each, thus measuring misaligned accesses as well. The idea is to
24 avoid caching effects by copying a different string and far enough from each
25 other, walking in different directions so that we can measure prefetcher
26 efficiency (software or hardware) more closely than with a loop copying the
27 same data over and over, which eventually only gives us L1 cache
28 performance. */
30 #ifndef MEMMOVE_RESULT
31 # define MEMMOVE_RESULT(dst, len) dst
32 # define START_SIZE 128
33 # define MIN_PAGE_SIZE (getpagesize () + 32 * 1024 * 1024)
34 # define TEST_MAIN
35 # define TEST_NAME "memmove"
36 # define TIMEOUT (20 * 60)
37 # include "bench-string.h"
39 IMPL (memmove, 1)
40 #endif
42 #include "json-lib.h"
44 typedef char *(*proto_t) (char *, const char *, size_t);
46 static void
47 do_one_test (json_ctx_t *json_ctx, impl_t *impl, char *dst, char *src,
48 size_t len)
50 size_t i = 0;
51 timing_t start, stop, cur;
53 char *dst_end = dst + MIN_PAGE_SIZE - len;
54 char *src_end = src + MIN_PAGE_SIZE - len;
56 TIMING_NOW (start);
57 /* Copy the entire buffer backwards, LEN at a time. */
58 for (; src_end >= src && dst <= dst_end; dst += len, src_end -= len, i++)
59 CALL (impl, dst, src_end, len);
60 TIMING_NOW (stop);
62 TIMING_DIFF (cur, start, stop);
64 /* Get time taken per function call. */
65 json_element_double (json_ctx, (double) cur / i);
68 static void
69 do_test (json_ctx_t *json_ctx, size_t len, bool overlap)
71 json_element_object_begin (json_ctx);
72 json_attr_uint (json_ctx, "length", (double) len);
73 json_array_begin (json_ctx, "timings");
75 if (overlap)
76 buf2 = buf1;
78 FOR_EACH_IMPL (impl, 0)
79 do_one_test (json_ctx, impl, (char *) buf2, (char *) buf1, len);
81 json_array_end (json_ctx);
82 json_element_object_end (json_ctx);
85 int
86 test_main (void)
88 json_ctx_t json_ctx;
89 size_t i;
91 test_init ();
93 json_init (&json_ctx, 0, stdout);
95 json_document_begin (&json_ctx);
96 json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);
98 json_attr_object_begin (&json_ctx, "functions");
99 json_attr_object_begin (&json_ctx, "memmove");
100 json_attr_string (&json_ctx, "bench-variant", "walk");
102 json_array_begin (&json_ctx, "ifuncs");
103 FOR_EACH_IMPL (impl, 0)
104 json_element_string (&json_ctx, impl->name);
105 json_array_end (&json_ctx);
107 json_array_begin (&json_ctx, "results");
108 /* Non-overlapping buffers. */
109 for (i = START_SIZE; i <= MIN_PAGE_SIZE; i <<= 1)
111 /* Test length alignments from 0-16 bytes. */
112 for (int j = 0; j < 8; j++)
114 do_test (&json_ctx, i + j, false);
115 do_test (&json_ctx, i + 16 - j, false);
119 /* Overlapping buffers. */
120 for (i = START_SIZE; i <= MIN_PAGE_SIZE; i <<= 1)
122 /* Test length alignments from 0-16 bytes. */
123 for (int j = 0; j < 8; j++)
125 do_test (&json_ctx, i + j, true);
126 do_test (&json_ctx, i + 16 - j, true);
130 json_array_end (&json_ctx);
131 json_attr_object_end (&json_ctx);
132 json_attr_object_end (&json_ctx);
133 json_document_end (&json_ctx);
135 return ret;
138 #include <support/test-driver.c>