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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_copyd
  2. dnl  Copyright 2004, 2005 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C cycles/limb
  16. C POWER3/PPC630:     1
  17. C POWER4/PPC970:     1
  18. C INPUT PARAMETERS
  19. C rp r3
  20. C up r4
  21. C n r5
  22. ASM_START()
  23. PROLOGUE(mpn_copyd)
  24. rldic. r0, r5, 3, 59 C r0 = (r5 & 3) << 3; cr0 = (n == 4t)?
  25. cmpldi cr6, r0, 16 C cr6 = (n cmp 4t + 2)?
  26. ifdef(`HAVE_ABI_mode32',
  27. ` rldic r6, r5, 3, 32', C byte count corresponding to n
  28. ` rldicr r6, r5, 3, 60') C byte count corresponding to n
  29. addi r5, r5, 4 C compute...
  30. ifdef(`HAVE_ABI_mode32',
  31. ` rldicl r5, r5, 62,34', C ...branch count
  32. ` rldicl r5, r5, 62, 2') C ...branch count
  33. mtctr r5
  34. add r4, r4, r6
  35. add r3, r3, r6
  36. sub r4, r4, r0 C offset up
  37. sub r3, r3, r0 C offset rp
  38. beq cr0, L(L00)
  39. blt cr6, L(L01)
  40. beq cr6, L(L10)
  41. b L(L11)
  42. ALIGN(16)
  43. L(oop): ld r6, 24(r4)
  44. std r6, 24(r3)
  45. L(L11): ld r6, 16(r4)
  46. std r6, 16(r3)
  47. L(L10): ld r6, 8(r4)
  48. std r6, 8(r3)
  49. L(L01): ld r6, 0(r4)
  50. std r6, 0(r3)
  51. L(L00): addi r4, r4, -32
  52. addi r3, r3, -32
  53. bdnz L(oop)
  54. blr
  55. EPILOGUE()