blob: 67fde0f231cba8396fb2956062351d9005077970 [file] [log] [blame]
Elliott Hughesf9f4a432015-08-24 22:57:08 +00001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <math.h>
18
19#include "fpmath.h"
20
21double fabs(double x) {
22#if __arm__
23 // Both Clang and GCC insist on moving r0/r1 into a double register
24 // and using fabs where bit-twiddling would be a better choice.
25 // They get fabsf right, but we need to be careful in fabsl too.
26 IEEEd2bits u;
27 u.d = x;
28 u.bits.sign = 0;
29 return u.d;
30#else
31 return __builtin_fabs(x);
32#endif
33}
34
35float fabsf(float x) {
36 return __builtin_fabsf(x);
37}
38
39#if defined(__LP64__)
40long double fabsl(long double x) { return __builtin_fabsl(x); }
41#else
42long double fabsl(long double x) {
43 // Don't use __builtin_fabs here because of ARM. (See fabs above.)
44 return fabs(x);
45}
46#endif
Elliott Hughes9a1bb702017-11-09 22:40:11 +000047
48#if defined(__aarch64__)
Jake Weinstein1e108e32017-12-11 02:50:04 -050049float ceilf(float x) { return __builtin_ceilf(x); }
50double ceil(double x) { return __builtin_ceil(x); }
51
Elliott Hughes46f24a12022-10-26 21:55:34 +000052double copysign(double x, double y) { return __builtin_copysign(x, y); }
53float copysignf(float x, float y) { return __builtin_copysignf(x, y); }
54
Jake Weinstein1e108e32017-12-11 02:50:04 -050055float floorf(float x) { return __builtin_floorf(x); }
56double floor(double x) { return __builtin_floor(x); }
57
Elliott Hughes9a1bb702017-11-09 22:40:11 +000058float fmaf(float x, float y, float z) { return __builtin_fmaf(x, y, z); }
59double fma(double x, double y, double z) { return __builtin_fma(x, y, z); }
60
61float fmaxf(float x, float y) { return __builtin_fmaxf(x, y); }
62double fmax(double x, double y) { return __builtin_fmax(x, y); }
63
64float fminf(float x, float y) { return __builtin_fminf(x, y); }
65double fmin(double x, double y) { return __builtin_fmin(x, y); }
66
Jake Weinstein1e108e32017-12-11 02:50:04 -050067float rintf(float x) { return __builtin_rintf(x); }
68double rint(double x) { return __builtin_rint(x); }
69
Elliott Hughes9a1bb702017-11-09 22:40:11 +000070float roundf(float x) { return __builtin_roundf(x); }
71double round(double x) { return __builtin_round(x); }
Jake Weinstein1e108e32017-12-11 02:50:04 -050072
73float truncf(float x) { return __builtin_truncf(x); }
74double trunc(double x) { return __builtin_trunc(x); }
Elliott Hughes9a1bb702017-11-09 22:40:11 +000075#endif