From patchwork Tue Nov 28 00:56:23 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 24567 Received: (qmail 34944 invoked by alias); 28 Nov 2017 00:56:33 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 34935 invoked by uid 89); 28 Nov 2017 00:56:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Tue, 28 Nov 2017 00:56:23 +0000 From: Joseph Myers To: Subject: Use libm_alias_float for aarch64 [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) 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. Committed. 2017-11-28 Joseph Myers * sysdeps/aarch64/fpu/s_ceilf.c: Include . (ceilf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_floorf.c: Include . (floorf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fmaf.c: Include . (fmaf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fmaxf.c: Include . (fmaxf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_fminf.c: Include . (fminf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_llrintf.c: Include . (llrintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_llroundf.c: Include . (llroundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_lrintf.c: Include . (lrintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_lroundf.c: Include . (lroundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_nearbyintf.c: Include . (nearbyintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_rintf.c: Include . (rintf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_roundf.c: Include . (roundf): Define using libm_alias_float. * sysdeps/aarch64/fpu/s_truncf.c: Include . (truncf): Define using libm_alias_float. diff --git a/sysdeps/aarch64/fpu/s_ceilf.c b/sysdeps/aarch64/fpu/s_ceilf.c index d5c4383..304af6b 100644 --- a/sysdeps/aarch64/fpu/s_ceilf.c +++ b/sysdeps/aarch64/fpu/s_ceilf.c @@ -17,6 +17,7 @@ . */ #include +#include float __ceilf (float x) @@ -24,4 +25,4 @@ __ceilf (float x) return __builtin_ceilf (x); } -weak_alias (__ceilf, ceilf) +libm_alias_float (__ceil, ceil) diff --git a/sysdeps/aarch64/fpu/s_floorf.c b/sysdeps/aarch64/fpu/s_floorf.c index fa6fa17..1391c04 100644 --- a/sysdeps/aarch64/fpu/s_floorf.c +++ b/sysdeps/aarch64/fpu/s_floorf.c @@ -17,6 +17,7 @@ . */ #include +#include float __floorf (float x) @@ -24,4 +25,4 @@ __floorf (float x) return __builtin_floorf (x); } -weak_alias (__floorf, floorf) +libm_alias_float (__floor, floor) diff --git a/sysdeps/aarch64/fpu/s_fmaf.c b/sysdeps/aarch64/fpu/s_fmaf.c index ff1abbf..bd39e04 100644 --- a/sysdeps/aarch64/fpu/s_fmaf.c +++ b/sysdeps/aarch64/fpu/s_fmaf.c @@ -17,6 +17,7 @@ . */ #include +#include 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) diff --git a/sysdeps/aarch64/fpu/s_fmaxf.c b/sysdeps/aarch64/fpu/s_fmaxf.c index ec4dcdd..56a1a48d 100644 --- a/sysdeps/aarch64/fpu/s_fmaxf.c +++ b/sysdeps/aarch64/fpu/s_fmaxf.c @@ -17,6 +17,7 @@ . */ #include +#include 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) diff --git a/sysdeps/aarch64/fpu/s_fminf.c b/sysdeps/aarch64/fpu/s_fminf.c index 7d3a3a3..e7fba2d 100644 --- a/sysdeps/aarch64/fpu/s_fminf.c +++ b/sysdeps/aarch64/fpu/s_fminf.c @@ -17,6 +17,7 @@ . */ #include +#include 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) diff --git a/sysdeps/aarch64/fpu/s_llrintf.c b/sysdeps/aarch64/fpu/s_llrintf.c index dac73f2..94c0635 100644 --- a/sysdeps/aarch64/fpu/s_llrintf.c +++ b/sysdeps/aarch64/fpu/s_llrintf.c @@ -18,6 +18,7 @@ #include #include +#include long long int __llrintf (float x) @@ -32,4 +33,4 @@ __llrintf (float x) return r; } -weak_alias (__llrintf, llrintf) +libm_alias_float (__llrint, llrint) diff --git a/sysdeps/aarch64/fpu/s_llroundf.c b/sysdeps/aarch64/fpu/s_llroundf.c index 0ca390b..e45b3f9 100644 --- a/sysdeps/aarch64/fpu/s_llroundf.c +++ b/sysdeps/aarch64/fpu/s_llroundf.c @@ -17,6 +17,7 @@ . */ #include +#include 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) diff --git a/sysdeps/aarch64/fpu/s_lrintf.c b/sysdeps/aarch64/fpu/s_lrintf.c index 5b6a426..3ce7c91 100644 --- a/sysdeps/aarch64/fpu/s_lrintf.c +++ b/sysdeps/aarch64/fpu/s_lrintf.c @@ -18,6 +18,7 @@ #include #include +#include long int __lrintf (float x) @@ -31,4 +32,4 @@ __lrintf (float x) return r; } -weak_alias (__lrintf, lrintf) +libm_alias_float (__lrint, lrint) diff --git a/sysdeps/aarch64/fpu/s_lroundf.c b/sysdeps/aarch64/fpu/s_lroundf.c index baf0693..fbf0202 100644 --- a/sysdeps/aarch64/fpu/s_lroundf.c +++ b/sysdeps/aarch64/fpu/s_lroundf.c @@ -17,6 +17,7 @@ . */ #include +#include 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) diff --git a/sysdeps/aarch64/fpu/s_nearbyintf.c b/sysdeps/aarch64/fpu/s_nearbyintf.c index de69fd9..b373e37 100644 --- a/sysdeps/aarch64/fpu/s_nearbyintf.c +++ b/sysdeps/aarch64/fpu/s_nearbyintf.c @@ -17,6 +17,7 @@ . */ #include +#include float __nearbyintf (float x) @@ -24,4 +25,4 @@ __nearbyintf (float x) return __builtin_nearbyintf (x); } -weak_alias (__nearbyintf, nearbyintf) +libm_alias_float (__nearbyint, nearbyint) diff --git a/sysdeps/aarch64/fpu/s_rintf.c b/sysdeps/aarch64/fpu/s_rintf.c index d0f70ce..ee49615 100644 --- a/sysdeps/aarch64/fpu/s_rintf.c +++ b/sysdeps/aarch64/fpu/s_rintf.c @@ -17,6 +17,7 @@ . */ #include +#include float __rintf (float x) @@ -24,4 +25,4 @@ __rintf (float x) return __builtin_rintf (x); } -weak_alias (__rintf, rintf) +libm_alias_float (__rint, rint) diff --git a/sysdeps/aarch64/fpu/s_roundf.c b/sysdeps/aarch64/fpu/s_roundf.c index 66c8ee6..34bed49 100644 --- a/sysdeps/aarch64/fpu/s_roundf.c +++ b/sysdeps/aarch64/fpu/s_roundf.c @@ -17,6 +17,7 @@ . */ #include +#include float __roundf (float x) @@ -24,4 +25,4 @@ __roundf (float x) return __builtin_roundf (x); } -weak_alias (__roundf, roundf) +libm_alias_float (__round, round) diff --git a/sysdeps/aarch64/fpu/s_truncf.c b/sysdeps/aarch64/fpu/s_truncf.c index b7890a2..381c3e8 100644 --- a/sysdeps/aarch64/fpu/s_truncf.c +++ b/sysdeps/aarch64/fpu/s_truncf.c @@ -17,6 +17,7 @@ . */ #include +#include float __truncf (float x) @@ -24,4 +25,4 @@ __truncf (float x) return __builtin_truncf (x); } -weak_alias (__truncf, truncf) +libm_alias_float (__trunc, trunc)