2 * This is the SPARC BSD incarnation of arch-dependent OS-dependent
3 * routines. See also "linux-os.c".
7 * This software is part of the SBCL system. See the README file for
10 * This software is derived from the CMU CL system, which was
11 * written at Carnegie Mellon University and released into the
12 * public domain. The software is in the public domain and is
13 * provided with absolutely no warranty. See the COPYING and CREDITS
14 * files for more information.
18 #include <sys/param.h>
25 #include "interrupt.h"
28 #include <sys/socket.h>
29 #include <sys/utsname.h>
31 #include <sys/types.h>
39 #ifdef LISP_FEATURE_SB_THREAD
40 #error "Define threading support functions"
42 int arch_os_thread_init(struct thread
*thread
) {
43 return 1; /* success */
45 int arch_os_thread_cleanup(struct thread
*thread
) {
46 return 1; /* success */
50 os_context_register_t
*
51 os_context_register_addr(os_context_t
*context
, int offset
)
57 } else if (offset
< 16) {
58 return &context
->uc_mcontext
.__gregs
[offset
+3];
59 } else if (offset
< 32) {
60 /* FIXME: You know, this (int *) stuff looks decidedly
62 int *sp
= (int*) _UC_MACHINE_SP(context
);
63 return &(sp
[offset
-16]);
69 os_context_register_t
*
70 os_context_pc_addr(os_context_t
*context
)
72 return &(context
->uc_mcontext
.__gregs
[_REG_PC
]);
75 os_context_register_t
*
76 os_context_npc_addr(os_context_t
*context
)
78 return &(context
->uc_mcontext
.__gregs
[_REG_nPC
]);
83 os_context_sigmask_addr(os_context_t
*context
)
85 return &(context
->uc_sigmask
);
90 os_context_fp_control(os_context_t
*context
)
92 return (context
->uc_mcontext
.__fpregs
.__fpu_fsr
);
95 void os_flush_icache(os_vm_address_t address
, os_vm_size_t length
)
97 /* see sparc-assem.S */
98 sparc_flush_icache(address
, length
);