Merged revisions 7501-7598 via svnmerge from
[cacao.git] / src / vm / jit / mips / md.c
index 5096f0dec7b1e1a2761ba346133c3c8ca66a2bc2..55e48dd4799a4a37cc0d70847eb2ea857137a42e 100644 (file)
@@ -1,9 +1,9 @@
 /* src/vm/jit/mips/md.c - machine dependent MIPS functions
 
-   Copyright (C) 1996-2005 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 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
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
-   Contact: cacao@complang.tuwien.ac.at
-
-   Authors: Andreas Krall
-            Reinhard Grafl
-
-   Changes: Christian Thalinger
-
-   $Id: md.c 2711 2005-06-15 14:09:39Z twisti $
+   $Id: md.c 7596 2007-03-28 21:05:53Z twisti $
 
 */
 
 
-#include <signal.h>
-#include <sys/fpu.h>
-#include <sys/mman.h>
+#include "config.h"
+
+#include <assert.h>
 #include <unistd.h>
+#include <sys/cachectl.h>
 
-#include "config.h"
-#include "vm/jit/mips/md-abi.h"
-#include "vm/jit/mips/types.h"
+#include "vm/types.h"
+
+#include "toolbox/logging.h"
 
-#include "vm/exceptions.h"
 #include "vm/global.h"
-#include "vm/options.h"
-#include "vm/stringlocal.h"
-#include "vm/jit/asmpart.h"
+#include "vm/vm.h"
 
+#include "vm/jit/codegen-common.h" /* REMOVEME: only for codegendata */
+#include "vm/jit/stacktrace.h"
+
+#if !defined(NDEBUG) && defined(ENABLE_DISASSEMBLER)
+#include "vmcore/options.h" /* XXX debug */
+#include "vm/jit/disass.h" /* XXX debug */
+#endif
 
-/* catch_NullPointerException **************************************************
 
-   NullPointerException signal handler for hardware null pointer check.
+/* md_stacktrace_get_returnaddress *********************************************
+
+   Returns the return address of the current stackframe, specified by
+   the passed stack pointer and the stack frame size.
 
 *******************************************************************************/
 
-void catch_NullPointerException(int sig, siginfo_t *siginfo, void *_p)
+u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
 {
-       sigset_t nsig;
-       int      instr;
-       long     faultaddr;
-       java_objectheader *xptr;
-
-       struct ucontext *_uc = (struct ucontext *) _p;
-       mcontext_t *sigctx = &_uc->uc_mcontext;
-       struct sigaction act;
-
-       instr = *((s4 *) (sigctx->gregs[CTX_EPC]));
-       faultaddr = sigctx->gregs[(instr >> 21) & 0x1f];
-
-       if (faultaddr == 0) {
-               /* Reset signal handler - necessary for SysV, does no harm for BSD */
-
-               act.sa_sigaction = catch_NullPointerException;
-               act.sa_flags = SA_SIGINFO;
-               sigaction(sig, &act, NULL);
-
-               sigemptyset(&nsig);
-               sigaddset(&nsig, sig);
-               sigprocmask(SIG_UNBLOCK, &nsig, NULL);           /* unblock signal    */
-               
-               xptr = new_nullpointerexception();
-
-               sigctx->gregs[REG_ITMP1_XPTR] = (ptrint) xptr;
-               sigctx->gregs[REG_ITMP2_XPC] = sigctx->gregs[CTX_EPC];
-               sigctx->gregs[CTX_EPC] = (ptrint) asm_handle_exception;
-
-       } else {
-        faultaddr += (long) ((instr << 16) >> 16);
-
-               throw_cacao_exception_exit(string_java_lang_InternalError,
-                                                                  "faulting address: 0x%lx at 0x%lx\n",
-                                                                  (long) faultaddr,
-                                                                  (long) sigctx->gregs[CTX_EPC]);
-       }
+       u1 *ra;
+
+       /* on MIPS the return address is located on the top of the stackframe */
+
+       /* XXX change this if we ever want to use 4-byte stackslots */
+       /* ra = *((u1 **) (sp + framesize - SIZEOF_VOID_P)); */
+       ra = *((u1 **) (sp + framesize - 8));
+
+       return ra;
 }
 
 
-void init_exceptions(void)
+/* md_get_method_patch_address *************************************************
+
+   Gets the patch address of the currently compiled method. The offset
+   is extracted from the load instruction(s) before the jump and added
+   to the right base address (PV or REG_METHODPTR).
+
+   INVOKESTATIC/SPECIAL:
+
+   dfdeffb8    ld       s8,-72(s8)
+   03c0f809    jalr     s8
+   00000000    nop
+
+   INVOKEVIRTUAL:
+
+   dc990000    ld       t9,0(a0)
+   df3e0000    ld       s8,0(t9)
+   03c0f809    jalr     s8
+   00000000    nop
+
+   INVOKEINTERFACE:
+
+   dc990000    ld       t9,0(a0)
+   df39ff90    ld       t9,-112(t9)
+   df3e0018    ld       s8,24(t9)
+   03c0f809    jalr     s8
+   00000000    nop
+
+*******************************************************************************/
+
+u1 *md_get_method_patch_address(u1 *ra, stackframeinfo *sfi, u1 *mptr)
 {
-       struct sigaction act;
+       u4  mcode;
+       s4  offset;
+       u1 *pa;
+
+       /* go back to the actual load instruction (3 instructions on MIPS) */
+
+       ra -= 3 * 4;
+
+       /* get first instruction word on current PC */
 
-       /* The Boehm GC initialization blocks the SIGSEGV signal. So we do a
-          dummy allocation here to ensure that the GC is initialized.
-       */
-       heap_allocate(1, 0, NULL);
+       mcode = *((u4 *) ra);
 
-       /* install signal handlers we need to convert to exceptions */
+       /* check if we have 2 instructions (lui) */
 
-       sigemptyset(&act.sa_mask);
+       if ((mcode >> 16) == 0x3c19) {
+               /* XXX write a regression for this */
+               assert(0);
 
-       if (!checknull) {
-               act.sa_sigaction = catch_NullPointerException;
-               act.sa_flags = SA_SIGINFO;
+               /* get displacement of first instruction (lui) */
 
-#if defined(SIGSEGV)
-               sigaction(SIGSEGV, &act, NULL);
+               offset = (s4) (mcode << 16);
+
+               /* get displacement of second instruction (daddiu) */
+
+               mcode = *((u4 *) (ra + 1 * 4));
+
+               assert((mcode >> 16) != 0x6739);
+
+               offset += (s2) (mcode & 0x0000ffff);
+
+               pa = NULL;
+       }
+       else {
+               /* get first instruction (ld) */
+
+               mcode = *((u4 *) ra);
+
+               /* get the offset from the instruction */
+
+               offset = (s2) (mcode & 0x0000ffff);
+
+               /* check for call with REG_METHODPTR: ld s8,x(t9) */
+
+#if SIZEOF_VOID_P == 8
+               if ((mcode >> 16) == 0xdf3e) {
+#else
+               if ((mcode >> 16) == 0x8f3e) {
 #endif
+                       /* in this case we use the passed method pointer */
+
+                       /* return NULL if no mptr was specified (used for replacement) */
+
+                       if (mptr == NULL)
+                               return NULL;
 
-#if defined(SIGBUS)
-               sigaction(SIGBUS, &act, NULL);
+                       pa = mptr + offset;
+               }
+               else {
+                       /* in the normal case we check for a `ld s8,x(s8)' instruction */
+
+#if SIZEOF_VOID_P == 8
+                       assert((mcode >> 16) == 0xdfde);
+#else
+                       assert((mcode >> 16) == 0x8fde);
 #endif
+
+                       /* and get the final data segment address */
+
+                       pa = sfi->pv + offset;
+               }
        }
 
-       /* Turn off flush-to-zero */
-       {
-               union fpc_csr n;
-               n.fc_word = get_fpc_csr();
-               n.fc_struct.flush = 0;
-               set_fpc_csr(n.fc_word);
+       return pa;
+}
+
+
+/* md_codegen_get_pv_from_pc ***************************************************
+
+   Machine code:
+
+   03c0f809    jalr     s8
+   00000000    nop
+   27feff9c    addiu    s8,ra,-100
+
+*******************************************************************************/
+
+u1 *md_codegen_get_pv_from_pc(u1 *ra)
+{
+       u1 *pv;
+       u4  mcode;
+       s4  offset;
+
+       /* get the offset of the instructions */
+
+       /* get first instruction word after jump */
+
+       mcode = *((u4 *) ra);
+
+       /* check if we have 2 instructions (lui, daddiu) */
+
+       if ((mcode >> 16) == 0x3c19) {
+               /* get displacement of first instruction (lui) */
+
+               offset = (s4) (mcode << 16);
+
+               /* get displacement of second instruction (daddiu) */
+
+               mcode = *((u4 *) (ra + 1 * 4));
+
+#if SIZEOF_VOID_P == 8
+               assert((mcode >> 16) == 0x6739);
+#else
+               assert((mcode >> 16) == 0x2739);
+#endif
+
+               offset += (s2) (mcode & 0x0000ffff);
        }
+       else {
+               /* get offset of first instruction (daddiu) */
+
+               mcode = *((u4 *) ra);
+
+#if SIZEOF_VOID_P == 8
+               assert((mcode >> 16) == 0x67fe);
+#else
+               assert((mcode >> 16) == 0x27fe);
+#endif
+
+               offset = (s2) (mcode & 0x0000ffff);
+       }
+
+       /* calculate PV via RA + offset */
+
+       pv = ra + offset;
+
+       return pv;
 }
 
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-void thread_restartcriticalsection(ucontext_t *uc)
+/* md_cacheflush ***************************************************************
+
+   Calls the system's function to flush the instruction and data
+   cache.
+
+*******************************************************************************/
+
+void md_cacheflush(u1 *addr, s4 nbytes)
 {
-       void *critical;
+       cacheflush(addr, nbytes, BCACHE);
+}
 
-       critical = thread_checkcritical((void*) uc->uc_mcontext.gregs[CTX_EPC]);
 
-       if (critical)
-               uc->uc_mcontext.gregs[CTX_EPC] = (ptrint) critical;
+/* md_icacheflush **************************************************************
+
+   Calls the system's function to flush the instruction cache.
+
+*******************************************************************************/
+
+void md_icacheflush(u1 *addr, s4 nbytes)
+{
+       cacheflush(addr, nbytes, ICACHE);
 }
-#endif
 
 
-void docacheflush(u1 *p, long bytelen)
+/* md_dcacheflush **************************************************************
+
+   Calls the system's function to flush the data cache.
+
+*******************************************************************************/
+
+void md_dcacheflush(u1 *addr, s4 nbytes)
 {
-       u1 *e = p + bytelen;
-       long psize = sysconf(_SC_PAGESIZE);
-       p -= (long) p & (psize - 1);
-       e += psize - ((((long) e - 1) & (psize - 1)) + 1);
-       bytelen = e-p;
-       mprotect(p, bytelen, PROT_READ | PROT_WRITE | PROT_EXEC);
+       cacheflush(addr, nbytes, DCACHE);
 }
 
 
+/* md_patch_replacement_point **************************************************
+
+   Patch the given replacement point.
+
+*******************************************************************************/
+
+#if defined(ENABLE_REPLACEMENT)
+void md_patch_replacement_point(codeinfo *code, s4 index, rplpoint *rp,
+                                                               u1 *savedmcode)
+{
+       s4 disp;
+       union {
+               u8 both;
+               u4 words[2];
+       } mcode;
+
+       if (index < 0) {
+               /* restore the patched-over instruction */
+               *(u8*)(rp->pc) = *(u8*)(savedmcode);
+       }
+       else {
+               /* save the current machine code */
+               *(u8*)(savedmcode) = *(u8*)(rp->pc);
+
+               /* make machine code for patching */
+
+               disp = ((u4*)code->replacementstubs - (u4*)rp->pc)
+                          + index * REPLACEMENT_STUB_SIZE
+                          - 1;
+
+               if ((disp < (s4) 0xffff8000) || (disp > (s4) 0x00007fff))
+                       vm_abort("Jump offset is out of range: %d > +/-%d",
+                                        disp, 0x00007fff);
+
+               /* BR */
+        mcode.words[0] = (((0x04) << 26) | ((0) << 21) | ((0) << 16) | ((disp) & 0xffff));
+               mcode.words[1] = 0; /* NOP in delay slot */ 
+
+               /* write the new machine code */
+               *(u8*)(rp->pc) = mcode.both;
+       }
+
+#if !defined(NDEBUG) && defined(ENABLE_DISASSEMBLER)
+       {
+               u1* u1ptr = rp->pc;
+               DISASSINSTR(u1ptr);
+               DISASSINSTR(u1ptr);
+               fflush(stdout);
+       }
+#endif
+
+       /* flush instruction cache */
+    md_icacheflush(rp->pc,2*4);
+}
+#endif /* defined(ENABLE_REPLACEMENT) */
+
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where
@@ -169,4 +344,5 @@ void docacheflush(u1 *p, long bytelen)
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */