tgmath.h revision 229591
1133333Sstefanf/*-
2133333Sstefanf * Copyright (c) 2004 Stefan Farfeleder.
3133333Sstefanf * All rights reserved.
4133333Sstefanf *
5229575Sed * Copyright (c) 2012 Ed Schouten <ed@FreeBSD.org>
6229575Sed * All rights reserved.
7229575Sed *
8133333Sstefanf * Redistribution and use in source and binary forms, with or without
9133333Sstefanf * modification, are permitted provided that the following conditions
10133333Sstefanf * are met:
11133333Sstefanf * 1. Redistributions of source code must retain the above copyright
12133333Sstefanf *    notice, this list of conditions and the following disclaimer.
13133333Sstefanf * 2. Redistributions in binary form must reproduce the above copyright
14133333Sstefanf *    notice, this list of conditions and the following disclaimer in the
15133333Sstefanf *    documentation and/or other materials provided with the distribution.
16133333Sstefanf *
17133333Sstefanf * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18133333Sstefanf * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19133333Sstefanf * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20133333Sstefanf * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21133333Sstefanf * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22133333Sstefanf * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23133333Sstefanf * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24133333Sstefanf * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25133333Sstefanf * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26133333Sstefanf * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27133333Sstefanf * SUCH DAMAGE.
28133333Sstefanf *
29133333Sstefanf * $FreeBSD: head/include/tgmath.h 229591 2012-01-05 12:06:49Z ed $
30133333Sstefanf */
31133333Sstefanf
32133333Sstefanf#ifndef _TGMATH_H_
33133333Sstefanf#define	_TGMATH_H_
34133333Sstefanf
35133333Sstefanf#include <complex.h>
36133333Sstefanf#include <math.h>
37133333Sstefanf
38133333Sstefanf/*
39229575Sed * This implementation of <tgmath.h> uses the two following macros,
40229575Sed * which are based on the macros described in C11 proposal N1404:
41229575Sed * __tg_impl_simple(x, y, z, fnl, fn, fnf, ...)
42133333Sstefanf *	Invokes fnl() if the corresponding real type of x, y or z is long
43133333Sstefanf *	double, fn() if it is double or any has an integer type, and fnf()
44133333Sstefanf *	otherwise.
45229575Sed * __tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...)
46229575Sed *	Invokes [c]fnl() if the corresponding real type of x or y is long
47133333Sstefanf *	double, [c]fn() if it is double or any has an integer type, and
48133333Sstefanf *	[c]fnf() otherwise.  The function with the 'c' prefix is called if
49229575Sed *	any of x or y is a complex number.
50133333Sstefanf * Both macros call the chosen function with all additional arguments passed
51133333Sstefanf * to them, as given by __VA_ARGS__.
52133333Sstefanf *
53133333Sstefanf * Note that these macros cannot be implemented with C's ?: operator,
54133333Sstefanf * because the return type of the whole expression would incorrectly be long
55133333Sstefanf * double complex regardless of the argument types.
56133333Sstefanf */
57133333Sstefanf
58229575Sed#ifndef __generic
59229575Sed#error "<tgmath.h> not implemented for this compiler"
60229575Sed#endif
61133333Sstefanf
62229575Sed#define	__tg_generic_simple(x, fnl, fn, fnf)				\
63229575Sed	__generic(x, long double _Complex, fnl,				\
64229575Sed	    __generic(x, double _Complex, fn,				\
65229575Sed	        __generic(x, float _Complex, fnf,			\
66229591Sed	            __generic(x, long double, fnl,			\
67229591Sed	                __generic(x, float, fnf, fn)))))
68229575Sed#define	__tg_impl_simple(x, y, z, fnl, fn, fnf, ...)			\
69229575Sed	__tg_generic_simple(x,						\
70229575Sed	    __tg_generic_simple(y,					\
71229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
72229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
73229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl)),			\
74229575Sed	    __tg_generic_simple(y,					\
75229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
76229575Sed	        __tg_generic_simple(z, fnl, fn , fn ),			\
77229575Sed	        __tg_generic_simple(z, fnl, fn , fn )),			\
78229575Sed	    __tg_generic_simple(y,					\
79229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
80229575Sed	        __tg_generic_simple(z, fnl, fn , fn ),			\
81229575Sed	        __tg_generic_simple(z, fnl, fn , fnf)))(__VA_ARGS__)
82229575Sed#define	__tg_generic_full(x, cfnl, cfn, cfnf, fnl, fn, fnf)		\
83229575Sed	__generic(x, long double _Complex, cfnl,			\
84229575Sed	    __generic(x, double _Complex, cfn,				\
85229575Sed	        __generic(x, float _Complex, cfnf,			\
86229591Sed	            __generic(x, long double, fnl,			\
87229591Sed	                __generic(x, float, fnf, fn)))))
88229575Sed#define	__tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...)	\
89229575Sed	__tg_generic_full(x,						\
90229575Sed	    __tg_generic_full(y, cfnl, cfnl, cfnl, cfnl, cfnl, cfnl),	\
91229575Sed	    __tg_generic_full(y, cfnl, cfn , cfn , cfnl, cfn , cfn ),	\
92229575Sed	    __tg_generic_full(y, cfnl, cfn , cfnf, cfnl, cfn , cfnf),	\
93229575Sed	    __tg_generic_full(y, cfnl, cfnl, cfnl, fnl , fnl , fnl ),	\
94229575Sed	    __tg_generic_full(y, cfnl, cfn , cfn , fnl , fn  , fn  ),	\
95229575Sed	    __tg_generic_full(y, cfnl, cfn , cfnf, fnl , fn  , fnf ))	\
96229575Sed	    (__VA_ARGS__)
97133333Sstefanf
98133333Sstefanf/* Macros to save lots of repetition below */
99133333Sstefanf#define	__tg_simple(x, fn)						\
100229575Sed	__tg_impl_simple(x, x, x, fn##l, fn, fn##f, x)
101133333Sstefanf#define	__tg_simple2(x, y, fn)						\
102229575Sed	__tg_impl_simple(x, x, y, fn##l, fn, fn##f, x, y)
103229575Sed#define	__tg_simple3(x, y, z, fn)					\
104229575Sed	__tg_impl_simple(x, y, z, fn##l, fn, fn##f, x, y, z)
105133333Sstefanf#define	__tg_simplev(x, fn, ...)					\
106229575Sed	__tg_impl_simple(x, x, x, fn##l, fn, fn##f, __VA_ARGS__)
107133333Sstefanf#define	__tg_full(x, fn)						\
108229575Sed	__tg_impl_full(x, x, c##fn##l, c##fn, c##fn##f, fn##l, fn, fn##f, x)
109229575Sed#define	__tg_full2(x, y, fn)						\
110229575Sed	__tg_impl_full(x, y, c##fn##l, c##fn, c##fn##f, fn##l, fn, fn##f, x, y)
111133333Sstefanf
112133333Sstefanf/* 7.22#4 -- These macros expand to real or complex functions, depending on
113133333Sstefanf * the type of their arguments. */
114133333Sstefanf#define	acos(x)		__tg_full(x, acos)
115133333Sstefanf#define	asin(x)		__tg_full(x, asin)
116133333Sstefanf#define	atan(x)		__tg_full(x, atan)
117133333Sstefanf#define	acosh(x)	__tg_full(x, acosh)
118133333Sstefanf#define	asinh(x)	__tg_full(x, asinh)
119133333Sstefanf#define	atanh(x)	__tg_full(x, atanh)
120133333Sstefanf#define	cos(x)		__tg_full(x, cos)
121133333Sstefanf#define	sin(x)		__tg_full(x, sin)
122133333Sstefanf#define	tan(x)		__tg_full(x, tan)
123133333Sstefanf#define	cosh(x)		__tg_full(x, cosh)
124133333Sstefanf#define	sinh(x)		__tg_full(x, sinh)
125133333Sstefanf#define	tanh(x)		__tg_full(x, tanh)
126133333Sstefanf#define	exp(x)		__tg_full(x, exp)
127133333Sstefanf#define	log(x)		__tg_full(x, log)
128229575Sed#define	pow(x, y)	__tg_full2(x, y, pow)
129133333Sstefanf#define	sqrt(x)		__tg_full(x, sqrt)
130133333Sstefanf
131133333Sstefanf/* "The corresponding type-generic macro for fabs and cabs is fabs." */
132229575Sed#define	fabs(x)		__tg_impl_full(x, x, cabsl, cabs, cabsf,	\
133229575Sed    			    fabsl, fabs, fabsf, x)
134133333Sstefanf
135133333Sstefanf/* 7.22#5 -- These macros are only defined for arguments with real type. */
136133333Sstefanf#define	atan2(x, y)	__tg_simple2(x, y, atan2)
137133333Sstefanf#define	cbrt(x)		__tg_simple(x, cbrt)
138133333Sstefanf#define	ceil(x)		__tg_simple(x, ceil)
139133333Sstefanf#define	copysign(x, y)	__tg_simple2(x, y, copysign)
140133333Sstefanf#define	erf(x)		__tg_simple(x, erf)
141133333Sstefanf#define	erfc(x)		__tg_simple(x, erfc)
142133333Sstefanf#define	exp2(x)		__tg_simple(x, exp2)
143133333Sstefanf#define	expm1(x)	__tg_simple(x, expm1)
144133333Sstefanf#define	fdim(x, y)	__tg_simple2(x, y, fdim)
145133333Sstefanf#define	floor(x)	__tg_simple(x, floor)
146229575Sed#define	fma(x, y, z)	__tg_simple3(x, y, z, fma)
147133333Sstefanf#define	fmax(x, y)	__tg_simple2(x, y, fmax)
148133333Sstefanf#define	fmin(x, y)	__tg_simple2(x, y, fmin)
149133333Sstefanf#define	fmod(x, y)	__tg_simple2(x, y, fmod)
150133333Sstefanf#define	frexp(x, y)	__tg_simplev(x, frexp, x, y)
151133333Sstefanf#define	hypot(x, y)	__tg_simple2(x, y, hypot)
152133333Sstefanf#define	ilogb(x)	__tg_simple(x, ilogb)
153133333Sstefanf#define	ldexp(x, y)	__tg_simplev(x, ldexp, x, y)
154133333Sstefanf#define	lgamma(x)	__tg_simple(x, lgamma)
155133333Sstefanf#define	llrint(x)	__tg_simple(x, llrint)
156133333Sstefanf#define	llround(x)	__tg_simple(x, llround)
157133333Sstefanf#define	log10(x)	__tg_simple(x, log10)
158133333Sstefanf#define	log1p(x)	__tg_simple(x, log1p)
159133333Sstefanf#define	log2(x)		__tg_simple(x, log2)
160133333Sstefanf#define	logb(x)		__tg_simple(x, logb)
161133333Sstefanf#define	lrint(x)	__tg_simple(x, lrint)
162133333Sstefanf#define	lround(x)	__tg_simple(x, lround)
163134733Sstefanf#define	nearbyint(x)	__tg_simple(x, nearbyint)
164133333Sstefanf#define	nextafter(x, y)	__tg_simple2(x, y, nextafter)
165133333Sstefanf#define	nexttoward(x, y) __tg_simplev(x, nexttoward, x, y)
166133333Sstefanf#define	remainder(x, y)	__tg_simple2(x, y, remainder)
167229575Sed#define	remquo(x, y, z)	__tg_impl_simple(x, x, y, remquol, remquo,	\
168229575Sed			    remquof, x, y, z)
169133333Sstefanf#define	rint(x)		__tg_simple(x, rint)
170133333Sstefanf#define	round(x)	__tg_simple(x, round)
171133333Sstefanf#define	scalbn(x, y)	__tg_simplev(x, scalbn, x, y)
172133333Sstefanf#define	scalbln(x, y)	__tg_simplev(x, scalbln, x, y)
173133333Sstefanf#define	tgamma(x)	__tg_simple(x, tgamma)
174133333Sstefanf#define	trunc(x)	__tg_simple(x, trunc)
175133333Sstefanf
176133333Sstefanf/* 7.22#6 -- These macros always expand to complex functions. */
177133333Sstefanf#define	carg(x)		__tg_simple(x, carg)
178133333Sstefanf#define	cimag(x)	__tg_simple(x, cimag)
179133333Sstefanf#define	conj(x)		__tg_simple(x, conj)
180133333Sstefanf#define	cproj(x)	__tg_simple(x, cproj)
181133333Sstefanf#define	creal(x)	__tg_simple(x, creal)
182133333Sstefanf
183133333Sstefanf#endif /* !_TGMATH_H_ */
184