]> sourceware.org Git - glibc.git/blame - math/Makefile
Make totalorder and totalordermag functions take pointer arguments.
[glibc.git] / math / Makefile
CommitLineData
04277e02 1# Copyright (C) 1996-2019 Free Software Foundation, Inc.
28f540f4
RM
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
8
9# The GNU C Library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
0c5ecdc4
UD
17
18# Makefile for the math library.
28f540f4 19
f7eac6eb
RM
20subdir := math
21
a5f891ac
JM
22include ../Makeconfig
23
f7eac6eb 24# Installed header files.
a60eca2e 25headers := math.h bits/mathcalls.h bits/mathinline.h \
a86573f4 26 fpu_control.h complex.h bits/cmathcalls.h fenv.h \
0ac5ae23 27 bits/fenv.h bits/fenvinline.h bits/mathdef.h tgmath.h \
202d48da 28 bits/math-finite.h bits/math-vector.h \
ae514971 29 finclude/math-vector-fortran.h \
93eb85ce 30 bits/libm-simd-decl-stubs.h bits/iscanonical.h \
0acb8a2a 31 bits/flt-eval-method.h bits/fp-fast.h bits/fp-logb.h \
fcee5905 32 bits/long-double.h bits/mathcalls-helper-functions.h \
63716ab2 33 bits/floatn.h bits/floatn-common.h bits/mathcalls-narrow.h
f7eac6eb 34
5fbef188 35# FPU support code.
c94a8080 36aux := setfpucw fpu_control
28f540f4 37
f7eac6eb 38# Build the -lm library.
28f540f4 39
f7eac6eb 40extra-libs := libm
ec4b0518 41extra-libs-others = $(extra-libs)
58e07151 42
f56f9124 43libm-support = s_lib_version s_matherr s_signgam \
63551311
UD
44 fclrexcpt fgetexcptflg fraiseexcpt fsetexcptflg \
45 ftestexcept fegetround fesetround fegetenv feholdexcpt \
e70c1768 46 fesetenv feupdateenv fedisblxcpt feenablxcpt \
ec94343f
JM
47 fegetexcept fesetexcept fetestexceptflag fegetmode \
48 fesetmode
b9e05ed0 49
ce6698ea
PM
50# Wrappers for these functions generated per type using a file named
51# <func>_template.c and the appropriate math-type-macros-<TYPE>.h.
c50eee19
PM
52gen-libm-calls = cargF conjF cimagF crealF cabsF s_cacosF \
53 s_cacoshF s_ccosF s_ccoshF s_casinF s_csinF s_casinhF \
d5602ceb 54 k_casinhF s_csinhF k_casinhF s_csinhF s_catanhF s_catanF \
feb62dda 55 s_ctanF s_ctanhF s_cexpF s_clogF s_cprojF s_csqrtF \
2c46d114 56 s_cpowF s_clog10F s_fdimF s_nextdownF s_fmaxF s_fminF \
5e79e029
TMQMF
57 s_nanF s_iseqsigF s_canonicalizeF s_significandF \
58 w_ilogbF w_llogbF \
aec0821c
GG
59 w_log1pF w_scalblnF s_fmaxmagF s_fminmagF w_acosF \
60 w_acoshF w_asinF w_atan2F w_atanhF w_coshF w_exp10F \
61 w_exp2F w_fmodF w_hypotF w_j0F w_j1F w_jnF w_logF \
62 w_log10F w_log2F w_powF w_remainderF w_sinhF w_sqrtF \
7620dc12 63 w_tgammaF w_lgammaF w_lgammaF_r w_expF e_exp2F
ce6698ea 64
b9e05ed0
PM
65libm-calls = \
66 e_acosF e_acoshF e_asinF e_atan2F e_atanhF e_coshF e_expF e_fmodF \
67 e_hypotF e_j0F e_j1F e_jnF e_lgammaF_r e_logF e_log10F e_powF \
ca3aac57 68 e_remainderF e_scalbF e_sinhF e_sqrtF e_gammaF_r \
b9e05ed0 69 e_ilogbF \
ca3aac57 70 k_tanF s_asinhF s_atanF s_cbrtF \
b9e05ed0 71 s_ceilF s_cosF s_erfF s_expm1F s_fabsF \
14348aae 72 s_floorF s_log1pF s_logbF \
e4d6a835 73 s_nextafterF s_nexttowardF s_rintF s_scalblnF \
5e79e029 74 s_sinF s_tanF s_tanhF \
2c46d114 75 s_fpclassifyF s_truncF \
7620dc12 76 s_remquoF e_log2F s_roundF s_nearbyintF s_sincosF \
f67d7819 77 s_fmaF s_lrintF s_llrintF s_lroundF s_llroundF e_exp10F \
c50eee19 78 s_issignalingF $(calls:s_%=m_%) x2y2m1F \
b9e05ed0 79 gamma_productF lgamma_negF lgamma_productF \
f8e8b8ed 80 s_nextupF s_totalorderF s_totalordermagF s_getpayloadF \
423c2b9d
JM
81 s_setpayloadF s_setpayloadsigF s_roundevenF s_fromfpF s_ufromfpF \
82 s_fromfpxF s_ufromfpxF $(gen-libm-calls)
b9e05ed0 83
3789e2fd 84libm-compat-calls = \
f67d7819
GG
85 w_acosF_compat w_acoshF_compat w_asinF_compat w_atan2F_compat \
86 w_atanhF_compat w_coshF_compat w_exp2F_compat w_exp10F_compat \
87 w_fmodF_compat w_hypotF_compat w_j0F_compat w_j1F_compat \
88 w_jnF_compat w_log2F_compat w_log10F_compat w_logF_compat \
89 w_powF_compat w_remainderF_compat w_scalbF_compat \
ea814db2 90 w_sinhF_compat w_sqrtF_compat w_tgammaF_compat \
3789e2fd
GG
91 w_lgammaF_r_compat w_lgammaF_compat2 w_expF_compat \
92 w_lgamma_compatF k_standardF
b9e05ed0 93
632a6cbe 94libm-narrow-fns = add div mul sub
63716ab2
JM
95libm-narrow-types-basic = s_fF s_f32xFf64
96libm-narrow-types-ldouble-yes = s_fFl s_dFl
97libm-narrow-types-float128-yes = s_f32Ff128 s_f64Ff128 s_f64xFf128
98libm-narrow-types-float128-alias-yes = s_f64xFf128
99libm-narrow-types = $(libm-narrow-types-basic) \
100 $(libm-narrow-types-ldouble-$(long-double-fcts)) \
101 $(libm-narrow-types-float128-$(float128-fcts)) \
102 $(libm-narrow-types-float128-alias-$(float128-alias-fcts))
103
b9e05ed0
PM
104# Type specific routine support.
105#
106# The following three variables control what is included for each type:
107#
108# type-floatN-suffix = The suffix of the type
109# type-floatN-routines = Type specific support objects
110# type-floatN-yes = If the type is supported, evaluates to floatN
111#
112# Finally, note that types is an intentionally recursive variable.
113# We only know the full set of supported types for the target machine
114# after the Rules makefile has been parsed.
26265c3b 115types-basic = $(type-ldouble-$(long-double-fcts)) double float
b9e05ed0 116
bc9620d0
JM
117# Like types, but includes types whose functions alias those for
118# another type.
119test-types-basic = ldouble double float
120
b9e05ed0
PM
121# long double support
122type-ldouble-suffix := l
ca3aac57
WD
123type-ldouble-routines := t_sincosl k_sinl k_cosl k_sincosl s_iscanonicall \
124 e_rem_pio2l
b9e05ed0
PM
125type-ldouble-yes := ldouble
126
127# double support
128type-double-suffix :=
c3d466cb 129type-double-routines := branred doasin dosincos mpa mpatan2 \
ca3aac57 130 k_rem_pio2 mpatan mpsqrt mptan sincos32 \
3e08ff54 131 sincostab math_err e_exp_data e_log_data \
424c4f60 132 e_log2_data e_pow_log_data
b9e05ed0
PM
133
134# float support
135type-float-suffix := f
ca3aac57 136type-float-routines := math_errf e_exp2f_data e_logf_data \
ea5c662c 137 e_log2f_data e_powf_log2_data s_sincosf_data
b9e05ed0 138
26265c3b
PM
139# _Float128 support
140type-float128-suffix := f128
ca3aac57
WD
141type-float128-routines := t_sincosf128 k_sinf128 k_cosf128 k_sincosf128 \
142 e_rem_pio2f128
26265c3b 143type-float128-yes := float128
ae7207d0
JM
144
145# _Float64x may be supported, only as an alias type.
146type-float64x-yes := float64x
147
26265c3b 148types = $(types-basic) $(type-float128-$(float128-fcts))
596f7013 149test-types = $(test-types-basic) $(type-float128-$(float128-fcts)) \
1f9055ce 150 float32 float64 $(type-float128-$(float128-alias-fcts)) \
0d93b7fd 151 float32x $(type-float64x-$(float64x-alias-fcts))
26265c3b 152
8e554659
JM
153# Pairs of types for which narrowing functions should be tested (this
154# variable has more entries than libm-narrow-types because it includes
155# pairs for which the functions sometimes or always alias functions
156# for other types). This definition embeds the assumption that if
157# _Float64x is supported, so is _Float128, and vice versa (they may or
158# may not have the same format).
159test-type-pairs = float-double float-ldouble double-ldouble \
160 float32-float64 float32-float32x float32x-float64 \
161 $(test-type-pairs-f64xf128-$(float128-fcts)) \
162 $(test-type-pairs-f64xf128-$(float128-alias-fcts))
163test-type-pairs-f64xf128-yes = float32-float64x float32-float128 \
164 float64-float64x float64-float128 \
165 float32x-float64x float32x-float128 \
166 float64x-float128
167
26265c3b
PM
168# For each of the basic types (float, double, long double), replace the
169# occurrences of 'F' in arg 1 with the appropriate suffix for the type.
170type-basic-foreach = $(foreach t, $(types-basic), \
171 $(subst F,$(type-$(t)-suffix),$(1)))
b9e05ed0
PM
172
173# Apply suffix to each type in arg 1
174type-foreach = $(foreach t,$(types),$(subst F,$(type-$(t)-suffix),$(1)))
175
3789e2fd 176libm-routines = $(strip $(libm-support) \
26265c3b
PM
177 $(call type-basic-foreach, \
178 $(libm-compat-calls)) \
b9e05ed0
PM
179 $(call type-foreach, $(libm-calls)) \
180 $(foreach t, $(types), $(type-$(t)-routines))) \
63716ab2
JM
181 $(foreach f,$(libm-narrow-fns), \
182 $(subst F,$(f),$(libm-narrow-types)))
58e07151 183
f7eac6eb
RM
184# These functions are in libc instead of libm because __printf_fp
185# calls them, so any program using printf will need them linked in,
186# and we don't want to have to link every program with -lm.
92712dee
RM
187# In libm-calls (above), list m_foo in place of s_foo for any
188# routine that should be compiled separately for its libc and libm versions.
b9e05ed0 189calls = s_isinfF s_isnanF s_finiteF s_copysignF s_modfF s_scalbnF s_frexpF \
9f9834f5
PM
190 s_signbitF $(gen-calls)
191gen-calls = s_ldexpF
b9e05ed0
PM
192generated += $(foreach s,.c .S,$(call type-foreach, $(calls:s_%=m_%$(s))))
193routines = $(call type-foreach, $(calls))
8847214f 194
5695d46f 195ifeq ($(build-mathvec),yes)
cbd8f930
AS
196# We need to install libm.so and libm.a as linker scripts
197# for transparent use of vector math library.
198install-lib-ldscripts := libm.so libm.a
199install-others = $(inst_libdir)/libm.so $(inst_libdir)/libm.a
5695d46f
AS
200$(inst_libdir)/libm.so: $(common-objpfx)format.lds \
201 $(libm) \
202 $(libmvec) \
203 $(+force)
204 (echo '/* GNU ld script'; echo '*/';\
205 cat $<; \
206 echo 'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \
b3f60407 207 'AS_NEEDED ( $(libdir)/libmvec_nonshared.a $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \
f9378ac3
DAS
208 ) > $@.new
209 mv -f $@.new $@
cbd8f930 210
ffb8455c
AS
211$(inst_libdir)/libm-$(version).a: $(objpfx)libm.a \
212 $(+force)
213 $(do-install)
214
cbd8f930 215$(inst_libdir)/libm.a: $(common-objpfx)format.lds \
ffb8455c
AS
216 $(inst_libdir)/libm-$(version).a \
217 $(objpfx)../mathvec/libmvec.a \
cbd8f930
AS
218 $(+force)
219 (echo '/* GNU ld script'; echo '*/';\
220 cat $<; \
ffb8455c 221 echo 'GROUP ( $(libdir)/libm-$(version).a $(libdir)/libmvec.a )' \
cbd8f930 222 ) > $@.new
cbd8f930 223 mv -f $@.new $@
5695d46f
AS
224endif
225
c57abfa7 226# Rules for the test suite.
a4d57b79 227tests = test-matherr-3 test-fenv basic-test \
95e7cf29
MR
228 test-misc test-fpucw test-fpucw-ieee tst-definitions test-tgmath \
229 test-tgmath-ret bug-nextafter bug-nexttoward bug-tgmath1 \
230 test-tgmath-int test-tgmath2 test-powl tst-CMPLX tst-CMPLX2 test-snan \
85b29045 231 test-fenv-tls test-fenv-preserve test-fenv-return test-fenvinline \
939fdd1c 232 test-nearbyint-except test-fenv-clear test-signgam-finite \
71d1b016 233 test-signgam-finite-c99 test-signgam-finite-c11 \
d709042a
JM
234 test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
235 test-signgam-uint test-signgam-uint-init test-signgam-ullong \
8f5e8b01 236 test-signgam-ullong-init test-nan-overflow test-nan-payload \
5146356f 237 test-fexcept test-fexcept-traps test-fesetexcept \
ec94343f 238 test-fesetexcept-traps test-fetestexceptflag test-femode \
d0800ae0 239 test-femode-traps test-iszero-excess-precision \
c2a82dac 240 test-iseqsig-excess-precision test-flt-eval-method \
c0b43536 241 test-fp-ilogb-constants test-fp-llogb-constants \
8e554659 242 test-fe-snans-always-signal test-finite-macros test-narrow-macros \
48b12ed5 243 test-nan-const $(tests-static)
d709042a
JM
244tests-static = test-fpucw-static test-fpucw-ieee-static \
245 test-signgam-uchar-static test-signgam-uchar-init-static \
246 test-signgam-uint-static test-signgam-uint-init-static \
247 test-signgam-ullong-static test-signgam-ullong-init-static
813378e9 248tests-internal = test-matherr test-matherr-2
c57abfa7 249
a4d57b79
FW
250# These tests use internal (unexported) GMP functions and are linked
251# statically to obtain access to these functions.
252tests-static += atest-exp atest-sincos atest-exp2
253
0800411f 254ifneq (,$(CXX))
aa0235df 255tests += test-math-isinff test-math-iszero test-math-issignaling \
c85e54ac 256 test-math-iscanonical test-math-cxx11 test-math-iseqsig
0800411f
RM
257endif
258
24a2718f 259libm-vec-tests = $(addprefix test-,$(libmvec-tests))
bc9620d0 260libm-test-support = $(foreach t,$(test-types),libm-test-support-$(t))
3b2f6032
JM
261test-extras += $(libm-test-support)
262extra-test-objs += $(addsuffix .o, $(libm-test-support))
b4bcb3ae
AS
263libm-vec-test-wrappers = $(addsuffix -wrappers, $(libm-vec-tests))
264test-extras += $(libm-vec-test-wrappers)
265extra-test-objs += $(addsuffix .o, $(libm-vec-test-wrappers))
8847214f 266
e0a3ed4f 267ulps-file = $(firstword $(wildcard $(sysdirs:%=%/libm-test-ulps)))
882ed1be 268
2813e41e 269$(objpfx)libm-test-ulps.h: $(ulps-file) gen-libm-test.py
5cd81881 270 $(make-target-directory)
2813e41e 271 $(PYTHON) gen-libm-test.py -u $< -H $@
5cd81881 272
6b8303a3 273libm-test-funcs-auto = acos acosh asin asinh atan atan2 atanh cabs cacos \
2c51dfd0
JM
274 cacosh carg casin casinh catan catanh cbrt ccos ccosh \
275 cexp clog clog10 cos cosh cpow csin csinh csqrt ctan \
276 ctanh erf erfc exp exp10 exp2 expm1 fma hypot j0 j1 jn \
277 lgamma log log10 log1p log2 pow sin sincos sinh sqrt \
278 tan tanh tgamma y0 y1 yn
279libm-test-funcs-noauto = canonicalize ceil cimag conj copysign cproj creal \
280 fabs fdim floor fmax fmaxmag fmin fminmag fmod \
281 fpclassify frexp fromfp fromfpx getpayload ilogb \
282 iscanonical iseqsig isfinite isgreater \
283 isgreaterequal isinf isless islessequal \
284 islessgreater isnan isnormal issignaling issubnormal \
285 isunordered iszero llogb llrint llround logb lrint \
286 lround modf nearbyint nextafter nextdown nexttoward \
287 nextup remainder remquo rint round roundeven scalb \
288 scalbln scalbn setpayload setpayloadsig signbit \
289 significand totalorder totalordermag trunc ufromfp \
42760d76
JM
290 ufromfpx compat_totalorder compat_totalordermag
291libm-test-funcs-compat = compat_totalorder compat_totalordermag
632a6cbe 292libm-test-funcs-narrow = add div mul sub
5cbb5849
JM
293libm-test-funcs-all = $(libm-test-funcs-auto) $(libm-test-funcs-noauto)
294libm-test-c-auto = $(foreach f,$(libm-test-funcs-auto),libm-test-$(f).c)
295libm-test-c-noauto = $(foreach f,$(libm-test-funcs-noauto),libm-test-$(f).c)
8e554659
JM
296libm-test-c-narrow = $(foreach f,$(libm-test-funcs-narrow),\
297 libm-test-narrow-$(f).c)
298generated += libm-test-ulps.h $(libm-test-c-auto) $(libm-test-c-noauto) \
299 $(libm-test-c-narrow)
92061bb0 300
bc9620d0
JM
301libm-tests-base-normal = $(foreach t,$(test-types),test-$(t))
302libm-tests-base-finite = $(foreach t,$(test-types),test-$(t)-finite)
303libm-tests-base-inline = $(foreach t,$(test-types),test-i$(t))
8e554659 304libm-tests-base-narrow = $(foreach t,$(test-type-pairs),test-$(t))
92061bb0
JM
305libm-tests-base = $(libm-tests-base-normal) $(libm-tests-base-finite) \
306 $(libm-tests-base-inline) $(libm-vec-tests)
307libm-tests-normal = $(foreach t,$(libm-tests-base-normal),\
308 $(foreach f,$(libm-test-funcs-all),\
309 $(t)-$(f)))
310libm-tests-finite = $(foreach t,$(libm-tests-base-finite),\
311 $(foreach f,$(libm-test-funcs-all),\
312 $(t)-$(f)))
313libm-tests-inline = $(foreach t,$(libm-tests-base-inline),\
314 $(foreach f,$(libm-test-funcs-all),\
315 $(t)-$(f)))
8e554659
JM
316libm-tests-narrow = $(foreach t,$(libm-tests-base-narrow),\
317 $(foreach f,$(libm-test-funcs-narrow),\
318 $(t)-$(f)))
92061bb0
JM
319libm-tests-vector = $(foreach t,$(libmvec-tests),\
320 $(foreach f,$($(t)-funcs),test-$(t)-$(f)))
321libm-tests = $(libm-tests-normal) $(libm-tests-finite) $(libm-tests-inline) \
8e554659 322 $(libm-tests-narrow) $(libm-tests-vector)
42760d76
JM
323libm-tests-compat = $(foreach t,$(libm-tests-base-normal) \
324 $(libm-tests-base-finite) \
325 $(libm-tests-base-inline),\
326 $(foreach f,$(libm-test-funcs-compat),\
327 $(t)-$(f)))
92061bb0
JM
328libm-tests-for-type = $(foreach f,$(libm-test-funcs-all),\
329 test-$(1)-$(f) test-$(1)-finite-$(f) \
330 test-i$(1)-$(f)) \
8e554659
JM
331 $(filter test-$(1)-%,$(libm-tests-vector) \
332 $(libm-tests-narrow))
92061bb0
JM
333
334libm-tests.o = $(addsuffix .o,$(libm-tests))
335
42760d76
JM
336tests += $(filter-out $(libm-tests-compat),$(libm-tests))
337tests-internal += $(libm-tests-compat)
92061bb0 338generated += $(addsuffix .c,$(libm-tests)) \
bc9620d0 339 $(foreach t,$(test-types),libm-test-support-$(t).c)
5cbb5849
JM
340
341libm-test-c-auto-obj = $(addprefix $(objpfx),$(libm-test-c-auto))
342libm-test-c-noauto-obj = $(addprefix $(objpfx),$(libm-test-c-noauto))
8e554659 343libm-test-c-narrow-obj = $(addprefix $(objpfx),$(libm-test-c-narrow))
5cbb5849 344
92061bb0 345$(libm-test-c-noauto-obj): $(objpfx)libm-test%.c: libm-test%.inc \
2813e41e 346 gen-libm-test.py
5cbb5849 347 $(make-target-directory)
2813e41e 348 $(PYTHON) gen-libm-test.py -c $< -a /dev/null -C $@
4f1bc131 349
5cbb5849 350$(libm-test-c-auto-obj): $(objpfx)libm-test%.c: libm-test%.inc \
2813e41e 351 gen-libm-test.py \
5cbb5849 352 auto-libm-test-out%
5cd81881 353 $(make-target-directory)
2813e41e 354 $(PYTHON) gen-libm-test.py -c $< -a auto-libm-test-out$* -C $@
8e554659
JM
355
356$(libm-test-c-narrow-obj): $(objpfx)libm-test%.c: libm-test%.inc \
2813e41e 357 gen-libm-test.py \
8e554659
JM
358 auto-libm-test-out%
359 $(make-target-directory)
2813e41e 360 $(PYTHON) gen-libm-test.py -c $< -a auto-libm-test-out$* -C $@
8847214f 361
42760d76
JM
362# Tests for totalorder compat symbols reuse the table of tests as
363# processed by gen-libm-test.py, so add dependencies on the generated
364# .c files.
365$(foreach t,$(libm-tests-base),\
366 $(objpfx)$(t)-compat_totalorder.o): $(objpfx)libm-test-totalorder.c
367
368$(foreach t,$(libm-tests-base),\
369 $(objpfx)$(t)-compat_totalordermag.o): $(objpfx)libm-test-totalordermag.c
370
7c67e6e8
JM
371tgmath3-macros = atan2 cbrt ceil copysign erf erfc exp2 expm1 fdim floor \
372 fma fmax fmin fmod frexp hypot ilogb ldexp lgamma llrint \
373 llround log10 log1p log2 logb lrint lround nearbyint \
374 nextafter nexttoward remainder remquo rint round scalbn \
375 scalbln tgamma trunc acos asin atan acosh asinh atanh cos \
376 sin tan cosh sinh tanh exp log pow sqrt fabs carg cimag conj \
377 cproj creal roundeven nextup nextdown fminmag fmaxmag llogb \
42760d76 378 fromfp fromfpx ufromfp ufromfpx scalb
7c67e6e8
JM
379tgmath3-macro-tests = $(addprefix test-tgmath3-,$(tgmath3-macros))
380tests += $(tgmath3-macro-tests)
381generated += $(addsuffix .c,$(tgmath3-macro-tests))
382
383$(tgmath3-macro-tests:%=$(objpfx)%.o): CFLAGS += -fno-builtin
384
385$(foreach m,$(tgmath3-macros),\
386 $(objpfx)test-tgmath3-$(m).c): $(objpfx)test-tgmath3-%.c: \
387 gen-tgmath-tests.py
388 $(PYTHON) gen-tgmath-tests.py $* > $@
389
390# Verify that the list of supported macros is in sync between the
391# Makefile and gen-tgmath-tests.py.
392tests-special += $(objpfx)test-tgmath3-macro-list.out
393$(objpfx)test-tgmath3-macro-list.out: gen-tgmath-tests.py
394 $(PYTHON) $< check-list $(tgmath3-macros) > $@; \
395 $(evaluate-test)
2dd0aec5 396
24a2718f
AS
397libm-test-fast-math-cflags = -fno-builtin -D__FAST_MATH__ -DTEST_FAST_MATH
398libm-test-vec-cflags = $(libm-test-fast-math-cflags) -fno-inline \
399 -ffloat-store -D_OPENMP=201307 -Wno-unknown-pragmas
400
36975e8e 401CFLAGS-test-double-vlen4-wrappers.c += $(double-vlen4-arch-ext-cflags)
24a2718f 402
36975e8e 403CFLAGS-test-double-vlen8-wrappers.c += $(double-vlen8-arch-ext-cflags)
24a2718f 404
36975e8e 405CFLAGS-test-float-vlen8-wrappers.c += $(float-vlen8-arch-ext-cflags)
2a523216 406
36975e8e 407CFLAGS-test-float-vlen16-wrappers.c += $(float-vlen16-arch-ext-cflags)
2a523216 408
26211284
JM
409# The no-inline tests use -fsignaling-nans, and thereby use the
410# versions of classification macros that support sNaNs. The inline
411# function tests use the versions of classification macros that may
412# raise spurious exceptions for sNaNs, but also do not test for
413# exceptions. Thus both versions of the classification macros are
414# validated.
415libm-test-no-inline-cflags = -fno-inline -ffloat-store -fno-builtin \
416 -fsignaling-nans
5a28590a
JM
417libm-test-finite-cflags = $(libm-test-no-inline-cflags) \
418 -U__FINITE_MATH_ONLY__ -D__FINITE_MATH_ONLY__=1
92061bb0 419libm-test-inline-cflags = $(libm-test-fast-math-cflags)
36975e8e 420CFLAGS-test-tgmath.c += -fno-builtin
d077f65f
MT
421# The following testcase uses very long lines (>3 million), so it may take a
422# while to compile it. See: http://llvm.org/bugs/show_bug.cgi?id=14106 and
423# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54402
36975e8e
L
424CFLAGS-test-tgmath2.c += -fno-builtin
425CFLAGS-test-tgmath-ret.c += -fno-builtin
426CFLAGS-test-powl.c += -fno-builtin
427
428CFLAGS-test-snan.c += -fsignaling-nans
429
430CFLAGS-test-signgam-finite.c += -ffinite-math-only
431CFLAGS-test-signgam-finite-c99.c += -ffinite-math-only -std=c99
432CFLAGS-test-signgam-finite-c11.c += -ffinite-math-only -std=c11
433CFLAGS-test-signgam-uchar.c += -std=c99
434CFLAGS-test-signgam-uchar-init.c += -std=c99
435CFLAGS-test-signgam-uchar-static.c += -std=c99
436CFLAGS-test-signgam-uchar-init-static.c += -std=c99
437CFLAGS-test-signgam-uint.c += -std=c99
438CFLAGS-test-signgam-uint-init.c += -std=c99
439CFLAGS-test-signgam-uint-static.c += -std=c99
440CFLAGS-test-signgam-uint-init-static.c += -std=c99
441CFLAGS-test-signgam-ullong.c += -std=c99
442CFLAGS-test-signgam-ullong-init.c += -std=c99
443CFLAGS-test-signgam-ullong-static.c += -std=c99
444CFLAGS-test-signgam-ullong-init-static.c += -std=c99
445
446CFLAGS-test-math-cxx11.cc += -std=c++11
447
448CFLAGS-test-math-isinff.cc += -std=gnu++11
449CFLAGS-test-math-iszero.cc += -std=gnu++11
450CFLAGS-test-math-issignaling.cc += -std=gnu++11
451CFLAGS-test-math-iscanonical.cc += -std=gnu++11
452
453CFLAGS-test-iszero-excess-precision.c += -fexcess-precision=standard
454CFLAGS-test-iseqsig-excess-precision.c += -fexcess-precision=standard
455CFLAGS-test-flt-eval-method.c += -fexcess-precision=standard
456
457CFLAGS-test-fe-snans-always-signal.c += -fsignaling-nans
458
459CFLAGS-test-finite-macros.c += -ffinite-math-only
7daada03 460
48b12ed5
JM
461CFLAGS-test-nan-const.c += -fno-builtin
462
28f540f4
RM
463include ../Rules
464
9f9834f5
PM
465gen-all-calls = $(gen-libm-calls) $(gen-calls)
466
467generated += $(addsuffix .c,$(call type-foreach,$(gen-all-calls))) \
ce6698ea
PM
468 gen-libm-templates.stmp
469
470# Create wrappers in the math build directory.
9f9834f5
PM
471$(objpfx)gen-libm-templates.stmp: Makefile
472 $(make-target-directory)
473 for gcall in $(gen-all-calls); do \
ce6698ea
PM
474 func=$${gcall%F*}$${gcall#*F}; \
475 for type in $(foreach t,$(types),$(t)__$(type-$(t)-suffix)); do \
476 suff=$${type#*__}; \
477 type=$${type%__*}; \
478 file=$(objpfx)$${gcall%F*}$${suff}$${gcall#*F}.c; \
479 ( \
480 echo "#include <math-type-macros-$${type}.h>"; \
481 echo "#include <$${func}_template.c>"; \
482 ) > $${file}; \
483 done; \
484 done; \
485 echo > $(@)
486
487# Add dependency to ensure the generator runs prior.
9f9834f5 488$(foreach t, $(call type-foreach, $(gen-all-calls)), \
ce6698ea
PM
489 $(objpfx)$(t).c): $(objpfx)gen-libm-templates.stmp
490
b2faf4ea 491# This must come after the inclusion of sysdeps Makefiles via Rules.
b2faf4ea 492
92061bb0
JM
493$(foreach t,$(libm-tests-normal),$(objpfx)$(t).c): $(objpfx)test-%.c:
494 type_func=$*; \
495 type=$${type_func%%-*}; \
496 func=$${type_func#*-}; \
497 ( \
498 echo "#include <test-$$type.h>"; \
499 echo "#include <test-math-no-finite.h>"; \
500 echo "#include <test-math-no-inline.h>"; \
501 echo "#include <test-math-errno.h>"; \
502 echo "#include <test-math-scalar.h>"; \
503 echo "#include <libm-test-$$func.c>"; \
504 ) > $@
505
506$(foreach t,$(libm-tests-finite),$(objpfx)$(t).c): $(objpfx)test-%.c:
507 type_func=$*; \
508 type=$${type_func%%-*}; \
509 func=$${type_func#*-finite-}; \
510 ( \
511 echo "#include <test-$$type.h>"; \
512 echo "#include <test-math-finite.h>"; \
513 echo "#include <test-math-no-inline.h>"; \
514 echo "#include <test-math-scalar.h>"; \
515 echo "#include <libm-test-$$func.c>"; \
516 ) > $@
517
518$(foreach t,$(libm-tests-inline),$(objpfx)$(t).c): $(objpfx)test-i%.c:
519 type_func=$*; \
520 type=$${type_func%%-*}; \
521 func=$${type_func#*-}; \
522 ( \
523 echo "#include <test-$$type.h>"; \
524 echo "#include <test-math-inline.h>"; \
525 echo "#include <test-math-scalar.h>"; \
526 echo "#include <libm-test-$$func.c>"; \
527 ) > $@
528
8e554659
JM
529$(foreach t,$(libm-tests-narrow),$(objpfx)$(t).c): $(objpfx)test-%.c:
530 type_pair_func=$*; \
531 type_pair=$${type_pair_func%-*}; \
532 func=$${type_pair_func##*-}; \
533 ret_type=$${type_pair%%-*}; \
534 arg_type=$${type_pair#*-}; \
535 ( \
536 echo "#include <test-$$ret_type.h>"; \
537 echo "#include <test-arg-$$arg_type.h>"; \
538 echo "#include <test-math-no-finite.h>"; \
539 echo "#include <test-math-no-inline.h>"; \
540 echo "#include <test-math-errno.h>"; \
541 echo "#include <test-math-narrow.h>"; \
542 echo "#include <libm-test-narrow-$$func.c>"; \
543 ) > $@
544
92061bb0
JM
545$(foreach t,$(libm-tests-vector),$(objpfx)$(t).c): $(objpfx)test-%.c:
546 type_func=$*; \
547 type=$${type_func%-*}; \
548 func=$${type_func##*-}; \
549 func_args=$$(grep ALL_RM_TEST libm-test-$$func.inc \
550 | sed 's/.*RUN_TEST_LOOP_//;s/_.*//'); \
551 ( \
552 echo "#include <test-$$type.h>"; \
553 echo "WRAPPER_DECL_$$func_args (WRAPPER_NAME (FUNC ($$func)))"; \
554 echo "#include <libm-test-$$func.c>"; \
555 ) > $@
556
bc9620d0 557$(foreach t,$(test-types),\
92061bb0
JM
558 $(objpfx)libm-test-support-$(t).c): $(objpfx)libm-test-support-%.c:
559 ( \
560 echo "#include <test-$*.h>"; \
561 echo "#include <libm-test-support.c>"; \
562 ) > $@
563
564$(addprefix $(objpfx), $(libm-tests.o)): $(objpfx)libm-test-ulps.h
3b2f6032 565
92061bb0
JM
566define o-iterator-doit
567$(foreach f,$(libm-test-funcs-all),\
568 $(objpfx)$(o)-$(f).o): $(objpfx)$(o)%.o: $(objpfx)libm-test%.c
569endef
570object-suffixes-left := $(libm-tests-base)
571include $(o-iterator)
572
8e554659
JM
573define o-iterator-doit
574$(foreach f,$(libm-test-funcs-narrow),\
575 $(objpfx)$(o)-$(f).o): $(objpfx)$(o)%.o: \
576 $(objpfx)libm-test-narrow%.c
577endef
578object-suffixes-left := $(libm-tests-base-narrow)
579include $(o-iterator)
580
92061bb0
JM
581define o-iterator-doit
582$(foreach f,$(libm-test-funcs-all),\
583 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-no-inline-cflags)
584endef
585object-suffixes-left := $(libm-tests-base-normal)
586include $(o-iterator)
3b2f6032 587
92061bb0
JM
588define o-iterator-doit
589$(foreach f,$(libm-test-funcs-all),\
590 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-finite-cflags)
591endef
592object-suffixes-left := $(libm-tests-base-finite)
593include $(o-iterator)
594
595define o-iterator-doit
596$(foreach f,$(libm-test-funcs-all),\
597 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-inline-cflags)
598endef
599object-suffixes-left := $(libm-tests-base-inline)
600include $(o-iterator)
601
8e554659
JM
602define o-iterator-doit
603$(foreach f,$(libm-test-funcs-narrow),\
604 $(objpfx)$(o)-$(f).o): CFLAGS += $(libm-test-no-inline-cflags)
605endef
606object-suffixes-left := $(libm-tests-base-narrow)
607include $(o-iterator)
608
92061bb0
JM
609define o-iterator-doit
610$(foreach f,$($(o)-funcs),\
611 $(objpfx)test-$(o)-$(f).o): CFLAGS += $(libm-test-vec-cflags)
612endef
613object-suffixes-left := $(libmvec-tests)
614include $(o-iterator)
615
616define o-iterator-doit
3b2f6032 617$(addprefix $(objpfx),\
92061bb0
JM
618 $(call libm-tests-for-type,$(o))): $(objpfx)libm-test-support-$(o).o
619endef
bc9620d0 620object-suffixes-left := $(test-types)
92061bb0
JM
621include $(o-iterator)
622
623define o-iterator-doit
624$(objpfx)libm-test-support-$(o).o: CFLAGS += $(libm-test-no-inline-cflags)
625endef
bc9620d0 626object-suffixes-left := $(test-types)
92061bb0 627include $(o-iterator)
3b2f6032 628
26510bdd
CD
629# Run the math programs to automatically generate ULPs files.
630.PHONY: regen-ulps
631
632run-regen-ulps = $(test-wrapper-env) \
8540f6d2 633 $(run-program-env) \
b9256ab6 634 $($*-ENV) $(rtld-prefix) $(objpfx)$${run}
26510bdd
CD
635
636regen-ulps: $(addprefix $(objpfx),$(libm-tests))
637 rm -f $(objpfx)ULPs; rm -f $(objpfx)NewUlps; \
638 cp $(ulps-file) $(objpfx)libm-test-ulps; \
b9256ab6 639 for run in $(libm-tests); do \
26510bdd
CD
640 echo "Regenerating ULPs for $${run}"; \
641 $(run-regen-ulps) -u -o $(objpfx); \
642 cat $(objpfx)ULPs >> $(objpfx)libm-test-ulps; \
643 rm $(objpfx)ULPs; \
644 done; \
2813e41e
JM
645 $(PYTHON) gen-libm-test.py -n $(objpfx)NewUlps \
646 -u $(objpfx)libm-test-ulps; \
26510bdd
CD
647 echo "Automatic regeneration of ULPs complete."; \
648 echo "Difference between the current baseline and the new baseline is:";\
649 diff -urN $(ulps-file) $(objpfx)NewUlps; \
650 echo "Copy $(objpfx)NewUlps to $(ulps-file) (relative to source)."
f7eac6eb 651
2f663a98
RM
652# The generated sysd-rules file defines rules like this for sources
653# coming from sysdeps/ directories. These rules find the generic sources.
654define o-iterator-doit
655$(objpfx)m_%$o: s_%.c $(before-compile); $$(compile-command.c)
656endef
657object-suffixes-left := $(all-object-suffixes)
658include $(o-iterator)
659
9f9834f5
PM
660# Likewise, for those generated files shared with libc.
661define o-iterator-doit
662$(objpfx)m_%$o: $(objpfx)s_%.c $(before-compile); $$(compile-command.c)
663endef
664object-suffixes-left := $(all-object-suffixes)
665include $(o-iterator)
2f663a98 666
a641835a
RM
667# We don't want the fdlibm code to use the inline math functions,
668# only the fdlibm code.
4b9afc43 669math-CPPFLAGS += -D__NO_MATH_INLINES -D__LIBC_INTERNAL_MATH_INLINES
a641835a 670
58e07151
RM
671ifneq ($(long-double-fcts),yes)
672# The `double' and `long double' types are the same on this machine.
673# We won't compile the `long double' code at all. Tell the `double' code
eda162dd
JM
674# to define aliases for the `FUNCl' names.
675math-CPPFLAGS += -DNO_LONG_DOUBLE
58e07151
RM
676endif
677
a6a4395d
JM
678# These files quiet sNaNs in a way that is optimized away without
679# -fsignaling-nans.
680CFLAGS-s_modf.c += -fsignaling-nans
681CFLAGS-s_modff.c += -fsignaling-nans
682CFLAGS-s_modfl.c += -fsignaling-nans
26265c3b 683CFLAGS-s_modff128.c += -fsignaling-nans
a6a4395d 684
b4bcb3ae 685$(addprefix $(objpfx),\
92061bb0 686 $(filter-out $(tests-static) $(libm-tests-vector),\
813378e9 687 $(tests) $(tests-internal))): $(libm)
95e7cf29 688$(addprefix $(objpfx),$(tests-static)): $(objpfx)libm.a
92061bb0
JM
689define o-iterator-doit
690$(foreach f,$($(o)-funcs),\
691 $(objpfx)test-$(o)-$(f)): $(objpfx)test-$(o)-wrappers.o \
692 $(libm) $(libmvec)
693endef
694object-suffixes-left := $(libmvec-tests)
695include $(o-iterator)
9498096c 696
79520f4b 697$(objpfx)test-fenv-tls: $(shared-thread-library)
This page took 0.678915 seconds and 5 git commands to generate.