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.

328 lines
9.7KB

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