Andrew Turner b2e843161d Use a builtin where possible in msun
Some of the functions in msun can be implemented using a compiler
builtin function to generate a small number of instructions. Implement
this support in fma, fmax, fmin, and sqrt on arm64.

Care must be taken as the builtin can be implemented as a function
call on some architectures that lack direct support. In these cases
we need to use the original code path.

As we don't set errno on failure build with -fno-math-errno so the
toolchain doesn't convert a builtin into a function call when it
detects a failure, e.g. gcc will add a call to sqrt when the input
is negative leading to an infinite loop.

Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D32801
2021-11-19 11:40:46 +00:00
..
2021-11-05 13:51:42 +02:00
2021-11-05 13:51:42 +02:00
2021-11-05 13:51:42 +02:00
2021-05-29 21:53:35 -05:00
2021-11-19 11:40:46 +00:00
2021-11-19 11:40:46 +00:00
2019-12-11 17:37:53 +00:00
2021-11-05 13:51:42 +02:00