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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for amd64 assembler.
  3. dnl  Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 Free
  4. dnl  Software Foundation, Inc.
  5. dnl
  6. dnl  This file is part of the GNU MP Library.
  7. dnl
  8. dnl  The GNU MP Library is free software; you can redistribute it and/or
  9. dnl  modify it under the terms of the GNU Lesser General Public License as
  10. dnl  published by the Free Software Foundation; either version 3 of the
  11. dnl  License, or (at your option) any later version.
  12. dnl
  13. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  14. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. dnl  Lesser General Public License for more details.
  17. dnl
  18. dnl  You should have received a copy of the GNU Lesser General Public License
  19. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  20. dnl  Usage: CPUVEC_FUNCS_LIST
  21. dnl
  22. dnl  A list of the functions from gmp-impl.h x86 struct cpuvec_t, in the
  23. dnl  order they appear in that structure.
  24. define(CPUVEC_FUNCS_LIST,
  25. ``add_n',
  26. `addmul_1',
  27. `copyd',
  28. `copyi',
  29. `divexact_1',
  30. `divexact_by3c',
  31. `divrem_1',
  32. `gcd_1',
  33. `lshift',
  34. `mod_1',
  35. `mod_34lsub1',
  36. `modexact_1c_odd',
  37. `mul_1',
  38. `mul_basecase',
  39. `preinv_divrem_1',
  40. `preinv_mod_1',
  41. `rshift',
  42. `sqr_basecase',
  43. `sub_n',
  44. `submul_1'')
  45. dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo)
  46. dnl
  47. dnl  In the amd64 code we use explicit TEXT and ALIGN() calls in the code,
  48. dnl  since different alignments are wanted in various circumstances.  So for
  49. dnl  instance,
  50. dnl
  51. dnl                  TEXT
  52. dnl                  ALIGN(16)
  53. dnl          PROLOGUE(mpn_add_n)
  54. dnl                  ...
  55. dnl          EPILOGUE()
  56. define(`PROLOGUE_cpu',
  57. m4_assert_numargs(1)
  58. ` GLOBL $1
  59. TYPE($1,`function')
  60. $1:
  61. ')
  62. dnl  Usage: ASSERT([cond][,instructions])
  63. dnl
  64. dnl  If WANT_ASSERT is 1, output the given instructions and expect the given
  65. dnl  flags condition to then be satisfied.  For example,
  66. dnl
  67. dnl         ASSERT(ne, `cmpq %rax, %rbx')
  68. dnl
  69. dnl  The instructions can be omitted to just assert a flags condition with
  70. dnl  no extra calculation.  For example,
  71. dnl
  72. dnl         ASSERT(nc)
  73. dnl
  74. dnl  When `instructions' is not empty, a pushfq/popfq is added for
  75. dnl  convenience to preserve the flags, but the instructions themselves must
  76. dnl  preserve any registers that matter.
  77. dnl
  78. dnl  The condition can be omitted to just output the given instructions when
  79. dnl  assertion checking is wanted.  In this case the pushf/popf is omitted.
  80. dnl  For example,
  81. dnl
  82. dnl         ASSERT(, `movq %rax, VAR_KEEPVAL')
  83. define(ASSERT,
  84. m4_assert_numargs_range(1,2)
  85. m4_assert_defined(`WANT_ASSERT')
  86. `ifelse(WANT_ASSERT,1,
  87. `ifelse(`$1',,
  88. ` $2',
  89. `ifelse(`$2',,,
  90. ` pushfq')
  91. $2
  92. j`$1' L(ASSERT_ok`'ASSERT_counter)
  93. ud2 C assertion failed
  94. L(ASSERT_ok`'ASSERT_counter):
  95. ifelse(`$2',,,` popfq')
  96. define(`ASSERT_counter',incr(ASSERT_counter))')')')
  97. define(ASSERT_counter,1)
  98. define(`LEA',`
  99. mov $1@GOTPCREL(%rip), $2
  100. ')
  101. define(`DEF_OBJECT',
  102. m4_assert_numargs_range(1,2)
  103. ` RODATA
  104. ALIGN(ifelse($#,1,2,$2))
  105. $1:
  106. ')
  107. define(`END_OBJECT',
  108. m4_assert_numargs(1)
  109. ` SIZE(`$1',.-`$1')')
  110. define(`R32',
  111. `ifelse($1,`%rax',`%eax',
  112. $1,`%rbx',`%ebx',
  113. $1,`%rcx',`%ecx',
  114. $1,`%rdx',`%edx',
  115. $1,`%rsi',`%esi',
  116. $1,`%rdi',`%edi',
  117. $1,`%rbp',`%ebp',
  118. $1,`%r8',`%r8d',
  119. $1,`%r9',`%r9d',
  120. $1,`%r10',`%r10d',
  121. $1,`%r11',`%r11d',
  122. $1,`%r12',`%r12d',
  123. $1,`%r13',`%r13d',
  124. $1,`%r14',`%r14d',
  125. $1,`%r15',`%r15d')')
  126. define(`R8',
  127. `ifelse($1,`%rax',`%al',
  128. $1,`%rbx',`%bl',
  129. $1,`%rcx',`%cl',
  130. $1,`%rdx',`%dl',
  131. $1,`%rsi',`%sil',
  132. $1,`%rdi',`%dil',
  133. $1,`%rbp',`%bpl',
  134. $1,`%r8',`%r8b',
  135. $1,`%r9',`%r9b',
  136. $1,`%r10',`%r10b',
  137. $1,`%r11',`%r11b',
  138. $1,`%r12',`%r12b',
  139. $1,`%r13',`%r13b',
  140. $1,`%r14',`%r14b',
  141. $1,`%r15',`%r15b')')
  142. dnl  Usage: CALL(funcname)
  143. dnl
  144. ifdef(`PIC',
  145.   `define(`CALL',`call GSYM_PREFIX`'$1@PLT')',
  146.   `define(`CALL',`call GSYM_PREFIX`'$1')')
  147. define(`JUMPTABSECT', `.section .data.rel.ro.local,"aw",@progbits')
  148. divert`'dnl