1.0.9.53: trivial typo fixes
[sbcl/lichteblau.git] / src / runtime / x86-sunos-os.c
blob46ae0873db49e92407bccb8e20d63620b5af3ce3
1 #include <stdio.h>
2 #include <sys/param.h>
3 #include <sys/file.h>
4 #include "sbcl.h"
5 #include "./signal.h"
6 #include "os.h"
7 #include "arch.h"
8 #include "globals.h"
9 #include "interrupt.h"
10 #include "interr.h"
11 #include "lispregs.h"
12 #include <sys/socket.h>
13 #include <sys/utsname.h>
15 #include <sys/types.h>
16 #include <signal.h>
17 #include <sys/time.h>
18 #include <sys/stat.h>
19 #include <unistd.h>
21 #ifdef LISP_FEATURE_SB_THREAD
22 #include <sys/segment.h>
23 #include <sys/sysi86.h>
24 #endif
26 #include "validate.h"
28 #ifdef LISP_FEATURE_SB_THREAD
29 pthread_mutex_t modify_ldt_lock = PTHREAD_MUTEX_INITIALIZER;
31 static int
32 ldt_index_selector (int index) {
33 return index << 3 | 7;
36 static int
37 find_free_ldt_index () {
38 struct ssd ssd;
39 int usage[65536/sizeof(int)];
40 int i;
41 FILE *fp;
43 memset(usage, 0, sizeof(usage));
45 fp = fopen("/proc/self/ldt", "r");
47 if (fp == NULL) {
48 lose("Couldn't open /proc/self/ldt");
51 while (fread(&ssd, sizeof(ssd), 1, fp) == 1) {
52 int index = ssd.sel >> 3;
53 if (index >= 65536) {
54 lose("segment selector index too large: %d", index);
57 usage[index / sizeof(int)] |= 1 << (index & (sizeof(int)-1));
60 fclose(fp);
62 /* Magic number 7 is the first LDT index that Solaris leaves free. */
63 for (i = 7; i < 65536; i++) {
64 if (~usage[i / sizeof(int)] & (1 << (i & (sizeof(int)-1)))) {
65 return i;
69 lose("Couldn't find a free LDT index");
72 static int
73 install_segment (unsigned long start, unsigned long size) {
74 int selector;
76 thread_mutex_lock(&modify_ldt_lock);
78 selector = ldt_index_selector(find_free_ldt_index());
79 struct ssd ssd = { selector,
80 start,
81 size,
82 0xf2,
83 0x4};
84 if (sysi86(SI86DSCR, &ssd) < 0) {
85 lose("Couldn't install segment for thread-local data");
88 thread_mutex_unlock(&modify_ldt_lock);
90 return selector;
92 #endif
94 int arch_os_thread_init(struct thread *thread) {
95 stack_t sigstack;
97 #ifdef LISP_FEATURE_SB_THREAD
98 int sel = install_segment((unsigned long) thread, dynamic_values_bytes);
100 FSHOW_SIGNAL((stderr, "/ TLS: Allocated LDT %x\n", sel));
101 __asm__ __volatile__ ("mov %0, %%fs" : : "r"(sel));
103 thread->tls_cookie = sel;
104 pthread_setspecific(specials,thread);
105 #endif
107 #ifdef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
108 /* Signal handlers are run on the control stack, so if it is exhausted
109 * we had better use an alternate stack for whatever signal tells us
110 * we've exhausted it */
111 sigstack.ss_sp=((void *) thread)+dynamic_values_bytes;
112 sigstack.ss_flags=0;
113 sigstack.ss_size = 32*SIGSTKSZ;
114 sigaltstack(&sigstack,0);
115 #endif
116 return 1; /* success */
119 int arch_os_thread_cleanup(struct thread *thread) {
120 #if defined(LISP_FEATURE_SB_THREAD)
121 int n = thread->tls_cookie;
122 struct ssd delete = { n, 0, 0, 0, 0};
124 /* Set the %%fs register back to 0 and free the ldt by setting it
125 * to NULL.
127 FSHOW_SIGNAL((stderr, "/ TLS: Freeing LDT %x\n", n));
129 __asm__ __volatile__ ("mov %0, %%fs" : : "r"(0));
131 thread_mutex_lock(&modify_ldt_lock);
132 if (sysi86(SI86DSCR, &delete) < 0) {
133 lose("Couldn't remove segment\n");
135 thread_mutex_unlock(&modify_ldt_lock);
136 #endif
137 return 1; /* success */
140 os_context_register_t *
141 os_context_register_addr(os_context_t *context, int offset)
143 /* Solaris x86 holds %esp value in UESP */
144 switch(offset) {
145 case reg_EAX: return &context->uc_mcontext.gregs[11];
146 case reg_ECX: return &context->uc_mcontext.gregs[10];
147 case reg_EDX: return &context->uc_mcontext.gregs[9];
148 case reg_EBX: return &context->uc_mcontext.gregs[8];
149 case reg_ESP: return &context->uc_mcontext.gregs[17]; /* REG_UESP */
150 case reg_EBP: return &context->uc_mcontext.gregs[6];
151 case reg_ESI: return &context->uc_mcontext.gregs[5];
152 case reg_EDI: return &context->uc_mcontext.gregs[4];
153 default: return 0;
155 return &context->uc_mcontext.gregs[offset];
158 os_context_register_t *
159 os_context_pc_addr(os_context_t *context)
161 return &(context->uc_mcontext.gregs[14]); /* REG_EIP */
164 os_context_register_t *
165 os_context_sp_addr(os_context_t *context)
167 return &(context->uc_mcontext.gregs[17]); /* REG_UESP */
170 sigset_t *
171 os_context_sigmask_addr(os_context_t *context)
173 return &(context->uc_sigmask);
176 void os_flush_icache(os_vm_address_t address, os_vm_size_t length)
180 unsigned long
181 os_context_fp_control(os_context_t *context)
183 int *state = context->uc_mcontext.fpregs.fp_reg_set.fpchip_state.state;
184 /* The STATE array is in the format used by the x86 instruction FNSAVE,
185 * so the FPU control word is in the first 16 bits */
186 int cw = (state[0] & 0xffff);
187 int sw = context->uc_mcontext.fpregs.fp_reg_set.fpchip_state.status;
188 return (cw ^ 0x3f) | (sw << 16);