2008-10-19 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / verify.c
index d14a2083d32d40c1b16c134c078747839b977848..96771dbd47b72356b4ab56273d4d80fb178acef3 100644 (file)
@@ -38,8 +38,8 @@ enum {
 #define IS_STRICT_MODE(ctx) (((ctx)->level & MONO_VERIFY_NON_STRICT) == 0)
 #define IS_FAIL_FAST_MODE(ctx) (((ctx)->level & MONO_VERIFY_FAIL_FAST) == MONO_VERIFY_FAIL_FAST)
 #define IS_SKIP_VISIBILITY(ctx) (((ctx)->level & MONO_VERIFY_SKIP_VISIBILITY) == MONO_VERIFY_SKIP_VISIBILITY)
+#define IS_REPORT_ALL_ERRORS(ctx) (((ctx)->level & MONO_VERIFY_REPORT_ALL_ERRORS) == MONO_VERIFY_REPORT_ALL_ERRORS)
 #define CLEAR_PREFIX(ctx, prefix) do { (ctx)->prefix_set &= ~(prefix); } while (0)
-
 #define ADD_VERIFY_INFO(__ctx, __msg, __status, __exception)   \
        do {    \
                MonoVerifyInfoExtended *vinfo = g_new (MonoVerifyInfoExtended, 1);      \
@@ -49,6 +49,7 @@ enum {
                (__ctx)->list = g_slist_prepend ((__ctx)->list, vinfo); \
        } while (0)
 
+//TODO support MONO_VERIFY_REPORT_ALL_ERRORS
 #define ADD_VERIFY_ERROR(__ctx, __msg) \
        do {    \
                ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_ERROR, MONO_EXCEPTION_INVALID_PROGRAM); \
@@ -57,7 +58,7 @@ enum {
 
 #define CODE_NOT_VERIFIABLE(__ctx, __msg) \
        do {    \
-               if ((__ctx)->verifiable) { \
+               if ((__ctx)->verifiable || IS_REPORT_ALL_ERRORS (__ctx)) { \
                        ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_NOT_VERIFIABLE, MONO_EXCEPTION_UNVERIFIABLE_IL); \
                        (__ctx)->verifiable = 0; \
                        if (IS_FAIL_FAST_MODE (__ctx)) \
@@ -73,7 +74,7 @@ enum {
 
 #define CODE_NOT_VERIFIABLE2(__ctx, __msg, __exception) \
        do {    \
-               if ((__ctx)->verifiable) { \
+               if ((__ctx)->verifiable || IS_REPORT_ALL_ERRORS (__ctx)) { \
                        ADD_VERIFY_INFO(__ctx, __msg, MONO_VERIFY_NOT_VERIFIABLE, __exception); \
                        (__ctx)->verifiable = 0; \
                        if (IS_FAIL_FAST_MODE (__ctx)) \
@@ -100,6 +101,12 @@ enum {
        IL_CODE_CALL_NONFINAL_VIRTUAL = 0x40,
 };
 
+typedef enum {
+       RESULT_VALID,
+       RESULT_UNVERIFIABLE,
+       RESULT_INVALID
+} verify_result_t;
+
 typedef struct {
        MonoType *type;
        int stype;
@@ -128,6 +135,8 @@ typedef struct {
        GSList *list;
        /*Allocated fnptr MonoType that should be freed by us.*/
        GSList *funptrs;
+       /*Type dup'ed exception types from catch blocks.*/
+       GSList *exception_types;
 
        int num_locals;
        MonoType **locals;
@@ -147,6 +156,15 @@ typedef struct {
         *on a method that creates a delegate for a non-final virtual method using ldftn*/
        gboolean has_this_store;
 
+       /*This flag is used to control if the contructor of the parent class has been called.
+        *If the this pointer is pushed on the eval stack and it's a reference type constructor and
+        * super_ctor_called is false, the uninitialized flag is set on the pushed value.
+        * 
+        * Poping an uninitialized this ptr from the eval stack is an unverifiable operation unless
+        * the safe variant is used. Only a few opcodes can use it : dup, pop, ldfld, stfld and call to a constructor.
+        */
+       gboolean super_ctor_called;
+
        guint32 prefix_set;
        gboolean has_flags;
        MonoType *constrained_type;
@@ -162,7 +180,10 @@ static gboolean
 mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2);
 
 static gboolean
-mono_class_is_valid_generic_instantiation (MonoClass *klass);
+mono_class_is_valid_generic_instantiation (VerifyContext *ctx, MonoClass *klass);
+
+static gboolean
+mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method);
 //////////////////////////////////////////////////////////////////
 
 
@@ -204,6 +225,8 @@ enum {
        /**Signals that this is a boxed value type*/
        BOXED_MASK = 0x1000,
 
+       /*This is an unitialized this ref*/
+       UNINIT_THIS_MASK = 0x2000,
 };
 
 static const char* const
@@ -290,6 +313,16 @@ mono_type_is_value_type (MonoType *type, const char *namespace, const char *name
                !strcmp (namespace, type->data.klass->name_space) &&
                !strcmp (name, type->data.klass->name);
 }
+
+/*
+ * Returns TURE if @type is VAR or MVAR
+ */
+static gboolean
+mono_type_is_generic_argument (MonoType *type)
+{
+       return type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR;
+}
+
 /*
  * mono_type_get_underlying_type_any:
  * 
@@ -343,13 +376,13 @@ mono_class_has_default_constructor (MonoClass *klass)
 }
 
 static gboolean
-mono_class_interface_implements_interface (MonoClass *candidate, MonoClass *interface)
+mono_class_interface_implements_interface (MonoClass *candidate, MonoClass *iface)
 {
        int i;
-       if (candidate == interface)
+       if (candidate == iface)
                return TRUE;
        for (i = 0; i < candidate->interface_count; ++i) {
-               if (candidate->interfaces [i] == interface || mono_class_interface_implements_interface (candidate->interfaces [i], interface))
+               if (candidate->interfaces [i] == iface || mono_class_interface_implements_interface (candidate->interfaces [i], iface))
                        return TRUE;
        }
        return FALSE;
@@ -396,11 +429,8 @@ mono_class_is_constraint_compatible (MonoClass *candidate, MonoClass *target)
 }
 
 static gboolean
-mono_class_is_valid_generic_instantiation (MonoClass *klass)
+is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *context, MonoGenericInst *ginst)
 {
-       MonoGenericClass *gklass = klass->generic_class;
-       MonoGenericInst *ginst = gklass->context.class_inst;
-       MonoGenericContainer *gc = gklass->container_class->generic_container;
        int i;
 
        if (ginst->type_argc != gc->type_argc)
@@ -413,7 +443,7 @@ mono_class_is_valid_generic_instantiation (MonoClass *klass)
 
                if (!param->constraints && !(param->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
                        continue;
-               if (ginst->type_argv [i]->type == MONO_TYPE_VAR || ginst->type_argv [i]->type == MONO_TYPE_MVAR)
+               if (mono_type_is_generic_argument (ginst->type_argv [i]))
                        continue; //it's not our job to validate type variables
 
                paramClass = mono_class_from_mono_type (ginst->type_argv [i]);
@@ -423,7 +453,7 @@ mono_class_is_valid_generic_instantiation (MonoClass *klass)
 
                /*it's not safe to call mono_class_init from here*/
                if (paramClass->generic_class && !paramClass->inited) {
-                       if (!mono_class_is_valid_generic_instantiation (paramClass))
+                       if (!mono_class_is_valid_generic_instantiation (NULL, paramClass))
                                return FALSE;
                }
 
@@ -443,7 +473,7 @@ mono_class_is_valid_generic_instantiation (MonoClass *klass)
                        MonoClass *ctr = *constraints;
                        MonoType *inflated;
 
-                       inflated = mono_class_inflate_generic_type (&ctr->byval_arg, &gklass->context);
+                       inflated = mono_class_inflate_generic_type (&ctr->byval_arg, context);
                        ctr = mono_class_from_mono_type (inflated);
                        mono_metadata_free_type (inflated);
 
@@ -454,19 +484,244 @@ mono_class_is_valid_generic_instantiation (MonoClass *klass)
        return TRUE;
 }
 
+/*
+ * Return true if @candidate is constraint compatible with @target.
+ * 
+ * This means that @candidate constraints are a super set of @target constaints
+ */
+static gboolean
+mono_generic_param_is_constraint_compatible (MonoGenericParam *target, MonoGenericParam *candidate, MonoGenericContext *context)
+{
+       int tmask = target->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
+       int cmask = candidate->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;    
+       if ((tmask & cmask) != tmask)
+               return FALSE;
+
+       if (target->constraints) {
+               MonoClass **target_class, **candidate_class;
+               if (!candidate->constraints)
+                       return FALSE;
+               for (target_class = target->constraints; *target_class; ++target_class) {
+                       MonoType *inflated = mono_class_inflate_generic_type (&(*target_class)->byval_arg, context);
+                       MonoClass *tc = mono_class_from_mono_type (inflated);
+                       mono_metadata_free_type (inflated);
+
+                       for (candidate_class = candidate->constraints; *candidate_class; ++candidate_class) {
+                               MonoClass *cc;
+
+                               inflated = mono_class_inflate_generic_type (&(*candidate_class)->byval_arg, context);
+                               cc = mono_class_from_mono_type (inflated);
+                               mono_metadata_free_type (inflated);
+
+                               if (mono_class_is_assignable_from (tc, cc))
+                                       break;
+                       }
+                       if (!*candidate_class)
+                               return FALSE;
+               }
+       }
+       return TRUE;
+}
+
+static MonoGenericParam*
+verifier_get_generic_param_from_type (VerifyContext *ctx, MonoType *type)
+{
+       MonoGenericContainer *gc;
+       MonoMethod *method = ctx->method;
+       int num;
+
+       num = type->data.generic_param->num;
+
+       if (type->type == MONO_TYPE_VAR) {
+               MonoClass *gtd = method->klass;
+               if (gtd->generic_class)
+                       gtd = gtd->generic_class->container_class;
+               gc = gtd->generic_container;
+       } else { //MVAR
+               MonoMethod *gmd = method;
+               if (method->is_inflated)
+                       gmd = ((MonoMethodInflated*)method)->declaring;
+               gc = mono_method_get_generic_container (gmd);
+       }
+       if (!gc)
+               return FALSE;
+       return &gc->type_params [num];
+}
+
+
+
+/*
+ * Verify if @type is valid for the given @ctx verification context.
+ * this function checks for VAR and MVAR types that are invalid under the current verifier,
+ * This means that it either 
+ */
+static gboolean
+is_valid_type_in_context (VerifyContext *ctx, MonoType *type)
+{
+       if (mono_type_is_generic_argument (type) && !ctx->generic_context)
+               return FALSE;
+       if (type->type == MONO_TYPE_VAR) {
+               if (!ctx->generic_context->class_inst)
+                       return FALSE;
+               if (type->data.generic_param->num >= ctx->generic_context->class_inst->type_argc)
+                       return FALSE;
+       } else if (type->type == MONO_TYPE_MVAR) {
+               if (!ctx->generic_context->method_inst)
+                       return FALSE;
+               if (type->data.generic_param->num >= ctx->generic_context->method_inst->type_argc)
+                       return FALSE;
+       }
+       return TRUE;
+}
+
+static gboolean
+is_valid_generic_instantiation_in_context (VerifyContext *ctx, MonoGenericInst *ginst)
+{
+       int i;
+       for (i = 0; i < ginst->type_argc; ++i) {
+               MonoType *type = ginst->type_argv [i];
+               if (!is_valid_type_in_context (ctx, type))
+                       return FALSE;
+       }
+       return TRUE;
+}
+
+static gboolean
+generic_arguments_respect_constraints (VerifyContext *ctx, MonoGenericContainer *gc, MonoGenericContext *context, MonoGenericInst *ginst)
+{
+       int i;
+       for (i = 0; i < ginst->type_argc; ++i) {
+               MonoType *type = ginst->type_argv [i];
+               MonoGenericParam *target = &gc->type_params [i];
+               MonoGenericParam *candidate;
+
+               if (!mono_type_is_generic_argument (type))
+                       continue;
+
+               if (!is_valid_type_in_context (ctx, type))
+                       return FALSE;
+
+               candidate = verifier_get_generic_param_from_type (ctx, type);
+
+               if (!mono_generic_param_is_constraint_compatible (target, candidate, context))
+                       return FALSE;
+       }
+       return TRUE;
+}
+
+static gboolean
+mono_method_repect_method_constraints (VerifyContext *ctx, MonoMethod *method)
+{
+       MonoMethodInflated *gmethod = (MonoMethodInflated *)method;
+       MonoGenericInst *ginst = gmethod->context.method_inst;
+       MonoGenericContainer *gc = mono_method_get_generic_container (gmethod->declaring);
+       return !gc || generic_arguments_respect_constraints (ctx, gc, &gmethod->context, ginst);
+}
+
+static gboolean
+mono_class_repect_method_constraints (VerifyContext *ctx, MonoClass *klass)
+{
+       MonoGenericClass *gklass = klass->generic_class;
+       MonoGenericInst *ginst = gklass->context.class_inst;
+       MonoGenericContainer *gc = gklass->container_class->generic_container;
+       return !gc || generic_arguments_respect_constraints (ctx, gc, &gklass->context, ginst);
+}
+
+static gboolean
+mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method)
+{
+       MonoMethodInflated *gmethod = (MonoMethodInflated *)method;
+       MonoGenericInst *ginst = gmethod->context.method_inst;
+       MonoGenericContainer *gc = mono_method_get_generic_container (gmethod->declaring);
+       if (!gc) /*non-generic inflated method - it's part of a generic type  */
+               return TRUE;
+       if (ctx && !is_valid_generic_instantiation_in_context (ctx, ginst))
+               return FALSE;
+       return is_valid_generic_instantiation (gc, &gmethod->context, ginst);
+
+}
+
+static gboolean
+mono_class_is_valid_generic_instantiation (VerifyContext *ctx, MonoClass *klass)
+{
+       MonoGenericClass *gklass = klass->generic_class;
+       MonoGenericInst *ginst = gklass->context.class_inst;
+       MonoGenericContainer *gc = gklass->container_class->generic_container;
+       if (ctx && !is_valid_generic_instantiation_in_context (ctx, ginst))
+               return FALSE;
+       return is_valid_generic_instantiation (gc, &gklass->context, ginst);
+}
+
 static gboolean
-verify_type_load_error(VerifyContext *ctx, MonoClass *klass)
+mono_type_is_valid_in_context (VerifyContext *ctx, MonoType *type)
 {
+       MonoClass *klass;
+
+       if (!is_valid_type_in_context (ctx, type)) {
+               char *str = mono_type_full_name (type);
+               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type (%s%s) (argument out of range or %s is not generic) at 0x%04x",
+                       type->type == MONO_TYPE_VAR ? "!" : "!!",
+                       str,
+                       type->type == MONO_TYPE_VAR ? "class" : "method",
+                       ctx->ip_offset),
+                       MONO_EXCEPTION_BAD_IMAGE);              
+               g_free (str);
+               return FALSE;
+       }
+
+       klass = mono_class_from_mono_type (type);
        mono_class_init (klass);
        if (mono_loader_get_last_error () || klass->exception_type != MONO_EXCEPTION_NONE) {
+               if (klass->generic_class && !mono_class_is_valid_generic_instantiation (NULL, klass))
+                       ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic instantiation of type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
+               else
+                       ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Could not load type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
+               return FALSE;
+       }
+
+       if (klass->exception_type != MONO_EXCEPTION_NONE || (klass->generic_class && klass->generic_class->container_class->exception_type != MONO_EXCEPTION_NONE)) {
                ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Could not load type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
                return FALSE;
        }
 
-       //TODO verify if the type can be inflated in the current context
+       if (!klass->generic_class)
+               return TRUE;
+
+       if (!mono_class_is_valid_generic_instantiation (ctx, klass)) {
+               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type instantiation of type %s.%s at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
+               return FALSE;
+       }
+
+       if (!mono_class_repect_method_constraints (ctx, klass)) {
+               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic type instantiation of type %s.%s (generic args don't respect target's constraints) at 0x%04x", klass->name_space, klass->name, ctx->ip_offset), MONO_EXCEPTION_TYPE_LOAD);
+               return FALSE;
+       }
+
        return TRUE;
 }
 
+static verify_result_t
+mono_method_is_valid_in_context (VerifyContext *ctx, MonoMethod *method)
+{
+       if (!mono_type_is_valid_in_context (ctx, &method->klass->byval_arg))
+               return RESULT_INVALID;
+
+       if (!method->is_inflated)
+               return RESULT_VALID;
+
+       if (!mono_method_is_valid_generic_instantiation (ctx, method)) {
+               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic method instantiation of method %s.%s::%s at 0x%04x", method->klass->name_space, method->klass->name, method->name, ctx->ip_offset), MONO_EXCEPTION_UNVERIFIABLE_IL);
+               return RESULT_INVALID;
+       }
+
+       if (!mono_method_repect_method_constraints (ctx, method)) {
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid generic method instantiation of method %s.%s::%s (generic args don't respect target's constraints) at 0x%04x", method->klass->name_space, method->klass->name, method->name, ctx->ip_offset));
+               return RESULT_UNVERIFIABLE;
+       }
+       return RESULT_VALID;
+}
+
+       
 static MonoClassField*
 verifier_load_field (VerifyContext *ctx, int token, MonoClass **klass, const char *opcode) {
        MonoClassField *field;
@@ -482,7 +737,7 @@ verifier_load_field (VerifyContext *ctx, int token, MonoClass **klass, const cha
                return NULL;
        }
 
-       if (!verify_type_load_error (ctx, field->parent))
+       if (!mono_type_is_valid_in_context (ctx, &field->parent->byval_arg))
                return NULL;
 
        return field;
@@ -504,10 +759,9 @@ verifier_load_method (VerifyContext *ctx, int token, const char *opcode) {
                return NULL;
        }
        
-       if (!verify_type_load_error (ctx, method->klass))
+       if (mono_method_is_valid_in_context (ctx, method) == RESULT_INVALID)
                return NULL;
 
-       //TODO verify if the method can be inflated in the current context
        return method;
 }
 
@@ -527,7 +781,7 @@ verifier_load_type (VerifyContext *ctx, int token, const char *opcode) {
                return NULL;
        }
 
-       if (!verify_type_load_error (ctx, mono_class_from_mono_type (type)))
+       if (!mono_type_is_valid_in_context (ctx, type))
                return NULL;
 
        return type;
@@ -1604,6 +1858,7 @@ check_overflow (VerifyContext *ctx)
        return 1;
 }
 
+/*This reject out PTR, FNPTR and TYPEDBYREF*/
 static gboolean
 check_unmanaged_pointer (VerifyContext *ctx, ILStackDesc *value)
 {
@@ -1614,6 +1869,7 @@ check_unmanaged_pointer (VerifyContext *ctx, ILStackDesc *value)
        return 1;
 }
 
+/*TODO verify if MONO_TYPE_TYPEDBYREF is not allowed here as well.*/
 static gboolean
 check_unverifiable_type (VerifyContext *ctx, MonoType *type)
 {
@@ -1643,19 +1899,27 @@ stack_push_val (VerifyContext *ctx, int stype, MonoType *type)
 static ILStackDesc *
 stack_pop (VerifyContext *ctx)
 {
-       return ctx->eval.stack + --ctx->eval.size;
+       ILStackDesc *ret = ctx->eval.stack + --ctx->eval.size;
+       if ((ret->stype & UNINIT_THIS_MASK) == UNINIT_THIS_MASK)
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Found use of uninitialized 'this ptr' ref at 0x%04x", ctx->ip_offset));
+       return ret;
 }
 
-static inline ILStackDesc *
-stack_top (VerifyContext *ctx)
+/* This function allows to safely pop an unititialized this ptr from
+ * the eval stack without marking the method as unverifiable. 
+ */
+static ILStackDesc *
+stack_pop_safe (VerifyContext *ctx)
 {
-       return ctx->eval.stack + (ctx->eval.size - 1);
+       return ctx->eval.stack + --ctx->eval.size;
 }
 
-static inline ILStackDesc *
-stack_get (VerifyContext *ctx, int distance)
+static ILStackDesc *
+stack_push_stack_val (VerifyContext *ctx, ILStackDesc *value)
 {
-       return ctx->eval.stack + (ctx->eval.size - distance - 1);
+       ILStackDesc *top = stack_push (ctx);
+       copy_stack_value (top, value);
+       return top;
 }
 
 /* Returns the MonoType associated with the token, or NULL if it is invalid.
@@ -2076,8 +2340,10 @@ handle_enum:
 static void
 init_stack_with_value_at_exception_boundary (VerifyContext *ctx, ILCodeDesc *code, MonoClass *klass)
 {
+       MonoType *type = mono_class_inflate_generic_type (&klass->byval_arg, ctx->generic_context);
        stack_init (ctx, code);
-       set_stack_value (ctx, code->stack, &klass->byval_arg, FALSE);
+       set_stack_value (ctx, code->stack, type, FALSE);
+       ctx->exception_types = g_slist_prepend (ctx->exception_types, type);
        code->size = 1;
        code->flags |= IL_CODE_FLAG_WAS_TARGET;
 }
@@ -2151,8 +2417,6 @@ handle_enum:
        }
 
        case MONO_TYPE_PTR:
-               if (!IS_STRICT_MODE (ctx) && IS_ONE_OF2 (candidate->type, MONO_TYPE_I, MONO_TYPE_U))
-                       return TRUE;
                if (candidate->type != MONO_TYPE_PTR)
                        return FALSE;
                /* check the underlying type */
@@ -2169,17 +2433,33 @@ handle_enum:
        }
 
        case MONO_TYPE_GENERICINST: {
+               MonoClass *target_klass;
+               MonoClass *candidate_klass;
                if (mono_type_is_enum_type (target)) {
                        target = mono_type_get_underlying_type_any (target);
                        goto handle_enum;
                }
-               return mono_class_is_assignable_from (mono_class_from_mono_type (target), mono_class_from_mono_type (candidate));
+               target_klass = mono_class_from_mono_type (target);
+               candidate_klass = mono_class_from_mono_type (candidate);
+               if (mono_class_is_nullable (target_klass)) {
+                       if (!mono_class_is_nullable (candidate_klass))
+                               return FALSE;
+                       return target_klass == candidate_klass;
+               }
+               
+               return mono_class_is_assignable_from (target_klass, candidate_klass);
        }
 
        case MONO_TYPE_STRING:
                return candidate->type == MONO_TYPE_STRING;
 
        case MONO_TYPE_CLASS:
+               /*
+                * VAR / MVAR compatibility must be checked by verify_stack_type_compatibility
+                * to take boxing status into account.
+                */
+               if (mono_type_is_generic_argument (original_candidate))
+                       return FALSE;
                /* If candidate is an enum it should return true for System.Enum and supertypes.
                 * That's why here we use the original type and not the underlying type.
                 */ 
@@ -2194,8 +2474,8 @@ handle_enum:
                if (candidate->type != MONO_TYPE_SZARRAY)
                        return FALSE;
 
-               left = target->data.klass;
-               right = candidate->data.klass;
+               left = target->data.array->eklass;
+               right = candidate->data.array->eklass;
                return mono_class_is_assignable_from(left, right);
        }
 
@@ -2242,6 +2522,30 @@ verify_type_compatibility (VerifyContext *ctx, MonoType *target, MonoType *candi
        return verify_type_compatibility_full (ctx, target, candidate, FALSE);
 }
 
+/*
+ * Returns the generic param bound to the context been verified.
+ * 
+ */
+static MonoGenericParam*
+get_generic_param (VerifyContext *ctx, MonoType *param) 
+{
+       guint16 param_num = param->data.generic_param->num;
+       if (param->type == MONO_TYPE_VAR) {
+               if (!ctx->generic_context->class_inst || ctx->generic_context->class_inst->type_argc <= param_num) {
+                       ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid generic type argument %d", param_num));
+                       return NULL;
+               }
+               return ctx->generic_context->class_inst->type_argv [param_num]->data.generic_param;
+       }
+       
+       /*param must be a MVAR */
+       if (!ctx->generic_context->method_inst || ctx->generic_context->method_inst->type_argc <= param_num) {
+               ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid generic method argument %d", param_num));
+               return NULL;
+       }
+       return ctx->generic_context->method_inst->type_argv [param_num]->data.generic_param;
+       
+}
 /*
  * is_compatible_boxed_valuetype:
  * 
@@ -2254,26 +2558,42 @@ verify_type_compatibility (VerifyContext *ctx, MonoType *target, MonoType *candi
  * 
  */
 static gboolean
-is_compatible_boxed_valuetype (MonoType *type, MonoType *candidate, ILStackDesc *stack, gboolean type_must_be_object)
-{
-       if (type_must_be_object && type->type != MONO_TYPE_OBJECT)
-               return FALSE;
+is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *candidate, ILStackDesc *stack, gboolean type_must_be_object)
+{
+       if (mono_type_is_generic_argument (candidate) && stack_slot_is_boxed_value (stack) && !type->byref) {
+               MonoGenericParam *param = get_generic_param (ctx, candidate);
+               MonoClass **class;
+               for (class = param->constraints; class && *class; ++class) {
+                       if (verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (& (*class)->byval_arg), FALSE))
+                               return TRUE;
+               }
+       }
+       
        if (!type_must_be_object && !MONO_TYPE_IS_REFERENCE (type))
                return FALSE;
        return !type->byref && !candidate->byref && stack_slot_is_boxed_value (stack);
 }
 
 static int
-verify_stack_type_compatibility (VerifyContext *ctx, MonoType *type, ILStackDesc *stack)
+verify_stack_type_compatibility_full (VerifyContext *ctx, MonoType *type, ILStackDesc *stack, gboolean strict, gboolean drop_byref)
 {
        MonoType *candidate = mono_type_from_stack_slot (stack);
        if (MONO_TYPE_IS_REFERENCE (type) && !type->byref && stack_slot_is_null_literal (stack))
                return TRUE;
 
-       if (is_compatible_boxed_valuetype (type, candidate, stack, TRUE))
+       if (is_compatible_boxed_valuetype (ctx, type, candidate, stack, TRUE))
                return TRUE;
 
-       return verify_type_compatibility_full (ctx, type, candidate, FALSE);
+       if (drop_byref)
+               return verify_type_compatibility_full (ctx, type, mono_type_get_type_byval (candidate), strict);
+
+       return verify_type_compatibility_full (ctx, type, candidate, strict);
+}
+
+static int
+verify_stack_type_compatibility (VerifyContext *ctx, MonoType *type, ILStackDesc *stack)
+{
+       return verify_stack_type_compatibility_full (ctx, type, stack, FALSE, FALSE);
 }
 
 static gboolean
@@ -2310,13 +2630,14 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
                        return FALSE;
                return mono_delegate_signature_equal (mono_type_get_signature (target), mono_type_get_signature (candidate));
 
-       case MONO_TYPE_GENERICINST:
-               //TODO implement me
-               g_assert_not_reached ();
-               return FALSE;
-
-               return candidate->type == MONO_TYPE_STRING;
-       
+       case MONO_TYPE_GENERICINST: {
+               MonoClass *target_klass;
+               MonoClass *candidate_klass;
+               target_klass = mono_class_from_mono_type (target);
+               candidate_klass = mono_class_from_mono_type (candidate);
+               /*FIXME handle nullables and enum*/
+               return mono_class_is_assignable_from (target_klass, candidate_klass);
+       }
        case MONO_TYPE_OBJECT:
                return MONO_TYPE_IS_REFERENCE (candidate);
 
@@ -2336,16 +2657,15 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
                return is_array_type_compatible (target, candidate);
 
        case MONO_TYPE_VALUETYPE:
+               /*FIXME handle nullables and enum*/
                return candidate->type == MONO_TYPE_VALUETYPE && target->data.klass == candidate->data.klass;
 
        case MONO_TYPE_VAR:
-               //TODO implement me
-               g_assert_not_reached ();
+               return candidate->type == MONO_TYPE_VAR && target->data.generic_param->num == candidate->data.generic_param->num; 
                return FALSE;
 
        case MONO_TYPE_MVAR:
-               //TODO implement me
-               g_assert_not_reached ();
+               return candidate->type == MONO_TYPE_MVAR && target->data.generic_param->num == candidate->data.generic_param->num;
                return FALSE;
 
        default:
@@ -2389,9 +2709,6 @@ mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *s
        if (sig1->param_count != sig2->param_count) 
                return FALSE;
 
-       if (sig1->generic_param_count != sig2->generic_param_count)
-               return FALSE;
-       
        if (sig1->call_convention != sig2->call_convention)
                return FALSE;
 
@@ -2488,7 +2805,7 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        ctx->code [ip_offset].flags |= IL_CODE_DELEGATE_SEQUENCE;
 
        //general tests
-       if (!verify_type_compatibility (ctx, &method->klass->byval_arg, value->type) && !stack_slot_is_null_literal (value))
+       if (!verify_stack_type_compatibility (ctx, &method->klass->byval_arg, value) && !stack_slot_is_null_literal (value))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
 
        if (stack_slot_get_type (value) != TYPE_COMPLEX)
@@ -2502,6 +2819,8 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
 static void
 push_arg (VerifyContext *ctx, unsigned int arg, int take_addr) 
 {
+       ILStackDesc *top;
+
        if (arg >= ctx->max_args) {
                if (take_addr) 
                        ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Method doesn't have argument %d", arg + 1));
@@ -2515,14 +2834,17 @@ push_arg (VerifyContext *ctx, unsigned int arg, int take_addr)
                check_unverifiable_type (ctx, ctx->params [arg]);
                if (ctx->params [arg]->byref && take_addr)
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("ByRef of ByRef at 0x%04x", ctx->ip_offset));
-               if (!set_stack_value (ctx, stack_push (ctx), ctx->params [arg], take_addr))
+               top = stack_push (ctx);
+               if (!set_stack_value (ctx, top, ctx->params [arg], take_addr))
                        return;
 
                if (arg == 0 && !(ctx->method->flags & METHOD_ATTRIBUTE_STATIC)) {
                        if (take_addr)
                                ctx->has_this_store = TRUE;
                        else
-                               stack_top (ctx)->stype |= THIS_POINTER_MASK;
+                               top->stype |= THIS_POINTER_MASK;
+                       if (mono_method_is_constructor (ctx->method) && !ctx->super_ctor_called && !ctx->method->klass->valuetype)
+                               top->stype |= UNINIT_THIS_MASK;
                }
        } 
 }
@@ -2549,8 +2871,8 @@ store_arg (VerifyContext *ctx, guint32 arg)
 
        if (arg >= ctx->max_args) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Method doesn't have argument %d at 0x%04x", arg + 1, ctx->ip_offset));
-               check_underflow (ctx, 1);
-               stack_pop (ctx);
+               if (check_underflow (ctx, 1))
+                       stack_pop (ctx);
                return;
        }
 
@@ -2589,14 +2911,14 @@ store_local (VerifyContext *ctx, guint32 arg)
 static void
 do_binop (VerifyContext *ctx, unsigned int opcode, const unsigned char table [TYPE_MAX][TYPE_MAX])
 {
-       ILStackDesc *a, *b;
+       ILStackDesc *a, *b, *top;
        int idxa, idxb, complexMerge = 0;
        unsigned char res;
 
        if (!check_underflow (ctx, 2))
                return;
-       a = stack_get (ctx, 1);
-       b = stack_top (ctx);
+       b = stack_pop (ctx);
+       a = stack_pop (ctx);
 
        idxa = stack_slot_get_underlying_type (a);
        if (stack_slot_is_managed_pointer (a)) {
@@ -2617,23 +2939,24 @@ do_binop (VerifyContext *ctx, unsigned int opcode, const unsigned char table [TY
        VERIFIER_DEBUG ( printf ("binop res %d\n", res); );
        VERIFIER_DEBUG ( printf ("idxa %d idxb %d\n", idxa, idxb); );
 
-       ctx->eval.size--;
+       top = stack_push (ctx);
        if (res == TYPE_INV) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Binary instruction applyed to ill formed stack (%s x %s)", stack_slot_get_name (a), stack_slot_get_name (b)));
+               copy_stack_value (top, a);
                return;
        }
 
        if (res & NON_VERIFIABLE_RESULT) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Binary instruction is not verifiable (%s x %s)", stack_slot_get_name (a), stack_slot_get_name (b)));
 
-               res = res & ~NON_VERIFIABLE_RESULT;
+               res = res & ~NON_VERIFIABLE_RESULT;
        }
 
        if (complexMerge && res == TYPE_PTR) {
                if (complexMerge == 1) 
-                       copy_stack_value (stack_top (ctx), a);
+                       copy_stack_value (top, a);
                else if (complexMerge == 2)
-                       copy_stack_value (stack_top (ctx), b);
+                       copy_stack_value (top, b);
                /*
                 * There is no need to merge the type of two pointers.
                 * The only valid operation is subtraction, that returns a native
@@ -2641,7 +2964,7 @@ do_binop (VerifyContext *ctx, unsigned int opcode, const unsigned char table [TY
                 * This is valid acording to Patition III 1.1.4
                 */
        } else
-               stack_top (ctx)->stype = res;
+               top->stype = res;
        
 }
 
@@ -2675,11 +2998,16 @@ do_boolean_branch_op (VerifyContext *ctx, int delta)
 
        top = stack_pop (ctx);
        if (!is_valid_bool_arg (top))
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Argument type %s not valid for brtrue/brfalse at 0x%04x", stack_slot_get_name (stack_get (ctx, -1)), ctx->ip_offset));
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Argument type %s not valid for brtrue/brfalse at 0x%04x", stack_slot_get_name (top), ctx->ip_offset));
 
        check_unmanaged_pointer (ctx, top);
 }
 
+static gboolean
+stack_slot_is_complex_type_not_reference_type (ILStackDesc *slot)
+{
+       return stack_slot_get_type (slot) == TYPE_COMPLEX && !MONO_TYPE_IS_REFERENCE (slot->type);
+}
 
 static void
 do_branch_op (VerifyContext *ctx, signed int delta, const unsigned char table [TYPE_MAX][TYPE_MAX])
@@ -2697,7 +3025,7 @@ do_branch_op (VerifyContext *ctx, signed int delta, const unsigned char table [T
        }
 
        switch (is_valid_cmp_branch_instruction (ctx->header, ctx->ip_offset, target)) {
-       case 1:
+       case 1: /*FIXME use constants and not magic numbers.*/
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Branch target escapes out of exception block at 0x%04x", ctx->ip_offset));
                break;
        case 2:
@@ -2721,9 +3049,13 @@ do_branch_op (VerifyContext *ctx, signed int delta, const unsigned char table [T
        if (stack_slot_is_managed_pointer (b))
                idxb = TYPE_PTR;
 
-       --idxa;
-       --idxb;
-       res = table [idxa][idxb];
+       if (stack_slot_is_complex_type_not_reference_type (a) || stack_slot_is_complex_type_not_reference_type (b)) {
+               res = TYPE_INV;
+       } else {
+               --idxa;
+               --idxb;
+               res = table [idxa][idxb];
+       }
 
        VERIFIER_DEBUG ( printf ("branch res %d\n", res); );
        VERIFIER_DEBUG ( printf ("idxa %d idxb %d\n", idxa, idxb); );
@@ -2764,9 +3096,13 @@ do_cmp_op (VerifyContext *ctx, const unsigned char table [TYPE_MAX][TYPE_MAX], g
        if (stack_slot_is_managed_pointer (b)) 
                idxb = TYPE_PTR;
 
-       --idxa;
-       --idxb;
-       res = table [idxa][idxb];
+       if (stack_slot_is_complex_type_not_reference_type (a) || stack_slot_is_complex_type_not_reference_type (b)) {
+               res = TYPE_INV;
+       } else {
+               --idxa;
+               --idxb;
+               res = table [idxa][idxb];
+       }
 
        if(res == TYPE_INV) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf("Compare instruction applyed to ill formed stack (%s x %s) at 0x%04x", stack_slot_get_name (a), stack_slot_get_name (b), ctx->ip_offset));
@@ -2867,7 +3203,21 @@ do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
        if (sig->hasthis) {
                MonoType *type = &method->klass->byval_arg;
                ILStackDesc copy;
-               value = stack_pop (ctx);
+
+               if (mono_method_is_constructor (method) && !method->klass->valuetype) {
+                       if (!mono_method_is_constructor (ctx->method))
+                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a constructor outside one at 0x%04x", ctx->ip_offset));
+                       if (method->klass != ctx->method->klass->parent && method->klass != ctx->method->klass)
+                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot call a constructor to a type diferent that this or super at 0x%04x", ctx->ip_offset));
+
+                       ctx->super_ctor_called = TRUE;
+                       value = stack_pop_safe (ctx);
+                       if ((value->stype & THIS_POINTER_MASK) != THIS_POINTER_MASK)
+                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid 'this ptr' argument for constructor at 0x%04x", ctx->ip_offset));
+               } else {
+                       value = stack_pop (ctx);
+               }
+                       
                copy_stack_value (&copy, value);
                //TODO we should extract this to a 'drop_byref_argument' and use everywhere
                //Other parts of the code suffer from the same issue of 
@@ -3020,10 +3370,10 @@ check_is_valid_type_for_field_ops (VerifyContext *ctx, int token, ILStackDesc *o
                if (field->parent->valuetype && stack_slot_is_boxed_value (obj))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type at stack is a boxed valuetype and is not compatible to reference the field at 0x%04x", ctx->ip_offset));
 
-               if (!stack_slot_is_null_literal (obj) && !verify_type_compatibility (ctx, &field->parent->byval_arg, mono_type_get_type_byval (obj->type)))
+               if (!stack_slot_is_null_literal (obj) && !verify_stack_type_compatibility_full (ctx, &field->parent->byval_arg, obj, FALSE, TRUE))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type at stack is not compatible to reference the field at 0x%04x", ctx->ip_offset));
 
-               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, obj->type->data.klass))
+               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_field_full (ctx->method, field, mono_class_from_mono_type (obj->type)))
                        CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Type at stack is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_FIELD_ACCESS);
        } 
 
@@ -3042,7 +3392,7 @@ do_push_field (VerifyContext *ctx, int token, gboolean take_addr)
 
        if (!check_underflow (ctx, 1))
                return;
-       obj = stack_pop (ctx);
+       obj = stack_pop_safe (ctx);
 
        if (!check_is_valid_type_for_field_ops (ctx, token, obj, &field, take_addr ? "ldflda" : "ldfld"))
                return;
@@ -3068,7 +3418,7 @@ do_store_field (VerifyContext *ctx, int token)
                return;
 
        value = stack_pop (ctx);
-       obj = stack_pop (ctx);
+       obj = stack_pop_safe (ctx);
 
        if (!check_is_valid_type_for_field_ops (ctx, token, obj, &field, "stfld"))
                return;
@@ -3090,15 +3440,14 @@ do_box_value (VerifyContext *ctx, int klass_token)
        if (!check_underflow (ctx, 1))
                return;
 
-       value = stack_top (ctx);
+       value = stack_pop (ctx);
        /*box is a nop for reference types*/
 
        if (stack_slot_get_underlying_type (value) == TYPE_COMPLEX && MONO_TYPE_IS_REFERENCE (value->type) && MONO_TYPE_IS_REFERENCE (type)) {
-               value->stype |= BOXED_MASK;
+               stack_push_stack_val (ctx, value)->stype |= BOXED_MASK;
                return;
        }
 
-       value = stack_pop (ctx);
 
        if (!verify_stack_type_compatibility (ctx, type, value))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for boxing operation at 0x%04x", ctx->ip_offset));
@@ -3160,7 +3509,7 @@ do_unary_math_op (VerifyContext *ctx, int op)
        ILStackDesc *value;
        if (!check_underflow (ctx, 1))
                return;
-       value = stack_top (ctx);
+       value = stack_pop (ctx);
        switch (stack_slot_get_type (value)) {
        case TYPE_I4:
        case TYPE_I8:
@@ -3175,6 +3524,7 @@ do_unary_math_op (VerifyContext *ctx, int op)
        default:
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type at stack for unary not at 0x%04x", ctx->ip_offset));
        }
+       stack_push_stack_val (ctx, value);
 }
 
 static void
@@ -3226,6 +3576,15 @@ do_load_token (VerifyContext *ctx, int token)
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Invalid token 0x%x for ldtoken at 0x%04x", token, ctx->ip_offset));
                return;
        }
+       if (handle_class == mono_defaults.typehandle_class) {
+               mono_type_is_valid_in_context (ctx, (MonoType*)handle);
+       } else if (handle_class == mono_defaults.methodhandle_class) {
+               mono_method_is_valid_in_context (ctx, (MonoMethod*)handle);             
+       } else if (handle_class == mono_defaults.fieldhandle_class) {
+               mono_type_is_valid_in_context (ctx, &((MonoClassField*)handle)->parent->byval_arg);                             
+       } else {
+               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid ldtoken type %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
+       }
        stack_push_val (ctx, TYPE_COMPLEX, mono_class_get_type (handle_class));
 }
 
@@ -3282,6 +3641,9 @@ do_stobj (VerifyContext *ctx, int token)
        if (!stack_slot_is_managed_pointer (dest)) 
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid destination of stobj operation at 0x%04x", ctx->ip_offset));
 
+       if (stack_slot_is_boxed_value (src) && !MONO_TYPE_IS_REFERENCE (src->type) && !MONO_TYPE_IS_REFERENCE (type))
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use stobj with a boxed source value that is not a reference type at 0x%04x", ctx->ip_offset));
+
        if (!verify_stack_type_compatibility (ctx, type, src))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Token and source types of stobj don't match at 0x%04x", ctx->ip_offset));
 
@@ -3410,6 +3772,7 @@ do_cast (VerifyContext *ctx, int token, const char *opcode) {
        ILStackDesc *value;
        MonoType *type;
        gboolean is_boxed;
+       gboolean do_box;
 
        if (!check_underflow (ctx, 1))
                return;
@@ -3437,7 +3800,8 @@ do_cast (VerifyContext *ctx, int token, const char *opcode) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value for %s at 0x%04x", opcode, ctx->ip_offset));
        }
 
-       stack_push_val (ctx, TYPE_COMPLEX | (mono_class_from_mono_type (type)->valuetype || is_boxed ? BOXED_MASK : 0), type);
+       do_box = is_boxed || mono_type_is_generic_argument(type) || mono_class_from_mono_type (type)->valuetype;
+       stack_push_val (ctx, TYPE_COMPLEX | (do_box ? BOXED_MASK : 0), type);
 }
 
 static MonoType *
@@ -3734,12 +4098,16 @@ do_stelem (VerifyContext *ctx, int opcode, int token)
                        }
                }
        }
-
        if (opcode == CEE_STELEM_REF) {
                if (!stack_slot_is_boxed_value (value) && mono_class_from_mono_type (value->type)->valuetype)
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value is not a reference type for stelem.ref 0x%04x", ctx->ip_offset));
-       } else if (opcode != CEE_STELEM_REF && !verify_type_compatibility_full (ctx, type, mono_type_from_stack_slot (value), FALSE)) {
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value on stack for stdelem.X at 0x%04x", ctx->ip_offset));
+       } else if (opcode != CEE_STELEM_REF) {
+               if (!verify_stack_type_compatibility (ctx, type, value))
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid value on stack for stdelem.X at 0x%04x", ctx->ip_offset));
+
+               if (stack_slot_is_boxed_value (value) && !MONO_TYPE_IS_REFERENCE (value->type) && !MONO_TYPE_IS_REFERENCE (type))
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use stobj with a boxed source value that is not a reference type at 0x%04x", ctx->ip_offset));
+
        }
 }
 
@@ -3799,6 +4167,7 @@ do_leave (VerifyContext *ctx, int delta)
 
        if (!is_correct_leave (ctx->header, ctx->ip_offset, target))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Leave not allowed in finally block at 0x%04x", ctx->ip_offset));
+       ctx->eval.size = 0;
 }
 
 /* 
@@ -3844,8 +4213,10 @@ do_switch (VerifyContext *ctx, int count, const unsigned char *data)
        for (i = 0; i < count; ++i) {
                int target = base + read32 (data + i * 4);
 
-               if (target < 0 || target >= ctx->code_size)
+               if (target < 0 || target >= ctx->code_size) {
                        ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Switch target %x out of code at 0x%04x", i, ctx->ip_offset));
+                       return;
+               }
 
                switch (is_valid_branch_instruction (ctx->header, ctx->ip_offset, target)) {
                case 1:
@@ -3853,7 +4224,7 @@ do_switch (VerifyContext *ctx, int count, const unsigned char *data)
                        break;
                case 2:
                        ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Switch target %x escapes out of exception block at 0x%04x", i, ctx->ip_offset));
-                       break;
+                       return;
                }
                merge_stacks (ctx, &ctx->eval, &ctx->code [target], FALSE, TRUE);
        }
@@ -3890,8 +4261,8 @@ do_load_function_ptr (VerifyContext *ctx, guint32 token, gboolean virtual)
        
                if (method->flags & METHOD_ATTRIBUTE_STATIC)
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use ldvirtftn with a constructor at 0x%04x", ctx->ip_offset));
-       
-               if (!verify_type_compatibility (ctx, &method->klass->byval_arg, top->type))
+
+               if (!verify_stack_type_compatibility (ctx, &method->klass->byval_arg, top))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Unexpected object for ldvirtftn at 0x%04x", ctx->ip_offset));
        }
        
@@ -3933,6 +4304,8 @@ do_sizeof (VerifyContext *ctx, int token)
 static void
 do_localloc (VerifyContext *ctx)
 {
+       ILStackDesc *top;
+       
        if (ctx->eval.size != 1) {
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Stack must have only size item in localloc at 0x%04x", ctx->ip_offset));
                return;         
@@ -3943,7 +4316,10 @@ do_localloc (VerifyContext *ctx)
                return;
        }
 
-       set_stack_value (ctx, stack_top (ctx), &mono_defaults.int_class->byval_arg, FALSE);
+       /*TODO verify top type*/
+       top = stack_pop (ctx);
+
+       set_stack_value (ctx, stack_push (ctx), &mono_defaults.int_class->byval_arg, FALSE);
        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Instruction localloc in never verifiable at 0x%04x", ctx->ip_offset));
 }
 
@@ -4037,10 +4413,11 @@ do_ckfinite (VerifyContext *ctx)
        if (!check_underflow (ctx, 1))
                return;
 
-       top = stack_top (ctx);
+       top = stack_pop (ctx);
 
        if (stack_slot_get_underlying_type (top) != TYPE_R8)
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Expected float32 or float64 on stack for ckfinit but found %s at 0x%04x", stack_slot_get_name (top), ctx->ip_offset)); 
+       stack_push_stack_val (ctx, top);
 }
 /*
  * merge_stacks:
@@ -4087,17 +4464,22 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                MonoClass *match_class = NULL;
 
                // S := T then U = S (new value is compatible with current value, keep current)
-               if (verify_type_compatibility (ctx, old_type, new_type)) {
+               if (verify_stack_type_compatibility (ctx, old_type, new_slot)) {
                        copy_stack_value (new_slot, old_slot);
                        continue;
                }
 
                // T := S then U = T (old value is compatible with current value, use new)
-               if (verify_type_compatibility (ctx, new_type, old_type)) {
+               if (verify_stack_type_compatibility (ctx, new_type, old_slot)) {
                        copy_stack_value (old_slot, new_slot);
                        continue;
                }
 
+               if (mono_type_is_generic_argument (old_type) || mono_type_is_generic_argument (new_type)) {
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible old [%s] new [%s] at 0x%04x", i, stack_slot_get_name (old_slot), stack_slot_get_name (new_slot), ctx->ip_offset)); 
+                       goto end_verify;                        
+               } 
+
                //both are reference types, use closest common super type
                if (!mono_class_from_mono_type (old_type)->valuetype 
                        && !mono_class_from_mono_type (new_type)->valuetype
@@ -4123,12 +4505,13 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                        //No decent super type found, use object
                        match_class = mono_defaults.object_class;
                        goto match_found;
-               } else if (is_compatible_boxed_valuetype (old_type, new_type, new_slot, FALSE) || is_compatible_boxed_valuetype (new_type, old_type, old_slot, FALSE)) {
+               } else if (is_compatible_boxed_valuetype (ctx,old_type, new_type, new_slot, FALSE) || is_compatible_boxed_valuetype (ctx, new_type, old_type, old_slot, FALSE)) {
                        match_class = mono_defaults.object_class;
                        goto match_found;
                } 
 
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible old [%s] new [%s] at 0x%04x", i, stack_slot_get_name (old_slot), stack_slot_get_name (new_slot), ctx->ip_offset)); 
+               set_stack_value (ctx, old_slot, &new_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
                goto end_verify;
 
 match_found:
@@ -4236,6 +4619,12 @@ verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, Mon
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clauses overlap"));
 }
 
+#define code_bounds_check(size) \
+       if (ip + size > end) {\
+               ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Code overrun starting with 0x%x at 0x%04x", *ip, ctx.ip_offset)); \
+               break; \
+       } \
+
 /*
  * FIXME: need to distinguish between valid and verifiable.
  * Need to keep track of types on the stack.
@@ -4252,7 +4641,6 @@ mono_method_verify (MonoMethod *method, int level)
        MonoImage *image;
        VerifyContext ctx;
        GSList *tmp;
-
        VERIFIER_DEBUG ( printf ("Verify IL for method %s %s %s\n",  method->klass->name_space,  method->klass->name, method->name); );
 
        if (method->iflags & (METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL | METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
@@ -4284,38 +4672,58 @@ mono_method_verify (MonoMethod *method, int level)
        ctx.verifiable = ctx.valid = 1;
        ctx.level = level;
 
-       ctx.code = g_new0 (ILCodeDesc, ctx.header->code_size);
+       ctx.code = g_new (ILCodeDesc, ctx.header->code_size);
        ctx.code_size = ctx.header->code_size;
 
        memset(ctx.code, 0, sizeof (ILCodeDesc) * ctx.header->code_size);
 
 
        ctx.num_locals = ctx.header->num_locals;
-       ctx.locals = ctx.header->locals;
+       ctx.locals = g_memdup (ctx.header->locals, sizeof (MonoType*) * ctx.header->num_locals);
 
        if (ctx.num_locals > 0 && !ctx.header->init_locals)
                CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Method with locals variable but without init locals set"));
 
-       if (ctx.signature->hasthis) {
-               ctx.params = g_new0 (MonoType*, ctx.max_args);
+       ctx.params = g_new (MonoType*, ctx.max_args);
+       if (ctx.signature->hasthis)
                ctx.params [0] = method->klass->valuetype ? &method->klass->this_arg : &method->klass->byval_arg;
-               memcpy (ctx.params + 1, ctx.signature->params, sizeof (MonoType *) * ctx.signature->param_count);
-       } else {
-               ctx.params = ctx.signature->params;
-       }
+       memcpy (ctx.params + ctx.signature->hasthis, ctx.signature->params, sizeof (MonoType *) * ctx.signature->param_count);
 
        if (ctx.signature->is_inflated)
                ctx.generic_context = generic_context = mono_method_get_context (method);
 
-       if (!generic_context && (method->klass->generic_container || method->generic_container)) {
-               if (method->generic_container)
-                       ctx.generic_context = generic_context = &method->generic_container->context;
+       if (!generic_context && (method->klass->generic_container || method->is_generic)) {
+               if (method->is_generic)
+                       ctx.generic_context = generic_context = &(mono_method_get_generic_container (method)->context);
                else
                        ctx.generic_context = generic_context = &method->klass->generic_container->context;
        }
 
+       for (i = 0; i < ctx.num_locals; ++i)
+               ctx.locals [i] = mono_class_inflate_generic_type (ctx.locals [i], ctx.generic_context);
+       for (i = 0; i < ctx.max_args; ++i)
+               ctx.params [i] = mono_class_inflate_generic_type (ctx.params [i], ctx.generic_context);
        stack_init (&ctx, &ctx.eval);
 
+       for (i = 0; i < ctx.num_locals; ++i) {
+               if (!mono_type_is_valid_in_context (&ctx, ctx.locals [i])) {
+                       /*TODO use the last error message to provide better feedback. */
+                       ADD_VERIFY_ERROR2 (&ctx, g_strdup_printf ("Invalid local variable %d", i), MONO_EXCEPTION_BAD_IMAGE);
+                       break;
+               }
+       }
+
+       for (i = 0; i < ctx.max_args; ++i) {
+               if (!mono_type_is_valid_in_context (&ctx, ctx.params [i])) {
+                       /*TODO use the last error message to provide better feedback. */
+                       ADD_VERIFY_ERROR2 (&ctx, g_strdup_printf ("Invalid parameter %d", i), MONO_EXCEPTION_BAD_IMAGE);
+                       break;
+               }
+       }
+
+       if (!ctx.valid)
+               goto cleanup;
+
        for (i = 0; i < ctx.header->num_clauses && ctx.valid; ++i) {
                MonoExceptionClause *clause = ctx.header->clauses + i;
                VERIFIER_DEBUG (printf ("clause try %x len %x filter at %x handler at %x len %x\n", clause->try_offset, clause->try_len, clause->data.filter_offset, clause->handler_offset, clause->handler_len); );
@@ -4434,6 +4842,7 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_LDARG_S:
                case CEE_LDARGA_S:
+                       code_bounds_check (2);
                        push_arg (&ctx, ip [1],  *ip == CEE_LDARGA_S);
                        ip += 2;
                        break;
@@ -4492,7 +4901,7 @@ mono_method_verify (MonoMethod *method, int level)
                case CEE_POP:
                        if (!check_underflow (&ctx, 1))
                                break;
-                       stack_pop (&ctx);
+                       stack_pop_safe (&ctx);
                        ++ip;
                        break;
 
@@ -4520,11 +4929,13 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_STLOC_S:
+                       code_bounds_check (2);
                        store_local (&ctx, ip [1]);
                        ip += 2;
                        break;
 
                case CEE_STARG_S:
+                       code_bounds_check (2);
                        store_arg (&ctx, ip [1]);
                        ip += 2;
                        break;
@@ -4545,30 +4956,35 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_LDC_I4_S:
+                       code_bounds_check (2);
                        if (check_overflow (&ctx))
                                stack_push_val (&ctx, TYPE_I4, &mono_defaults.int32_class->byval_arg);
                        ip += 2;
                        break;
 
                case CEE_LDC_I4:
+                       code_bounds_check (5);
                        if (check_overflow (&ctx))
                                stack_push_val (&ctx,TYPE_I4, &mono_defaults.int32_class->byval_arg);
                        ip += 5;
                        break;
 
                case CEE_LDC_I8:
+                       code_bounds_check (9);
                        if (check_overflow (&ctx))
                                stack_push_val (&ctx,TYPE_I8, &mono_defaults.int64_class->byval_arg);
                        ip += 9;
                        break;
 
                case CEE_LDC_R4:
+                       code_bounds_check (5);
                        if (check_overflow (&ctx))
                                stack_push_val (&ctx, TYPE_R8, &mono_defaults.double_class->byval_arg);
                        ip += 5;
                        break;
 
                case CEE_LDC_R8:
+                       code_bounds_check (9);
                        if (check_overflow (&ctx))
                                stack_push_val (&ctx, TYPE_R8, &mono_defaults.double_class->byval_arg);
                        ip += 9;
@@ -4582,6 +4998,7 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_BEQ_S:
                case CEE_BNE_UN_S:
+                       code_bounds_check (2);
                        do_branch_op (&ctx, (signed char)ip [1] + 2, cmp_br_eq_op);
                        ip += 2;
                        need_merge = 1;
@@ -4595,6 +5012,7 @@ mono_method_verify (MonoMethod *method, int level)
                case CEE_BGT_UN_S:
                case CEE_BLE_UN_S:
                case CEE_BLT_UN_S:
+                       code_bounds_check (2);
                        do_branch_op (&ctx, (signed char)ip [1] + 2, cmp_br_op);
                        ip += 2;
                        need_merge = 1;
@@ -4602,6 +5020,7 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_BEQ:
                case CEE_BNE_UN:
+                       code_bounds_check (5);
                        do_branch_op (&ctx, (gint32)read32 (ip + 1) + 5, cmp_br_eq_op);
                        ip += 5;
                        need_merge = 1;
@@ -4615,6 +5034,7 @@ mono_method_verify (MonoMethod *method, int level)
                case CEE_BGT_UN:
                case CEE_BLE_UN:
                case CEE_BLT_UN:
+                       code_bounds_check (5);
                        do_branch_op (&ctx, (gint32)read32 (ip + 1) + 5, cmp_br_op);
                        ip += 5;
                        need_merge = 1;
@@ -4622,6 +5042,7 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_LDLOC_S:
                case CEE_LDLOCA_S:
+                       code_bounds_check (2);
                        push_local (&ctx, ip[1], *ip == CEE_LDLOCA_S);
                        ip += 2;
                        break;
@@ -4637,18 +5058,22 @@ mono_method_verify (MonoMethod *method, int level)
                                break;
                        if (!check_overflow (&ctx))
                                break;
-                       top = stack_push (&ctx);
-                       copy_stack_value (top, stack_get (&ctx, 1)); 
+                       top = stack_pop_safe (&ctx);
+                       copy_stack_value (stack_push (&ctx), top); 
+                       copy_stack_value (stack_push (&ctx), top);
                        ++ip;
                        break;
                }
 
                case CEE_JMP:
+                       code_bounds_check (5);
                        if (ctx.eval.size)
                                ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Eval stack must be empty in jmp at 0x%04x", ip_offset));
                        token = read32 (ip + 1);
                        if (in_any_block (ctx.header, ip_offset))
                                ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("jmp cannot escape exception blocks at 0x%04x", ip_offset));
+
+                       CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Intruction jmp is not verifiable at 0x%04x", ctx.ip_offset));
                        /*
                         * FIXME: check signature, retval, arguments etc.
                         */
@@ -4656,11 +5081,13 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
                case CEE_CALL:
                case CEE_CALLVIRT:
+                       code_bounds_check (5);
                        do_invoke_method (&ctx, read32 (ip + 1), *ip == CEE_CALLVIRT);
                        ip += 5;
                        break;
 
                case CEE_CALLI:
+                       code_bounds_check (5);
                        token = read32 (ip + 1);
                        /*
                         * FIXME: check signature, retval, arguments etc.
@@ -4670,6 +5097,7 @@ mono_method_verify (MonoMethod *method, int level)
                        ip += 5;
                        break;
                case CEE_BR_S:
+                       code_bounds_check (2);
                        do_static_branch (&ctx, (signed char)ip [1] + 2);
                        need_merge = 1;
                        ip += 2;
@@ -4678,12 +5106,14 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_BRFALSE_S:
                case CEE_BRTRUE_S:
+                       code_bounds_check (2);
                        do_boolean_branch_op (&ctx, (signed char)ip [1] + 2);
                        ip += 2;
                        need_merge = 1;
                        break;
 
                case CEE_BR:
+                       code_bounds_check (5);
                        do_static_branch (&ctx, (gint32)read32 (ip + 1) + 5);
                        need_merge = 1;
                        ip += 5;
@@ -4692,13 +5122,17 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_BRFALSE:
                case CEE_BRTRUE:
+                       code_bounds_check (5);
                        do_boolean_branch_op (&ctx, (gint32)read32 (ip + 1) + 5);
                        ip += 5;
                        need_merge = 1;
                        break;
 
                case CEE_SWITCH:
+                       code_bounds_check (5);
                        n = read32 (ip + 1);
+                       code_bounds_check (5 + sizeof (guint32) * n);
+                       
                        do_switch (&ctx, n, (ip + 5));
                        start = 1;
                        ip += 5 + sizeof (guint32) * n;
@@ -4767,27 +5201,32 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_CPOBJ:
+                       code_bounds_check (5);
                        do_cpobj (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_LDOBJ:
+                       code_bounds_check (5);
                        do_ldobj_value (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_LDSTR:
+                       code_bounds_check (5);
                        do_ldstr (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_NEWOBJ:
+                       code_bounds_check (5);
                        do_newobj (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_CASTCLASS:
                case CEE_ISINST:
+                       code_bounds_check (5);
                        do_cast (&ctx, read32 (ip + 1), *ip == CEE_CASTCLASS ? "castclass" : "isinst");
                        ip += 5;
                        break;
@@ -4796,7 +5235,9 @@ mono_method_verify (MonoMethod *method, int level)
                case CEE_UNUSED1:
                        ++ip; /* warn, error ? */
                        break;
+
                case CEE_UNBOX:
+                       code_bounds_check (5);
                        do_unbox_value (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -4809,27 +5250,32 @@ mono_method_verify (MonoMethod *method, int level)
 
                case CEE_LDFLD:
                case CEE_LDFLDA:
+                       code_bounds_check (5);
                        do_push_field (&ctx, read32 (ip + 1), *ip == CEE_LDFLDA);
                        ip += 5;
                        break;
 
                case CEE_LDSFLD:
                case CEE_LDSFLDA:
+                       code_bounds_check (5);
                        do_push_static_field (&ctx, read32 (ip + 1), *ip == CEE_LDSFLDA);
                        ip += 5;
                        break;
 
                case CEE_STFLD:
+                       code_bounds_check (5);
                        do_store_field (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_STSFLD:
+                       code_bounds_check (5);
                        do_store_static_field (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_STOBJ:
+                       code_bounds_check (5);
                        do_stobj (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -4857,11 +5303,13 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_BOX:
+                       code_bounds_check (5);
                        do_box_value (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_NEWARR:
+                       code_bounds_check (5);
                        do_newarr (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -4872,6 +5320,7 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_LDELEMA:
+                       code_bounds_check (5);
                        do_ldelema (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -4904,36 +5353,23 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_LDELEM_ANY:
+                       code_bounds_check (5);
                        do_ldelem (&ctx, *ip, read32 (ip + 1));
                        ip += 5;
                        break;
 
                case CEE_STELEM_ANY:
+                       code_bounds_check (5);
                        do_stelem (&ctx, *ip, read32 (ip + 1));
                        ip += 5;
                        break;
                        
                case CEE_UNBOX_ANY:
+                       code_bounds_check (5);
                        do_unbox_any (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
 
-               case CEE_UNUSED5:
-               case CEE_UNUSED6:
-               case CEE_UNUSED7:
-               case CEE_UNUSED8:
-               case CEE_UNUSED9:
-               case CEE_UNUSED10:
-               case CEE_UNUSED11:
-               case CEE_UNUSED12:
-               case CEE_UNUSED13:
-               case CEE_UNUSED14:
-               case CEE_UNUSED15:
-               case CEE_UNUSED16:
-               case CEE_UNUSED17:
-                       ++ip; /* warn, error ? */
-                       break;
-
                case CEE_CONV_OVF_I1:
                case CEE_CONV_OVF_U1:
                case CEE_CONV_OVF_I2:
@@ -4956,16 +5392,8 @@ mono_method_verify (MonoMethod *method, int level)
                        ++ip;
                        break;
 
-               case CEE_UNUSED50:
-               case CEE_UNUSED18:
-               case CEE_UNUSED19:
-               case CEE_UNUSED20:
-               case CEE_UNUSED21:
-               case CEE_UNUSED22:
-               case CEE_UNUSED23:
-                       ++ip; /* warn, error ? */
-                       break;
                case CEE_REFANYVAL:
+                       code_bounds_check (5);
                        do_refanyval (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -4975,28 +5403,14 @@ mono_method_verify (MonoMethod *method, int level)
                        ++ip;
                        break;
 
-               case CEE_UNUSED24:
-               case CEE_UNUSED25:
-                       ++ip; /* warn, error ? */
-                       break;
-
                case CEE_MKREFANY:
+                       code_bounds_check (5);
                        do_mkrefany (&ctx,  read32 (ip + 1));
                        ip += 5;
                        break;
 
-               case CEE_UNUSED59:
-               case CEE_UNUSED60:
-               case CEE_UNUSED61:
-               case CEE_UNUSED62:
-               case CEE_UNUSED63:
-               case CEE_UNUSED64:
-               case CEE_UNUSED65:
-               case CEE_UNUSED66:
-               case CEE_UNUSED67:
-                       ++ip; /* warn, error ? */
-                       break;
                case CEE_LDTOKEN:
+                       code_bounds_check (5);
                        do_load_token (&ctx, read32 (ip + 1));
                        ip += 5;
                        break;
@@ -5010,55 +5424,25 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                case CEE_LEAVE:
+                       code_bounds_check (5);
                        do_leave (&ctx, read32 (ip + 1) + 5);
                        ip += 5;
                        start = 1;
                        break;
 
                case CEE_LEAVE_S:
+                       code_bounds_check (2);
                        do_leave (&ctx, (signed char)ip [1] + 2);
                        ip += 2;
                        start = 1;
                        break;
-                       
-               case CEE_UNUSED26:
-               case CEE_UNUSED27:
-               case CEE_UNUSED28:
-               case CEE_UNUSED29:
-               case CEE_UNUSED30:
-               case CEE_UNUSED31:
-               case CEE_UNUSED32:
-               case CEE_UNUSED33:
-               case CEE_UNUSED34:
-               case CEE_UNUSED35:
-               case CEE_UNUSED36:
-               case CEE_UNUSED37:
-               case CEE_UNUSED38:
-               case CEE_UNUSED39:
-               case CEE_UNUSED40:
-               case CEE_UNUSED41:
-               case CEE_UNUSED42:
-               case CEE_UNUSED43:
-               case CEE_UNUSED44:
-               case CEE_UNUSED45:
-               case CEE_UNUSED46:
-               case CEE_UNUSED47:
-               case CEE_UNUSED48:
-                       ++ip;
-                       break;
-               case CEE_PREFIX7:
-               case CEE_PREFIX6:
-               case CEE_PREFIX5:
-               case CEE_PREFIX4:
-               case CEE_PREFIX3:
-               case CEE_PREFIX2:
-               case CEE_PREFIXREF:
-                       ++ip;
-                       break;
+
                case CEE_PREFIX1:
+                       code_bounds_check (2);
                        ++ip;
                        switch (*ip) {
                        case CEE_STLOC:
+                               code_bounds_check (3);
                                store_local (&ctx, read16 (ip + 1));
                                ip += 3;
                                break;
@@ -5077,6 +5461,7 @@ mono_method_verify (MonoMethod *method, int level)
                                break;
 
                        case CEE_STARG:
+                               code_bounds_check (3);
                                store_arg (&ctx, read16 (ip + 1) );
                                ip += 3;
                                break;
@@ -5091,11 +5476,13 @@ mono_method_verify (MonoMethod *method, int level)
                                break;
        
                        case CEE_LDFTN:
+                               code_bounds_check (5);
                                do_load_function_ptr (&ctx, read32 (ip + 1), FALSE);
                                ip += 5;
                                break;
 
                        case CEE_LDVIRTFTN:
+                               code_bounds_check (5);
                                do_load_function_ptr (&ctx, read32 (ip + 1), TRUE);
                                ip += 5;
                                break;
@@ -5106,12 +5493,14 @@ mono_method_verify (MonoMethod *method, int level)
 
                        case CEE_LDARG:
                        case CEE_LDARGA:
+                               code_bounds_check (3);
                                push_arg (&ctx, read16 (ip + 1),  *ip == CEE_LDARGA);
                                ip += 3;
                                break;
 
                        case CEE_LDLOC:
                        case CEE_LDLOCA:
+                               code_bounds_check (3);
                                push_local (&ctx, read16 (ip + 1), *ip == CEE_LDLOCA);
                                ip += 3;
                                break;
@@ -5130,6 +5519,7 @@ mono_method_verify (MonoMethod *method, int level)
                                ++ip;
                                break;
                        case CEE_UNALIGNED_:
+                               code_bounds_check (2);
                                prefix |= PREFIX_UNALIGNED;
                                ip += 2;
                                break;
@@ -5145,11 +5535,13 @@ mono_method_verify (MonoMethod *method, int level)
                                break;
 
                        case CEE_INITOBJ:
+                               code_bounds_check (5);
                                do_initobj (&ctx, read32 (ip + 1));
                                ip += 5;
                                break;
 
                        case CEE_CONSTRAINED_:
+                               code_bounds_check (5);
                                ctx.constrained_type = get_boxable_mono_type (&ctx, read32 (ip + 1), "constrained.");
                                prefix |= PREFIX_CONSTRAINED;
                                ip += 5;
@@ -5190,6 +5582,7 @@ mono_method_verify (MonoMethod *method, int level)
                                break;
 
                        case CEE_SIZEOF:
+                               code_bounds_check (5);
                                do_sizeof (&ctx, read32 (ip + 1));
                                ip += 5;
                                break;
@@ -5199,13 +5592,15 @@ mono_method_verify (MonoMethod *method, int level)
                                ++ip;
                                break;
 
-                       case CEE_UNUSED53:
-                       case CEE_UNUSED54:
-                       case CEE_UNUSED55:
-                       case CEE_UNUSED70:
+                       default:
+                               ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction FE %x at 0x%04x", *ip, ctx.ip_offset));
                                ++ip;
-                               break;
                        }
+                       break;
+
+               default:
+                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Invalid instruction %x at 0x%04x", *ip, ctx.ip_offset));
+                       ++ip;
                }
 
                /*TODO we can fast detect a forward branch or exception block targeting code after prefix, we should fail fast*/
@@ -5254,6 +5649,10 @@ mono_method_verify (MonoMethod *method, int level)
                        CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Invalid call to a non-final virtual function in method with stdarg.0 or ldarga.0 at  0x%04x", i));
        }
 
+       if (mono_method_is_constructor (ctx.method) && !ctx.super_ctor_called && !ctx.method->klass->valuetype && ctx.method->klass != mono_defaults.object_class)
+               CODE_NOT_VERIFIABLE (&ctx, g_strdup_printf ("Constructor not calling super\n"));
+
+cleanup:
        if (ctx.code) {
                for (i = 0; i < ctx.header->code_size; ++i) {
                        if (ctx.code [i].stack)
@@ -5265,12 +5664,21 @@ mono_method_verify (MonoMethod *method, int level)
                g_free (tmp->data);
        g_slist_free (ctx.funptrs);
 
+       for (tmp = ctx.exception_types; tmp; tmp = tmp->next)
+               mono_metadata_free_type (tmp->data);
+       g_slist_free (ctx.exception_types);
+
+       for (i = 0; i < ctx.num_locals; ++i)
+               mono_metadata_free_type (ctx.locals [i]);
+       for (i = 0; i < ctx.max_args; ++i)
+               mono_metadata_free_type (ctx.params [i]);
+
        if (ctx.eval.stack)
                g_free (ctx.eval.stack);
        if (ctx.code)
                g_free (ctx.code);
-       if (ctx.signature->hasthis)
-               g_free (ctx.params);
+       g_free (ctx.locals);
+       g_free (ctx.params);
 
        return ctx.list;
 }
@@ -5335,12 +5743,14 @@ mono_verifier_is_method_full_trust (MonoMethod *method)
  * This value is only pertinent to assembly verification and has
  * nothing to do with CoreClr security. 
  * 
- * Under verify_all, all code is under full trust if no verifier mode is set. 
+ * Under verify_all all user code must be verifiable if no security option was set 
  * 
  */
 gboolean
 mono_verifier_is_class_full_trust (MonoClass *klass)
 {
+       if (verify_all && verifier_mode == MONO_VERIFIER_MODE_OFF)
+               return klass->image->assembly->in_gac || klass->image == mono_defaults.corlib;
        return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || klass->image->assembly->in_gac || klass->image == mono_defaults.corlib;
 }
 
@@ -5353,26 +5763,41 @@ mono_method_verify_with_current_settings (MonoMethod *method, gboolean skip_visi
                        | (skip_visibility ? MONO_VERIFY_SKIP_VISIBILITY : 0));
 }
 
+static int
+get_field_end (MonoClassField *field)
+{
+       int align;
+       int size = mono_type_size (field->type, &align);
+       if (size == 0)
+               size = 4; /*FIXME Is this a safe bet?*/
+       return size + field->offset;
+}
+
 static gboolean
 verify_class_for_overlapping_reference_fields (MonoClass *class)
 {
-       int i, j, align;
-       if (!(class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT || !class->has_references)
+       int i, j;
+       gboolean is_fulltrust = mono_verifier_is_class_full_trust (class);
+       if (!((class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) || !class->has_references)
                return TRUE;
                
                //we must check for stuff overlapping reference fields
        for (i = 0; i < class->field.count; ++i) {
                MonoClassField *field = &class->fields [i];
-               int fieldEnd = field->offset + mono_type_size (field->type, &align);
+               int fieldEnd = get_field_end (field);
                gboolean is_valuetype = !MONO_TYPE_IS_REFERENCE (field->type);
-               if (mono_field_is_deleted (field))
+               if (mono_field_is_deleted (field) || (field->type->attrs & FIELD_ATTRIBUTE_STATIC))
                        continue;
 
                for (j = i + 1; j < class->field.count; ++j) {
                        MonoClassField *other = &class->fields [j];
-                       int otherEnd = other->offset + mono_type_size (other->type, &align);
-                       if (mono_field_is_deleted (other) || (is_valuetype && !MONO_TYPE_IS_REFERENCE (other->type)))
+                       int otherEnd = get_field_end (other);
+                       if (mono_field_is_deleted (other) || (is_valuetype && !MONO_TYPE_IS_REFERENCE (other->type)) || (other->type->attrs & FIELD_ATTRIBUTE_STATIC))
                                continue;
+
+                       if (!is_valuetype && MONO_TYPE_IS_REFERENCE (other->type) && field->offset == other->offset && is_fulltrust)
+                               continue;
+
                        if ((otherEnd > field->offset && otherEnd <= fieldEnd) || (other->offset >= field->offset && other->offset < fieldEnd))
                                return FALSE;
                }
@@ -5392,10 +5817,12 @@ verify_class_for_overlapping_reference_fields (MonoClass *class)
 gboolean
 mono_verifier_verify_class (MonoClass *class)
 {
+       if (class->generic_container && (class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT)
+               return FALSE;
        if (!verify_class_for_overlapping_reference_fields (class))
                return FALSE;
        
-       if (class->generic_class && !mono_class_is_valid_generic_instantiation (class))
+       if (class->generic_class && !mono_class_is_valid_generic_instantiation (NULL, class))
                return FALSE;
        return TRUE;
 }