setjmp.S 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* setjmp for i386.
  2. Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #define _ASM
  17. #define _SETJMP_H
  18. #include <bits/setjmp.h>
  19. .globl __setjmp;
  20. .type __setjmp,@function
  21. .align 4; \
  22. __setjmp:
  23. popl %eax /* Pop return address. */
  24. popl %ecx /* Pop jmp_buf. */
  25. pushl $0 /* Push zero argument. */
  26. pushl %ecx /* Push jmp_buf. */
  27. pushl %eax /* Push back return address. */
  28. .globl __sigsetjmp;
  29. .type __sigsetjmp,@function
  30. .align 4; \
  31. __sigsetjmp:
  32. movl 4(%esp), %eax /* User's jmp_buf in %eax. */
  33. /* Save registers. */
  34. movl %ebx, (JB_BX*4)(%eax)
  35. movl %esi, (JB_SI*4)(%eax)
  36. movl %edi, (JB_DI*4)(%eax)
  37. movl %ebp, (JB_BP*4)(%eax)
  38. leal 4(%esp), %ecx /* Save SP as it will be after we return. */
  39. movl %ecx, (JB_SP*4)(%eax)
  40. movl 0(%esp), %ecx /* Save PC we are returning to now. */
  41. movl %ecx, (JB_PC*4)(%eax)
  42. /* Make a tail call to __sigjmp_save; it takes the same args. */
  43. #if defined(PIC)
  44. /* We cannot use the PLT, because it requires that %ebx be set, but
  45. we can't save and restore our caller's value. Instead, we do an
  46. indirect jump through the GOT, using for the temporary register
  47. %ecx, which is call-clobbered. */
  48. call Lhere
  49. Lhere:
  50. popl %ecx
  51. addl $_GLOBAL_OFFSET_TABLE_+[.-Lhere], %ecx
  52. movl (__sigjmp_save)(%ecx), %ecx
  53. jmp *%ecx
  54. #else
  55. jmp __sigjmp_save
  56. #endif
  57. .size __sigsetjmp,.-__sigsetjmp;