0.7.6.12:
[sbcl.git] / src / runtime / sparc-linux-os.c
index 60c1bc5..fec7970 100644 (file)
@@ -37,9 +37,6 @@
 #include "validate.h"
 size_t os_vm_page_size;
 
-#if defined GENCGC              /* unlikely ... */
-#include "gencgc.h"
-#endif
 
 os_context_register_t   *
 os_context_register_addr(os_context_t *context, int offset)
@@ -75,7 +72,22 @@ os_context_sigmask_addr(os_context_t *context)
     return &(context->si_mask);
 }
 
-void os_flush_icache(os_vm_address_t address, os_vm_size_t length)
+void 
+os_restore_fp_control(os_context_t *context)
+{
+    /* Included here, for reference, is an attempt at the PPC
+       variant. If it weren't the case that SPARC/Linux gave a Bus
+       Error on floating point exceptions, something like this would
+       have to be done. -- CSR, 2002-07-13
+
+    asm ("msfsf $255, %0" : : "m" 
+        (os_context_fp_control(context) & 
+         ~ (FLOAT_STICKY_BITS_MASK | FLOAT_EXCEPTIONS_BYTE_MASK)));
+    */
+}
+
+void 
+os_flush_icache(os_vm_address_t address, os_vm_size_t length)
 {
     /* This is the same for linux and solaris, so see sparc-assem.S */
     sparc_flush_icache(address,length);