123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #ifndef _BITS_SETJMP_H
- #define _BITS_SETJMP_H 1
- #if !defined _SETJMP_H && !defined _PTHREAD_H
- # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
- #endif
- #include <bits/wordsize.h>
- #if __WORDSIZE == 64
- # if defined __USE_MISC || defined _ASM
- # define JB_RBX 0
- # define JB_RBP 1
- # define JB_R12 2
- # define JB_R13 3
- # define JB_R14 4
- # define JB_R15 5
- # define JB_RSP 6
- # define JB_PC 7
- # define JB_SIZE (8*8)
- # endif
- #else
- # if defined __USE_MISC || defined _ASM
- # define JB_BX 0
- # define JB_SI 1
- # define JB_DI 2
- # define JB_BP 3
- # define JB_SP 4
- # define JB_PC 5
- # define JB_SIZE 24
- # endif
- #endif
- #ifndef _ASM
- # if __WORDSIZE == 64
- typedef long int __jmp_buf[8];
- # else
- typedef int __jmp_buf[6];
- # endif
- # if __WORDSIZE == 64
- # define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((void *) (address) < (void *) (jmpbuf)[JB_RSP])
- # else
- # define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((void *) (address) < (void *) (jmpbuf)[JB_SP])
- # endif
- #endif
- #endif /* bits/setjmp.h */
|