/* * The x86 Win32 incarnation of arch-dependent OS-dependent routines. * See also "win32-os.c". */ /* * This software is part of the SBCL system. See the README file for * more information. * * This software is derived from the CMU CL system, which was * written at Carnegie Mellon University and released into the * public domain. The software is in the public domain and is * provided with absolutely no warranty. See the COPYING and CREDITS * files for more information. */ #include #include #include #include #include #include #include #include "./signal.h" #include "os.h" #include "arch.h" #include "globals.h" #include "interrupt.h" #include "interr.h" #include "lispregs.h" #include "sbcl.h" #include #include #include #include #include #include "thread.h" /* dynamic_values_bytes */ #include "validate.h" size_t os_vm_page_size; int arch_os_thread_init(struct thread *thread) { { void *top_exception_frame; void *cur_stack_end; void *cur_stack_start; MEMORY_BASIC_INFORMATION stack_memory; asm volatile ("movl %%fs:0,%0": "=r" (top_exception_frame)); asm volatile ("movl %%fs:4,%0": "=r" (cur_stack_end)); /* Can't pull stack start from fs:4 or fs:8 or whatever, * because that's only what currently has memory behind * it from being used, so do a quick VirtualQuery() and * grab the AllocationBase. -AB 2006/11/25 */ if (!VirtualQuery(&stack_memory, &stack_memory, sizeof(stack_memory))) { fprintf(stderr, "VirtualQuery: 0x%lx.\n", GetLastError()); lose("Could not query stack memory information."); } cur_stack_start = stack_memory.AllocationBase; /* We use top_exception_frame rather than cur_stack_end to * elide the last few (boring) stack entries at the bottom of * the backtrace. */ thread->control_stack_start = cur_stack_start; thread->control_stack_end = top_exception_frame; #ifndef LISP_FEATURE_SB_THREAD /* * Theoretically, threaded SBCL binds directly against * the thread structure for these values. We don't do * threads yet, but we'll probably do the same. We do * need to reset these, though, because they were * initialized based on the wrong stack space. */ SetSymbolValue(CONTROL_STACK_START,(lispobj)thread->control_stack_start,thread); SetSymbolValue(CONTROL_STACK_END,(lispobj)thread->control_stack_end,thread); #endif } #ifdef LISP_FEATURE_SB_THREAD /* this must be called from a function that has an exclusive lock * on all_threads */ struct user_desc ldt_entry = { 1, 0, 0, /* index, address, length filled in later */ 1, MODIFY_LDT_CONTENTS_DATA, 0, 0, 0, 1 }; int n; get_spinlock(&modify_ldt_lock,thread); n=modify_ldt(0,local_ldt_copy,sizeof local_ldt_copy); /* get next free ldt entry */ if(n) { u32 *p; for(n=0,p=local_ldt_copy;*p;p+=LDT_ENTRY_SIZE/sizeof(u32)) n++; } ldt_entry.entry_number=n; ldt_entry.base_addr=(unsigned long) thread; ldt_entry.limit=dynamic_values_bytes; ldt_entry.limit_in_pages=0; if (modify_ldt (1, &ldt_entry, sizeof (ldt_entry)) != 0) { modify_ldt_lock=0; /* modify_ldt call failed: something magical is not happening */ return -1; } __asm__ __volatile__ ("movw %w0, %%fs" : : "q" ((n << 3) /* selector number */ + (1 << 2) /* TI set = LDT */ + 3)); /* privilege level */ thread->tls_cookie=n; modify_ldt_lock=0; if(n<0) return 0; #endif return 1; } /* free any arch/os-specific resources used by thread, which is now * defunct. Not called on live threads */ int arch_os_thread_cleanup(struct thread *thread) { return 0; } os_context_register_t * os_context_register_addr(os_context_t *context, int offset) { switch(offset) { case reg_EAX: return &context->Eax; case reg_ECX: return &context->Ecx; case reg_EDX: return &context->Edx; case reg_EBX: return &context->Ebx; case reg_ESP: return &context->Esp; case reg_EBP: return &context->Ebp; case reg_ESI: return &context->Esi; case reg_EDI: return &context->Edi; default: return 0; } } os_context_register_t * os_context_pc_addr(os_context_t *context) { return &context->Eip; /* REG_EIP */ } os_context_register_t * os_context_sp_addr(os_context_t *context) { return &context->Esp; /* REG_UESP */ } os_context_register_t * os_context_fp_addr(os_context_t *context) { return &context->Ebp; /* REG_EBP */ } unsigned long os_context_fp_control(os_context_t *context) { return ((((context->FloatSave.ControlWord) & 0xffff) ^ 0x3f) | (((context->FloatSave.StatusWord) & 0xffff) << 16)); } void os_restore_fp_control(os_context_t *context) { asm ("fldcw %0" : : "m" (context->FloatSave.ControlWord)); } void os_flush_icache(os_vm_address_t address, os_vm_size_t length) { }