Mercurial > hg > octave-jordi > gnulib-hg
annotate m4/exponentl.m4 @ 11053:90ea94356c75
Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Tue, 20 Jan 2009 00:57:07 +0100 |
parents | 12944217dba7 |
children | c2cbabec01dd |
rev | line source |
---|---|
11053
90ea94356c75
Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
1 # exponentl.m4 serial 2 |
90ea94356c75
Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
2 dnl Copyright (C) 2007-2009 Free Software Foundation, Inc. |
10286
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
3 dnl This file is free software; the Free Software Foundation |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
4 dnl gives unlimited permission to copy and/or distribute it, |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
5 dnl with or without modifications, as long as this notice is preserved. |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
6 AC_DEFUN([gl_LONG_DOUBLE_EXPONENT_LOCATION], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
7 [ |
11053
90ea94356c75
Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
8 AC_REQUIRE([gl_BIGENDIAN]) |
10286
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
9 AC_CACHE_CHECK([where to find the exponent in a 'long double'], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
10 [gl_cv_cc_long_double_expbit0], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
11 [ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
12 AC_TRY_RUN([ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
13 #include <float.h> |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
14 #include <stddef.h> |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
15 #include <stdio.h> |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
16 #include <string.h> |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
17 #define NWORDS \ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
18 ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int)) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
19 typedef union { long double value; unsigned int word[NWORDS]; } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
20 memory_long_double; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
21 static unsigned int ored_words[NWORDS]; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
22 static unsigned int anded_words[NWORDS]; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
23 static void add_to_ored_words (long double x) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
24 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
25 memory_long_double m; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
26 size_t i; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
27 /* Clear it first, in case |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
28 sizeof (long double) < sizeof (memory_long_double). */ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
29 memset (&m, 0, sizeof (memory_long_double)); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
30 m.value = x; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
31 for (i = 0; i < NWORDS; i++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
32 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
33 ored_words[i] |= m.word[i]; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
34 anded_words[i] &= m.word[i]; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
35 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
36 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
37 int main () |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
38 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
39 size_t j; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
40 FILE *fp = fopen ("conftest.out", "w"); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
41 if (fp == NULL) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
42 return 1; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
43 for (j = 0; j < NWORDS; j++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
44 anded_words[j] = ~ (unsigned int) 0; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
45 add_to_ored_words (0.25L); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
46 add_to_ored_words (0.5L); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
47 add_to_ored_words (1.0L); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
48 add_to_ored_words (2.0L); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
49 add_to_ored_words (4.0L); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
50 /* Remove bits that are common (e.g. if representation of the first mantissa |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
51 bit is explicit). */ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
52 for (j = 0; j < NWORDS; j++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
53 ored_words[j] &= ~anded_words[j]; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
54 /* Now find the nonzero word. */ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
55 for (j = 0; j < NWORDS; j++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
56 if (ored_words[j] != 0) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
57 break; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
58 if (j < NWORDS) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
59 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
60 size_t i; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
61 for (i = j + 1; i < NWORDS; i++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
62 if (ored_words[i] != 0) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
63 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
64 fprintf (fp, "unknown"); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
65 return (fclose (fp) != 0); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
66 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
67 for (i = 0; ; i++) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
68 if ((ored_words[j] >> i) & 1) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
69 { |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
70 fprintf (fp, "word %d bit %d", (int) j, (int) i); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
71 return (fclose (fp) != 0); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
72 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
73 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
74 fprintf (fp, "unknown"); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
75 return (fclose (fp) != 0); |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
76 } |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
77 ], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
78 [gl_cv_cc_long_double_expbit0=`cat conftest.out`], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
79 [gl_cv_cc_long_double_expbit0="unknown"], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
80 [ |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
81 dnl When cross-compiling, we don't know. It depends on the |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
82 dnl ABI and compiler version. There are too many cases. |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
83 gl_cv_cc_long_double_expbit0="unknown" |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
84 ]) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
85 rm -f conftest.out |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
86 ]) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
87 case "$gl_cv_cc_long_double_expbit0" in |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
88 word*bit*) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
89 word=`echo "$gl_cv_cc_long_double_expbit0" | sed -e 's/word //' -e 's/ bit.*//'` |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
90 bit=`echo "$gl_cv_cc_long_double_expbit0" | sed -e 's/word.*bit //'` |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
91 AC_DEFINE_UNQUOTED([LDBL_EXPBIT0_WORD], [$word], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
92 [Define as the word index where to find the exponent of 'long double'.]) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
93 AC_DEFINE_UNQUOTED([LDBL_EXPBIT0_BIT], [$bit], |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
94 [Define as the bit index in the word where to find bit 0 of the exponent of 'long double'.]) |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
95 ;; |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
96 esac |
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff
changeset
|
97 ]) |