setjmp.S 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. .align 4; \
  21. __setjmp:
  22. popl %eax /* Pop return address. */
  23. popl %ecx /* Pop jmp_buf. */
  24. pushl $0 /* Push zero argument. */
  25. pushl %ecx /* Push jmp_buf. */
  26. pushl %eax /* Push back return address. */
  27. .globl __sigsetjmp;
  28. .align 4; \
  29. __sigsetjmp:
  30. movl 4(%esp), %eax /* User's jmp_buf in %eax. */
  31. /* Save registers. */
  32. movl %ebx, (JB_BX*4)(%eax)
  33. movl %esi, (JB_SI*4)(%eax)
  34. movl %edi, (JB_DI*4)(%eax)
  35. movl %ebp, (JB_BP*4)(%eax)
  36. leal 4(%esp), %ecx /* Save SP as it will be after we return. */
  37. movl %ecx, (JB_SP*4)(%eax)
  38. movl 0(%esp), %ecx /* Save PC we are returning to now. */
  39. movl %ecx, (JB_PC*4)(%eax)
  40. /* Make a tail call to __sigjmp_save; it takes the same args. */
  41. #ifdef PIC
  42. /* We cannot use the PLT, because it requires that %ebx be set, but
  43. we can't save and restore our caller's value. Instead, we do an
  44. indirect jump through the GOT, using for the temporary register
  45. %ecx, which is call-clobbered. */
  46. call L(here)
  47. L(here):
  48. popl %ecx
  49. addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ecx
  50. movl (__sigjmp_save)(%ecx), %ecx
  51. jmp *%ecx
  52. #else
  53. jmp __sigjmp_save
  54. #endif
  55. .size __sigsetjmp,.-__sigsetjmp;