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

数学计算

开发平台:

Unix_Linux

  1. dnl  Intel Pentium mpn_copyd -- copy limb vector, decrementing.
  2. dnl  Copyright 1996, 2001, 2002, 2006 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 P5: 1.25 cycles/limb
  20. C void mpn_copyd (mp_ptr dst, mp_srcptr src, mp_size_t size);
  21. C
  22. C See comments in copyi.asm.
  23. defframe(PARAM_SIZE,12)
  24. defframe(PARAM_SRC, 8)
  25. defframe(PARAM_DST, 4)
  26. TEXT
  27. ALIGN(8)
  28. PROLOGUE(mpn_copyd)
  29. deflit(`FRAME',0)
  30. movl PARAM_SRC, %eax
  31. movl PARAM_SIZE, %ecx
  32. pushl %esi FRAME_pushl()
  33. pushl %edi FRAME_pushl()
  34. leal -4(%eax,%ecx,4), %eax C &src[size-1]
  35. movl PARAM_DST, %edx
  36. subl $7, %ecx C size-7
  37. jle L(end)
  38. movl 28-4(%edx,%ecx,4), %esi C prefetch cache, dst[size-1]
  39. nop
  40. L(top):
  41. C eax src, decrementing
  42. C ebx
  43. C ecx counter, limbs
  44. C edx dst
  45. C esi scratch
  46. C edi scratch
  47. C ebp
  48. movl 28-32(%edx,%ecx,4), %esi C prefetch dst cache line
  49. subl $8, %ecx
  50. movl (%eax), %esi C read words pairwise
  51. movl -4(%eax), %edi
  52. movl %esi, 56(%edx,%ecx,4) C store words pairwise
  53. movl %edi, 52(%edx,%ecx,4)
  54. movl -8(%eax), %esi
  55. movl -12(%eax), %edi
  56. movl %esi, 48(%edx,%ecx,4)
  57. movl %edi, 44(%edx,%ecx,4)
  58. movl -16(%eax), %esi
  59. movl -20(%eax), %edi
  60. movl %esi, 40(%edx,%ecx,4)
  61. movl %edi, 36(%edx,%ecx,4)
  62. movl -24(%eax), %esi
  63. movl -28(%eax), %edi
  64. movl %esi, 32(%edx,%ecx,4)
  65. movl %edi, 28(%edx,%ecx,4)
  66. leal -32(%eax), %eax
  67. jg L(top)
  68. L(end):
  69. C ecx -7 to 0, representing respectively 0 to 7 limbs remaining
  70. C eax src end
  71. C edx dst, next location to store
  72. addl $4, %ecx
  73. jle L(no4)
  74. movl (%eax), %esi
  75. movl -4(%eax), %edi
  76. movl %esi, 8(%edx,%ecx,4)
  77. movl %edi, 4(%edx,%ecx,4)
  78. movl -8(%eax), %esi
  79. movl -12(%eax), %edi
  80. movl %esi, (%edx,%ecx,4)
  81. movl %edi, -4(%edx,%ecx,4)
  82. subl $16, %eax
  83. subl $4, %ecx
  84. L(no4):
  85. addl $2, %ecx
  86. jle L(no2)
  87. movl (%eax), %esi
  88. movl -4(%eax), %edi
  89. movl %esi, (%edx,%ecx,4)
  90. movl %edi, -4(%edx,%ecx,4)
  91. subl $8, %eax
  92. subl $2, %ecx
  93. L(no2):
  94. jnz L(done)
  95. movl (%eax), %ecx
  96. movl %ecx, (%edx) C risk of cache bank clash here
  97. L(done):
  98. popl %edi
  99. popl %esi
  100. ret
  101. EPILOGUE()