_setjmp.S 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* $OpenBSD: _setjmp.S,v 1.4 2007/11/24 19:47:05 deraadt Exp $ */
  2. /* $NetBSD: _setjmp.S,v 1.2 1994/10/26 06:39:54 cgd Exp $ */
  3. /*
  4. * Copyright (c) 1992, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * This software was developed by the Computer Systems Engineering group
  8. * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
  9. * contributed to Berkeley.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. * 3. Neither the name of the University nor the names of its contributors
  20. * may be used to endorse or promote products derived from this software
  21. * without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33. * SUCH DAMAGE.
  34. *
  35. * Header: _setjmp.s,v 1.1 91/07/06 16:45:53 torek Exp
  36. */
  37. /*
  38. * C library -- _setjmp, _longjmp
  39. *
  40. * _longjmp(a,v)
  41. * will generate a "return(v?v:1)" from
  42. * the last call to
  43. * _setjmp(a)
  44. * by unwinding the call stack.
  45. * The previous signal state is NOT restored.
  46. */
  47. #include "DEFS.h"
  48. ENTRY(_setjmp)
  49. std %sp, [%o0+0] /* caller's stack pointer and return pc */
  50. st %fp, [%o0+8] /* store caller's frame pointer */
  51. retl
  52. clr %o0 ! return 0
  53. ENTRY(_longjmp)
  54. addcc %o1, %g0, %g6 ! compute v ? v : 1 in a global register
  55. be,a 0f
  56. mov 1, %g6
  57. 0:
  58. mov %o0, %g1 ! save a in another global register
  59. ld [%g1+8], %g7 /* get caller's frame */
  60. 1:
  61. cmp %fp, %g7 ! compare against desired frame
  62. bl,a 1b ! if below,
  63. restore ! pop frame and loop
  64. be,a 2f ! if there,
  65. ldd [%g1+0], %o2 ! fetch return %sp and pc, and get out
  66. Lbotch:
  67. call _longjmperror ! otherwise, went too far; bomb out
  68. nop
  69. unimp 0
  70. 2:
  71. cmp %o2, %sp ! %sp must not decrease
  72. bge,a 3f
  73. mov %o2, %sp ! it is OK, put it in place
  74. b,a Lbotch
  75. 3:
  76. jmp %o3 + 8 ! success, return %g6
  77. mov %g6, %o0