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.

74 lines
3.0KB

  1. /*
  2. * Copyright (c) 2015 Henrik Gramner
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with Libav; if not, write to the Free Software Foundation, Inc.,
  18. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. */
  20. #include <string.h>
  21. #include "checkasm.h"
  22. #include "libavcodec/bswapdsp.h"
  23. #include "libavutil/common.h"
  24. #include "libavutil/intreadwrite.h"
  25. #define BUF_SIZE 512
  26. #define randomize_buffers() \
  27. do { \
  28. int i; \
  29. for (i = 0; i < BUF_SIZE; i += 4) { \
  30. uint32_t r = rnd(); \
  31. AV_WN32A(src0 + i, r); \
  32. AV_WN32A(src1 + i, r); \
  33. r = rnd(); \
  34. AV_WN32A(dst0 + i, r); \
  35. AV_WN32A(dst1 + i, r); \
  36. } \
  37. } while (0)
  38. #define check_bswap(type) \
  39. do { \
  40. int w; \
  41. for (w = 0; w < BUF_SIZE / sizeof(type); w++) { \
  42. int offset = (BUF_SIZE / sizeof(type) - w) & 15; /* Test various alignments */ \
  43. randomize_buffers(); \
  44. call_ref((type *)dst0 + offset, (type *)src0 + offset, w); \
  45. call_new((type *)dst1 + offset, (type *)src1 + offset, w); \
  46. if (memcmp(src0, src1, BUF_SIZE) || memcmp(dst0, dst1, BUF_SIZE)) \
  47. fail(); \
  48. bench_new((type *)dst1 + offset, (type *)src1 + offset, w); \
  49. } \
  50. } while (0)
  51. void checkasm_check_bswapdsp(void)
  52. {
  53. DECLARE_ALIGNED(16, uint8_t, src0)[BUF_SIZE];
  54. DECLARE_ALIGNED(16, uint8_t, src1)[BUF_SIZE];
  55. DECLARE_ALIGNED(16, uint8_t, dst0)[BUF_SIZE];
  56. DECLARE_ALIGNED(16, uint8_t, dst1)[BUF_SIZE];
  57. BswapDSPContext h;
  58. ff_bswapdsp_init(&h);
  59. if (check_func(h.bswap_buf, "bswap_buf"))
  60. check_bswap(uint32_t);
  61. if (check_func(h.bswap16_buf, "bswap16_buf"))
  62. check_bswap(uint16_t);
  63. report("bswap");
  64. }