|
|

楼主 |
发表于 2006-8-30 09:34:00
|
显示全部楼层
Re:巨土的SSE/SSE2
放出期待版hardcore....
#ifdef _SSE_OPTIMIZE_
inline __m128 _mm_ceil_ps( __m128 v )
{
static const __m128 twoTo23 = _mm_set_ps1(1 << 23);
__m128 d = _mm_sub_ps( _mm_add_ps( _mm_add_ps( _mm_sub_ps( v, twoTo23 ), twoTo23 ), twoTo23 ), twoTo23 ); //the meat of ceil
__m128 largeMaskE = _mm_cmpgt_ps( v, twoTo23 ); //-1 if v >= 2**23
__m128 g = _mm_cmpgt_ps( v, d ); //check for possible off by one error
__m128 h = _mm_cvtepi32_ps( *(__m128i*) &g ); //convert positive check result to -1.0, negative to 0.0
__m128 t = _mm_sub_ps( d, h ); //add in the error if there is one
//Select between output result and input value based on v >= 2**23
v = _mm_and_ps( v, largeMaskE );
t = _mm_andnot_ps( largeMaskE, t );
return _mm_or_ps( t, v );
}
#endif
据说在_set_SSE_enable(1)之后,能编译出SSE2版本的ceil/pow/floor/exp,但是根据偶的试验,发现不好使。。。于是就有了以上版本。。版权归偶。。 |
|