Merged trunk and subtype.
[cacao.git] / src / vm / jit / alpha / patcher.c
index ce1c4662682f56a3dd6e97a756df4c2b1fa248c1..1f3a9342273fdcdd32c6632f1652a3a7f9ffc6c3 100644 (file)
@@ -1,9 +1,7 @@
 /* src/vm/jit/alpha/patcher.c - Alpha code patching 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
 
    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: Christian Thalinger
+*/
 
-   Changes:
 
-   $Id: patcher.c 3108 2005-07-24 23:04:48Z twisti $
+#include "config.h"
 
-*/
+#include <assert.h>
 
+#include "vm/types.h"
 
-#include "vm/jit/alpha/types.h"
+#include "vm/jit/alpha/md.h"
 
 #include "mm/memory.h"
+
 #include "native/native.h"
-#include "vm/builtin.h"
-#include "vm/field.h"
+
+#include "vm/jit/builtin.hpp"
+#include "vm/class.h"
+#include "vm/field.hpp"
 #include "vm/initialize.h"
 #include "vm/options.h"
 #include "vm/references.h"
-#include "vm/jit/asmpart.h"
-#include "vm/jit/helper.h"
-#include "vm/jit/patcher.h"
-
-
-/* patcher_get_putstatic *******************************************************
-
-   Machine code:
-
-   <patched call position>
-   a73bff98    ldq     t11,-104(pv)
-   a2590000    ldl     a2,0(t11)
-
-*******************************************************************************/
-
-bool patcher_get_putstatic(u1 *sp)
-{
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       unresolved_field  *uf;
-       s4                 disp;
-       u1                *pv;
-       fieldinfo         *fi;
-
-       /* get stuff from the stack */
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       uf    = (unresolved_field *)  *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the fieldinfo */
-
-       if (!(fi = helper_resolve_fieldinfo(uf))) {
-               PATCHER_MONITOREXIT;
-
-               return false;
-       }
-
-       /* check if the field's class is initialized */
-
-       if (!fi->class->initialized) {
-               if (!initialize_class(fi->class)) {
-                       PATCHER_MONITOREXIT;
-
-                       return false;
-               }
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch the field value's address */
-
-       *((ptrint *) (pv + disp)) = (ptrint) &(fi->value);
+#include "vm/resolve.h"
 
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
+#include "vm/jit/asmpart.h"
+#include "vm/jit/patcher-common.hpp"
+#include "vm/jit/methodheader.h"
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
 
-       return true;
-}
+#define PATCH_BACK_ORIGINAL_MCODE \
+       *((u4 *) pr->mpc) = (u4) pr->mcode; \
+    md_icacheflush(NULL, 0);
 
 
-/* patcher_get_putfield ********************************************************
+/* patcher_patch_code **********************************************************
 
-   Machine code:
-
-   <patched call position>
-   a2af0020    ldl     a5,32(s6)
+   Just patches back the original machine code.
 
 *******************************************************************************/
 
-bool patcher_get_putfield(u1 *sp)
+void patcher_patch_code(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       unresolved_field  *uf;
-       fieldinfo         *fi;
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       uf    = (unresolved_field *)  *((ptrint *) (sp + 2 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the fieldinfo */
-
-       if (!(fi = helper_resolve_fieldinfo(uf))) {
-               PATCHER_MONITOREXIT;
-
-               return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch the field's offset */
-
-       *((u4 *) ra) |= (s2) (fi->offset & 0x0000ffff);
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
-
-       return true;
+       PATCH_BACK_ORIGINAL_MCODE;
 }
 
 
-/* patcher_builtin_new *********************************************************
+/* patcher_resolve_classref_to_classinfo ***************************************
 
-   Machine code:
+   ACONST:
 
-   a61bff80    ldq     a0,-128(pv)
    <patched call postition>
+   a61bff80    ldq     a0,-128(pv)
+
+   MULTIANEWARRAY:
+
+   <patched call position>
+   a63bff80    ldq     a1,-128(pv)
+   47de0412    mov     sp,a2
    a77bff78    ldq     pv,-136(pv)
    6b5b4000    jsr     (pv)
 
-   NOTICE: Only the displacement for the function address is passed,
-   but the address of the classinfo pointer is one below (above, in
-   addresses speaking). This is for sure.
+   ARRAYCHECKCAST:
+
+   <patched call position>
+   a63bfe60    ldq     a1,-416(pv)
+   a77bfe58    ldq     pv,-424(pv)
+   6b5b4000    jsr     (pv)
 
 *******************************************************************************/
 
-bool patcher_builtin_new(u1 *sp)
+bool patcher_resolve_classref_to_classinfo(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
+       u1                *datap;
        classinfo         *c;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 2 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       cr    = (constant_classref *) pr->ref;
+       datap = (u1 *)                pr->datap;
 
        /* get the classinfo */
 
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(c = resolve_classref_eager(cr)))
                return false;
-       }
-
-       /* patch back original code */
 
-       *((u4 *) (ra + 4)) = mcode;
+       PATCH_BACK_ORIGINAL_MCODE;
 
        /* patch the classinfo pointer */
 
-       *((ptrint *) (pv + (disp + SIZEOF_VOID_P))) = (ptrint) c;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch new function address */
-
-       *((ptrint *) (pv + disp)) = (ptrint) BUILTIN_new;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       *((ptrint *) datap) = (ptrint) c;
 
        return true;
 }
 
 
-/* patcher_builtin_newarray ****************************************************
+/* patcher_resolve_classref_to_vftbl *******************************************
 
-   Machine code:
+   CHECKCAST (class):
+   INSTANCEOF (class):
 
-   a63bff88    ldq     a1,-120(pv)
    <patched call position>
-   a77bff80    ldq     pv,-128(pv)
-   6b5b4000    jsr     (pv)
-
-   NOTICE: Only the displacement for the function address is passed,
-   but the address of the classinfo pointer is one below (above, in
-   addresses speaking). This is for sure.
+   a7940000    ldq     at,0(a4)
+   a7bbff28    ldq     gp,-216(pv)
 
 *******************************************************************************/
 
-bool patcher_builtin_newarray(u1 *sp)
+bool patcher_resolve_classref_to_vftbl(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
+       u1                *datap;
        classinfo         *c;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
+       cr    = (constant_classref *) pr->ref;
+       datap = (u1 *)                pr->datap;
 
-       ra = ra - 2 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the classinfo */
-
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
+       /* get the fieldinfo */
 
+       if (!(c = resolve_classref_eager(cr)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) (ra + 4)) = mcode;
-
-       /* patch the class' vftbl pointer */
-
-       *((ptrint *) (pv + (disp + SIZEOF_VOID_P))) = (ptrint) c->vftbl;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
 
-       /* patch new function address */
+       PATCH_BACK_ORIGINAL_MCODE;
 
-       *((ptrint *) (pv + disp)) = (ptrint) BUILTIN_newarray;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
+       /* patch super class' vftbl */
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       *((ptrint *) datap) = (ptrint) c->vftbl;
 
        return true;
 }
 
 
-/* patcher_builtin_multianewarray **********************************************
+/* patcher_resolve_classref_to_flags *******************************************
 
-   Machine code:
+   CHECKCAST/INSTANCEOF:
 
    <patched call position>
-   a63bff80    ldq     a1,-128(pv)
-   47de0412    mov     sp,a2
-   a77bff78    ldq     pv,-136(pv)
-   6b5b4000    jsr     (pv)
 
 *******************************************************************************/
 
-bool patcher_builtin_multianewarray(u1 *sp)
+bool patcher_resolve_classref_to_flags(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
+       u1                *datap;
        classinfo         *c;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
+       cr    = (constant_classref *) pr->ref;
+       datap = (u1 *)                pr->datap;
 
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the classinfo */
-
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
+       /* get the fieldinfo */
 
+       if (!(c = resolve_classref_eager(cr)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch the class' vftbl pointer */
-
-       *((ptrint *) (pv + disp)) = (ptrint) c->vftbl;
 
-       /* synchronize instruction cache */
+       PATCH_BACK_ORIGINAL_MCODE;
 
-       asm_sync_instruction_cache();
+       /* patch class flags */
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       *((s4 *) datap) = (s4) c->flags;
 
        return true;
 }
 
 
-/* patcher_builtin_arraycheckcast **********************************************
+/* patcher_get_putstatic *******************************************************
 
    Machine code:
 
    <patched call position>
-   a63bfe60    ldq     a1,-416(pv)
-   a77bfe58    ldq     pv,-424(pv)
-   6b5b4000    jsr     (pv)
-
-   NOTICE: Only the displacement of the vftbl pointer address is
-   passed, but the address of the function pointer is one above
-   (below, in addresses speaking). This is for sure.
+   a73bff98    ldq     t11,-104(pv)
+   a2590000    ldl     a2,0(t11)
 
 *******************************************************************************/
 
-bool patcher_builtin_arraycheckcast(u1 *sp)
+bool patcher_get_putstatic(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
-       classinfo         *c;
+       unresolved_field *uf;
+       u1               *datap;
+       fieldinfo        *fi;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the classinfo */
+       uf    = (unresolved_field *) pr->ref;
+       datap = (u1 *)               pr->datap;
 
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
+       /* get the fieldinfo */
 
+       if (!(fi = resolve_field_eager(uf)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
 
-       /* patch the class' vftbl pointer */
-
-       *((ptrint *) (pv + disp)) = (ptrint) c->vftbl;
-
-       /* patch new function address */
+       /* check if the field's class is initialized */
 
-       *((ptrint *) (pv + (disp - SIZEOF_VOID_P))) =
-               (ptrint) BUILTIN_arraycheckcast;
+       if (!(fi->clazz->state & CLASS_INITIALIZED))
+               if (!initialize_class(fi->clazz))
+                       return false;
 
-       /* synchronize instruction cache */
+       PATCH_BACK_ORIGINAL_MCODE;
 
-       asm_sync_instruction_cache();
+       /* patch the field value's address */
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       *((intptr_t *) datap) = (intptr_t) fi->value;
 
        return true;
 }
 
 
-/* patcher_builtin_arrayinstanceof *********************************************
+/* patcher_get_putfield ********************************************************
 
    Machine code:
 
-   a63bfeb0    ldq     a1,-336(pv)
    <patched call position>
-   a77bfea8    ldq     pv,-344(pv)
-   6b5b4000    jsr     (pv)
-
-   NOTICE: Only the displacement for the function address is passed,
-   but the address of the vftbl pointer is one below (above, in
-   addresses speaking). This is for sure.
+   a2af0020    ldl     a5,32(s6)
 
 *******************************************************************************/
 
-bool patcher_builtin_arrayinstanceof(u1 *sp)
+bool patcher_get_putfield(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
-       classinfo         *c;
-
-       /* get stuff from the stack */
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
+       u1               *ra;
+       unresolved_field *uf;
+       fieldinfo        *fi;
 
-       ra = ra - 2 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
+       ra    = (u1 *)               pr->mpc;
+       uf    = (unresolved_field *) pr->ref;
 
-       PATCHER_MONITORENTER;
-
-       /* get the classinfo */
-
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
+       /* get the fieldinfo */
 
+       if (!(fi = resolve_field_eager(uf)))
                return false;
-       }
-
-       /* patch back original code */
 
-       *((u4 *) (ra + 4)) = mcode;
+       PATCH_BACK_ORIGINAL_MCODE;
 
-       /* patch the class' vftbl pointer */
-       
-       *((ptrint *) (pv + (disp + SIZEOF_VOID_P))) = (ptrint) c->vftbl;
+       /* patch the field's offset into the instruction */
 
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch new function address */
-
-       *((ptrint *) (pv + disp)) = (ptrint) BUILTIN_arrayinstanceof;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
+       *((u4 *) ra) |= (s2) (fi->offset & 0x0000ffff);
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       md_icacheflush(NULL, 0);
 
        return true;
 }
@@ -568,58 +273,27 @@ bool patcher_builtin_arrayinstanceof(u1 *sp)
 
 ******************************************************************************/
 
-bool patcher_invokestatic_special(u1 *sp)
+bool patcher_invokestatic_special(patchref_t *pr)
 {
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        unresolved_method *um;
-       s4                 disp;
-       u1                *pv;
+       u1                *datap;
        methodinfo        *m;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       um    = (unresolved_method *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       um    = (unresolved_method *) pr->ref;
+       datap = (u1 *)                pr->datap;
 
        /* get the fieldinfo */
 
-       if (!(m = helper_resolve_methodinfo(um))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(m = resolve_method_eager(um)))
                return false;
-       }
 
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
+       PATCH_BACK_ORIGINAL_MCODE;
 
        /* patch stubroutine */
 
-       *((ptrint *) (pv + disp)) = (ptrint) m->stubroutine;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       *((ptrint *) datap) = (ptrint) m->stubroutine;
 
        return true;
 }
@@ -636,55 +310,30 @@ bool patcher_invokestatic_special(u1 *sp)
 
 *******************************************************************************/
 
-bool patcher_invokevirtual(u1 *sp)
+bool patcher_invokevirtual(patchref_t *pr)
 {
        u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        unresolved_method *um;
        methodinfo        *m;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       um    = (unresolved_method *) *((ptrint *) (sp + 2 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       ra    = (u1 *)                pr->mpc;
+       um    = (unresolved_method *) pr->ref;
 
        /* get the fieldinfo */
 
-       if (!(m = helper_resolve_methodinfo(um))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(m = resolve_method_eager(um)))
                return false;
-       }
-
-       /* patch back original code */
 
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
+       PATCH_BACK_ORIGINAL_MCODE;
 
        /* patch vftbl index */
 
        *((s4 *) (ra + 4)) |= (s4) ((OFFSET(vftbl_t, table[0]) +
                                                                 sizeof(methodptr) * m->vftblindex) & 0x0000ffff);
 
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       md_icacheflush(NULL, 0);
 
        return true;
 }
@@ -702,131 +351,85 @@ bool patcher_invokevirtual(u1 *sp)
 
 *******************************************************************************/
 
-bool patcher_invokeinterface(u1 *sp)
+bool patcher_invokeinterface(patchref_t *pr)
 {
        u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        unresolved_method *um;
        methodinfo        *m;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       um    = (unresolved_method *) *((ptrint *) (sp + 2 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       ra    = (u1 *)                pr->mpc;
+       um    = (unresolved_method *) pr->ref;
 
        /* get the fieldinfo */
 
-       if (!(m = helper_resolve_methodinfo(um))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(m = resolve_method_eager(um)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
 
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
+       PATCH_BACK_ORIGINAL_MCODE;
 
        /* patch interfacetable index */
 
        *((s4 *) (ra + 4)) |= (s4) ((OFFSET(vftbl_t, interfacetable[0]) -
-                                                                sizeof(methodptr*) * m->class->index) & 0x0000ffff);
+                                                                sizeof(methodptr*) * m->clazz->index) & 0x0000ffff);
 
        /* patch method offset */
 
        *((s4 *) (ra + 4 + 4)) |=
-               (s4) ((sizeof(methodptr) * (m - m->class->methods)) & 0x0000ffff);
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
+               (s4) ((sizeof(methodptr) * (m - m->clazz->methods)) & 0x0000ffff);
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       md_icacheflush(NULL, 0);
 
        return true;
 }
 
 
-/* patcher_checkcast_instanceof_flags ******************************************
+/* patcher_checkcast_interface *************************************************
 
    Machine code:
 
    <patched call position>
+   a78e0000    ldq     at,0(s5)
+   a3bc001c    ldl     gp,28(at)
+   23bdfffd    lda     gp,-3(gp)
+   efa0002e    ble     gp,0x00000200002bf6b0
+   a7bcffe8    ldq     gp,-24(at)
 
 *******************************************************************************/
 
-bool patcher_checkcast_instanceof_flags(u1 *sp)
+bool patcher_checkcast_interface(patchref_t *pr)
 {
        u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
        classinfo         *c;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       ra    = (u1 *)                pr->mpc;
+       cr    = (constant_classref *) pr->ref;
 
        /* get the fieldinfo */
 
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(c = resolve_classref_eager(cr)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
 
-       /* patch class flags */
+       PATCH_BACK_ORIGINAL_MCODE;
 
-       *((s4 *) (pv + disp)) = (s4) c->flags;
+       /* patch super class index */
 
-       /* synchronize instruction cache */
+       *((s4 *) (ra + 2 * 4)) |= (s4) (-(c->index) & 0x0000ffff);
 
-       asm_sync_instruction_cache();
+       *((s4 *) (ra + 5 * 4)) |= (s4) ((OFFSET(vftbl_t, interfacetable[0]) -
+                                                                        c->index * sizeof(methodptr*)) & 0x0000ffff);
 
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       md_icacheflush(NULL, 0);
 
        return true;
 }
 
 
-/* patcher_checkcast_instanceof_interface **************************************
+/* patcher_instanceof_interface ************************************************
 
    Machine code:
 
@@ -839,44 +442,23 @@ bool patcher_checkcast_instanceof_flags(u1 *sp)
 
 *******************************************************************************/
 
-bool patcher_checkcast_instanceof_interface(u1 *sp)
+bool patcher_instanceof_interface(patchref_t *pr)
 {
        u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
        constant_classref *cr;
        classinfo         *c;
 
        /* get stuff from the stack */
 
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
+       ra    = (u1 *)                pr->mpc;
+       cr    = (constant_classref *) pr->ref;
 
        /* get the fieldinfo */
 
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
-
+       if (!(c = resolve_classref_eager(cr)))
                return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
 
-       if (opt_showdisassemble)
-               ra = ra + 4;
+       PATCH_BACK_ORIGINAL_MCODE;
 
        /* patch super class index */
 
@@ -885,197 +467,10 @@ bool patcher_checkcast_instanceof_interface(u1 *sp)
        *((s4 *) (ra + 4 * 4)) |= (s4) ((OFFSET(vftbl_t, interfacetable[0]) -
                                                                         c->index * sizeof(methodptr*)) & 0x0000ffff);
 
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
-
-       return true;
-}
-
-
-/* patcher_checkcast_instanceof_class ******************************************
-
-   Machine code:
-
-   <patched call position>
-   a7940000    ldq     at,0(a4)
-   a7bbff28    ldq     gp,-216(pv)
-
-*******************************************************************************/
-
-bool patcher_checkcast_instanceof_class(u1 *sp)
-{
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       constant_classref *cr;
-       s4                 disp;
-       u1                *pv;
-       classinfo         *c;
-
-       /* get stuff from the stack */
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       cr    = (constant_classref *) *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* get the fieldinfo */
-
-       if (!(c = helper_resolve_classinfo(cr))) {
-               PATCHER_MONITOREXIT;
-
-               return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch super class' vftbl */
-
-       *((ptrint *) (pv + disp)) = (ptrint) c->vftbl;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
-
-       return true;
-}
-
-
-/* patcher_clinit **************************************************************
-
-   XXX
-
-*******************************************************************************/
-
-bool patcher_clinit(u1 *sp)
-{
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       classinfo         *c;
-
-       /* get stuff from the stack */
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       c     = (classinfo *)         *((ptrint *) (sp + 2 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* check if the class is initialized */
-
-       if (!c->initialized) {
-               if (!initialize_class(c)) {
-                       PATCHER_MONITOREXIT;
-
-                       return false;
-               }
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
-
-       return true;
-}
-
-
-/* patcher_resolve_native ******************************************************
-
-   XXX
-
-*******************************************************************************/
-
-#if !defined(ENABLE_STATICVM)
-bool patcher_resolve_native(u1 *sp)
-{
-       u1                *ra;
-       java_objectheader *o;
-       u4                 mcode;
-       methodinfo        *m;
-       s4                 disp;
-       u1                *pv;
-       functionptr        f;
-
-       /* get stuff from the stack */
-
-       ra    = (u1 *)                *((ptrint *) (sp + 5 * 8));
-       o     = (java_objectheader *) *((ptrint *) (sp + 4 * 8));
-       mcode =                       *((u4 *)     (sp + 3 * 8));
-       m     = (methodinfo *)        *((ptrint *) (sp + 2 * 8));
-       disp  =                       *((s4 *)     (sp + 1 * 8));
-       pv    = (u1 *)                *((ptrint *) (sp + 0 * 8));
-
-       /* calculate and set the new return address */
-
-       ra = ra - 1 * 4;
-       *((ptrint *) (sp + 5 * 8)) = (ptrint) ra;
-
-       PATCHER_MONITORENTER;
-
-       /* resolve native function */
-
-       if (!(f = native_resolve_function(m))) {
-               PATCHER_MONITOREXIT;
-
-               return false;
-       }
-
-       /* patch back original code */
-
-       *((u4 *) ra) = mcode;
-
-       /* if we show disassembly, we have to skip the nop */
-
-       if (opt_showdisassemble)
-               ra = ra + 4;
-
-       /* patch native function pointer */
-
-       *((ptrint *) (pv + disp)) = (ptrint) f;
-
-       /* synchronize instruction cache */
-
-       asm_sync_instruction_cache();
-
-       PATCHER_MARK_PATCHED_MONITOREXIT;
+       md_icacheflush(NULL, 0);
 
        return true;
 }
-#endif /* !defined(ENABLE_STATICVM) */
 
 
 /*