mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
Use libm_alias_float for aarch64.
Continuing the preparation for additional _FloatN / _FloatNx function aliases, this patch makes aarch64 libm function implementations use libm_alias_float to define function aliases. Tested with build-many-glibcs.py for aarch64-linux-gnu that installed stripped shared libraries are unchanged by the patch. * sysdeps/aarch64/fpu/s_ceilf.c: Include <libm-alias-float.h>. (ceilf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_floorf.c: Include <libm-alias-float.h>. (floorf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fmaf.c: Include <libm-alias-float.h>. (fmaf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fmaxf.c: Include <libm-alias-float.h>. (fmaxf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fminf.c: Include <libm-alias-float.h>. (fminf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_llrintf.c: Include <libm-alias-float.h>. (llrintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_llroundf.c: Include <libm-alias-float.h>. (llroundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_lrintf.c: Include <libm-alias-float.h>. (lrintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_lroundf.c: Include <libm-alias-float.h>. (lroundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_nearbyintf.c: Include <libm-alias-float.h>. (nearbyintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_rintf.c: Include <libm-alias-float.h>. (rintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_roundf.c: Include <libm-alias-float.h>. (roundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_truncf.c: Include <libm-alias-float.h>. (truncf): Define using libm_alias_float.
This commit is contained in:
parent
5de606387b
commit
15ff490014
28
ChangeLog
28
ChangeLog
@ -1,5 +1,33 @@
|
||||
2017-11-28 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/aarch64/fpu/s_ceilf.c: Include <libm-alias-float.h>.
|
||||
(ceilf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_floorf.c: Include <libm-alias-float.h>.
|
||||
(floorf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_fmaf.c: Include <libm-alias-float.h>.
|
||||
(fmaf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_fmaxf.c: Include <libm-alias-float.h>.
|
||||
(fmaxf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_fminf.c: Include <libm-alias-float.h>.
|
||||
(fminf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_llrintf.c: Include <libm-alias-float.h>.
|
||||
(llrintf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_llroundf.c: Include <libm-alias-float.h>.
|
||||
(llroundf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_lrintf.c: Include <libm-alias-float.h>.
|
||||
(lrintf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_lroundf.c: Include <libm-alias-float.h>.
|
||||
(lroundf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_nearbyintf.c: Include
|
||||
<libm-alias-float.h>.
|
||||
(nearbyintf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_rintf.c: Include <libm-alias-float.h>.
|
||||
(rintf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_roundf.c: Include <libm-alias-float.h>.
|
||||
(roundf): Define using libm_alias_float.
|
||||
* sysdeps/aarch64/fpu/s_truncf.c: Include <libm-alias-float.h>.
|
||||
(truncf): Define using libm_alias_float.
|
||||
|
||||
* sysdeps/alpha/fpu/s_ceil.c: Include <libm-alias-double.h>.
|
||||
(ceil): Define using libm_alias_double.
|
||||
* sysdeps/alpha/fpu/s_copysign.c: Include <libm-alias-double.h>.
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__ceilf (float x)
|
||||
@ -24,4 +25,4 @@ __ceilf (float x)
|
||||
return __builtin_ceilf (x);
|
||||
}
|
||||
|
||||
weak_alias (__ceilf, ceilf)
|
||||
libm_alias_float (__ceil, ceil)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__floorf (float x)
|
||||
@ -24,4 +25,4 @@ __floorf (float x)
|
||||
return __builtin_floorf (x);
|
||||
}
|
||||
|
||||
weak_alias (__floorf, floorf)
|
||||
libm_alias_float (__floor, floor)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__fmaf (float x, float y, float z)
|
||||
@ -24,4 +25,4 @@ __fmaf (float x, float y, float z)
|
||||
return __builtin_fmaf (x, y, z);
|
||||
}
|
||||
|
||||
weak_alias (__fmaf, fmaf)
|
||||
libm_alias_float (__fma, fma)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__fmaxf (float x, float y)
|
||||
@ -24,4 +25,4 @@ __fmaxf (float x, float y)
|
||||
return __builtin_fmaxf (x, y);
|
||||
}
|
||||
|
||||
weak_alias (__fmaxf, fmaxf)
|
||||
libm_alias_float (__fmax, fmax)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__fminf (float x, float y)
|
||||
@ -24,4 +25,4 @@ __fminf (float x, float y)
|
||||
return __builtin_fminf (x, y);
|
||||
}
|
||||
|
||||
weak_alias (__fminf, fminf)
|
||||
libm_alias_float (__fmin, fmin)
|
||||
|
@ -18,6 +18,7 @@
|
||||
|
||||
#include <math.h>
|
||||
#include <math_private.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
long long int
|
||||
__llrintf (float x)
|
||||
@ -32,4 +33,4 @@ __llrintf (float x)
|
||||
return r;
|
||||
}
|
||||
|
||||
weak_alias (__llrintf, llrintf)
|
||||
libm_alias_float (__llrint, llrint)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
long long int
|
||||
__llroundf (float x)
|
||||
@ -24,4 +25,4 @@ __llroundf (float x)
|
||||
return __builtin_llroundf (x);
|
||||
}
|
||||
|
||||
weak_alias (__llroundf, llroundf)
|
||||
libm_alias_float (__llround, llround)
|
||||
|
@ -18,6 +18,7 @@
|
||||
|
||||
#include <math.h>
|
||||
#include <math_private.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
long int
|
||||
__lrintf (float x)
|
||||
@ -31,4 +32,4 @@ __lrintf (float x)
|
||||
return r;
|
||||
}
|
||||
|
||||
weak_alias (__lrintf, lrintf)
|
||||
libm_alias_float (__lrint, lrint)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
long int
|
||||
__lroundf (float x)
|
||||
@ -24,4 +25,4 @@ __lroundf (float x)
|
||||
return __builtin_lroundf (x);
|
||||
}
|
||||
|
||||
weak_alias (__lroundf, lroundf)
|
||||
libm_alias_float (__lround, lround)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__nearbyintf (float x)
|
||||
@ -24,4 +25,4 @@ __nearbyintf (float x)
|
||||
return __builtin_nearbyintf (x);
|
||||
}
|
||||
|
||||
weak_alias (__nearbyintf, nearbyintf)
|
||||
libm_alias_float (__nearbyint, nearbyint)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__rintf (float x)
|
||||
@ -24,4 +25,4 @@ __rintf (float x)
|
||||
return __builtin_rintf (x);
|
||||
}
|
||||
|
||||
weak_alias (__rintf, rintf)
|
||||
libm_alias_float (__rint, rint)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__roundf (float x)
|
||||
@ -24,4 +25,4 @@ __roundf (float x)
|
||||
return __builtin_roundf (x);
|
||||
}
|
||||
|
||||
weak_alias (__roundf, roundf)
|
||||
libm_alias_float (__round, round)
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <math.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
float
|
||||
__truncf (float x)
|
||||
@ -24,4 +25,4 @@ __truncf (float x)
|
||||
return __builtin_truncf (x);
|
||||
}
|
||||
|
||||
weak_alias (__truncf, truncf)
|
||||
libm_alias_float (__trunc, trunc)
|
||||
|
Loading…
Reference in New Issue
Block a user