You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.7KB

  1. /*
  2. * simple math operations
  3. *
  4. * Copyright (C) 2007 Marc Hoffman <mmhoffm@gmail.com>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_BFIN_MATHOPS_H
  23. #define AVCODEC_BFIN_MATHOPS_H
  24. #include "config.h"
  25. #define MULH(X,Y) ({ int xxo; \
  26. __asm__ ( \
  27. "a1 = %2.L * %1.L (FU);\n\t" \
  28. "a1 = a1 >> 16;\n\t" \
  29. "a1 += %2.H * %1.L (IS,M);\n\t" \
  30. "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\
  31. "a1 = a1 >>> 16;\n\t" \
  32. "%0 = (a0 += a1);\n\t" \
  33. : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; })
  34. /* signed 16x16 -> 32 multiply */
  35. #define MUL16(a, b) ({ int xxo; \
  36. __asm__ ( \
  37. "%0 = %1.l*%2.l (is);\n\t" \
  38. : "=W" (xxo) : "d" (a), "d" (b) : "A1"); \
  39. xxo; })
  40. #endif /* AVCODEC_BFIN_MATHOPS_H */