* src/vm/jit/mips/linux/md-os.c: Simplified signal handlers.
[cacao.git] / src / vm / jit / mips / linux / md-os.c
index d0973e45a74948c1b4d1969fb20c3964c8f49ce9..02c978b795ae6dd54c22735d4b5d5efa9ecc24f6 100644 (file)
@@ -1,9 +1,7 @@
 /* src/vm/jit/mips/linux/md-os.c - machine dependent MIPS Linux functions
 
-   Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
-   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
-   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
-   J. Wenninger, Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006, 2007, 2008, 2009
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
 
    This file is part of CACAO.
 
 #include "vm/types.h"
 
 #include "vm/jit/mips/codegen.h"
+#include "vm/jit/mips/md.h"
 #include "vm/jit/mips/md-abi.h"
 
-#include "mm/gc-common.h"
+#include "mm/gc.hpp"
+#include "mm/memory.hpp"
 
-#include "vm/signallocal.h"
+#include "vm/signallocal.hpp"
 
-#include "vm/jit/asmpart.h"
-#include "vm/jit/stacktrace.h"
+#include "vm/jit/executionstate.h"
+#include "vm/jit/trap.hpp"
 
 
 /* md_init *********************************************************************
 
 void md_init(void)
 {
-       /* The Boehm GC initialization blocks the SIGSEGV signal. So we do a      */
-       /* dummy allocation here to ensure that the GC is initialized.            */
+       /* The Boehm GC initialization blocks the SIGSEGV signal. So we do
+          a dummy allocation here to ensure that the GC is
+          initialized. */
 
 #if defined(ENABLE_GC_BOEHM)
-       (void) GCNEW(u1);
+       (void) GCNEW(int);
 #endif
 
 #if 0
@@ -74,180 +75,145 @@ void md_init(void)
 }
 
 
-/* md_signal_handler_sigsegv ***************************************************
-
-   NullPointerException signal handler for hardware null pointer
-   check.
-
-*******************************************************************************/
-
+/**
+ * NullPointerException signal handler for hardware null pointer check.
+ */
 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
 {
-       stackframeinfo  sfi;
-       ucontext_t     *_uc;
-       mcontext_t     *_mc;
-       greg_t         *_gregs;
-       u1             *pv;
-       u1             *sp;
-       u1             *ra;
-       u1             *xpc;
-       unsigned int    cause;
-       u4              mcode;
-       int             d;
-       int             s1;
-       int16_t         disp;
-       intptr_t        val;
-       intptr_t        addr;
-       int             type;
-       void           *p;
-
-       _uc    = (struct ucontext *) _p;
-       _mc    = &_uc->uc_mcontext;
-
-#if defined(__UCLIBC__)
-       _gregs = _mc->gpregs;
-#else  
-       _gregs = _mc->gregs;
-#endif
+       ucontext_t* _uc = (struct ucontext *) _p;
+       mcontext_t* _mc = &_uc->uc_mcontext;
 
-       /* In glibc's ucontext.h the registers are defined as long long,
-          even for MIPS32, so we cast them.  This is not the case for
-          uClibc. */
+       void* xpc = (void*) _mc->pc;
 
-       pv  = (u1 *) (ptrint) _gregs[REG_PV];
-       sp  = (u1 *) (ptrint) _gregs[REG_SP];
-       ra  = (u1 *) (ptrint) _gregs[REG_RA];        /* this is correct for leafs */
-
-#if !defined(__UCLIBC__) && ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 5))
-       /* NOTE: We only need this for pre glibc-2.5. */
+       // Handle the trap.
+       trap_handle(TRAP_SIGSEGV, xpc, _p);
+}
 
-       xpc = (u1 *) (ptrint) _mc->pc;
 
-       /* get the cause of this exception */
+/**
+ * Illegal Instruction signal handler for hardware exception checks.
+ */
+void md_signal_handler_sigill(int sig, siginfo_t* siginfo, void* _p)
+{
+       ucontext_t* _uc = (struct ucontext *) _p;
+       mcontext_t* _mc = &_uc->uc_mcontext;
 
-       cause = _mc->cause;
+       void* xpc = (void*) _mc->pc;
 
-       /* check the cause to find the faulting instruction */
+       // Handle the trap.
+       trap_handle(TRAP_SIGILL, xpc, _p);
+}
 
-       /* TODO: use defines for that stuff */
 
-       switch (cause & 0x0000003c) {
-       case 0x00000008:
-               /* TLBL: XPC is ok */
-               break;
+/* md_signal_handler_sigusr2 ***************************************************
 
-       case 0x00000010:
-               /* AdEL: XPC is of the following instruction */
-               xpc = xpc - 4;
-               break;
-       }
-#else
-       xpc = (u1 *) (ptrint) _gregs[CTX_EPC];
-#endif
+   DOCUMENT ME
 
-       /* get exception-throwing instruction */
+*******************************************************************************/
 
-       mcode = *((u4 *) xpc);
+void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
+{
+}
 
-       d    = M_ITYPE_GET_RT(mcode);
-       s1   = M_ITYPE_GET_RS(mcode);
-       disp = M_ITYPE_GET_IMM(mcode);
 
-       /* check for special-load */
+/**
+ * Read the given context into an executionstate.
+ *
+ * @param es      execution state
+ * @param context machine context
+ */
+void md_executionstate_read(executionstate_t* es, void* context)
+{
+       ucontext_t* _uc;
+       mcontext_t* _mc;
+       greg_t*     _gregs;
+       int         i;
 
-       if (s1 == REG_ZERO) {
-               /* we use the exception type as load displacement */
+       vm_abort("md_executionstate_read: PLEASE REVISE ME!");
 
-               type = disp;
-               val  = _gregs[d];
-       }
-       else {
-               /* This is a normal NPE: addr must be NULL and the NPE-type
-                  define is 0. */
+       _uc = (ucontext_t*) context;
+       _mc = &_uc->uc_mcontext;
 
-               addr = _gregs[s1];
-               type = (s4) addr;
-               val  = 0;
-       }
+#if defined(__UCLIBC__)
+       _gregs = _mc->gpregs;
+#else  
+       _gregs = _mc->gregs;
+#endif
 
-       /* create stackframeinfo */
+       /* Read special registers. */
 
-       stacktrace_create_extern_stackframeinfo(&sfi, pv, sp, ra, xpc);
+       /* In glibc's ucontext.h the registers are defined as long long,
+          even for MIPS32, so we cast them.  This is not the case for
+          uClibc. */
 
-       /* Handle the type. */
+#if defined(__UCLIBC__)
+       es->pc = _gregs[CTX_EPC];
+#else
+       es->pc = (void*) (uintptr_t) _mc->pc;
+#endif
 
-       p = signal_handle(xpc, type, val);
+       es->sp = (void*) (uintptr_t) _gregs[REG_SP];
+       es->pv = (void*) (uintptr_t) _gregs[REG_PV];
+       es->ra = (void*) (uintptr_t) _gregs[REG_RA];
 
-       /* remove stackframeinfo */
+       /* Read integer registers. */
 
-       stacktrace_remove_stackframeinfo(&sfi);
+       for (i = 0; i < INT_REG_CNT; i++)
+               es->intregs[i] = _gregs[i];
 
-       /* set registers (only if exception object ready) */
+       /* Read float registers. */
 
-       if (p != NULL) {
-               _gregs[REG_ITMP1_XPTR] = (intptr_t) p;
-               _gregs[REG_ITMP2_XPC]  = (intptr_t) xpc;
+       /* Do not use the assignment operator '=', as the type of the
+          _mc->fpregs[i] can cause invalid conversions. */
 
-#if defined(__UCLIBC__)
-               _gregs[CTX_EPC]        = (intptr_t) asm_handle_exception;
-#else
-               _mc->pc                = (intptr_t) asm_handle_exception;
-#endif
-       }
-       else {
-#if defined(__UCLIBC__)
-               _gregs[CTX_EPC]        = (intptr_t) xpc;
-#else
-               _mc->pc                = (intptr_t) xpc;
-#endif
-       }
+       assert(sizeof(_mc->fpregs.fp_r) == sizeof(es->fltregs));
+       os_memcpy(&es->fltregs, &_mc->fpregs.fp_r, sizeof(_mc->fpregs.fp_r));
 }
 
 
-/* md_signal_handler_sigusr2 ***************************************************
-
-   DOCUMENT ME
-
-*******************************************************************************/
-
-void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
+/**
+ * Write the given executionstate back to the context.
+ *
+ * @param es      execution state
+ * @param context machine context
+ */
+void md_executionstate_write(executionstate_t* es, void* context)
 {
-}
+       ucontext_t* _uc;
+       mcontext_t* _mc;
+       greg_t*     _gregs;
+       int         i;
 
+       vm_abort("md_executionstate_write: PLEASE REVISE ME!");
 
-/* md_critical_section_restart *************************************************
+       _uc = (ucontext_t *) context;
+       _mc = &_uc->uc_mcontext;
 
-   Search the critical sections tree for a matching section and set
-   the PC to the restart point, if necessary.
+       /* Write integer registers. */
 
-*******************************************************************************/
+       for (i = 0; i < INT_REG_CNT; i++)
+               _gregs[i] = es->intregs[i];
 
-#if defined(ENABLE_THREADS)
-void md_critical_section_restart(ucontext_t *_uc)
-{
-       mcontext_t *_mc;
-       u1         *pc;
-       u1         *npc;
+       /* Write float registers. */
 
-       _mc = &_uc->uc_mcontext;
+       /* Do not use the assignment operator '=', as the type of the
+          _mc->fpregs[i] can cause invalid conversions. */
 
-#if defined(__UCLIBC__)
-       pc = (u1 *) (ptrint) _mc->gpregs[CTX_EPC];
-#else
-       pc = (u1 *) (ptrint) _mc->pc;
-#endif
+       assert(sizeof(_mc->fpregs.fp_r) == sizeof(es->fltregs));
+       os_memcpy(&_mc->fpregs.fp_r, &es->fltregs, sizeof(_mc->fpregs.fp_r));
 
-       npc = critical_find_restart_point(pc);
+       /* Write special registers. */
 
-       if (npc != NULL) {
 #if defined(__UCLIBC__)
-               _mc->gpregs[CTX_EPC] = (ptrint) npc;
+       _gregs[CTX_EPC] = es->pc;
 #else
-               _mc->pc              = (ptrint) npc;
+       _mc->pc         = (uintptr_t) es->pc;
 #endif
-       }
+
+       _gregs[REG_SP]  = (uintptr_t) es->sp;
+       _gregs[REG_PV]  = (uintptr_t) es->pv;
+       _gregs[REG_RA]  = (uintptr_t) es->ra;
 }
-#endif
 
 
 /*