bsd-setjmp.S 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * libc/sysdeps/linux/nios2/bsd-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 <jmpbuf-offsets.h>
  14. .globl setjmp
  15. .type setjmp,@function
  16. .balign 4
  17. setjmp:
  18. stw r16, (JB_REGS+ 0)(r4)
  19. stw r17, (JB_REGS+ 4)(r4)
  20. stw r18, (JB_REGS+ 8)(r4)
  21. stw r19, (JB_REGS+12)(r4)
  22. stw r20, (JB_REGS+16)(r4)
  23. stw r21, (JB_REGS+20)(r4)
  24. stw r22, (JB_REGS+24)(r4)
  25. stw r23, (JB_REGS+28)(r4)
  26. stw ra, JB_PC(r4)
  27. stw sp, JB_SP(r4)
  28. stw fp, JB_FP(r4)
  29. stw gp, JB_GP(r4)
  30. #if defined(__HAVE_FPU__)
  31. SAVE_FPU r4 JB_FPREGS
  32. #endif
  33. movui r5, 1
  34. #ifdef __PIC__
  35. /* just pray 16 bit offset is enough */
  36. br __sigjmp_save
  37. #else
  38. movhi r8, %hi(__sigjmp_save)
  39. ori r8, r8, %lo(__sigjmp_save)
  40. jmp r8
  41. #endif