Test case for bug#325444.
[mono.git] / mono / mini / aot-runtime.c
index 241cb76f502c175845593c039fe6e55de07a29eb..6da4f6e00f4e1c85c51a40cec484839c6ab2d9a2 100644 (file)
@@ -10,7 +10,9 @@
 
 #include "config.h"
 #include <sys/types.h>
+#ifdef HAVE_UNISTD_H
 #include <unistd.h>
+#endif
 #include <fcntl.h>
 #include <string.h>
 #ifndef PLATFORM_WIN32
 #include <windows.h>
 #endif
 
+#ifdef HAVE_EXECINFO_H
+#include <execinfo.h>
+#endif
+
 #include <errno.h>
 #include <sys/stat.h>
 #include <limits.h>    /* for PAGESIZE */
 #define PAGESIZE 4096
 #endif
 
+#ifdef HAVE_SYS_WAIT_H
+#include <sys/wait.h>  /* for WIFEXITED, WEXITSTATUS */
+#endif
+
 #include <mono/metadata/tabledefs.h>
 #include <mono/metadata/class.h>
 #include <mono/metadata/object.h>
@@ -36,6 +46,7 @@
 #include <mono/metadata/assembly.h>
 #include <mono/metadata/metadata-internals.h>
 #include <mono/metadata/marshal.h>
+#include <mono/metadata/gc-internal.h>
 #include <mono/utils/mono-logger.h>
 #include "mono/utils/mono-compiler.h"
 
@@ -61,6 +72,7 @@ typedef struct MonoAotModule {
        /* Pointer to the Global Offset Table */
        gpointer *got;
        guint32 got_size;
+       GHashTable *name_cache;
        MonoAssemblyName *image_names;
        char **image_guids;
        MonoImage **image_table;
@@ -88,6 +100,7 @@ typedef struct MonoAotModule {
        guint8 *class_info;
        guint32 *class_info_offsets;
        guint32 *methods_loaded;
+       guint16 *class_name_table;
 } MonoAotModule;
 
 static GHashTable *aot_modules;
@@ -121,18 +134,19 @@ static gint32 mono_last_aot_method = -1;
 
 static gboolean make_unreadable = FALSE;
 static guint32 n_pagefaults = 0;
+static guint32 name_table_accesses = 0;
 
 /* Used to speed-up find_aot_module () */
 static gsize aot_code_low_addr = (gssize)-1;
 static gsize aot_code_high_addr = 0;
 
-static MonoJitInfo*
-mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod *method, guint8 *code, guint8 *info, guint8 *ex_info);
+static gpointer
+mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod *method, guint8 *code, guint8 *info);
 
 static void
 init_plt (MonoAotModule *info);
 
-static gboolean 
+static inline gboolean 
 is_got_patch (MonoJumpInfoType patch_type)
 {
 #ifdef __x86_64__
@@ -224,14 +238,28 @@ decode_klass_info (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
        image = load_image (module, image_index);
        if (!image)
                return NULL;
-       if (mono_metadata_token_code (token) == 0) {
+       if (mono_metadata_token_table (token) == 0) {
                klass = mono_class_get (image, MONO_TOKEN_TYPE_DEF + token);
+       } else if (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC) {
+               klass = mono_class_get (image, token);
        } else {
+               g_assert (mono_metadata_token_table (token) == MONO_TABLE_TYPEDEF);
                token = MONO_TOKEN_TYPE_DEF + decode_value (buf, &buf);
                rank = decode_value (buf, &buf);
-               klass = mono_class_get (image, token);
-               g_assert (klass);
-               klass = mono_array_class_get (klass, rank);
+               if (token == MONO_TOKEN_TYPE_DEF) {
+                       /* <Type>[][] */
+                       token = MONO_TOKEN_TYPE_DEF + decode_value (buf, &buf);
+                       klass = mono_class_get (image, token);
+                       g_assert (klass);
+                       klass = mono_array_class_get (klass, rank);
+
+                       rank = decode_value (buf, &buf);
+                       klass = mono_array_class_get (klass, rank);
+               } else {
+                       klass = mono_class_get (image, token);
+                       g_assert (klass);
+                       klass = mono_array_class_get (klass, rank);
+               }
        }
        g_assert (klass);
        mono_class_init (klass);
@@ -267,6 +295,12 @@ decode_method_ref (MonoAotModule *module, guint32 *token, guint8 *buf, guint8 **
        image_index = value >> 24;
        *token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
 
+       if (image_index == 255) {
+               /* Methodspec */
+               image_index = decode_value (buf, &buf);
+               *token = decode_value (buf, &buf);
+       }
+
        image = load_image (module, image_index);
        if (!image)
                return NULL;
@@ -351,12 +385,12 @@ create_cache_structure (void)
  * - invoking a new mono process is a security risk
  * - recompile the AOT module if one of its dependencies changes
  */
-static GModule*
+static MonoDl*
 load_aot_module_from_cache (MonoAssembly *assembly, char **aot_name)
 {
        char *fname, *cmd, *tmp2, *aot_options;
        const char *home;
-       GModule *module;
+       MonoDl *module;
        gboolean res;
        gchar *out, *err;
        gint exit_status;
@@ -376,7 +410,7 @@ load_aot_module_from_cache (MonoAssembly *assembly, char **aot_name)
        g_free (tmp2);
 
        mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT trying to load from cache: '%s'.", fname);
-       module = g_module_open (fname, G_MODULE_BIND_LAZY);     
+       module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
 
        if (!module) {
                mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT not found.");
@@ -392,7 +426,7 @@ load_aot_module_from_cache (MonoAssembly *assembly, char **aot_name)
 
                        res = g_spawn_command_line_sync (cmd, &out, &err, &exit_status, NULL);
 
-#ifndef PLATFORM_WIN32
+#if !defined(PLATFORM_WIN32) && !defined(__ppc__) && !defined(__powerpc__)
                        if (res) {
                                if (!WIFEXITED (exit_status) && (WEXITSTATUS (exit_status) == 0))
                                        mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT failed: %s.", err);
@@ -412,7 +446,7 @@ load_aot_module_from_cache (MonoAssembly *assembly, char **aot_name)
                        }
                }
 
-               module = g_module_open (fname, G_MODULE_BIND_LAZY);     
+               module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
 
                g_free (aot_options);
        }
@@ -434,19 +468,29 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
        gpointer *got_addr = NULL;
        gpointer *got = NULL;
        guint32 *got_size_ptr = NULL;
+       int i;
 
        if (mono_compile_aot)
                return;
 
+       if (assembly->aot_module)
+               /* 
+                * Already loaded. This can happen because the assembly loading code might invoke
+                * the assembly load hooks multiple times for the same assembly.
+                */
+               return;
+
        if (use_aot_cache)
                assembly->aot_module = load_aot_module_from_cache (assembly, &aot_name);
        else {
+               char *err;
                aot_name = g_strdup_printf ("%s%s", assembly->image->name, SHARED_EXT);
 
-               assembly->aot_module = g_module_open (aot_name, G_MODULE_BIND_LAZY);
+               assembly->aot_module = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
 
                if (!assembly->aot_module) {
-                       mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT failed to load AOT module %s: %s\n", aot_name, g_module_error ());
+                       mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT failed to load AOT module %s: %s\n", aot_name, err);
+                       g_free (err);
                }
        }
 
@@ -455,9 +499,9 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
                return;
        }
 
-       g_module_symbol (assembly->aot_module, "mono_assembly_guid", (gpointer *) &saved_guid);
-       g_module_symbol (assembly->aot_module, "mono_aot_version", (gpointer *) &aot_version);
-       g_module_symbol (assembly->aot_module, "mono_aot_opt_flags", (gpointer *)&opt_flags);
+       mono_dl_symbol (assembly->aot_module, "mono_assembly_guid", (gpointer *) &saved_guid);
+       mono_dl_symbol (assembly->aot_module, "mono_aot_version", (gpointer *) &aot_version);
+       mono_dl_symbol (assembly->aot_module, "mono_aot_opt_flags", (gpointer *)&opt_flags);
 
        if (!aot_version || strcmp (aot_version, MONO_AOT_FILE_VERSION)) {
                mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module %s has wrong file format version (expected %s got %s)\n", aot_name, MONO_AOT_FILE_VERSION, aot_version);
@@ -472,16 +516,16 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
 
        if (!usable) {
                g_free (aot_name);
-               g_module_close (assembly->aot_module);
+               mono_dl_close (assembly->aot_module);
                assembly->aot_module = NULL;
                return;
        }
 
-       g_module_symbol (assembly->aot_module, "got_addr", (gpointer *)&got_addr);
+       mono_dl_symbol (assembly->aot_module, "got_addr", (gpointer *)&got_addr);
        g_assert (got_addr);
        got = (gpointer*)*got_addr;
        g_assert (got);
-       g_module_symbol (assembly->aot_module, "got_size", (gpointer *)&got_size_ptr);
+       mono_dl_symbol (assembly->aot_module, "got_size", (gpointer *)&got_size_ptr);
        g_assert (got_size_ptr);
 
        info = g_new0 (MonoAotModule, 1);
@@ -497,7 +541,7 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
                guint32 table_len, i;
                char *table = NULL;
 
-               g_module_symbol (assembly->aot_module, "mono_image_table", (gpointer *)&table);
+               mono_dl_symbol (assembly->aot_module, "mono_image_table", (gpointer *)&table);
                g_assert (table);
 
                table_len = *(guint32*)table;
@@ -534,33 +578,34 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
        }
 
        /* Read method and method_info tables */
-       g_module_symbol (assembly->aot_module, "method_offsets", (gpointer*)&info->code_offsets);
-       g_module_symbol (assembly->aot_module, "methods", (gpointer*)&info->code);
-       g_module_symbol (assembly->aot_module, "methods_end", (gpointer*)&info->code_end);
-       g_module_symbol (assembly->aot_module, "method_info_offsets", (gpointer*)&info->method_info_offsets);
-       g_module_symbol (assembly->aot_module, "method_info", (gpointer*)&info->method_info);
-       g_module_symbol (assembly->aot_module, "ex_info_offsets", (gpointer*)&info->ex_info_offsets);
-       g_module_symbol (assembly->aot_module, "ex_info", (gpointer*)&info->ex_info);
-       g_module_symbol (assembly->aot_module, "method_order", (gpointer*)&info->method_order);
-       g_module_symbol (assembly->aot_module, "method_order_end", (gpointer*)&info->method_order_end);
-       g_module_symbol (assembly->aot_module, "class_info", (gpointer*)&info->class_info);
-       g_module_symbol (assembly->aot_module, "class_info_offsets", (gpointer*)&info->class_info_offsets);
-       g_module_symbol (assembly->aot_module, "got_info", (gpointer*)&info->got_info);
-       g_module_symbol (assembly->aot_module, "got_info_offsets", (gpointer*)&info->got_info_offsets);
-       g_module_symbol (assembly->aot_module, "mem_end", (gpointer*)&info->mem_end);
+       mono_dl_symbol (assembly->aot_module, "method_offsets", (gpointer*)&info->code_offsets);
+       mono_dl_symbol (assembly->aot_module, "methods", (gpointer*)&info->code);
+       mono_dl_symbol (assembly->aot_module, "methods_end", (gpointer*)&info->code_end);
+       mono_dl_symbol (assembly->aot_module, "method_info_offsets", (gpointer*)&info->method_info_offsets);
+       mono_dl_symbol (assembly->aot_module, "method_info", (gpointer*)&info->method_info);
+       mono_dl_symbol (assembly->aot_module, "ex_info_offsets", (gpointer*)&info->ex_info_offsets);
+       mono_dl_symbol (assembly->aot_module, "ex_info", (gpointer*)&info->ex_info);
+       mono_dl_symbol (assembly->aot_module, "method_order", (gpointer*)&info->method_order);
+       mono_dl_symbol (assembly->aot_module, "method_order_end", (gpointer*)&info->method_order_end);
+       mono_dl_symbol (assembly->aot_module, "class_info", (gpointer*)&info->class_info);
+       mono_dl_symbol (assembly->aot_module, "class_info_offsets", (gpointer*)&info->class_info_offsets);
+       mono_dl_symbol (assembly->aot_module, "class_name_table", (gpointer *)&info->class_name_table);
+       mono_dl_symbol (assembly->aot_module, "got_info", (gpointer*)&info->got_info);
+       mono_dl_symbol (assembly->aot_module, "got_info_offsets", (gpointer*)&info->got_info_offsets);
+       mono_dl_symbol (assembly->aot_module, "mem_end", (gpointer*)&info->mem_end);
 
        info->mem_begin = info->code;
 
-       g_module_symbol (assembly->aot_module, "plt", (gpointer*)&info->plt);
-       g_module_symbol (assembly->aot_module, "plt_end", (gpointer*)&info->plt_end);
-       g_module_symbol (assembly->aot_module, "plt_info", (gpointer*)&info->plt_info);
+       mono_dl_symbol (assembly->aot_module, "plt", (gpointer*)&info->plt);
+       mono_dl_symbol (assembly->aot_module, "plt_end", (gpointer*)&info->plt_end);
+       mono_dl_symbol (assembly->aot_module, "plt_info", (gpointer*)&info->plt_info);
 
-       g_module_symbol (assembly->aot_module, "plt_jump_table_addr", (gpointer *)&plt_jump_table_addr);
+       mono_dl_symbol (assembly->aot_module, "plt_jump_table_addr", (gpointer *)&plt_jump_table_addr);
        g_assert (plt_jump_table_addr);
        info->plt_jump_table = (guint8*)*plt_jump_table_addr;
        g_assert (info->plt_jump_table);
 
-       g_module_symbol (assembly->aot_module, "plt_jump_table_size", (gpointer *)&plt_jump_table_size);
+       mono_dl_symbol (assembly->aot_module, "plt_jump_table_size", (gpointer *)&plt_jump_table_size);
        g_assert (plt_jump_table_size);
        info->plt_jump_table_size = *plt_jump_table_size;
 
@@ -591,7 +636,19 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
 
        mono_jit_info_add_aot_module (assembly->image, info->code, info->code_end);
 
-       mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT loaded AOT Module for %s.\n", assembly->image->name);
+       /*
+        * Since we store methoddef and classdef tokens when referring to methods/classes in
+        * referenced assemblies, we depend on the exact versions of the referenced assemblies.
+        * MS calls this 'hard binding'. This means we have to load all referenced assemblies
+        * non-lazily, since we can't handle out-of-date errors later.
+        */
+       for (i = 0; i < info->image_table_len; ++i)
+               load_image (info, i);
+
+       if (info->out_of_date)
+               mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT Module %s is unusable because a dependency is out-of-date.\n", assembly->image->name);
+       else
+               mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT loaded AOT Module for %s.\n", assembly->image->name);
 }
 
 void
@@ -614,6 +671,9 @@ decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guin
        guint32 flags;
 
        info->vtable_size = decode_value (buf, &buf);
+       if (info->vtable_size == -1)
+               /* Generic type */
+               return FALSE;
        flags = decode_value (buf, &buf);
        info->ghcimpl = (flags >> 0) & 0x1;
        info->has_finalize = (flags >> 1) & 0x1;
@@ -745,6 +805,120 @@ mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
        return TRUE;
 }
 
+/**
+ * mono_aot_get_class_from_name:
+ *
+ *  Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
+ * using a cache stored in the AOT file.
+ * Stores the resulting class in *KLASS if found, stores NULL otherwise.
+ *
+ * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was 
+ * found.
+ */
+gboolean
+mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
+{
+       MonoAotModule *aot_module;
+       guint16 *table, *entry;
+       guint16 table_size;
+       guint32 hash;
+       char full_name_buf [1024];
+       char *full_name;
+       const char *name2, *name_space2;
+       MonoTableInfo  *t;
+       guint32 cols [MONO_TYPEDEF_SIZE];
+       GHashTable *nspace_table;
+
+       if (!aot_modules)
+               return FALSE;
+
+       mono_aot_lock ();
+
+       aot_module = (MonoAotModule*) g_hash_table_lookup (aot_modules, image->assembly);
+       if (!aot_module || !aot_module->class_name_table) {
+               mono_aot_unlock ();
+               return FALSE;
+       }
+
+       *klass = NULL;
+
+       /* First look in the cache */
+       if (!aot_module->name_cache)
+               aot_module->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
+       nspace_table = g_hash_table_lookup (aot_module->name_cache, name_space);
+       if (nspace_table) {
+               *klass = g_hash_table_lookup (nspace_table, name);
+               if (*klass) {
+                       mono_aot_unlock ();
+                       return TRUE;
+               }
+       }
+
+       table_size = aot_module->class_name_table [0];
+       table = aot_module->class_name_table + 1;
+
+       if (name_space [0] == '\0')
+               full_name = g_strdup_printf ("%s", name);
+       else {
+               if (strlen (name_space) + strlen (name) < 1000) {
+                       sprintf (full_name_buf, "%s.%s", name_space, name);
+                       full_name = full_name_buf;
+               } else {
+                       full_name = g_strdup_printf ("%s.%s", name_space, name);
+               }
+       }
+       hash = g_str_hash (full_name) % table_size;
+       if (full_name != full_name_buf)
+               g_free (full_name);
+
+       entry = &table [hash * 2];
+
+       if (entry [0] != 0) {
+               t = &image->tables [MONO_TABLE_TYPEDEF];
+
+               while (TRUE) {
+                       guint32 index = entry [0];
+                       guint32 next = entry [1];
+                       guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
+
+                       name_table_accesses ++;
+
+                       mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
+
+                       name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
+                       name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
+
+                       if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
+                               mono_aot_unlock ();
+                               *klass = mono_class_get (image, token);
+
+                               /* Add to cache */
+                               if (*klass) {
+                                       mono_aot_lock ();
+                                       nspace_table = g_hash_table_lookup (aot_module->name_cache, name_space);
+                                       if (!nspace_table) {
+                                               nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
+                                               g_hash_table_insert (aot_module->name_cache, (char*)name_space2, nspace_table);
+                                       }
+                                       g_hash_table_insert (nspace_table, (char*)name2, *klass);
+                                       mono_aot_unlock ();
+                               }
+                               return TRUE;
+                       }
+
+                       if (next != 0) {
+                               entry = &table [next * 2];
+                       } else {
+                               break;
+                       }
+               }
+       }
+
+       mono_aot_unlock ();
+       
+       return TRUE;
+}
+
 static MonoJitInfo*
 decode_exception_debug_info (MonoAotModule *aot_module, MonoDomain *domain, 
                                                         MonoMethod *method, guint8* ex_info, guint8 *code)
@@ -806,7 +980,7 @@ MonoJitInfo *
 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
 {
        MonoAssembly *ass = image->assembly;
-       GModule *module = ass->aot_module;
+       MonoDl *module = ass->aot_module;
        int pos, left, right, offset, offset1, offset2, last_offset, new_offset, page_index, method_index, table_len;
        guint32 token;
        MonoAotModule *aot_module;
@@ -937,18 +1111,14 @@ decode_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji,
        case MONO_PATCH_INFO_METHOD:
        case MONO_PATCH_INFO_METHODCONST:
        case MONO_PATCH_INFO_METHOD_JUMP: {
-               guint32 image_index, token, value;
+               guint32 token;
 
-               value = decode_value (p, &p);
-               image_index = value >> 24;
-               token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
-
-               image = load_image (aot_module, image_index);
+               image = decode_method_ref (aot_module, &token, p, &p);
                if (!image)
                        goto cleanup;
 
 #ifdef MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN
-               if (ji->type == MONO_PATCH_INFO_METHOD) {
+               if ((ji->type == MONO_PATCH_INFO_METHOD) && (mono_metadata_token_table (token) == MONO_TABLE_METHOD)) {
                        ji->data.target = mono_create_jit_trampoline_from_token (image, token);
                        ji->type = MONO_PATCH_INFO_ABS;
                }
@@ -1023,6 +1193,13 @@ decode_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji,
                                g_assert_not_reached ();
                        break;
                }
+               case MONO_WRAPPER_ALLOC: {
+                       int atype = decode_value (p, &p);
+
+                       ji->type = MONO_PATCH_INFO_METHOD;
+                       ji->data.method = mono_gc_get_managed_allocator_by_type (atype);
+                       break;
+               }
                case MONO_WRAPPER_STELEMREF:
                        ji->type = MONO_PATCH_INFO_METHOD;
                        ji->data.method = mono_marshal_get_stelemref ();
@@ -1111,6 +1288,7 @@ decode_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji,
                        goto cleanup;
                ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
                break;
+       case MONO_PATCH_INFO_RVA:
        case MONO_PATCH_INFO_DECLSEC:
        case MONO_PATCH_INFO_LDTOKEN:
        case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
@@ -1200,13 +1378,14 @@ load_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, int n_patches,
        return NULL;
 }
  
-static MonoJitInfo *
+static gpointer
 mono_aot_get_method_inner (MonoDomain *domain, MonoMethod *method)
 {
        MonoClass *klass = method->klass;
        MonoAssembly *ass = klass->image->assembly;
-       GModule *module = ass->aot_module;
-       guint8 *code, *info, *ex_info;
+       MonoDl *module = ass->aot_module;
+       guint32 method_index = mono_metadata_token_index (method->token) - 1;
+       guint8 *code, *info;
        MonoAotModule *aot_module;
 
        if (!module)
@@ -1235,7 +1414,7 @@ mono_aot_get_method_inner (MonoDomain *domain, MonoMethod *method)
        if (aot_module->out_of_date)
                return NULL;
 
-       if (aot_module->code_offsets [mono_metadata_token_index (method->token) - 1] == 0xffffffff) {
+       if (aot_module->code_offsets [method_index] == 0xffffffff) {
                if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
                        char *full_name = mono_method_full_name (method, TRUE);
                        mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.\n", full_name);
@@ -1244,9 +1423,14 @@ mono_aot_get_method_inner (MonoDomain *domain, MonoMethod *method)
                return NULL;
        }
 
-       code = &aot_module->code [aot_module->code_offsets [mono_metadata_token_index (method->token) - 1]];
-       info = &aot_module->method_info [aot_module->method_info_offsets [mono_metadata_token_index (method->token) - 1]];
-       ex_info = &aot_module->ex_info [aot_module->ex_info_offsets [mono_metadata_token_index (method->token) - 1]];
+       code = &aot_module->code [aot_module->code_offsets [method_index]];
+       info = &aot_module->method_info [aot_module->method_info_offsets [method_index]];
+
+       if (!aot_module->methods_loaded)
+               aot_module->methods_loaded = g_new0 (guint32, klass->image->tables [MONO_TABLE_METHOD].rows + 1);
+
+       if ((aot_module->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
+               return code;
 
        if (mono_last_aot_method != -1) {
                if (mono_jit_stats.methods_aot > mono_last_aot_method)
@@ -1256,27 +1440,32 @@ mono_aot_get_method_inner (MonoDomain *domain, MonoMethod *method)
                                printf ("LAST AOT METHOD: %s.%s.%s.\n", klass->name_space, klass->name, method->name);
        }
 
-       return mono_aot_load_method (domain, aot_module, method, code, info, ex_info);
+       return mono_aot_load_method (domain, aot_module, method, code, info);
 }
 
-static MonoJitInfo*
-mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod *method, guint8 *code, guint8 *info, guint8* ex_info)
+static gpointer
+mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod *method, guint8 *code, guint8 *info)
 {
        MonoClass *klass = method->klass;
        MonoJumpInfo *patch_info = NULL;
-       MonoJitInfo *jinfo;
        MonoMemPool *mp;
        int i, pindex, got_index = 0, n_patches, used_strings;
        gboolean non_got_patches, keep_patches = TRUE;
-       guint8 *p;
-
-       jinfo = decode_exception_debug_info (aot_module, domain, method, ex_info, code);
+       guint32 method_index = mono_metadata_token_index (method->token) - 1;
+       guint8 *p, *ex_info;
+       MonoJitInfo *jinfo = NULL;
 
        p = info;
        decode_klass_info (aot_module, p, &p);
 
        if (!use_loaded_code) {
                guint8 *code2;
+
+               if (!jinfo) {
+                       ex_info = &aot_module->ex_info [aot_module->ex_info_offsets [mono_metadata_token_index (method->token) - 1]];
+                       jinfo = decode_exception_debug_info (aot_module, domain, method, ex_info, code);
+               }
+
                code2 = mono_code_manager_reserve (domain->code_mp, jinfo->code_size);
                memcpy (code2, code, jinfo->code_size);
                mono_arch_flush_icache (code2, jinfo->code_size);
@@ -1330,6 +1519,11 @@ mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod
                                non_got_patches = TRUE;
                }
                if (non_got_patches) {
+                       if (!jinfo) {
+                               ex_info = &aot_module->ex_info [aot_module->ex_info_offsets [mono_metadata_token_index (method->token) - 1]];
+                               jinfo = decode_exception_debug_info (aot_module, domain, method, ex_info, code);
+                       }
+
                        mono_arch_flush_icache (code, jinfo->code_size);
                        make_writable (code, jinfo->code_size);
                        mono_arch_patch_code (method, domain, code, patch_info, TRUE);
@@ -1346,13 +1540,21 @@ mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod
 
        if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
                char *full_name = mono_method_full_name (method, TRUE);
+
+               if (!jinfo) {
+                       ex_info = &aot_module->ex_info [aot_module->ex_info_offsets [mono_metadata_token_index (method->token) - 1]];
+                       jinfo = decode_exception_debug_info (aot_module, domain, method, ex_info, code);
+               }
+
                mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT FOUND AOT compiled code for %s %p - %p %p\n", full_name, code, code + jinfo->code_size, info);
                g_free (full_name);
        }
 
+       aot_module->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
+
        init_plt (aot_module);
 
-       return jinfo;
+       return code;
 
  cleanup:
        /* FIXME: The space in domain->mp is wasted */  
@@ -1360,25 +1562,22 @@ mono_aot_load_method (MonoDomain *domain, MonoAotModule *aot_module, MonoMethod
                /* No need to cache patches */
                mono_mempool_destroy (mp);
 
+       if (jinfo)
+               g_free (jinfo);
+
        return NULL;
 }
 
-MonoJitInfo*
+gpointer
 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
 {
-       MonoJitInfo *info;
+       gpointer code;
 
        mono_aot_lock ();
-       info = mono_aot_get_method_inner (domain, method);
+       code = mono_aot_get_method_inner (domain, method);
        mono_aot_unlock ();
 
-       /* Do this outside the lock */
-       if (info) {
-               mono_jit_info_table_add (domain, info);
-               return info;
-       }
-       else
-               return NULL;
+       return code;
 }
 
 static gpointer
@@ -1389,7 +1588,7 @@ mono_aot_get_method_from_token_inner (MonoDomain *domain, MonoImage *image, guin
        int i, method_index, pindex, got_index, n_patches, used_strings;
        gboolean keep_patches = TRUE;
        guint8 *p;
-       GModule *module = ass->aot_module;
+       MonoDl *module = ass->aot_module;
        guint8 *code = NULL;
        guint8 *info;
        MonoAotModule *aot_module;
@@ -1685,11 +1884,29 @@ mono_aot_handle_pagefault (void *ptr)
 
        n_pagefaults ++;
        mono_aot_unlock ();
+
+#if 0
+ {
+       void *array [256];
+       char **names;
+       int i, size;
+
+       printf ("\nNative stacktrace:\n\n");
+
+       size = backtrace (array, 256);
+       names = backtrace_symbols (array, size);
+       for (i =0; i < size; ++i) {
+               printf ("\t%s\n", names [i]);
+       }
+       free (names);
+ }
+#endif
+
 #endif
 }
 
 /*
- * aot_dyn_resolve:
+ * mono_aot_plt_resolve:
  *
  *   This function is called by the entries in the PLT to resolve the actual method that
  * needs to be called. It returns a trampoline to the method and patches the PLT entry.
@@ -1819,7 +2036,7 @@ mono_aot_init (void)
 {
 }
 
-MonoJitInfo*
+gpointer
 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
 {
        return NULL;
@@ -1843,6 +2060,12 @@ mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
        return FALSE;
 }
 
+gboolean
+mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
+{
+       return FALSE;
+}
+
 MonoJitInfo *
 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
 {
@@ -1883,4 +2106,10 @@ mono_aot_get_plt_entry (guint8 *code)
        return NULL;
 }
 
+gpointer
+mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
+{
+       return NULL;
+}
+
 #endif