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

数学计算

开发平台:

Unix_Linux

  1. divert(-1)
  2. dnl  m4 macros for alpha assembler on unicos.
  3. dnl  Copyright 2000, 2002, 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  Note that none of the standard GMP_ASM_ autoconf tests are done for
  20. dnl  unicos, so none of the config.m4 results can be used here.
  21. dnl  No underscores on unicos
  22. define(`GSYM_PREFIX')
  23. define(`ASM_START',
  24. m4_assert_numargs(0)
  25. ` .ident dummy')
  26. define(`X',
  27. m4_assert_numargs(1)
  28. `^X$1')
  29. define(`FLOAT64',
  30. m4_assert_numargs(2)
  31. ` .psect $1@crud,data
  32. $1: .t_floating $2
  33. .endp')
  34. dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo[,gp|noalign])
  35. dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
  36. define(`PROLOGUE_cpu',
  37. m4_assert_numargs_range(1,2)
  38. `ifelse(`$2',gp,,
  39. `ifelse(`$2',noalign,,
  40. `ifelse(`$2',,,`m4_error(`Unrecognised PROLOGUE parameter
  41. ')')')')dnl
  42. .stack 192 ; What does this mean?  Only Cray knows.
  43. .psect $1@code,code,cache
  44. $1::')
  45. define(`EPILOGUE_cpu',
  46. m4_assert_numargs(1)
  47. ` .endp')
  48. dnl  Usage: LDGP(dst,src)
  49. dnl
  50. dnl  Emit an "ldgp dst,src", but only on systems using a GOT (which unicos
  51. dnl  doesn't).
  52. define(LDGP,
  53. m4_assert_numargs(2)
  54. )
  55. dnl  Usage: EXTERN(variable_name)
  56. define(`EXTERN',
  57. m4_assert_numargs(1)
  58. ` .extern $1')
  59. define(`DATASTART',
  60. m4_assert_numargs(1)
  61. ` .psect $1@crud,data
  62. $1:')
  63. define(`DATAEND',
  64. m4_assert_numargs(0)
  65. ` .endp')
  66. define(`ASM_END',
  67. m4_assert_numargs(0)
  68. ` .end')
  69. define(`cvttqc',
  70. m4_assert_numargs(-1)
  71. `cvttq/c')
  72. dnl  Load a symbolic address into a register
  73. define(`LEA',
  74. m4_assert_numargs(2)
  75. `laum $1,  $2(r31)
  76. sll $1,  32,   $1
  77. lalm $1,  $2($1)
  78. lal $1,  $2($1)')
  79. dnl  Usage: ALIGN(bytes)
  80. dnl
  81. dnl  Unicos assembler .align emits zeros, even in code segments, so disable
  82. dnl  aligning.
  83. dnl
  84. dnl  GCC uses a macro emiting nops until the desired alignment is reached
  85. dnl  (see unicosmk_file_start in alpha.c).  Could do something like that if
  86. dnl  we cared.  The maximum desired alignment must be established at the
  87. dnl  start of the section though, since of course emitting nops only
  88. dnl  advances relative to the section beginning.
  89. define(`ALIGN',
  90. m4_assert_numargs(1)
  91. )
  92. divert