__longjmp.S 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* Copyright (C) 1991, 93, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. /* Code taken from glibc/sysdeps/sparc/sparc32/ (glibc 2.2.2) */
  16. #include <sysdep.h>
  17. #define _ASM 1
  18. #define _SETJMP_H
  19. #include <bits/setjmp.h>
  20. #define ENV(base,reg) [%base + (reg * 4)]
  21. #define ST_FLUSH_WINDOWS 3
  22. #define RW_FP [%fp + 0x48]
  23. ENTRY(__longjmp)
  24. /* Store our arguments in global registers so we can still
  25. use them while unwinding frames and their register windows. */
  26. ld ENV(o0,JB_FP), %g3 /* Cache target FP in register %g3. */
  27. mov %o0, %g1 /* ENV in %g1 */
  28. orcc %o1, %g0, %g2 /* VAL in %g2 */
  29. be,a 0f /* Branch if zero; else skip delay slot. */
  30. mov 1, %g2 /* Delay slot only hit if zero: VAL = 1. */
  31. 0:
  32. xor %fp, %g3, %o0
  33. add %fp, 512, %o1
  34. andncc %o0, 4095, %o0
  35. bne thread
  36. //bne LOC(thread)
  37. cmp %o1, %g3
  38. bl thread
  39. //bl LOC(thread)
  40. /* Now we will loop, unwinding the register windows up the stack
  41. until the restored %fp value matches the target value in %g3. */
  42. //LOC(loop):
  43. loop:
  44. cmp %fp, %g3 /* Have we reached the target frame? */
  45. bl,a loop /* Loop while current fp is below target. */
  46. //bl,a LOC(loop) /* Loop while current fp is below target. */
  47. restore /* Unwind register window in delay slot. */
  48. be,a found /* Better have hit it exactly. */
  49. //be,a LOC(found) /* Better have hit it exactly. */
  50. ld ENV(g1,JB_SP), %o0 /* Delay slot: extract target SP. */
  51. thread:
  52. //LOC(thread):
  53. /*
  54. * Do a "flush register windows trap". The trap handler in the
  55. * kernel writes all the register windows to their stack slots, and
  56. * marks them all as invalid (needing to be sucked up from the
  57. * stack when used). This ensures that all information needed to
  58. * unwind to these callers is in memory, not in the register
  59. * windows.
  60. */
  61. ta ST_FLUSH_WINDOWS
  62. ld ENV(g1,JB_PC), %o7 /* Set return PC. */
  63. ld ENV(g1,JB_SP), %fp /* Set saved SP on restore below. */
  64. sub %fp, 64, %sp /* Allocate a register frame. */
  65. st %g3, RW_FP /* Set saved FP on restore below. */
  66. retl
  67. restore %g2, 0, %o0 /* Restore values from above register frame. */
  68. found:
  69. //LOC(found):
  70. /* We have unwound register windows so %fp matches the target. */
  71. mov %o0, %sp /* OK, install new SP. */
  72. //LOC(sp_ok):
  73. sp_ok:
  74. ld ENV(g1,JB_PC), %o0 /* Extract target return PC. */
  75. jmp %o0 + 8 /* Return there. */
  76. mov %g2, %o0 /* Delay slot: set return value. */
  77. END(__longjmp)