1999-10-19 08:29:27 +02:00
|
|
|
#!/usr/bin/perl -w
|
2006-03-17 00:17:32 +01:00
|
|
|
# Copyright (C) 1999, 2006 Free Software Foundation, Inc.
|
1999-10-19 08:29:27 +02:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
# Contributed by Andreas Jaeger <aj@suse.de>, 1999.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
# Lesser General Public License for more details.
|
1999-10-19 08:29:27 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with the GNU C Library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
# 02111-1307 USA.
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
# This file needs to be tidied up
|
|
|
|
# Note that functions and tests share the same namespace.
|
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
# Information about tests are stored in: %results
|
1999-10-25 22:18:27 +02:00
|
|
|
# $results{$test}{"kind"} is either "fct" or "test" and flags whether this
|
|
|
|
# is a maximal error of a function or a single test.
|
1999-10-20 21:22:24 +02:00
|
|
|
# $results{$test}{"type"} is the result type, e.g. normal or complex.
|
|
|
|
# $results{$test}{"has_ulps"} is set if deltas exist.
|
|
|
|
# $results{$test}{"has_fails"} is set if exptected failures exist.
|
|
|
|
# In the following description $type and $float are:
|
|
|
|
# - $type is either "normal", "real" (for the real part of a complex number)
|
|
|
|
# or "imag" (for the imaginary part # of a complex number).
|
|
|
|
# - $float is either of float, ifloat, double, idouble, ldouble, ildouble;
|
|
|
|
# It represents the underlying floating point type (float, double or long
|
|
|
|
# double) and if inline functions (the leading i stands for inline)
|
|
|
|
# are used.
|
1999-10-25 21:49:49 +02:00
|
|
|
# $results{$test}{$type}{"fail"}{$float} is defined and has a 1 if
|
1999-10-20 21:22:24 +02:00
|
|
|
# the test is expected to fail
|
|
|
|
# $results{$test}{$type}{"ulp"}{$float} is defined and has a delta as value
|
|
|
|
|
|
|
|
|
1999-10-19 08:29:27 +02:00
|
|
|
use Getopt::Std;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use vars qw ($input $output);
|
1999-10-20 21:22:24 +02:00
|
|
|
use vars qw (%results);
|
1999-10-19 08:29:27 +02:00
|
|
|
use vars qw (@tests @functions);
|
|
|
|
use vars qw ($count);
|
1999-10-20 21:22:24 +02:00
|
|
|
use vars qw (%beautify @all_floats);
|
1999-10-19 08:29:27 +02:00
|
|
|
use vars qw ($output_dir $ulps_file);
|
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
# all_floats is sorted and contains all recognised float types
|
1999-10-25 21:49:49 +02:00
|
|
|
@all_floats = ('double', 'float', 'idouble',
|
1999-10-20 21:22:24 +02:00
|
|
|
'ifloat', 'ildouble', 'ldouble');
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
%beautify =
|
1999-10-19 08:29:27 +02:00
|
|
|
( "minus_zero" => "-0",
|
|
|
|
"plus_zero" => "+0",
|
|
|
|
"minus_infty" => "-inf",
|
|
|
|
"plus_infty" => "inf",
|
|
|
|
"nan_value" => "NaN",
|
|
|
|
"M_El" => "e",
|
|
|
|
"M_E2l" => "e^2",
|
|
|
|
"M_E3l" => "e^3",
|
|
|
|
"M_LOG10El", "log10(e)",
|
|
|
|
"M_PIl" => "pi",
|
|
|
|
"M_PI_34l" => "3/4 pi",
|
|
|
|
"M_PI_2l" => "pi/2",
|
|
|
|
"M_PI_4l" => "pi/4",
|
|
|
|
"M_PI_6l" => "pi/6",
|
|
|
|
"M_PI_34_LOG10El" => "3/4 pi*log10(e)",
|
|
|
|
"M_PI_LOG10El" => "pi*log10(e)",
|
|
|
|
"M_PI2_LOG10El" => "pi/2*log10(e)",
|
|
|
|
"M_PI4_LOG10El" => "pi/4*log10(e)",
|
|
|
|
"M_LOG_SQRT_PIl" => "log(sqrt(pi))",
|
|
|
|
"M_LOG_2_SQRT_PIl" => "log(2*sqrt(pi))",
|
|
|
|
"M_2_SQRT_PIl" => "2 sqrt (pi)",
|
|
|
|
"M_SQRT_PIl" => "sqrt (pi)",
|
|
|
|
"INVALID_EXCEPTION" => "invalid exception",
|
|
|
|
"DIVIDE_BY_ZERO_EXCEPTION" => "division by zero exception",
|
|
|
|
"INVALID_EXCEPTION_OK" => "invalid exception allowed",
|
|
|
|
"DIVIDE_BY_ZERO_EXCEPTION_OK" => "division by zero exception allowed",
|
|
|
|
"EXCEPTIONS_OK" => "exceptions allowed",
|
|
|
|
"IGNORE_ZERO_INF_SIGN" => "sign of zero/inf not specified",
|
|
|
|
"INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN" => "invalid exception and sign of zero/inf not specified"
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
# get Options
|
|
|
|
# Options:
|
|
|
|
# u: ulps-file
|
|
|
|
# h: help
|
|
|
|
# o: output-directory
|
|
|
|
# n: generate new ulps file
|
|
|
|
use vars qw($opt_u $opt_h $opt_o $opt_n);
|
|
|
|
getopts('u:o:nh');
|
|
|
|
|
|
|
|
$ulps_file = 'libm-test-ulps';
|
|
|
|
$output_dir = '';
|
|
|
|
|
|
|
|
if ($opt_h) {
|
1999-10-20 05:20:31 +02:00
|
|
|
print "Usage: gen-libm-test.pl [OPTIONS]\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
print " -h print this help, then exit\n";
|
|
|
|
print " -o DIR directory where generated files will be placed\n";
|
1999-10-25 22:18:27 +02:00
|
|
|
print " -n only generate sorted file NewUlps from libm-test-ulps\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
print " -u FILE input file with ulps\n";
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ulps_file = $opt_u if ($opt_u);
|
|
|
|
$output_dir = $opt_o if ($opt_o);
|
|
|
|
|
|
|
|
$input = "libm-test.inc";
|
|
|
|
$output = "${output_dir}libm-test.c";
|
|
|
|
|
|
|
|
$count = 0;
|
|
|
|
|
|
|
|
&parse_ulps ($ulps_file);
|
1999-10-25 22:18:27 +02:00
|
|
|
&generate_testfile ($input, $output) unless ($opt_n);
|
|
|
|
&output_ulps ("${output_dir}libm-test-ulps.h", $ulps_file) unless ($opt_n);
|
1999-10-19 08:29:27 +02:00
|
|
|
&print_ulps_file ("${output_dir}NewUlps") if ($opt_n);
|
|
|
|
|
|
|
|
# Return a nicer representation
|
|
|
|
sub beautify {
|
|
|
|
my ($arg) = @_;
|
|
|
|
my ($tmp);
|
|
|
|
|
|
|
|
if (exists $beautify{$arg}) {
|
|
|
|
return $beautify{$arg};
|
|
|
|
}
|
|
|
|
if ($arg =~ /^-/) {
|
|
|
|
$tmp = $arg;
|
|
|
|
$tmp =~ s/^-//;
|
|
|
|
if (exists $beautify{$tmp}) {
|
|
|
|
return '-' . $beautify{$tmp};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($arg =~ /[0-9]L$/) {
|
|
|
|
$arg =~ s/L$//;
|
|
|
|
}
|
|
|
|
return $arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return a nicer representation of a complex number
|
|
|
|
sub build_complex_beautify {
|
|
|
|
my ($r, $i) = @_;
|
|
|
|
my ($str1, $str2);
|
|
|
|
|
|
|
|
$str1 = &beautify ($r);
|
|
|
|
$str2 = &beautify ($i);
|
|
|
|
if ($str2 =~ /^-/) {
|
|
|
|
$str2 =~ s/^-//;
|
|
|
|
$str1 .= ' - ' . $str2;
|
|
|
|
} else {
|
|
|
|
$str1 .= ' + ' . $str2;
|
|
|
|
}
|
|
|
|
$str1 .= ' i';
|
|
|
|
return $str1;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Return name of a variable
|
|
|
|
sub get_variable {
|
|
|
|
my ($number) = @_;
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
return "x" if ($number == 1);
|
|
|
|
return "y" if ($number == 2);
|
1999-10-19 08:29:27 +02:00
|
|
|
return "z" if ($number == 3);
|
|
|
|
# return x1,x2,...
|
|
|
|
$number =-3;
|
|
|
|
return "x$number";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add a new test to internal data structures and fill in the
|
|
|
|
# ulps, failures and exception information for the C line.
|
|
|
|
sub new_test {
|
|
|
|
my ($test, $exception) = @_;
|
|
|
|
my $rest;
|
|
|
|
|
|
|
|
# Add ulp, xfail
|
1999-10-20 21:22:24 +02:00
|
|
|
if (exists $results{$test}{'has_ulps'}) {
|
1999-10-19 08:29:27 +02:00
|
|
|
$rest = ", DELTA$count";
|
|
|
|
} else {
|
|
|
|
$rest = ', 0';
|
|
|
|
}
|
1999-10-20 21:22:24 +02:00
|
|
|
if (exists $results{$test}{'has_fails'}) {
|
1999-10-19 08:29:27 +02:00
|
|
|
$rest .= ", FAIL$count";
|
|
|
|
} else {
|
|
|
|
$rest .= ', 0';
|
|
|
|
}
|
|
|
|
if (defined $exception) {
|
|
|
|
$rest .= ", $exception";
|
|
|
|
} else {
|
|
|
|
$rest .= ', 0';
|
|
|
|
}
|
|
|
|
$rest .= ");\n";
|
|
|
|
# We must increment here to keep @tests and count in sync
|
|
|
|
push @tests, $test;
|
|
|
|
++$count;
|
|
|
|
return $rest;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Treat some functions especially.
|
|
|
|
# Currently only sincos needs extra treatment.
|
|
|
|
sub special_functions {
|
|
|
|
my ($file, $args) = @_;
|
|
|
|
my (@args, $str, $test, $cline);
|
|
|
|
|
|
|
|
@args = split /,\s*/, $args;
|
1999-10-19 15:53:34 +02:00
|
|
|
|
1999-10-19 08:29:27 +02:00
|
|
|
unless ($args[0] =~ /sincos/) {
|
|
|
|
die ("Don't know how to handle $args[0] extra.");
|
|
|
|
}
|
|
|
|
print $file " FUNC (sincos) ($args[1], &sin_res, &cos_res);\n";
|
|
|
|
|
|
|
|
$str = 'sincos (' . &beautify ($args[1]) . ', &sin_res, &cos_res)';
|
|
|
|
# handle sin
|
|
|
|
$test = $str . ' puts ' . &beautify ($args[2]) . ' in sin_res';
|
|
|
|
if ($#args == 4) {
|
|
|
|
$test .= " plus " . &beautify ($args[4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$cline = " check_float (\"$test\", sin_res, $args[2]";
|
|
|
|
$cline .= &new_test ($test, $args[4]);
|
|
|
|
print $file $cline;
|
1999-10-19 15:53:34 +02:00
|
|
|
|
1999-10-19 08:29:27 +02:00
|
|
|
# handle cos
|
|
|
|
$test = $str . ' puts ' . &beautify ($args[3]) . ' in cos_res';
|
|
|
|
$cline = " check_float (\"$test\", cos_res, $args[3]";
|
|
|
|
# only tests once for exception
|
|
|
|
$cline .= &new_test ($test, undef);
|
|
|
|
print $file $cline;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Parse the arguments to TEST_x_y
|
|
|
|
sub parse_args {
|
2006-03-17 00:17:32 +01:00
|
|
|
my ($file, $descr, $fct, $args) = @_;
|
1999-10-19 08:29:27 +02:00
|
|
|
my (@args, $str, $descr_args, $descr_res, @descr);
|
|
|
|
my ($current_arg, $cline, $i);
|
|
|
|
my ($pre, $post, @special);
|
|
|
|
my ($extra_var, $call, $c_call);
|
|
|
|
|
|
|
|
if ($descr eq 'extra') {
|
|
|
|
&special_functions ($file, $args);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
($descr_args, $descr_res) = split /_/,$descr, 2;
|
|
|
|
|
|
|
|
@args = split /,\s*/, $args;
|
|
|
|
|
2006-03-17 00:17:32 +01:00
|
|
|
$call = "$fct (";
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
# Generate first the string that's shown to the user
|
|
|
|
$current_arg = 1;
|
|
|
|
$extra_var = 0;
|
|
|
|
@descr = split //,$descr_args;
|
|
|
|
for ($i = 0; $i <= $#descr; $i++) {
|
|
|
|
if ($i >= 1) {
|
|
|
|
$call .= ', ';
|
|
|
|
}
|
|
|
|
# FLOAT, int, long int, long long int
|
|
|
|
if ($descr[$i] =~ /f|i|l|L/) {
|
|
|
|
$call .= &beautify ($args[$current_arg]);
|
|
|
|
++$current_arg;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
# &FLOAT, &int - argument is added here
|
|
|
|
if ($descr[$i] =~ /F|I/) {
|
|
|
|
++$extra_var;
|
|
|
|
$call .= '&' . &get_variable ($extra_var);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
# complex
|
|
|
|
if ($descr[$i] eq 'c') {
|
|
|
|
$call .= &build_complex_beautify ($args[$current_arg], $args[$current_arg+1]);
|
|
|
|
$current_arg += 2;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
die ("$descr[$i] is unknown");
|
|
|
|
}
|
|
|
|
$call .= ')';
|
|
|
|
$str = "$call == ";
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
# Result
|
1999-10-19 08:29:27 +02:00
|
|
|
@descr = split //,$descr_res;
|
|
|
|
foreach (@descr) {
|
|
|
|
if ($_ =~ /f|i|l|L/) {
|
|
|
|
$str .= &beautify ($args[$current_arg]);
|
|
|
|
++$current_arg;
|
|
|
|
} elsif ($_ eq 'c') {
|
|
|
|
$str .= &build_complex_beautify ($args[$current_arg], $args[$current_arg+1]);
|
|
|
|
$current_arg += 2;
|
|
|
|
} elsif ($_ eq 'b') {
|
|
|
|
# boolean
|
|
|
|
$str .= ($args[$current_arg] == 0) ? "false" : "true";
|
|
|
|
++$current_arg;
|
|
|
|
} elsif ($_ eq '1') {
|
|
|
|
++$current_arg;
|
|
|
|
} else {
|
|
|
|
die ("$_ is unknown");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# consistency check
|
|
|
|
if ($current_arg == $#args) {
|
|
|
|
die ("wrong number of arguments")
|
|
|
|
unless ($args[$current_arg] =~ /EXCEPTION|IGNORE_ZERO_INF_SIGN/);
|
|
|
|
} elsif ($current_arg < $#args) {
|
|
|
|
die ("wrong number of arguments");
|
|
|
|
} elsif ($current_arg > ($#args+1)) {
|
|
|
|
die ("wrong number of arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# check for exceptions
|
|
|
|
if ($current_arg <= $#args) {
|
|
|
|
$str .= " plus " . &beautify ($args[$current_arg]);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Put the C program line together
|
|
|
|
# Reset some variables to start again
|
|
|
|
$current_arg = 1;
|
|
|
|
$extra_var = 0;
|
|
|
|
if (substr($descr_res,0,1) eq 'f') {
|
|
|
|
$cline = 'check_float'
|
|
|
|
} elsif (substr($descr_res,0,1) eq 'b') {
|
|
|
|
$cline = 'check_bool';
|
|
|
|
} elsif (substr($descr_res,0,1) eq 'c') {
|
|
|
|
$cline = 'check_complex';
|
|
|
|
} elsif (substr($descr_res,0,1) eq 'i') {
|
|
|
|
$cline = 'check_int';
|
|
|
|
} elsif (substr($descr_res,0,1) eq 'l') {
|
|
|
|
$cline = 'check_long';
|
|
|
|
} elsif (substr($descr_res,0,1) eq 'L') {
|
|
|
|
$cline = 'check_longlong';
|
|
|
|
}
|
|
|
|
# Special handling for some macros:
|
|
|
|
$cline .= " (\"$str\", ";
|
|
|
|
if ($args[0] =~ /fpclassify|isnormal|isfinite|signbit/) {
|
|
|
|
$c_call = "$args[0] (";
|
|
|
|
} else {
|
|
|
|
$c_call = " FUNC($args[0]) (";
|
|
|
|
}
|
|
|
|
@descr = split //,$descr_args;
|
|
|
|
for ($i=0; $i <= $#descr; $i++) {
|
|
|
|
if ($i >= 1) {
|
|
|
|
$c_call .= ', ';
|
|
|
|
}
|
|
|
|
# FLOAT, int, long int, long long int
|
|
|
|
if ($descr[$i] =~ /f|i|l|L/) {
|
|
|
|
$c_call .= $args[$current_arg];
|
|
|
|
$current_arg++;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
# &FLOAT, &int
|
|
|
|
if ($descr[$i] =~ /F|I/) {
|
|
|
|
++$extra_var;
|
|
|
|
$c_call .= '&' . &get_variable ($extra_var);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
# complex
|
|
|
|
if ($descr[$i] eq 'c') {
|
|
|
|
$c_call .= "BUILD_COMPLEX ($args[$current_arg], $args[$current_arg+1])";
|
|
|
|
$current_arg += 2;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$c_call .= ')';
|
|
|
|
$cline .= "$c_call, ";
|
|
|
|
|
|
|
|
@descr = split //,$descr_res;
|
|
|
|
foreach (@descr) {
|
|
|
|
if ($_ =~ /b|f|i|l|L/ ) {
|
|
|
|
$cline .= $args[$current_arg];
|
|
|
|
$current_arg++;
|
|
|
|
} elsif ($_ eq 'c') {
|
|
|
|
$cline .= "BUILD_COMPLEX ($args[$current_arg], $args[$current_arg+1])";
|
|
|
|
$current_arg += 2;
|
|
|
|
} elsif ($_ eq '1') {
|
|
|
|
push @special, $args[$current_arg];
|
|
|
|
++$current_arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# Add ulp, xfail
|
|
|
|
$cline .= &new_test ($str, ($current_arg <= $#args) ? $args[$current_arg] : undef);
|
|
|
|
|
|
|
|
# special treatment for some functions
|
|
|
|
if ($args[0] eq 'frexp') {
|
|
|
|
if (defined $special[0] && $special[0] ne "IGNORE") {
|
|
|
|
my ($str) = "$call sets x to $special[0]";
|
|
|
|
$post = " check_int (\"$str\", x, $special[0]";
|
|
|
|
$post .= &new_test ($str, undef);
|
|
|
|
}
|
|
|
|
} elsif ($args[0] eq 'gamma' || $args[0] eq 'lgamma') {
|
|
|
|
$pre = " signgam = 0;\n";
|
|
|
|
if (defined $special[0] && $special[0] ne "IGNORE") {
|
|
|
|
my ($str) = "$call sets signgam to $special[0]";
|
|
|
|
$post = " check_int (\"$str\", signgam, $special[0]";
|
|
|
|
$post .= &new_test ($str, undef);
|
|
|
|
}
|
|
|
|
} elsif ($args[0] eq 'modf') {
|
|
|
|
if (defined $special[0] && $special[0] ne "IGNORE") {
|
|
|
|
my ($str) = "$call sets x to $special[0]";
|
|
|
|
$post = " check_float (\"$str\", x, $special[0]";
|
|
|
|
$post .= &new_test ($str, undef);
|
1999-10-19 15:53:34 +02:00
|
|
|
}
|
1999-10-19 08:29:27 +02:00
|
|
|
} elsif ($args[0] eq 'remquo') {
|
|
|
|
if (defined $special[0] && $special[0] ne "IGNORE") {
|
|
|
|
my ($str) = "$call sets x to $special[0]";
|
|
|
|
$post = " check_int (\"$str\", x, $special[0]";
|
|
|
|
$post .= &new_test ($str, undef);
|
|
|
|
}
|
|
|
|
}
|
1999-10-19 15:53:34 +02:00
|
|
|
|
1999-10-19 08:29:27 +02:00
|
|
|
print $file $pre if (defined $pre);
|
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
print $file " $cline";
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
print $file $post if (defined $post);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Generate libm-test.c
|
|
|
|
sub generate_testfile {
|
|
|
|
my ($input, $output) = @_;
|
|
|
|
my ($lasttext);
|
2006-03-17 00:17:32 +01:00
|
|
|
my (@args, $i, $str, $thisfct);
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
open INPUT, $input or die ("Can't open $input: $!");
|
|
|
|
open OUTPUT, ">$output" or die ("Can't open $output: $!");
|
|
|
|
|
|
|
|
# Replace the special macros
|
|
|
|
while (<INPUT>) {
|
|
|
|
|
|
|
|
# TEST_...
|
|
|
|
if (/^\s*TEST_/) {
|
|
|
|
my ($descr, $args);
|
|
|
|
chop;
|
|
|
|
($descr, $args) = ($_ =~ /TEST_(\w+)\s*\((.*)\)/);
|
2006-03-17 00:17:32 +01:00
|
|
|
&parse_args (\*OUTPUT, $descr, $thisfct, $args);
|
1999-10-19 08:29:27 +02:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
# START (function)
|
|
|
|
if (/START/) {
|
2006-03-17 00:17:32 +01:00
|
|
|
($thisfct) = ($_ =~ /START\s*\((.*)\)/);
|
1999-10-19 08:29:27 +02:00
|
|
|
print OUTPUT " init_max_error ();\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
# END (function)
|
|
|
|
if (/END/) {
|
1999-10-20 21:22:24 +02:00
|
|
|
my ($fct, $line, $type);
|
|
|
|
if (/complex/) {
|
|
|
|
s/,\s*complex\s*//;
|
|
|
|
$type = 'complex';
|
|
|
|
} else {
|
|
|
|
$type = 'normal';
|
|
|
|
}
|
1999-10-19 08:29:27 +02:00
|
|
|
($fct) = ($_ =~ /END\s*\((.*)\)/);
|
1999-10-20 21:22:24 +02:00
|
|
|
if ($type eq 'complex') {
|
|
|
|
$line = " print_complex_max_error (\"$fct\", ";
|
|
|
|
} else {
|
|
|
|
$line = " print_max_error (\"$fct\", ";
|
|
|
|
}
|
|
|
|
if (exists $results{$fct}{'has_ulps'}) {
|
1999-10-19 08:29:27 +02:00
|
|
|
$line .= "DELTA$fct";
|
|
|
|
} else {
|
|
|
|
$line .= '0';
|
|
|
|
}
|
1999-10-20 21:22:24 +02:00
|
|
|
if (exists $results{$fct}{'has_fails'}) {
|
1999-10-19 08:29:27 +02:00
|
|
|
$line .= ", FAIL$fct";
|
|
|
|
} else {
|
|
|
|
$line .= ', 0';
|
|
|
|
}
|
|
|
|
$line .= ");\n";
|
|
|
|
print OUTPUT $line;
|
|
|
|
push @functions, $fct;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
print OUTPUT;
|
|
|
|
}
|
|
|
|
close INPUT;
|
|
|
|
close OUTPUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Parse ulps file
|
|
|
|
sub parse_ulps {
|
|
|
|
my ($file) = @_;
|
1999-10-25 22:18:27 +02:00
|
|
|
my ($test, $type, $float, $eps, $kind);
|
1999-10-19 08:29:27 +02:00
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
# $type has the following values:
|
|
|
|
# "normal": No complex variable
|
|
|
|
# "real": Real part of complex result
|
|
|
|
# "imag": Imaginary part of complex result
|
1999-10-19 08:29:27 +02:00
|
|
|
open ULP, $file or die ("Can't open $file: $!");
|
|
|
|
while (<ULP>) {
|
|
|
|
chop;
|
|
|
|
# ignore comments and empty lines
|
|
|
|
next if /^#/;
|
|
|
|
next if /^\s*$/;
|
|
|
|
if (/^Test/) {
|
1999-10-20 21:22:24 +02:00
|
|
|
if (/Real part of:/) {
|
|
|
|
s/Real part of: //;
|
|
|
|
$type = 'real';
|
|
|
|
} elsif (/Imaginary part of:/) {
|
|
|
|
s/Imaginary part of: //;
|
|
|
|
$type = 'imag';
|
|
|
|
} else {
|
|
|
|
$type = 'normal';
|
|
|
|
}
|
1999-10-19 08:29:27 +02:00
|
|
|
s/^.+\"(.*)\".*$/$1/;
|
|
|
|
$test = $_;
|
1999-10-25 22:18:27 +02:00
|
|
|
$kind = 'test';
|
1999-10-19 08:29:27 +02:00
|
|
|
next;
|
|
|
|
}
|
1999-10-20 21:22:24 +02:00
|
|
|
if (/^Function: /) {
|
2000-08-30 18:32:14 +02:00
|
|
|
if (/Real part of/) {
|
1999-10-20 21:22:24 +02:00
|
|
|
s/Real part of //;
|
|
|
|
$type = 'real';
|
|
|
|
} elsif (/Imaginary part of/) {
|
|
|
|
s/Imaginary part of //;
|
|
|
|
$type = 'imag';
|
|
|
|
} else {
|
|
|
|
$type = 'normal';
|
|
|
|
}
|
|
|
|
($test) = ($_ =~ /^Function:\s*\"([a-zA-Z0-9_]+)\"/);
|
1999-10-25 22:18:27 +02:00
|
|
|
$kind = 'fct';
|
1999-10-19 08:29:27 +02:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
if (/^i?(float|double|ldouble):/) {
|
1999-10-20 21:22:24 +02:00
|
|
|
($float, $eps) = split /\s*:\s*/,$_,2;
|
1999-10-25 21:49:49 +02:00
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
if ($eps eq 'fail') {
|
|
|
|
$results{$test}{$type}{'fail'}{$float} = 1;
|
|
|
|
$results{$test}{'has_fails'} = 1;
|
1999-10-25 21:49:49 +02:00
|
|
|
} elsif ($eps eq "0") {
|
|
|
|
# ignore
|
|
|
|
next;
|
1999-10-19 08:29:27 +02:00
|
|
|
} else {
|
1999-10-20 21:22:24 +02:00
|
|
|
$results{$test}{$type}{'ulp'}{$float} = $eps;
|
|
|
|
$results{$test}{'has_ulps'} = 1;
|
1999-10-19 08:29:27 +02:00
|
|
|
}
|
1999-10-25 21:49:49 +02:00
|
|
|
if ($type =~ /^real|imag$/) {
|
|
|
|
$results{$test}{'type'} = 'complex';
|
|
|
|
} elsif ($type eq 'normal') {
|
|
|
|
$results{$test}{'type'} = 'normal';
|
|
|
|
}
|
1999-10-25 22:18:27 +02:00
|
|
|
$results{$test}{'kind'} = $kind;
|
1999-10-19 08:29:27 +02:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
print "Skipping unknown entry: `$_'\n";
|
|
|
|
}
|
|
|
|
close ULP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Clean up a floating point number
|
|
|
|
sub clean_up_number {
|
|
|
|
my ($number) = @_;
|
1999-10-19 15:53:34 +02:00
|
|
|
|
2006-08-13 10:21:10 +02:00
|
|
|
# Remove trailing zeros after the decimal point
|
|
|
|
if ($number =~ /\./) {
|
|
|
|
$number =~ s/0+$//;
|
|
|
|
$number =~ s/\.$//;
|
|
|
|
}
|
1999-10-19 08:29:27 +02:00
|
|
|
return $number;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Output a file which can be read in as ulps file.
|
|
|
|
sub print_ulps_file {
|
|
|
|
my ($file) = @_;
|
1999-10-20 21:22:24 +02:00
|
|
|
my ($test, $type, $float, $eps, $fct, $last_fct);
|
1999-10-19 08:29:27 +02:00
|
|
|
|
|
|
|
$last_fct = '';
|
|
|
|
open NEWULP, ">$file" or die ("Can't open $file: $!");
|
|
|
|
print NEWULP "# Begin of automatic generation\n";
|
1999-10-25 22:18:27 +02:00
|
|
|
# first the function calls
|
|
|
|
foreach $test (sort keys %results) {
|
|
|
|
next if ($results{$test}{'kind'} ne 'test');
|
1999-10-20 21:22:24 +02:00
|
|
|
foreach $type ('real', 'imag', 'normal') {
|
|
|
|
if (exists $results{$test}{$type}) {
|
|
|
|
if (defined $results{$test}) {
|
|
|
|
($fct) = ($test =~ /^(\w+)\s/);
|
|
|
|
if ($fct ne $last_fct) {
|
|
|
|
$last_fct = $fct;
|
|
|
|
print NEWULP "\n# $fct\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($type eq 'normal') {
|
|
|
|
print NEWULP "Test \"$test\":\n";
|
|
|
|
} elsif ($type eq 'real') {
|
|
|
|
print NEWULP "Test \"Real part of: $test\":\n";
|
|
|
|
} elsif ($type eq 'imag') {
|
|
|
|
print NEWULP "Test \"Imaginary part of: $test\":\n";
|
|
|
|
}
|
|
|
|
foreach $float (@all_floats) {
|
|
|
|
if (exists $results{$test}{$type}{'ulp'}{$float}) {
|
1999-10-25 21:49:49 +02:00
|
|
|
print NEWULP "$float: ",
|
|
|
|
&clean_up_number ($results{$test}{$type}{'ulp'}{$float}),
|
1999-10-20 21:22:24 +02:00
|
|
|
"\n";
|
|
|
|
}
|
|
|
|
if (exists $results{$test}{$type}{'fail'}{$float}) {
|
|
|
|
print NEWULP "$float: fail\n";
|
|
|
|
}
|
|
|
|
}
|
1999-10-19 08:29:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print NEWULP "\n# Maximal error of functions:\n";
|
|
|
|
|
1999-10-25 22:18:27 +02:00
|
|
|
foreach $fct (sort keys %results) {
|
|
|
|
next if ($results{$fct}{'kind'} ne 'fct');
|
1999-10-20 21:22:24 +02:00
|
|
|
foreach $type ('real', 'imag', 'normal') {
|
|
|
|
if (exists $results{$fct}{$type}) {
|
|
|
|
if ($type eq 'normal') {
|
|
|
|
print NEWULP "Function: \"$fct\":\n";
|
|
|
|
} elsif ($type eq 'real') {
|
|
|
|
print NEWULP "Function: Real part of \"$fct\":\n";
|
|
|
|
} elsif ($type eq 'imag') {
|
|
|
|
print NEWULP "Function: Imaginary part of \"$fct\":\n";
|
|
|
|
}
|
|
|
|
foreach $float (@all_floats) {
|
|
|
|
if (exists $results{$fct}{$type}{'ulp'}{$float}) {
|
1999-10-25 21:49:49 +02:00
|
|
|
print NEWULP "$float: ",
|
|
|
|
&clean_up_number ($results{$fct}{$type}{'ulp'}{$float}),
|
1999-10-20 21:22:24 +02:00
|
|
|
"\n";
|
|
|
|
}
|
|
|
|
if (exists $results{$fct}{$type}{'fail'}{$float}) {
|
|
|
|
print NEWULP "$float: fail\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print NEWULP "\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print NEWULP "# end of automatic generation\n";
|
|
|
|
close NEWULP;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_ulps {
|
1999-10-20 21:22:24 +02:00
|
|
|
my ($test, $type, $float) = @_;
|
|
|
|
|
|
|
|
if ($type eq 'complex') {
|
|
|
|
my ($res);
|
|
|
|
# Return 0 instead of BUILD_COMPLEX (0,0)
|
|
|
|
if (!exists $results{$test}{'real'}{'ulp'}{$float} &&
|
|
|
|
!exists $results{$test}{'imag'}{'ulp'}{$float}) {
|
|
|
|
return "0";
|
|
|
|
}
|
|
|
|
$res = 'BUILD_COMPLEX (';
|
1999-10-25 21:49:49 +02:00
|
|
|
$res .= (exists $results{$test}{'real'}{'ulp'}{$float}
|
1999-10-20 21:22:24 +02:00
|
|
|
? $results{$test}{'real'}{'ulp'}{$float} : "0");
|
|
|
|
$res .= ', ';
|
|
|
|
$res .= (exists $results{$test}{'imag'}{'ulp'}{$float}
|
|
|
|
? $results{$test}{'imag'}{'ulp'}{$float} : "0");
|
|
|
|
$res .= ')';
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
return (exists $results{$test}{'normal'}{'ulp'}{$float}
|
|
|
|
? $results{$test}{'normal'}{'ulp'}{$float} : "0");
|
1999-10-19 08:29:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub get_failure {
|
1999-10-20 21:22:24 +02:00
|
|
|
my ($test, $type, $float) = @_;
|
|
|
|
if ($type eq 'complex') {
|
|
|
|
# return x,y
|
|
|
|
my ($res);
|
|
|
|
# Return 0 instead of BUILD_COMPLEX_INT (0,0)
|
|
|
|
if (!exists $results{$test}{'real'}{'ulp'}{$float} &&
|
|
|
|
!exists $results{$test}{'imag'}{'ulp'}{$float}) {
|
|
|
|
return "0";
|
|
|
|
}
|
|
|
|
$res = 'BUILD_COMPLEX_INT (';
|
1999-10-25 21:49:49 +02:00
|
|
|
$res .= (exists $results{$test}{'real'}{'fail'}{$float}
|
1999-10-20 21:22:24 +02:00
|
|
|
? $results{$test}{'real'}{'fail'}{$float} : "0");
|
|
|
|
$res .= ', ';
|
|
|
|
$res .= (exists $results{$test}{'imag'}{'fail'}{$float}
|
|
|
|
? $results{$test}{'imag'}{'fail'}{$float} : "0");
|
|
|
|
$res .= ')';
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
return (exists $results{$test}{'normal'}{'fail'}{$float}
|
|
|
|
? $results{$test}{'normal'}{'fail'}{$float} : "0");
|
|
|
|
|
1999-10-19 08:29:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Output the defines for a single test
|
|
|
|
sub output_test {
|
|
|
|
my ($file, $test, $name) = @_;
|
|
|
|
my ($ldouble, $double, $float, $ildouble, $idouble, $ifloat);
|
1999-10-20 21:22:24 +02:00
|
|
|
my ($type);
|
1999-10-19 08:29:27 +02:00
|
|
|
|
1999-10-20 21:22:24 +02:00
|
|
|
# Do we have ulps/failures?
|
|
|
|
if (!exists $results{$test}{'type'}) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$type = $results{$test}{'type'};
|
|
|
|
if (exists $results{$test}{'has_ulps'}) {
|
|
|
|
# XXX use all_floats (change order!)
|
|
|
|
$ldouble = &get_ulps ($test, $type, "ldouble");
|
|
|
|
$double = &get_ulps ($test, $type, "double");
|
|
|
|
$float = &get_ulps ($test, $type, "float");
|
|
|
|
$ildouble = &get_ulps ($test, $type, "ildouble");
|
|
|
|
$idouble = &get_ulps ($test, $type, "idouble");
|
|
|
|
$ifloat = &get_ulps ($test, $type, "ifloat");
|
1999-10-19 08:29:27 +02:00
|
|
|
print $file "#define DELTA$name CHOOSE($ldouble, $double, $float, $ildouble, $idouble, $ifloat)\t/* $test */\n";
|
|
|
|
}
|
1999-10-20 21:22:24 +02:00
|
|
|
|
|
|
|
if (exists $results{$test}{'has_fails'}) {
|
1999-10-19 08:29:27 +02:00
|
|
|
$ldouble = &get_failure ($test, "ldouble");
|
|
|
|
$double = &get_failure ($test, "double");
|
|
|
|
$float = &get_failure ($test, "float");
|
|
|
|
$ildouble = &get_failure ($test, "ildouble");
|
|
|
|
$idouble = &get_failure ($test, "idouble");
|
|
|
|
$ifloat = &get_failure ($test, "ifloat");
|
|
|
|
print $file "#define FAIL$name CHOOSE($ldouble, $double, $float $ildouble, $idouble, $ifloat)\t/* $test */\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Print include file
|
|
|
|
sub output_ulps {
|
1999-10-19 15:53:34 +02:00
|
|
|
my ($file, $ulps_filename) = @_;
|
1999-10-19 08:29:27 +02:00
|
|
|
my ($i, $fct);
|
|
|
|
|
|
|
|
open ULP, ">$file" or die ("Can't open $file: $!");
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
print ULP "/* This file is automatically generated\n";
|
|
|
|
print ULP " from $ulps_filename with gen-libm-test.pl.\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
print ULP " Don't change it - change instead the master files. */\n\n";
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
print ULP "\n/* Maximal error of functions. */\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
foreach $fct (@functions) {
|
|
|
|
output_test (\*ULP, $fct, $fct);
|
|
|
|
}
|
|
|
|
|
1999-10-19 15:53:34 +02:00
|
|
|
print ULP "\n/* Error of single function calls. */\n";
|
1999-10-19 08:29:27 +02:00
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
output_test (\*ULP, $tests[$i], $i);
|
|
|
|
}
|
|
|
|
close ULP;
|
|
|
|
}
|