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

数学计算

开发平台:

Unix_Linux

  1. dnl  SPARC v9 64-bit mpn_submul_1 -- Multiply a limb vector with a limb and
  2. dnl  subtract the result from a second limb vector.
  3. dnl  Copyright 2001, 2002, 2003 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 UltraSPARC 1&2:     18
  18. C UltraSPARC 3:       23
  19. C INPUT PARAMETERS
  20. C rp i0
  21. C up i1
  22. C n i2
  23. C v i3
  24. ASM_START()
  25. REGISTER(%g2,#scratch)
  26. PROLOGUE(mpn_submul_1)
  27. save %sp,-176,%sp
  28. sllx %i2, 3, %g2
  29. or %g0, %i1, %o1
  30. add %g2, 15, %o0
  31. or %g0, %i2, %o2
  32. and %o0, -16, %o0
  33. sub %sp, %o0, %sp
  34. add %sp, 2223, %o0
  35. or %g0, %o0, %l0
  36. call mpn_mul_1
  37. or %g0, %i3, %o3
  38. or %g0, %o0, %l1 C preserve carry value from mpn_mul_1
  39. or %g0, %i0, %o0
  40. or %g0, %i0, %o1
  41. or %g0, %l0, %o2
  42. call mpn_sub_n
  43. or %g0, %i2, %o3
  44. ret
  45. restore %l1, %o0, %o0 C sum carry values
  46. EPILOGUE(mpn_submul_1)