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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 calling conventions checking.
  2. dnl  Copyright 2000, 2003 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C void x86_fldcw (unsigned short cw);
  20. C
  21. C Execute an fldcw, setting the x87 control word to cw.
  22. PROLOGUE(x86_fldcw)
  23.         fldcw   4(%esp)
  24.         ret
  25. EPILOGUE()
  26. C unsigned short x86_fstcw (void);
  27. C
  28. C Execute an fstcw, returning the current x87 control word.
  29. PROLOGUE(x86_fstcw)
  30.         xorl    %eax, %eax
  31.         pushl   %eax
  32.         fstcw   (%esp)
  33.         popl    %eax
  34.         ret
  35. EPILOGUE()
  36. dnl  Instrumented profiling doesn't come out quite right below, since we
  37. dnl  don't do an actual "ret".  There's only a few instructions here, so
  38. dnl  there's no great need to get them separately accounted, just let them
  39. dnl  get attributed to the caller.
  40. ifelse(WANT_PROFILING,instrument,
  41. `define(`WANT_PROFILING',no)')
  42. C int calling_conventions (...);
  43. C
  44. C The global variable "calling_conventions_function" is the function to
  45. C call, with the arguments as passed here.
  46. C
  47. C Perhaps the finit should be done only if the tags word isn't clear, but
  48. C nothing uses the rounding mode or anything at the moment.
  49. define(G,
  50. m4_assert_numargs(1)
  51. `GSYM_PREFIX`'$1')
  52. .text
  53. ALIGN(8)
  54. PROLOGUE(calling_conventions)
  55. movl (%esp), %eax
  56. movl %eax, G(calling_conventions_retaddr)
  57. movl $L(return), (%esp)
  58. movl %ebx, G(calling_conventions_save_ebx)
  59. movl %esi, G(calling_conventions_save_esi)
  60. movl %edi, G(calling_conventions_save_edi)
  61. movl %ebp, G(calling_conventions_save_ebp)
  62. movl $0x01234567, %ebx
  63. movl $0x89ABCDEF, %esi
  64. movl $0xFEDCBA98, %edi
  65. movl $0x76543210, %ebp
  66. C try to provoke a problem by starting with junk in the registers,
  67. C especially in %eax and %edx which will be return values
  68. movl $0x70246135, %eax
  69. movl $0x8ACE9BDF, %ecx
  70. movl $0xFDB97531, %edx
  71. jmp *G(calling_conventions_function)
  72. L(return):
  73. movl %ebx, G(calling_conventions_ebx)
  74. movl %esi, G(calling_conventions_esi)
  75. movl %edi, G(calling_conventions_edi)
  76. movl %ebp, G(calling_conventions_ebp)
  77. pushf
  78. popl %ebx
  79. movl %ebx, G(calling_conventions_eflags)
  80. fstenv G(calling_conventions_fenv)
  81. finit
  82. movl G(calling_conventions_save_ebx), %ebx
  83. movl G(calling_conventions_save_esi), %esi
  84. movl G(calling_conventions_save_edi), %edi
  85. movl G(calling_conventions_save_ebp), %ebp
  86. jmp *G(calling_conventions_retaddr)
  87. EPILOGUE()