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.

305 lines
9.6KB

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