1 /* Copyright (C) 2005 Jean-Marc Valin */
4 @brief Pseudo-floating point
5 * This header file provides a lightweight floating point type for
6 * use on fixed-point platforms when a large dynamic range is
7 * required. The new type is not compatible with the 32-bit IEEE format,
8 * it is not even remotely as accurate as 32-bit floats, and is not
9 * even guaranteed to produce even remotely correct results for code
10 * other than Speex. It makes all kinds of shortcuts that are acceptable
11 * for Speex, but may not be acceptable for your application. You're
12 * quite welcome to reuse this code and improve it, but don't assume
13 * it works out of the box. Most likely, it doesn't.
16 Redistribution and use in source and binary forms, with or without
17 modification, are permitted provided that the following conditions
20 - Redistributions of source code must retain the above copyright
21 notice, this list of conditions and the following disclaimer.
23 - Redistributions in binary form must reproduce the above copyright
24 notice, this list of conditions and the following disclaimer in the
25 documentation and/or other materials provided with the distribution.
27 - Neither the name of the Xiph.org Foundation nor the names of its
28 contributors may be used to endorse or promote products derived from
29 this software without specific prior written permission.
31 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
35 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
36 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
37 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
38 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
40 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 #include "os_support.h"
49 #include "math_approx.h"
59 static const spx_float_t FLOAT_ZERO
= {0,0};
60 static const spx_float_t FLOAT_ONE
= {16384,-14};
61 static const spx_float_t FLOAT_HALF
= {16384,-15};
66 #define MIN(a,b) ((a)<(b)?(a):(b))
67 static inline spx_float_t
PSEUDOFLOAT(spx_int32_t x
)
78 spx_float_t r
= {0,0};
81 e
= spx_ilog2(ABS32(x
))-14;
100 static inline spx_float_t
FLOAT_ADD(spx_float_t a
, spx_float_t b
)
109 r
.m
= ((a
).m
>>1) + ((b
).m
>>MIN(15,(a
).e
-(b
).e
+1));
114 r
.m
= ((b
).m
>>1) + ((a
).m
>>MIN(15,(b
).e
-(a
).e
+1));
131 /*printf ("%f + %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));*/
135 static inline spx_float_t
FLOAT_SUB(spx_float_t a
, spx_float_t b
)
144 r
.m
= ((a
).m
>>1) - ((b
).m
>>MIN(15,(a
).e
-(b
).e
+1));
149 r
.m
= ((a
).m
>>MIN(15,(b
).e
-(a
).e
+1)) - ((b
).m
>>1);
166 /*printf ("%f + %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));*/
170 static inline int FLOAT_LT(spx_float_t a
, spx_float_t b
)
177 return ((a
).m
>>1) < ((b
).m
>>MIN(15,(a
).e
-(b
).e
+1));
179 return ((b
).m
>>1) > ((a
).m
>>MIN(15,(b
).e
-(a
).e
+1));
183 static inline int FLOAT_GT(spx_float_t a
, spx_float_t b
)
185 return FLOAT_LT(b
,a
);
188 static inline spx_float_t
FLOAT_MULT(spx_float_t a
, spx_float_t b
)
191 r
.m
= (spx_int16_t
)((spx_int32_t
)(a
).m
*(b
).m
>>15);
192 r
.e
= (a
).e
+(b
).e
+15;
207 /*printf ("%f * %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));*/
211 static inline spx_float_t
FLOAT_AMULT(spx_float_t a
, spx_float_t b
)
214 r
.m
= (spx_int16_t
)((spx_int32_t
)(a
).m
*(b
).m
>>15);
215 r
.e
= (a
).e
+(b
).e
+15;
220 static inline spx_float_t
FLOAT_SHL(spx_float_t a
, int b
)
228 static inline spx_int16_t
FLOAT_EXTRACT16(spx_float_t a
)
231 return EXTRACT16((EXTEND32(a
.m
)+(EXTEND32(1)<<(-a
.e
-1)))>>-a
.e
);
236 static inline spx_int32_t
FLOAT_EXTRACT32(spx_float_t a
)
239 return (EXTEND32(a
.m
)+(EXTEND32(1)<<(-a
.e
-1)))>>-a
.e
;
241 return EXTEND32(a
.m
)<<a
.e
;
244 static inline spx_int32_t
FLOAT_MUL32(spx_float_t a
, spx_word32_t b
)
246 return VSHR32(MULT16_32_Q15(a
.m
, b
),-a
.e
-15);
249 static inline spx_float_t
FLOAT_MUL32U(spx_word32_t a
, spx_word32_t b
)
257 e1
= spx_ilog2(ABS32(a
));
258 a
= VSHR32(a
, e1
-14);
259 e2
= spx_ilog2(ABS32(b
));
260 b
= VSHR32(b
, e2
-14);
261 r
.m
= MULT16_16_Q15(a
,b
);
266 /* Do NOT attempt to divide by a negative number */
267 static inline spx_float_t
FLOAT_DIV32_FLOAT(spx_word32_t a
, spx_float_t b
)
275 e
= spx_ilog2(ABS32(a
))-spx_ilog2(b
.m
-1)-15;
277 if (ABS32(a
)>=SHL32(EXTEND32(b
.m
-1),15))
282 r
.m
= DIV32_16(a
,b
.m
);
288 /* Do NOT attempt to divide by a negative number */
289 static inline spx_float_t
FLOAT_DIV32(spx_word32_t a
, spx_word32_t b
)
299 e0
= spx_ilog2(b
)-14;
303 e
= spx_ilog2(ABS32(a
))-spx_ilog2(b
-1)-15;
305 if (ABS32(a
)>=SHL32(EXTEND32(b
-1),15))
316 /* Do NOT attempt to divide by a negative number */
317 static inline spx_float_t
FLOAT_DIVU(spx_float_t a
, spx_float_t b
)
324 speex_warning_int("Attempted to divide by", b
.m
);
335 r
.m
= DIV32_16(num
,b
.m
);
340 static inline spx_float_t
FLOAT_SQRT(spx_float_t a
)
344 m
= SHL32(EXTEND32(a
.m
), 14);
358 #define spx_float_t float
359 #define FLOAT_ZERO 0.f
360 #define FLOAT_ONE 1.f
361 #define FLOAT_HALF 0.5f
362 #define PSEUDOFLOAT(x) (x)
363 #define FLOAT_MULT(a,b) ((a)*(b))
364 #define FLOAT_AMULT(a,b) ((a)*(b))
365 #define FLOAT_MUL32(a,b) ((a)*(b))
366 #define FLOAT_DIV32(a,b) ((a)/(b))
367 #define FLOAT_EXTRACT16(a) (a)
368 #define FLOAT_EXTRACT32(a) (a)
369 #define FLOAT_ADD(a,b) ((a)+(b))
370 #define FLOAT_SUB(a,b) ((a)-(b))
371 #define REALFLOAT(x) (x)
372 #define FLOAT_DIV32_FLOAT(a,b) ((a)/(b))
373 #define FLOAT_MUL32U(a,b) ((a)*(b))
374 #define FLOAT_SHL(a,b) (a)
375 #define FLOAT_LT(a,b) ((a)<(b))
376 #define FLOAT_GT(a,b) ((a)>(b))
377 #define FLOAT_DIVU(a,b) ((a)/(b))
378 #define FLOAT_SQRT(a) (spx_sqrt(a))