devctl.h: update for POSIX-1.2024
[newlib-cygwin.git] / newlib / libm / machine / amdgcn / v64sf_acosh.c
blob99b3939eff07f9564eeacea22197203d06f66f8d
1 /*
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
12 * they apply.
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
22 * is preserved.
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);
42 v64si hx;
43 GET_FLOAT_WORD (hx, x, NO_COND);
45 VECTOR_IF (hx < 0x3f800000, cond) // x < 1 */
46 VECTOR_RETURN ((x-x) / (x-x), cond);
47 VECTOR_ENDIF
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);
51 VECTOR_ELSE (cond2)
52 /* acosh(huge)=log(2x) */
53 VECTOR_RETURN (v64sf_logf_aux (x, __mask) + ln2, cond2);
54 VECTOR_ENDIF
55 VECTOR_ENDIF
56 VECTOR_IF (hx == 0x3f800000, cond)
57 /* acosh(1) = 0 */
58 VECTOR_RETURN (VECTOR_INIT (0.0f), cond);
59 VECTOR_ENDIF
60 VECTOR_IF (hx > 0x40000000, cond) /* 2**28 > x > 2 */
62 v64sf t = x * x;
63 VECTOR_RETURN (v64sf_logf_aux (2.0f*x - 1.0f /
64 (x + v64sf_sqrtf_aux (t - 1.0f, __mask)),
65 __mask),
66 cond);
68 VECTOR_ELSE (cond) /* 1<x<2 */
70 v64sf t = x - 1.0f;
71 VECTOR_RETURN (v64sf_log1pf_aux (t + v64sf_sqrtf_aux(2.0*t + t*t, __mask),
72 __mask),
73 cond);
75 VECTOR_ENDIF
77 FUNCTION_RETURN;
80 DEF_VARIANTS (acoshf, sf, sf)