0.9.1.38:
[sbcl.git] / src / runtime / alpha-arch.c
index e7cfd42..59402f1 100644 (file)
 
 #include <stdio.h>
 #include <string.h>
-#include <asm/pal.h>           /* for PAL_gentrap */
 
-#include "runtime.h"
 #include "sbcl.h"
+#include "runtime.h"
 #include "globals.h"
 #include "validate.h"
 #include "os.h"
 #include "monitor.h"
 
 extern char call_into_lisp_LRA[], call_into_lisp_end[];
+
 extern size_t os_vm_page_size;
 #define BREAKPOINT_INST 0x80
 
+
 void
 arch_init(void)
 {
-    /* This must be called _after_ os_init, so we know what the page
-     * size is. */
-    if(mmap((os_vm_address_t) call_into_lisp_LRA_page,os_vm_page_size,
-           OS_VM_PROT_ALL,MAP_PRIVATE|MAP_ANONYMOUS|MAP_FIXED,-1,0)
-       == (os_vm_address_t) -1)
+    /* This must be called _after_ os_init(), so that we know what the
+     * page size is. */
+
+    if (mmap((os_vm_address_t) call_into_lisp_LRA_page,os_vm_page_size,
+            OS_VM_PROT_ALL,MAP_PRIVATE|MAP_ANONYMOUS|MAP_FIXED,-1,0)
+       == (os_vm_address_t) -1)
        perror("mmap");
     
     /* call_into_lisp_LRA is a collection of trampolines written in asm -
@@ -67,25 +69,17 @@ arch_get_bad_addr (int sig, siginfo_t *code, os_context_t *context)
        sig, code, context); */
     pc= (unsigned int *)(*os_context_pc_addr(context));
 
-    if(((unsigned long)pc) & 3) {
+    if (((unsigned long)pc) & 3) {
        return NULL;            /* In what case would pc be unaligned?? */
     }
 
-    if( (pc < READ_ONLY_SPACE_START ||
-        pc >= READ_ONLY_SPACE_START+READ_ONLY_SPACE_SIZE) && 
-       (pc < current_dynamic_space ||
-        pc >= current_dynamic_space + DYNAMIC_SPACE_SIZE))
+    if ( (pc < READ_ONLY_SPACE_START ||
+         pc >= READ_ONLY_SPACE_START+READ_ONLY_SPACE_SIZE) && 
+        (pc < current_dynamic_space ||
+         pc >= current_dynamic_space + DYNAMIC_SPACE_SIZE))
        return NULL;
 
-    badinst = *pc;
-
-    if(((badinst>>27)!=0x16)      /* STL or STQ */
-       && ((badinst>>27)!=0x13))  /* STS or STT */
-       return NULL;                /* Otherwise forget about address. */
-  
-    return (os_vm_address_t)
-       (*os_context_register_addr(context,((badinst>>16)&0x1f))
-        +(badinst&0xffff));
+    return context->uc_mcontext.sc_traparg_a0;
 }
 
 void
@@ -99,7 +93,7 @@ arch_skip_instruction(os_context_t *context)
 unsigned char *
 arch_internal_error_arguments(os_context_t *context)
 {
-  return (unsigned char *)(*os_context_pc_addr(context)+4);
+    return (unsigned char *)(*os_context_pc_addr(context)+4);
 }
 
 boolean
@@ -111,26 +105,16 @@ arch_pseudo_atomic_atomic(os_context_t *context)
 void arch_set_pseudo_atomic_interrupted(os_context_t *context)
 {
     /* On coming out of an atomic section, we subtract 1 from
-     * reg_Alloc, then try to store something at that address.  On
-     * OSF/1 we add 1 to reg_Alloc here so that the end-of-atomic code
-     * will raise SIGTRAP for "unaligned access".  Linux catches
-     * unaligned accesses in the kernel and fixes them up[1], so there
-     * we toggle bit 63 instead.  The resulting address is somewhere
-     * out in no-man's land, so we get SIGSEGV when we try to access
-     * it.  We catch whichever signal it is (see the appropriate
-     * *-os.c) and call interrupt_handle_pending() from it */
-
-    /* [1] This behaviour can be changed with osf_setsysinfo, but cmucl
-     * didn't use that */
-
-#ifdef __linux__
-  *os_context_register_addr(context,reg_ALLOC) |=  (1L<<63);
-#else
-  *os_context_register_addr(context,reg_ALLOC) |=  2;
-#endif
+     * reg_Alloc, then try to store something at that address.  So,
+     * to signal that it was interrupted and a signal should be handled, 
+     * we set bit 63 of reg_ALLOC here so that the end-of-atomic code
+     * will raise SIGSEGV (no ram mapped there).  We catch the signal
+     * (see the appropriate *-os.c) and call interrupt_handle_pending() 
+     * for the saved signal instead */
+
+    *os_context_register_addr(context,reg_ALLOC) |=  (1L<<63);
 }
 
-/* XXX but is the caller of this storing all 64 bits? */
 unsigned long arch_install_breakpoint(void *pc)
 {
     unsigned int *ptr = (unsigned int *)pc;
@@ -144,11 +128,11 @@ unsigned long arch_install_breakpoint(void *pc)
 
 void arch_remove_breakpoint(void *pc, unsigned long orig_inst)
 {
-  /* was (unsigned int) but gcc complains.  Changed to mirror
-   * install_breakpoint() above */
-  unsigned long *ptr=(unsigned long *)pc;
-  *ptr = orig_inst;
-  os_flush_icache((os_vm_address_t)pc, sizeof(unsigned long));
+    /* was (unsigned int) but gcc complains.  Changed to mirror
+     * install_breakpoint() above */
+    unsigned long *ptr=(unsigned long *)pc;
+    *ptr = orig_inst;
+    os_flush_icache((os_vm_address_t)pc, sizeof(unsigned long));
 }
 
 static unsigned int *skipped_break_addr, displaced_after_inst,
@@ -156,75 +140,81 @@ static unsigned int *skipped_break_addr, displaced_after_inst,
 
 
 /* This returns a PC value.  Lisp code is all in the 32-bit-addressable
- * space,so we should be ok with an unsigned int. */
+ * space, so we should be ok with an unsigned int. */
 unsigned int
 emulate_branch(os_context_t *context,unsigned long orig_inst)
 {
-  int op = orig_inst >> 26;
-  int reg_a = (orig_inst >> 21) & 0x1f;
-  int reg_b = (orig_inst >> 16) & 0x1f;
-  int disp = (orig_inst&(1<<20)) ? orig_inst | (-1 << 21) : orig_inst&0x1fffff;
-  int next_pc = *os_context_pc_addr(context);
-  int branch = 0; /* was NULL;        */
-
-  switch(op) {
-  case 0x1a: /* jmp, jsr, jsr_coroutine, ret */
-    *os_context_register_addr(context,reg_a)=*os_context_pc_addr(context);
-    *os_context_pc_addr(context)=*os_context_register_addr(context,reg_b)& ~3;
-    break;
-  case 0x30: /* br */
-    *os_context_register_addr(context,reg_a)=*os_context_pc_addr(context);
-    branch = 1;
-    break;
-  case 0x31: /* fbeq */
-    if(*(os_context_fpregister_addr(context,reg_a))==0) branch = 1;
-    break;
-  case 0x32: /* fblt */
-    if(*os_context_fpregister_addr(context,reg_a)<0) branch = 1;
-    break;
-  case 0x33: /* fble */
-    if(*os_context_fpregister_addr(context,reg_a)<=0) branch = 1;
-    break;
-  case 0x34: /* bsr */
-    *os_context_register_addr(context,reg_a)=*os_context_pc_addr(context);
-    branch = 1;
-    break;
-  case 0x35: /* fbne */
-    if(*os_context_register_addr(context,reg_a)!=0) branch = 1;
-    break;
-  case 0x36: /* fbge */
-    if(*os_context_fpregister_addr(context,reg_a)>=0) branch = 1;
-    break;
-  case 0x37: /* fbgt */
-    if(*os_context_fpregister_addr(context,reg_a)>0) branch = 1;
-    break;
-  case 0x38: /* blbc */
-    if((*os_context_register_addr(context,reg_a)&1) == 0) branch = 1;
-    break;
-  case 0x39: /* beq */
-    if(*os_context_register_addr(context,reg_a)==0) branch = 1;
-    break;
-  case 0x3a: /* blt */
-    if(*os_context_register_addr(context,reg_a)<0) branch = 1;
-    break;
-  case 0x3b: /* ble */
-    if(*os_context_register_addr(context,reg_a)<=0) branch = 1;
-    break;
-  case 0x3c: /* blbs */
-    if((*os_context_register_addr(context,reg_a)&1)!=0) branch = 1;
-    break;
-  case 0x3d: /* bne */
-    if(*os_context_register_addr(context,reg_a)!=0) branch = 1;
-    break;
-  case 0x3e: /* bge */
-    if(*os_context_register_addr(context,reg_a)>=0) branch = 1;
-    break;
-  case 0x3f: /* bgt */
-    if(*os_context_register_addr(context,reg_a)>0) branch = 1;
-    break;
-  }
-  if(branch) next_pc += disp*4;
-  return next_pc;
+    int op = orig_inst >> 26;
+    int reg_a = (orig_inst >> 21) & 0x1f;
+    int reg_b = (orig_inst >> 16) & 0x1f;
+    int disp =
+       (orig_inst&(1<<20)) ?
+       orig_inst | (-1 << 21) :
+       orig_inst&0x1fffff;
+    int next_pc = *os_context_pc_addr(context);
+    int branch = 0; /* was NULL;              */
+
+    switch(op) {
+    case 0x1a: /* jmp, jsr, jsr_coroutine, ret */
+       *os_context_register_addr(context,reg_a) =
+           *os_context_pc_addr(context);
+       *os_context_pc_addr(context) =
+           *os_context_register_addr(context,reg_b)& ~3;
+       break;
+    case 0x30: /* br */
+       *os_context_register_addr(context,reg_a)=*os_context_pc_addr(context);
+       branch = 1;
+       break;
+    case 0x31: /* fbeq */
+       if (*(os_context_float_register_addr(context,reg_a))==0) branch = 1;
+       break;
+    case 0x32: /* fblt */
+       if (*os_context_float_register_addr(context,reg_a)<0) branch = 1;
+       break;
+    case 0x33: /* fble */
+       if (*os_context_float_register_addr(context,reg_a)<=0) branch = 1;
+       break;
+    case 0x34: /* bsr */
+       *os_context_register_addr(context,reg_a)=*os_context_pc_addr(context);
+       branch = 1;
+       break;
+    case 0x35: /* fbne */
+       if (*os_context_register_addr(context,reg_a)!=0) branch = 1;
+       break;
+    case 0x36: /* fbge */
+       if (*os_context_float_register_addr(context,reg_a)>=0) branch = 1;
+       break;
+    case 0x37: /* fbgt */
+       if (*os_context_float_register_addr(context,reg_a)>0) branch = 1;
+       break;
+    case 0x38: /* blbc */
+       if ((*os_context_register_addr(context,reg_a)&1) == 0) branch = 1;
+       break;
+    case 0x39: /* beq */
+       if (*os_context_register_addr(context,reg_a)==0) branch = 1;
+       break;
+    case 0x3a: /* blt */
+       if (*os_context_register_addr(context,reg_a)<0) branch = 1;
+       break;
+    case 0x3b: /* ble */
+       if (*os_context_register_addr(context,reg_a)<=0) branch = 1;
+       break;
+    case 0x3c: /* blbs */
+       if ((*os_context_register_addr(context,reg_a)&1)!=0) branch = 1;
+       break;
+    case 0x3d: /* bne */
+       if (*os_context_register_addr(context,reg_a)!=0) branch = 1;
+       break;
+    case 0x3e: /* bge */
+       if (*os_context_register_addr(context,reg_a)>=0) branch = 1;
+       break;
+    case 0x3f: /* bgt */
+       if (*os_context_register_addr(context,reg_a)>0) branch = 1;
+       break;
+    }
+    if (branch)
+       next_pc += disp*4;
+    return next_pc;
 }
 
 static sigset_t orig_sigmask;
@@ -258,42 +248,40 @@ void arch_do_displaced_inst(os_context_t *context,unsigned int orig_inst)
      * at the BPT instruction itself.  This is good, because this is
      * where we want to restart execution when we do that */
 
-  unsigned int *pc=(unsigned int *)(*os_context_pc_addr(context));
-  unsigned int *next_pc;
-  int op = orig_inst >> 26;;
+    unsigned int *pc=(unsigned int *)(*os_context_pc_addr(context));
+    unsigned int *next_pc;
+    int op = orig_inst >> 26;;
 
-  orig_sigmask = *os_context_sigmask_addr(context);
-  sigaddset_blockable(os_context_sigmask_addr(context));
+    orig_sigmask = *os_context_sigmask_addr(context);
+    sigaddset_blockable(os_context_sigmask_addr(context));
 
-  /* Put the original instruction back. */
-  *pc = orig_inst;
-  os_flush_icache((os_vm_address_t)pc, sizeof(unsigned long));
-  skipped_break_addr = pc;
+    /* Put the original instruction back. */
+    *pc = orig_inst;
+    os_flush_icache((os_vm_address_t)pc, sizeof(unsigned long));
+    skipped_break_addr = pc;
 
     /* Figure out where we will end up after running the displaced 
      * instruction */
-    if(op == 0x1a || (op&0xf) == 0x30) /* a branch */
+    if (op == 0x1a || (op&0xf) == 0x30) /* a branch */
        /* The cast to long is just to shut gcc up. */
        next_pc = (unsigned int *)((long)emulate_branch(context,orig_inst));
     else
        next_pc = pc+1;
     
-  /* Set the after breakpoint. */
-  displaced_after_inst = *next_pc;
-  *next_pc = BREAKPOINT_INST;
-  after_breakpoint=1;
-  os_flush_icache((os_vm_address_t)next_pc, sizeof(unsigned long));
+    /* Set the after breakpoint. */
+    displaced_after_inst = *next_pc;
+    *next_pc = BREAKPOINT_INST;
+    after_breakpoint=1;
+    os_flush_icache((os_vm_address_t)next_pc, sizeof(unsigned long));
 }
 
 static void
 sigtrap_handler(int signal, siginfo_t *siginfo, os_context_t *context)
 {
     unsigned int code;
-
-    /* Don't disallow recursive breakpoint traps.  Otherwise, we can't */
-    /* use debugger breakpoints anywhere in here. */
-    sigset_t *mask=(os_context_sigmask_addr(context));
-    sigsetmask(mask); 
+#ifdef LISP_FEATURE_LINUX
+    os_restore_fp_control(context);
+#endif
 
     /* this is different from how CMUCL does it.  CMUCL used "call_pal
      * PAL_gentrap", which doesn't do anything on Linux (unless NL0
@@ -302,8 +290,8 @@ sigtrap_handler(int signal, siginfo_t *siginfo, os_context_t *context)
      * different opcode so we can test whether we're dealing with a
      * breakpoint or a "system service" */
 
-    if((*(unsigned int*)(*os_context_pc_addr(context)-4))== BREAKPOINT_INST) {
-       if(after_breakpoint) {
+    if ((*(unsigned int*)(*os_context_pc_addr(context)-4))==BREAKPOINT_INST) {
+       if (after_breakpoint) {
            /* see comments above arch_do_displaced_inst.  This is where
             * we reinsert the breakpoint that we removed earlier */
 
@@ -351,23 +339,28 @@ sigtrap_handler(int signal, siginfo_t *siginfo, os_context_t *context)
        break;
 
       default:
-       fprintf(stderr, "unidetified breakpoint/trap %d\n",code);
+       fprintf(stderr, "unidentified breakpoint/trap %d\n",code);
        interrupt_handle_now(signal, siginfo, context);
        break;
     }
 }
 
-static void sigfpe_handler(int signal, int code, os_context_t *context)
+unsigned long
+arch_get_fp_control()
 {
-    /* what should this contain?  interesting question.  If it really
-     * is empty, why don't we just ignore the signal? -dan 2001.08.10
-     */
+    return ieee_get_fp_control();
+}
+
+void
+arch_set_fp_control(unsigned long fp)
+{
+    ieee_set_fp_control(fp);
 }
 
+
 void arch_install_interrupt_handlers()
 {
     undoably_install_low_level_interrupt_handler(SIGTRAP, sigtrap_handler);
-    undoably_install_low_level_interrupt_handler(SIGFPE,  sigfpe_handler);
 }
 
 extern lispobj call_into_lisp(lispobj fun, lispobj *args, int nargs);