1 /* Test compilation of tgmath macros.
2 Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Jakub Jelinek <jakub@redhat.com> and
5 Ulrich Drepper <drepper@redhat.com>, 2001.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #undef __NO_MATH_INLINES
24 #define __NO_MATH_INLINES 1
31 static void compile_test (void);
32 static void compile_testf (void);
33 #ifndef NO_LONG_DOUBLE
34 static void compile_testl (void);
40 const float fy
= 1.25;
41 const double dy
= 1.25;
42 const long double ly
= 1.25;
45 complex long double lz
;
63 count_float
= count_double
= count_ldouble
= 0;
64 count_cfloat
= count_cdouble
= count_cldouble
= 0;
66 if (count_float
!= 0 || count_cfloat
!= 0)
68 puts ("float function called for double test");
71 if (count_ldouble
!= 0 || count_cldouble
!= 0)
73 puts ("long double function called for double test");
76 if (count_double
< NCALLS
+ NCALLS_INT
)
78 printf ("double functions not called often enough (%d)\n",
82 else if (count_double
> NCALLS
+ NCALLS_INT
)
84 printf ("double functions called too often (%d)\n",
88 if (count_cdouble
< NCCALLS
)
90 printf ("double complex functions not called often enough (%d)\n",
94 else if (count_cdouble
> NCCALLS
)
96 printf ("double complex functions called too often (%d)\n",
101 count_float
= count_double
= count_ldouble
= 0;
102 count_cfloat
= count_cdouble
= count_cldouble
= 0;
104 if (count_double
!= 0 || count_cdouble
!= 0)
106 puts ("double function called for float test");
109 if (count_ldouble
!= 0 || count_cldouble
!= 0)
111 puts ("long double function called for float test");
114 if (count_float
< NCALLS
)
116 printf ("float functions not called often enough (%d)\n", count_float
);
119 else if (count_float
> NCALLS
)
121 printf ("float functions called too often (%d)\n",
125 if (count_cfloat
< NCCALLS
)
127 printf ("float complex functions not called often enough (%d)\n",
131 else if (count_cfloat
> NCCALLS
)
133 printf ("float complex functions called too often (%d)\n",
138 #ifndef NO_LONG_DOUBLE
139 count_float
= count_double
= count_ldouble
= 0;
140 count_cfloat
= count_cdouble
= count_cldouble
= 0;
142 if (count_float
!= 0 || count_cfloat
!= 0)
144 puts ("float function called for long double test");
147 if (count_double
!= 0 || count_cdouble
!= 0)
149 puts ("double function called for long double test");
152 if (count_ldouble
< NCALLS
)
154 printf ("long double functions not called often enough (%d)\n",
158 else if (count_ldouble
> NCALLS
)
160 printf ("long double functions called too often (%d)\n",
164 if (count_cldouble
< NCCALLS
)
166 printf ("long double complex functions not called often enough (%d)\n",
170 else if (count_cldouble
> NCCALLS
)
172 printf ("long double complex functions called too often (%d)\n",
181 /* Now generate the three functions. */
190 #define count count_double
191 #define ccount count_cdouble
192 #include "test-tgmath.c"
194 #define F(name) name##f
199 #define count count_float
200 #define ccount count_cfloat
201 #include "test-tgmath.c"
203 #ifndef NO_LONG_DOUBLE
204 #define F(name) name##l
205 #define TYPE long double
209 #define count count_ldouble
210 #define ccount count_cldouble
211 #include "test-tgmath.c"
217 #define P() puts (__FUNCTION__)
223 F(compile_test
) (void)
238 c
= atan2 (atan2 (a
, c
), atan2 (b
, x
));
240 b
= acosh (acosh (a
));
242 b
= asinh (asinh (a
));
244 b
= atanh (atanh (a
));
247 a
= log10 (log10 (x
));
248 b
= ldexp (ldexp (a
, 1), 5);
249 a
= frexp (frexp (x
, &i
), &i
);
250 b
= expm1 (expm1 (a
));
251 a
= log1p (log1p (x
));
255 a
= pow (pow (x
, a
), pow (c
, b
));
257 a
= hypot (hypot (x
, b
), hypot (c
, a
));
261 a
= floor (floor (x
));
262 b
= fmod (fmod (a
, b
), fmod (c
, x
));
263 a
= nearbyint (nearbyint (x
));
264 b
= round (round (a
));
265 a
= trunc (trunc (x
));
266 b
= remquo (remquo (a
, b
, &i
), remquo (c
, x
, &i
), &i
);
267 j
= lrint (x
) + lround (a
);
268 k
= llrint (b
) + llround (c
);
271 a
= tgamma (tgamma (x
));
272 b
= lgamma (lgamma (a
));
274 b
= nextafter (nextafter (a
, b
), nextafter (c
, x
));
275 a
= nexttoward (nexttoward (x
, a
), c
);
276 b
= remainder (remainder (a
, b
), remainder (c
, x
));
277 a
= scalb (scalb (x
, a
), (TYPE
) (6));
278 k
= scalbn (a
, 7) + scalbln (c
, 10l);
280 a
= fdim (fdim (x
, a
), fdim (c
, b
));
281 b
= fmax (fmax (a
, x
), fmax (c
, b
));
282 a
= fmin (fmin (x
, a
), fmin (c
, b
));
283 b
= fma (sin (a
), sin (x
), sin (c
));
287 b
= remquo (i
, a
, &i
);
291 x
= a
+ b
+ c
+ i
+ j
+ k
;
304 z
= acosh (acosh (d
));
306 z
= asinh (asinh (d
));
308 z
= atanh (atanh (d
));
314 z
= pow (pow (a
, d
), pow (b
, z
));
315 d
= cproj (cproj (z
));
316 z
+= fabs (cproj (a
));
318 b
= creal (creal (d
));
319 c
= cimag (cimag (z
));
320 x
+= a
+ b
+ c
+ i
+ j
+ k
;
323 if (saved_count
!= count
)
362 a
= remquo (y
, y
, &i
);
363 j
= lrint (y
) + lround (y
);
364 k
= llrint (y
) + llround (y
);
370 a
= nextafter (y
, y
);
371 a
= nexttoward (y
, y
);
372 a
= remainder (y
, y
);
373 a
= scalb (y
, (const TYPE
) (6));
374 k
= scalbn (y
, 7) + scalbln (y
, 10l);
383 a
= remquo (i
, y
, &i
);
388 d
= cos ((const complex TYPE
) z
);
389 d
= acos ((const complex TYPE
) z
);
390 d
= sin ((const complex TYPE
) z
);
391 d
= asin ((const complex TYPE
) z
);
392 d
= tan ((const complex TYPE
) z
);
393 d
= atan ((const complex TYPE
) z
);
394 d
= cosh ((const complex TYPE
) z
);
395 d
= acosh ((const complex TYPE
) z
);
396 d
= sinh ((const complex TYPE
) z
);
397 d
= asinh ((const complex TYPE
) z
);
398 d
= tanh ((const complex TYPE
) z
);
399 d
= atanh ((const complex TYPE
) z
);
400 d
= exp ((const complex TYPE
) z
);
401 d
= log ((const complex TYPE
) z
);
402 d
= sqrt ((const complex TYPE
) z
);
403 d
= pow ((const complex TYPE
) z
, (const complex TYPE
) z
);
404 d
= fabs ((const complex TYPE
) z
);
405 d
= carg ((const complex TYPE
) z
);
406 d
= creal ((const complex TYPE
) z
);
407 d
= cimag ((const complex TYPE
) z
);
408 d
= conj ((const complex TYPE
) z
);
409 d
= cproj ((const complex TYPE
) z
);
466 (F(atan2
)) (TYPE x
, TYPE y
)
546 (F(ldexp
)) (TYPE x
, int y
)
554 (F(frexp
)) (TYPE x
, int *y
)
602 (F(pow
)) (TYPE x
, TYPE y
)
618 (F(hypot
)) (TYPE x
, TYPE y
)
658 (F(fmod
)) (TYPE x
, TYPE y
)
666 (F(nearbyint
)) (TYPE x
)
690 (F(remquo
)) (TYPE x
, TYPE y
, int *i
)
722 (F(llround
)) (TYPE x
)
770 (F(nextafter
)) (TYPE x
, TYPE y
)
778 (F(nexttoward
)) (TYPE x
, long double y
)
786 (F(remainder
)) (TYPE x
, TYPE y
)
794 (F(scalb
)) (TYPE x
, TYPE y
)
802 (F(scalbn
)) (TYPE x
, int y
)
810 (F(scalbln
)) (TYPE x
, long int y
)
826 (F(fdim
)) (TYPE x
, TYPE y
)
834 (F(fmin
)) (TYPE x
, TYPE y
)
842 (F(fmax
)) (TYPE x
, TYPE y
)
850 (F(fma
)) (TYPE x
, TYPE y
, TYPE z
)
858 (F(cacos
)) (complex TYPE x
)
866 (F(casin
)) (complex TYPE x
)
874 (F(catan
)) (complex TYPE x
)
882 (F(ccos
)) (complex TYPE x
)
890 (F(csin
)) (complex TYPE x
)
898 (F(ctan
)) (complex TYPE x
)
906 (F(cacosh
)) (complex TYPE x
)
914 (F(casinh
)) (complex TYPE x
)
922 (F(catanh
)) (complex TYPE x
)
930 (F(ccosh
)) (complex TYPE x
)
938 (F(csinh
)) (complex TYPE x
)
946 (F(ctanh
)) (complex TYPE x
)
954 (F(cexp
)) (complex TYPE x
)
962 (F(clog
)) (complex TYPE x
)
970 (F(csqrt
)) (complex TYPE x
)
978 (F(cpow
)) (complex TYPE x
, complex TYPE y
)
986 (F(cabs
)) (complex TYPE x
)
994 (F(carg
)) (complex TYPE x
)
1002 (F(creal
)) (complex TYPE x
)
1010 (F(cimag
)) (complex TYPE x
)
1018 (F(conj
)) (complex TYPE x
)
1026 (F(cproj
)) (complex TYPE x
)