1 /* Measure memset functions with large data sizes.
2 Copyright (C) 2016-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/>. */
21 # define TEST_NAME "memset"
23 # define TEST_NAME "wmemset"
25 #define START_SIZE (128 * 1024)
26 #define MIN_PAGE_SIZE (getpagesize () + 64 * 1024 * 1024)
27 #define TIMEOUT (20 * 60)
28 #include "bench-string.h"
31 # define MEMSET memset
33 # define SIMPLE_MEMSET simple_memset
34 # define MEMCMP memcmp
37 # define MEMSET wmemset
39 # define SIMPLE_MEMSET simple_wmemset
40 # define MEMCMP wmemcmp
48 typedef CHAR
*(*proto_t
) (CHAR
*, int, size_t);
51 inhibit_loop_to_libcall
52 SIMPLE_MEMSET (CHAR
*s
, int c
, size_t n
)
54 CHAR
*r
= s
, *end
= s
+ n
;
61 do_one_test (json_ctx_t
*json_ctx
, impl_t
*impl
, CHAR
*s
,
62 int c
__attribute ((unused
)), size_t n
)
65 timing_t start
, stop
, cur
;
68 for (i
= 0; i
< iters
; ++i
)
74 TIMING_DIFF (cur
, start
, stop
);
76 json_element_double (json_ctx
, (double) cur
/ (double) iters
);
80 do_test (json_ctx_t
*json_ctx
, size_t align
, int c
, size_t len
)
83 if ((align
+ len
) * sizeof (CHAR
) > page_size
)
86 json_element_object_begin (json_ctx
);
87 json_attr_uint (json_ctx
, "length", len
);
88 json_attr_uint (json_ctx
, "alignment", align
);
89 json_attr_int (json_ctx
, "char", c
);
90 json_array_begin (json_ctx
, "timings");
92 FOR_EACH_IMPL (impl
, 0)
94 do_one_test (json_ctx
, impl
, (CHAR
*) (buf1
) + align
, c
, len
);
98 json_array_end (json_ctx
);
99 json_element_object_end (json_ctx
);
111 json_init (&json_ctx
, 0, stdout
);
113 json_document_begin (&json_ctx
);
114 json_attr_string (&json_ctx
, "timing_type", TIMING_TYPE
);
116 json_attr_object_begin (&json_ctx
, "functions");
117 json_attr_object_begin (&json_ctx
, TEST_NAME
);
118 json_attr_string (&json_ctx
, "bench-variant", "large");
120 json_array_begin (&json_ctx
, "ifuncs");
121 FOR_EACH_IMPL (impl
, 0)
122 json_element_string (&json_ctx
, impl
->name
);
123 json_array_end (&json_ctx
);
125 json_array_begin (&json_ctx
, "results");
128 for (i
= START_SIZE
; i
<= MIN_PAGE_SIZE
; i
<<= 1)
130 do_test (&json_ctx
, 0, c
, i
);
131 do_test (&json_ctx
, 3, c
, i
);
134 json_array_end (&json_ctx
);
135 json_attr_object_end (&json_ctx
);
136 json_attr_object_end (&json_ctx
);
137 json_document_end (&json_ctx
);
142 #include <support/test-driver.c>