__longjmp.S 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the 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. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #include <jmpbuf-offsets.h>
  16. #define ENV(base,reg) [%base + (reg * 4)]
  17. #define ST_FLUSH_WINDOWS 3
  18. #define RW_FP [%fp + 0x48]
  19. .global __longjmp
  20. .type __longjmp,%function
  21. .align 4
  22. __longjmp:
  23. .register %g2, #scratch
  24. .register %g3, #scratch
  25. /* Store our arguments in global registers so we can still
  26. * use them while unwinding frames and their register windows. */
  27. ld ENV(o0,JB_FP), %g3 /* Cache target FP in register %g3. */
  28. mov %o0, %g1 /* ENV in %g1 */
  29. orcc %o1, %g0, %g2 /* VAL in %g2 */
  30. be,a 0f /* Branch if zero; else skip delay slot. */
  31. mov 1, %g2 /* Delay slot only hit if zero: VAL = 1. */
  32. 0:
  33. xor %fp, %g3, %o0
  34. add %fp, 512, %o1
  35. andncc %o0, 4095, %o0
  36. bne .Lthread
  37. cmp %o1, %g3
  38. bl .Lthread
  39. /* Now we will loop, unwinding the register windows up the stack
  40. * until the restored %fp value matches the target value in %g3. */
  41. .Lloop:
  42. cmp %fp, %g3 /* Have we reached the target frame? */
  43. bl,a .Lloop /* Loop while current fp is below target. */
  44. restore /* Unwind register window in delay slot. */
  45. be,a .Lfound /* Better have hit it exactly. */
  46. ld ENV(g1,JB_SP), %o0 /* Delay slot: extract target SP. */
  47. .Lthread:
  48. /*
  49. * Do a "flush register windows trap". The trap handler in the
  50. * kernel writes all the register windows to their stack slots, and
  51. * marks them all as invalid (needing to be sucked up from the
  52. * stack when used). This ensures that all information needed to
  53. * unwind to these callers is in memory, not in the register
  54. * windows.
  55. */
  56. ta ST_FLUSH_WINDOWS
  57. ld ENV(g1,JB_PC), %o7 /* Set return PC. */
  58. ld ENV(g1,JB_SP), %fp /* Set saved SP on restore below. */
  59. sub %fp, 64, %sp /* Allocate a register frame. */
  60. st %g3, RW_FP /* Set saved FP on restore below. */
  61. retl
  62. restore %g2, 0, %o0 /* Restore values from above register frame. */
  63. .Lfound:
  64. /* We have unwound register windows so %fp matches the target. */
  65. mov %o0, %sp /* OK, install new SP. */
  66. .Lsp_ok:
  67. ld ENV(g1,JB_PC), %o0 /* Extract target return PC. */
  68. jmp %o0 + 8 /* Return there. */
  69. mov %g2, %o0 /* Delay slot: set return value. */
  70. .size __longjmp,.-__longjmp
  71. libc_hidden_def(__longjmp)