setjmp.S 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. #define _ASM
  17. #define _SETJMP_H
  18. #include <bits/setjmp.h>
  19. .global __sigsetjmp
  20. .type __sigsetjmp,%function
  21. __sigsetjmp:
  22. /* Save registers. */
  23. movq %rbx, (JB_RBX*8)(%rdi)
  24. movq %rbp, (JB_RBP*8)(%rdi)
  25. movq %r12, (JB_R12*8)(%rdi)
  26. movq %r13, (JB_R13*8)(%rdi)
  27. movq %r14, (JB_R14*8)(%rdi)
  28. movq %r15, (JB_R15*8)(%rdi)
  29. leaq 8(%rsp), %rdx /* Save SP as it will be after we return. */
  30. movq %rdx, (JB_RSP*8)(%rdi)
  31. movq (%rsp), %rax /* Save PC we are returning to now. */
  32. movq %rax, (JB_PC*8)(%rdi)
  33. /* Make a tail call to __sigjmp_save; it takes the same args. */
  34. #ifdef __PIC__
  35. jmp __sigjmp_save@PLT
  36. #else
  37. jmp __sigjmp_save
  38. #endif
  39. .size __sigsetjmp,.-__sigsetjmp