idct_wmmx.asm
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. ;*****************************************************************************
  2. ;*
  3. ;* This program is free software ; you can redistribute it and/or modify
  4. ;* it under the terms of the GNU General Public License as published by
  5. ;* the Free Software Foundation; either version 2 of the License, or
  6. ;* (at your option) any later version.
  7. ;*
  8. ;* This program is distributed in the hope that it will be useful,
  9. ;* but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;* GNU General Public License for more details.
  12. ;*
  13. ;* You should have received a copy of the GNU General Public License
  14. ;* along with this program; if not, write to the Free Software
  15. ;* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16. ;*
  17. ;* $Id: idct_wmmx.asm 324 2005-11-02 04:49:29Z picard $
  18. ;*
  19. ;* The Core Pocket Media Player
  20. ;* Copyright (c) 2004-2005 Gabor Kovacs
  21. ;*
  22. ;*****************************************************************************
  23. AREA |.text|, CODE
  24. EXPORT WMMXIDCT_Const8x8
  25. ALIGN 16
  26. ;WMMXIDCT_Const8x8(int v,uint8_t * Dst,int DstPitch, uint8_t * Src)
  27. WMMXIDCT_Const8x8 PROC
  28. cmp r0,#0
  29. bgt const8x8add
  30. blt const8x8sub
  31. cmp r1,r3
  32. beq const8x8done
  33. macro
  34. const8x8copyrow
  35. wldrd   wr1,[r3]
  36. add r3,r3,#8
  37. wldrd   wr2,[r3]
  38. add r3,r3,#8
  39. wstrd   wr1,[r1]
  40. add r1,r1,r2
  41. wstrd   wr2,[r1]
  42. add r1,r1,r2
  43. mend
  44. const8x8copyrow
  45. const8x8copyrow
  46. const8x8copyrow
  47. const8x8copyrow
  48. const8x8done
  49. mov pc,lr
  50. const8x8add
  51. macro
  52. const8x8addrow
  53. wldrd   wr1,[r3]
  54. add r3,r3,#8
  55. wldrd   wr2,[r3]
  56. add r3,r3,#8
  57. waddbus wr1,wr1,wr0
  58. waddbus wr2,wr2,wr0
  59. wstrd   wr1,[r1]
  60. add r1,r1,r2
  61. wstrd   wr2,[r1]
  62. add r1,r1,r2
  63. mend
  64. tbcstb  wr0,r0
  65. const8x8addrow
  66. const8x8addrow
  67. const8x8addrow
  68. const8x8addrow
  69. mov pc,lr
  70. const8x8sub
  71. macro
  72. const8x8subrow
  73. wldrd   wr1,[r3]
  74. add r3,r3,#8
  75. wldrd   wr2,[r3]
  76. add r3,r3,#8
  77. wsubbus wr1,wr1,wr0
  78. wsubbus wr2,wr2,wr0
  79. wstrd   wr1,[r1]
  80. add r1,r1,r2
  81. wstrd   wr2,[r1]
  82. add r1,r1,r2
  83. mend
  84. rsb r0,r0,#0
  85. tbcstb  wr0,r0
  86. const8x8subrow
  87. const8x8subrow
  88. const8x8subrow
  89. const8x8subrow
  90. mov pc,lr
  91. endp
  92. end