2009-05-12 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / mini-s390.c
index c8e78a6d14eb5725c0ac31a5d25383d6753a7a96..181a7ea0e39bc7b77bc230faa87ea71e50fa1b1a 100644 (file)
@@ -135,7 +135,7 @@ if (ins->flags & MONO_INST_BRLABEL) {                                                       \
                s390_ldr (code, ins->dreg, ins->sreg1);                 \
        }
 
-#define MONO_EMIT_NEW_MOVE2(cfg,dest,offset,src,imm,size) do {                         \
+#define MONO_EMIT_NEW_MOVE(cfg,dest,offset,src,imm,size) do {                  \
                 MonoInst *inst;                                                \
                int tmpr = 0;                                                   \
                int sReg, dReg;                                                 \
@@ -175,7 +175,7 @@ if (ins->flags & MONO_INST_BRLABEL) {                                                       \
         MONO_ADD_INS (cfg->cbb, inst); \
        } while (0)
 
-#define MONO_OUTPUT_VTR2(cfg, size, dr, sr, so) do {                           \
+#define MONO_OUTPUT_VTR(cfg, size, dr, sr, so) do {                            \
        int reg = mono_alloc_preg (cfg); \
        switch (size) {                                                         \
                case 0:                                                         \
@@ -209,7 +209,7 @@ if (ins->flags & MONO_INST_BRLABEL) {                                                       \
        }                                                                       \
 } while (0)
 
-#define MONO_OUTPUT_VTS2(cfg, size, dr, dx, sr, so) do {                               \
+#define MONO_OUTPUT_VTS(cfg, size, dr, dx, sr, so) do {                                \
        int tmpr;                                                               \
        switch (size) {                                                         \
                case 0:                                                         \
@@ -234,7 +234,7 @@ if (ins->flags & MONO_INST_BRLABEL) {                                                       \
                break;                                                          \
                case 4:                                                         \
                case 8:                                                         \
-                       MONO_EMIT_NEW_MOVE2 (cfg, dr, dx, sr, so, size);                \
+                       MONO_EMIT_NEW_MOVE (cfg, dr, dx, sr, so, size);         \
                break;                                                          \
        }                                                                       \
 } while (0)
@@ -263,9 +263,9 @@ if (ins->flags & MONO_INST_BRLABEL) {                                                       \
 #include <mono/utils/mono-math.h>
 
 #include "mini-s390.h"
-#include "inssel.h"
 #include "cpu-s390.h"
 #include "jit-icalls.h"
+#include "ir-emit.h"
 
 /*========================= End of Includes ========================*/
 
@@ -358,7 +358,7 @@ static CallInfo * get_call_info (MonoCompile *, MonoMemPool *, MonoMethodSignatu
 static guchar * emit_float_to_int (MonoCompile *, guchar *, int, int, int, gboolean);
 gpointer mono_arch_get_lmf_addr (void);
 static guint8 * emit_load_volatile_registers(guint8 *, MonoCompile *);
-static void emit_sig_cookie (MonoCompile *, MonoCallInst *, CallInfo *, int);
+static void emit_sig_cookie (MonoCompile *, MonoCallInst *, CallInfo *);
 
 /*========================= End of Prototypes ======================*/
 
@@ -695,7 +695,7 @@ enum_parmtype:
                                MonoMarshalType *info;
 
                                if (type->data.klass->enumtype) {
-                                       simpleType = type->data.klass->enum_basetype->type;
+                                       simpleType = mono_class_enum_basetype (type->data.klass)->type;
                                        printf("{VALUETYPE} - ");
                                        goto enum_parmtype;
                                }
@@ -1000,7 +1000,7 @@ handle_enum:
        case MONO_TYPE_VALUETYPE: {
                MonoMarshalType *info;
                if (type->data.klass->enumtype) {
-                       type = type->data.klass->enum_basetype;
+                       type = mono_class_enum_basetype (type->data.klass);
                        goto handle_enum;
                } else {
                        guint8 *p = va_arg (ap, gpointer);
@@ -1162,7 +1162,7 @@ is_regsize_var (MonoType *t) {
                return FALSE;
        case MONO_TYPE_VALUETYPE:
                if (t->data.klass->enumtype)
-                       return is_regsize_var (t->data.klass->enum_basetype);
+                       return is_regsize_var (mono_class_enum_basetype (t->data.klass));
                return FALSE;
        }
        return FALSE;
@@ -1477,7 +1477,7 @@ enum_retvalue:
                case MONO_TYPE_VALUETYPE: {
                        MonoClass *klass = mono_class_from_mono_type (sig->ret);
                        if (klass->enumtype) {
-                               simpletype = klass->enum_basetype->type;
+                               simpletype = mono_class_enum_basetype (klass)->type;
                                goto enum_retvalue;
                        }
                        if (sig->pinvoke)
@@ -1792,12 +1792,7 @@ mono_arch_allocate_vars (MonoCompile *cfg)
        
        cinfo   = get_call_info (cfg, cfg->mempool, sig, sig->pinvoke);
 
-       if (cinfo->struct_ret) {
-               if (!cfg->new_ir) {
-                       cfg->vret_addr->opcode = OP_REGVAR;
-                       cfg->vret_addr->inst_c0 = s390_r2;
-               }
-       } else {
+       if (!cinfo->struct_ret) {
                switch (mono_type_get_underlying_type (sig->ret)->type) {
                case MONO_TYPE_VOID:
                        break;
@@ -1824,9 +1819,6 @@ mono_arch_allocate_vars (MonoCompile *cfg)
                inst->opcode       = OP_REGOFFSET;
                inst->inst_basereg = frame_reg;
                offset            += sizeof(gpointer);
-               if (!cfg->new_ir && (sig->call_convention == MONO_CALL_VARARG) &&
-                   (!retFitsInReg (cinfo->ret.size)))
-                       cfg->sig_cookie += cinfo->ret.size;
                if (G_UNLIKELY (cfg->verbose_level > 1)) {
                        printf ("vret_addr =");
                        mono_print_ins (cfg->vret_addr);
@@ -1856,113 +1848,65 @@ mono_arch_allocate_vars (MonoCompile *cfg)
                inst = cfg->args [curinst];
                if (inst->opcode != OP_REGVAR) {
                        switch (cinfo->args[iParm].regtype) {
-                               case RegTypeStructByAddr :
-                                       if (cfg->new_ir) {
-                                               MonoInst *indir;
-
-                                               size = sizeof (gpointer);
-
-                                               if (cinfo->args [iParm].reg == STK_BASE) {
-                                                       cfg->arch.bkchain_reg = s390_r12;
-                                                       cfg->used_int_regs |= 1 << cfg->arch.bkchain_reg;
-
-                                                       inst->opcode       = OP_REGOFFSET;
-                                                       inst->inst_basereg = cfg->arch.bkchain_reg;
-                                                       inst->inst_offset  = cinfo->args [iParm].offset;
-                                               } else {
-                                                       inst->opcode = OP_REGOFFSET;
-                                                       inst->inst_basereg = frame_reg;
-                                                       inst->inst_offset = S390_ALIGN(offset, sizeof (gpointer));
-                                               }
-
-                                               /* Add a level of indirection */
-                                               MONO_INST_NEW (cfg, indir, 0);
-                                               *indir = *inst;
-                                               inst->opcode = OP_VTARG_ADDR;
-                                               inst->inst_left = indir;
+                           case RegTypeStructByAddr : {
+                                       MonoInst *indir;
+
+                                       size = sizeof (gpointer);
+
+                                       if (cinfo->args [iParm].reg == STK_BASE) {
+                                               cfg->arch.bkchain_reg = s390_r12;
+                                               cfg->used_int_regs |= 1 << cfg->arch.bkchain_reg;
+
+                                               inst->opcode       = OP_REGOFFSET;
+                                               inst->inst_basereg = cfg->arch.bkchain_reg;
+                                               inst->inst_offset  = cinfo->args [iParm].offset;
                                        } else {
-                                               if (cinfo->args[iParm].reg == STK_BASE) {
-                                                       inst->opcode       = OP_S390_LOADARG;
-                                                       inst->inst_basereg = frame_reg;
-                                                       size               = abs(cinfo->args[iParm].vtsize);
-                                                       offset             = S390_ALIGN(offset, sizeof(long));
-                                                       inst->inst_offset  = offset; 
-                                                       inst->backend.arg_info       = cinfo->args[iParm].offset;
-                                               } else {
-                                                       inst->opcode       = OP_S390_ARGREG;
-                                                       inst->inst_basereg = frame_reg;
-                                                       size               = sizeof(gpointer);
-                                                       offset             = S390_ALIGN(offset, size);
-                                                       inst->inst_offset  = offset;
-                                                       inst->backend.arg_info       = cinfo->args[iParm].offset;
-                                               }
+                                               inst->opcode = OP_REGOFFSET;
+                                               inst->inst_basereg = frame_reg;
+                                               inst->inst_offset = S390_ALIGN(offset, sizeof (gpointer));
                                        }
+
+                                       /* Add a level of indirection */
+                                       MONO_INST_NEW (cfg, indir, 0);
+                                       *indir = *inst;
+                                       inst->opcode = OP_VTARG_ADDR;
+                                       inst->inst_left = indir;
+                               }
                                        break;
                                case RegTypeStructByVal :
-                                       if (cfg->new_ir) {
-                                               size               = cinfo->args[iParm].size;
-                                               offset             = S390_ALIGN(offset, size);
-                                               inst->opcode = OP_REGOFFSET;
-                                               inst->inst_basereg = frame_reg;
-                                               inst->inst_offset = S390_ALIGN (offset, size);
+                                       size               = cinfo->args[iParm].size;
+                                       offset             = S390_ALIGN(offset, size);
+                                       inst->opcode = OP_REGOFFSET;
+                                       inst->inst_basereg = frame_reg;
+                                       inst->inst_offset = S390_ALIGN (offset, size);
+                                       break;
+                               default :
+                                       if (cinfo->args [iParm].reg == STK_BASE) {
+                                               /*
+                                                * These arguments are in the previous frame, so we can't 
+                                                * compute their offset from the current frame pointer right
+                                                * now, since cfg->stack_offset is not yet known, so dedicate a 
+                                                * register holding the previous frame pointer.
+                                                */
+                                               cfg->arch.bkchain_reg = s390_r12;
+                                               cfg->used_int_regs |= 1 << cfg->arch.bkchain_reg;
+
+                                               inst->opcode       = OP_REGOFFSET;
+                                               inst->inst_basereg = cfg->arch.bkchain_reg;
+                                               size               = (cinfo->args[iParm].size < 4
+                                                                                 ? 4 - cinfo->args[iParm].size
+                                                                                 : 0);
+                                               inst->inst_offset  = cinfo->args [iParm].offset + size;
+                                               size = sizeof (long);
                                        } else {
-                                               inst->opcode       = OP_S390_ARGPTR;
+                                               inst->opcode       = OP_REGOFFSET;
                                                inst->inst_basereg = frame_reg;
-                                               size               = cinfo->args[iParm].size;
+                                               size               = (cinfo->args[iParm].size < 8
+                                                                                 ? sizeof(long)  
+                                                                                 : sizeof(long long));
                                                offset             = S390_ALIGN(offset, size);
                                                inst->inst_offset  = offset;
-                                               inst->backend.arg_info       = cinfo->args[iParm].offset;
                                        }
-                                       break;
-                               default :
-                                       if (cfg->new_ir) {
-                                               if (cinfo->args [iParm].reg == STK_BASE) {
-                                                       /*
-                                                        * These arguments are in the previous frame, so we can't 
-                                                        * compute their offset from the current frame pointer right
-                                                        * now, since cfg->stack_offset is not yet known, so dedicate a 
-                                                        * register holding the previous frame pointer.
-                                                        */
-                                                       cfg->arch.bkchain_reg = s390_r12;
-                                                       cfg->used_int_regs |= 1 << cfg->arch.bkchain_reg;
-
-                                                       inst->opcode       = OP_REGOFFSET;
-                                                       inst->inst_basereg = cfg->arch.bkchain_reg;
-                                                       size               = (cinfo->args[iParm].size < 4
-                                                                                         ? 4 - cinfo->args[iParm].size
-                                                                                         : 0);
-                                                       inst->inst_offset  = cinfo->args [iParm].offset + size;
-                                                       size = sizeof (long);
-                                               } else {
-                                                       inst->opcode       = OP_REGOFFSET;
-                                                       inst->inst_basereg = frame_reg;
-                                                       size               = (cinfo->args[iParm].size < 8
-                                                                                         ? sizeof(long)  
-                                                                                         : sizeof(long long));
-                                                       offset             = S390_ALIGN(offset, size);
-                                                       inst->inst_offset  = offset;
-                                               }
-                                       } else {
-                                               if (cinfo->args[iParm].reg != STK_BASE) {
-                                                       inst->opcode       = OP_REGOFFSET;
-                                                       inst->inst_basereg = frame_reg;
-                                                       size               = (cinfo->args[iParm].size < 8
-                                                                                         ? sizeof(long)  
-                                                                                         : sizeof(long long));
-                                                       offset             = S390_ALIGN(offset, size);
-                                                       inst->inst_offset  = offset;
-                                               } else {
-                                                       inst->opcode       = OP_S390_STKARG;
-                                                       inst->inst_basereg = frame_reg;
-                                                       size               = (cinfo->args[iParm].size < 4
-                                                                                         ? 4 - cinfo->args[iParm].size
-                                                                                         : 0);
-                                                       inst->inst_offset  = cinfo->args[iParm].offset + 
-                                                               size;
-                                                       inst->backend.arg_info       = 0;
-                                                       size               = sizeof(long);
-                                               }
-                               } 
                        }
                        if ((sig->call_convention == MONO_CALL_VARARG) && 
                            (cinfo->args[iParm].regtype != RegTypeGeneral) &&
@@ -2018,14 +1962,12 @@ mono_arch_allocate_vars (MonoCompile *cfg)
        cfg->stack_offset = S390_ALIGN(offset, S390_STACK_ALIGNMENT);
 
        /* Fix up offsets for arguments whose value is in the parent frame */
-       if (cfg->new_ir) {
-               for (iParm = sArg; iParm < eArg; ++iParm) {
-                       inst = cfg->args [iParm];
+       for (iParm = sArg; iParm < eArg; ++iParm) {
+               inst = cfg->args [iParm];
 
-                       if (inst->opcode == OP_S390_STKARG) {
-                               inst->opcode = OP_REGOFFSET;
-                               inst->inst_offset += cfg->stack_offset;
-                       }
+               if (inst->opcode == OP_S390_STKARG) {
+                       inst->opcode = OP_REGOFFSET;
+                       inst->inst_offset += cfg->stack_offset;
                }
        }
 }
@@ -2059,146 +2001,6 @@ mono_arch_create_vars (MonoCompile *cfg)
 
 /*========================= End of Function ========================*/
 
-/*------------------------------------------------------------------*/
-/*                                                                  */
-/* Name                - mono_arch_call_opcode                             */
-/*                                                                  */
-/* Function    - Take the arguments and generate the arch-specific */
-/*               instructions to properly call the function. This  */
-/*               includes pushing, moving argments to the correct  */
-/*               etc.                                              */
-/*                                                                 */
-/*------------------------------------------------------------------*/
-
-MonoCallInst*
-mono_arch_call_opcode (MonoCompile *cfg, MonoBasicBlock* bb, 
-                      MonoCallInst *call, int is_virtual)
-{
-       MonoInst *in;
-       MonoCallArgParm *arg;
-       MonoMethodSignature *sig;
-       int i, n, lParamArea;
-       CallInfo *cinfo;
-       ArgInfo *ainfo = NULL;
-       int stackSize;
-
-       sig = call->signature;
-       n = sig->param_count + sig->hasthis;
-       DEBUG (g_print ("Call requires: %d parameters\n",n));
-       
-       cinfo = get_call_info (cfg, cfg->mempool, sig, sig->pinvoke);
-
-       stackSize         = cinfo->sz.stack_size + cinfo->sz.local_size + cinfo->sz.parm_size + cinfo->sz.offset;
-       call->stack_usage = MAX(stackSize, call->stack_usage);
-       lParamArea        = MAX((call->stack_usage-S390_MINIMAL_STACK_SIZE-cinfo->sz.parm_size), 0);
-       cfg->param_area   = MAX(((signed) cfg->param_area), lParamArea);
-       cfg->flags       |= MONO_CFG_HAS_CALLS;
-
-       if (cinfo->struct_ret)
-               call->used_iregs |= 1 << cinfo->ret.reg;
-
-       for (i = 0; i < n; ++i) {
-               ainfo = cinfo->args + i;
-
-               if ((sig->call_convention == MONO_CALL_VARARG) &&
-                   (i == sig->sentinelpos)) {
-                       emit_sig_cookie (cfg, call, cinfo, ainfo->size);
-               }
-
-               if (is_virtual && i == 0) {
-                       /* the argument will be attached to the call instrucion */
-                       in = call->args [i];
-                       call->used_iregs |= 1 << ainfo->reg;
-               } else {
-                       MONO_INST_NEW_CALL_ARG (cfg, arg, OP_OUTARG);
-                       in                  = call->args [i];
-                       arg->ins.cil_code   = in->cil_code;
-                       arg->ins.inst_left  = in;
-                       arg->ins.type       = in->type;
-                       /* prepend, we'll need to reverse them later */
-                       arg->ins.next       = call->out_args;
-                       call->out_args      = (MonoInst *) arg;
-                       arg->ins.inst_right = (MonoInst *) call;
-                       if (ainfo->regtype == RegTypeGeneral) {
-                               arg->ins.backend.reg3   = ainfo->reg;
-                               call->used_iregs |= 1 << ainfo->reg;
-                               if (arg->ins.type == STACK_I8)
-                                       call->used_iregs |= 1 << (ainfo->reg + 1);
-                       } else if (ainfo->regtype == RegTypeStructByAddr) {
-                               call->used_iregs |= 1 << ainfo->reg;
-                               arg->ins.sreg1    = ainfo->reg;
-                               arg->ins.opcode   = OP_OUTARG_VT;
-                               arg->size         = -ainfo->vtsize;
-                               arg->offset       = ainfo->offset;
-                               arg->offPrm       = ainfo->offparm + cinfo->sz.offStruct;
-                       } else if (ainfo->regtype == RegTypeStructByVal) {
-                               if (ainfo->reg != STK_BASE) {
-                                       switch (ainfo->size) {
-                                       case 0:
-                                       case 1:
-                                       case 2:
-                                       case 4:
-                                               call->used_iregs |= 1 << ainfo->reg;
-                                               break;
-                                       case 8:
-                                               call->used_iregs |= 1 << ainfo->reg;
-                                               call->used_iregs |= 1 << (ainfo->reg+1);
-                                               break;
-                                       default:
-                                               call->used_iregs |= 1 << ainfo->reg;
-                                       }
-                               } 
-                               arg->ins.sreg1  = ainfo->reg;
-                               arg->ins.opcode = OP_OUTARG_VT;
-                               arg->size       = ainfo->size;
-                               arg->offset     = ainfo->offset;
-                               arg->offPrm     = ainfo->offparm + cinfo->sz.offStruct;
-                       } else if (ainfo->regtype == RegTypeBase) {
-                               arg->ins.opcode   = OP_OUTARG_MEMBASE;
-                               arg->ins.sreg1    = ainfo->reg;
-                               arg->size         = ainfo->size;
-                               arg->offset       = ainfo->offset;
-                               call->used_iregs |= 1 << ainfo->reg;
-                       } else if (ainfo->regtype == RegTypeFP) {
-                               arg->ins.backend.reg3   = ainfo->reg;
-                               call->used_fregs |= 1 << ainfo->reg;
-                               if (ainfo->size == 4)
-                                       arg->ins.opcode = OP_OUTARG_R4;
-                               else
-                                       arg->ins.opcode = OP_OUTARG_R8;
-                       } else {
-                               g_assert_not_reached ();
-                       }
-               }
-       }
-
-       /*
-        * Handle the case where there are no implicit arguments 
-        */
-       if ((sig->call_convention == MONO_CALL_VARARG) &&
-           (i == sig->sentinelpos)) {
-               emit_sig_cookie (cfg, call, cinfo, ainfo->size);
-       }
-
-       /*
-        * Reverse the call->out_args list.
-        */
-       {
-               MonoInst *prev = NULL, *list = call->out_args, *next;
-               while (list) {
-                       next = list->next;
-                       list->next = prev;
-                       prev = list;
-                       list = next;
-               }
-               call->out_args = prev;
-       }
-
-       return call;
-}
-
-/*========================= End of Function ========================*/
-
 static void
 add_outarg_reg2 (MonoCompile *cfg, MonoCallInst *call, ArgStorage storage, int reg, MonoInst *tree)
 {
@@ -2232,7 +2034,7 @@ add_outarg_reg2 (MonoCompile *cfg, MonoCallInst *call, ArgStorage storage, int r
 }
 
 static void
-emit_sig_cookie2 (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
+emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
 {
        MonoMethodSignature *tmpSig;
        MonoInst *sig_arg;
@@ -2313,7 +2115,7 @@ mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
 
                if ((sig->call_convention == MONO_CALL_VARARG) &&
                    (i == sig->sentinelpos)) {
-                       emit_sig_cookie2 (cfg, call, cinfo);
+                       emit_sig_cookie (cfg, call, cinfo);
                }
 
                switch (ainfo->regtype) {
@@ -2442,7 +2244,7 @@ mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
         */
        if ((sig->call_convention == MONO_CALL_VARARG) &&
            (i == sig->sentinelpos)) {
-               emit_sig_cookie2 (cfg, call, cinfo);
+               emit_sig_cookie (cfg, call, cinfo);
        }
 }
 
@@ -2470,9 +2272,9 @@ mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
                                arg->offPrm     = ainfo->offparm + cinfo->sz.offStruct;
                */
                if (ainfo->reg != STK_BASE) {
-                       MONO_OUTPUT_VTR2 (cfg, size, ainfo->reg, src->dreg, 0);
+                       MONO_OUTPUT_VTR (cfg, size, ainfo->reg, src->dreg, 0);
                } else {
-                       MONO_OUTPUT_VTS2 (cfg, size, ainfo->reg, ainfo->offset,
+                       MONO_OUTPUT_VTS (cfg, size, ainfo->reg, ainfo->offset,
                                                          src->dreg, 0);
                }       
        } else if (ainfo->regtype == RegTypeStructByValInFP) {
@@ -2489,7 +2291,7 @@ mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
 
                mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, TRUE);
        } else {
-               MONO_EMIT_NEW_MOVE2 (cfg, STK_BASE, ainfo->offparm,
+               MONO_EMIT_NEW_MOVE (cfg, STK_BASE, ainfo->offparm,
                                                         src->dreg, 0, size);
        }
 }
@@ -2522,53 +2324,6 @@ mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
        MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
 }
 
-/*========================= End of Function ========================*/
-   
-/*------------------------------------------------------------------*/
-/*                                                                  */
-/* Name                - emit_sig_cookie.                                  */
-/*                                                                  */
-/* Function    - For variable length parameter lists construct a   */
-/*               signature cookie and emit it.                     */
-/*                                                                 */
-/*------------------------------------------------------------------*/
-
-static void
-emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, 
-                CallInfo *cinfo, int argSize)
-{
-       MonoCallArgParm *arg;
-       MonoMethodSignature *tmpSig;
-       MonoInst *sigArg;
-                       
-       cfg->disable_aot = TRUE;
-
-       /*----------------------------------------------------------*/
-       /* mono_ArgIterator_Setup assumes the signature cookie is   */
-       /* passed first and all the arguments which were before it  */
-       /* passed on the stack after the signature. So compensate   */
-       /* by passing a different signature.                        */
-       /*----------------------------------------------------------*/
-       tmpSig = mono_metadata_signature_dup (call->signature);
-       tmpSig->param_count -= call->signature->sentinelpos;
-       tmpSig->sentinelpos  = 0;
-       if (tmpSig->param_count > 0)
-               memcpy (tmpSig->params, 
-                       call->signature->params + call->signature->sentinelpos, 
-                       tmpSig->param_count * sizeof(MonoType *));
-
-       MONO_INST_NEW (cfg, sigArg, OP_ICONST);
-       sigArg->inst_p0 = tmpSig;
-
-       MONO_INST_NEW_CALL_ARG (cfg, arg, OP_OUTARG_MEMBASE);
-       arg->ins.inst_left   = sigArg;
-       arg->ins.inst_right  = (MonoInst *) call;
-       arg->size            = argSize;
-       arg->offset          = cinfo->sigCookie.offset;
-       arg->ins.next        = call->out_args;
-       call->out_args       = (MonoInst *) arg;
-}
-
 /*========================= End of Function ========================*/
 
 /*------------------------------------------------------------------*/
@@ -2691,7 +2446,7 @@ handle_enum:
                break;
        case MONO_TYPE_VALUETYPE:
                if (mono_method_signature (method)->ret->data.klass->enumtype) {
-                       rtype = mono_method_signature (method)->ret->data.klass->enum_basetype->type;
+                       rtype = mono_class_enum_basetype (mono_method_signature (method)->ret->data.klass)->type;
                        goto handle_enum;
                }
                save_mode = SAVE_STRUCT;
@@ -2799,9 +2554,6 @@ mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
 {
        MonoInst *ins, *next;
 
-       if (bb->max_vreg > cfg->rs->next_vreg)
-               cfg->rs->next_vreg = bb->max_vreg;
-
        MONO_BB_FOR_EACH_INS_SAFE (bb, next, ins) {
                switch (ins->opcode) {
                case OP_DIV_IMM:
@@ -2817,6 +2569,8 @@ mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
                        break;
                }
        }
+
+       bb->max_vreg = cfg->next_vreg;
 }
 
 /*========================= End of Function ========================*/
@@ -3936,9 +3690,6 @@ mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
                                s390_ldebr (code, s390_f0, s390_f0);
                }
                        break;
-               case OP_OUTARG: 
-                       g_assert_not_reached ();
-                       break;
                case OP_LOCALLOC: {
                        /*------------------------------------------*/
                        /* To allocate space on the stack we have   */
@@ -4065,6 +3816,7 @@ mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
                        ins->inst_c0 = code - cfg->native_code;
                }
                        break;
+               case OP_RELAXED_NOP:
                case OP_NOP:
                case OP_DUMMY_USE:
                case OP_DUMMY_STORE:
@@ -5252,74 +5004,6 @@ mono_arch_setup_jit_tls_data (MonoJitTlsData *tls)
 void
 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
 {
-
-}
-
-/*========================= End of Function ========================*/
-
-/*------------------------------------------------------------------*/
-/*                                                                  */
-/* Name                - mono_arch_emit_this_vret_args                     */
-/*                                                                  */
-/* Function    -                                                   */
-/*                                                                 */
-/*------------------------------------------------------------------*/
-
-void
-mono_arch_emit_this_vret_args (MonoCompile *cfg, MonoCallInst *inst, int this_reg, int this_type, int vt_reg)
-{
-       int this_dreg = s390_r2;
-       
-       if (vt_reg != -1)
-               this_dreg = s390_r3;
-
-       /* add the this argument */
-       if (this_reg != -1) {
-               MonoInst *this;
-               MONO_INST_NEW (cfg, this, OP_MOVE);
-               this->type  = this_type;
-               this->sreg1 = this_reg;
-               this->dreg  = mono_regstate_next_int (cfg->rs);
-               mono_bblock_add_inst (cfg->cbb, this);
-               mono_call_inst_add_outarg_reg (cfg, inst, this->dreg, this_dreg, FALSE);
-       }
-
-       if (vt_reg != -1) {
-               MonoInst *vtarg;
-               MONO_INST_NEW (cfg, vtarg, OP_MOVE);
-               vtarg->type  = STACK_MP;
-               vtarg->sreg1 = vt_reg;
-               vtarg->dreg  = mono_regstate_next_int (cfg->rs);
-               mono_bblock_add_inst (cfg->cbb, vtarg);
-               mono_call_inst_add_outarg_reg (cfg, inst, vtarg->dreg, s390_r2, FALSE);
-       }
-}
-
-/*========================= End of Function ========================*/
-
-/*------------------------------------------------------------------*/
-/*                                                                  */
-/* Name                - mono_arch_get_inst_for_method                   */
-/*                                                                  */
-/* Function    - Check for opcodes we can handle directly in       */
-/*               hardware.                                         */
-/*                                                                 */
-/*------------------------------------------------------------------*/
-
-MonoInst*
-mono_arch_get_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, 
-                              MonoMethodSignature *fsig, MonoInst **args)
-{
-       MonoInst *ins = NULL;
-
-       if (cmethod->klass == mono_defaults.math_class) {
-               if (strcmp (cmethod->name, "Sqrt") == 0) {
-                       MONO_INST_NEW (cfg, ins, OP_SQRT);
-                       ins->inst_i0 = args [0];
-               }
-       }
-
-       return ins;
 }
 
 /*========================= End of Function ========================*/