setjmp.S 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* setjmp for SH3.
  2. Copyright (C) 1999, 2000 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. #define _SETJMP_H
  17. #define _ASM
  18. #include <bits/setjmp.h>
  19. .text
  20. .align 4
  21. .type __sigsetjmp,@function
  22. .globl __sigsetjmp;
  23. __sigsetjmp:
  24. /* Save registers */
  25. add #(JB_SIZE-5*4), r4 /* this code doesn't do FP yet */
  26. stc.l gbr, @-r4
  27. sts.l pr, @-r4
  28. mov.l r15, @-r4
  29. mov.l r14, @-r4
  30. mov.l r13, @-r4
  31. mov.l r12, @-r4
  32. mov.l r11, @-r4
  33. mov.l r10, @-r4
  34. mov.l r9, @-r4
  35. mov.l r8, @-r4
  36. /* Make a tail call to __sigjmp_save; it takes the same args. */
  37. mov.l .L1, r1
  38. jmp @r1
  39. nop
  40. .align 2
  41. .L1:
  42. .long __sigjmp_save
  43. .size __sigsetjmp,.-__sigsetjmp;