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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2005 Analog Devices
  2.    Author: Jean-Marc Valin */
  3. /**
  4.    @file fixed_bfin.h
  5.    @brief Blackfin fixed-point operations
  6. */
  7. /*
  8.    Redistribution and use in source and binary forms, with or without
  9.    modification, are permitted provided that the following conditions
  10.    are met:
  11.    
  12.    - Redistributions of source code must retain the above copyright
  13.    notice, this list of conditions and the following disclaimer.
  14.    
  15.    - Redistributions in binary form must reproduce the above copyright
  16.    notice, this list of conditions and the following disclaimer in the
  17.    documentation and/or other materials provided with the distribution.
  18.    
  19.    - Neither the name of the Xiph.org Foundation nor the names of its
  20.    contributors may be used to endorse or promote products derived from
  21.    this software without specific prior written permission.
  22.    
  23.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  24.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  25.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  26.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  27.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  28.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  29.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  30.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  31.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  32.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  33.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. */
  35. #ifndef FIXED_BFIN_H
  36. #define FIXED_BFIN_H
  37. #undef DIV32_16
  38. static inline spx_word16_t DIV32_16(spx_word32_t a, spx_word16_t b)
  39. {
  40.    spx_word32_t res, bb;
  41.    bb = b;
  42.    __asm__  (
  43.          "P0 = 15;nt"
  44.          "R0 = %1;nt"
  45.          "R1 = %2;nt"
  46.          "R0 <<= 1;nt"
  47.          "DIVS (R0, R1);nt"
  48.          "LOOP divide%= LC0 = P0;nt"
  49.          "LOOP_BEGIN divide%=;nt"
  50.             "DIVQ (R0, R1);nt"
  51.          "LOOP_END divide%=;nt"
  52.          "R0 = R0.L;nt"
  53.          "%0 = R0;nt"
  54.    : "=m" (res)
  55.    : "m" (a), "m" (bb)
  56.    : "P0", "R0", "R1", "cc");
  57.    return res;
  58. }
  59. #undef MAX16
  60. static inline spx_word16_t MAX16(spx_word16_t a, spx_word16_t b)
  61. {
  62.    spx_word32_t res;
  63.    __asm__  (
  64.          "%1 = %1.L (X);nt"
  65.          "%2 = %2.L (X);nt"
  66.          "%0 = MAX(%1,%2);"
  67.    : "=d" (res)
  68.    : "%d" (a), "d" (b)
  69.    );
  70.    return res;
  71. }
  72. #undef MULT16_32_Q15
  73. static inline spx_word32_t MULT16_32_Q15(spx_word16_t a, spx_word32_t b)
  74. {
  75.    spx_word32_t res;
  76.    __asm__
  77.    (
  78.          "%1 <<= 1;nt"
  79.          "A1 = %2.L*%1.L (M,IS);nt"
  80.          "A1 = A1 >>> 16;nt"
  81.          "R1 = (A1 += %2.L*%1.H) (IS);nt"
  82.          "%0 = R1;nt"
  83.    : "=&d" (res), "=&d" (b)
  84.    : "d" (a), "1" (b)
  85.    : "A1", "R1"
  86.    );
  87.    return res;
  88. }
  89. #undef MAC16_32_Q15
  90. static inline spx_word32_t MAC16_32_Q15(spx_word32_t c, spx_word16_t a, spx_word32_t b)
  91. {
  92.    spx_word32_t res;
  93.    __asm__
  94.          (
  95.          "%1 <<= 1;nt"
  96.          "A1 = %2.L*%1.L (M,IS);nt"
  97.          "A1 = A1 >>> 16;nt"
  98.          "R1 = (A1 += %2.L*%1.H) (IS);nt"
  99.          "%0 = R1 + %4;nt"
  100.    : "=&d" (res), "=&d" (b)
  101.    : "d" (a), "1" (b), "d" (c)
  102.    : "A1", "R1"
  103.          );
  104.    return res;
  105. }
  106. #undef MULT16_32_Q14
  107. static inline spx_word32_t MULT16_32_Q14(spx_word16_t a, spx_word32_t b)
  108. {
  109.    spx_word32_t res;
  110.    __asm__
  111.          (
  112.          "%2 <<= 2;nt"
  113.          "A1 = %1.L*%2.L (M,IS);nt"
  114.          "A1 = A1 >>> 16;nt"
  115.          "R1 = (A1 += %1.L*%2.H) (IS);nt"
  116.          "%0 = R1;nt"
  117.    : "=d" (res), "=d" (a), "=d" (b)
  118.    : "1" (a), "2" (b)
  119.    : "A1", "R1"
  120.          );
  121.    return res;
  122. }
  123. #undef MAC16_32_Q14
  124. static inline spx_word32_t MAC16_32_Q14(spx_word32_t c, spx_word16_t a, spx_word32_t b)
  125. {
  126.    spx_word32_t res;
  127.    __asm__
  128.          (
  129.          "%1 <<= 2;nt"
  130.          "A1 = %2.L*%1.L (M,IS);nt"
  131.          "A1 = A1 >>> 16;nt"
  132.          "R1 = (A1 += %2.L*%1.H) (IS);nt"
  133.          "%0 = R1 + %4;nt"
  134.    : "=&d" (res), "=&d" (b)
  135.    : "d" (a), "1" (b), "d" (c)
  136.    : "A1", "R1"
  137.          );
  138.    return res;
  139. }
  140. #endif