OLD | NEW |
(Empty) | |
| 1 /*********************************************************************** |
| 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved. |
| 3 Redistribution and use in source and binary forms, with or without |
| 4 modification, are permitted provided that the following conditions |
| 5 are met: |
| 6 - Redistributions of source code must retain the above copyright notice, |
| 7 this list of conditions and the following disclaimer. |
| 8 - Redistributions in binary form must reproduce the above copyright |
| 9 notice, this list of conditions and the following disclaimer in the |
| 10 documentation and/or other materials provided with the distribution. |
| 11 - Neither the name of Internet Society, IETF or IETF Trust, nor the |
| 12 names of specific contributors, may be used to endorse or promote |
| 13 products derived from this software without specific prior written |
| 14 permission. |
| 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 25 POSSIBILITY OF SUCH DAMAGE. |
| 26 ***********************************************************************/ |
| 27 |
| 28 #ifndef SILK_MACROS_H |
| 29 #define SILK_MACROS_H |
| 30 |
| 31 #ifdef HAVE_CONFIG_H |
| 32 #include "config.h" |
| 33 #endif |
| 34 |
| 35 #include "opus_types.h" |
| 36 #include "opus_defines.h" |
| 37 |
| 38 #if OPUS_GNUC_PREREQ(3, 0) |
| 39 #define opus_likely(x) (__builtin_expect(!!(x), 1)) |
| 40 #define opus_unlikely(x) (__builtin_expect(!!(x), 0)) |
| 41 #else |
| 42 #define opus_likely(x) (!!(x)) |
| 43 #define opus_unlikely(x) (!!(x)) |
| 44 #endif |
| 45 |
| 46 /* Set this if opus_int64 is a native type of the CPU. */ |
| 47 #define OPUS_FAST_INT64 (defined(__x86_64__) || defined(__LP64__) || defined(_WI
N64)) |
| 48 |
| 49 /* This is an OPUS_INLINE header file for general platform. */ |
| 50 |
| 51 /* (a32 * (opus_int32)((opus_int16)(b32))) >> 16 output have to be 32bit int */ |
| 52 #if OPUS_FAST_INT64 |
| 53 #define silk_SMULWB(a32, b32) (((a32) * (opus_int64)((opus_int16)(b32
))) >> 16) |
| 54 #else |
| 55 #define silk_SMULWB(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_in
t16)(b32))) + ((((a32) & 0x0000FFFF) * (opus_int32)((opus_int16)(b32))) >> 16)) |
| 56 #endif |
| 57 |
| 58 /* a32 + (b32 * (opus_int32)((opus_int16)(c32))) >> 16 output have to be 32bit i
nt */ |
| 59 #if OPUS_FAST_INT64 |
| 60 #define silk_SMLAWB(a32, b32, c32) ((a32) + (((b32) * (opus_int64)((opus_i
nt16)(c32))) >> 16)) |
| 61 #else |
| 62 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)
((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32)))
>> 16))) |
| 63 #endif |
| 64 |
| 65 /* (a32 * (b32 >> 16)) >> 16 */ |
| 66 #define silk_SMULWT(a32, b32) (((a32) >> 16) * ((b32) >> 16) + ((((a3
2) & 0x0000FFFF) * ((b32) >> 16)) >> 16)) |
| 67 |
| 68 /* a32 + (b32 * (c32 >> 16)) >> 16 */ |
| 69 #if OPUS_FAST_INT64 |
| 70 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) * ((opus_int64)(c32) >
> 16)) >> 16)) |
| 71 #else |
| 72 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)
) + ((((b32) & 0x0000FFFF) * ((c32) >> 16)) >> 16)) |
| 73 #endif |
| 74 |
| 75 /* (opus_int32)((opus_int16)(a3))) * (opus_int32)((opus_int16)(b32)) output have
to be 32bit int */ |
| 76 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opu
s_int32)((opus_int16)(b32))) |
| 77 |
| 78 /* a32 + (opus_int32)((opus_int16)(b32)) * (opus_int32)((opus_int16)(c32)) outpu
t have to be 32bit int */ |
| 79 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32
))) * (opus_int32)((opus_int16)(c32))) |
| 80 |
| 81 /* (opus_int32)((opus_int16)(a32)) * (b32 >> 16) */ |
| 82 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b3
2) >> 16)) |
| 83 |
| 84 /* a32 + (opus_int32)((opus_int16)(b32)) * (c32 >> 16) */ |
| 85 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32
))) * ((c32) >> 16)) |
| 86 |
| 87 /* a64 + (b32 * c32) */ |
| 88 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) *
(opus_int64)(c32)))) |
| 89 |
| 90 /* (a32 * b32) >> 16 */ |
| 91 #if OPUS_FAST_INT64 |
| 92 #define silk_SMULWW(a32, b32) (((opus_int64)(a32) * (b32)) >> 16) |
| 93 #else |
| 94 #define silk_SMULWW(a32, b32) silk_MLA(silk_SMULWB((a32), (b32)), (a3
2), silk_RSHIFT_ROUND((b32), 16)) |
| 95 #endif |
| 96 |
| 97 /* a32 + ((b32 * c32) >> 16) */ |
| 98 #if OPUS_FAST_INT64 |
| 99 #define silk_SMLAWW(a32, b32, c32) ((a32) + (((opus_int64)(b32) * (c32)) >
> 16)) |
| 100 #else |
| 101 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32
)), (b32), silk_RSHIFT_ROUND((c32), 16)) |
| 102 #endif |
| 103 |
| 104 /* add/subtract with output saturated */ |
| 105 #define silk_ADD_SAT32(a, b) ((((opus_uint32)(a) + (opus_uint32)(b))
& 0x80000000) == 0 ? \ |
| 106 ((((a) & (b)) & 0x80000000) != 0 ? silk_
int32_MIN : (a)+(b)) : \ |
| 107 ((((a) | (b)) & 0x80000000) == 0 ? silk_
int32_MAX : (a)+(b)) ) |
| 108 |
| 109 #define silk_SUB_SAT32(a, b) ((((opus_uint32)(a)-(opus_uint32)(b)) &
0x80000000) == 0 ? \ |
| 110 (( (a) & ((b)^0x80000000) & 0x80000000)
? silk_int32_MIN : (a)-(b)) : \ |
| 111 ((((a)^0x80000000) & (b) & 0x80000000)
? silk_int32_MAX : (a)-(b)) ) |
| 112 |
| 113 #if defined(MIPSr1_ASM) |
| 114 #include "mips/macros_mipsr1.h" |
| 115 #endif |
| 116 |
| 117 #include "ecintrin.h" |
| 118 #ifndef OVERRIDE_silk_CLZ16 |
| 119 static OPUS_INLINE opus_int32 silk_CLZ16(opus_int16 in16) |
| 120 { |
| 121 return 32 - EC_ILOG(in16<<16|0x8000); |
| 122 } |
| 123 #endif |
| 124 |
| 125 #ifndef OVERRIDE_silk_CLZ32 |
| 126 static OPUS_INLINE opus_int32 silk_CLZ32(opus_int32 in32) |
| 127 { |
| 128 return in32 ? 32 - EC_ILOG(in32) : 32; |
| 129 } |
| 130 #endif |
| 131 |
| 132 /* Row based */ |
| 133 #define matrix_ptr(Matrix_base_adr, row, column, N) \ |
| 134 (*((Matrix_base_adr) + ((row)*(N)+(column)))) |
| 135 #define matrix_adr(Matrix_base_adr, row, column, N) \ |
| 136 ((Matrix_base_adr) + ((row)*(N)+(column))) |
| 137 |
| 138 /* Column based */ |
| 139 #ifndef matrix_c_ptr |
| 140 # define matrix_c_ptr(Matrix_base_adr, row, column, M) \ |
| 141 (*((Matrix_base_adr) + ((row)+(M)*(column)))) |
| 142 #endif |
| 143 |
| 144 #ifdef OPUS_ARM_INLINE_ASM |
| 145 #include "arm/macros_armv4.h" |
| 146 #endif |
| 147 |
| 148 #ifdef OPUS_ARM_INLINE_EDSP |
| 149 #include "arm/macros_armv5e.h" |
| 150 #endif |
| 151 |
| 152 #endif /* SILK_MACROS_H */ |
| 153 |
OLD | NEW |