* src/vm/jit/trap.cpp (trap_handle): Further generalized trap handling and
[cacao.git] / src / vm / jit / x86_64 / md.c
index 923dacb3c5e6398787adf3e98dbae8958bb764d6..cf682e09f76b387c7814716abf7124b776596774 100644 (file)
@@ -1,9 +1,8 @@
-/* src/vm/jit/x86_64/md.c - machine dependent x86_64 Linux functions
+/* src/vm/jit/x86_64/md.c - machine dependent x86_64 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, 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
+   Copyright (C) 2009 Theobroma Systems Ltd.
 
    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.
-
-   Contact: cacao@complang.tuwien.ac.at
-
-   Authors: Christian Thalinger
-
-   Changes:
-
-   $Id: md.c 4326 2006-01-20 13:25:24Z twisti $
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
 */
 
 
-#define _GNU_SOURCE
-
 #include "config.h"
 
+#include <assert.h>
+#include <stdint.h>
 #include <stdlib.h>
-#include <ucontext.h>
 
+#include "vm/jit/x86_64/codegen.h"
 #include "vm/jit/x86_64/md-abi.h"
 
-#include "vm/exceptions.h"
-#include "vm/signallocal.h"
-#include "vm/jit/asmpart.h"
-#include "vm/jit/stacktrace.h"
+#include "vm/vm.hpp"
+
+#include "vm/jit/codegen-common.hpp"
+#include "vm/jit/executionstate.h"
+#include "vm/jit/jit.hpp"
+#include "vm/jit/trap.hpp"
 
 
 /* md_init *********************************************************************
@@ -60,121 +53,188 @@ void md_init(void)
 }
 
 
-/* md_signal_handler_sigsegv ***************************************************
+/* md_jit_method_patch_address *************************************************
 
-   NullPointerException signal handler for hardware null pointer
-   check.
+   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:
 
-void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
-{
-       ucontext_t  *_uc;
-       mcontext_t  *_mc;
-       u1          *sp;
-       u1          *ra;
-       u1          *xpc;
+   4d 8b 15 e2 fe ff ff             mov    -286(%rip),%r10
+   49 ff d2                         rex64Z callq  *%r10
 
-       _uc = (ucontext_t *) _p;
-       _mc = &_uc->uc_mcontext;
+   INVOKEVIRTUAL:
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
+   4c 8b 17                         mov    (%rdi),%r10
+   49 8b 82 00 00 00 00             mov    0x0(%r10),%rax
+   48 ff d3                         rex64 callq  *%rax
 
-       sp  = (u1 *) _mc->gregs[REG_RSP];
-       xpc = (u1 *) _mc->gregs[REG_RIP];
-       ra  = xpc;                          /* return address is equal to xpc     */
+   INVOKEINTERFACE:
 
-       _mc->gregs[REG_RAX] =
-               (ptrint) stacktrace_hardware_nullpointerexception(NULL, sp, ra, xpc);
+   4c 8b 17                         mov    (%rdi),%r10
+   4d 8b 92 00 00 00 00             mov    0x0(%r10),%r10
+   49 8b 82 00 00 00 00             mov    0x0(%r10),%rax
+   48 ff d3                         rex64 callq  *%r11
 
-       _mc->gregs[REG_R10] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
-       _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
-}
+*******************************************************************************/
 
+void *md_jit_method_patch_address(void *pv, void *ra, void *mptr)
+{
+       uint8_t *pc;
+       uint8_t  mcode;
+       int32_t  offset;
+       void    *pa;                        /* patch address                      */
 
-/* md_signal_handler_sigfpe ****************************************************
+       /* go back to the actual call instruction (3-bytes) */
 
-   ArithmeticException signal handler for hardware divide by zero
-   check.
+       pc = ((uint8_t *) ra) - 3;
 
-*******************************************************************************/
+       /* get the last byte of the call */
 
-void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
-{
-       ucontext_t  *_uc;
-       mcontext_t  *_mc;
-       u1          *sp;
-       u1          *ra;
-       u1          *xpc;
+       mcode = pc[2];
 
-       _uc = (ucontext_t *) _p;
-       _mc = &_uc->uc_mcontext;
+       /* check for the different calls */
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
+       if (mcode == 0xd2) {
+               /* INVOKESTATIC/SPECIAL */
 
-       sp  = (u1 *) _mc->gregs[REG_RSP];
-       xpc = (u1 *) _mc->gregs[REG_RIP];
-       ra  = xpc;                          /* return address is equal to xpc     */
+               /* Get the offset from the instruction (the offset address is
+                  4-bytes before the call instruction). */
 
-       _mc->gregs[REG_RAX] =
-               (ptrint) stacktrace_hardware_arithmeticexception(NULL, sp, ra, xpc);
+               offset = *((int32_t *) (pc - 4));
 
-       _mc->gregs[REG_R10] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
-       _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
-}
+               /* add the offset to the return address (IP-relative addressing) */
 
+               pa = pc + offset;
+       }
+       else if (mcode == 0xd3) {
+               /* INVOKEVIRTUAL/INTERFACE */
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-void thread_restartcriticalsection(ucontext_t *uc)
-{
-       void *critical;
+               /* return NULL if no mptr was specified (used for replacement) */
 
-       critical = thread_checkcritical((void *) uc->uc_mcontext.gregs[REG_RIP]);
+               if (mptr == NULL)
+                       return NULL;
 
-       if (critical)
-               uc->uc_mcontext.gregs[REG_RIP] = (ptrint) critical;
-}
-#endif
+               /* Get the offset from the instruction (the offset address is
+                  4-bytes before the call instruction). */
 
+               offset = *((int32_t *) (pc - 4));
 
-/* md_stacktrace_get_returnaddress *********************************************
+               /* add the offset to the method pointer */
 
-   Returns the return address of the current stackframe, specified by
-   the passed stack pointer and the stack frame size.
+               pa = ((uint8_t *) mptr) + offset;
+       }
+       else {
+               /* catch any problems */
 
-*******************************************************************************/
+               vm_abort("md_jit_method_patch_address: unknown instruction %x", mcode);
 
-u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
-{
-       u1 *ra;
+               /* keep compiler happy */
+
+               pa = NULL;
+       }
 
-       /* on x86_64 the return address is above the current stack frame */
+       return pa;
+}
 
-       ra = *((u1 **) (sp + framesize));
 
-       return ra;
+/**
+ * Decode the trap instruction at the given PC.
+ *
+ * @param trp information about trap to be filled
+ * @param sig signal number
+ * @param xpc exception PC
+ * @param es execution state of the machine
+ * @return true if trap was decoded successfully, false otherwise.
+ */
+bool md_trap_decode(trapinfo_t* trp, int sig, void* _xpc, executionstate_t* es)
+{
+       uint8_t* xpc = (uint8_t*) _xpc;
+
+#if 0
+       // Check for StackOverflowException.
+       threads_check_stackoverflow(sp);
+#endif
+
+       switch (sig) {
+       case TRAP_SIGFPE:
+               // Check for ArithmeticException.
+               trp->type  = TRAP_ArithmeticException;
+               trp->value = 0;
+               return true;
+
+       case TRAP_SIGILL:
+               // Check for valid trap instruction.
+               if (patcher_is_valid_trap_instruction_at(xpc)) {
+                       trp->type  = TRAP_PATCHER;
+                       trp->value = 0;
+                       return true;
+               }
+               return false;
+
+       case TRAP_SIGSEGV:
+       {
+               // Get exception-throwing instruction.
+               uint8_t opc = M_ALD_MEM_GET_OPC(xpc);
+               uint8_t mod = M_ALD_MEM_GET_MOD(xpc);
+               uint8_t rm  = M_ALD_MEM_GET_RM(xpc);
+
+               // Check for hardware exception, for values
+               // see emit_mov_mem_reg and emit_mem.
+               if ((opc == 0x8b) && (mod == 0) && (rm == 4)) {
+                       int32_t d    = M_ALD_MEM_GET_REG(xpc);
+                       int32_t disp = M_ALD_MEM_GET_DISP(xpc);
+
+                       // We use the exception type as load displacement.
+                       trp->type  = disp;
+                       trp->value = es->intregs[d];
+                       return true;
+               }
+
+               // Default case is a normal NullPointerException.
+               else {
+                       trp->type  = TRAP_NullPointerException;
+                       trp->value = 0;
+                       return true;
+               }
+       }
+       
+       default:
+               return false;
+       }
 }
 
 
-/* md_codegen_findmethod *******************************************************
+/* md_patch_replacement_point **************************************************
 
-   On this architecture just a wrapper function to codegen_findmethod.
+   Patch the given replacement point.
 
 *******************************************************************************/
 
-u1 *md_codegen_findmethod(u1 *ra)
+#if defined(ENABLE_REPLACEMENT)
+void md_patch_replacement_point(u1 *pc, u1 *savedmcode, bool revert)
 {
-       u1 *pv;
+       u2 mcode;
+
+       if (revert) {
+               /* write saved machine code */
+               *(u2*)(pc) = *(u2*)(savedmcode);
+       }
+       else {
+               /* save the current machine code */
+               *(u2*)(savedmcode) = *(u2*)(pc);
 
-       /* the the start address of the function which contains this
-       address from the method table */
+               /* build the machine code for the patch */
+               mcode = 0x0b0f;
 
-       pv = codegen_findmethod(ra);
+               /* write new machine code */
+               *(u2*)(pc) = (u2) mcode;
+       }
 
-       return pv;
+    /* XXX if required asm_cacheflush(pc,8); */
 }
+#endif /* defined(ENABLE_REPLACEMENT) */
 
 
 /*
@@ -188,4 +248,5 @@ u1 *md_codegen_findmethod(u1 *ra)
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */