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$
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.
56229716Sed *
57229716Sed * The structure of the C11 implementation of these macros can in
58229716Sed * principle be reused for non-C11 compilers, but due to an integer
59229716Sed * promotion bug for complex types in GCC 4.2, simply let non-C11
60229716Sed * compilers use an inefficient yet reliable version.
61133333Sstefanf */
62133333Sstefanf
63249995Sed#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || \
64249995Sed    __has_extension(c_generic_selections)
65229704Sed#define	__tg_generic(x, cfnl, cfn, cfnf, fnl, fn, fnf)			\
66229716Sed	_Generic(x,							\
67229716Sed		long double _Complex: cfnl,				\
68229716Sed		double _Complex: cfn,					\
69229716Sed		float _Complex: cfnf,					\
70229716Sed		long double: fnl,					\
71229716Sed		default: fn,						\
72229716Sed		float: fnf						\
73229716Sed	)
74229704Sed#define	__tg_type(x)							\
75229704Sed	__tg_generic(x, (long double _Complex)0, (double _Complex)0,	\
76229704Sed	    (float _Complex)0, (long double)0, (double)0, (float)0)
77229704Sed#define	__tg_impl_simple(x, y, z, fnl, fn, fnf, ...)			\
78229704Sed	__tg_generic(							\
79229704Sed	    __tg_type(x) + __tg_type(y) + __tg_type(z),			\
80229704Sed	    fnl, fn, fnf, fnl, fn, fnf)(__VA_ARGS__)
81229704Sed#define	__tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...)	\
82229704Sed	__tg_generic(							\
83229704Sed	    __tg_type(x) + __tg_type(y),				\
84229704Sed	    cfnl, cfn, cfnf, fnl, fn, fnf)(__VA_ARGS__)
85229716Sed#elif defined(__generic)
86229575Sed#define	__tg_generic_simple(x, fnl, fn, fnf)				\
87229575Sed	__generic(x, long double _Complex, fnl,				\
88229575Sed	    __generic(x, double _Complex, fn,				\
89229575Sed	        __generic(x, float _Complex, fnf,			\
90229591Sed	            __generic(x, long double, fnl,			\
91229591Sed	                __generic(x, float, fnf, fn)))))
92229575Sed#define	__tg_impl_simple(x, y, z, fnl, fn, fnf, ...)			\
93229575Sed	__tg_generic_simple(x,						\
94229575Sed	    __tg_generic_simple(y,					\
95229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
96229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
97229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl)),			\
98229575Sed	    __tg_generic_simple(y,					\
99229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
100229575Sed	        __tg_generic_simple(z, fnl, fn , fn ),			\
101229575Sed	        __tg_generic_simple(z, fnl, fn , fn )),			\
102229575Sed	    __tg_generic_simple(y,					\
103229575Sed	        __tg_generic_simple(z, fnl, fnl, fnl),			\
104229575Sed	        __tg_generic_simple(z, fnl, fn , fn ),			\
105229575Sed	        __tg_generic_simple(z, fnl, fn , fnf)))(__VA_ARGS__)
106229575Sed#define	__tg_generic_full(x, cfnl, cfn, cfnf, fnl, fn, fnf)		\
107229575Sed	__generic(x, long double _Complex, cfnl,			\
108229575Sed	    __generic(x, double _Complex, cfn,				\
109229575Sed	        __generic(x, float _Complex, cfnf,			\
110229591Sed	            __generic(x, long double, fnl,			\
111229591Sed	                __generic(x, float, fnf, fn)))))
112229575Sed#define	__tg_impl_full(x, y, cfnl, cfn, cfnf, fnl, fn, fnf, ...)	\
113229575Sed	__tg_generic_full(x,						\
114229575Sed	    __tg_generic_full(y, cfnl, cfnl, cfnl, cfnl, cfnl, cfnl),	\
115229575Sed	    __tg_generic_full(y, cfnl, cfn , cfn , cfnl, cfn , cfn ),	\
116229575Sed	    __tg_generic_full(y, cfnl, cfn , cfnf, cfnl, cfn , cfnf),	\
117229575Sed	    __tg_generic_full(y, cfnl, cfnl, cfnl, fnl , fnl , fnl ),	\
118229575Sed	    __tg_generic_full(y, cfnl, cfn , cfn , fnl , fn  , fn  ),	\
119229575Sed	    __tg_generic_full(y, cfnl, cfn , cfnf, fnl , fn  , fnf ))	\
120229575Sed	    (__VA_ARGS__)
121229716Sed#else
122229716Sed#error "<tgmath.h> not implemented for this compiler"
123229704Sed#endif
124133333Sstefanf
125133333Sstefanf/* Macros to save lots of repetition below */
126133333Sstefanf#define	__tg_simple(x, fn)						\
127229575Sed	__tg_impl_simple(x, x, x, fn##l, fn, fn##f, x)
128133333Sstefanf#define	__tg_simple2(x, y, fn)						\
129229575Sed	__tg_impl_simple(x, x, y, fn##l, fn, fn##f, x, y)
130229575Sed#define	__tg_simple3(x, y, z, fn)					\
131229575Sed	__tg_impl_simple(x, y, z, fn##l, fn, fn##f, x, y, z)
132133333Sstefanf#define	__tg_simplev(x, fn, ...)					\
133229575Sed	__tg_impl_simple(x, x, x, fn##l, fn, fn##f, __VA_ARGS__)
134133333Sstefanf#define	__tg_full(x, fn)						\
135229575Sed	__tg_impl_full(x, x, c##fn##l, c##fn, c##fn##f, fn##l, fn, fn##f, x)
136229575Sed#define	__tg_full2(x, y, fn)						\
137229575Sed	__tg_impl_full(x, y, c##fn##l, c##fn, c##fn##f, fn##l, fn, fn##f, x, y)
138133333Sstefanf
139133333Sstefanf/* 7.22#4 -- These macros expand to real or complex functions, depending on
140133333Sstefanf * the type of their arguments. */
141133333Sstefanf#define	acos(x)		__tg_full(x, acos)
142133333Sstefanf#define	asin(x)		__tg_full(x, asin)
143133333Sstefanf#define	atan(x)		__tg_full(x, atan)
144133333Sstefanf#define	acosh(x)	__tg_full(x, acosh)
145133333Sstefanf#define	asinh(x)	__tg_full(x, asinh)
146133333Sstefanf#define	atanh(x)	__tg_full(x, atanh)
147133333Sstefanf#define	cos(x)		__tg_full(x, cos)
148133333Sstefanf#define	sin(x)		__tg_full(x, sin)
149133333Sstefanf#define	tan(x)		__tg_full(x, tan)
150133333Sstefanf#define	cosh(x)		__tg_full(x, cosh)
151133333Sstefanf#define	sinh(x)		__tg_full(x, sinh)
152133333Sstefanf#define	tanh(x)		__tg_full(x, tanh)
153133333Sstefanf#define	exp(x)		__tg_full(x, exp)
154133333Sstefanf#define	log(x)		__tg_full(x, log)
155229575Sed#define	pow(x, y)	__tg_full2(x, y, pow)
156133333Sstefanf#define	sqrt(x)		__tg_full(x, sqrt)
157133333Sstefanf
158133333Sstefanf/* "The corresponding type-generic macro for fabs and cabs is fabs." */
159229575Sed#define	fabs(x)		__tg_impl_full(x, x, cabsl, cabs, cabsf,	\
160229575Sed    			    fabsl, fabs, fabsf, x)
161133333Sstefanf
162133333Sstefanf/* 7.22#5 -- These macros are only defined for arguments with real type. */
163133333Sstefanf#define	atan2(x, y)	__tg_simple2(x, y, atan2)
164133333Sstefanf#define	cbrt(x)		__tg_simple(x, cbrt)
165133333Sstefanf#define	ceil(x)		__tg_simple(x, ceil)
166133333Sstefanf#define	copysign(x, y)	__tg_simple2(x, y, copysign)
167133333Sstefanf#define	erf(x)		__tg_simple(x, erf)
168133333Sstefanf#define	erfc(x)		__tg_simple(x, erfc)
169133333Sstefanf#define	exp2(x)		__tg_simple(x, exp2)
170133333Sstefanf#define	expm1(x)	__tg_simple(x, expm1)
171133333Sstefanf#define	fdim(x, y)	__tg_simple2(x, y, fdim)
172133333Sstefanf#define	floor(x)	__tg_simple(x, floor)
173229575Sed#define	fma(x, y, z)	__tg_simple3(x, y, z, fma)
174133333Sstefanf#define	fmax(x, y)	__tg_simple2(x, y, fmax)
175133333Sstefanf#define	fmin(x, y)	__tg_simple2(x, y, fmin)
176133333Sstefanf#define	fmod(x, y)	__tg_simple2(x, y, fmod)
177133333Sstefanf#define	frexp(x, y)	__tg_simplev(x, frexp, x, y)
178133333Sstefanf#define	hypot(x, y)	__tg_simple2(x, y, hypot)
179133333Sstefanf#define	ilogb(x)	__tg_simple(x, ilogb)
180133333Sstefanf#define	ldexp(x, y)	__tg_simplev(x, ldexp, x, y)
181133333Sstefanf#define	lgamma(x)	__tg_simple(x, lgamma)
182133333Sstefanf#define	llrint(x)	__tg_simple(x, llrint)
183133333Sstefanf#define	llround(x)	__tg_simple(x, llround)
184133333Sstefanf#define	log10(x)	__tg_simple(x, log10)
185133333Sstefanf#define	log1p(x)	__tg_simple(x, log1p)
186133333Sstefanf#define	log2(x)		__tg_simple(x, log2)
187133333Sstefanf#define	logb(x)		__tg_simple(x, logb)
188133333Sstefanf#define	lrint(x)	__tg_simple(x, lrint)
189133333Sstefanf#define	lround(x)	__tg_simple(x, lround)
190134733Sstefanf#define	nearbyint(x)	__tg_simple(x, nearbyint)
191133333Sstefanf#define	nextafter(x, y)	__tg_simple2(x, y, nextafter)
192133333Sstefanf#define	nexttoward(x, y) __tg_simplev(x, nexttoward, x, y)
193133333Sstefanf#define	remainder(x, y)	__tg_simple2(x, y, remainder)
194229575Sed#define	remquo(x, y, z)	__tg_impl_simple(x, x, y, remquol, remquo,	\
195229575Sed			    remquof, x, y, z)
196133333Sstefanf#define	rint(x)		__tg_simple(x, rint)
197133333Sstefanf#define	round(x)	__tg_simple(x, round)
198133333Sstefanf#define	scalbn(x, y)	__tg_simplev(x, scalbn, x, y)
199133333Sstefanf#define	scalbln(x, y)	__tg_simplev(x, scalbln, x, y)
200133333Sstefanf#define	tgamma(x)	__tg_simple(x, tgamma)
201133333Sstefanf#define	trunc(x)	__tg_simple(x, trunc)
202133333Sstefanf
203133333Sstefanf/* 7.22#6 -- These macros always expand to complex functions. */
204133333Sstefanf#define	carg(x)		__tg_simple(x, carg)
205133333Sstefanf#define	cimag(x)	__tg_simple(x, cimag)
206133333Sstefanf#define	conj(x)		__tg_simple(x, conj)
207133333Sstefanf#define	cproj(x)	__tg_simple(x, cproj)
208133333Sstefanf#define	creal(x)	__tg_simple(x, creal)
209133333Sstefanf
210133333Sstefanf#endif /* !_TGMATH_H_ */
211