Add more directives to benchmark input files
commita357259bf854478d154727bbc9e39f89c952f6cc
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 7 Oct 2013 06:21:24 +0000 (7 11:51 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 7 Oct 2013 06:21:25 +0000 (7 11:51 +0530)
tree11e1d64d36fbfb9c3ed40215ac7cebfee6f6e004
parent9ec1b13d0162034464202b06d81b9daa9fe840e7
Add more directives to benchmark input files

This patch adds some more directives to the benchmark inputs file,
moving functionality from the Makefile and making the code generation
script a bit cleaner.  The function argument and return types that
were earlier added as variables in the makefile and passed to the
script via command line arguments are now the 'args' and 'ret'
directive respectively.  'args' should be a colon separated list of
argument types (skipped if the function doesn't accept any arguments)
and 'ret' should be the return type.

Additionally, an 'includes' directive may have a comma separated list
of headers to include in the source.  For example, the pow input file
now looks like this:

42.0, 42.0
1.0000000000000020, 1.5

I did this to unclutter the benchtests Makefile a bit and eventually
eliminate dependency of the tests on the Makefile and have tests
depend on their respective include files only.
20 files changed:
ChangeLog
benchtests/Makefile
benchtests/README
benchtests/acos-inputs
benchtests/acosh-inputs
benchtests/asin-inputs
benchtests/asinh-inputs
benchtests/atan-inputs
benchtests/atanh-inputs
benchtests/cos-inputs
benchtests/cosh-inputs
benchtests/exp-inputs
benchtests/log-inputs
benchtests/pow-inputs
benchtests/rint-inputs
benchtests/sin-inputs
benchtests/sinh-inputs
benchtests/tan-inputs
benchtests/tanh-inputs
scripts/bench.pl