* src/vm/jit/x86_64/codegen.c (codegen): Use code variables.
[cacao.git] / src / vm / jit / x86_64 / md.c
index d07fcb74e01ea323e559f32ca94de43670aaafcc..e2c68ac5ee755011b6e8babe6e545e77e447e094 100644 (file)
@@ -1,9 +1,9 @@
 /* src/vm/jit/x86_64/md.c - machine dependent x86_64 Linux 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 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
+   Contact: cacao@cacaojvm.org
 
    Authors: Christian Thalinger
 
-   Changes:
+   Changes: Edwin Steiner
 
-   $Id: md.c 2956 2005-07-09 14:04:34Z twisti $
+   $Id: md.c 5051 2006-06-28 15:39:22Z twisti $
 
 */
 
 
 #define _GNU_SOURCE
 
+#include "config.h"
+
+#include <assert.h>
 #include <stdlib.h>
 #include <ucontext.h>
 
-#include "config.h"
 #include "vm/jit/x86_64/md-abi.h"
 
+#if defined(ENABLE_THREADS)
+# include "threads/native/threads.h"
+#endif
+
 #include "vm/exceptions.h"
-#include "vm/options.h"
-#include "vm/stringlocal.h"
+#include "vm/signallocal.h"
 #include "vm/jit/asmpart.h"
+#include "vm/jit/stacktrace.h"
+
+#if !defined(NDEBUG) && defined(ENABLE_DISASSEMBLER)
+#include "vm/options.h" /* XXX debug */
+#include "vm/jit/disass.h" /* XXX debug */
+#endif
 
 
 /* md_init *********************************************************************
@@ -59,128 +70,300 @@ void md_init(void)
 }
 
 
-/* signal_handler_sigsegv ******************************************************
+/* md_signal_handler_sigsegv ***************************************************
 
-   NullPointerException signal handler for hardware null pointer check.
+   NullPointerException signal handler for hardware null pointer
+   check.
 
 *******************************************************************************/
 
-void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
+void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
 {
-       ucontext_t     *_uc;
-       mcontext_t     *_mc;
-       stackframeinfo *sfi;
-       u1             *pv;
-       u1             *sp;
-       functionptr     ra;
+       ucontext_t  *_uc;
+       mcontext_t  *_mc;
+       u1          *sp;
+       u1          *ra;
+       u1          *xpc;
 
        _uc = (ucontext_t *) _p;
        _mc = &_uc->uc_mcontext;
 
-       /* allocate stackframeinfo on heap */
+       /* ATTENTION: Don't use CACAO's internal REG_* defines as they are
+          different to the ones in <ucontext.h>. */
 
-       sfi = NEW(stackframeinfo);
+       sp  = (u1 *) _mc->gregs[REG_RSP];
+       xpc = (u1 *) _mc->gregs[REG_RIP];
+       ra  = xpc;                          /* return address is equal to xpc     */
 
-       /* create exception */
+       _mc->gregs[REG_RAX] =
+               (ptrint) stacktrace_hardware_nullpointerexception(NULL, sp, ra, xpc);
+
+       _mc->gregs[REG_R10] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
+       _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
+}
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
 
-       sp = (u1 *) _mc->gregs[REG_RSP];
-       ra = (functionptr) _mc->gregs[REG_RIP];
+/* md_signal_handler_sigfpe ****************************************************
+
+   ArithmeticException signal handler for hardware divide by zero
+   check.
+
+*******************************************************************************/
 
-       pv = (u1 *) codegen_findmethod(ra);
+void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
+{
+       ucontext_t  *_uc;
+       mcontext_t  *_mc;
+       u1          *sp;
+       u1          *ra;
+       u1          *xpc;
 
-       stacktrace_create_inline_stackframeinfo(sfi, pv, sp, ra);
+       _uc = (ucontext_t *) _p;
+       _mc = &_uc->uc_mcontext;
 
-       _mc->gregs[REG_RAX] = (ptrint) new_nullpointerexception();
+       /* ATTENTION: Don't use CACAO's internal REG_* defines as they are
+          different to the ones in <ucontext.h>. */
 
-       stacktrace_remove_stackframeinfo(sfi);
+       sp  = (u1 *) _mc->gregs[REG_RSP];
+       xpc = (u1 *) _mc->gregs[REG_RIP];
+       ra  = xpc;                          /* return address is equal to xpc     */
 
-       FREE(sfi, stackframeinfo);
+       _mc->gregs[REG_RAX] =
+               (ptrint) stacktrace_hardware_arithmeticexception(NULL, sp, ra, xpc);
 
-       _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
+       _mc->gregs[REG_R10] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
        _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
 }
 
 
-/* signal_handler_sigfpe *******************************************************
+/* md_signal_handler_sigusr2 ***************************************************
 
-   ArithmeticException signal handler for hardware divide by zero check.
+   NullPointerException signal handler for hardware null pointer
+   check.
 
 *******************************************************************************/
 
-void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
+void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
 {
-       ucontext_t     *_uc;
-       mcontext_t     *_mc;
-       stackframeinfo *sfi;
-       u1             *pv;
-       u1             *sp;
-       functionptr     ra;
+       threadobject *t;
+       ucontext_t   *_uc;
+       mcontext_t   *_mc;
+       u1           *pc;
+
+       t = THREADOBJECT;
 
        _uc = (ucontext_t *) _p;
        _mc = &_uc->uc_mcontext;
 
-       /* allocate stackframeinfo on heap */
+       /* ATTENTION: Don't use CACAO's internal REG_* defines as they are
+          different to the ones in <ucontext.h>. */
 
-       sfi = NEW(stackframeinfo);
+       pc = (u1 *) _mc->gregs[REG_RIP];
 
-       /* create exception */
+       t->pc = pc;
+}
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
 
-       sp = (u1 *) _mc->gregs[REG_RSP];
-       ra = (functionptr) _mc->gregs[REG_RIP];
+#if defined(ENABLE_THREADS)
+void thread_restartcriticalsection(ucontext_t *_uc)
+{
+       mcontext_t *_mc;
+       void       *pc;
 
-       pv = (u1 *) codegen_findmethod(ra);
+       _mc = &_uc->uc_mcontext;
 
-       stacktrace_create_inline_stackframeinfo(sfi, pv, sp, ra);
+       pc = critical_find_restart_point((void *) _mc->gregs[REG_RIP]);
 
-       _mc->gregs[REG_RAX] = (ptrint) new_arithmeticexception();
+       if (pc != NULL)
+               _mc->gregs[REG_RIP] = (ptrint) pc;
+}
+#endif
 
-       stacktrace_remove_stackframeinfo(sfi);
 
-       FREE(sfi, stackframeinfo);
+/* md_stacktrace_get_returnaddress *********************************************
 
-       _mc->gregs[REG_R10] = _mc->gregs[REG_RIP];               /* REG_ITMP2_XPC */
-       _mc->gregs[REG_RIP] = (ptrint) asm_handle_exception;
+   Returns the return address of the current stackframe, specified by
+   the passed stack pointer and the stack frame size.
+
+*******************************************************************************/
+
+u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
+{
+       u1 *ra;
+
+       /* on x86_64 the return address is above the current stack frame */
+
+       ra = *((u1 **) (sp + framesize));
+
+       return ra;
 }
 
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-void thread_restartcriticalsection(ucontext_t *uc)
+/* 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:
+
+   49 ba 98 3a ed ab aa 2a 00 00    mov    $0x2aaaabed3a98,%r10
+   49 ff d2                         rex64Z callq  *%r10
+
+   INVOKEVIRTUAL:
+
+   4c 8b 17                         mov    (%rdi),%r10
+   49 8b 82 00 00 00 00             mov    0x0(%r10),%rax
+   48 ff d3                         rex64 callq  *%rax
+
+   INVOKEINTERFACE:
+
+   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
+
+*******************************************************************************/
+
+u1 *md_get_method_patch_address(u1 *ra, stackframeinfo *sfi, u1 *mptr)
 {
-       void *critical;
+       u1  mcode;
+       s4  offset;
+       u1 *pa;                             /* patch address                      */
+
+       /* go back to the actual call instruction (3-bytes) */
+
+       ra = ra - 3;
+
+       /* get the last byte of the call */
+
+       mcode = ra[2];
+
+       /* check for the different calls */
+
+       /* INVOKESTATIC/SPECIAL */
+
+       if (mcode == 0xd2) {
+               /* patch address is 8-bytes before the call instruction */
 
-       critical = thread_checkcritical((void *) uc->uc_mcontext.gregs[REG_RIP]);
+               pa = ra - 8;
 
-       if (critical)
-               uc->uc_mcontext.gregs[REG_RIP] = (ptrint) critical;
+       } else if (mcode == 0xd3) {
+               /* INVOKEVIRTUAL/INTERFACE */
+
+               /* Get the offset from the instruction (the offset address is
+                  4-bytes before the call instruction). */
+
+               offset = *((s4 *) (ra - 4));
+
+               /* add the offset to the method pointer */
+
+               pa = mptr + offset;
+
+       } else {
+               /* catch any problems */
+
+               assert(0);
+       }
+
+       return pa;
 }
-#endif
 
 
-/* md_stacktrace_get_returnaddress *********************************************
+/* md_codegen_findmethod *******************************************************
 
-   Returns the return address of the current stackframe, specified by
-   the passed stack pointer and the stack frame size.
+   On this architecture just a wrapper function to codegen_findmethod.
 
 *******************************************************************************/
 
-functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
+u1 *md_codegen_findmethod(u1 *ra)
 {
-       functionptr ra;
+       u1 *pv;
 
-       /* on x86_64 the return address is above the current stack frame */
+       /* the the start address of the function which contains this
+       address from the method table */
 
-       ra = (functionptr) *((u1 **) (sp + framesize));
+       pv = codegen_findmethod(ra);
 
-       return ra;
+       return pv;
 }
 
 
+/* md_cacheflush ***************************************************************
+
+   Calls the system's function to flush the instruction and data
+   cache.
+
+*******************************************************************************/
+
+void md_cacheflush(u1 *addr, s4 nbytes)
+{
+       /* do nothing */
+}
+
+
+/* md_icacheflush **************************************************************
+
+   Calls the system's function to flush the instruction cache.
+
+*******************************************************************************/
+
+void md_icacheflush(u1 *addr, s4 nbytes)
+{
+       /* do nothing */
+}
+
+
+/* md_dcacheflush **************************************************************
+
+   Calls the system's function to flush the data cache.
+
+*******************************************************************************/
+
+void md_dcacheflush(u1 *addr, s4 nbytes)
+{
+       /* do nothing */
+}
+
+
+/* md_patch_replacement_point **************************************************
+
+   Patch the given replacement point.
+
+*******************************************************************************/
+
+void md_patch_replacement_point(rplpoint *rp)
+{
+    u8 mcode;
+
+       /* XXX this is probably unsafe! */
+
+       /* save the current machine code */
+       mcode = *(u8*)rp->pc;
+
+       /* write spinning instruction */
+       *(u2*)(rp->pc) = 0xebfe;
+
+       /* write 5th byte */
+       rp->pc[4] = (rp->mcode >> 32);
+
+       /* write first word */
+    *(u4*)(rp->pc) = (u4) rp->mcode;
+
+       /* store saved mcode */
+       rp->mcode = mcode;
+       
+#if !defined(NDEBUG) && defined(ENABLE_DISASSEMBLER)
+       {
+               u1* u1ptr = rp->pc;
+               DISASSINSTR(u1ptr);
+               fflush(stdout);
+       }
+#endif
+                       
+    /* XXX if required asm_cacheflush(rp->pc,8); */
+}
+
 /*
  * 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
@@ -192,4 +375,5 @@ functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */