1 |
148 |
jeremybenn |
/* -------------------------------------------------------------- */
|
2 |
|
|
/* (C)Copyright 2001,2008, */
|
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 */
|
10 |
|
|
/* without modification, are permitted provided that the */
|
11 |
|
|
/* following conditions are met: */
|
12 |
|
|
/* */
|
13 |
|
|
/* - Redistributions of source code must retain the above copyright*/
|
14 |
|
|
/* notice, this list of conditions and the following disclaimer. */
|
15 |
|
|
/* */
|
16 |
|
|
/* - Redistributions in binary form must reproduce the above */
|
17 |
|
|
/* copyright notice, this list of conditions and the following */
|
18 |
|
|
/* disclaimer in the documentation and/or other materials */
|
19 |
|
|
/* provided with the distribution. */
|
20 |
|
|
/* */
|
21 |
|
|
/* - Neither the name of IBM Corporation nor the names of its */
|
22 |
|
|
/* contributors may be used to endorse or promote products */
|
23 |
|
|
/* derived from this software without specific prior written */
|
24 |
|
|
/* permission. */
|
25 |
|
|
/* */
|
26 |
|
|
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */
|
27 |
|
|
/* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */
|
28 |
|
|
/* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
|
29 |
|
|
/* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
|
30 |
|
|
/* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR */
|
31 |
|
|
/* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
|
32 |
|
|
/* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT */
|
33 |
|
|
/* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
|
34 |
|
|
/* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) */
|
35 |
|
|
/* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN */
|
36 |
|
|
/* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR */
|
37 |
|
|
/* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */
|
38 |
|
|
/* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
|
39 |
|
|
/* -------------------------------------------------------------- */
|
40 |
|
|
/* PROLOG END TAG zYx */
|
41 |
|
|
#ifdef __SPU__
|
42 |
|
|
|
43 |
|
|
#ifndef _LDEXPF4_H_
|
44 |
|
|
#define _LDEXPF4_H_ 1
|
45 |
|
|
|
46 |
|
|
#include <spu_intrinsics.h>
|
47 |
|
|
#include "scalbnf4.h"
|
48 |
|
|
|
49 |
|
|
/*
|
50 |
|
|
* FUNCTION
|
51 |
|
|
* vector float _ldexpf4(vector float x, vector signed int exp)
|
52 |
|
|
*
|
53 |
|
|
* DESCRIPTION
|
54 |
|
|
* The _ldexpf4 function returns a vector containing each element of x
|
55 |
|
|
* multiplied by 2^exp computed efficiently. This function is computed
|
56 |
|
|
* without the assistance of any floating point operations and as such
|
57 |
|
|
* does not set any floating point exceptions.
|
58 |
|
|
*
|
59 |
|
|
* RETURNS
|
60 |
|
|
* - if the exponent of x is 0, then x is either 0 or a subnormal,
|
61 |
|
|
* and the result will be returned as 0.
|
62 |
|
|
* - if the result if underflows, it will be returned as 0.
|
63 |
|
|
* - if the result overflows, it will be returned as FLT_MAX.
|
64 |
|
|
*
|
65 |
|
|
*/
|
66 |
|
|
static __inline vector float _ldexpf4(vector float x, vector signed int exp)
|
67 |
|
|
{
|
68 |
|
|
return _scalbnf4(x, exp);
|
69 |
|
|
}
|
70 |
|
|
|
71 |
|
|
#endif /* _LDEXPF4_H_ */
|
72 |
|
|
#endif /* __SPU__ */
|