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