fixed_c6x.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Copyright (C) 2008 CSIRO */
  2. /**
  3. @file fixed_c6x.h
  4. @brief Fixed-point operations for the TI C6x 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:
  10. - Redistributions of source code must retain the above copyright
  11. notice, this list of conditions and the following disclaimer.
  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. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  16. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  17. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  18. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
  19. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  20. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  21. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  22. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  23. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  24. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef FIXED_C6X_H
  28. #define FIXED_C6X_H
  29. #undef MULT16_16SU
  30. #define MULT16_16SU(a,b) _mpysu(a,b)
  31. #undef MULT_16_16
  32. #define MULT_16_16(a,b) _mpy(a,b)
  33. #define celt_ilog2(x) (30 - _norm(x))
  34. #define OVERRIDE_CELT_ILOG2
  35. #undef MULT16_32_Q15
  36. #define MULT16_32_Q15(a,b) (_mpylill(a, b) >> 15)
  37. #if 0
  38. #include "dsplib.h"
  39. #undef MAX16
  40. #define MAX16(a,b) _max(a,b)
  41. #undef MIN16
  42. #define MIN16(a,b) _min(a,b)
  43. #undef MAX32
  44. #define MAX32(a,b) _lmax(a,b)
  45. #undef MIN32
  46. #define MIN32(a,b) _lmin(a,b)
  47. #undef VSHR32
  48. #define VSHR32(a, shift) _lshl(a,-(shift))
  49. #undef MULT16_16_Q15
  50. #define MULT16_16_Q15(a,b) (_smpy(a,b))
  51. #define celt_maxabs16(x, len) MAX32(EXTEND32(maxval((DATA *)x, len)),-EXTEND32(minval((DATA *)x, len)))
  52. #define OVERRIDE_CELT_MAXABS16
  53. #endif /* FIXED_C6X_H */