2009-06-04 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / verify.c
index 5453ee8e4fb564ea469cbb0779d096101d7691c5..dd71ec610f07f1e3bd142449a4198ad3766d2ecb 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * verify.c: 
+ *
+ * Author:
+ *     Mono Project (http://www.mono-project.com)
+ *
+ * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
+ * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
+ */
+#include <config.h>
 
 #include <mono/metadata/object-internals.h>
 #include <mono/metadata/verify.h>
 #include <mono/metadata/metadata.h>
 #include <mono/metadata/metadata-internals.h>
 #include <mono/metadata/class-internals.h>
+#include <mono/metadata/security-manager.h>
+#include <mono/metadata/security-core-clr.h>
 #include <mono/metadata/tokentype.h>
 #include <string.h>
 #include <signal.h>
 #include <ctype.h>
 
 
+static MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_OFF;
+static gboolean verify_all = FALSE;
+
+/*
+ * Set the desired level of checks for the verfier.
+ * 
+ */
+void
+mono_verifier_set_mode (MiniVerifierMode mode)
+{
+       verifier_mode = mode;
+}
+
+void
+mono_verifier_enable_verify_all ()
+{
+       verify_all = TRUE;
+}
+
+#ifndef DISABLE_VERIFIER
 /*
  * Pull the list of opcodes
  */
@@ -38,8 +70,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 +81,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 +90,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 +106,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 +133,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 +167,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 +188,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;
@@ -159,13 +209,13 @@ static int
 get_stack_type (MonoType *type);
 
 static gboolean
-mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2);
+mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn);
 
 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 (MonoMethod *method);
+mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method);
 //////////////////////////////////////////////////////////////////
 
 
@@ -207,6 +257,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
@@ -314,9 +366,9 @@ static MonoType*
 mono_type_get_underlying_type_any (MonoType *type)
 {
        if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype)
-               return type->data.klass->enum_basetype;
+               return mono_class_enum_basetype (type->data.klass);
        if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype)
-               return type->data.generic_class->container_class->enum_basetype;
+               return mono_class_enum_basetype (type->data.generic_class->container_class);
        return type;
 }
 
@@ -359,15 +411,64 @@ static gboolean
 mono_class_interface_implements_interface (MonoClass *candidate, MonoClass *iface)
 {
        int i;
-       if (candidate == iface)
-               return TRUE;
-       for (i = 0; i < candidate->interface_count; ++i) {
-               if (candidate->interfaces [i] == iface || mono_class_interface_implements_interface (candidate->interfaces [i], iface))
+       do {
+               if (candidate == iface)
                        return TRUE;
-       }
+               mono_class_setup_interfaces (candidate);
+               for (i = 0; i < candidate->interface_count; ++i) {
+                       if (candidate->interfaces [i] == iface || mono_class_interface_implements_interface (candidate->interfaces [i], iface))
+                               return TRUE;
+               }
+               candidate = candidate->parent;
+       } while (candidate);
        return FALSE;
 }
 
+/*
+ * 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,
+ */
+static gboolean
+mono_type_is_valid_type_in_context (MonoType *type, MonoGenericContext *context)
+{
+       int i;
+       MonoGenericInst *inst;
+
+       switch (type->type) {
+       case MONO_TYPE_VAR:
+       case MONO_TYPE_MVAR:
+               if (!context)
+                       return FALSE;
+               inst = type->type == MONO_TYPE_VAR ? context->class_inst : context->method_inst;
+               if (!inst || mono_type_get_generic_param_num (type) >= inst->type_argc)
+                       return FALSE;
+               break;
+       case MONO_TYPE_SZARRAY:
+               return mono_type_is_valid_type_in_context (&type->data.klass->byval_arg, context);
+       case MONO_TYPE_ARRAY:
+               return mono_type_is_valid_type_in_context (&type->data.array->eklass->byval_arg, context);
+       case MONO_TYPE_PTR:
+               return mono_type_is_valid_type_in_context (type->data.type, context);
+       case MONO_TYPE_GENERICINST:
+               inst = type->data.generic_class->context.class_inst;
+               if (!inst->is_open)
+                       break;
+               for (i = 0; i < inst->type_argc; ++i)
+                       if (!mono_type_is_valid_type_in_context (inst->type_argv [i], context))
+                               return FALSE;
+               break;
+       }
+       return TRUE;
+}
+
+/*This function returns NULL if the type is not instantiatable*/
+static MonoType*
+verifier_inflate_type (VerifyContext *ctx, MonoType *type, MonoGenericContext *context)
+{
+       if (!mono_type_is_valid_type_in_context (type, context))
+               return NULL;
+       return mono_class_inflate_generic_type (type, context);
+}
 /*
  * Test if @candidate is a subtype of @target using the minimal possible information
  * TODO move the code for non finished TypeBuilders to here.
@@ -417,11 +518,11 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
                return FALSE;
 
        for (i = 0; i < gc->type_argc; ++i) {
-               MonoGenericParam *param = &gc->type_params [i];
+               MonoGenericParamInfo *param_info = mono_generic_container_get_param_info (gc, i);
                MonoClass *paramClass;
                MonoClass **constraints;
 
-               if (!param->constraints && !(param->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
+               if (!param_info->constraints && !(param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK))
                        continue;
                if (mono_type_is_generic_argument (ginst->type_argv [i]))
                        continue; //it's not our job to validate type variables
@@ -433,23 +534,23 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
 
                /*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;
                }
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && (!paramClass->valuetype || mono_class_is_nullable (paramClass)))
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && (!paramClass->valuetype || mono_class_is_nullable (paramClass)))
                        return FALSE;
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && paramClass->valuetype)
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && paramClass->valuetype)
                        return FALSE;
 
-               if ((param->flags & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !paramClass->valuetype && !mono_class_has_default_constructor (paramClass))
+               if ((param_info->flags & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !paramClass->valuetype && !mono_class_has_default_constructor (paramClass))
                        return FALSE;
 
-               if (!param->constraints)
+               if (!param_info->constraints)
                        continue;
 
-               for (constraints = param->constraints; *constraints; ++constraints) {
+               for (constraints = param_info->constraints; *constraints; ++constraints) {
                        MonoClass *ctr = *constraints;
                        MonoType *inflated;
 
@@ -464,42 +565,238 @@ is_valid_generic_instantiation (MonoGenericContainer *gc, MonoGenericContext *co
        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 (VerifyContext *ctx, MonoGenericParam *target, MonoGenericParam *candidate, MonoGenericContext *context)
+{
+       MonoGenericParamInfo *tinfo = mono_generic_param_info (target);
+       MonoGenericParamInfo *cinfo = mono_generic_param_info (candidate);
+
+       int tmask = tinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
+       int cmask = cinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
+       if ((tmask & cmask) != tmask)
+               return FALSE;
+
+       if (tinfo->constraints) {
+               MonoClass **target_class, **candidate_class;
+               if (!cinfo->constraints)
+                       return FALSE;
+               for (target_class = tinfo->constraints; *target_class; ++target_class) {
+                       MonoClass *tc;
+                       MonoType *inflated = verifier_inflate_type (ctx, &(*target_class)->byval_arg, context);
+                       if (!inflated)
+                               return FALSE;
+                       tc = mono_class_from_mono_type (inflated);
+                       mono_metadata_free_type (inflated);
+
+                       for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
+                               MonoClass *cc;
+                               inflated = verifier_inflate_type (ctx, &(*candidate_class)->byval_arg, ctx->generic_context);
+                               if (!inflated)
+                                       return FALSE;
+                               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 = mono_type_get_generic_param_num (type);
+
+       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 mono_generic_container_get_param (gc, 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)
+{
+       return mono_type_is_valid_type_in_context (type, ctx->generic_context);
+}
+
+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 = mono_generic_container_get_param (gc, 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 (ctx, 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 (MonoMethod *method)
+mono_method_is_valid_generic_instantiation (VerifyContext *ctx, MonoMethod *method)
 {
        MonoMethodInflated *gmethod = (MonoMethodInflated *)method;
        MonoGenericInst *ginst = gmethod->context.method_inst;
-       MonoGenericContainer *gc = gmethod->declaring->generic_container;
+       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 (MonoClass *klass)
+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 (klass))
+               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;
+       }
+
+       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;
@@ -510,12 +807,12 @@ verifier_load_field (VerifyContext *ctx, int token, MonoClass **klass, const cha
        }
 
        field = mono_field_from_token (ctx->image, token, klass, ctx->generic_context);
-       if (!field) {
+       if (!field || !field->parent) {
                ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Cannot load field from token 0x%08x for %s at 0x%04x", token, opcode, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
                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;
@@ -537,14 +834,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;
 
-       if (method->is_inflated && !mono_method_is_valid_generic_instantiation (method)) {
-               ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid generic 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 NULL;
-       }
-
        return method;
 }
 
@@ -564,7 +856,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;
@@ -652,6 +944,49 @@ stack_slot_get_name (ILStackDesc *value)
 {
        return type_names [value->stype & TYPE_MASK];
 }
+
+#define APPEND_WITH_PREDICATE(PRED,NAME) do {\
+       if (PRED (value)) { \
+               if (!first) \
+                       g_string_append (str, ", "); \
+               g_string_append (str, NAME); \
+               first = FALSE; \
+       } } while (0)
+
+static char*
+stack_slot_stack_type_full_name (ILStackDesc *value)
+{
+       GString *str = g_string_new ("");
+       char *result;
+
+       if ((value->stype & TYPE_MASK) != value->stype) {
+               gboolean first = TRUE;
+               g_string_append(str, "[");
+               APPEND_WITH_PREDICATE (stack_slot_is_this_pointer, "this");
+               APPEND_WITH_PREDICATE (stack_slot_is_boxed_value, "boxed");
+               APPEND_WITH_PREDICATE (stack_slot_is_null_literal, "null");
+               APPEND_WITH_PREDICATE (stack_slot_is_managed_mutability_pointer, "cmmp");
+               APPEND_WITH_PREDICATE (stack_slot_is_managed_pointer, "mp");
+               g_string_append(str, "] ");
+       }
+
+       g_string_append (str, stack_slot_get_name (value));
+       result = str->str;
+       g_string_free (str, FALSE);
+       return result;
+}
+
+static char*
+stack_slot_full_name (ILStackDesc *value)
+{
+       char *type_name = mono_type_full_name (value->type);
+       char *stack_name = stack_slot_stack_type_full_name (value);
+       char *res = g_strdup_printf ("%s (%s)", type_name, stack_name);
+       g_free (type_name);
+       g_free (stack_name);
+       return res;
+}
+
 //////////////////////////////////////////////////////////////////
 void
 mono_free_verify_list (GSList *list)
@@ -1641,6 +1976,7 @@ check_overflow (VerifyContext *ctx)
        return 1;
 }
 
+/*This reject out PTR, FNPTR and TYPEDBYREF*/
 static gboolean
 check_unmanaged_pointer (VerifyContext *ctx, ILStackDesc *value)
 {
@@ -1651,6 +1987,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)
 {
@@ -1680,19 +2017,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.
@@ -1886,10 +2231,10 @@ dump_stack_value (ILStackDesc *value)
                                printf ("complex] (inst of %s )", value->type->data.generic_class->container_class->name);
                                return;
                        case MONO_TYPE_VAR:
-                               printf ("complex] (type generic param !%d - %s) ", value->type->data.generic_param->num, value->type->data.generic_param->name);
+                               printf ("complex] (type generic param !%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
                                return;
                        case MONO_TYPE_MVAR:
-                               printf ("complex] (method generic param !!%d - %s) ", value->type->data.generic_param->num, value->type->data.generic_param->name);
+                               printf ("complex] (method generic param !!%d - %s) ", value->type->data.generic_param->num, mono_generic_param_info (value->type->data.generic_param)->name);
                                return;
                        default: {
                                //should be a boxed value 
@@ -1923,27 +2268,15 @@ dump_stack_state (ILCodeDesc *state)
 static gboolean
 is_array_type_compatible (MonoType *target, MonoType *candidate)
 {
-       int i;
        MonoArrayType *left = target->data.array;
        MonoArrayType *right = candidate->data.array;
 
        g_assert (target->type == MONO_TYPE_ARRAY);
        g_assert (candidate->type == MONO_TYPE_ARRAY);
 
-
-       if ((left->rank != right->rank) ||
-                       (left->numsizes != right->numsizes) ||
-                       (left->numlobounds != right->numlobounds))
+       if (left->rank != right->rank)
                return FALSE;
 
-       for (i = 0; i < left->numsizes; ++i) 
-               if (left->sizes [i] != right->sizes [i])
-                       return FALSE;
-
-       for (i = 0; i < left->numlobounds; ++i) 
-               if (left->lobounds [i] != right->lobounds [i])
-                       return FALSE;
-
        return mono_class_is_assignable_from (left->eklass, right->eklass);
 }
 
@@ -2113,10 +2446,14 @@ 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;
+       if (mono_type_is_generic_argument (type))
+               code->stack->stype |= BOXED_MASK;
 }
 
 /*Verify if type 'candidate' can be stored in type 'target'.
@@ -2130,7 +2467,7 @@ verify_type_compatibility_full (VerifyContext *ctx, MonoType *target, MonoType *
 #define IS_ONE_OF2(T, A, B) (T == A || T == B)
 
        MonoType *original_candidate = candidate;
-       VERIFIER_DEBUG ( printf ("checking type compatibility %p %p[%x][%x] %p[%x][%x]\n", ctx, target, target->type, target->byref, candidate, candidate->type, candidate->byref); );
+       VERIFIER_DEBUG ( printf ("checking type compatibility %s x %s strict %d\n", mono_type_full_name (target), mono_type_full_name (candidate), strict); );
 
        /*only one is byref */
        if (candidate->byref ^ target->byref) {
@@ -2188,8 +2525,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 */
@@ -2206,11 +2541,21 @@ 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:
@@ -2237,9 +2582,9 @@ handle_enum:
                if (candidate->type != MONO_TYPE_SZARRAY)
                        return FALSE;
 
-               left = target->data.klass;
-               right = candidate->data.klass;
-               return mono_class_is_assignable_from(left, right);
+               left = mono_class_from_mono_type (target)->element_class;
+               right = mono_class_from_mono_type (candidate)->element_class;
+               return mono_class_is_assignable_from (left, right);
        }
 
        case MONO_TYPE_ARRAY:
@@ -2250,24 +2595,28 @@ handle_enum:
        case MONO_TYPE_TYPEDBYREF:
                return candidate->type == MONO_TYPE_TYPEDBYREF;
 
-       case MONO_TYPE_VALUETYPE:
-               if (candidate->type == MONO_TYPE_VALUETYPE && target->data.klass == candidate->data.klass)
+       case MONO_TYPE_VALUETYPE: {
+               MonoClass *target_klass  = mono_class_from_mono_type (target);
+               MonoClass *candidate_klass = mono_class_from_mono_type (candidate);
+
+               if (target_klass == candidate_klass)
                        return TRUE;
                if (mono_type_is_enum_type (target)) {
                        target = mono_type_get_underlying_type_any (target);
                        goto handle_enum;
                }
                return FALSE;
+       }
 
        case MONO_TYPE_VAR:
                if (candidate->type != MONO_TYPE_VAR)
                        return FALSE;
-               return candidate->data.generic_param->num == target->data.generic_param->num;
+               return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
 
        case MONO_TYPE_MVAR:
                if (candidate->type != MONO_TYPE_MVAR)
                        return FALSE;
-               return candidate->data.generic_param->num == target->data.generic_param->num;
+               return mono_type_get_generic_param_num (candidate) == mono_type_get_generic_param_num (target);
 
        default:
                VERIFIER_DEBUG ( printf ("unknown store type %d\n", target->type); );
@@ -2292,7 +2641,7 @@ verify_type_compatibility (VerifyContext *ctx, MonoType *target, MonoType *candi
 static MonoGenericParam*
 get_generic_param (VerifyContext *ctx, MonoType *param) 
 {
-       guint16 param_num = param->data.generic_param->num;
+       guint16 param_num = mono_type_get_generic_param_num (param);
        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));
@@ -2317,28 +2666,37 @@ get_generic_param (VerifyContext *ctx, MonoType *param)
  * @type The source type. It it tested to be of the proper type.    
  * @candidate type of the boxed valuetype.
  * @stack stack slot of the boxed valuetype, separate from @candidade since one could be changed before calling this function
- * @type_must_be_object if TRUE @type must be System.Object, otherwise can be any reference type.
+ * @strict if TRUE candidate must be boxed compatible to the target type
  * 
  */
 static gboolean
-is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *candidate, ILStackDesc *stack, gboolean type_must_be_object)
+is_compatible_boxed_valuetype (VerifyContext *ctx, MonoType *type, MonoType *candidate, ILStackDesc *stack, gboolean strict)
 {
-       if (mono_type_is_generic_argument (candidate) && stack_slot_is_boxed_value (stack) && !type->byref) {
+       if (!stack_slot_is_boxed_value (stack))
+               return FALSE;
+       if (type->byref || candidate->byref)
+               return FALSE;
+
+       if (mono_type_is_generic_argument (candidate)) {
                MonoGenericParam *param = get_generic_param (ctx, candidate);
                MonoClass **class;
-               for (class = param->constraints; class && *class; ++class) {
+               for (class = mono_generic_param_info (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))
+
+       if (mono_type_is_generic_argument (type))
                return FALSE;
-       return !type->byref && !candidate->byref && stack_slot_is_boxed_value (stack);
+
+       if (!strict)
+               return TRUE;
+
+       return MONO_TYPE_IS_REFERENCE (type) && mono_class_is_assignable_from (mono_class_from_mono_type (type), mono_class_from_mono_type (candidate));
 }
 
 static int
-verify_stack_type_compatibility_full (VerifyContext *ctx, MonoType *type, ILStackDesc *stack, gboolean strict, gboolean drop_byref)
+verify_stack_type_compatibility_full (VerifyContext *ctx, MonoType *type, ILStackDesc *stack, gboolean drop_byref, gboolean valuetype_must_be_boxed)
 {
        MonoType *candidate = mono_type_from_stack_slot (stack);
        if (MONO_TYPE_IS_REFERENCE (type) && !type->byref && stack_slot_is_null_literal (stack))
@@ -2347,10 +2705,16 @@ verify_stack_type_compatibility_full (VerifyContext *ctx, MonoType *type, ILStac
        if (is_compatible_boxed_valuetype (ctx, type, candidate, stack, TRUE))
                return TRUE;
 
+       if (valuetype_must_be_boxed && !stack_slot_is_boxed_value (stack) && !MONO_TYPE_IS_REFERENCE (candidate))
+               return FALSE;
+
+       if (!valuetype_must_be_boxed && stack_slot_is_boxed_value (stack))
+               return 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, mono_type_get_type_byval (candidate), FALSE);
 
-       return verify_type_compatibility_full (ctx, type, candidate, strict);
+       return verify_type_compatibility_full (ctx, type, candidate, FALSE);
 }
 
 static int
@@ -2391,27 +2755,26 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
        case MONO_TYPE_FNPTR:
                if (candidate->type != MONO_TYPE_FNPTR)
                        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 mono_delegate_signature_equal (mono_type_get_signature (target), mono_type_get_signature (candidate), 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);
 
        case MONO_TYPE_CLASS:
-               if (candidate->type != MONO_TYPE_CLASS)
-                       return FALSE;
-               return mono_class_is_assignable_from(target->data.klass, candidate->data.klass);
+               return mono_class_is_assignable_from(target->data.klass, mono_class_from_mono_type (candidate));
 
        case MONO_TYPE_SZARRAY:
                if (candidate->type != MONO_TYPE_SZARRAY)
                        return FALSE;
-               return mono_class_is_assignable_from (target->data.array->eklass, candidate->data.array->eklass);
+               return mono_class_is_assignable_from (mono_class_from_mono_type (target)->element_class, mono_class_from_mono_type (candidate)->element_class);
 
        case MONO_TYPE_ARRAY:
                if (candidate->type != MONO_TYPE_ARRAY)
@@ -2419,16 +2782,15 @@ mono_delegate_type_equal (MonoType *target, MonoType *candidate)
                return is_array_type_compatible (target, candidate);
 
        case MONO_TYPE_VALUETYPE:
-               return candidate->type == MONO_TYPE_VALUETYPE && target->data.klass == candidate->data.klass;
+               /*FIXME handle nullables and enum*/
+               return mono_class_from_mono_type (candidate) == mono_class_from_mono_type (target);
 
        case MONO_TYPE_VAR:
-               //TODO implement me
-               g_assert_not_reached ();
+               return candidate->type == MONO_TYPE_VAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
                return FALSE;
 
        case MONO_TYPE_MVAR:
-               //TODO implement me
-               g_assert_not_reached ();
+               return candidate->type == MONO_TYPE_MVAR && mono_type_get_generic_param_num (target) == mono_type_get_generic_param_num (candidate);
                return FALSE;
 
        default:
@@ -2466,27 +2828,26 @@ mono_delegate_ret_equal (MonoType *delegate, MonoType *method)
  * FIXME can this function be eliminated and proper metadata functionality be used?
  */
 static gboolean
-mono_delegate_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
+mono_delegate_signature_equal (MonoMethodSignature *delegate_sig, MonoMethodSignature *method_sig, gboolean is_static_ldftn)
 {
        int i;
-       if (sig1->param_count != sig2->param_count) 
-               return FALSE;
+       int method_offset = is_static_ldftn ? 1 : 0;
 
-       if (sig1->generic_param_count != sig2->generic_param_count)
+       if (delegate_sig->param_count + method_offset != method_sig->param_count) 
                return FALSE;
-       
-       if (sig1->call_convention != sig2->call_convention)
+
+       if (delegate_sig->call_convention != method_sig->call_convention)
                return FALSE;
 
-       for (i = 0; i < sig1->param_count; i++) { 
-               MonoType *p1 = sig1->params [i];
-               MonoType *p2 = sig2->params [i];
+       for (i = 0; i < delegate_sig->param_count; i++) { 
+               MonoType *p1 = delegate_sig->params [i];
+               MonoType *p2 = method_sig->params [i + method_offset];
 
                if (!mono_delegate_param_equal (p1, p2))
                        return FALSE;
        }
 
-       if (!mono_delegate_ret_equal (sig1->ret, sig2->ret))
+       if (!mono_delegate_ret_equal (delegate_sig->ret, method_sig->ret))
                return FALSE;
 
        return TRUE;
@@ -2538,6 +2899,7 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        MonoMethod *invoke, *method;
        const guint8 *ip = ctx->header->code;
        guint32 ip_offset = ctx->ip_offset;
+       gboolean is_static_ldftn = FALSE, is_first_arg_bound = FALSE;
        
        if (stack_slot_get_type (funptr) != TYPE_PTR || !funptr->method) {
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid function pointer parameter for delegate constructor at 0x%04x", ctx->ip_offset));
@@ -2547,8 +2909,18 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        invoke = mono_get_delegate_invoke (delegate);
        method = funptr->method;
 
-       if (!mono_delegate_signature_equal (mono_method_signature (invoke), mono_method_signature (method)))
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Function pointer parameter for delegate constructor has diferent signature at 0x%04x", ctx->ip_offset));
+       is_static_ldftn = (ip_offset > 5 && IS_LOAD_FUN_PTR (CEE_LDFTN)) && method->flags & METHOD_ATTRIBUTE_STATIC;
+
+       if (is_static_ldftn)
+               is_first_arg_bound = mono_method_signature (invoke)->param_count + 1 ==  mono_method_signature (method)->param_count;
+
+       if (!mono_delegate_signature_equal (mono_method_signature (invoke), mono_method_signature (method), is_first_arg_bound)) {
+               char *fun_sig = mono_signature_get_desc (mono_method_signature (method), FALSE);
+               char *invoke_sig = mono_signature_get_desc (mono_method_signature (invoke), FALSE);
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Function pointer signature '%s' doesn't match delegate's signature '%s' at 0x%04x", fun_sig, invoke_sig, ctx->ip_offset));
+               g_free (fun_sig);
+               g_free (invoke_sig);
+       }
 
        /* 
         * Delegate code sequences:
@@ -2571,8 +2943,13 @@ verify_delegate_compatibility (VerifyContext *ctx, MonoClass *delegate, ILStackD
        ctx->code [ip_offset].flags |= IL_CODE_DELEGATE_SEQUENCE;
 
        //general tests
-       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 (is_first_arg_bound) {
+               if (!verify_stack_type_compatibility_full (ctx, mono_method_signature (method)->params [0], value, FALSE, TRUE))
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("This object not compatible with function pointer for delegate creation at 0x%04x", ctx->ip_offset));
+       } else {
+               if (!verify_stack_type_compatibility_full (ctx, &method->klass->byval_arg, value, FALSE, TRUE) && !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)
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid first parameter for delegate creation at 0x%04x", ctx->ip_offset));
@@ -2585,6 +2962,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));
@@ -2598,14 +2977,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;
                }
        } 
 }
@@ -2632,8 +3014,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;
        }
 
@@ -2672,14 +3054,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)) {
@@ -2700,23 +3082,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
@@ -2724,7 +3107,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;
        
 }
 
@@ -2758,11 +3141,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) && !stack_slot_is_boxed_value (slot);
+}
 
 static void
 do_branch_op (VerifyContext *ctx, signed int delta, const unsigned char table [TYPE_MAX][TYPE_MAX])
@@ -2780,7 +3168,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:
@@ -2804,9 +3192,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); );
@@ -2847,9 +3239,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));
@@ -2935,8 +3331,13 @@ do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
        for (i = sig->param_count - 1; i >= 0; --i) {
                VERIFIER_DEBUG ( printf ("verifying argument %d\n", i); );
                value = stack_pop (ctx);
-               if (!verify_stack_type_compatibility (ctx, sig->params[i], value))
-                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with function signature at 0x%04x", ctx->ip_offset));
+               if (!verify_stack_type_compatibility (ctx, sig->params[i], value)) {
+                       char *stack_name = stack_slot_full_name (value);
+                       char *sig_name = mono_type_full_name (sig->params [i]);
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter with function signature: Calling method with signature (%s) but for argument %d there is a (%s) on stack at 0x%04x", sig_name, i, stack_name, ctx->ip_offset));
+                       g_free (stack_name);
+                       g_free (sig_name);
+               }
 
                if (stack_slot_is_managed_mutability_pointer (value))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer as argument of %s at 0x%04x", virtual ? "callvirt" : "call",  ctx->ip_offset));
@@ -2950,7 +3351,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 
@@ -2982,11 +3397,17 @@ do_invoke_method (VerifyContext *ctx, int method_token, gboolean virtual)
                if (!verify_stack_type_compatibility (ctx, type, &copy))
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible this argument on stack with method signature at 0x%04x", ctx->ip_offset));
 
-               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, value->type->data.klass))
-                       CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+               if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, mono_class_from_mono_type (value->type))) {
+                       char *name = mono_method_full_name (method, TRUE);
+                       CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+                       g_free (name);
+               }
 
-       } else if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL))
-               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method is not accessible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+       } else if (!IS_SKIP_VISIBILITY (ctx) && !mono_method_can_access_method_full (ctx->method, method, NULL)) {
+               char *name = mono_method_full_name (method, TRUE);
+               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Method %s is not accessible at 0x%04x", name, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+               g_free (name);
+       }
 
        if (sig->ret->type != MONO_TYPE_VOID) {
                if (check_overflow (ctx)) {
@@ -3103,10 +3524,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_stack_type_compatibility_full (ctx, &field->parent->byval_arg, obj, FALSE, TRUE))
+               if (!stack_slot_is_null_literal (obj) && !verify_stack_type_compatibility_full (ctx, &field->parent->byval_arg, obj, TRUE, FALSE))
                        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);
        } 
 
@@ -3125,7 +3546,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;
@@ -3151,7 +3572,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;
@@ -3166,6 +3587,7 @@ do_box_value (VerifyContext *ctx, int klass_token)
 {
        ILStackDesc *value;
        MonoType *type = get_boxable_mono_type (ctx, klass_token, "box");
+       MonoClass *klass;       
 
        if (!type)
                return;
@@ -3173,19 +3595,21 @@ 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));
 
+       klass = mono_class_from_mono_type (type);
+       if (mono_class_is_nullable (klass))
+               type = &mono_class_get_nullable_param (klass)->byval_arg;
        stack_push_val (ctx, TYPE_COMPLEX | BOXED_MASK, type);
 }
 
@@ -3243,7 +3667,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:
@@ -3258,6 +3682,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
@@ -3309,6 +3734,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));
 }
 
@@ -3431,7 +3865,12 @@ do_initobj (VerifyContext *ctx, int token)
                else if (IS_STRICT_MODE (ctx) && !mono_metadata_type_equal (type, stack)) 
                        CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
        } else if (!verify_type_compatibility (ctx, stack, type)) {
-               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Type token of initobj not compatible with value on stack at 0x%04x", ctx->ip_offset));
+               char *expected_name = mono_type_full_name (type);
+               char *stack_name = mono_type_full_name (stack);
+
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Initobj %s not compatible with value on stack %s at 0x%04x", expected_name, stack_name, ctx->ip_offset));
+               g_free (expected_name);
+               g_free (stack_name);
        }
 }
 
@@ -3455,8 +3894,13 @@ do_newobj (VerifyContext *ctx, int token)
        if (method->klass->flags & (TYPE_ATTRIBUTE_ABSTRACT | TYPE_ATTRIBUTE_INTERFACE))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Trying to instantiate an abstract or interface type at 0x%04x", ctx->ip_offset));
 
-       if (!mono_method_can_access_method_full (ctx->method, method, NULL))
-               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Constructor not visible at 0x%04x", ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+       if (!mono_method_can_access_method_full (ctx->method, method, NULL)) {
+               char *from = mono_method_full_name (ctx->method, TRUE);
+               char *to = mono_method_full_name (method, TRUE);
+               CODE_NOT_VERIFIABLE2 (ctx, g_strdup_printf ("Constructor %s not visible from %s at 0x%04x", to, from, ctx->ip_offset), MONO_EXCEPTION_METHOD_ACCESS);
+               g_free (from);
+               g_free (to);
+       }
 
        //FIXME use mono_method_get_signature_full
        sig = mono_method_signature (method);
@@ -3479,8 +3923,13 @@ do_newobj (VerifyContext *ctx, int token)
                for (i = sig->param_count - 1; i >= 0; --i) {
                        VERIFIER_DEBUG ( printf ("verifying constructor argument %d\n", i); );
                        value = stack_pop (ctx);
-                       if (!verify_stack_type_compatibility (ctx, sig->params [i], value))
-                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with function signature at 0x%04x", ctx->ip_offset));
+                       if (!verify_stack_type_compatibility (ctx, sig->params [i], value)) {
+                               char *stack_name = stack_slot_full_name (value);
+                               char *sig_name = mono_type_full_name (sig->params [i]);
+                               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Incompatible parameter value with constructor signature: %s X %s at 0x%04x", sig_name, stack_name, ctx->ip_offset));
+                               g_free (stack_name);
+                               g_free (sig_name);
+                       }
 
                        if (stack_slot_is_managed_mutability_pointer (value))
                                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Cannot use a readonly pointer as argument of newobj at 0x%04x", ctx->ip_offset));
@@ -3496,6 +3945,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;
@@ -3523,7 +3973,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 *
@@ -3844,6 +4295,11 @@ do_throw (VerifyContext *ctx)
        if (!stack_slot_is_null_literal (exception) && !(stack_slot_get_type (exception) == TYPE_COMPLEX && !mono_class_from_mono_type (exception->type)->valuetype))
                CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type on stack for throw, expected reference type at 0x%04x", ctx->ip_offset));
 
+       if (mono_type_is_generic_argument (exception->type) && !stack_slot_is_boxed_value (exception)) {
+               char *name = mono_type_full_name (exception->type);
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Invalid type on stack for throw, expected reference type but found unboxed %s  at 0x%04x ", name, ctx->ip_offset));
+               g_free (name);
+       }
        /*The stack is left empty after a throw*/
        ctx->eval.size = 0;
 }
@@ -3889,6 +4345,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;
 }
 
 /* 
@@ -3934,8 +4391,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:
@@ -3943,7 +4402,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);
        }
@@ -4023,6 +4482,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;         
@@ -4033,7 +4494,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));
 }
 
@@ -4045,7 +4509,7 @@ do_ldstr (VerifyContext *ctx, guint32 token)
                return;
        }
 
-       if (mono_metadata_token_index (token) >= ctx->image->heap_us.size) {
+       if (!ctx->image->dynamic && mono_metadata_token_index (token) >= ctx->image->heap_us.size) {
                ADD_VERIFY_ERROR2 (ctx, g_strdup_printf ("Invalid string index %x at 0x%04x", token, ctx->ip_offset), MONO_EXCEPTION_BAD_IMAGE);
                return;
        }
@@ -4127,10 +4591,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:
@@ -4189,7 +4654,11 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                }
 
                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)); 
+                       char *old_name = stack_slot_full_name (old_slot); 
+                       char *new_name = stack_slot_full_name (new_slot);
+                       CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible: %s X %s at 0x%04x", i, old_name, new_name, ctx->ip_offset));
+                       g_free (old_name);
+                       g_free (new_name);
                        goto end_verify;                        
                } 
 
@@ -4206,6 +4675,7 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                                }
                        }
 
+                       mono_class_setup_interfaces (old_class);
                        for (j = 0; j < old_class->interface_count; ++j) {
                                for (k = 0; k < new_class->interface_count; ++k) {
                                        if (mono_metadata_type_equal (&old_class->interfaces [j]->byval_arg, &new_class->interfaces [k]->byval_arg)) {
@@ -4221,9 +4691,16 @@ merge_stacks (VerifyContext *ctx, ILCodeDesc *from, ILCodeDesc *to, gboolean sta
                } 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)); 
+               {
+               char *old_name = stack_slot_full_name (old_slot); 
+               char *new_name = stack_slot_full_name (new_slot);
+               CODE_NOT_VERIFIABLE (ctx, g_strdup_printf ("Could not merge stack at depth %d, types not compatible: %s X %s at 0x%04x", i, old_name, new_name, ctx->ip_offset)); 
+               g_free (old_name);
+               g_free (new_name);
+               }
+               set_stack_value (ctx, old_slot, &new_class->byval_arg, stack_slot_is_managed_pointer (old_slot));
                goto end_verify;
 
 match_found:
@@ -4296,10 +4773,8 @@ static void
 verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, MonoExceptionClause *to_test)
 {
        /*clause is nested*/
-       if (is_clause_nested (to_test, clause)) {
-               if (to_test->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
-                       ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clause inside filter"));
-               }
+       if (to_test->flags == MONO_EXCEPTION_CLAUSE_FILTER && is_clause_inside_range (clause, to_test->data.filter_offset, to_test->handler_offset)) {
+               ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clause inside filter"));
                return;
        }
 
@@ -4326,8 +4801,8 @@ verify_clause_relationship (VerifyContext *ctx, MonoExceptionClause *clause, Mon
        }
 
        /*not completelly disjoint*/
-       if (is_clause_in_range (to_test, clause->try_offset, clause->try_offset + clause->try_len) ||
-               is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len))
+       if ((is_clause_in_range (to_test, clause->try_offset, clause->try_offset + clause->try_len) ||
+               is_clause_in_range (to_test, HANDLER_START (clause), clause->handler_offset + clause->handler_len)) && !is_clause_nested (to_test, clause))
                ADD_VERIFY_ERROR (ctx, g_strdup_printf ("Exception clauses overlap"));
 }
 
@@ -4384,50 +4859,70 @@ 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); );
 
-               if (clause->try_offset > ctx.code_size)
+               if (clause->try_offset > ctx.code_size || clause->try_offset + clause->try_len > ctx.code_size)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause out of bounds at 0x%04x", clause->try_offset));
 
                if (clause->try_len <= 0)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause len <= 0 at 0x%04x", clause->try_offset));
 
-               if (clause->handler_offset > ctx.code_size)
-                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause out of bounds at 0x%04x", clause->try_offset));
+               if (clause->handler_offset > ctx.code_size || clause->handler_offset + clause->handler_len > ctx.code_size)
+                       ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("handler clause out of bounds at 0x%04x", clause->try_offset));
 
                if (clause->handler_len <= 0)
                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("try clause len <= 0 at 0x%04x", clause->try_offset));
@@ -4442,8 +4937,10 @@ mono_method_verify (MonoMethod *method, int level)
                        break;
 
                ctx.code [clause->try_offset].flags |= IL_CODE_FLAG_WAS_TARGET;
-               ctx.code [clause->try_offset + clause->try_len].flags |= IL_CODE_FLAG_WAS_TARGET;
-               ctx.code [clause->handler_offset + clause->handler_len].flags |= IL_CODE_FLAG_WAS_TARGET;
+               if (clause->try_offset + clause->try_len < ctx.code_size)
+                       ctx.code [clause->try_offset + clause->try_len].flags |= IL_CODE_FLAG_WAS_TARGET;
+               if (clause->handler_offset + clause->handler_len < ctx.code_size)
+                       ctx.code [clause->handler_offset + clause->handler_len].flags |= IL_CODE_FLAG_WAS_TARGET;
 
                if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE) {
                        init_stack_with_value_at_exception_boundary (&ctx, ctx.code + clause->handler_offset, clause->data.catch_class);
@@ -4488,7 +4985,7 @@ mono_method_verify (MonoMethod *method, int level)
                                start = 1;
                        }
 
-                       if (clause->try_offset == ip_offset && ctx.eval.size > 0) {
+                       if (clause->try_offset == ip_offset && ctx.eval.size > 0 && start == 0) {
                                ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("Try to enter try block with a non-empty stack at 0x%04x", ip_offset));
                                start = 1;
                        }
@@ -4593,7 +5090,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;
 
@@ -4750,8 +5247,9 @@ 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;
                }
@@ -5266,6 +5764,7 @@ mono_method_verify (MonoMethod *method, int level)
                                if (!is_correct_rethrow (ctx.header, ip_offset))
                                        ADD_VERIFY_ERROR (&ctx, g_strdup_printf ("rethrow must be used inside a catch handler at 0x%04x", ctx.ip_offset));
                                ctx.eval.size = 0;
+                               start = 1;
                                ++ip;
                                break;
                        case CEE_UNUSED:
@@ -5340,6 +5839,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)
@@ -5351,12 +5854,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;
 }
@@ -5368,25 +5880,6 @@ mono_verify_corlib ()
        return NULL;
 }
 
-static MiniVerifierMode verifier_mode = MONO_VERIFIER_MODE_OFF;
-static gboolean verify_all = FALSE;
-
-/*
- * Set the desired level of checks for the verfier.
- * 
- */
-void
-mono_verifier_set_mode (MiniVerifierMode mode)
-{
-       verifier_mode = mode;
-}
-
-void
-mono_verifier_enable_verify_all ()
-{
-       verify_all = TRUE;
-}
-
 /*
  * Returns true if @method needs to be verified.
  * 
@@ -5407,6 +5900,12 @@ mono_verifier_is_enabled_for_class (MonoClass *klass)
        return verify_all || (verifier_mode > MONO_VERIFIER_MODE_OFF && !klass->image->assembly->in_gac && klass->image != mono_defaults.corlib);
 }
 
+gboolean
+mono_verifier_is_enabled_for_image (MonoImage *image)
+{
+       return verify_all || verifier_mode > MONO_VERIFIER_MODE_OFF;
+}
+
 gboolean
 mono_verifier_is_method_full_trust (MonoMethod *method)
 {
@@ -5418,16 +5917,19 @@ mono_verifier_is_method_full_trust (MonoMethod *method)
  * 
  * TODO This code doesn't take CAS into account.
  * 
- * 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)
 {
-       return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || klass->image->assembly->in_gac || klass->image == mono_defaults.corlib;
+       /* under CoreCLR code is trusted if it is part of the "platform" otherwise all code inside the GAC is trusted */
+       gboolean trusted_location = (mono_security_get_mode () != MONO_SECURITY_MODE_CORE_CLR) ? 
+               klass->image->assembly->in_gac : mono_security_core_clr_is_platform_image (klass->image);
+
+       if (verify_all && verifier_mode == MONO_VERIFIER_MODE_OFF)
+               return trusted_location || klass->image == mono_defaults.corlib;
+       return verifier_mode < MONO_VERIFIER_MODE_VERIFIABLE || trusted_location || klass->image == mono_defaults.corlib;
 }
 
 GSList*
@@ -5439,25 +5941,35 @@ 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;
+       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)
+       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) || (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);
+                       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;
 
@@ -5483,10 +5995,84 @@ 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;
 }
+#else
+
+gboolean
+mono_verifier_verify_class (MonoClass *class)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+GSList*
+mono_method_verify_with_current_settings (MonoMethod *method, gboolean skip_visibility)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}
+
+gboolean
+mono_verifier_is_class_full_trust (MonoClass *klass)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+gboolean
+mono_verifier_is_method_full_trust (MonoMethod *method)
+{
+       /* The verifier was disabled at compile time */
+       return TRUE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_image (MonoImage *image)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_class (MonoClass *klass)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+gboolean
+mono_verifier_is_enabled_for_method (MonoMethod *method)
+{
+       /* The verifier was disabled at compile time */
+       return FALSE;
+}
+
+GSList*
+mono_method_verify (MonoMethod *method, int level)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}
+
+void
+mono_free_verify_list (GSList *list)
+{
+       /* The verifier was disabled at compile time */
+       /* will always be null if verifier is disabled */
+}
+
+GSList*
+mono_image_verify_tables (MonoImage *image, int level)
+{
+       /* The verifier was disabled at compile time */
+       return NULL;
+}      
+#endif