From a357259bf854478d154727bbc9e39f89c952f6cc Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Mon, 7 Oct 2013 11:51:24 +0530 Subject: 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. --- benchtests/pow-inputs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'benchtests/pow-inputs') diff --git a/benchtests/pow-inputs b/benchtests/pow-inputs index dad65059aa..96b1b6c2ad 100644 --- a/benchtests/pow-inputs +++ b/benchtests/pow-inputs @@ -1,3 +1,6 @@ +## args: double:double +## ret: double +## includes: math.h 42.0, 42.0 # pow slowest path at 768 bits # Implemented in sysdeps/ieee754/dbl-64/slowpow.c -- cgit v1.2.3