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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD K6-2 mpn_copyd -- copy limb vector, decrementing.
  2. dnl  Copyright 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. C K6-2: 1.0 cycles/limb
  20. C void mpn_copyd (mp_ptr dst, mp_srcptr src, mp_size_t size);
  21. C
  22. C The loop here is no faster than a rep movsl at 1.0 c/l, but it avoids a 30
  23. C cycle startup time, which amounts for instance to a 2x speedup at 15
  24. C limbs.
  25. C
  26. C If dst is 4mod8 the loop would be 1.17 c/l, but that's avoided by
  27. C processing one limb separately to make it aligned.  This and a final odd
  28. C limb are handled in a branch-free fashion, ending up re-copying if the
  29. C special case isn't needed.
  30. C
  31. C Alternatives:
  32. C
  33. C There used to be a big unrolled version of this, running at 0.56 c/l if
  34. C the destination was aligned, but that seemed rather excessive for the
  35. C relative importance of copyd.
  36. C
  37. C If the destination alignment is ignored and just left to run at 1.17 c/l
  38. C some code size and a fixed few cycles can be saved.  Considering how few
  39. C uses copyd finds perhaps that should be favoured.  The current code has
  40. C the attraction of being no slower than a basic rep movsl though.
  41. defframe(PARAM_SIZE,12)
  42. defframe(PARAM_SRC, 8)
  43. defframe(PARAM_DST, 4)
  44. dnl  re-using parameter space
  45. define(SAVE_EBX,`PARAM_SIZE')
  46. TEXT
  47. ALIGN(16)
  48. PROLOGUE(mpn_copyd)
  49. deflit(`FRAME',0)
  50. movl PARAM_SIZE, %ecx
  51. movl %ebx, SAVE_EBX
  52. movl PARAM_SRC, %eax
  53. movl PARAM_DST, %edx
  54. subl $1, %ecx C better code alignment than decl
  55. jb L(zero)
  56. jz L(one_more)
  57. leal 4(%edx,%ecx,4), %ebx
  58. Zdisp( movd, 0,(%eax,%ecx,4), %mm0) C high limb
  59. Zdisp( movd, %mm0, 0,(%edx,%ecx,4)) C Zdisp for good code alignment
  60. cmpl $1, %ecx
  61. je L(one_more)
  62. shrl $2, %ebx
  63. andl $1, %ebx C 1 if dst[size-2] unaligned
  64. subl %ebx, %ecx
  65. nop C code alignment
  66. L(top):
  67. C eax src
  68. C ebx
  69. C ecx counter
  70. C edx dst
  71. movq -4(%eax,%ecx,4), %mm0
  72. subl $2, %ecx
  73. movq %mm0, 4(%edx,%ecx,4)
  74. ja L(top)
  75. L(one_more):
  76. movd (%eax), %mm0
  77. movd %mm0, (%edx)
  78. movl SAVE_EBX, %ebx
  79. emms_or_femms
  80. L(zero):
  81. ret
  82. EPILOGUE()