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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 mpn_copyi -- copy limb vector, incrementing.
  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. C     cycles/limb  startup (approx)
  20. C P5:     1.0         35
  21. C P6      0.75        45
  22. C K6      1.0         30
  23. C K7:     1.3         65
  24. C P4:     1.0        120
  25. C
  26. C (Startup time includes some function call overheads.)
  27. C void mpn_copyi (mp_ptr dst, mp_srcptr src, mp_size_t size);
  28. C
  29. C Copy src,size to dst,size, working from low to high addresses.
  30. C
  31. C The code here is very generic and can be expected to be reasonable on all
  32. C the x86 family.
  33. C
  34. C P6 -  An MMX based copy was tried, but was found to be slower than a rep
  35. C       movs in all cases.  The fastest MMX found was 0.8 cycles/limb (when
  36. C       fully aligned).  A rep movs seems to have a startup time of about 15
  37. C       cycles, but doing something special for small sizes could lead to a
  38. C       branch misprediction that would destroy any saving.  For now a plain
  39. C       rep movs seems ok.
  40. C
  41. C K62 - We used to have a big chunk of code doing an MMX copy at 0.56 c/l if
  42. C       aligned or a 1.0 rep movs if not.  But that seemed excessive since
  43. C       it only got an advantage half the time, and even then only showed it
  44. C       above 50 limbs or so.
  45. defframe(PARAM_SIZE,12)
  46. defframe(PARAM_SRC, 8)
  47. defframe(PARAM_DST, 4)
  48. deflit(`FRAME',0)
  49. TEXT
  50. ALIGN(32)
  51. C eax saved esi
  52. C ebx
  53. C ecx counter
  54. C edx saved edi
  55. C esi src
  56. C edi dst
  57. C ebp
  58. PROLOGUE(mpn_copyi)
  59. movl PARAM_SIZE, %ecx
  60. movl %esi, %eax
  61. movl PARAM_SRC, %esi
  62. movl %edi, %edx
  63. movl PARAM_DST, %edi
  64. cld C better safe than sorry, see mpn/x86/README
  65. rep
  66. movsl
  67. movl %eax, %esi
  68. movl %edx, %edi
  69. ret
  70. EPILOGUE()