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.

75 lines
2.0KB

  1. /*
  2. * BlackFin DSPUTILS COMMON OPTIMIZATIONS HEADER
  3. *
  4. * Copyright (C) 2007 Marc Hoffman <mmh@pleasantst.com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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_DSPUTIL_BFIN_H
  23. #define AVCODEC_BFIN_DSPUTIL_BFIN_H
  24. #ifdef __FDPIC__
  25. #define attribute_l1_text __attribute__ ((l1_text))
  26. #define attribute_l1_data_b __attribute__((l1_data_B))
  27. #else
  28. #define attribute_l1_text
  29. #define attribute_l1_data_b
  30. #endif
  31. #ifdef BFIN_PROFILE
  32. static double Telem[16];
  33. static char *TelemNames[16];
  34. static int TelemCnt;
  35. #define PROF(lab,e) { int xx_e = e; char*xx_lab = lab; uint64_t xx_t0 = read_time();
  36. #define EPROF() xx_t0 = read_time()-xx_t0; Telem[xx_e] = Telem[xx_e] + xx_t0; TelemNames[xx_e] = xx_lab; }
  37. static void prof_report (void)
  38. {
  39. int i;
  40. double s = 0;
  41. for (i=0;i<16;i++) {
  42. double v;
  43. if (TelemNames[i]) {
  44. v = Telem[i]/TelemCnt;
  45. av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n", TelemNames[i],v,v/64);
  46. s = s + Telem[i];
  47. }
  48. }
  49. av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n%20.4f\t%d\n",
  50. "total",s/TelemCnt,s/TelemCnt/64,s,TelemCnt);
  51. }
  52. static void bfprof (void)
  53. {
  54. static int init;
  55. if (!init) atexit (prof_report);
  56. init=1;
  57. TelemCnt++;
  58. }
  59. #else
  60. #define PROF(a,b)
  61. #define EPROF()
  62. #define bfprof()
  63. #endif
  64. #endif /* AVCODEC_BFIN_DSPUTIL_BFIN_H */