]> gitweb.factorcode.org Git - factor.git/blob - vm/os-linux-x86.32.hpp
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / vm / os-linux-x86.32.hpp
1 #include <ucontext.h>
2
3 namespace factor
4 {
5
6 inline static void *ucontext_stack_pointer(void *uap)
7 {
8         ucontext_t *ucontext = (ucontext_t *)uap;
9         return (void *)ucontext->uc_mcontext.gregs[7];
10 }
11
12 inline static unsigned int uap_fpu_status(void *uap)
13 {
14         ucontext_t *ucontext = (ucontext_t *)uap;
15         return ucontext->uc_mcontext.fpregs->swd
16              | ucontext->uc_mcontext.fpregs->mxcsr;
17 }
18
19 inline static void uap_clear_fpu_status(void *uap)
20 {
21         ucontext_t *ucontext = (ucontext_t *)uap;
22         ucontext->uc_mcontext.fpregs->swd = 0;
23         ucontext->uc_mcontext.fpregs->mxcsr &= 0xffffffc0;
24 }
25
26 #define UAP_PROGRAM_COUNTER(ucontext) \
27         (((ucontext_t *)(ucontext))->uc_mcontext.gregs[14])
28
29 }