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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC 750 mpn_com -- mpn bitwise one's complement
  2. dnl  Copyright 2002, 2003 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C                cycles/limb
  20. C 603e:            ?
  21. C 604e:            3.0
  22. C 75x (G3):        2.0
  23. C 7400,7410 (G4):  2.0
  24. C 744x,745x (G4+): 3.0
  25. C void mpn_com (mp_ptr dst, mp_srcptr src, mp_size_t size);
  26. C
  27. C This loop form is necessary for the claimed speed.
  28. ASM_START()
  29. PROLOGUE(mpn_com)
  30. C r3 dst
  31. C r4 src
  32. C r5 size
  33. mtctr r5 C size
  34. lwz r5, 0(r4) C src low limb
  35. sub r4, r4, r3 C src-dst
  36. subi r3, r3, 4 C dst-4
  37. addi r4, r4, 8 C src-dst+8
  38. bdz L(one)
  39. L(top):
  40. C r3 &dst[i-1]
  41. C r4 src-dst
  42. C r5 src[i]
  43. C r6 scratch
  44. not r6, r5 C ~src[i]
  45. lwzx r5, r4,r3 C src[i+1]
  46. stwu r6, 4(r3) C dst[i]
  47. bdnz L(top)
  48. L(one):
  49. not r6, r5
  50. stw r6, 4(r3) C dst[size-1]
  51. blr
  52. EPILOGUE()