__longjmp.S 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* longjmp 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, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <features.h>
  16. #include <bits/arm_asm.h>
  17. .global __longjmp
  18. .type __longjmp,%function
  19. .align 2
  20. #if defined(THUMB1_ONLY)
  21. .thumb_func
  22. __longjmp:
  23. mov r2, r0
  24. movs r0, r1
  25. /* can't let setjmp() return zero! */
  26. bne 1f
  27. mov r0, #1
  28. 1:
  29. mov r1, r2
  30. /* Restore registers, shuffling them through low regs. */
  31. add r2, #(4 * 4)
  32. ldmia r2!, {r4, r5, r6, r7}
  33. mov r8, r4
  34. mov r9, r5
  35. mov sl, r6
  36. mov fp, r7
  37. ldmia r2!, {r4, r5}
  38. mov sp, r4
  39. mov lr, r5
  40. ldmia r1!, {r4, r5, r6, r7}
  41. bx lr
  42. #else
  43. __longjmp:
  44. mov ip, r0 /* save jmp_buf pointer */
  45. movs r0, r1 /* get the return value in place */
  46. IT(t, eq)
  47. moveq r0, #1 /* can't let setjmp() return zero! */
  48. #if defined(__thumb2__)
  49. /* Thumb-2 does not allow loading sp with ldm. */
  50. ldmia ip!, {v1-v6, sl, fp}
  51. ldr sp, [ip], #4
  52. ldr lr, [ip], #4
  53. #else
  54. ldmia ip!, {v1-v6, sl, fp, sp, lr}
  55. #endif
  56. #if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__
  57. #ifdef __VFP_FP__
  58. /* Restore the VFP registers. */
  59. /* Following instruction is fldmiax ip!, {d8-d15}. */
  60. ldc p11, cr8, [r12], #68
  61. /* Restore the floating-point status register. */
  62. ldr r1, [ip], #4
  63. /* Following instruction is fmxr fpscr, r1. */
  64. mcr p10, 7, r1, cr1, cr0, 0
  65. # elif defined __MAVERICK__
  66. cfldrd mvd4, [ip], #8 ; nop
  67. cfldrd mvd5, [ip], #8 ; nop
  68. cfldrd mvd6, [ip], #8 ; nop
  69. cfldrd mvd7, [ip], #8 ; nop
  70. cfldrd mvd8, [ip], #8 ; nop
  71. cfldrd mvd9, [ip], #8 ; nop
  72. cfldrd mvd10, [ip], #8 ; nop
  73. cfldrd mvd11, [ip], #8 ; nop
  74. cfldrd mvd12, [ip], #8 ; nop
  75. cfldrd mvd13, [ip], #8 ; nop
  76. cfldrd mvd14, [ip], #8 ; nop
  77. cfldrd mvd15, [ip], #8
  78. # else
  79. lfmfd f4, 4, [ip] ! /* load the floating point regs */
  80. # endif
  81. #endif
  82. #ifdef __IWMMXT__
  83. /* Restore the call-preserved iWMMXt registers. */
  84. /* Following instructions are wldrd wr10, [ip], #8 (etc.) */
  85. ldcl p1, cr10, [r12], #8
  86. ldcl p1, cr11, [r12], #8
  87. ldcl p1, cr12, [r12], #8
  88. ldcl p1, cr13, [r12], #8
  89. ldcl p1, cr14, [r12], #8
  90. ldcl p1, cr15, [r12], #8
  91. #endif
  92. #if defined(__USE_BX__)
  93. bx lr
  94. #else
  95. mov pc, lr
  96. #endif
  97. #endif
  98. .size __longjmp,.-__longjmp
  99. libc_hidden_def(__longjmp)