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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2005 Analog Devices
  2.    Author: Jean-Marc Valin 
  3.    File: cb_search_bfin.h
  4.    Fixed codebook 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_COMPUTE_WEIGHTED_CODEBOOK 
  33. void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
  34. {
  35.    int i;
  36.    for (i=0;i<shape_cb_size;i++)
  37.    {
  38.       __asm__ __volatile__ (
  39.          "P0 = %0;nt"
  40.          "LC0 = P0;nt"
  41.          "P1 = %1;nt"
  42.          "P2 = %2;nt"
  43.          "P3 = %3;nt"
  44.          "P0 = 1;nt"
  45.          "L0 = 0;nt"
  46.          "L1 = 0;nt"
  47.          "R2 = 0;nt"
  48.          "A1 = 0;nt"
  49.          "LOOP outter%= LC0;nt"
  50.          "LOOP_BEGIN outter%=;nt"
  51.             "A0 = 0;nt"
  52.             "P4 = P1;nt"
  53.             "I1 = P2;nt"
  54.             "R0 = B[P4++] (X) || R1.L = W[I1--];nt"
  55.             "LOOP inner%= LC1 = P0;nt"
  56.             "LOOP_BEGIN inner%=;nt"
  57.                "A0 += R0.L*R1.L (IS) || R0 = B[P4++] (X) || R1.L = W[I1--];nt"
  58.             "LOOP_END inner%=;nt"
  59.             "R0 = A0;nt"
  60.             "R0 >>>= 11;nt"
  61.             "A1 += R0.L*R0.L (IS);nt"
  62.             "W[P3++] = R0;nt"
  63.             "P0 += 1;nt"
  64.             "P2 += 2;nt"
  65.          "LOOP_END outter%=;nt"
  66.          "P4 = %4;nt"
  67.          "R1 = A1;nt"
  68.          "[P4] = R1;nt"
  69.          :
  70.       : "m" (subvect_size), "m" (shape_cb), "m" (r), "m" (resp), "m" (E)
  71.       : "A0", "P0", "P1", "P2", "P3", "P4", "R0", "R1", "R2", "I0", "I1", "L0", "L1", "A0", "A1", "memory"
  72.       );
  73.       shape_cb += subvect_size;
  74.       resp += subvect_size;
  75.       E++;
  76.    }
  77. }
  78. #define OVERRIDE_TARGET_UPDATE
  79. static inline void target_update(spx_word16_t *t, spx_word16_t g, spx_word16_t *r, int len)
  80. {
  81.    __asm__ __volatile__
  82.          (
  83.          "I0 = %0;nt"
  84.          "I1 = %1;nt"
  85.          "L0 = 0;nt"
  86.          "L1 = 0;nt"
  87.          "LOOP tupdate%= LC0 = %3;nt"
  88.          "LOOP_BEGIN tupdate%=;nt"
  89.             "R0.L = W[I0] || R1.L = W[I1++];nt"
  90.             "R1 = (A1 = R1.L*%2.L) (IS);nt"
  91.             "R1 >>>= 11;nt"
  92.             "R0.L = R0.L - R1.L;nt"
  93.             "W[I0++] = R0.L;nt"
  94.          "LOOP_END tupdate%=;nt"
  95.    :
  96.    : "a" (t), "a" (r), "d" (g), "a" (len)
  97.    : "R0", "R1", "A1", "I0", "I1", "L0", "L1"
  98.          );
  99. }