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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for Mac OS 32-bit assembly.
  3. dnl  Copyright 2005, 2006 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
  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. define(`ASM_START',`')
  20. dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo)
  21. dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
  22. dnl
  23. define(`PROLOGUE_cpu',
  24. m4_assert_numargs(1)
  25. ` .text
  26. .globl $1
  27. .align 3
  28. $1:')
  29. define(`EPILOGUE_cpu',
  30. m4_assert_numargs(1))
  31. dnl  LEA -- Load Effective Address.
  32. define(`LEA',
  33. m4_assert_numargs(2)
  34. `ifdef(`PIC',
  35. ` mflr r0 C save return address
  36. bcl 20, 31, 1f
  37. 1: mflr $1
  38. addis $1, $1, ha16($2-1b)
  39. la $1, lo16($2-1b)($1)
  40. mtlr r0 C restore return address
  41. ',`
  42. lis $1, ha16($2)
  43. la $1, lo16($2)($1)
  44. ')')
  45. define(`LEAL',
  46. m4_assert_numargs(2)
  47. `LEA($1,$2)')
  48. define(`EXTERN',
  49. m4_assert_numargs(1)
  50. `dnl')
  51. define(`DEF_OBJECT',
  52. m4_assert_numargs_range(1,2)
  53. ` .const
  54. ALIGN(ifelse($#,1,2,$2))
  55. $1:
  56. ')
  57. define(`END_OBJECT',
  58. m4_assert_numargs(1))
  59. define(`ASM_END', `dnl')
  60. ifdef(`PIC',`
  61. define(`PIC_SLOW')')
  62. divert