__longjmp.S 1.7 KB

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