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, 2005 Free Software Foundation, Inc.
  4. dnl  This file is part of the GNU MP Library.
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  6. dnl  it under the terms of the GNU Lesser General Public License as published
  7. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  8. dnl  your option) any later version.
  9. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  10. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. dnl  License for more details.
  13. dnl  You should have received a copy of the GNU Lesser General Public License
  14. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. include(`../config.m4')
  16. C cycles/limb
  17. C POWER3/PPC630:     ?
  18. C POWER4/PPC970:     16
  19. C INPUT PARAMETERS
  20. C rp r3
  21. C up r4
  22. C n r5
  23. C v r6,r7  or  r7,r8
  24. ASM_START()
  25. PROLOGUE(mpn_submul_1)
  26. ifdef(`BROKEN_LONGLONG_PARAM',
  27. ` rldimi r8, r7, 32,0 C assemble vlimb from separate 32-bit arguments
  28. mr r6, r8
  29. ',`
  30. rldimi r7, r6, 32,0 C assemble vlimb from separate 32-bit arguments
  31. mr r6, r7
  32. ')
  33. li r7, 0 C cy_limb = 0
  34. mtctr r5
  35. addic r0, r0, 0
  36. addi r3, r3, -8
  37. addi r4, r4, -8
  38. L(oop): ldu r0, 8(r4)
  39. mulld r9, r0, r6
  40. adde r12, r9, r7 C add old high limb and new low limb
  41. srdi r5, r9, 32
  42. srdi r11, r7, 32
  43. adde r5, r5, r11 C add high limb parts, set cy
  44. mulhdu r7, r0, r6
  45. addze r7, r7
  46. ld r10, 8(r3)
  47. subfc r9, r12, r10
  48. srdi r5, r12, 32
  49. srdi r11, r10, 32
  50. subfe r5, r5, r11 C subtract high limb parts, set cy
  51. stdu r9, 8(r3)
  52. subfe r11, r11, r11 C invert ...
  53. addic r11, r11, 1 C ... carry
  54. bdnz L(oop)
  55. addze r4, r7
  56. srdi r3, r4, 32
  57. blr
  58. EPILOGUE()