93 lines
3.1 KiB
C
93 lines
3.1 KiB
C
/* asinf4 - Computes the inverse sine of all four slots of x
|
|
Copyright (C) 2006, 2007 Sony Computer Entertainment Inc.
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms,
|
|
with or without modification, are permitted provided that the
|
|
following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* Neither the name of the Sony Computer Entertainment Inc nor the names
|
|
of its contributors may be used to endorse or promote products derived
|
|
from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef ___SIMD_MATH_ASINF4_H___
|
|
#define ___SIMD_MATH_ASINF4_H___
|
|
|
|
#include <simdmath.h>
|
|
#include <spu_intrinsics.h>
|
|
|
|
#include <simdmath/sqrtf4.h>
|
|
#include <simdmath/divf4.h>
|
|
|
|
static inline vector float
|
|
_asinf4 (vector float x)
|
|
{
|
|
// positive = (x > 0)
|
|
//
|
|
vec_uint4 positive = spu_cmpgt(x,spu_splats(0.0f));
|
|
|
|
// gtHalf = (|x| > 0.5)
|
|
//
|
|
vec_uint4 gtHalf = spu_cmpabsgt(x,spu_splats(0.5f));
|
|
|
|
// x = absf(x)
|
|
//
|
|
x = (vec_float4)spu_and((vec_int4)x,spu_splats((int)0x7fffffff));
|
|
|
|
|
|
// if (x > 0.5)
|
|
// g = 0.5 - 0.5*x
|
|
// x = -2 * sqrtf(g)
|
|
// else
|
|
// g = x * x
|
|
//
|
|
vec_float4 g = spu_sel(spu_mul(x,x),spu_madd(spu_splats(-0.5f),x,spu_splats(0.5f)),gtHalf);
|
|
|
|
x = spu_sel(x,spu_mul(spu_splats(-2.0f),_sqrtf4(g)),gtHalf);
|
|
|
|
// Compute the polynomials and take their ratio
|
|
// denom = (1.0f*g + -0.554846723e+1f)*g + 5.603603363f
|
|
// num = x * g * (-0.504400557f * g + 0.933933258f)
|
|
//
|
|
vec_float4 denom = spu_add(g,spu_splats(-5.54846723f));
|
|
vec_float4 num = spu_madd(spu_splats(-0.504400557f),g,spu_splats(0.933933258f));
|
|
denom = spu_madd(denom,g,spu_splats(5.603603363f));
|
|
num = spu_mul(spu_mul(x,g),num);
|
|
|
|
|
|
// x = x + num / denom
|
|
//
|
|
x = spu_add(x,_divf4(num,denom));
|
|
|
|
// if (x > 0.5)
|
|
// x = x + M_PI_2
|
|
//
|
|
x = spu_sel(x,spu_add(x,spu_splats(1.57079632679489661923f)),gtHalf);
|
|
|
|
|
|
// if (!positive) x = -x
|
|
//
|
|
x = spu_sel((vec_float4)spu_xor(spu_splats((int)0x80000000),(vec_int4)x),x,positive);
|
|
|
|
return x;
|
|
}
|
|
|
|
#endif
|