jmpbuf-unwind.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
  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; see the file COPYING.LIB. If
  14. not, see <http://www.gnu.org/licenses/>.  */
  15. #include <setjmp.h>
  16. #include <stdint.h>
  17. #include <unwind.h>
  18. /* Test if longjmp to JMPBUF would unwind the frame
  19. containing a local variable at ADDRESS. */
  20. #undef _JMPBUF_UNWINDS
  21. #define _JMPBUF_UNWINDS(jmpbuf, address, demangle) \
  22. ((void *) (address) > (void *) demangle (jmpbuf[JB_SP]))
  23. #define _JMPBUF_CFA_UNWINDS_ADJ(_jmpbuf, _context, _adj) \
  24. _JMPBUF_UNWINDS_ADJ (_jmpbuf, (void *) _Unwind_GetCFA (_context), _adj)
  25. #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \
  26. ((uintptr_t) (_address) - (_adj) > (uintptr_t) (_jmpbuf)[JB_SP] - (_adj))
  27. #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val)