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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 mpn_copyd -- copy limb vector, decrementing.
  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         40
  21. C P6      2.4         70
  22. C K6      1.0         55
  23. C K7:     1.3         75
  24. C P4:     2.6        175
  25. C
  26. C (Startup time includes some function call overheads.)
  27. C void mpn_copyd (mp_ptr dst, mp_srcptr src, mp_size_t size);
  28. C
  29. C Copy src,size to dst,size, working from high to low 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. defframe(PARAM_SIZE,12)
  34. defframe(PARAM_SRC, 8)
  35. defframe(PARAM_DST, 4)
  36. deflit(`FRAME',0)
  37. TEXT
  38. ALIGN(32)
  39. PROLOGUE(mpn_copyd)
  40. C eax saved esi
  41. C ebx
  42. C ecx counter
  43. C edx saved edi
  44. C esi src
  45. C edi dst
  46. C ebp
  47. movl PARAM_SIZE, %ecx
  48. movl %esi, %eax
  49. movl PARAM_SRC, %esi
  50. movl %edi, %edx
  51. movl PARAM_DST, %edi
  52. leal -4(%esi,%ecx,4), %esi
  53. leal -4(%edi,%ecx,4), %edi
  54. std
  55. rep
  56. movsl
  57. cld
  58. movl %eax, %esi
  59. movl %edx, %edi
  60. ret
  61. EPILOGUE()