com.asm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD K6-2 mpn_com -- mpn bitwise one's complement.
  2. dnl  Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. NAILS_SUPPORT(0-31)
  20. C    alignment dst/src, A=0mod8 N=4mod8
  21. C       A/A   A/N   N/A   N/N
  22. C K6-2  1.0   1.18  1.18  1.18  cycles/limb
  23. C K6    1.5   1.85  1.75  1.85
  24. C void mpn_com (mp_ptr dst, mp_srcptr src, mp_size_t size);
  25. C
  26. C Take the bitwise ones-complement of src,size and write it to dst,size.
  27. defframe(PARAM_SIZE,12)
  28. defframe(PARAM_SRC, 8)
  29. defframe(PARAM_DST, 4)
  30. TEXT
  31. ALIGN(16)
  32. PROLOGUE(mpn_com)
  33. deflit(`FRAME',0)
  34. movl PARAM_SIZE, %ecx
  35. movl PARAM_SRC, %eax
  36. movl PARAM_DST, %edx
  37. shrl %ecx
  38. jnz L(two_or_more)
  39. movl (%eax), %eax
  40. notl_or_xorl_GMP_NUMB_MASK( %eax)
  41. movl %eax, (%edx)
  42. ret
  43. L(two_or_more):
  44. pushl %ebx FRAME_pushl()
  45. pcmpeqd %mm7, %mm7 C all ones
  46. movl %ecx, %ebx
  47. ifelse(GMP_NAIL_BITS,0,,
  48. ` psrld $GMP_NAIL_BITS, %mm7') C clear nails
  49. ALIGN(8)
  50. L(top):
  51. C eax src
  52. C ebx floor(size/2)
  53. C ecx counter
  54. C edx dst
  55. C
  56. C mm0 scratch
  57. C mm7 mask
  58. movq -8(%eax,%ecx,8), %mm0
  59. pxor %mm7, %mm0
  60. movq %mm0, -8(%edx,%ecx,8)
  61. loop L(top)
  62. jnc L(no_extra)
  63. movl (%eax,%ebx,8), %eax
  64. notl_or_xorl_GMP_NUMB_MASK( %eax)
  65. movl %eax, (%edx,%ebx,8)
  66. L(no_extra):
  67. popl %ebx
  68. emms_or_femms
  69. ret
  70. EPILOGUE()