blob: ea95a998c3c3f879e10ccd72eff200d1cece9720 [file] [log] [blame]
Jean-Marc Valin72e80032008-03-12 10:16:26 +11001/* Copyright (C) 2003 Jean-Marc Valin */
2/**
3 @file fixed_c5x.h
4 @brief Fixed-point operations for the TI C5x DSP family
5*/
6/*
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions
9 are met:
Gregory Maxwell71d39ad2011-07-30 00:00:29 -040010
Jean-Marc Valin72e80032008-03-12 10:16:26 +110011 - Redistributions of source code must retain the above copyright
12 notice, this list of conditions and the following disclaimer.
Gregory Maxwell71d39ad2011-07-30 00:00:29 -040013
Jean-Marc Valin72e80032008-03-12 10:16:26 +110014 - 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.
Gregory Maxwell71d39ad2011-07-30 00:00:29 -040017
Jean-Marc Valin72e80032008-03-12 10:16:26 +110018 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Jean-Marc Valincb05e7c2012-04-20 16:40:24 -040021 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
22 OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Jean-Marc Valin72e80032008-03-12 10:16:26 +110023 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*/
30
31#ifndef FIXED_C5X_H
32#define FIXED_C5X_H
33
Jean-Marc Valina75e25d2008-03-24 08:32:49 +110034#include "dsplib.h"
35
Jean-Marc Valin821945d2008-04-10 13:24:48 +100036#undef IMUL32
Gregory Maxwell7830cf12013-10-17 15:56:52 -070037static OPUS_INLINE long IMUL32(long i, long j)
Jean-Marc Valin821945d2008-04-10 13:24:48 +100038{
39 long ac0, ac1;
40 ac0 = _lmpy(i>>16,j);
41 ac1 = ac0 + _lmpy(i,j>>16);
42 return _lmpyu(i,j) + (ac1<<16);
43}
44
Jean-Marc Valin72e80032008-03-12 10:16:26 +110045#undef MAX16
46#define MAX16(a,b) _max(a,b)
47
48#undef MIN16
49#define MIN16(a,b) _min(a,b)
50
51#undef MAX32
52#define MAX32(a,b) _lmax(a,b)
53
54#undef MIN32
55#define MIN32(a,b) _lmin(a,b)
56
57#undef VSHR32
58#define VSHR32(a, shift) _lshl(a,-(shift))
Jean-Marc Valin72e80032008-03-12 10:16:26 +110059
Jean-Marc Valinbfcbd182008-03-15 08:12:49 +110060#undef MULT16_16_Q15
61#define MULT16_16_Q15(a,b) (_smpy(a,b))
62
Gregory Maxwell71d39ad2011-07-30 00:00:29 -040063#undef MULT16_16SU
Jean-Marc Valinb3115542008-03-16 23:33:02 +110064#define MULT16_16SU(a,b) _lmpysu(a,b)
65
66#undef MULT_16_16
67#define MULT_16_16(a,b) _lmpy(a,b)
Jean-Marc Valinbfcbd182008-03-15 08:12:49 +110068
Jean-Marc Valin948dabc2008-03-21 10:53:09 +110069/* FIXME: This is technically incorrect and is bound to cause problems. Is there any cleaner solution? */
70#undef MULT16_32_Q15
71#define MULT16_32_Q15(a,b) ADD32(SHL(MULT16_16((a),SHR((b),16)),1), SHR(MULT16_16SU((a),(b)),15))
72
Jean-Marc Valin83006ee2008-03-21 10:40:43 +110073#define celt_ilog2(x) (30 - _lnorm(x))
74#define OVERRIDE_CELT_ILOG2
75
Jean-Marc Valinb7bd4c22013-05-18 23:33:48 -040076#define celt_maxabs16(x, len) MAX32(EXTEND32(maxval((DATA *)x, len)),-EXTEND32(minval((DATA *)x, len)))
Jean-Marc Valin9901cb92008-03-21 11:13:51 +110077#define OVERRIDE_CELT_MAXABS16
78
Jean-Marc Valinbfcbd182008-03-15 08:12:49 +110079#endif /* FIXED_C5X_H */