1 |
207 |
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 _FMAX_H_
|
34 |
|
|
#define _FMAX_H_ 1
|
35 |
|
|
|
36 |
|
|
#include <spu_intrinsics.h>
|
37 |
|
|
#include "headers/vec_literal.h"
|
38 |
|
|
|
39 |
|
|
/* Return the maximum numeric value of their arguments. If one argument
|
40 |
|
|
* is a NaN, fmax returns the other value. If both are NaNs, then a NaN
|
41 |
|
|
* is returned.
|
42 |
|
|
*
|
43 |
|
|
* Notes:
|
44 |
|
|
* 1) Double precision denorms equate to zero so two denorms compare
|
45 |
|
|
* equal thereby making the following true for two denorm inputs
|
46 |
|
|
* fmax(a, b) != fmax(b, a);
|
47 |
|
|
*/
|
48 |
|
|
static __inline double _fmax(double x, double y)
|
49 |
|
|
{
|
50 |
|
|
vec_uint4 nan_x, selector, abs_x, gt, eq;
|
51 |
|
|
vec_uint4 sign = VEC_LITERAL(vec_uint4, 0x80000000, 0, 0x80000000, 0);
|
52 |
|
|
vec_uint4 infinity = VEC_LITERAL(vec_uint4, 0x7FF00000, 0, 0x7FF00000, 0);
|
53 |
|
|
vec_double2 vx, vy, diff, max;
|
54 |
|
|
|
55 |
|
|
vx = spu_promote(x, 0);
|
56 |
|
|
vy = spu_promote(y, 0);
|
57 |
|
|
|
58 |
|
|
/* If x is a NaN, then select y as max
|
59 |
|
|
*/
|
60 |
|
|
abs_x = spu_andc((vec_uint4)vx, sign);
|
61 |
|
|
gt = spu_cmpgt(abs_x, infinity);
|
62 |
|
|
eq = spu_cmpeq(abs_x, infinity);
|
63 |
|
|
|
64 |
|
|
nan_x = spu_or(gt, spu_and(eq, spu_rlqwbyte(gt, 4)));
|
65 |
|
|
|
66 |
|
|
diff = spu_sub(vx, vy);
|
67 |
|
|
selector = spu_orc(nan_x, spu_cmpgt((vec_int4)diff, -1));
|
68 |
|
|
selector = spu_maskw(spu_extract(selector, 0));
|
69 |
|
|
|
70 |
|
|
max = spu_sel(vx, vy, (vec_ullong2)selector);
|
71 |
|
|
|
72 |
|
|
return (spu_extract(max, 0));
|
73 |
|
|
}
|
74 |
|
|
|
75 |
|
|
#endif /* _FMAX_H_ */
|