glibc/benchtests
Joseph Myers 79520f4bd6 Use existing makefile variables for dependencies on glibc libraries.
glibc's Makeconfig defines some variables such as $(libm) and $(libdl)
for linking with libraries built by glibc, and nptl/Makeconfig
(included by the toplevel Makeconfig) defines others such as
$(shared-thread-library).

In some places glibc's Makefiles use those variables when linking
against the relevant libraries, but in other places they hardcode the
location of the libraries in the build tree.  This patch cleans up
various places to use the variables that already exist (in the case of
libm, replacing several duplicate definitions of a $(link-libm)
variable in subdirectory Makefiles).  (It's not necessarily exactly
equivalent to what the existing code does - in particular,
$(shared-thread-library) includes libpthread_nonshared, but is
replacing places that just referred to libpthread.so.  But I think
that change is desirable on the general principle of linking things as
close as possible to the way in which they would be linked with an
installed library, unless there is a clear reason not to do so.)

To support running tests with an installed copy of glibc without
needing the full build tree from when that copy was built, I think it
will be useful to use such variables more generally and systematically
- every time the rules for building a test refer to some file from the
build tree that's also installed by glibc, use a makefile variable so
that the installed-testing case can point those variables to installed
copies of the files.  This patch just deals with straightforward cases
where such variables already exist.

It's quite possible some uses of $(shared-thread-library) should
actually be a new $(thread-library) variable that's set appropriately
in the --disable-shared case, if those uses would in fact work without
shared libraries.  I didn't change the status quo that those cases
hardcode use of a shared library whether or not it's actually needed
(but other uses such as $(libm) and $(libdl) would now get the static
library if the shared library isn't built, when some previously
hardcoded use of the shared library - if they actually need shared
libraries, the test itself needs an enable-shared conditional anyway).

Tested x86_64.

	* benchtests/Makefile
	($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
	not $(common-objpfx)math/libm.so.
	($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
	$(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
	* elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
	$(common-objpfx)dlfcn/libdl.so.
	($(objpfx)tst-audit8): Depend on $(libm), not
	$(common-objpfx)math/libm.so.
	* malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
	not $(common-objpfx)dlfcn/libdl.so.
	* math/Makefile
	($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
	Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
	[$(build-shared) = yes].
	($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
	$(common-objpfx)nptl/libpthread.so.
	* misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
	$(common-objpfx)math/libm.so$(libm.so-version) or
	$(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
	* nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
	$(common-objpfx)dlfcn/libdl.so.
	* setjmp/Makefile (link-libm): Remove variable.
	($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
	* stdio-common/Makefile (link-libm): Remove variable.
	($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
	* stdlib/Makefile (link-libm): Remove variable.
	($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
	($(objpfx)tst-strtod-round): Likewise.
	($(objpfx)tst-tininess): Likewise.
	($(objpfx)tst-strtod-underflow): Likewise.
	($(objpfx)tst-strtod6): Likewise.
	($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
	$(libdl), not $(common-objpfx)nptl/libpthread.so and
	$(common-objpfx)dlfcn/libdl.so.
2014-05-16 21:38:08 +00:00
..
scripts Detailed benchmark outputs for functions 2014-03-29 09:40:19 +05:30
Makefile Use existing makefile variables for dependencies on glibc libraries. 2014-05-16 21:38:08 +00:00
README benchtests: Add pthread_once common-case test. 2014-04-10 21:22:28 +02:00
acos-inputs Correct inputs for sin and cos 2014-01-10 09:57:51 +05:30
acosh-inputs benchmark inputs for asinh and acosh 2013-12-31 12:05:16 +05:30
asin-inputs Correct inputs for sin and cos 2014-01-10 09:57:51 +05:30
asinh-inputs benchmark inputs for asinh and acosh 2013-12-31 12:05:16 +05:30
atan-inputs benchmark inputs for atan 2013-12-31 12:11:13 +05:30
atanh-inputs benchmark inputs for tanh and atanh 2013-12-31 12:06:30 +05:30
bench-bcopy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-bzero.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memccpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memchr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memcmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memcpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memmem.c Use glibc_likely instead __builtin_expect. 2014-02-10 15:07:12 +01:00
bench-memmove.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-mempcpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memrchr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-memset.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-rawmemchr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-skeleton.c benchtests: Improve readability of JSON output 2014-04-11 16:05:03 +01:00
bench-stpcpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-stpcpy_chk.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-stpncpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcasecmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcasestr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strchr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strchrnul.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strcpy_chk.c tests: unify fortification handler logic 2014-02-08 06:58:43 -05:00
bench-strcspn.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-string.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strlen.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strncasecmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strncat.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strncmp.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strncpy.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strnlen.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strpbrk.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strrchr.c Minor formatting fix 2014-02-21 11:31:41 +05:30
bench-strsep.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strspn.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strstr.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
bench-strtod.c benchtests/bench-strtod.c: Increase timeout value 2014-03-26 09:43:28 +00:00
bench-strtok.c Make strtok benchmark competive. 2014-02-28 22:45:33 +01:00
bench-timing-type.c benchtests: Improve readability of JSON output 2014-04-11 16:05:03 +01:00
bench-timing.h Make bench.out in json format 2014-03-29 09:37:44 +05:30
cos-inputs Benchmark inputs for cos and sin 2013-12-31 12:12:46 +05:30
cosh-inputs benchmark inputs for sinh and cosh 2013-12-31 12:03:44 +05:30
exp-inputs New inputs for exp 2013-10-28 16:35:08 +05:30
exp2-inputs benchmark inputs for exp2, log2, log and tan 2013-12-12 09:31:53 +05:30
ffs-inputs benchtests: Add benchtests for ffs and ffsll 2014-03-31 12:50:41 +01:00
ffsll-inputs benchtests: Add benchtests for ffs and ffsll 2014-03-31 12:50:41 +01:00
json-lib.c benchtests: Improve readability of JSON output 2014-04-11 16:05:03 +01:00
json-lib.h benchtests: Improve readability of JSON output 2014-04-11 16:05:03 +01:00
log-inputs benchmark inputs for exp2, log2, log and tan 2013-12-12 09:31:53 +05:30
log2-inputs benchmark inputs for exp2, log2, log and tan 2013-12-12 09:31:53 +05:30
modf-inputs [benchtests] Use inputs file for modf 2014-03-29 09:35:50 +05:30
pow-inputs Benchmark inputs for pow 2013-10-28 16:36:46 +05:30
pthread_once-inputs benchtests: Add pthread_once common-case test. 2014-04-10 21:22:28 +02:00
pthread_once-source.c benchtests: Add pthread_once common-case test. 2014-04-10 21:22:28 +02:00
rint-inputs Add more directives to benchmark input files 2013-10-07 11:51:25 +05:30
sin-inputs Benchmark inputs for cos and sin 2013-12-31 12:12:46 +05:30
sincos-inputs Accept output arguments to benchmark functions 2013-12-05 10:12:59 +05:30
sinh-inputs benchmark inputs for sinh and cosh 2013-12-31 12:03:44 +05:30
sqrt-inputs Benchmark test for sqrt function. 2013-12-02 09:37:18 -08:00
tan-inputs benchmark inputs for exp2, log2, log and tan 2013-12-12 09:31:53 +05:30
tanh-inputs benchmark inputs for tanh and atanh 2013-12-31 12:06:30 +05:30

README

Using the glibc microbenchmark suite
====================================

The glibc microbenchmark suite automatically generates code for specified
functions, builds and calls them repeatedly for given inputs to give some
basic performance properties of the function.

Running the benchmark:
=====================

The benchmark needs python 2.7 or later in addition to the
dependencies required to build the GNU C Library.  One may run the
benchmark by invoking make as follows:

  $ make bench

This runs each function for 10 seconds and appends its output to
benchtests/bench.out.  To ensure that the tests are rebuilt, one could run:

  $ make bench-clean

The duration of each test can be configured setting the BENCH_DURATION variable
in the call to make.  One should run `make bench-clean' before changing
BENCH_DURATION.

  $ make BENCH_DURATION=1 bench

The benchmark suite does function call measurements using architecture-specific
high precision timing instructions whenever available.  When such support is
not available, it uses clock_gettime (CLOCK_PROCESS_CPUTIME_ID).  One can force
the benchmark to use clock_gettime by invoking make as follows:

  $ make USE_CLOCK_GETTIME=1 bench

Again, one must run `make bench-clean' before changing the measurement method.

Adding a function to benchtests:
===============================

If the name of the function is `foo', then the following procedure should allow
one to add `foo' to the bench tests:

- Append the function name to the bench variable in the Makefile.

- Make a file called `foo-inputs` to provide the definition and input for the
  function.  The file should have some directives telling the parser script
  about the function and then one input per line.  Directives are lines that
  have a special meaning for the parser and they begin with two hashes '##'.
  The following directives are recognized:

  - args: This should be assigned a colon separated list of types of the input
    arguments.  This directive may be skipped if the function does not take any
    inputs.  One may identify output arguments by nesting them in <>.  The
    generator will create variables to get outputs from the calling function.
  - ret: This should be assigned the type that the function returns.  This
    directive may be skipped if the function does not return a value.
  - includes: This should be assigned a comma-separated list of headers that
    need to be included to provide declarations for the function and types it
    may need (specifically, this includes using "#include <header>").
  - include-sources: This should be assigned a comma-separated list of source
    files that need to be included to provide definitions of global variables
    and functions (specifically, this includes using "#include "source").
    See pthread_once-inputs and pthreads_once-source.c for an example of how
    to use this to benchmark a function that needs state across several calls.
  - name: See following section for instructions on how to use this directive.

  Lines beginning with a single hash '#' are treated as comments.  See
  pow-inputs for an example of an input file.

Multiple execution units per function:
=====================================

Some functions have distinct performance characteristics for different input
domains and it may be necessary to measure those separately.  For example, some
math functions perform computations at different levels of precision (64-bit vs
240-bit vs 768-bit) and mixing them does not give a very useful picture of the
performance of these functions.  One could separate inputs for these domains in
the same file by using the `name' directive that looks something like this:

  ##name: 240bit

See the pow-inputs file for an example of what such a partitioned input file
would look like.

Benchmark Sets:
==============

In addition to standard benchmarking of functions, one may also generate
custom outputs for a set of functions.  This is currently used by string
function benchmarks where the aim is to compare performance between
implementations at various alignments and for various sizes.

To add a benchset for `foo':

- Add `foo' to the benchset variable.
- Write your bench-foo.c that prints out the measurements to stdout.
- On execution, a bench-foo.out is created in $(objpfx) with the contents of
  stdout.