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

数学计算

开发平台:

Unix_Linux

  1. dnl  IBM POWER mpn_sub_n -- Subtract two limb vectors of equal, non-zero
  2. dnl  length.
  3. dnl  Copyright 1992, 1994, 1995, 1996, 1999, 2000, 2001, 2005 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. dnl  INPUT PARAMETERS
  17. dnl  res_ptr r3
  18. dnl  s1_ptr r4
  19. dnl  s2_ptr r5
  20. dnl  size r6
  21. include(`../config.m4')
  22. ASM_START()
  23. PROLOGUE(mpn_sub_n)
  24. andil. 10,6,1 C odd or even number of limbs?
  25. l 8,0(4) C load least significant s1 limb
  26. l 0,0(5) C load least significant s2 limb
  27. cal 3,-4(3) C offset res_ptr, it's updated before it's used
  28. sri 10,6,1 C count for unrolled loop
  29. sf 7,0,8 C subtract least significant limbs, set cy
  30. mtctr 10 C copy count into CTR
  31. beq 0,Leven C branch if even # of limbs (# of limbs >= 2)
  32. C We have an odd # of limbs.  Add the first limbs separately.
  33. cmpi 1,10,0 C is count for unrolled loop zero?
  34. bc 4,6,L1 C bne cr1,L1 (misassembled by gas)
  35. st 7,4(3)
  36. sfe 3,0,0 C load !cy into ...
  37. sfi 3,3,0 C ... return value register
  38. br C return
  39. C We added least significant limbs.  Now reload the next limbs to enter loop.
  40. L1: lu 8,4(4) C load s1 limb and update s1_ptr
  41. lu 0,4(5) C load s2 limb and update s2_ptr
  42. stu 7,4(3)
  43. sfe 7,0,8 C subtract limbs, set cy
  44. Leven: lu 9,4(4) C load s1 limb and update s1_ptr
  45. lu 10,4(5) C load s2 limb and update s2_ptr
  46. bdz Lend C If done, skip loop
  47. Loop: lu 8,4(4) C load s1 limb and update s1_ptr
  48. lu 0,4(5) C load s2 limb and update s2_ptr
  49. sfe 11,10,9 C subtract previous limbs with cy, set cy
  50. stu 7,4(3) C
  51. lu 9,4(4) C load s1 limb and update s1_ptr
  52. lu 10,4(5) C load s2 limb and update s2_ptr
  53. sfe 7,0,8 C subtract previous limbs with cy, set cy
  54. stu 11,4(3) C
  55. bdn Loop C decrement CTR and loop back
  56. Lend: sfe 11,10,9 C subtract limbs with cy, set cy
  57. st 7,4(3) C
  58. st 11,8(3) C
  59. sfe 3,0,0 C load !cy into ...
  60. sfi 3,3,0 C ... return value register
  61. br
  62. EPILOGUE(mpn_sub_n)