ltp_bfin.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2005 Analog Devices
  2.    Author: Jean-Marc Valin 
  3.    File: ltp_bfin.h
  4.    Long-Term Prediction functions (Blackfin version)
  5.    Redistribution and use in source and binary forms, with or without
  6.    modification, are permitted provided that the following conditions
  7.    are met:
  8.    
  9.    - Redistributions of source code must retain the above copyright
  10.    notice, this list of conditions and the following disclaimer.
  11.    
  12.    - Redistributions in binary form must reproduce the above copyright
  13.    notice, this list of conditions and the following disclaimer in the
  14.    documentation and/or other materials provided with the distribution.
  15.    
  16.    - Neither the name of the Xiph.org Foundation nor the names of its
  17.    contributors may be used to endorse or promote products derived from
  18.    this software without specific prior written permission.
  19.    
  20.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  24.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  28.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  29.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  30.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #define OVERRIDE_INNER_PROD
  33. static spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len)
  34. {
  35.    spx_word32_t sum=0;
  36.    __asm__ __volatile__ (
  37.       "P0 = %3;nt"
  38.       "P1 = %1;nt"
  39.       "P2 = %2;nt"
  40.       "I0 = P1;nt"
  41.       "I1 = P2;nt"
  42.       "L0 = 0;nt"
  43.       "L1 = 0;nt"
  44.       "A0 = 0;nt"
  45.       "R0.L = W[I0++] || R1.L = W[I1++];nt"
  46.       "LOOP inner%= LC0 = P0;nt"
  47.       "LOOP_BEGIN inner%=;nt"
  48.          "A0 += R0.L*R1.L (IS) || R0.L = W[I0++] || R1.L = W[I1++];nt"
  49.       "LOOP_END inner%=;nt"
  50.       "A0 += R0.L*R1.L (IS);nt"
  51.       "A0 = A0 >>> 6;nt"
  52.       "R0 = A0;nt"
  53.       "%0 = R0;nt"
  54.    : "=m" (sum)
  55.    : "m" (x), "m" (y), "d" (len-1)
  56.    : "P0", "P1", "P2", "R0", "R1", "A0", "I0", "I1", "L0", "L1", "R3"
  57.    );
  58.    return sum;
  59. }
  60. #define OVERRIDE_PITCH_XCORR
  61. static void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack)
  62. {
  63.    corr += nb_pitch - 1;
  64.    __asm__ __volatile__ (
  65.       "P2 = %0;nt"
  66.       "I0 = P2;nt" /* x in I0 */
  67.       "B0 = P2;nt" /* x in B0 */
  68.       "R0 = %3;nt" /* len in R0 */
  69.       "P3 = %3;nt"
  70.       "P3 += -2;nt" /* len in R0 */
  71.       "P4 = %4;nt" /* nb_pitch in R0 */
  72.       "R1 = R0 << 1;nt" /* number of bytes in x */
  73.       "L0 = R1;nt"
  74.       "P0 = %1;nt"
  75.       "P1 = %2;nt"
  76.       "B1 = P1;nt"
  77.       "L1 = 0;nt" /*Disable looping on I1*/
  78.       "r0 = [I0++];nt"
  79.       "LOOP pitch%= LC0 = P4 >> 1;nt"
  80.       "LOOP_BEGIN pitch%=;nt"
  81.          "I1 = P0;nt"
  82.          "A1 = A0 = 0;nt"
  83.          "R1 = [I1++];nt"
  84.          "LOOP inner_prod%= LC1 = P3 >> 1;nt"
  85.          "LOOP_BEGIN inner_prod%=;nt"
  86.             "A0 += R0.L*R1.L , A1 += R0.L*R1.H (is) || R1.L = W[I1++];nt"
  87.             "A0 += R0.H*R1.H , A1 += R0.H*R1.L (is) || R1.H = W[I1++] || R0 = [I0++];nt"
  88.          "LOOP_END inner_prod%=;nt"
  89.          "A0 += R0.L*R1.L , A1 += R0.L*R1.H (is) || R1.L = W[I1++];nt"
  90.          "A0 += R0.H*R1.H , A1 += R0.H*R1.L (is) || R0 = [I0++];nt"
  91.          "A0 = A0 >>> 6;nt"
  92.          "A1 = A1 >>> 6;nt"
  93.          "R2 = A0, R3 = A1;nt"
  94.          "[P1--] = r2;nt"
  95.          "[P1--] = r3;nt"
  96.          "P0 += 4;nt"
  97.       "LOOP_END pitch%=;nt"
  98.       "L0 = 0;nt"
  99.    : : "m" (_x), "m" (_y), "m" (corr), "m" (len), "m" (nb_pitch)
  100.    : "A0", "A1", "P0", "P1", "P2", "P3", "P4", "R0", "R1", "R2", "R3", "I0", "I1", "L0", "L1", "B0", "B1", "memory"
  101.    );
  102. }
  103. #define OVERRIDE_COMPUTE_PITCH_ERROR
  104. static inline spx_word32_t compute_pitch_error(spx_word32_t *C, spx_word16_t *g, spx_word16_t pitch_control)
  105. {
  106.    spx_word32_t sum;
  107.    __asm__ __volatile__
  108.          (
  109.          "A0 = A1 = 0;nt"
  110.          
  111.          "R0 = [%1++];nt"
  112.          "R1.L = %2.L*%5.L (IS);nt"
  113.          "R0 <<= 1;nt"
  114.          "A0 += R1.L*R0.H (IS), A1 += R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  115.          
  116.          "R1.L = %3.L*%5.L (IS);nt"
  117.          "R0 <<= 1;nt"
  118.          "A0 += R1.L*R0.H (IS), A1 += R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  119.          
  120.          "R1.L = %4.L*%5.L (IS);nt"
  121.          "R0 <<= 1;nt"
  122.          "A0 += R1.L*R0.H (IS), A1 += R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  123.          
  124.          "R1.L = %2.L*%3.L (IS);nt"
  125.          "R0 <<= 1;nt"
  126.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  127.          "R1.L = %4.L*%3.L (IS);nt"
  128.          "R0 <<= 1;nt"
  129.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  130.          
  131.          "R1.L = %4.L*%2.L (IS);nt"
  132.          "R0 <<= 1;nt"
  133.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  134.          
  135.          "R1.L = %2.L*%2.L (IS);nt"
  136.          "R0 <<= 1;nt"
  137.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  138.          "R1.L = %3.L*%3.L (IS);nt"
  139.          "R0 <<= 1;nt"
  140.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS) || R0 = [%1++];nt"
  141.          
  142.          "R1.L = %4.L*%4.L (IS);nt"
  143.          "R0 <<= 1;nt"
  144.          "A0 -= R1.L*R0.H (IS), A1 -= R1.L*R0.L (M,IS);nt"
  145.          
  146.          "A1 = A1 >>> 16;nt"
  147.          "A0 += A1;nt"
  148.          "%0 = A0;nt"
  149.    : "=&D" (sum), "=a" (C)
  150.    : "d" (g[0]), "d" (g[1]), "d" (g[2]), "d" (pitch_control), "1" (C)
  151.    : "R0", "R1", "R2", "A0"
  152.          );
  153.    return sum;
  154. }