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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD Athlon mpn_com -- mpn bitwise one's complement.
  2. dnl  Copyright 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. C K7: 1.0 cycles/limb
  20. C void mpn_com (mp_ptr dst, mp_srcptr src, mp_size_t size);
  21. C
  22. C The loop form below is necessary for the claimed speed.  It needs to be
  23. C aligned to a 16 byte boundary and only 16 bytes long.  Maybe that's so it
  24. C fits in a BTB entry.  The adjustments to %eax and %edx avoid offsets on
  25. C the movq's and achieve the necessary size.
  26. C
  27. C If both src and dst are 4mod8, the loop runs at 1.5 c/l.  So long as one
  28. C of the two is 0mod8, it runs at 1.0 c/l.  On that basis dst is checked
  29. C (offset by the size, as per the loop addressing) and one high limb
  30. C processed separately to get alignment.
  31. C
  32. C The padding for the nails case is unattractive, but shouldn't cost any
  33. C cycles.  Explicit .byte's guarantee the desired instructions, at a point
  34. C where we're probably stalled waiting for loads anyway.
  35. C
  36. C Enhancements:
  37. C
  38. C The combination load/pxor/store might be able to be unrolled to approach
  39. C 0.5 c/l if desired.
  40. defframe(PARAM_SIZE,12)
  41. defframe(PARAM_SRC, 8)
  42. defframe(PARAM_DST, 4)
  43. TEXT
  44. ALIGN(16)
  45. PROLOGUE(mpn_com)
  46. deflit(`FRAME',0)
  47. movl PARAM_DST, %edx
  48. movl PARAM_SIZE, %ecx
  49. pcmpeqd %mm7, %mm7
  50. leal (%edx,%ecx,4), %eax
  51. andl $4, %eax
  52. ifelse(GMP_NAIL_BITS,0,,
  53. ` psrld $GMP_NAIL_BITS, %mm7') C GMP_NUMB_MASK
  54. movl PARAM_SRC, %eax
  55. movd -4(%eax,%ecx,4), %mm0 C src high limb
  56. ifelse(GMP_NAIL_BITS,0,,
  57. ` C padding for alignment below
  58. .byte 0x8d, 0xb6, 0x00, 0x00, 0x00, 0x00 C lea 0(%esi),%esi
  59. .byte 0x8d, 0xbf, 0x00, 0x00, 0x00, 0x00 C lea 0(%edi),%edi
  60. ')
  61. jz L(aligned)
  62. pxor %mm7, %mm0
  63. movd %mm0, -4(%edx,%ecx,4) C dst high limb
  64. decl %ecx
  65. jz L(done)
  66. L(aligned):
  67. addl $4, %eax
  68. addl $4, %edx
  69. decl %ecx
  70. jz L(one)
  71. C offset 0x30 for no nails, or 0x40 for nails
  72. ALIGN(16)
  73. L(top):
  74. C eax src
  75. C ebx
  76. C ecx counter
  77. C edx dst
  78. subl $2, %ecx
  79. movq (%eax,%ecx,4), %mm0
  80. pxor %mm7, %mm0
  81. movq %mm0, (%edx,%ecx,4)
  82. jg L(top)
  83. jnz L(done) C if size even
  84. L(one):
  85. movd -4(%eax), %mm0 C src low limb
  86. pxor %mm7, %mm0
  87. movd %mm0, -4(%edx) C dst low limb
  88. L(done):
  89. emms
  90. ret
  91. EPILOGUE()