Use += before-compile instead of a :=.
[glibc.git] / math / gen-libm-test.pl
blob6b3a21df40df1fd4a90a609de9db76a47920ab4e
1 #!/usr/bin/perl -w
2 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
4 # Contributed by Andreas Jaeger <aj@suse.de>, 1999.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with the GNU C Library; if not, see
18 # <http://www.gnu.org/licenses/>.
20 # This file needs to be tidied up
21 # Note that functions and tests share the same namespace.
23 # Information about tests are stored in: %results
24 # $results{$test}{"type"} is the result type, e.g. normal or complex.
25 # $results{$test}{"has_ulps"} is set if deltas exist.
26 # In the following description $type and $float are:
27 # - $type is either "normal", "real" (for the real part of a complex number)
28 # or "imag" (for the imaginary part # of a complex number).
29 # - $float is either of float, ifloat, double, idouble, ldouble, ildouble;
30 # It represents the underlying floating point type (float, double or long
31 # double) and if inline functions (the leading i stands for inline)
32 # are used.
33 # $results{$test}{$type}{"ulp"}{$float} is defined and has a delta as value
36 use Getopt::Std;
38 use strict;
40 use vars qw ($input $output $auto_input);
41 use vars qw (%results);
42 use vars qw (%beautify @all_floats);
43 use vars qw ($output_dir $ulps_file $srcdir);
44 use vars qw (%auto_tests);
46 # all_floats is sorted and contains all recognised float types
47 @all_floats = ('double', 'float', 'idouble',
48 'ifloat', 'ildouble', 'ldouble');
50 %beautify =
51 ( "minus_zero" => "-0",
52 "plus_zero" => "+0",
53 "-0x0p+0f" => "-0",
54 "-0x0p+0" => "-0",
55 "-0x0p+0L" => "-0",
56 "0x0p+0f" => "+0",
57 "0x0p+0" => "+0",
58 "0x0p+0L" => "+0",
59 "minus_infty" => "-inf",
60 "plus_infty" => "inf",
61 "qnan_value" => "qNaN",
65 # get Options
66 # Options:
67 # u: ulps-file
68 # h: help
69 # o: output-directory
70 # n: generate new ulps file
71 use vars qw($opt_u $opt_h $opt_o $opt_n);
72 getopts('u:o:nh');
74 $ulps_file = 'libm-test-ulps';
75 $output_dir = '';
76 ($srcdir = $0) =~ s{[^/]*$}{};
78 if ($opt_h) {
79 print "Usage: gen-libm-test.pl [OPTIONS]\n";
80 print " -h print this help, then exit\n";
81 print " -o DIR directory where generated files will be placed\n";
82 print " -n only generate sorted file NewUlps from libm-test-ulps\n";
83 print " -u FILE input file with ulps\n";
84 exit 0;
87 $ulps_file = $opt_u if ($opt_u);
88 $output_dir = $opt_o if ($opt_o);
90 $input = "libm-test.inc";
91 $auto_input = "${srcdir}auto-libm-test-out";
92 $output = "${output_dir}libm-test.c";
94 &parse_ulps ($ulps_file);
95 &parse_auto_input ($auto_input);
96 &generate_testfile ($input, $output) unless ($opt_n);
97 &output_ulps ("${output_dir}libm-test-ulps.h", $ulps_file) unless ($opt_n);
98 &print_ulps_file ("${output_dir}NewUlps") if ($opt_n);
100 # Return a nicer representation
101 sub beautify {
102 my ($arg) = @_;
103 my ($tmp);
105 if (exists $beautify{$arg}) {
106 return $beautify{$arg};
108 if ($arg =~ /^-/) {
109 $tmp = $arg;
110 $tmp =~ s/^-//;
111 if (exists $beautify{$tmp}) {
112 return '-' . $beautify{$tmp};
115 if ($arg =~ /^-?0x[0-9a-f.]*p[-+][0-9]+f$/) {
116 $arg =~ s/f$//;
118 if ($arg =~ /[0-9]L$/) {
119 $arg =~ s/L$//;
121 return $arg;
124 # Return a nicer representation of a complex number
125 sub build_complex_beautify {
126 my ($r, $i) = @_;
127 my ($str1, $str2);
129 $str1 = &beautify ($r);
130 $str2 = &beautify ($i);
131 if ($str2 =~ /^-/) {
132 $str2 =~ s/^-//;
133 $str1 .= ' - ' . $str2;
134 } else {
135 $str1 .= ' + ' . $str2;
137 $str1 .= ' i';
138 return $str1;
141 # Return the text to put in an initializer for a test's exception
142 # information.
143 sub show_exceptions {
144 my ($ignore_result, $exception) = @_;
145 $ignore_result = ($ignore_result ? "IGNORE_RESULT|" : "");
146 if (defined $exception) {
147 return ", ${ignore_result}$exception";
148 } else {
149 return ", ${ignore_result}0";
153 # Parse the arguments to TEST_x_y
154 sub parse_args {
155 my ($file, $descr, $args) = @_;
156 my (@args, $descr_args, $descr_res, @descr);
157 my ($current_arg, $cline, $cline_res, $i);
158 my (@special);
159 my ($call_args);
160 my ($ignore_result_any, $ignore_result_all);
161 my ($num_res, @args_res, @start_rm, $rm);
162 my (@plus_oflow, @minus_oflow, @plus_uflow, @minus_uflow);
164 ($descr_args, $descr_res) = split /_/,$descr, 2;
166 @args = split /,\s*/, $args;
168 $call_args = "";
170 # Generate first the string that's shown to the user
171 $current_arg = 1;
172 @descr = split //,$descr_args;
173 for ($i = 0; $i <= $#descr; $i++) {
174 my $comma = "";
175 if ($current_arg > 1) {
176 $comma = ', ';
178 # FLOAT, int, long int, long long int
179 if ($descr[$i] =~ /f|i|l|L/) {
180 $call_args .= $comma . &beautify ($args[$current_arg]);
181 ++$current_arg;
182 next;
184 # &FLOAT, &int - simplify call by not showing argument.
185 if ($descr[$i] =~ /F|I/) {
186 next;
188 # complex
189 if ($descr[$i] eq 'c') {
190 $call_args .= $comma . &build_complex_beautify ($args[$current_arg], $args[$current_arg+1]);
191 $current_arg += 2;
192 next;
195 die ("$descr[$i] is unknown");
198 # Result
199 @args_res = @args[$current_arg .. $#args];
200 $num_res = 0;
201 @descr = split //,$descr_res;
202 foreach (@descr) {
203 if ($_ =~ /f|i|l|L/) {
204 ++$num_res;
205 } elsif ($_ eq 'c') {
206 $num_res += 2;
207 } elsif ($_ eq 'b') {
208 # boolean
209 ++$num_res;
210 } elsif ($_ eq '1') {
211 ++$num_res;
212 } else {
213 die ("$_ is unknown");
216 # consistency check
217 if ($#args_res == $num_res - 1) {
218 # One set of results for all rounding modes, no flags.
219 @start_rm = ( 0, 0, 0, 0 );
220 } elsif ($#args_res == $num_res) {
221 # One set of results for all rounding modes, with flags.
222 die ("wrong number of arguments")
223 unless ($args_res[$#args_res] =~ /EXCEPTION|ERRNO|IGNORE_ZERO_INF_SIGN|TEST_NAN_SIGN|NO_TEST_INLINE|XFAIL_TEST/);
224 @start_rm = ( 0, 0, 0, 0 );
225 } elsif ($#args_res == 4 * $num_res + 3) {
226 # One set of results per rounding mode, with flags.
227 @start_rm = ( 0, $num_res + 1, 2 * $num_res + 2, 3 * $num_res + 3 );
228 } else {
229 die ("wrong number of arguments");
232 # Put the C program line together
233 # Reset some variables to start again
234 $current_arg = 1;
235 $cline = "{ \"$call_args\"";
236 @descr = split //,$descr_args;
237 for ($i=0; $i <= $#descr; $i++) {
238 # FLOAT, int, long int, long long int
239 if ($descr[$i] =~ /f|i|l|L/) {
240 $cline .= ", $args[$current_arg]";
241 $current_arg++;
242 next;
244 # &FLOAT, &int
245 if ($descr[$i] =~ /F|I/) {
246 next;
248 # complex
249 if ($descr[$i] eq 'c') {
250 $cline .= ", $args[$current_arg], $args[$current_arg+1]";
251 $current_arg += 2;
252 next;
256 @descr = split //,$descr_res;
257 @plus_oflow = qw(max_value plus_infty max_value plus_infty);
258 @minus_oflow = qw(minus_infty minus_infty -max_value -max_value);
259 @plus_uflow = qw(plus_zero plus_zero plus_zero min_subnorm_value);
260 @minus_uflow = qw(-min_subnorm_value minus_zero minus_zero minus_zero);
261 for ($rm = 0; $rm <= 3; $rm++) {
262 $current_arg = $start_rm[$rm];
263 $ignore_result_any = 0;
264 $ignore_result_all = 1;
265 $cline_res = "";
266 @special = ();
267 foreach (@descr) {
268 if ($_ =~ /b|f|i|l|L/ ) {
269 my ($result) = $args_res[$current_arg];
270 if ($result eq "IGNORE") {
271 $ignore_result_any = 1;
272 $result = "0";
273 } else {
274 $ignore_result_all = 0;
276 $cline_res .= ", $result";
277 $current_arg++;
278 } elsif ($_ eq 'c') {
279 my ($result1) = $args_res[$current_arg];
280 if ($result1 eq "IGNORE") {
281 $ignore_result_any = 1;
282 $result1 = "0";
283 } else {
284 $ignore_result_all = 0;
286 my ($result2) = $args_res[$current_arg + 1];
287 if ($result2 eq "IGNORE") {
288 $ignore_result_any = 1;
289 $result2 = "0";
290 } else {
291 $ignore_result_all = 0;
293 $cline_res .= ", $result1, $result2";
294 $current_arg += 2;
295 } elsif ($_ eq '1') {
296 push @special, $args_res[$current_arg];
297 ++$current_arg;
300 if ($ignore_result_any && !$ignore_result_all) {
301 die ("some but not all function results ignored\n");
303 # Add exceptions.
304 $cline_res .= show_exceptions ($ignore_result_any,
305 ($current_arg <= $#args_res)
306 ? $args_res[$current_arg]
307 : undef);
309 # special treatment for some functions
310 $i = 0;
311 foreach (@special) {
312 ++$i;
313 my ($extra_expected) = $_;
314 my ($run_extra) = ($extra_expected ne "IGNORE" ? 1 : 0);
315 if (!$run_extra) {
316 $extra_expected = "0";
318 $cline_res .= ", $run_extra, $extra_expected";
320 $cline_res =~ s/^, //;
321 $cline_res =~ s/plus_oflow/$plus_oflow[$rm]/g;
322 $cline_res =~ s/minus_oflow/$minus_oflow[$rm]/g;
323 $cline_res =~ s/plus_uflow/$plus_uflow[$rm]/g;
324 $cline_res =~ s/minus_uflow/$minus_uflow[$rm]/g;
325 $cline .= ", { $cline_res }";
327 print $file " $cline },\n";
330 # Convert a condition from auto-libm-test-out to C form.
331 sub convert_condition {
332 my ($cond) = @_;
333 my (@conds, $ret);
334 @conds = split /:/, $cond;
335 foreach (@conds) {
336 s/-/_/g;
337 s/^/TEST_COND_/;
339 $ret = join " && ", @conds;
340 return "($ret)";
343 # Return text to OR a value into an accumulated flags string.
344 sub or_value {
345 my ($cond) = @_;
346 if ($cond eq "0") {
347 return "";
348 } else {
349 return " | $cond";
353 # Return a conditional expression between two values.
354 sub cond_value {
355 my ($cond, $if, $else) = @_;
356 if ($cond eq "1") {
357 return $if;
358 } elsif ($cond eq "0") {
359 return $else;
360 } else {
361 return "($cond ? $if : $else)";
365 # Return text to OR a conditional expression between two values into
366 # an accumulated flags string.
367 sub or_cond_value {
368 my ($cond, $if, $else) = @_;
369 return or_value (cond_value ($cond, $if, $else));
372 # Generate libm-test.c
373 sub generate_testfile {
374 my ($input, $output) = @_;
376 open INPUT, $input or die ("Can't open $input: $!");
377 open OUTPUT, ">$output" or die ("Can't open $output: $!");
379 # Replace the special macros
380 while (<INPUT>) {
381 # AUTO_TESTS (function),
382 if (/^\s*AUTO_TESTS_/) {
383 my ($descr, $func, @modes, $auto_test, $num_auto_tests);
384 my (@rm_tests, $rm, $i);
385 @modes = qw(downward tonearest towardzero upward);
386 ($descr, $func) = ($_ =~ /AUTO_TESTS_(\w+)\s*\((\w+)\)/);
387 for ($rm = 0; $rm <= 3; $rm++) {
388 $rm_tests[$rm] = [sort keys %{$auto_tests{$func}{$modes[$rm]}}];
390 $num_auto_tests = scalar @{$rm_tests[0]};
391 for ($rm = 1; $rm <= 3; $rm++) {
392 if ($num_auto_tests != scalar @{$rm_tests[$rm]}) {
393 die ("inconsistent numbers of tests for $func\n");
395 for ($i = 0; $i < $num_auto_tests; $i++) {
396 if ($rm_tests[0][$i] ne $rm_tests[$rm][$i]) {
397 die ("inconsistent list of tests of $func\n");
401 if ($num_auto_tests == 0) {
402 die ("no automatic tests for $func\n");
404 foreach $auto_test (@{$rm_tests[0]}) {
405 my ($format, $inputs, $format_conv, $args_str);
406 ($format, $inputs) = split / /, $auto_test, 2;
407 $inputs =~ s/ /, /g;
408 $format_conv = convert_condition ($format);
409 print OUTPUT "#if $format_conv\n";
410 $args_str = "$func, $inputs";
411 for ($rm = 0; $rm <= 3; $rm++) {
412 my ($auto_test_out, $outputs, $flags);
413 my ($flags_conv, @flags, %flag_cond);
414 $auto_test_out = $auto_tests{$func}{$modes[$rm]}{$auto_test};
415 ($outputs, $flags) = split / : */, $auto_test_out;
416 $outputs =~ s/ /, /g;
417 @flags = split / /, $flags;
418 foreach (@flags) {
419 if (/^([^:]*):(.*)$/) {
420 my ($flag, $cond);
421 $flag = $1;
422 $cond = convert_condition ($2);
423 if (defined ($flag_cond{$flag})) {
424 if ($flag_cond{$flag} ne "1") {
425 $flag_cond{$flag} .= " || $cond";
427 } else {
428 $flag_cond{$flag} = $cond;
430 } else {
431 $flag_cond{$_} = "1";
434 $flags_conv = "";
435 if (defined ($flag_cond{"no-test-inline"})) {
436 $flags_conv .= or_cond_value ($flag_cond{"no-test-inline"},
437 "NO_TEST_INLINE", "0");
439 if (defined ($flag_cond{"xfail"})) {
440 $flags_conv .= or_cond_value ($flag_cond{"xfail"},
441 "XFAIL_TEST", "0");
443 my (@exc_list) = qw(divbyzero inexact invalid overflow underflow);
444 my ($exc);
445 foreach $exc (@exc_list) {
446 my ($exc_expected, $exc_ok, $no_exc, $exc_cond, $exc_ok_cond);
447 $exc_expected = "\U$exc\E_EXCEPTION";
448 $exc_ok = "\U$exc\E_EXCEPTION_OK";
449 $no_exc = "0";
450 if ($exc eq "inexact") {
451 $exc_ok = "0";
452 $no_exc = "NO_INEXACT_EXCEPTION";
454 if (defined ($flag_cond{$exc})) {
455 $exc_cond = $flag_cond{$exc};
456 } else {
457 $exc_cond = "0";
459 if (defined ($flag_cond{"$exc-ok"})) {
460 $exc_ok_cond = $flag_cond{"$exc-ok"};
461 } else {
462 $exc_ok_cond = "0";
464 $flags_conv .= or_cond_value ($exc_cond,
465 cond_value ($exc_ok_cond,
466 $exc_ok, $exc_expected),
467 cond_value ($exc_ok_cond,
468 $exc_ok, $no_exc));
470 my ($errno_expected, $errno_unknown_cond);
471 if (defined ($flag_cond{"errno-edom"})) {
472 if ($flag_cond{"errno-edom"} ne "1") {
473 die ("unexpected condition for errno-edom");
475 if (defined ($flag_cond{"errno-erange"})) {
476 die ("multiple errno values expected");
478 $errno_expected = "ERRNO_EDOM";
479 } elsif (defined ($flag_cond{"errno-erange"})) {
480 if ($flag_cond{"errno-erange"} ne "1") {
481 die ("unexpected condition for errno-erange");
483 $errno_expected = "ERRNO_ERANGE";
484 } else {
485 $errno_expected = "ERRNO_UNCHANGED";
487 if (defined ($flag_cond{"errno-edom-ok"})) {
488 if (defined ($flag_cond{"errno-erange-ok"})
489 && ($flag_cond{"errno-erange-ok"}
490 ne $flag_cond{"errno-edom-ok"})) {
491 $errno_unknown_cond = "($flag_cond{\"errno-edom-ok\"} || $flag_cond{\"errno-erange-ok\"})";
492 } else {
493 $errno_unknown_cond = $flag_cond{"errno-edom-ok"};
495 } elsif (defined ($flag_cond{"errno-erange-ok"})) {
496 $errno_unknown_cond = $flag_cond{"errno-erange-ok"};
497 } else {
498 $errno_unknown_cond = "0";
500 $flags_conv .= or_cond_value ($errno_unknown_cond,
501 "0", $errno_expected);
502 if ($flags_conv eq "") {
503 $flags_conv = ", NO_EXCEPTION";
504 } else {
505 $flags_conv =~ s/^ \|/,/;
507 $args_str .= ", $outputs$flags_conv";
509 &parse_args (\*OUTPUT, $descr, $args_str);
510 print OUTPUT "#endif\n";
512 next;
515 # TEST_...
516 if (/^\s*TEST_/) {
517 my ($descr, $args);
518 chop;
519 ($descr, $args) = ($_ =~ /TEST_(\w+)\s*\((.*)\)/);
520 &parse_args (\*OUTPUT, $descr, $args);
521 next;
523 print OUTPUT;
525 close INPUT;
526 close OUTPUT;
531 # Parse ulps file
532 sub parse_ulps {
533 my ($file) = @_;
534 my ($test, $type, $float, $eps);
536 # $type has the following values:
537 # "normal": No complex variable
538 # "real": Real part of complex result
539 # "imag": Imaginary part of complex result
540 open ULP, $file or die ("Can't open $file: $!");
541 while (<ULP>) {
542 chop;
543 # ignore comments and empty lines
544 next if /^#/;
545 next if /^\s*$/;
546 if (/^Function: /) {
547 if (/Real part of/) {
548 s/Real part of //;
549 $type = 'real';
550 } elsif (/Imaginary part of/) {
551 s/Imaginary part of //;
552 $type = 'imag';
553 } else {
554 $type = 'normal';
556 ($test) = ($_ =~ /^Function:\s*\"([a-zA-Z0-9_]+)\"/);
557 next;
559 if (/^i?(float|double|ldouble):/) {
560 ($float, $eps) = split /\s*:\s*/,$_,2;
562 if ($eps eq "0") {
563 # ignore
564 next;
565 } else {
566 $results{$test}{$type}{'ulp'}{$float} = $eps;
567 $results{$test}{'has_ulps'} = 1;
569 if ($type =~ /^real|imag$/) {
570 $results{$test}{'type'} = 'complex';
571 } elsif ($type eq 'normal') {
572 $results{$test}{'type'} = 'normal';
574 next;
576 print "Skipping unknown entry: `$_'\n";
578 close ULP;
582 # Clean up a floating point number
583 sub clean_up_number {
584 my ($number) = @_;
586 # Remove trailing zeros after the decimal point
587 if ($number =~ /\./) {
588 $number =~ s/0+$//;
589 $number =~ s/\.$//;
591 return $number;
594 # Output a file which can be read in as ulps file.
595 sub print_ulps_file {
596 my ($file) = @_;
597 my ($test, $type, $float, $eps, $fct, $last_fct);
599 $last_fct = '';
600 open NEWULP, ">$file" or die ("Can't open $file: $!");
601 print NEWULP "# Begin of automatic generation\n";
602 print NEWULP "\n# Maximal error of functions:\n";
604 foreach $fct (sort keys %results) {
605 foreach $type ('real', 'imag', 'normal') {
606 if (exists $results{$fct}{$type}) {
607 if ($type eq 'normal') {
608 print NEWULP "Function: \"$fct\":\n";
609 } elsif ($type eq 'real') {
610 print NEWULP "Function: Real part of \"$fct\":\n";
611 } elsif ($type eq 'imag') {
612 print NEWULP "Function: Imaginary part of \"$fct\":\n";
614 foreach $float (@all_floats) {
615 if (exists $results{$fct}{$type}{'ulp'}{$float}) {
616 print NEWULP "$float: ",
617 &clean_up_number ($results{$fct}{$type}{'ulp'}{$float}),
618 "\n";
621 print NEWULP "\n";
625 print NEWULP "# end of automatic generation\n";
626 close NEWULP;
629 sub get_ulps {
630 my ($test, $type, $float) = @_;
632 return (exists $results{$test}{$type}{'ulp'}{$float}
633 ? $results{$test}{$type}{'ulp'}{$float} : "0");
636 # Return the ulps value for a single test.
637 sub get_all_ulps_for_test {
638 my ($test, $type) = @_;
639 my ($ldouble, $double, $float, $ildouble, $idouble, $ifloat);
641 if (exists $results{$test}{'has_ulps'}) {
642 # XXX use all_floats (change order!)
643 $ldouble = &get_ulps ($test, $type, "ldouble");
644 $double = &get_ulps ($test, $type, "double");
645 $float = &get_ulps ($test, $type, "float");
646 $ildouble = &get_ulps ($test, $type, "ildouble");
647 $idouble = &get_ulps ($test, $type, "idouble");
648 $ifloat = &get_ulps ($test, $type, "ifloat");
649 return "CHOOSE ($ldouble, $double, $float, $ildouble, $idouble, $ifloat)";
650 } else {
651 die "get_all_ulps_for_test called for \"$test\" with no ulps\n";
655 # Print include file
656 sub output_ulps {
657 my ($file, $ulps_filename) = @_;
658 my ($i, $fct, $type, $ulp, $ulp_real, $ulp_imag);
659 my (%func_ulps, %func_real_ulps, %func_imag_ulps);
661 open ULP, ">$file" or die ("Can't open $file: $!");
663 print ULP "/* This file is automatically generated\n";
664 print ULP " from $ulps_filename with gen-libm-test.pl.\n";
665 print ULP " Don't change it - change instead the master files. */\n\n";
667 foreach $fct (keys %results) {
668 $type = $results{$fct}{'type'};
669 if ($type eq 'normal') {
670 $ulp = get_all_ulps_for_test ($fct, 'normal');
671 } elsif ($type eq 'complex') {
672 $ulp_real = get_all_ulps_for_test ($fct, 'real');
673 $ulp_imag = get_all_ulps_for_test ($fct, 'imag');
674 } else {
675 die "unknown results ($fct) type $type\n";
677 if ($type eq 'normal') {
678 $func_ulps{$fct} = $ulp;
679 } else {
680 $func_real_ulps{$fct} = $ulp_real;
681 $func_imag_ulps{$fct} = $ulp_imag;
684 print ULP "\n/* Maximal error of functions. */\n";
685 print ULP "static const struct ulp_data func_ulps[] =\n {\n";
686 foreach $fct (sort keys %func_ulps) {
687 print ULP " { \"$fct\", $func_ulps{$fct} },\n";
689 print ULP " };\n";
690 print ULP "static const struct ulp_data func_real_ulps[] =\n {\n";
691 foreach $fct (sort keys %func_real_ulps) {
692 print ULP " { \"$fct\", $func_real_ulps{$fct} },\n";
694 print ULP " };\n";
695 print ULP "static const struct ulp_data func_imag_ulps[] =\n {\n";
696 foreach $fct (sort keys %func_imag_ulps) {
697 print ULP " { \"$fct\", $func_imag_ulps{$fct} },\n";
699 print ULP " };\n";
700 close ULP;
703 # Parse auto-libm-test-out.
704 sub parse_auto_input {
705 my ($file) = @_;
706 open AUTO, $file or die ("Can't open $file: $!");
707 while (<AUTO>) {
708 chop;
709 next if !/^= /;
710 s/^= //;
711 if (/^(\S+) (\S+) ([^:]*) : (.*)$/) {
712 $auto_tests{$1}{$2}{$3} = $4;
713 } else {
714 die ("bad automatic test line: $_\n");
717 close AUTO;