Path: blob/main/contrib/arm-optimized-routines/math/aarch64/advsimd/asin.c
48378 views
/*1* Double-precision vector asin(x) function.2*3* Copyright (c) 2023-2024, Arm Limited.4* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception5*/67#include "v_math.h"8#include "test_sig.h"9#include "test_defs.h"1011static const struct data12{13float64x2_t c0, c2, c4, c6, c8, c10;14float64x2_t pi_over_2;15uint64x2_t abs_mask;16double c1, c3, c5, c7, c9, c11;17} data = {18/* Polynomial approximation of (asin(sqrt(x)) - sqrt(x)) / (x * sqrt(x))19on [ 0x1p-106, 0x1p-2 ], relative error: 0x1.c3d8e169p-57. */20.c0 = V2 (0x1.555555555554ep-3), .c1 = 0x1.3333333337233p-4,21.c2 = V2 (0x1.6db6db67f6d9fp-5), .c3 = 0x1.f1c71fbd29fbbp-6,22.c4 = V2 (0x1.6e8b264d467d6p-6), .c5 = 0x1.1c5997c357e9dp-6,23.c6 = V2 (0x1.c86a22cd9389dp-7), .c7 = 0x1.856073c22ebbep-7,24.c8 = V2 (0x1.fd1151acb6bedp-8), .c9 = 0x1.087182f799c1dp-6,25.c10 = V2 (-0x1.6602748120927p-7), .c11 = 0x1.cfa0dd1f9478p-6,26.pi_over_2 = V2 (0x1.921fb54442d18p+0), .abs_mask = V2 (0x7fffffffffffffff),27};2829#define AllMask v_u64 (0xffffffffffffffff)30#define One 0x3ff000000000000031#define Small 0x3e50000000000000 /* 2^-12. */3233#if WANT_SIMD_EXCEPT34static float64x2_t VPCS_ATTR NOINLINE35special_case (float64x2_t x, float64x2_t y, uint64x2_t special)36{37return v_call_f64 (asin, x, y, special);38}39#endif4041/* Double-precision implementation of vector asin(x).4243For |x| < Small, approximate asin(x) by x. Small = 2^-12 for correct44rounding. If WANT_SIMD_EXCEPT = 0, Small = 0 and we proceed with the45following approximation.4647For |x| in [Small, 0.5], use an order 11 polynomial P such that the final48approximation is an odd polynomial: asin(x) ~ x + x^3 P(x^2).4950The largest observed error in this region is 1.01 ulps,51_ZGVnN2v_asin (0x1.da9735b5a9277p-2) got 0x1.ed78525a927efp-252want 0x1.ed78525a927eep-2.5354For |x| in [0.5, 1.0], use same approximation with a change of variable5556asin(x) = pi/2 - (y + y * z * P(z)), with z = (1-x)/2 and y = sqrt(z).5758The largest observed error in this region is 2.69 ulps,59_ZGVnN2v_asin (0x1.044e8cefee301p-1) got 0x1.1111dd54ddf96p-160want 0x1.1111dd54ddf99p-1. */61float64x2_t VPCS_ATTR V_NAME_D1 (asin) (float64x2_t x)62{63const struct data *d = ptr_barrier (&data);64float64x2_t ax = vabsq_f64 (x);6566#if WANT_SIMD_EXCEPT67/* Special values need to be computed with scalar fallbacks so68that appropriate exceptions are raised. */69uint64x2_t special70= vcgtq_u64 (vsubq_u64 (vreinterpretq_u64_f64 (ax), v_u64 (Small)),71v_u64 (One - Small));72if (unlikely (v_any_u64 (special)))73return special_case (x, x, AllMask);74#endif7576uint64x2_t a_lt_half = vcaltq_f64 (x, v_f64 (0.5));7778/* Evaluate polynomial Q(x) = y + y * z * P(z) with79z = x ^ 2 and y = |x| , if |x| < 0.580z = (1 - |x|) / 2 and y = sqrt(z), if |x| >= 0.5. */81float64x2_t z2 = vbslq_f64 (a_lt_half, vmulq_f64 (x, x),82vfmsq_n_f64 (v_f64 (0.5), ax, 0.5));83float64x2_t z = vbslq_f64 (a_lt_half, ax, vsqrtq_f64 (z2));8485/* Use a single polynomial approximation P for both intervals. */86float64x2_t z4 = vmulq_f64 (z2, z2);87float64x2_t z8 = vmulq_f64 (z4, z4);88float64x2_t z16 = vmulq_f64 (z8, z8);8990/* order-11 estrin. */91float64x2_t c13 = vld1q_f64 (&d->c1);92float64x2_t c57 = vld1q_f64 (&d->c5);93float64x2_t c911 = vld1q_f64 (&d->c9);9495float64x2_t p01 = vfmaq_laneq_f64 (d->c0, z2, c13, 0);96float64x2_t p23 = vfmaq_laneq_f64 (d->c2, z2, c13, 1);97float64x2_t p03 = vfmaq_f64 (p01, z4, p23);9899float64x2_t p45 = vfmaq_laneq_f64 (d->c4, z2, c57, 0);100float64x2_t p67 = vfmaq_laneq_f64 (d->c6, z2, c57, 1);101float64x2_t p47 = vfmaq_f64 (p45, z4, p67);102103float64x2_t p89 = vfmaq_laneq_f64 (d->c8, z2, c911, 0);104float64x2_t p1011 = vfmaq_laneq_f64 (d->c10, z2, c911, 1);105float64x2_t p811 = vfmaq_f64 (p89, z4, p1011);106107float64x2_t p07 = vfmaq_f64 (p03, z8, p47);108float64x2_t p = vfmaq_f64 (p07, z16, p811);109110/* Finalize polynomial: z + z * z2 * P(z2). */111p = vfmaq_f64 (z, vmulq_f64 (z, z2), p);112113/* asin(|x|) = Q(|x|) , for |x| < 0.5114= pi/2 - 2 Q(|x|), for |x| >= 0.5. */115float64x2_t y = vbslq_f64 (a_lt_half, p, vfmsq_n_f64 (d->pi_over_2, p, 2.0));116117/* Copy sign. */118return vbslq_f64 (d->abs_mask, y, x);119}120121TEST_SIG (V, D, 1, asin, -1.0, 1.0)122TEST_ULP (V_NAME_D1 (asin), 2.20)123TEST_DISABLE_FENV_IF_NOT (V_NAME_D1 (asin), WANT_SIMD_EXCEPT)124TEST_INTERVAL (V_NAME_D1 (asin), 0, Small, 5000)125TEST_INTERVAL (V_NAME_D1 (asin), Small, 0.5, 50000)126TEST_INTERVAL (V_NAME_D1 (asin), 0.5, 1.0, 50000)127TEST_INTERVAL (V_NAME_D1 (asin), 1.0, 0x1p11, 50000)128TEST_INTERVAL (V_NAME_D1 (asin), 0x1p11, inf, 20000)129TEST_INTERVAL (V_NAME_D1 (asin), -0, -inf, 20000)130131132