setjmp.S 2.1 KB

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