__longjmp.S 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* longjmp for SH.
  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. /* __longjmp(jmpbuf, val) */
  20. .text
  21. .align 4
  22. .type __longjmp,@function
  23. .globl __longjmp;
  24. __longjmp:
  25. mov.l @r4+, r8
  26. mov.l @r4+, r9
  27. mov.l @r4+, r10
  28. mov.l @r4+, r11
  29. mov.l @r4+, r12
  30. mov.l @r4+, r13
  31. mov.l @r4+, r14
  32. mov.l @r4+, r15
  33. #if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__
  34. lds.l @r4+, pr
  35. ldc.l @r4+, gbr
  36. lds.l @r4+, fpscr
  37. fmov.s @r4+, fr12
  38. fmov.s @r4+, fr13
  39. mov r5, r0 /* get the return value in place */
  40. tst r0, r0
  41. bf.s 1f
  42. fmov.s @r4+, fr14
  43. mov #1,r0 /* can't let setjmp() return zero! */
  44. 1:
  45. rts
  46. fmov.s @r4+, fr15
  47. #else
  48. mov r5, r0 /* get the return value in place */
  49. tst r0, r0
  50. bf.s 1f
  51. lds.l @r4+, pr
  52. mov #1,r0 /* can't let setjmp() return zero! */
  53. 1:
  54. rts
  55. ldc.l @r4+, gbr
  56. #endif
  57. .size __longjmp,.-__longjmp;