blob: 9f74ddd267179f769d0cdc7a3b97315973876688 [file] [log] [blame]
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -08001/* Copyright (c) 2003-2008 Jean-Marc Valin
2 Copyright (c) 2007-2008 CSIRO
3 Copyright (c) 2007-2009 Xiph.Org Foundation
4 Written by Jean-Marc Valin */
5/**
6 @file arch.h
7 @brief Various architecture definitions for CELT
8*/
9/*
10 Redistribution and use in source and binary forms, with or without
11 modification, are permitted provided that the following conditions
12 are met:
13
14 - Redistributions of source code must retain the above copyright
15 notice, this list of conditions and the following disclaimer.
16
17 - Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
20
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 A 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
34#ifndef ARCH_H
35#define ARCH_H
36
37#include "opus_types.h"
38#include "opus_defines.h"
39
40# if !defined(__GNUC_PREREQ)
41# if defined(__GNUC__)&&defined(__GNUC_MINOR__)
42# define __GNUC_PREREQ(_maj,_min) \
43 ((__GNUC__<<16)+__GNUC_MINOR__>=((_maj)<<16)+(_min))
44# else
45# define __GNUC_PREREQ(_maj,_min) 0
46# endif
47# endif
48
49#define CELT_SIG_SCALE 32768.f
50
51#define celt_fatal(str) _celt_fatal(str, __FILE__, __LINE__);
52#ifdef ENABLE_ASSERTIONS
53#include <stdio.h>
54#include <stdlib.h>
55#ifdef __GNUC__
56__attribute__((noreturn))
57#endif
58static OPUS_INLINE void _celt_fatal(const char *str, const char *file, int line)
59{
60 fprintf (stderr, "Fatal (internal) error in %s, line %d: %s\n", file, line, str);
61 abort();
62}
63#define celt_assert(cond) {if (!(cond)) {celt_fatal("assertion failed: " #cond);}}
64#define celt_assert2(cond, message) {if (!(cond)) {celt_fatal("assertion failed: " #cond "\n" message);}}
65#else
66#define celt_assert(cond)
67#define celt_assert2(cond, message)
68#endif
69
70#define IMUL32(a,b) ((a)*(b))
71
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -080072#define MIN16(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum 16-bit value. */
73#define MAX16(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum 16-bit value. */
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -080074#define MIN32(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum 32-bit value. */
75#define MAX32(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum 32-bit value. */
76#define IMIN(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum int value. */
77#define IMAX(a,b) ((a) > (b) ? (a) : (b)) /**< Maximum int value. */
78#define UADD32(a,b) ((a)+(b))
79#define USUB32(a,b) ((a)-(b))
80
81#define PRINT_MIPS(file)
82
83#ifdef FIXED_POINT
84
85typedef opus_int16 opus_val16;
86typedef opus_int32 opus_val32;
87
88typedef opus_val32 celt_sig;
89typedef opus_val16 celt_norm;
90typedef opus_val32 celt_ener;
91
92#define Q15ONE 32767
93
94#define SIG_SHIFT 12
95
96#define NORM_SCALING 16384
97
98#define DB_SHIFT 10
99
100#define EPSILON 1
101#define VERY_SMALL 0
102#define VERY_LARGE16 ((opus_val16)32767)
103#define Q15_ONE ((opus_val16)32767)
104
105#define SCALEIN(a) (a)
106#define SCALEOUT(a) (a)
107
flimc91ee5b2016-01-26 14:33:44 +0100108#define ABS16(x) ((x) < 0 ? (-(x)) : (x))
109#define ABS32(x) ((x) < 0 ? (-(x)) : (x))
110
111static OPUS_INLINE opus_int16 SAT16(opus_int32 x) {
112 return x > 32767 ? 32767 : x < -32768 ? -32768 : (opus_int16)x;
113}
114
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -0800115#ifdef FIXED_DEBUG
116#include "fixed_debug.h"
117#else
118
119#include "fixed_generic.h"
120
121#ifdef OPUS_ARM_INLINE_EDSP
122#include "arm/fixed_armv5e.h"
123#elif defined (OPUS_ARM_INLINE_ASM)
124#include "arm/fixed_armv4.h"
125#elif defined (BFIN_ASM)
126#include "fixed_bfin.h"
127#elif defined (TI_C5X_ASM)
128#include "fixed_c5x.h"
129#elif defined (TI_C6X_ASM)
130#include "fixed_c6x.h"
131#endif
132
133#endif
134
135#else /* FIXED_POINT */
136
137typedef float opus_val16;
138typedef float opus_val32;
139
140typedef float celt_sig;
141typedef float celt_norm;
142typedef float celt_ener;
143
flimc91ee5b2016-01-26 14:33:44 +0100144#ifdef FLOAT_APPROX
145/* This code should reliably detect NaN/inf even when -ffast-math is used.
146 Assumes IEEE 754 format. */
147static OPUS_INLINE int celt_isnan(float x)
148{
149 union {float f; opus_uint32 i;} in;
150 in.f = x;
151 return ((in.i>>23)&0xFF)==0xFF && (in.i&0x007FFFFF)!=0;
152}
153#else
154#ifdef __FAST_MATH__
155#error Cannot build libopus with -ffast-math unless FLOAT_APPROX is defined. This could result in crashes on extreme (e.g. NaN) input
156#endif
157#define celt_isnan(x) ((x)!=(x))
158#endif
159
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -0800160#define Q15ONE 1.0f
161
162#define NORM_SCALING 1.f
163
164#define EPSILON 1e-15f
165#define VERY_SMALL 1e-30f
166#define VERY_LARGE16 1e15f
167#define Q15_ONE ((opus_val16)1.f)
168
flimc91ee5b2016-01-26 14:33:44 +0100169/* This appears to be the same speed as C99's fabsf() but it's more portable. */
170#define ABS16(x) ((float)fabs(x))
171#define ABS32(x) ((float)fabs(x))
172
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -0800173#define QCONST16(x,bits) (x)
174#define QCONST32(x,bits) (x)
175
176#define NEG16(x) (-(x))
177#define NEG32(x) (-(x))
178#define EXTRACT16(x) (x)
179#define EXTEND32(x) (x)
180#define SHR16(a,shift) (a)
181#define SHL16(a,shift) (a)
182#define SHR32(a,shift) (a)
183#define SHL32(a,shift) (a)
184#define PSHR32(a,shift) (a)
185#define VSHR32(a,shift) (a)
186
187#define PSHR(a,shift) (a)
188#define SHR(a,shift) (a)
189#define SHL(a,shift) (a)
190#define SATURATE(x,a) (x)
191#define SATURATE16(x) (x)
192
193#define ROUND16(a,shift) (a)
194#define HALF16(x) (.5f*(x))
195#define HALF32(x) (.5f*(x))
196
197#define ADD16(a,b) ((a)+(b))
198#define SUB16(a,b) ((a)-(b))
199#define ADD32(a,b) ((a)+(b))
200#define SUB32(a,b) ((a)-(b))
201#define MULT16_16_16(a,b) ((a)*(b))
202#define MULT16_16(a,b) ((opus_val32)(a)*(opus_val32)(b))
203#define MAC16_16(c,a,b) ((c)+(opus_val32)(a)*(opus_val32)(b))
204
205#define MULT16_32_Q15(a,b) ((a)*(b))
206#define MULT16_32_Q16(a,b) ((a)*(b))
207
208#define MULT32_32_Q31(a,b) ((a)*(b))
209
210#define MAC16_32_Q15(c,a,b) ((c)+(a)*(b))
flimc91ee5b2016-01-26 14:33:44 +0100211#define MAC16_32_Q16(c,a,b) ((c)+(a)*(b))
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -0800212
213#define MULT16_16_Q11_32(a,b) ((a)*(b))
214#define MULT16_16_Q11(a,b) ((a)*(b))
215#define MULT16_16_Q13(a,b) ((a)*(b))
216#define MULT16_16_Q14(a,b) ((a)*(b))
217#define MULT16_16_Q15(a,b) ((a)*(b))
218#define MULT16_16_P15(a,b) ((a)*(b))
219#define MULT16_16_P13(a,b) ((a)*(b))
220#define MULT16_16_P14(a,b) ((a)*(b))
221#define MULT16_32_P16(a,b) ((a)*(b))
222
223#define DIV32_16(a,b) (((opus_val32)(a))/(opus_val16)(b))
224#define DIV32(a,b) (((opus_val32)(a))/(opus_val32)(b))
225
226#define SCALEIN(a) ((a)*CELT_SIG_SCALE)
227#define SCALEOUT(a) ((a)*(1/CELT_SIG_SCALE))
228
flimc91ee5b2016-01-26 14:33:44 +0100229#define SIG2WORD16(x) (x)
230
Vignesh Venkatasubramanian2bd8b542014-02-20 10:50:35 -0800231#endif /* !FIXED_POINT */
232
233#ifndef GLOBAL_STACK_SIZE
234#ifdef FIXED_POINT
235#define GLOBAL_STACK_SIZE 100000
236#else
237#define GLOBAL_STACK_SIZE 100000
238#endif
239#endif
240
241#endif /* ARCH_H */