2 * Copyright 2023 Siemens
4 * The authors hereby grant permission to use, copy, modify, distribute,
5 * and license this software and its documentation for any purpose, provided
6 * that existing copyright notices are retained in all copies and that this
7 * notice is included verbatim in any distributions. No written agreement,
8 * license, or royalty fee is required for any of the authorized uses.
9 * Modifications to this software may be copyrighted by their authors
10 * and need not follow the licensing terms described here, provided that
11 * the new terms are clearly indicated on the first page of each file where
16 * ====================================================
17 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
19 * Developed at SunPro, a Sun Microsystems, Inc. business.
20 * Permission to use, copy, modify, and distribute this
21 * software is freely granted, provided that this notice
23 * ====================================================
27 /* Based on newlib/libm/mathfp/ef_acosh.c in Newlib. */
29 #include "amdgcnmach.h"
31 v64sf
v64sf_logf_aux (v64sf
, v64si
);
32 v64sf
v64sf_log1pf_aux (v64sf
, v64si
);
33 v64sf
v64sf_sqrtf_aux (v64sf
, v64si
);
35 DEF_VS_MATH_FUNC (v64sf
, acoshf
, v64sf x
)
37 static const float one
= 1.0;
38 static const float ln2
= 6.9314718246e-01; /* 0x3f317218 */
40 FUNCTION_INIT (v64sf
);
43 GET_FLOAT_WORD (hx
, x
, NO_COND
);
45 VECTOR_IF (hx
< 0x3f800000, cond
) // x < 1 */
46 VECTOR_RETURN ((x
-x
) / (x
-x
), cond
);
48 VECTOR_IF (hx
>=0x4d800000, cond
) // x > 2**28 */
49 VECTOR_IF2 (hx
>=0x7f800000, cond2
, cond
) // x is inf of NaN */
50 VECTOR_RETURN (x
+x
, cond2
);
52 /* acosh(huge)=log(2x) */
53 VECTOR_RETURN (v64sf_logf_aux (x
, __mask
) + ln2
, cond2
);
56 VECTOR_IF (hx
== 0x3f800000, cond
)
58 VECTOR_RETURN (VECTOR_INIT (0.0f
), cond
);
60 VECTOR_IF (hx
> 0x40000000, cond
) /* 2**28 > x > 2 */
63 VECTOR_RETURN (v64sf_logf_aux (2.0f
*x
- 1.0f
/
64 (x
+ v64sf_sqrtf_aux (t
- 1.0f
, __mask
)),
68 VECTOR_ELSE (cond
) /* 1<x<2 */
71 VECTOR_RETURN (v64sf_log1pf_aux (t
+ v64sf_sqrtf_aux(2.0*t
+ t
*t
, __mask
),
80 DEF_VARIANTS (acoshf
, sf
, sf
)