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

数学计算

开发平台:

Unix_Linux

  1. dnl  mc68020 mpn_add_n, mpn_sub_n -- add or subtract limb vectors
  2. dnl  Copyright 1992, 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2005 Free
  3. dnl  Software Foundation, Inc.
  4. dnl
  5. dnl  This file is part of the GNU MP Library.
  6. dnl
  7. dnl  The GNU MP Library is free software; you can redistribute it and/or
  8. dnl  modify it under the terms of the GNU Lesser General Public License as
  9. dnl  published by the Free Software Foundation; either version 3 of the
  10. dnl  License, or (at your option) any later version.
  11. dnl
  12. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  13. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. dnl  Lesser General Public License for more details.
  16. dnl
  17. dnl  You should have received a copy of the GNU Lesser General Public License
  18. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  19. include(`../config.m4')
  20. C         cycles/limb
  21. C 68040:      6
  22. ifdef(`OPERATION_add_n',`
  23.   define(M4_inst,       addxl)
  24.   define(M4_function_n, mpn_add_n)
  25. ',`ifdef(`OPERATION_sub_n',`
  26.   define(M4_inst,       subxl)
  27.   define(M4_function_n, mpn_sub_n)
  28. ',
  29. `m4_error(`Need OPERATION_add_n or OPERATION_sub_n
  30. ')')')
  31. MULFUNC_PROLOGUE(mpn_add_n mpn_sub_n)
  32. C INPUT PARAMETERS
  33. C res_ptr (sp + 4)
  34. C s1_ptr (sp + 8)
  35. C s2_ptr (sp + 12)
  36. C size (sp + 16)
  37. PROLOGUE(M4_function_n)
  38. C Save used registers on the stack.
  39. movel d2, M(-,sp)
  40. movel a2, M(-,sp)
  41. C Copy the arguments to registers.  Better use movem?
  42. movel M(sp,12), a2
  43. movel M(sp,16), a0
  44. movel M(sp,20), a1
  45. movel M(sp,24), d2
  46. eorw #1, d2
  47. lsrl #1, d2
  48. bcc L(L1)
  49. subql #1, d2 C clears cy as side effect
  50. L(Loop):
  51. movel M(a0,+), d0
  52. movel M(a1,+), d1
  53. M4_inst d1, d0
  54. movel d0, M(a2,+)
  55. L(L1): movel M(a0,+), d0
  56. movel M(a1,+), d1
  57. M4_inst d1, d0
  58. movel d0, M(a2,+)
  59. dbf d2, L(Loop) C loop until 16 lsb of %4 == -1
  60. subxl d0, d0 C d0 <= -cy; save cy as 0 or -1 in d0
  61. subl #0x10000, d2
  62. bcs L(L2)
  63. addl d0, d0 C restore cy
  64. bra L(Loop)
  65. L(L2):
  66. negl d0
  67. C Restore used registers from stack frame.
  68. movel M(sp,+), a2
  69. movel M(sp,+), d2
  70. rts
  71. EPILOGUE(M4_function_n)