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.

298 lines
9.4KB

  1. /*
  2. * Copyright (c) 2002 Brian Foley
  3. * Copyright (c) 2002 Dieter Shirley
  4. * Copyright (c) 2003-2004 Romain Dolbeau <romain@dolbeau.org>
  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. #include "libavcodec/dsputil.h"
  23. #include "dsputil_ppc.h"
  24. #include "dsputil_altivec.h"
  25. int mm_flags = 0;
  26. int mm_support(void)
  27. {
  28. int result = 0;
  29. #if HAVE_ALTIVEC
  30. if (has_altivec()) {
  31. result |= FF_MM_ALTIVEC;
  32. }
  33. #endif /* result */
  34. return result;
  35. }
  36. #if CONFIG_POWERPC_PERF
  37. unsigned long long perfdata[POWERPC_NUM_PMC_ENABLED][powerpc_perf_total][powerpc_data_total];
  38. /* list below must match enum in dsputil_ppc.h */
  39. static unsigned char* perfname[] = {
  40. "ff_fft_calc_altivec",
  41. "gmc1_altivec",
  42. "dct_unquantize_h263_altivec",
  43. "fdct_altivec",
  44. "idct_add_altivec",
  45. "idct_put_altivec",
  46. "put_pixels16_altivec",
  47. "avg_pixels16_altivec",
  48. "avg_pixels8_altivec",
  49. "put_pixels8_xy2_altivec",
  50. "put_no_rnd_pixels8_xy2_altivec",
  51. "put_pixels16_xy2_altivec",
  52. "put_no_rnd_pixels16_xy2_altivec",
  53. "hadamard8_diff8x8_altivec",
  54. "hadamard8_diff16_altivec",
  55. "avg_pixels8_xy2_altivec",
  56. "clear_blocks_dcbz32_ppc",
  57. "clear_blocks_dcbz128_ppc",
  58. "put_h264_chroma_mc8_altivec",
  59. "avg_h264_chroma_mc8_altivec",
  60. "put_h264_qpel16_h_lowpass_altivec",
  61. "avg_h264_qpel16_h_lowpass_altivec",
  62. "put_h264_qpel16_v_lowpass_altivec",
  63. "avg_h264_qpel16_v_lowpass_altivec",
  64. "put_h264_qpel16_hv_lowpass_altivec",
  65. "avg_h264_qpel16_hv_lowpass_altivec",
  66. ""
  67. };
  68. #include <stdio.h>
  69. #endif
  70. #if CONFIG_POWERPC_PERF
  71. void powerpc_display_perf_report(void)
  72. {
  73. int i, j;
  74. av_log(NULL, AV_LOG_INFO, "PowerPC performance report\n Values are from the PMC registers, and represent whatever the registers are set to record.\n");
  75. for(i = 0 ; i < powerpc_perf_total ; i++) {
  76. for (j = 0; j < POWERPC_NUM_PMC_ENABLED ; j++) {
  77. if (perfdata[j][i][powerpc_data_num] != (unsigned long long)0)
  78. av_log(NULL, AV_LOG_INFO,
  79. " Function \"%s\" (pmc%d):\n\tmin: %"PRIu64"\n\tmax: %"PRIu64"\n\tavg: %1.2lf (%"PRIu64")\n",
  80. perfname[i],
  81. j+1,
  82. perfdata[j][i][powerpc_data_min],
  83. perfdata[j][i][powerpc_data_max],
  84. (double)perfdata[j][i][powerpc_data_sum] /
  85. (double)perfdata[j][i][powerpc_data_num],
  86. perfdata[j][i][powerpc_data_num]);
  87. }
  88. }
  89. }
  90. #endif /* CONFIG_POWERPC_PERF */
  91. /* ***** WARNING ***** WARNING ***** WARNING ***** */
  92. /*
  93. clear_blocks_dcbz32_ppc will not work properly on PowerPC processors with a
  94. cache line size not equal to 32 bytes.
  95. Fortunately all processor used by Apple up to at least the 7450 (aka second
  96. generation G4) use 32 bytes cache line.
  97. This is due to the use of the 'dcbz' instruction. It simply clear to zero a
  98. single cache line, so you need to know the cache line size to use it !
  99. It's absurd, but it's fast...
  100. update 24/06/2003 : Apple released yesterday the G5, with a PPC970. cache line
  101. size: 128 bytes. Oups.
  102. The semantic of dcbz was changed, it always clear 32 bytes. so the function
  103. below will work, but will be slow. So I fixed check_dcbz_effect to use dcbzl,
  104. which is defined to clear a cache line (as dcbz before). So we still can
  105. distinguish, and use dcbz (32 bytes) or dcbzl (one cache line) as required.
  106. see <http://developer.apple.com/technotes/tn/tn2087.html>
  107. and <http://developer.apple.com/technotes/tn/tn2086.html>
  108. */
  109. static void clear_blocks_dcbz32_ppc(DCTELEM *blocks)
  110. {
  111. POWERPC_PERF_DECLARE(powerpc_clear_blocks_dcbz32, 1);
  112. register int misal = ((unsigned long)blocks & 0x00000010);
  113. register int i = 0;
  114. POWERPC_PERF_START_COUNT(powerpc_clear_blocks_dcbz32, 1);
  115. #if 1
  116. if (misal) {
  117. ((unsigned long*)blocks)[0] = 0L;
  118. ((unsigned long*)blocks)[1] = 0L;
  119. ((unsigned long*)blocks)[2] = 0L;
  120. ((unsigned long*)blocks)[3] = 0L;
  121. i += 16;
  122. }
  123. for ( ; i < sizeof(DCTELEM)*6*64-31 ; i += 32) {
  124. __asm__ volatile("dcbz %0,%1" : : "b" (blocks), "r" (i) : "memory");
  125. }
  126. if (misal) {
  127. ((unsigned long*)blocks)[188] = 0L;
  128. ((unsigned long*)blocks)[189] = 0L;
  129. ((unsigned long*)blocks)[190] = 0L;
  130. ((unsigned long*)blocks)[191] = 0L;
  131. i += 16;
  132. }
  133. #else
  134. memset(blocks, 0, sizeof(DCTELEM)*6*64);
  135. #endif
  136. POWERPC_PERF_STOP_COUNT(powerpc_clear_blocks_dcbz32, 1);
  137. }
  138. /* same as above, when dcbzl clear a whole 128B cache line
  139. i.e. the PPC970 aka G5 */
  140. #if HAVE_DCBZL
  141. static void clear_blocks_dcbz128_ppc(DCTELEM *blocks)
  142. {
  143. POWERPC_PERF_DECLARE(powerpc_clear_blocks_dcbz128, 1);
  144. register int misal = ((unsigned long)blocks & 0x0000007f);
  145. register int i = 0;
  146. POWERPC_PERF_START_COUNT(powerpc_clear_blocks_dcbz128, 1);
  147. #if 1
  148. if (misal) {
  149. // we could probably also optimize this case,
  150. // but there's not much point as the machines
  151. // aren't available yet (2003-06-26)
  152. memset(blocks, 0, sizeof(DCTELEM)*6*64);
  153. }
  154. else
  155. for ( ; i < sizeof(DCTELEM)*6*64 ; i += 128) {
  156. __asm__ volatile("dcbzl %0,%1" : : "b" (blocks), "r" (i) : "memory");
  157. }
  158. #else
  159. memset(blocks, 0, sizeof(DCTELEM)*6*64);
  160. #endif
  161. POWERPC_PERF_STOP_COUNT(powerpc_clear_blocks_dcbz128, 1);
  162. }
  163. #else
  164. static void clear_blocks_dcbz128_ppc(DCTELEM *blocks)
  165. {
  166. memset(blocks, 0, sizeof(DCTELEM)*6*64);
  167. }
  168. #endif
  169. #if HAVE_DCBZL
  170. /* check dcbz report how many bytes are set to 0 by dcbz */
  171. /* update 24/06/2003 : replace dcbz by dcbzl to get
  172. the intended effect (Apple "fixed" dcbz)
  173. unfortunately this cannot be used unless the assembler
  174. knows about dcbzl ... */
  175. static long check_dcbzl_effect(void)
  176. {
  177. register char *fakedata = av_malloc(1024);
  178. register char *fakedata_middle;
  179. register long zero = 0;
  180. register long i = 0;
  181. long count = 0;
  182. if (!fakedata) {
  183. return 0L;
  184. }
  185. fakedata_middle = (fakedata + 512);
  186. memset(fakedata, 0xFF, 1024);
  187. /* below the constraint "b" seems to mean "Address base register"
  188. in gcc-3.3 / RS/6000 speaks. seems to avoid using r0, so.... */
  189. __asm__ volatile("dcbzl %0, %1" : : "b" (fakedata_middle), "r" (zero));
  190. for (i = 0; i < 1024 ; i ++) {
  191. if (fakedata[i] == (char)0)
  192. count++;
  193. }
  194. av_free(fakedata);
  195. return count;
  196. }
  197. #else
  198. static long check_dcbzl_effect(void)
  199. {
  200. return 0;
  201. }
  202. #endif
  203. static void prefetch_ppc(void *mem, int stride, int h)
  204. {
  205. register const uint8_t *p = mem;
  206. do {
  207. __asm__ volatile ("dcbt 0,%0" : : "r" (p));
  208. p+= stride;
  209. } while(--h);
  210. }
  211. void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx)
  212. {
  213. // Common optimizations whether AltiVec is available or not
  214. c->prefetch = prefetch_ppc;
  215. switch (check_dcbzl_effect()) {
  216. case 32:
  217. c->clear_blocks = clear_blocks_dcbz32_ppc;
  218. break;
  219. case 128:
  220. c->clear_blocks = clear_blocks_dcbz128_ppc;
  221. break;
  222. default:
  223. break;
  224. }
  225. #if HAVE_ALTIVEC
  226. if(CONFIG_H264_DECODER) dsputil_h264_init_ppc(c, avctx);
  227. if (has_altivec()) {
  228. mm_flags |= FF_MM_ALTIVEC;
  229. dsputil_init_altivec(c, avctx);
  230. if(CONFIG_VC1_DECODER)
  231. vc1dsp_init_altivec(c, avctx);
  232. float_init_altivec(c, avctx);
  233. int_init_altivec(c, avctx);
  234. c->gmc1 = gmc1_altivec;
  235. #if CONFIG_ENCODERS
  236. if (avctx->dct_algo == FF_DCT_AUTO ||
  237. avctx->dct_algo == FF_DCT_ALTIVEC) {
  238. c->fdct = fdct_altivec;
  239. }
  240. #endif //CONFIG_ENCODERS
  241. if (avctx->lowres==0) {
  242. if ((avctx->idct_algo == FF_IDCT_AUTO) ||
  243. (avctx->idct_algo == FF_IDCT_ALTIVEC)) {
  244. c->idct_put = idct_put_altivec;
  245. c->idct_add = idct_add_altivec;
  246. c->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
  247. }else if((CONFIG_VP3_DECODER || CONFIG_VP5_DECODER || CONFIG_VP6_DECODER) &&
  248. avctx->idct_algo==FF_IDCT_VP3){
  249. c->idct_put = ff_vp3_idct_put_altivec;
  250. c->idct_add = ff_vp3_idct_add_altivec;
  251. c->idct = ff_vp3_idct_altivec;
  252. c->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
  253. }
  254. }
  255. #if CONFIG_POWERPC_PERF
  256. {
  257. int i, j;
  258. for (i = 0 ; i < powerpc_perf_total ; i++) {
  259. for (j = 0; j < POWERPC_NUM_PMC_ENABLED ; j++) {
  260. perfdata[j][i][powerpc_data_min] = 0xFFFFFFFFFFFFFFFFULL;
  261. perfdata[j][i][powerpc_data_max] = 0x0000000000000000ULL;
  262. perfdata[j][i][powerpc_data_sum] = 0x0000000000000000ULL;
  263. perfdata[j][i][powerpc_data_num] = 0x0000000000000000ULL;
  264. }
  265. }
  266. }
  267. #endif /* CONFIG_POWERPC_PERF */
  268. }
  269. #endif /* HAVE_ALTIVEC */
  270. }