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.

322 lines
9.5KB

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