setjmp.S 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * libc/sysdeps/linux/nios2/setjmp.S
  3. *
  4. * Copyright (C) 2004,05,06 Microtronix Datacom Ltd
  5. *
  6. * This file is subject to the terms and conditions of the GNU Lesser
  7. * General Public License. See the file COPYING.LIB in the main
  8. * directory of this archive for more details.
  9. *
  10. * Written by Wentao Xu <wentao@microtronix.com>
  11. *
  12. */
  13. #include <features.h>
  14. #define _ASM
  15. #define _SETJMP_H
  16. #include <bits/setjmp.h>
  17. .globl __sigsetjmp
  18. .type __sigsetjmp,@function
  19. .balign 4
  20. __sigsetjmp:
  21. stw r16, (JB_REGS+ 0)(r4)
  22. stw r17, (JB_REGS+ 4)(r4)
  23. stw r18, (JB_REGS+ 8)(r4)
  24. stw r19, (JB_REGS+12)(r4)
  25. stw r20, (JB_REGS+16)(r4)
  26. stw r21, (JB_REGS+20)(r4)
  27. stw r22, (JB_REGS+24)(r4)
  28. stw r23, (JB_REGS+28)(r4)
  29. stw ra, JB_PC(r4)
  30. stw sp, JB_SP(r4)
  31. stw fp, JB_FP(r4)
  32. stw gp, JB_GP(r4)
  33. #if defined(__HAVE_FPU__)
  34. SAVE_FPU r4 JB_FPREGS
  35. #endif
  36. #ifdef __PIC__
  37. /* just pray 16 bit offset is enough */
  38. br __sigjmp_save
  39. #else
  40. movhi r8, %hi(__sigjmp_save)
  41. ori r8, r8, %lo(__sigjmp_save)
  42. jmp r8
  43. #endif
  44. .size __sigsetjmp,.-__sigsetjmp