setjmp.S 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* setjmp for ARM.
  2. Copyright (C) 1997, 1998 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 Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the 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. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <features.h>
  17. #define _SETJMP_H
  18. #define _ASM
  19. #include <bits/setjmp.h>
  20. .global __sigsetjmp
  21. .type __sigsetjmp,%function
  22. .align 2
  23. __sigsetjmp:
  24. mov ip, r0
  25. /* Save registers */
  26. stmia ip!, {v1-v6, sl, fp, sp, lr}
  27. #if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__
  28. # ifdef __VFP_FP__
  29. /* Store the VFP registers. */
  30. /* Following instruction is fstmiax ip!, {d8-d15}. */
  31. stc p11, cr8, [r12], #68
  32. /* Store the floating-point status register. */
  33. /* Following instruction is fmrx r2, fpscr. */
  34. mrc p10, 7, r2, cr1, cr0, 0
  35. str r2, [ip], #4
  36. # elif defined __MAVERICK__
  37. cfstrd mvd4, [ip], #8 ; nop
  38. cfstrd mvd5, [ip], #8 ; nop
  39. cfstrd mvd6, [ip], #8 ; nop
  40. cfstrd mvd7, [ip], #8 ; nop
  41. cfstrd mvd8, [ip], #8 ; nop
  42. cfstrd mvd9, [ip], #8 ; nop
  43. cfstrd mvd10, [ip], #8 ; nop
  44. cfstrd mvd11, [ip], #8 ; nop
  45. cfstrd mvd12, [ip], #8 ; nop
  46. cfstrd mvd13, [ip], #8 ; nop
  47. cfstrd mvd14, [ip], #8 ; nop
  48. cfstrd mvd15, [ip], #8
  49. # else
  50. sfmea f4, 4, [ip]!
  51. # endif
  52. #endif
  53. /* Make a tail call to __sigjmp_save; it takes the same args. */
  54. #ifdef __PIC__
  55. B __sigjmp_save(PLT)
  56. #else
  57. B __sigjmp_save
  58. #endif
  59. .size __sigsetjmp,.-__sigsetjmp