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

数学计算

开发平台:

Unix_Linux

  1. dnl  IA-64 mpn_invert_limb -- Invert a normalized limb.
  2. dnl  Copyright 2000, 2002, 2004 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C INPUT PARAMETERS
  16. C d = r32
  17. C           cycles
  18. C Itanium:    74
  19. C Itanium 2:  50+6
  20. C It should be possible to avoid the xmpy.hu and the following tests by
  21. C explicitly chopping in the last fma.  That would save about 10 cycles.
  22. ASM_START()
  23. .sdata
  24. .align 16
  25. ifdef(`HAVE_DOUBLE_IEEE_LITTLE_ENDIAN',`
  26. .LC0: data4 0x00000000, 0x80000000, 0x0000403f, 0x00000000 C 2^64
  27. .LC1: data4 0x00000000, 0x80000000, 0x0000407f, 0x00000000 C 2^128
  28. ',`ifdef(`HAVE_DOUBLE_IEEE_BIG_ENDIAN',`
  29. .LC0: data4 0x403f8000, 0x00000000, 0x00000000, 0x00000000 C 2^64
  30. .LC1: data4 0x407f8000, 0x00000000, 0x00000000, 0x00000000 C 2^128
  31. ',`m4_error(`Oops, need to know float endianness
  32. ')')')
  33. PROLOGUE(mpn_invert_limb)
  34. C 00
  35. addl r14 = @gprel(.LC0), gp
  36. addl r15 = @gprel(.LC1), gp
  37. setf.sig f7 = r32
  38. add r9 = r32, r32 C check for d = 2^63
  39. ;; C 01
  40. ldfe f10 = [r14] C 2^64
  41. ldfe f8 = [r15] C 2^128
  42. cmp.eq p6, p0 = 0, r9 C check for d = 2^63
  43. mov r8 = -1 C retval for 2^63
  44.    (p6) br.ret.spnt.many b0
  45. ;; C 07
  46. fmpy.s1 f11 = f7, f10 C f11 = d * 2^64
  47. fnma.s1 f6 = f7, f10, f8 C f6 = 2^128 - d * 2^64
  48. ;; C 11
  49. frcpa.s1 f8, p6 = f6, f7
  50. ;; C 15
  51.    (p6) fnma.s1 f9 = f7, f8, f1
  52.    (p6) fmpy.s1 f10 = f6, f8
  53. ;; C 19
  54.    (p6) fmpy.s1 f11 = f9, f9
  55.    (p6) fma.s1 f10 = f9, f10, f10
  56. ;; C 23
  57.    (p6) fma.s1 f8 = f9, f8, f8
  58.    (p6) fma.s1 f9 = f11, f10, f10
  59. ;; C 27
  60.    (p6) fma.s1 f8 = f11, f8, f8
  61.    (p6) fnma.s1 f10 = f7, f9, f6
  62. ;; C 31
  63.    (p6) fma.s1 f8 = f10, f8, f9
  64. ;; C 35
  65. fcvt.fxu.trunc.s1 f8 = f8
  66. ;; C 39
  67. getf.sig r8 = f8
  68. xmpy.hu f10 = f8, f7 C di * d
  69. ;; C 43
  70. getf.sig r14 = f10
  71. andcm r9 = -1, r32 C one's complement
  72. ;; C 48
  73. cmp.ltu p6, p0 = r9, r14 C got overflow?
  74. ;; C 49
  75.    (p6) add r8 = -1, r8 C adjust di down
  76. br.ret.sptk.many b0
  77. EPILOGUE()
  78. ASM_END()