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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA 1.1 mpn_mul_1 -- Multiply a limb vector with a limb and store the
  2. dnl  result in a second limb vector.
  3. dnl  Copyright 1992, 1993, 1994, 2000, 2001, 2002 Free Software Foundation,
  4. dnl  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 INPUT PARAMETERS
  18. C res_ptr r26
  19. C s1_ptr r25
  20. C size r24
  21. C s2_limb r23
  22. C This runs at 9 cycles/limb on a PA7000.  With the used instructions, it can
  23. C not become faster due to data cache contention after a store.  On the PA7100
  24. C it runs at 7 cycles/limb.
  25. C We could use fldds to read two limbs at a time from the S1 array, and that
  26. C could bring down the times to 8.5 and 6.5 cycles/limb for the PA7000 and
  27. C PA7100, respectively.  We don't do that since it does not seem worth the
  28. C (alignment) troubles...
  29. C At least the PA7100 is rumored to be able to deal with cache-misses without
  30. C stalling instruction issue.  If this is true, and the cache is actually also
  31. C lockup-free, we should use a deeper software pipeline, and load from S1 very
  32. C early!  (The loads and stores to -12(sp) will surely be in the cache.)
  33. ASM_START()
  34. PROLOGUE(mpn_mul_1)
  35. C .callinfo frame=64,no_calls
  36. ldo 64(%r30),%r30
  37. fldws,ma 4(%r25),%fr5
  38. stw %r23,-16(%r30) C move s2_limb ...
  39. addib,= -1,%r24,L(just_one_limb)
  40.  fldws -16(%r30),%fr4 C ... into fr4
  41. add %r0,%r0,%r0 C clear carry
  42. xmpyu %fr4,%fr5,%fr6
  43. fldws,ma 4(%r25),%fr7
  44. fstds %fr6,-16(%r30)
  45. xmpyu %fr4,%fr7,%fr8
  46. ldw -12(%r30),%r19 C least significant limb in product
  47. ldw -16(%r30),%r28
  48. fstds %fr8,-16(%r30)
  49. addib,= -1,%r24,L(end)
  50.  ldw -12(%r30),%r1
  51. C Main loop
  52. LDEF(loop)
  53. fldws,ma 4(%r25),%fr5
  54. stws,ma %r19,4(%r26)
  55. addc %r28,%r1,%r19
  56. xmpyu %fr4,%fr5,%fr6
  57. ldw -16(%r30),%r28
  58. fstds %fr6,-16(%r30)
  59. addib,<> -1,%r24,L(loop)
  60.  ldw -12(%r30),%r1
  61. LDEF(end)
  62. stws,ma %r19,4(%r26)
  63. addc %r28,%r1,%r19
  64. ldw -16(%r30),%r28
  65. stws,ma %r19,4(%r26)
  66. addc %r0,%r28,%r28
  67. bv 0(%r2)
  68.  ldo -64(%r30),%r30
  69. LDEF(just_one_limb)
  70. xmpyu %fr4,%fr5,%fr6
  71. fstds %fr6,-16(%r30)
  72. ldw -16(%r30),%r28
  73. ldo -64(%r30),%r30
  74. bv 0(%r2)
  75.  fstws %fr6R,0(%r26)
  76. EPILOGUE()