1 |
148 |
jeremybenn |
/*
|
2 |
|
|
(C) Copyright 2001,2006,
|
3 |
|
|
International Business Machines Corporation,
|
4 |
|
|
Sony Computer Entertainment, Incorporated,
|
5 |
|
|
Toshiba Corporation,
|
6 |
|
|
|
7 |
|
|
All rights reserved.
|
8 |
|
|
|
9 |
|
|
Redistribution and use in source and binary forms, with or without
|
10 |
|
|
modification, are permitted provided that the following conditions are met:
|
11 |
|
|
|
12 |
|
|
* Redistributions of source code must retain the above copyright notice,
|
13 |
|
|
this list of conditions and the following disclaimer.
|
14 |
|
|
* Redistributions in binary form must reproduce the above copyright
|
15 |
|
|
notice, this list of conditions and the following disclaimer in the
|
16 |
|
|
documentation and/or other materials provided with the distribution.
|
17 |
|
|
* Neither the names of the copyright holders nor the names of their
|
18 |
|
|
contributors may be used to endorse or promote products derived from this
|
19 |
|
|
software without specific prior written permission.
|
20 |
|
|
|
21 |
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
22 |
|
|
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
23 |
|
|
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
24 |
|
|
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
25 |
|
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
26 |
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
27 |
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
28 |
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
29 |
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
30 |
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
31 |
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
32 |
|
|
*/
|
33 |
|
|
#ifndef _LROUND_H_
|
34 |
|
|
#define _LROUND_H_ 1
|
35 |
|
|
|
36 |
|
|
#include <spu_intrinsics.h>
|
37 |
|
|
#include "headers/vec_literal.h"
|
38 |
|
|
|
39 |
|
|
/* Round the input to the nearest integer value, rounding halfway cases
|
40 |
|
|
* away from zero. No special handling is performed when values are
|
41 |
|
|
* outside the 32-bit range.
|
42 |
|
|
*/
|
43 |
|
|
|
44 |
|
|
static __inline long int _lround(double x)
|
45 |
|
|
{
|
46 |
|
|
int shift;
|
47 |
|
|
vec_int4 exp;
|
48 |
|
|
vec_uint4 mant, sign, mask, addend;
|
49 |
|
|
vec_double2 in;
|
50 |
|
|
|
51 |
|
|
in = spu_promote(x, 0);
|
52 |
|
|
|
53 |
|
|
/* Determine how many bits to shift the mantissa to correctly
|
54 |
|
|
* align it into long long element 0.
|
55 |
|
|
*/
|
56 |
|
|
exp = spu_and(spu_rlmask((vec_int4)in, -20), 0x7FF);
|
57 |
|
|
exp = spu_add(exp, -979);
|
58 |
|
|
shift = spu_extract(exp, 0);
|
59 |
|
|
|
60 |
|
|
mask = spu_cmpgt(exp, 0);
|
61 |
|
|
|
62 |
|
|
/* Algn mantissa bits
|
63 |
|
|
*/
|
64 |
|
|
mant = spu_sel(spu_rlmaskqwbyte((vec_uint4)in, -8), VEC_SPLAT_U32(0x00100000),
|
65 |
|
|
VEC_LITERAL(vec_uint4, 0,0,0xFFF00000,0));
|
66 |
|
|
|
67 |
|
|
mant = spu_slqwbytebc(spu_slqw(mant, shift), shift);
|
68 |
|
|
|
69 |
|
|
/* Perform round by adding 1 if the fraction bits are
|
70 |
|
|
* greater than or equal to .5
|
71 |
|
|
*/
|
72 |
|
|
addend = spu_and(spu_rlqw(mant, 1), 1);
|
73 |
|
|
mant = spu_and(spu_add(mant, addend), mask);
|
74 |
|
|
|
75 |
|
|
/* Compute the two's complement of the mantissa if the
|
76 |
|
|
* input is negative.
|
77 |
|
|
*/
|
78 |
|
|
sign = (vec_uint4)spu_rlmaska((vec_int4)in, -31);
|
79 |
|
|
|
80 |
|
|
mant = spu_sub(spu_xor(mant, sign), sign);
|
81 |
|
|
|
82 |
|
|
return ((long int)spu_extract(mant, 0));
|
83 |
|
|
}
|
84 |
|
|
#endif /* _LROUND_H_ */
|