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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for powerpc32 GNU/Linux assembly.
  3. dnl  Copyright 2003, 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. `
  26. .section ".text"
  27. .align 3
  28. .globl $1
  29. .type $1, @function
  30. $1:')
  31. define(`EPILOGUE_cpu',
  32. m4_assert_numargs(1)
  33. ` .size $1, .-$1')
  34. define(`LEA',
  35. m4_assert_numargs(2)
  36. `ifdef(`PIC',`
  37. mflr r0
  38. bl _GLOBAL_OFFSET_TABLE_@local-4
  39. mflr $1
  40. mtlr r0
  41. lwz $1, $2@got($1)
  42. ',`
  43. lis $1, $2@ha
  44. la $1, $2@l($1)
  45. ')')
  46. define(`LEAL',
  47. m4_assert_numargs(2)
  48. `LEA($1,$2)')
  49. define(`EXTERN',
  50. m4_assert_numargs(1)
  51. `dnl')
  52. define(`DEF_OBJECT',
  53. m4_assert_numargs_range(1,2)
  54. `
  55. .section .rodata
  56. ALIGN(ifelse($#,1,2,$2))
  57. .type $1, @object
  58. $1:
  59. ')
  60. define(`END_OBJECT',
  61. m4_assert_numargs(1)
  62. ` .size $1, .-$1')
  63. define(`ASM_END', `dnl')
  64. ifdef(`PIC',`
  65. define(`PIC_SLOW')')
  66. dnl  64-bit "long long" parameters are put in an even-odd pair, skipping an
  67. dnl  even register if that was in turn.  I wish somebody could explain why that
  68. dnl  is a good idea.
  69. define(`BROKEN_LONGLONG_PARAM')
  70. divert