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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for Alpha assembler.
  3. dnl  Copyright 2003, 2004 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. dnl  Usage: ASSERT([reg] [,code])
  20. dnl
  21. dnl  Require that the given reg is non-zero after executing the test code.
  22. dnl  For example,
  23. dnl
  24. dnl         ASSERT(r8,
  25. dnl         `       cmpult r16, r17, r8')
  26. dnl
  27. dnl  If the register argument is empty then nothing is tested, the code is
  28. dnl  just executed.  This can be used for setups required by later ASSERTs.
  29. dnl  If the code argument is omitted then the register is just tested, with
  30. dnl  no special setup code.
  31. define(ASSERT,
  32. m4_assert_numargs_range(1,2)
  33. m4_assert_defined(`WANT_ASSERT')
  34. `ifelse(WANT_ASSERT,1,
  35. `ifelse(`$2',,,`$2')
  36. ifelse(`$1',,,
  37. ` bne $1, L(ASSERTok`'ASSERT_label_counter)
  38. .long 0 C halt
  39. L(ASSERTok`'ASSERT_label_counter):
  40. define(`ASSERT_label_counter',eval(ASSERT_label_counter+1))
  41. ')
  42. ')')
  43. define(`ASSERT_label_counter',1)
  44. dnl  Usage: bigend(`code')
  45. dnl
  46. dnl  Emit the given code only for a big-endian system, like Unicos.  This
  47. dnl  can be used for instance for extra stuff needed by extwl.
  48. define(bigend,
  49. m4_assert_numargs(1)
  50. `ifdef(`HAVE_LIMB_BIG_ENDIAN',`$1',
  51. `ifdef(`HAVE_LIMB_LITTLE_ENDIAN',`',
  52. `m4_error(`Cannot assemble, unknown limb endianness')')')')
  53. dnl  Usage: bwx_available_p
  54. dnl
  55. dnl  Evaluate to 1 if the BWX byte memory instructions are available, or to
  56. dnl  0 if not.
  57. dnl
  58. dnl  Listing the chips which do have BWX means anything we haven't looked at
  59. dnl  will use safe non-BWX code.  The only targets without BWX currently are
  60. dnl  plain alpha (ie. ev4) and alphaev5.
  61. define(bwx_available_p,
  62. m4_assert_numargs(-1)
  63. `m4_ifdef_anyof_p(
  64. `HAVE_HOST_CPU_alphaev56',
  65. `HAVE_HOST_CPU_alphapca56',
  66. `HAVE_HOST_CPU_alphapca57',
  67. `HAVE_HOST_CPU_alphaev6',
  68. `HAVE_HOST_CPU_alphaev67',
  69. `HAVE_HOST_CPU_alphaev68',
  70. `HAVE_HOST_CPU_alphaev69',
  71. `HAVE_HOST_CPU_alphaev7',
  72. `HAVE_HOST_CPU_alphaev79')')
  73. dnl  Usage: unop
  74. dnl
  75. dnl  The Cray Unicos assembler lacks unop, so give the equivalent ldq_u
  76. dnl  explicitly.
  77. define(unop,
  78. m4_assert_numargs(-1)
  79. `ldq_u r31, 0(r30)')
  80. divert