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.

329 lines
9.8KB

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