shithub: mc

ref: d489185e0bf6b3ef4aa394938810c5c1483841a5
dir: /lib/math/bld.sub/

View raw version
lib math =
	fpmath.myr

	# exp
	exp-impl.myr

	# rounding (to actual integers)
	round-impl+posixy-x64-sse4.s
	round-impl.myr

	# fused-multiply-add
	fma-impl+posixy-x64-fma.s
	fma-impl.myr

	# polynomial evaluation methods
	poly-impl.myr

	# scalb (multiply x by 2^m)
	scale2-impl.myr

	# sqrt
	sqrt-impl+posixy-x64-sse2.s
	sqrt-impl.myr

	# summation
	sum-impl.myr

	# trunc, floor, ceil
	trunc-impl+posixy-x64-sse4.s
	trunc-impl.myr

	# util
	util.myr
	ftrap.myr
	ftrap-impl+plan9-x64.s
	ftrap-impl+posixy-x64.s

	lib ../std:std
;;

testdeps =
	math
	../testr:testr
	../sys:sys
	../std:std
;;