setjmp.S 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* setjmp for x86-64.
  2. Copyright (C) 2001, 2003 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 Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the 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. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <jmpbuf-offsets.h>
  17. .global __sigsetjmp
  18. .type __sigsetjmp,%function
  19. __sigsetjmp:
  20. /* Save registers. */
  21. movq %rbx, (JB_RBX*8)(%rdi)
  22. movq %rbp, (JB_RBP*8)(%rdi)
  23. movq %r12, (JB_R12*8)(%rdi)
  24. movq %r13, (JB_R13*8)(%rdi)
  25. movq %r14, (JB_R14*8)(%rdi)
  26. movq %r15, (JB_R15*8)(%rdi)
  27. leaq 8(%rsp), %rdx /* Save SP as it will be after we return. */
  28. movq %rdx, (JB_RSP*8)(%rdi)
  29. movq (%rsp), %rax /* Save PC we are returning to now. */
  30. movq %rax, (JB_PC*8)(%rdi)
  31. /* Make a tail call to __sigjmp_save; it takes the same args. */
  32. #ifdef __PIC__
  33. jmp __sigjmp_save@PLT
  34. #else
  35. jmp __sigjmp_save
  36. #endif
  37. .size __sigsetjmp,.-__sigsetjmp
  38. libc_hidden_def(__sigsetjmp)