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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_submul_1 -- Multiply a limb vector with a limb and subtract
  2. dnl  the result from a second limb vector.
  3. dnl  Copyright 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
  4. dnl  Foundation, Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C cycles/limb
  18. C POWER3/PPC630:    6-18
  19. C POWER4/PPC970:    10
  20. C POWER5:           10.5
  21. C INPUT PARAMETERS
  22. define(`rp', `r3')
  23. define(`up', `r4')
  24. define(`n', `r5')
  25. define(`vl', `r6')
  26. define(`cy', `r7')
  27. ASM_START()
  28. PROLOGUE(mpn_submul_1)
  29. li cy, 0 C cy_limb = 0
  30. PROLOGUE(mpn_submul_1c)
  31. mtctr n
  32. addic r0, r0, 0
  33. addi rp, rp, -8
  34. ALIGN(16)
  35. L(top):
  36. ld r0, 0(up)
  37. ld r10, 8(rp)
  38. mulld r9, r0, vl
  39. mulhdu r5, r0, vl
  40. adde r9, r9, cy
  41. addi up, up, 8
  42. addze cy, r5
  43. subf r12, r9, r10
  44. not r0, r10
  45. addc r11, r9, r0 C inverted carry from subf
  46. stdu r12, 8(rp)
  47. bdnz L(top)
  48. addze r3, cy
  49. blr
  50. EPILOGUE(mpn_submul_1)
  51. EPILOGUE(mpn_submul_1c)