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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for MIPS assembly code (both 32-bit and 64-bit).
  3. dnl  Copyright 2000, 2001, 2002 Free 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 modify
  8. dnl  it under the terms of the GNU Lesser General Public License as published
  9. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  10. dnl  your option) any later version.
  11. dnl
  12. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  13. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. dnl  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. dnl  Usage: ASM_START()
  20. define(`ASM_START',
  21. m4_assert_numargs(0)
  22. ` .set noreorder
  23. .set nomacro')
  24. dnl  Usage: X(value)
  25. define(`X',
  26. m4_assert_numargs(1)
  27. `0x$1')
  28. dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo)
  29. dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
  30. define(`PROLOGUE_cpu',
  31. m4_assert_numargs(1)
  32. ` .text
  33. .align 4
  34. .globl $1
  35. .ent $1
  36. $1:')
  37. define(`EPILOGUE_cpu',
  38. m4_assert_numargs(1)
  39. ` .end $1')
  40. dnl  Usage: r0 ... r31
  41. dnl         f0 ... f31
  42. dnl
  43. dnl  Map register names r0 to $0, and f0 to $f0, etc.
  44. dnl
  45. dnl  defreg() is used to protect the $ in $0 (otherwise it would represent a
  46. dnl  macro argument).  Double quoting is used to protect the f0 in $f0
  47. dnl  (otherwise it would be an infinite recursion).
  48. forloop(i,0,31,`defreg(`r'i,$i)')
  49. forloop(i,0,31,`deflit(`f'i,``$f''i)')
  50. dnl  Usage: ASM_END()
  51. define(`ASM_END',
  52. m4_assert_numargs(0)
  53. )
  54. divert