]> gitweb.factorcode.org Git - factor.git/blob - vm/os-linux-ppc.32.hpp
VM: FRAME_RETURN_ADDRESS define unused
[factor.git] / vm / os-linux-ppc.32.hpp
1 #include <ucontext.h>
2
3 namespace factor {
4
5 #define UAP_STACK_POINTER(ucontext) \
6   ((ucontext_t*)ucontext)->uc_mcontext.uc_regs->gregs[1]
7 #define UAP_PROGRAM_COUNTER(ucontext) \
8   (((ucontext_t*)ucontext)->uc_mcontext.uc_regs->gregs[32])
9 #define UAP_SET_TOC_POINTER(uap, ptr) (void)0
10
11 #define CODE_TO_FUNCTION_POINTER(code) (void)0
12 #define CODE_TO_FUNCTION_POINTER_CALLBACK(vm, code) (void)0
13 #define FUNCTION_CODE_POINTER(ptr) ptr
14 #define FUNCTION_TOC_POINTER(ptr) ptr
15
16 inline static unsigned int uap_fpu_status(void* uap) {
17   union {
18     double as_double;
19     unsigned int as_uint[2];
20   } tmp;
21   tmp.as_double = ((ucontext_t*)uap)->uc_mcontext.uc_regs->fpregs.fpscr;
22   return tmp.as_uint[1];
23 }
24
25 inline static void uap_clear_fpu_status(void* uap) {
26   union {
27     double as_double;
28     unsigned int as_uint[2];
29   } tmp;
30   tmp.as_double = ((ucontext_t*)uap)->uc_mcontext.uc_regs->fpregs.fpscr;
31   tmp.as_uint[1] &= 0x0007f8ff;
32   ((ucontext_t*)uap)->uc_mcontext.uc_regs->fpregs.fpscr = tmp.as_double;
33 }
34
35 }