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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for Mac OS 64-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(`DARWIN')
  24. define(`PROLOGUE_cpu',
  25. m4_assert_numargs(1)
  26. ` .text
  27. .globl $1
  28. .align 4
  29. $1:')
  30. define(`EPILOGUE_cpu',
  31. m4_assert_numargs(1))
  32. dnl  LEAL -- Load Effective Address Local.  This is to be used for symbols
  33. dnl  defined in the same file.  It will not work for externally defined
  34. dnl  symbols.
  35. define(`LEAL',
  36. m4_assert_numargs(2)
  37. `ifdef(`PIC',
  38. `
  39. mflr r0 C save return address
  40. bcl 20, 31, 1f
  41. 1: mflr $1
  42. addis $1, $1, ha16($2-1b)
  43. la $1, lo16($2-1b)($1)
  44. mtlr r0 C restore return address
  45. ',`
  46. lis $1, ha16($2)
  47. la $1, lo16($2)($1)
  48. ')')
  49. dnl  LEA -- Load Effective Address.  This is to be used for symbols defined in
  50. dnl  another file.  It will not work for locally defined symbols.
  51. define(`LEA',
  52. m4_assert_numargs(2)
  53. `ifdef(`PIC',
  54. `define(`EPILOGUE_cpu',
  55. ` .non_lazy_symbol_pointer
  56. `L'$2`'$non_lazy_ptr:
  57. .indirect_symbol $2
  58. .quad 0
  59. ')
  60. mflr r0 C save return address
  61. bcl 20, 31, 1f
  62. 1: mflr $1
  63. addis $1, $1, ha16(`L'$2`'$non_lazy_ptr-1b)
  64. ld $1, lo16(`L'$2`'$non_lazy_ptr-1b)($1)
  65. mtlr r0 C restore return address
  66. ',`
  67. lis $1, ha16($2)
  68. la $1, lo16($2)($1)
  69. ')')
  70. define(`EXTERN',
  71. m4_assert_numargs(1)
  72. `dnl')
  73. define(`EXTERN_FUNC',
  74. m4_assert_numargs(1)
  75. `dnl')
  76. define(`DEF_OBJECT',
  77. m4_assert_numargs_range(1,2)
  78. ` .const
  79. ALIGN(ifelse($#,1,2,$2))
  80. $1:
  81. ')
  82. define(`END_OBJECT',
  83. m4_assert_numargs(1))
  84. define(`CALL',
  85. `bl GSYM_PREFIX`'$1')
  86. define(`ASM_END', `dnl')
  87. divert