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.

318 lines
9.4KB

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