Fix bugs in sizing TableLayoutPanel (Xamarin bug 18638)
[mono.git] / mono / mini / aot-runtime.c
1 /*
2  * aot-runtime.c: mono Ahead of Time compiler
3  *
4  * Author:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *   Zoltan Varga (vargaz@gmail.com)
7  *
8  * (C) 2002 Ximian, Inc.
9  * Copyright 2003-2011 Novell, Inc.
10  * Copyright 2011 Xamarin, Inc.
11  */
12
13 #include "config.h"
14 #include <sys/types.h>
15 #ifdef HAVE_UNISTD_H
16 #include <unistd.h>
17 #endif
18 #include <fcntl.h>
19 #include <string.h>
20 #ifdef HAVE_SYS_MMAN_H
21 #include <sys/mman.h>
22 #endif
23
24 #if HOST_WIN32
25 #include <winsock2.h>
26 #include <windows.h>
27 #endif
28
29 #ifdef HAVE_EXECINFO_H
30 #include <execinfo.h>
31 #endif
32
33 #include <errno.h>
34 #include <sys/stat.h>
35
36 #ifdef HAVE_SYS_WAIT_H
37 #include <sys/wait.h>  /* for WIFEXITED, WEXITSTATUS */
38 #endif
39
40 #include <mono/metadata/abi-details.h>
41 #include <mono/metadata/tabledefs.h>
42 #include <mono/metadata/class.h>
43 #include <mono/metadata/object.h>
44 #include <mono/metadata/tokentype.h>
45 #include <mono/metadata/appdomain.h>
46 #include <mono/metadata/debug-helpers.h>
47 #include <mono/metadata/assembly.h>
48 #include <mono/metadata/metadata-internals.h>
49 #include <mono/metadata/marshal.h>
50 #include <mono/metadata/gc-internal.h>
51 #include <mono/metadata/monitor.h>
52 #include <mono/metadata/threads-types.h>
53 #include <mono/metadata/mono-endian.h>
54 #include <mono/utils/mono-logger-internal.h>
55 #include <mono/utils/mono-mmap.h>
56 #include "mono/utils/mono-compiler.h"
57 #include <mono/utils/mono-counters.h>
58 #include <mono/utils/mono-digest.h>
59
60 #include "mini.h"
61 #include "version.h"
62
63 #ifndef DISABLE_AOT
64
65 #ifdef TARGET_OSX
66 #define ENABLE_AOT_CACHE
67 #endif
68
69 #ifdef TARGET_WIN32
70 #define SHARED_EXT ".dll"
71 #elif ((defined(__ppc__) || defined(__powerpc__) || defined(__ppc64__)) || defined(__MACH__)) && !defined(__linux__)
72 #define SHARED_EXT ".dylib"
73 #elif defined(__APPLE__) && defined(TARGET_X86) && !defined(__native_client_codegen__)
74 #define SHARED_EXT ".dylib"
75 #else
76 #define SHARED_EXT ".so"
77 #endif
78
79 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
80 #define ALIGN_PTR_TO(ptr,align) (gpointer)((((gssize)(ptr)) + (align - 1)) & (~(align - 1)))
81 #define ROUND_DOWN(VALUE,SIZE)  ((VALUE) & ~((SIZE) - 1))
82
83 typedef struct {
84         int method_index;
85         MonoJitInfo *jinfo;
86 } JitInfoMap;
87
88 typedef struct MonoAotModule {
89         char *aot_name;
90         /* Pointer to the Global Offset Table */
91         gpointer *got;
92         GHashTable *name_cache;
93         GHashTable *extra_methods;
94         /* Maps methods to their code */
95         GHashTable *method_to_code;
96         /* Maps pointers into the method info to the methods themselves */
97         GHashTable *method_ref_to_method;
98         MonoAssemblyName *image_names;
99         char **image_guids;
100         MonoAssembly *assembly;
101         MonoImage **image_table;
102         guint32 image_table_len;
103         gboolean out_of_date;
104         gboolean plt_inited;
105         guint8 *mem_begin;
106         guint8 *mem_end;
107         guint8 *code;
108         guint8 *code_end;
109         guint8 *plt;
110         guint8 *plt_end;
111         guint8 *blob;
112         gint32 *code_offsets;
113         gpointer *method_addresses;
114         /* This contains <offset, index> pairs sorted by offset */
115         /* This is needed because LLVM emitted methods can be in any order */
116         gint32 *sorted_code_offsets;
117         gint32 sorted_code_offsets_len;
118         guint32 *method_info_offsets;
119         guint32 *got_info_offsets;
120         guint32 *ex_info_offsets;
121         guint32 *class_info_offsets;
122         guint32 *methods_loaded;
123         guint16 *class_name_table;
124         guint32 *extra_method_table;
125         guint32 *extra_method_info_offsets;
126         guint32 *unbox_trampolines;
127         guint32 *unbox_trampolines_end;
128         guint8 *unwind_info;
129         guint8 *thumb_end;
130
131         /* Points to the mono EH data created by LLVM */
132         guint8 *mono_eh_frame;
133
134         /* Points to the trampolines */
135         guint8 *trampolines [MONO_AOT_TRAMP_NUM];
136         /* The first unused trampoline of each kind */
137         guint32 trampoline_index [MONO_AOT_TRAMP_NUM];
138
139         gboolean use_page_trampolines;
140
141         MonoAotFileInfo info;
142
143         gpointer *globals;
144         MonoDl *sofile;
145
146         JitInfoMap *async_jit_info_table;
147         mono_mutex_t mutex;
148 } MonoAotModule;
149
150 typedef struct {
151         void *next;
152         unsigned char *trampolines;
153         unsigned char *trampolines_end;
154 } TrampolinePage;
155
156 static GHashTable *aot_modules;
157 #define mono_aot_lock() mono_mutex_lock (&aot_mutex)
158 #define mono_aot_unlock() mono_mutex_unlock (&aot_mutex)
159 static mono_mutex_t aot_mutex;
160
161 /* 
162  * Maps assembly names to the mono_aot_module_<NAME>_info symbols in the
163  * AOT modules registered by mono_aot_register_module ().
164  */
165 static GHashTable *static_aot_modules;
166
167 /*
168  * Maps MonoJitInfo* to the aot module they belong to, this can be different
169  * from ji->method->klass->image's aot module for generic instances.
170  */
171 static GHashTable *ji_to_amodule;
172
173 /*
174  * Whenever to AOT compile loaded assemblies on demand and store them in
175  * a cache.
176  */
177 static gboolean enable_aot_cache = FALSE;
178
179 static gboolean mscorlib_aot_loaded;
180
181 /* For debugging */
182 static gint32 mono_last_aot_method = -1;
183
184 static gboolean make_unreadable = FALSE;
185 static guint32 name_table_accesses = 0;
186 static guint32 n_pagefaults = 0;
187
188 /* Used to speed-up find_aot_module () */
189 static gsize aot_code_low_addr = (gssize)-1;
190 static gsize aot_code_high_addr = 0;
191
192 /* Stats */
193 static gint32 async_jit_info_size;
194
195 static GHashTable *aot_jit_icall_hash;
196
197 #ifdef MONOTOUCH
198 #define USE_PAGE_TRAMPOLINES ((MonoAotModule*)mono_defaults.corlib->aot_module)->use_page_trampolines
199 #else
200 #define USE_PAGE_TRAMPOLINES 0
201 #endif
202
203 #define mono_aot_page_lock() mono_mutex_lock (&aot_page_mutex)
204 #define mono_aot_page_unlock() mono_mutex_unlock (&aot_page_mutex)
205 static mono_mutex_t aot_page_mutex;
206
207 static void
208 init_plt (MonoAotModule *info);
209
210 /*****************************************************/
211 /*                 AOT RUNTIME                       */
212 /*****************************************************/
213
214 static inline void
215 amodule_lock (MonoAotModule *amodule)
216 {
217         mono_mutex_lock (&amodule->mutex);
218 }
219
220 static inline void
221 amodule_unlock (MonoAotModule *amodule)
222 {
223         mono_mutex_unlock (&amodule->mutex);
224 }
225
226 /*
227  * load_image:
228  *
229  *   Load one of the images referenced by AMODULE. Returns NULL if the image is not
230  * found, and sets the loader error if SET_ERROR is TRUE.
231  */
232 static MonoImage *
233 load_image (MonoAotModule *amodule, int index, gboolean set_error)
234 {
235         MonoAssembly *assembly;
236         MonoImageOpenStatus status;
237
238         g_assert (index < amodule->image_table_len);
239
240         if (amodule->image_table [index])
241                 return amodule->image_table [index];
242         if (amodule->out_of_date)
243                 return NULL;
244
245         assembly = mono_assembly_load (&amodule->image_names [index], amodule->assembly->basedir, &status);
246         if (!assembly) {
247                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable because dependency %s is not found.\n", amodule->aot_name, amodule->image_names [index].name);
248                 amodule->out_of_date = TRUE;
249
250                 if (set_error) {
251                         char *full_name = mono_stringify_assembly_name (&amodule->image_names [index]);
252                         mono_loader_set_error_assembly_load (full_name, FALSE);
253                         g_free (full_name);
254                 }
255                 return NULL;
256         }
257
258         if (strcmp (assembly->image->guid, amodule->image_guids [index])) {
259                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').\n", amodule->aot_name, amodule->image_names [index].name, amodule->image_guids [index], assembly->image->guid);
260                 amodule->out_of_date = TRUE;
261                 return NULL;
262         }
263
264         amodule->image_table [index] = assembly->image;
265         return assembly->image;
266 }
267
268 static inline gint32
269 decode_value (guint8 *ptr, guint8 **rptr)
270 {
271         guint8 b = *ptr;
272         gint32 len;
273         
274         if ((b & 0x80) == 0){
275                 len = b;
276                 ++ptr;
277         } else if ((b & 0x40) == 0){
278                 len = ((b & 0x3f) << 8 | ptr [1]);
279                 ptr += 2;
280         } else if (b != 0xff) {
281                 len = ((b & 0x1f) << 24) |
282                         (ptr [1] << 16) |
283                         (ptr [2] << 8) |
284                         ptr [3];
285                 ptr += 4;
286         }
287         else {
288                 len = (ptr [1] << 24) | (ptr [2] << 16) | (ptr [3] << 8) | ptr [4];
289                 ptr += 5;
290         }
291         if (rptr)
292                 *rptr = ptr;
293
294         //printf ("DECODE: %d.\n", len);
295         return len;
296 }
297
298 /*
299  * mono_aot_get_offset:
300  *
301  *   Decode an offset table emitted by emit_offset_table (), returning the INDEXth
302  * entry.
303  */
304 static guint32
305 mono_aot_get_offset (guint32 *table, int index)
306 {
307         int i, group, ngroups, index_entry_size;
308         int start_offset, offset, noffsets, group_size;
309         guint8 *data_start, *p;
310         guint32 *index32 = NULL;
311         guint16 *index16 = NULL;
312         
313         noffsets = table [0];
314         group_size = table [1];
315         ngroups = table [2];
316         index_entry_size = table [3];
317         group = index / group_size;
318
319         if (index_entry_size == 2) {
320                 index16 = (guint16*)&table [4];
321                 data_start = (guint8*)&index16 [ngroups];
322                 p = data_start + index16 [group];
323         } else {
324                 index32 = (guint32*)&table [4];
325                 data_start = (guint8*)&index32 [ngroups];
326                 p = data_start + index32 [group];
327         }
328
329         /* offset will contain the value of offsets [group * group_size] */
330         offset = start_offset = decode_value (p, &p);
331         for (i = group * group_size + 1; i <= index; ++i) {
332                 offset += decode_value (p, &p);
333         }
334
335         //printf ("Offset lookup: %d -> %d, start=%d, p=%d\n", index, offset, start_offset, table [3 + group]);
336
337         return offset;
338 }
339
340 static MonoMethod*
341 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf);
342
343 static MonoClass*
344 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf);
345
346 static MonoType*
347 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf);
348
349 static MonoGenericInst*
350 decode_generic_inst (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
351 {
352         int type_argc, i;
353         MonoType **type_argv;
354         MonoGenericInst *inst;
355         guint8 *p = buf;
356
357         type_argc = decode_value (p, &p);
358         type_argv = g_new0 (MonoType*, type_argc);
359
360         for (i = 0; i < type_argc; ++i) {
361                 MonoClass *pclass = decode_klass_ref (module, p, &p);
362                 if (!pclass) {
363                         g_free (type_argv);
364                         return NULL;
365                 }
366                 type_argv [i] = &pclass->byval_arg;
367         }
368
369         inst = mono_metadata_get_generic_inst (type_argc, type_argv);
370         g_free (type_argv);
371
372         *endbuf = p;
373
374         return inst;
375 }
376
377 static gboolean
378 decode_generic_context (MonoAotModule *module, MonoGenericContext *ctx, guint8 *buf, guint8 **endbuf)
379 {
380         guint8 *p = buf;
381         guint8 *p2;
382         int argc;
383
384         p2 = p;
385         argc = decode_value (p, &p);
386         if (argc) {
387                 p = p2;
388                 ctx->class_inst = decode_generic_inst (module, p, &p);
389                 if (!ctx->class_inst)
390                         return FALSE;
391         }
392         p2 = p;
393         argc = decode_value (p, &p);
394         if (argc) {
395                 p = p2;
396                 ctx->method_inst = decode_generic_inst (module, p, &p);
397                 if (!ctx->method_inst)
398                         return FALSE;
399         }
400
401         *endbuf = p;
402         return TRUE;
403 }
404
405 static MonoClass*
406 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
407 {
408         MonoError error;
409         MonoImage *image;
410         MonoClass *klass = NULL, *eklass;
411         guint32 token, rank, idx;
412         guint8 *p = buf;
413         int reftype;
414
415         reftype = decode_value (p, &p);
416         if (reftype == 0) {
417                 *endbuf = p;
418                 return NULL;
419         }
420
421         switch (reftype) {
422         case MONO_AOT_TYPEREF_TYPEDEF_INDEX:
423                 idx = decode_value (p, &p);
424                 image = load_image (module, 0, TRUE);
425                 if (!image)
426                         return NULL;
427                 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, &error);
428                 g_assert (mono_error_ok (&error));
429                 break;
430         case MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE:
431                 idx = decode_value (p, &p);
432                 image = load_image (module, decode_value (p, &p), TRUE);
433                 if (!image)
434                         return NULL;
435                 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, &error);
436                 g_assert (mono_error_ok (&error));
437                 break;
438         case MONO_AOT_TYPEREF_TYPESPEC_TOKEN:
439                 token = decode_value (p, &p);
440                 image = module->assembly->image;
441                 if (!image)
442                         return NULL;
443                 klass = mono_class_get_checked (image, token, &error);
444                 g_assert (mono_error_ok (&error));
445                 break;
446         case MONO_AOT_TYPEREF_GINST: {
447                 MonoClass *gclass;
448                 MonoGenericContext ctx;
449                 MonoType *type;
450
451                 gclass = decode_klass_ref (module, p, &p);
452                 if (!gclass)
453                         return NULL;
454                 g_assert (gclass->generic_container);
455
456                 memset (&ctx, 0, sizeof (ctx));
457                 ctx.class_inst = decode_generic_inst (module, p, &p);
458                 if (!ctx.class_inst)
459                         return NULL;
460                 type = mono_class_inflate_generic_type (&gclass->byval_arg, &ctx);
461                 klass = mono_class_from_mono_type (type);
462                 mono_metadata_free_type (type);
463                 break;
464         }
465         case MONO_AOT_TYPEREF_VAR: {
466                 MonoType *t;
467                 MonoGenericContainer *container = NULL;
468                 int type = decode_value (p, &p);
469                 int num = decode_value (p, &p);
470                 gboolean has_container = decode_value (p, &p);
471                 int serial = 0;
472
473                 if (has_container) {
474                         gboolean is_method = decode_value (p, &p);
475                         
476                         if (is_method) {
477                                 MonoMethod *method_def;
478                                 g_assert (type == MONO_TYPE_MVAR);
479                                 method_def = decode_resolve_method_ref (module, p, &p);
480                                 if (!method_def)
481                                         return NULL;
482
483                                 container = mono_method_get_generic_container (method_def);
484                         } else {
485                                 MonoClass *class_def;
486                                 g_assert (type == MONO_TYPE_VAR);
487                                 class_def = decode_klass_ref (module, p, &p);
488                                 if (!class_def)
489                                         return NULL;
490
491                                 container = class_def->generic_container;
492                         }
493                 } else {
494                         serial = decode_value (p, &p);
495                 }
496
497                 t = g_new0 (MonoType, 1);
498                 t->type = type;
499                 if (container) {
500                         t->data.generic_param = mono_generic_container_get_param (container, num);
501                         g_assert (serial == 0);
502                 } else {
503                         /* Anonymous */
504                         MonoGenericParam *par = (MonoGenericParam*)mono_image_alloc0 (module->assembly->image, sizeof (MonoGenericParamFull));
505                         par->num = num;
506                         par->serial = serial;
507                         // FIXME:
508                         par->image = mono_defaults.corlib;
509                         t->data.generic_param = par;
510                 }
511
512                 // FIXME: Maybe use types directly to avoid
513                 // the overhead of creating MonoClass-es
514                 klass = mono_class_from_mono_type (t);
515
516                 g_free (t);
517                 break;
518         }
519         case MONO_AOT_TYPEREF_ARRAY:
520                 /* Array */
521                 rank = decode_value (p, &p);
522                 eklass = decode_klass_ref (module, p, &p);
523                 klass = mono_array_class_get (eklass, rank);
524                 break;
525         case MONO_AOT_TYPEREF_PTR: {
526                 MonoType *t;
527
528                 t = decode_type (module, p, &p);
529                 if (!t)
530                         return NULL;
531                 klass = mono_class_from_mono_type (t);
532                 g_free (t);
533                 break;
534         }
535         case MONO_AOT_TYPEREF_BLOB_INDEX: {
536                 guint32 offset = decode_value (p, &p);
537                 guint8 *p2;
538
539                 p2 = module->blob + offset;
540                 klass = decode_klass_ref (module, p2, &p2);
541                 break;
542         }
543         default:
544                 g_assert_not_reached ();
545         }
546         g_assert (klass);
547         //printf ("BLA: %s\n", mono_type_full_name (&klass->byval_arg));
548         *endbuf = p;
549         return klass;
550 }
551
552 static MonoClassField*
553 decode_field_info (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
554 {
555         MonoClass *klass = decode_klass_ref (module, buf, &buf);
556         guint32 token;
557         guint8 *p = buf;
558
559         if (!klass)
560                 return NULL;
561
562         token = MONO_TOKEN_FIELD_DEF + decode_value (p, &p);
563
564         *endbuf = p;
565
566         return mono_class_get_field (klass, token);
567 }
568
569 /*
570  * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
571  * memory.
572  */
573 static MonoType*
574 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
575 {
576         guint8 *p = buf;
577         MonoType *t;
578
579         t = g_malloc0 (sizeof (MonoType));
580
581         while (TRUE) {
582                 if (*p == MONO_TYPE_PINNED) {
583                         t->pinned = TRUE;
584                         ++p;
585                 } else if (*p == MONO_TYPE_BYREF) {
586                         t->byref = TRUE;
587                         ++p;
588                 } else {
589                         break;
590                 }
591         }
592
593         t->type = *p;
594         ++p;
595
596         switch (t->type) {
597         case MONO_TYPE_VOID:
598         case MONO_TYPE_BOOLEAN:
599         case MONO_TYPE_CHAR:
600         case MONO_TYPE_I1:
601         case MONO_TYPE_U1:
602         case MONO_TYPE_I2:
603         case MONO_TYPE_U2:
604         case MONO_TYPE_I4:
605         case MONO_TYPE_U4:
606         case MONO_TYPE_I8:
607         case MONO_TYPE_U8:
608         case MONO_TYPE_R4:
609         case MONO_TYPE_R8:
610         case MONO_TYPE_I:
611         case MONO_TYPE_U:
612         case MONO_TYPE_STRING:
613         case MONO_TYPE_OBJECT:
614         case MONO_TYPE_TYPEDBYREF:
615                 break;
616         case MONO_TYPE_VALUETYPE:
617         case MONO_TYPE_CLASS:
618                 t->data.klass = decode_klass_ref (module, p, &p);
619                 break;
620         case MONO_TYPE_SZARRAY:
621                 t->data.klass = decode_klass_ref (module, p, &p);
622
623                 if (!t->data.klass)
624                         return NULL;
625                 break;
626         case MONO_TYPE_PTR:
627                 t->data.type = decode_type (module, p, &p);
628                 break;
629         case MONO_TYPE_GENERICINST: {
630                 MonoClass *gclass;
631                 MonoGenericContext ctx;
632                 MonoType *type;
633                 MonoClass *klass;
634
635                 gclass = decode_klass_ref (module, p, &p);
636                 if (!gclass)
637                         return NULL;
638                 g_assert (gclass->generic_container);
639
640                 memset (&ctx, 0, sizeof (ctx));
641                 ctx.class_inst = decode_generic_inst (module, p, &p);
642                 if (!ctx.class_inst)
643                         return NULL;
644                 type = mono_class_inflate_generic_type (&gclass->byval_arg, &ctx);
645                 klass = mono_class_from_mono_type (type);
646                 t->data.generic_class = klass->generic_class;
647                 break;
648         }
649         case MONO_TYPE_ARRAY: {
650                 MonoArrayType *array;
651                 int i;
652
653                 // FIXME: memory management
654                 array = g_new0 (MonoArrayType, 1);
655                 array->eklass = decode_klass_ref (module, p, &p);
656                 if (!array->eklass)
657                         return NULL;
658                 array->rank = decode_value (p, &p);
659                 array->numsizes = decode_value (p, &p);
660
661                 if (array->numsizes)
662                         array->sizes = g_malloc0 (sizeof (int) * array->numsizes);
663                 for (i = 0; i < array->numsizes; ++i)
664                         array->sizes [i] = decode_value (p, &p);
665
666                 array->numlobounds = decode_value (p, &p);
667                 if (array->numlobounds)
668                         array->lobounds = g_malloc0 (sizeof (int) * array->numlobounds);
669                 for (i = 0; i < array->numlobounds; ++i)
670                         array->lobounds [i] = decode_value (p, &p);
671                 t->data.array = array;
672                 break;
673         }
674         case MONO_TYPE_VAR:
675         case MONO_TYPE_MVAR: {
676                 MonoClass *klass = decode_klass_ref (module, p, &p);
677                 if (!klass)
678                         return NULL;
679                 t->data.generic_param = klass->byval_arg.data.generic_param;
680                 break;
681         }
682         default:
683                 g_assert_not_reached ();
684         }
685
686         *endbuf = p;
687
688         return t;
689 }
690
691 // FIXME: Error handling, memory management
692
693 static MonoMethodSignature*
694 decode_signature_with_target (MonoAotModule *module, MonoMethodSignature *target, guint8 *buf, guint8 **endbuf)
695 {
696         MonoMethodSignature *sig;
697         guint32 flags;
698         int i, param_count, call_conv, gen_param_count = 0;
699         guint8 *p = buf;
700         gboolean hasthis, explicit_this, has_gen_params;
701
702         flags = *p;
703         p ++;
704         has_gen_params = (flags & 0x10) != 0;
705         hasthis = (flags & 0x20) != 0;
706         explicit_this = (flags & 0x40) != 0;
707         call_conv = flags & 0x0F;
708
709         if (has_gen_params)
710                 gen_param_count = decode_value (p, &p);
711         param_count = decode_value (p, &p);
712         if (target && param_count != target->param_count)
713                 return NULL;
714         sig = g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE + param_count * sizeof (MonoType *));
715         sig->param_count = param_count;
716         sig->sentinelpos = -1;
717         sig->hasthis = hasthis;
718         sig->explicit_this = explicit_this;
719         sig->call_convention = call_conv;
720         sig->param_count = param_count;
721         sig->ret = decode_type (module, p, &p);
722         for (i = 0; i < param_count; ++i) {
723                 if (*p == MONO_TYPE_SENTINEL) {
724                         g_assert (sig->call_convention == MONO_CALL_VARARG);
725                         sig->sentinelpos = i;
726                         p ++;
727                 }
728                 sig->params [i] = decode_type (module, p, &p);
729         }
730
731         if (sig->call_convention == MONO_CALL_VARARG && sig->sentinelpos == -1)
732                 sig->sentinelpos = sig->param_count;
733
734         *endbuf = p;
735
736         return sig;
737 }
738
739 static MonoMethodSignature*
740 decode_signature (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
741 {
742         return decode_signature_with_target (module, NULL, buf, endbuf);
743 }
744
745 static gboolean
746 sig_matches_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf)
747 {
748         MonoMethodSignature *sig;
749         gboolean res;
750         guint8 *p = buf;
751         
752         sig = decode_signature_with_target (module, mono_method_signature (target), p, &p);
753         res = sig && mono_metadata_signature_equal (mono_method_signature (target), sig);
754         g_free (sig);
755         *endbuf = p;
756         return res;
757 }
758
759 /* Stores information returned by decode_method_ref () */
760 typedef struct {
761         MonoImage *image;
762         guint32 token;
763         MonoMethod *method;
764         gboolean no_aot_trampoline;
765 } MethodRef;
766
767 /*
768  * decode_method_ref_with_target:
769  *
770  *   Decode a method reference, storing the image/token into a MethodRef structure.
771  * This avoids loading metadata for the method if the caller does not need it. If the method has
772  * no token, then it is loaded from metadata and ref->method is set to the method instance.
773  * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
774  *  couldn't resolve to TARGET, and return FALSE.
775  * There are some kinds of method references which only support a non-null TARGET.
776  * This means that its not possible to decode this into a method, only to check
777  * that the method reference matches a given method. This is normally not a problem
778  * as these wrappers only occur in the extra_methods table, where we already have
779  * a method we want to lookup.
780  */
781 static gboolean
782 decode_method_ref_with_target (MonoAotModule *module, MethodRef *ref, MonoMethod *target, guint8 *buf, guint8 **endbuf)
783 {
784         guint32 image_index, value;
785         MonoImage *image = NULL;
786         guint8 *p = buf;
787
788         memset (ref, 0, sizeof (MethodRef));
789
790         value = decode_value (p, &p);
791         image_index = value >> 24;
792
793         if (image_index == MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE) {
794                 ref->no_aot_trampoline = TRUE;
795                 value = decode_value (p, &p);
796                 image_index = value >> 24;
797         }
798
799         if (image_index < MONO_AOT_METHODREF_MIN || image_index == MONO_AOT_METHODREF_METHODSPEC || image_index == MONO_AOT_METHODREF_GINST) {
800                 if (target && target->wrapper_type)
801                         return FALSE;
802         }
803
804         if (image_index == MONO_AOT_METHODREF_WRAPPER) {
805                 guint32 wrapper_type;
806
807                 wrapper_type = decode_value (p, &p);
808
809                 if (target && target->wrapper_type != wrapper_type)
810                         return FALSE;
811
812                 /* Doesn't matter */
813                 image = mono_defaults.corlib;
814
815                 switch (wrapper_type) {
816 #ifndef DISABLE_REMOTING
817                 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK: {
818                         MonoMethod *m = decode_resolve_method_ref (module, p, &p);
819
820                         if (!m)
821                                 return FALSE;
822                         mono_class_init (m->klass);
823                         ref->method = mono_marshal_get_remoting_invoke_with_check (m);
824                         break;
825                 }
826                 case MONO_WRAPPER_PROXY_ISINST: {
827                         MonoClass *klass = decode_klass_ref (module, p, &p);
828                         if (!klass)
829                                 return FALSE;
830                         ref->method = mono_marshal_get_proxy_cancast (klass);
831                         break;
832                 }
833                 case MONO_WRAPPER_LDFLD:
834                 case MONO_WRAPPER_LDFLDA:
835                 case MONO_WRAPPER_STFLD:
836                 case MONO_WRAPPER_ISINST: {
837                         MonoClass *klass = decode_klass_ref (module, p, &p);
838                         if (!klass)
839                                 return FALSE;
840                         if (wrapper_type == MONO_WRAPPER_LDFLD)
841                                 ref->method = mono_marshal_get_ldfld_wrapper (&klass->byval_arg);
842                         else if (wrapper_type == MONO_WRAPPER_LDFLDA)
843                                 ref->method = mono_marshal_get_ldflda_wrapper (&klass->byval_arg);
844                         else if (wrapper_type == MONO_WRAPPER_STFLD)
845                                 ref->method = mono_marshal_get_stfld_wrapper (&klass->byval_arg);
846                         else if (wrapper_type == MONO_WRAPPER_ISINST)
847                                 ref->method = mono_marshal_get_isinst (klass);
848                         else
849                                 g_assert_not_reached ();
850                         break;
851                 }
852                 case MONO_WRAPPER_LDFLD_REMOTE:
853                         ref->method = mono_marshal_get_ldfld_remote_wrapper (NULL);
854                         break;
855                 case MONO_WRAPPER_STFLD_REMOTE:
856                         ref->method = mono_marshal_get_stfld_remote_wrapper (NULL);
857                         break;
858 #endif
859                 case MONO_WRAPPER_ALLOC: {
860                         int atype = decode_value (p, &p);
861
862                         ref->method = mono_gc_get_managed_allocator_by_type (atype);
863                         g_assert (ref->method);
864                         break;
865                 }
866                 case MONO_WRAPPER_WRITE_BARRIER:
867                         ref->method = mono_gc_get_write_barrier ();
868                         break;
869                 case MONO_WRAPPER_STELEMREF: {
870                         int subtype = decode_value (p, &p);
871
872                         if (subtype == WRAPPER_SUBTYPE_NONE) {
873                                 ref->method = mono_marshal_get_stelemref ();
874                         } else if (subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF) {
875                                 int kind;
876                                 WrapperInfo *info;
877                                 
878                                 kind = decode_value (p, &p);
879
880                                 /* Can't decode this */
881                                 if (!target)
882                                         return FALSE;
883                                 if (target->wrapper_type == MONO_WRAPPER_STELEMREF) {
884                                         info = mono_marshal_get_wrapper_info (target);
885
886                                         g_assert (info);
887                                         if (info->subtype == subtype && info->d.virtual_stelemref.kind == kind)
888                                                 ref->method = target;
889                                         else
890                                                 return FALSE;
891                                 } else {
892                                         return FALSE;
893                                 }
894                         } else {
895                                 g_assert_not_reached ();
896                         }
897                         break;
898                 }
899                 case MONO_WRAPPER_SYNCHRONIZED: {
900                         MonoMethod *m = decode_resolve_method_ref (module, p, &p);
901
902                         if (!m)
903                                 return FALSE;
904                         ref->method = mono_marshal_get_synchronized_wrapper (m);
905                         break;
906                 }
907                 case MONO_WRAPPER_UNKNOWN: {
908                         MonoMethodDesc *desc;
909                         MonoMethod *orig_method;
910                         int subtype = decode_value (p, &p);
911
912                         if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE || subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR) {
913                                 MonoClass *klass = decode_klass_ref (module, p, &p);
914                                 
915                                 if (!klass)
916                                         return FALSE;
917
918                                 if (!target)
919                                         return FALSE;
920                                 if (klass != target->klass)
921                                         return FALSE;
922
923                                 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE) {
924                                         if (strcmp (target->name, "PtrToStructure"))
925                                                 return FALSE;
926                                         ref->method = mono_marshal_get_ptr_to_struct (klass);
927                                 } else {
928                                         if (strcmp (target->name, "StructureToPtr"))
929                                                 return FALSE;
930                                         ref->method = mono_marshal_get_struct_to_ptr (klass);
931                                 }
932                         } else if (subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER) {
933                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p);
934
935                                 if (!m)
936                                         return FALSE;
937                                 ref->method = mono_marshal_get_synchronized_inner_wrapper (m);
938                         } else if (subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
939                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p);
940
941                                 if (!m)
942                                         return FALSE;
943                                 ref->method = mono_marshal_get_array_accessor_wrapper (m);
944                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN) {
945                                 ref->method = mono_marshal_get_gsharedvt_in_wrapper ();
946                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT) {
947                                 ref->method = mono_marshal_get_gsharedvt_out_wrapper ();
948                         } else {
949                                 if (subtype == WRAPPER_SUBTYPE_FAST_MONITOR_ENTER)
950                                         desc = mono_method_desc_new ("Monitor:Enter", FALSE);
951                                 else if (subtype == WRAPPER_SUBTYPE_FAST_MONITOR_EXIT)
952                                         desc = mono_method_desc_new ("Monitor:Exit", FALSE);
953                                 else if (subtype == WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4)
954                                         desc = mono_method_desc_new ("Monitor:Enter(object,bool&)", FALSE);
955                                 else
956                                         g_assert_not_reached ();
957                                 orig_method = mono_method_desc_search_in_class (desc, mono_defaults.monitor_class);
958                                 g_assert (orig_method);
959                                 mono_method_desc_free (desc);
960                                 ref->method = mono_monitor_get_fast_path (orig_method);
961                         }
962                         break;
963                 }
964                 case MONO_WRAPPER_MANAGED_TO_MANAGED: {
965                         int subtype = decode_value (p, &p);
966
967                         if (subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
968                                 int rank = decode_value (p, &p);
969                                 int elem_size = decode_value (p, &p);
970
971                                 ref->method = mono_marshal_get_array_address (rank, elem_size);
972                         } else if (subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
973                                 WrapperInfo *info;
974                                 MonoMethod *m;
975
976                                 m = decode_resolve_method_ref (module, p, &p);
977                                 if (!m)
978                                         return FALSE;
979
980                                 if (!target)
981                                         return FALSE;
982                                 g_assert (target->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED);
983
984                                 info = mono_marshal_get_wrapper_info (target);
985                                 if (info && info->subtype == subtype && info->d.string_ctor.method == m)
986                                         ref->method = target;
987                                 else
988                                         return FALSE;
989                         }
990                         break;
991                 }
992                 case MONO_WRAPPER_MANAGED_TO_NATIVE: {
993                         MonoMethod *m;
994                         int subtype = decode_value (p, &p);
995                         char *name;
996
997                         if (subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
998                                 if (!target)
999                                         return FALSE;
1000
1001                                 name = (char*)p;
1002                                 if (strcmp (target->name, name) != 0)
1003                                         return FALSE;
1004                                 ref->method = target;
1005                         } else {
1006                                 m = decode_resolve_method_ref (module, p, &p);
1007
1008                                 if (!m)
1009                                         return FALSE;
1010
1011                                 /* This should only happen when looking for an extra method */
1012                                 if (!target)
1013                                         return FALSE;
1014                                 if (mono_marshal_method_from_wrapper (target) == m)
1015                                         ref->method = target;
1016                                 else
1017                                         return FALSE;
1018                         }
1019                         break;
1020                 }
1021                 case MONO_WRAPPER_CASTCLASS: {
1022                         int subtype = decode_value (p, &p);
1023
1024                         if (subtype == WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE)
1025                                 ref->method = mono_marshal_get_castclass_with_cache ();
1026                         else if (subtype == WRAPPER_SUBTYPE_ISINST_WITH_CACHE)
1027                                 ref->method = mono_marshal_get_isinst_with_cache ();
1028                         else
1029                                 g_assert_not_reached ();
1030                         break;
1031                 }
1032                 case MONO_WRAPPER_RUNTIME_INVOKE: {
1033                         int subtype = decode_value (p, &p);
1034
1035                         if (!target)
1036                                 return FALSE;
1037
1038                         if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC) {
1039                                 if (strcmp (target->name, "runtime_invoke_dynamic") != 0)
1040                                         return FALSE;
1041                                 ref->method = target;
1042                         } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT) {
1043                                 /* Direct wrapper */
1044                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p);
1045
1046                                 if (!m)
1047                                         return FALSE;
1048                                 ref->method = mono_marshal_get_runtime_invoke (m, FALSE);
1049                         } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL) {
1050                                 /* Virtual direct wrapper */
1051                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p);
1052
1053                                 if (!m)
1054                                         return FALSE;
1055                                 ref->method = mono_marshal_get_runtime_invoke (m, TRUE);
1056                         } else {
1057                                 MonoMethodSignature *sig;
1058                                 WrapperInfo *info;
1059
1060                                 sig = decode_signature_with_target (module, NULL, p, &p);
1061                                 info = mono_marshal_get_wrapper_info (target);
1062                                 g_assert (info);
1063
1064                                 if (info->subtype != subtype)
1065                                         return FALSE;
1066                                 g_assert (info->d.runtime_invoke.sig);
1067                                 if (mono_metadata_signature_equal (sig, info->d.runtime_invoke.sig))
1068                                         ref->method = target;
1069                                 else
1070                                         return FALSE;
1071                         }
1072                         break;
1073                 }
1074                 case MONO_WRAPPER_DELEGATE_INVOKE:
1075                 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1076                 case MONO_WRAPPER_DELEGATE_END_INVOKE: {
1077                         gboolean is_inflated = decode_value (p, &p);
1078                         WrapperSubtype subtype;
1079
1080                         if (is_inflated) {
1081                                 MonoClass *klass;
1082                                 MonoMethod *invoke, *wrapper;
1083
1084                                 klass = decode_klass_ref (module, p, &p);
1085                                 if (!klass)
1086                                         return FALSE;
1087
1088                                 switch (wrapper_type) {
1089                                 case MONO_WRAPPER_DELEGATE_INVOKE:
1090                                         invoke = mono_get_delegate_invoke (klass);
1091                                         wrapper = mono_marshal_get_delegate_invoke (invoke, NULL);
1092                                         break;
1093                                 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1094                                         invoke = mono_get_delegate_begin_invoke (klass);
1095                                         wrapper = mono_marshal_get_delegate_begin_invoke (invoke);
1096                                         break;
1097                                 case MONO_WRAPPER_DELEGATE_END_INVOKE:
1098                                         invoke = mono_get_delegate_end_invoke (klass);
1099                                         wrapper = mono_marshal_get_delegate_end_invoke (invoke);
1100                                         break;
1101                                 default:
1102                                         g_assert_not_reached ();
1103                                         break;
1104                                 }
1105                                 if (target && wrapper != target)
1106                                         return FALSE;
1107                                 ref->method = wrapper;
1108                         } else {
1109                                 /*
1110                                  * These wrappers are associated with a signature, not with a method.
1111                                  * Since we can't decode them into methods, they need a target method.
1112                                  */
1113                                 if (!target)
1114                                         return FALSE;
1115
1116                                 if (wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE) {
1117                                         WrapperInfo *info;
1118
1119                                         subtype = decode_value (p, &p);
1120                                         info = mono_marshal_get_wrapper_info (target);
1121                                         if (info) {
1122                                                 if (info->subtype != subtype)
1123                                                         return FALSE;
1124                                         } else {
1125                                                 if (subtype != WRAPPER_SUBTYPE_NONE)
1126                                                         return FALSE;
1127                                         }
1128                                 }
1129                                 if (sig_matches_target (module, target, p, &p))
1130                                         ref->method = target;
1131                                 else
1132                                         return FALSE;
1133                         }
1134                         break;
1135                 }
1136                 case MONO_WRAPPER_NATIVE_TO_MANAGED: {
1137                         MonoMethod *m;
1138                         MonoClass *klass;
1139
1140                         m = decode_resolve_method_ref (module, p, &p);
1141                         if (!m)
1142                                 return FALSE;
1143                         klass = decode_klass_ref (module, p, &p);
1144                         if (!klass)
1145                                 return FALSE;
1146                         ref->method = mono_marshal_get_managed_wrapper (m, klass, 0);
1147                         break;
1148                 }
1149                 default:
1150                         g_assert_not_reached ();
1151                 }
1152         } else if (image_index == MONO_AOT_METHODREF_METHODSPEC) {
1153                 image_index = decode_value (p, &p);
1154                 ref->token = decode_value (p, &p);
1155
1156                 image = load_image (module, image_index, TRUE);
1157                 if (!image)
1158                         return FALSE;
1159         } else if (image_index == MONO_AOT_METHODREF_GINST) {
1160                 MonoClass *klass;
1161                 MonoGenericContext ctx;
1162
1163                 /* 
1164                  * These methods do not have a token which resolves them, so we 
1165                  * resolve them immediately.
1166                  */
1167                 klass = decode_klass_ref (module, p, &p);
1168                 if (!klass)
1169                         return FALSE;
1170
1171                 if (target && target->klass != klass)
1172                         return FALSE;
1173
1174                 image_index = decode_value (p, &p);
1175                 ref->token = decode_value (p, &p);
1176
1177                 image = load_image (module, image_index, TRUE);
1178                 if (!image)
1179                         return FALSE;
1180
1181                 ref->method = mono_get_method_full (image, ref->token, NULL, NULL);
1182                 if (!ref->method)
1183                         return FALSE;
1184
1185                 memset (&ctx, 0, sizeof (ctx));
1186
1187                 if (FALSE && klass->generic_class) {
1188                         ctx.class_inst = klass->generic_class->context.class_inst;
1189                         ctx.method_inst = NULL;
1190  
1191                         ref->method = mono_class_inflate_generic_method_full (ref->method, klass, &ctx);
1192                 }                       
1193
1194                 memset (&ctx, 0, sizeof (ctx));
1195
1196                 if (!decode_generic_context (module, &ctx, p, &p))
1197                         return FALSE;
1198
1199                 ref->method = mono_class_inflate_generic_method_full (ref->method, klass, &ctx);
1200         } else if (image_index == MONO_AOT_METHODREF_ARRAY) {
1201                 MonoClass *klass;
1202                 int method_type;
1203
1204                 klass = decode_klass_ref (module, p, &p);
1205                 if (!klass)
1206                         return FALSE;
1207                 method_type = decode_value (p, &p);
1208                 switch (method_type) {
1209                 case 0:
1210                         ref->method = mono_class_get_method_from_name (klass, ".ctor", klass->rank);
1211                         break;
1212                 case 1:
1213                         ref->method = mono_class_get_method_from_name (klass, ".ctor", klass->rank * 2);
1214                         break;
1215                 case 2:
1216                         ref->method = mono_class_get_method_from_name (klass, "Get", -1);
1217                         break;
1218                 case 3:
1219                         ref->method = mono_class_get_method_from_name (klass, "Address", -1);
1220                         break;
1221                 case 4:
1222                         ref->method = mono_class_get_method_from_name (klass, "Set", -1);
1223                         break;
1224                 default:
1225                         g_assert_not_reached ();
1226                 }
1227         } else {
1228                 if (image_index == MONO_AOT_METHODREF_LARGE_IMAGE_INDEX) {
1229                         image_index = decode_value (p, &p);
1230                         value = decode_value (p, &p);
1231                 }
1232
1233                 ref->token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
1234
1235                 image = load_image (module, image_index, TRUE);
1236                 if (!image)
1237                         return FALSE;
1238         }
1239
1240         *endbuf = p;
1241
1242         ref->image = image;
1243
1244         return TRUE;
1245 }
1246
1247 static gboolean
1248 decode_method_ref (MonoAotModule *module, MethodRef *ref, guint8 *buf, guint8 **endbuf)
1249 {
1250         return decode_method_ref_with_target (module, ref, NULL, buf, endbuf);
1251 }
1252
1253 /*
1254  * decode_resolve_method_ref_with_target:
1255  *
1256  *   Similar to decode_method_ref, but resolve and return the method itself.
1257  */
1258 static MonoMethod*
1259 decode_resolve_method_ref_with_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf)
1260 {
1261         MethodRef ref;
1262         gboolean res;
1263
1264         res = decode_method_ref_with_target (module, &ref, target, buf, endbuf);
1265         if (!res)
1266                 return NULL;
1267         if (ref.method)
1268                 return ref.method;
1269         if (!ref.image)
1270                 return NULL;
1271         return mono_get_method (ref.image, ref.token, NULL);
1272 }
1273
1274 static MonoMethod*
1275 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
1276 {
1277         return decode_resolve_method_ref_with_target (module, NULL, buf, endbuf);
1278 }
1279
1280 #ifdef ENABLE_AOT_CACHE
1281
1282 /* AOT CACHE */
1283
1284 /*
1285  * FIXME:
1286  * - Add options for controlling the cache size
1287  * - Handle full cache by deleting old assemblies lru style
1288  * - Maybe add a threshold after an assembly is AOT compiled
1289  * - Add options for enabling this for specific main assemblies
1290  */
1291
1292 /* The cache directory */
1293 static char *cache_dir;
1294
1295 /* The number of assemblies AOTed in this run */
1296 static int cache_count;
1297
1298 /* Whenever to AOT in-process */
1299 static gboolean in_process;
1300
1301 static void
1302 collect_assemblies (gpointer data, gpointer user_data)
1303 {
1304         MonoAssembly *ass = data;
1305         GSList **l = user_data;
1306
1307         *l = g_slist_prepend (*l, ass);
1308 }
1309
1310 #define SHA1_DIGEST_LENGTH 20
1311
1312 /*
1313  * get_aot_config_hash:
1314  *
1315  *   Return a hash for all the version information an AOT module depends on.
1316  */
1317 static G_GNUC_UNUSED char*
1318 get_aot_config_hash (MonoAssembly *assembly)
1319 {
1320         char *build_info;
1321         GSList *l, *assembly_list = NULL;
1322         GString *s;
1323         int i;
1324         guint8 digest [SHA1_DIGEST_LENGTH];
1325         char *digest_str;
1326
1327         build_info = mono_get_runtime_build_info ();
1328
1329         s = g_string_new (build_info);
1330
1331         mono_assembly_foreach (collect_assemblies, &assembly_list);
1332
1333         /*
1334          * The assembly list includes the current assembly as well, no need
1335          * to add it.
1336          */
1337         for (l = assembly_list; l; l = l->next) {
1338                 MonoAssembly *ass = l->data;
1339
1340                 g_string_append (s, "_");
1341                 g_string_append (s, ass->aname.name);
1342                 g_string_append (s, "_");
1343                 g_string_append (s, ass->image->guid);
1344         }
1345
1346         for (i = 0; i < s->len; ++i) {
1347                 if (!isalnum (s->str [i]) && s->str [i] != '-')
1348                         s->str [i] = '_';
1349         }
1350
1351         mono_sha1_get_digest ((guint8*)s->str, s->len, digest);
1352
1353         digest_str = g_malloc0 ((SHA1_DIGEST_LENGTH * 2) + 1);
1354         for (i = 0; i < SHA1_DIGEST_LENGTH; ++i)
1355                 sprintf (digest_str + (i * 2), "%02x", digest [i]);
1356
1357         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: file dependencies: %s, hash %s", s->str, digest_str);
1358
1359         g_string_free (s, TRUE);
1360
1361         return digest_str;
1362 }
1363
1364 static void
1365 aot_cache_init (void)
1366 {
1367         if (mono_aot_only)
1368                 return;
1369         enable_aot_cache = TRUE;
1370         in_process = TRUE;
1371 }
1372
1373 /*
1374  * aot_cache_load_module:
1375  *
1376  *   Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1377  */
1378 static MonoDl*
1379 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1380 {
1381         MonoAotCacheConfig *config;
1382         GSList *l;
1383         char *fname, *tmp2, *aot_options, *failure_fname;
1384         const char *home;
1385         MonoDl *module;
1386         gboolean res;
1387         gint exit_status;
1388         char *hash;
1389         int pid;
1390         gboolean enabled;
1391         FILE *failure_file;
1392
1393         *aot_name = NULL;
1394
1395         if (image_is_dynamic (assembly->image))
1396                 return NULL;
1397
1398         /* Check in the list of assemblies enabled for aot caching */
1399         config = mono_get_aot_cache_config ();
1400
1401         enabled = FALSE;
1402         if (config->apps) {
1403                 MonoDomain *domain = mono_domain_get ();
1404                 MonoAssembly *entry_assembly = domain->entry_assembly;
1405
1406                 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1407                 for (l = config->apps; l; l = l->next) {
1408                         char *n = l->data;
1409
1410                         if ((entry_assembly && !strcmp (entry_assembly->aname.name, n)) || (!entry_assembly && !strcmp (assembly->aname.name, n)))
1411                                 break;
1412                 }
1413                 if (l)
1414                         enabled = TRUE;
1415         }
1416
1417         if (!enabled) {
1418                 for (l = config->assemblies; l; l = l->next) {
1419                         char *n = l->data;
1420
1421                         if (!strcmp (assembly->aname.name, n))
1422                                 break;
1423                 }
1424                 if (l)
1425                         enabled = TRUE;
1426         }
1427         if (!enabled)
1428                 return NULL;
1429
1430         if (!cache_dir) {
1431                 home = g_get_home_dir ();
1432                 if (!home)
1433                         return NULL;
1434                 cache_dir = g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home);
1435                 if (!g_file_test (cache_dir, G_FILE_TEST_EXISTS|G_FILE_TEST_IS_DIR))
1436                         g_mkdir_with_parents (cache_dir, 0777);
1437         }
1438
1439         /*
1440          * The same assembly can be used in multiple configurations, i.e. multiple
1441      * versions of the runtime, with multiple versions of dependent assemblies etc.
1442          * To handle this, we compute a version string containing all this information, hash it,
1443          * and use the hash as a filename suffix.
1444          */
1445         hash = get_aot_config_hash (assembly);
1446
1447         tmp2 = g_strdup_printf ("%s-%s%s", assembly->image->assembly_name, hash, SHARED_EXT);
1448         fname = g_build_filename (cache_dir, tmp2, NULL);
1449         *aot_name = fname;
1450         g_free (tmp2);
1451
1452         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loading from cache: '%s'.", fname);
1453         module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1454
1455         if (module) {
1456                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: found in cache: '%s'.", fname);
1457                 return module;
1458         }
1459
1460         if (!strcmp (assembly->aname.name, "mscorlib") && !mscorlib_aot_loaded)
1461                 /*
1462                  * Can't AOT this during startup, so we AOT it when called later from
1463                  * mono_aot_get_method ().
1464                  */
1465                 return NULL;
1466
1467         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: not found.");
1468
1469         /* Only AOT one assembly per run to avoid slowing down execution too much */
1470         if (cache_count > 0)
1471                 return NULL;
1472         cache_count ++;
1473
1474         /* Check for previous failure */
1475         failure_fname = g_strdup_printf ("%s.failure", fname);
1476         failure_file = fopen (failure_fname, "r");
1477         if (failure_file) {
1478                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly->image->name, fname, failure_fname);
1479                 g_free (failure_fname);
1480                 return NULL;
1481         } else {
1482                 g_free (failure_fname);
1483                 fclose (failure_file);
1484         }
1485
1486         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly->image->name, fname);
1487
1488         /*
1489          * We need to invoke the AOT compiler here. There are multiple approaches:
1490          * - spawn a new runtime process. This can be hard when running with mkbundle, and
1491          * its hard to make the new process load the same set of assemblies.
1492          * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1493          * the AOT compiler.
1494          * - fork a new process and do the work there.
1495          */
1496         if (in_process) {
1497                 aot_options = g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname, fname, config->aot_options ? "," : "", config->aot_options ? config->aot_options : "");
1498                 /* Maybe due this in another thread ? */
1499                 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options);
1500                 if (res) {
1501                         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation failed.");
1502                         failure_fname = g_strdup_printf ("%s.failure", fname);
1503                         failure_file = fopen (failure_fname, "a+");
1504                         fclose (failure_file);
1505                         g_free (failure_fname);
1506                 } else {
1507                         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation succeeded.");
1508                 }
1509         } else {
1510                 /*
1511                  * - Avoid waiting for the aot process to finish ?
1512                  *   (less overhead, but multiple processes could aot the same assembly at the same time)
1513                  */
1514                 pid = fork ();
1515                 if (pid == 0) {
1516                         FILE *logfile;
1517                         char *logfile_name;
1518
1519                         /* Child */
1520
1521                         logfile_name = g_strdup_printf ("%s/aot.log", cache_dir);
1522                         logfile = fopen (logfile_name, "a+");
1523                         g_free (logfile_name);
1524
1525                         dup2 (fileno (logfile), 1);
1526                         dup2 (fileno (logfile), 2);
1527
1528                         aot_options = g_strdup_printf ("outfile=%s", fname);
1529                         res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options);
1530                         if (!res) {
1531                                 exit (1);
1532                         } else {
1533                                 exit (0);
1534                         }
1535                 } else {
1536                         /* Parent */
1537                         waitpid (pid, &exit_status, 0);
1538                         if (!WIFEXITED (exit_status) && (WEXITSTATUS (exit_status) == 0))
1539                                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: failed.");
1540                         else
1541                                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: succeeded.");
1542                 }
1543         }
1544
1545         module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1546
1547         return module;
1548 }
1549
1550 #else
1551
1552 static void
1553 aot_cache_init (void)
1554 {
1555 }
1556
1557 static MonoDl*
1558 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1559 {
1560         return NULL;
1561 }
1562
1563 #endif
1564
1565 static void
1566 find_symbol (MonoDl *module, gpointer *globals, const char *name, gpointer *value)
1567 {
1568         if (globals) {
1569                 int global_index;
1570                 guint16 *table, *entry;
1571                 guint16 table_size;
1572                 guint32 hash;           
1573                 char *symbol = (char*)name;
1574
1575 #ifdef TARGET_MACH
1576                 symbol = g_strdup_printf ("_%s", name);
1577 #endif
1578
1579                 /* The first entry points to the hash */
1580                 table = globals [0];
1581                 globals ++;
1582
1583                 table_size = table [0];
1584                 table ++;
1585
1586                 hash = mono_metadata_str_hash (symbol) % table_size;
1587
1588                 entry = &table [hash * 2];
1589
1590                 /* Search the hash for the index into the globals table */
1591                 global_index = -1;
1592                 while (entry [0] != 0) {
1593                         guint32 index = entry [0] - 1;
1594                         guint32 next = entry [1];
1595
1596                         //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1597
1598                         if (!strcmp (globals [index * 2], symbol)) {
1599                                 global_index = index;
1600                                 break;
1601                         }
1602
1603                         if (next != 0) {
1604                                 entry = &table [next * 2];
1605                         } else {
1606                                 break;
1607                         }
1608                 }
1609
1610                 if (global_index != -1)
1611                         *value = globals [global_index * 2 + 1];
1612                 else
1613                         *value = NULL;
1614
1615                 if (symbol != name)
1616                         g_free (symbol);
1617         } else {
1618                 char *err = mono_dl_symbol (module, name, value);
1619
1620                 if (err)
1621                         g_free (err);
1622         }
1623 }
1624
1625 static gboolean
1626 check_usable (MonoAssembly *assembly, MonoAotFileInfo *info, char **out_msg)
1627 {
1628         char *build_info;
1629         char *msg = NULL;
1630         gboolean usable = TRUE;
1631         gboolean full_aot;
1632         guint8 *blob;
1633         guint32 excluded_cpu_optimizations;
1634
1635         if (strcmp (assembly->image->guid, info->assembly_guid)) {
1636                 msg = g_strdup_printf ("doesn't match assembly");
1637                 usable = FALSE;
1638         }
1639
1640         build_info = mono_get_runtime_build_info ();
1641         if (strlen (info->runtime_version) > 0 && strcmp (info->runtime_version, build_info)) {
1642                 msg = g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info->runtime_version, build_info);
1643                 usable = FALSE;
1644         }
1645         g_free (build_info);
1646
1647         full_aot = info->flags & MONO_AOT_FILE_FLAG_FULL_AOT;
1648
1649         if (mono_aot_only && !full_aot) {
1650                 msg = g_strdup_printf ("not compiled with --aot=full");
1651                 usable = FALSE;
1652         }
1653         if (!mono_aot_only && full_aot) {
1654                 msg = g_strdup_printf ("compiled with --aot=full");
1655                 usable = FALSE;
1656         }
1657 #ifdef TARGET_ARM
1658         /* mono_arch_find_imt_method () requires this */
1659         if ((info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM) && !mono_use_llvm) {
1660                 msg = g_strdup_printf ("compiled against LLVM");
1661                 usable = FALSE;
1662         }
1663         if (!(info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM) && mono_use_llvm) {
1664                 msg = g_strdup_printf ("not compiled against LLVM");
1665                 usable = FALSE;
1666         }
1667 #endif
1668         if (mini_get_debug_options ()->mdb_optimizations && !(info->flags & MONO_AOT_FILE_FLAG_DEBUG) && !full_aot) {
1669                 msg = g_strdup_printf ("not compiled for debugging");
1670                 usable = FALSE;
1671         }
1672
1673         mono_arch_cpu_optimizations (&excluded_cpu_optimizations);
1674         if (info->opts & excluded_cpu_optimizations) {
1675                 msg = g_strdup_printf ("compiled with unsupported CPU optimizations");
1676                 usable = FALSE;
1677         }
1678
1679         if (!mono_aot_only && (info->simd_opts & ~mono_arch_cpu_enumerate_simd_versions ())) {
1680                 msg = g_strdup_printf ("compiled with unsupported SIMD extensions");
1681                 usable = FALSE;
1682         }
1683
1684         blob = info->blob;
1685
1686         if (info->gc_name_index != -1) {
1687                 char *gc_name = (char*)&blob [info->gc_name_index];
1688                 const char *current_gc_name = mono_gc_get_gc_name ();
1689
1690                 if (strcmp (current_gc_name, gc_name) != 0) {
1691                         msg = g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name, current_gc_name);
1692                         usable = FALSE;
1693                 }
1694         }
1695
1696         *out_msg = msg;
1697         return usable;
1698 }
1699
1700 /* This returns an interop address */
1701 static void*
1702 get_arm_bl_target (guint32 *ins_addr)
1703 {
1704 #ifdef TARGET_ARM
1705         guint32 ins = *ins_addr;
1706         gint32 offset;
1707
1708         if ((ins >> ARMCOND_SHIFT) == ARMCOND_NV) {
1709                 /* blx */
1710                 offset = (((int)(((ins & 0xffffff) << 1) | ((ins >> 24) & 0x1))) << 7) >> 7;
1711                 return (char*)ins_addr + (offset * 2) + 8 + 1;
1712         } else {
1713                 offset = (((int)ins & 0xffffff) << 8) >> 8;
1714                 return (char*)ins_addr + (offset * 4) + 8;
1715         }
1716 #elif defined(TARGET_ARM64)
1717         return mono_arch_get_call_target (((guint8*)ins_addr) + 4);
1718 #else
1719         g_assert_not_reached ();
1720         return NULL;
1721 #endif
1722 }
1723
1724 static void
1725 load_aot_module (MonoAssembly *assembly, gpointer user_data)
1726 {
1727         char *aot_name;
1728         MonoAotModule *amodule;
1729         MonoDl *sofile;
1730         gboolean usable = TRUE;
1731         char *version_symbol = NULL;
1732         char *msg = NULL;
1733         gpointer *globals = NULL;
1734         MonoAotFileInfo *info = NULL;
1735         int i, version;
1736         guint8 *blob;
1737         gboolean do_load_image = TRUE;
1738         int align_double, align_int64;
1739
1740         if (mono_compile_aot)
1741                 return;
1742
1743         if (assembly->image->aot_module)
1744                 /* 
1745                  * Already loaded. This can happen because the assembly loading code might invoke
1746                  * the assembly load hooks multiple times for the same assembly.
1747                  */
1748                 return;
1749
1750         if (image_is_dynamic (assembly->image) || assembly->ref_only)
1751                 return;
1752
1753         if (mono_security_cas_enabled ())
1754                 return;
1755
1756         mono_aot_lock ();
1757         if (static_aot_modules)
1758                 info = g_hash_table_lookup (static_aot_modules, assembly->aname.name);
1759         else
1760                 info = NULL;
1761         mono_aot_unlock ();
1762
1763         sofile = NULL;
1764
1765         if (info) {
1766                 /* Statically linked AOT module */
1767                 aot_name = g_strdup_printf ("%s", assembly->aname.name);
1768                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "Found statically linked AOT module '%s'.\n", aot_name);
1769                 globals = info->globals;
1770         } else {
1771                 if (enable_aot_cache)
1772                         sofile = aot_cache_load_module (assembly, &aot_name);
1773                 if (!sofile) {
1774                         char *err;
1775                         aot_name = g_strdup_printf ("%s%s", assembly->image->name, SHARED_EXT);
1776
1777                         sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
1778
1779                         if (!sofile) {
1780                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module '%s' not found: %s\n", aot_name, err);
1781                                 g_free (err);
1782                         }
1783                 }
1784         }
1785
1786         if (!sofile && !globals) {
1787                 if (mono_aot_only && assembly->image->tables [MONO_TABLE_METHOD].rows) {
1788                         fprintf (stderr, "Failed to load AOT module '%s' in aot-only mode.\n", aot_name);
1789                         exit (1);
1790                 }
1791                 g_free (aot_name);
1792                 return;
1793         }
1794
1795         if (!info) {
1796                 find_symbol (sofile, globals, "mono_aot_version", (gpointer *) &version_symbol);
1797                 find_symbol (sofile, globals, "mono_aot_file_info", (gpointer*)&info);
1798         }
1799
1800         if (version_symbol) {
1801                 /* Old file format */
1802                 version = atoi (version_symbol);
1803         } else {
1804                 g_assert (info);
1805                 version = info->version;
1806         }
1807
1808         if (version != MONO_AOT_FILE_VERSION) {
1809                 msg = g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION, version);
1810                 usable = FALSE;
1811         } else {
1812                 usable = check_usable (assembly, info, &msg);
1813         }
1814
1815         if (!usable) {
1816                 if (mono_aot_only) {
1817                         fprintf (stderr, "Failed to load AOT module '%s' while running in aot-only mode: %s.\n", aot_name, msg);
1818                         exit (1);
1819                 } else {
1820                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable: %s.\n", aot_name, msg);
1821                 }
1822                 g_free (msg);
1823                 g_free (aot_name);
1824                 if (sofile)
1825                         mono_dl_close (sofile);
1826                 assembly->image->aot_module = NULL;
1827                 return;
1828         }
1829
1830 #if defined (TARGET_ARM) && defined (TARGET_MACH)
1831         {
1832                 MonoType t;
1833                 int align = 0;
1834
1835                 memset (&t, 0, sizeof (MonoType));
1836                 t.type = MONO_TYPE_R8;
1837                 mono_type_size (&t, &align);
1838                 align_double = align;
1839
1840                 memset (&t, 0, sizeof (MonoType));
1841                 t.type = MONO_TYPE_I8;
1842                 align_int64 = align;
1843         }
1844 #else
1845         align_double = MONO_ABI_ALIGNOF (double);
1846         align_int64 = MONO_ABI_ALIGNOF (gint64);
1847 #endif
1848
1849         /* Sanity check */
1850         g_assert (info->double_align == align_double);
1851         g_assert (info->long_align == align_int64);
1852         g_assert (info->generic_tramp_num == MONO_TRAMPOLINE_NUM);
1853
1854         blob = info->blob;
1855
1856         amodule = g_new0 (MonoAotModule, 1);
1857         amodule->aot_name = aot_name;
1858         amodule->assembly = assembly;
1859
1860         memcpy (&amodule->info, info, sizeof (*info));
1861
1862         amodule->got = amodule->info.got;
1863         amodule->got [0] = assembly->image;
1864         amodule->globals = globals;
1865         amodule->sofile = sofile;
1866         amodule->method_to_code = g_hash_table_new (mono_aligned_addr_hash, NULL);
1867         amodule->blob = blob;
1868
1869         mono_mutex_init_recursive (&amodule->mutex);
1870
1871         /* Read image table */
1872         {
1873                 guint32 table_len, i;
1874                 char *table = NULL;
1875
1876                 table = info->image_table;
1877                 g_assert (table);
1878
1879                 table_len = *(guint32*)table;
1880                 table += sizeof (guint32);
1881                 amodule->image_table = g_new0 (MonoImage*, table_len);
1882                 amodule->image_names = g_new0 (MonoAssemblyName, table_len);
1883                 amodule->image_guids = g_new0 (char*, table_len);
1884                 amodule->image_table_len = table_len;
1885                 for (i = 0; i < table_len; ++i) {
1886                         MonoAssemblyName *aname = &(amodule->image_names [i]);
1887
1888                         aname->name = g_strdup (table);
1889                         table += strlen (table) + 1;
1890                         amodule->image_guids [i] = g_strdup (table);
1891                         table += strlen (table) + 1;
1892                         if (table [0] != 0)
1893                                 aname->culture = g_strdup (table);
1894                         table += strlen (table) + 1;
1895                         memcpy (aname->public_key_token, table, strlen (table) + 1);
1896                         table += strlen (table) + 1;                    
1897
1898                         table = ALIGN_PTR_TO (table, 8);
1899                         aname->flags = *(guint32*)table;
1900                         table += 4;
1901                         aname->major = *(guint32*)table;
1902                         table += 4;
1903                         aname->minor = *(guint32*)table;
1904                         table += 4;
1905                         aname->build = *(guint32*)table;
1906                         table += 4;
1907                         aname->revision = *(guint32*)table;
1908                         table += 4;
1909                 }
1910         }
1911
1912         amodule->code_offsets = info->code_offsets;
1913         amodule->method_addresses = info->method_addresses;
1914         amodule->code = info->methods;
1915 #ifdef TARGET_ARM
1916         /* Mask out thumb interop bit */
1917         amodule->code = (void*)((mgreg_t)amodule->code & ~1);
1918 #endif
1919         amodule->code_end = info->methods_end;
1920         amodule->method_info_offsets = info->method_info_offsets;
1921         amodule->ex_info_offsets = info->ex_info_offsets;
1922         amodule->class_info_offsets = info->class_info_offsets;
1923         amodule->class_name_table = info->class_name_table;
1924         amodule->extra_method_table = info->extra_method_table;
1925         amodule->extra_method_info_offsets = info->extra_method_info_offsets;
1926         amodule->unbox_trampolines = info->unbox_trampolines;
1927         amodule->unbox_trampolines_end = info->unbox_trampolines_end;
1928         amodule->got_info_offsets = info->got_info_offsets;
1929         amodule->unwind_info = info->unwind_info;
1930         amodule->mem_end = info->mem_end;
1931         amodule->mem_begin = amodule->code;
1932         amodule->plt = info->plt;
1933         amodule->plt_end = info->plt_end;
1934         amodule->mono_eh_frame = info->mono_eh_frame;
1935         amodule->trampolines [MONO_AOT_TRAMP_SPECIFIC] = info->specific_trampolines;
1936         amodule->trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = info->static_rgctx_trampolines;
1937         amodule->trampolines [MONO_AOT_TRAMP_IMT_THUNK] = info->imt_thunks;
1938         amodule->trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = info->gsharedvt_arg_trampolines;
1939         amodule->thumb_end = info->thumb_end;
1940
1941         if (info->flags & MONO_AOT_FILE_FLAG_DIRECT_METHOD_ADDRESSES) {
1942                 /* Compute code_offsets from the method addresses */
1943                 amodule->code_offsets = g_malloc0 (amodule->info.nmethods * sizeof (gint32));
1944                 for (i = 0; i < amodule->info.nmethods; ++i) {
1945                         /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
1946                         void *addr = NULL;
1947
1948 #if defined(TARGET_ARM) || defined(TARGET_ARM64)
1949                         addr = get_arm_bl_target ((guint32*)amodule->method_addresses + i);
1950 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1951                         addr = mono_arch_get_call_target ((guint8*)amodule->method_addresses + (i * 5) + 5);
1952 #else
1953                         g_assert_not_reached ();
1954 #endif
1955                         g_assert (addr);
1956                         if (addr == amodule->method_addresses)
1957                                 amodule->code_offsets [i] = 0xffffffff;
1958                         else
1959                                 amodule->code_offsets [i] = (char*)addr - (char*)amodule->code;
1960                 }
1961         }
1962
1963         if (make_unreadable) {
1964 #ifndef TARGET_WIN32
1965                 guint8 *addr;
1966                 guint8 *page_start, *page_end;
1967                 int err, len;
1968
1969                 addr = amodule->mem_begin;
1970                 len = amodule->mem_end - amodule->mem_begin;
1971
1972                 /* Round down in both directions to avoid modifying data which is not ours */
1973                 page_start = (guint8 *) (((gssize) (addr)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
1974                 page_end = (guint8 *) (((gssize) (addr + len)) & ~ (mono_pagesize () - 1));
1975                 if (page_end > page_start) {
1976                         err = mono_mprotect (page_start, (page_end - page_start), MONO_MMAP_NONE);
1977                         g_assert (err == 0);
1978                 }
1979 #endif
1980         }
1981
1982         mono_aot_lock ();
1983
1984         aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->code);
1985         aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->code_end);
1986
1987         g_hash_table_insert (aot_modules, assembly, amodule);
1988         mono_aot_unlock ();
1989
1990         mono_jit_info_add_aot_module (assembly->image, amodule->code, amodule->code_end);
1991
1992         assembly->image->aot_module = amodule;
1993
1994         if (mono_aot_only) {
1995                 char *code;
1996                 find_symbol (amodule->sofile, amodule->globals, "specific_trampolines_page", (gpointer *)&code);
1997                 amodule->use_page_trampolines = code != NULL;
1998                 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
1999                 if (mono_defaults.corlib) {
2000                         /* The second got slot contains the mscorlib got addr */
2001                         MonoAotModule *mscorlib_amodule = mono_defaults.corlib->aot_module;
2002
2003                         amodule->got [1] = mscorlib_amodule->got;
2004                 } else {
2005                         amodule->got [1] = amodule->got;
2006                 }
2007         }
2008
2009         if (mono_gc_is_moving ()) {
2010                 MonoJumpInfo ji;
2011
2012                 memset (&ji, 0, sizeof (ji));
2013                 ji.type = MONO_PATCH_INFO_GC_CARD_TABLE_ADDR;
2014
2015                 amodule->got [2] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, &ji, FALSE);
2016         }
2017
2018         /*
2019          * Since we store methoddef and classdef tokens when referring to methods/classes in
2020          * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2021          * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2022          * non-lazily, since we can't handle out-of-date errors later.
2023          * The cached class info also depends on the exact assemblies.
2024          */
2025 #if defined(__native_client__)
2026         /* TODO: Don't 'load_image' on mscorlib due to a */
2027         /* recursive loading problem.  This should be    */
2028         /* removed if mscorlib is loaded from disk.      */
2029         if (strncmp(assembly->aname.name, "mscorlib", 8)) {
2030                 do_load_image = TRUE;
2031         } else {
2032                 do_load_image = FALSE;
2033         }
2034 #endif
2035         if (do_load_image) {
2036                 for (i = 0; i < amodule->image_table_len; ++i)
2037                         load_image (amodule, i, FALSE);
2038         }
2039
2040         if (amodule->out_of_date) {
2041                 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);
2042                 if (mono_aot_only) {
2043                         fprintf (stderr, "Failed to load AOT module '%s' while running in aot-only mode because a dependency cannot be found or it is out of date.\n", aot_name);
2044                         exit (1);
2045                 }
2046         }
2047         else
2048                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loaded AOT Module for %s.\n", assembly->image->name);
2049 }
2050
2051 /*
2052  * mono_aot_register_globals:
2053  *
2054  *   This is called by the ctor function in AOT images compiled with the
2055  * 'no-dlsym' option.
2056  */
2057 void
2058 mono_aot_register_globals (gpointer *globals)
2059 {
2060         g_assert_not_reached ();
2061 }
2062
2063 /*
2064  * mono_aot_register_module:
2065  *
2066  *   This should be called by embedding code to register AOT modules statically linked
2067  * into the executable. AOT_INFO should be the value of the 
2068  * 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2069  */
2070 void
2071 mono_aot_register_module (gpointer *aot_info)
2072 {
2073         gpointer *globals;
2074         char *aname;
2075         MonoAotFileInfo *info = (gpointer)aot_info;
2076
2077         g_assert (info->version == MONO_AOT_FILE_VERSION);
2078
2079         globals = info->globals;
2080         g_assert (globals);
2081
2082         aname = info->assembly_name;
2083
2084         /* This could be called before startup */
2085         if (aot_modules)
2086                 mono_aot_lock ();
2087
2088         if (!static_aot_modules)
2089                 static_aot_modules = g_hash_table_new (g_str_hash, g_str_equal);
2090
2091         g_hash_table_insert (static_aot_modules, aname, info);
2092
2093         if (aot_modules)
2094                 mono_aot_unlock ();
2095 }
2096
2097 void
2098 mono_aot_init (void)
2099 {
2100         mono_mutex_init_recursive (&aot_mutex);
2101         mono_mutex_init_recursive (&aot_page_mutex);
2102         aot_modules = g_hash_table_new (NULL, NULL);
2103
2104 #ifndef __native_client__
2105         mono_install_assembly_load_hook (load_aot_module, NULL);
2106 #endif
2107         mono_counters_register ("Async JIT info size", MONO_COUNTER_INT|MONO_COUNTER_JIT, &async_jit_info_size);
2108
2109         if (g_getenv ("MONO_LASTAOT"))
2110                 mono_last_aot_method = atoi (g_getenv ("MONO_LASTAOT"));
2111         aot_cache_init ();
2112 }
2113
2114 void
2115 mono_aot_cleanup (void)
2116 {
2117         if (aot_jit_icall_hash)
2118                 g_hash_table_destroy (aot_jit_icall_hash);
2119         if (aot_modules)
2120                 g_hash_table_destroy (aot_modules);
2121 }
2122
2123 static gboolean
2124 decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guint8 *buf, guint8 **endbuf)
2125 {
2126         guint32 flags;
2127         MethodRef ref;
2128         gboolean res;
2129
2130         info->vtable_size = decode_value (buf, &buf);
2131         if (info->vtable_size == -1)
2132                 /* Generic type */
2133                 return FALSE;
2134         flags = decode_value (buf, &buf);
2135         info->ghcimpl = (flags >> 0) & 0x1;
2136         info->has_finalize = (flags >> 1) & 0x1;
2137         info->has_cctor = (flags >> 2) & 0x1;
2138         info->has_nested_classes = (flags >> 3) & 0x1;
2139         info->blittable = (flags >> 4) & 0x1;
2140         info->has_references = (flags >> 5) & 0x1;
2141         info->has_static_refs = (flags >> 6) & 0x1;
2142         info->no_special_static_fields = (flags >> 7) & 0x1;
2143         info->is_generic_container = (flags >> 8) & 0x1;
2144
2145         if (info->has_cctor) {
2146                 res = decode_method_ref (module, &ref, buf, &buf);
2147                 if (!res)
2148                         return FALSE;
2149                 info->cctor_token = ref.token;
2150         }
2151         if (info->has_finalize) {
2152                 res = decode_method_ref (module, &ref, buf, &buf);
2153                 if (!res)
2154                         return FALSE;
2155                 info->finalize_image = ref.image;
2156                 info->finalize_token = ref.token;
2157         }
2158
2159         info->instance_size = decode_value (buf, &buf);
2160         info->class_size = decode_value (buf, &buf);
2161         info->packing_size = decode_value (buf, &buf);
2162         info->min_align = decode_value (buf, &buf);
2163
2164         *endbuf = buf;
2165
2166         return TRUE;
2167 }       
2168
2169 gpointer
2170 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot)
2171 {
2172         int i;
2173         MonoClass *klass = vtable->klass;
2174         MonoAotModule *amodule = klass->image->aot_module;
2175         guint8 *info, *p;
2176         MonoCachedClassInfo class_info;
2177         gboolean err;
2178         MethodRef ref;
2179         gboolean res;
2180
2181         if (MONO_CLASS_IS_INTERFACE (klass) || klass->rank || !amodule)
2182                 return NULL;
2183
2184         info = &amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2185         p = info;
2186
2187         err = decode_cached_class_info (amodule, &class_info, p, &p);
2188         if (!err)
2189                 return NULL;
2190
2191         for (i = 0; i < slot; ++i)
2192                 decode_method_ref (amodule, &ref, p, &p);
2193
2194         res = decode_method_ref (amodule, &ref, p, &p);
2195         if (!res)
2196                 return NULL;
2197         if (ref.no_aot_trampoline)
2198                 return NULL;
2199
2200         if (mono_metadata_token_index (ref.token) == 0 || mono_metadata_token_table (ref.token) != MONO_TABLE_METHOD)
2201                 return NULL;
2202
2203         return mono_aot_get_method_from_token (domain, ref.image, ref.token);
2204 }
2205
2206 gboolean
2207 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
2208 {
2209         MonoAotModule *amodule = klass->image->aot_module;
2210         guint8 *p;
2211         gboolean err;
2212
2213         if (klass->rank || !amodule)
2214                 return FALSE;
2215
2216         p = (guint8*)&amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2217
2218         err = decode_cached_class_info (amodule, res, p, &p);
2219         if (!err)
2220                 return FALSE;
2221
2222         return TRUE;
2223 }
2224
2225 /**
2226  * mono_aot_get_class_from_name:
2227  *
2228  *  Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2229  * using a cache stored in the AOT file.
2230  * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2231  *
2232  * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was 
2233  * found.
2234  */
2235 gboolean
2236 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
2237 {
2238         MonoAotModule *amodule = image->aot_module;
2239         guint16 *table, *entry;
2240         guint16 table_size;
2241         guint32 hash;
2242         char full_name_buf [1024];
2243         char *full_name;
2244         const char *name2, *name_space2;
2245         MonoTableInfo  *t;
2246         guint32 cols [MONO_TYPEDEF_SIZE];
2247         GHashTable *nspace_table;
2248
2249         if (!amodule || !amodule->class_name_table)
2250                 return FALSE;
2251
2252         amodule_lock (amodule);
2253
2254         *klass = NULL;
2255
2256         /* First look in the cache */
2257         if (!amodule->name_cache)
2258                 amodule->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
2259         nspace_table = g_hash_table_lookup (amodule->name_cache, name_space);
2260         if (nspace_table) {
2261                 *klass = g_hash_table_lookup (nspace_table, name);
2262                 if (*klass) {
2263                         amodule_unlock (amodule);
2264                         return TRUE;
2265                 }
2266         }
2267
2268         table_size = amodule->class_name_table [0];
2269         table = amodule->class_name_table + 1;
2270
2271         if (name_space [0] == '\0')
2272                 full_name = g_strdup_printf ("%s", name);
2273         else {
2274                 if (strlen (name_space) + strlen (name) < 1000) {
2275                         sprintf (full_name_buf, "%s.%s", name_space, name);
2276                         full_name = full_name_buf;
2277                 } else {
2278                         full_name = g_strdup_printf ("%s.%s", name_space, name);
2279                 }
2280         }
2281         hash = mono_metadata_str_hash (full_name) % table_size;
2282         if (full_name != full_name_buf)
2283                 g_free (full_name);
2284
2285         entry = &table [hash * 2];
2286
2287         if (entry [0] != 0) {
2288                 t = &image->tables [MONO_TABLE_TYPEDEF];
2289
2290                 while (TRUE) {
2291                         guint32 index = entry [0];
2292                         guint32 next = entry [1];
2293                         guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
2294
2295                         name_table_accesses ++;
2296
2297                         mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
2298
2299                         name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2300                         name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2301
2302                         if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
2303                                 MonoError error;
2304                                 amodule_unlock (amodule);
2305                                 *klass = mono_class_get_checked (image, token, &error);
2306                                 if (!mono_error_ok (&error))
2307                                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
2308
2309                                 /* Add to cache */
2310                                 if (*klass) {
2311                                         amodule_lock (amodule);
2312                                         nspace_table = g_hash_table_lookup (amodule->name_cache, name_space);
2313                                         if (!nspace_table) {
2314                                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
2315                                                 g_hash_table_insert (amodule->name_cache, (char*)name_space2, nspace_table);
2316                                         }
2317                                         g_hash_table_insert (nspace_table, (char*)name2, *klass);
2318                                         amodule_unlock (amodule);
2319                                 }
2320                                 return TRUE;
2321                         }
2322
2323                         if (next != 0) {
2324                                 entry = &table [next * 2];
2325                         } else {
2326                                 break;
2327                         }
2328                 }
2329         }
2330
2331         amodule_unlock (amodule);
2332         
2333         return TRUE;
2334 }
2335
2336 /*
2337  * decode_mono_eh_frame:
2338  *
2339  *   Decode the EH information emitted by our modified LLVM compiler and construct a
2340  * MonoJitInfo structure from it.
2341  * LOCKING: Acquires the domain lock.
2342  */
2343 static MonoJitInfo*
2344 decode_llvm_mono_eh_frame (MonoAotModule *amodule, MonoDomain *domain, 
2345                                                    MonoMethod *method, guint8 *code, 
2346                                                    MonoJitExceptionInfo *clauses, int num_clauses,
2347                                                    MonoJitInfoFlags flags,
2348                                                    GSList **nesting,
2349                                                    int *this_reg, int *this_offset)
2350 {
2351         guint8 *p;
2352         guint8 *fde, *cie, *code_start, *code_end;
2353         int version, fde_count;
2354         gint32 *table;
2355         int i, j, pos, left, right, offset, offset1, offset2, code_len, func_encoding;
2356         MonoJitExceptionInfo *ei;
2357         guint32 fde_len, ei_len, nested_len, nindex;
2358         gpointer *type_info;
2359         MonoJitInfo *jinfo;
2360         MonoLLVMFDEInfo info;
2361
2362         g_assert (amodule->mono_eh_frame);
2363
2364         p = amodule->mono_eh_frame;
2365
2366         /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2367
2368         /* Header */
2369         version = *p;
2370         g_assert (version == 3);
2371         p ++;
2372         func_encoding = *p;
2373         p ++;
2374         p = ALIGN_PTR_TO (p, 4);
2375
2376         fde_count = *(guint32*)p;
2377         p += 4;
2378         table = (gint32*)p;
2379
2380         /* There is +1 entry in the table */
2381         cie = p + ((fde_count + 1) * 8);
2382
2383         /* Binary search in the table to find the entry for code */
2384         offset = code - amodule->code;
2385         left = 0;
2386         right = fde_count;
2387         while (TRUE) {
2388                 pos = (left + right) / 2;
2389
2390                 /* The table contains method index/fde offset pairs */
2391                 g_assert (table [(pos * 2)] != -1);
2392                 offset1 = amodule->code_offsets [table [(pos * 2)]];
2393                 if (pos + 1 == fde_count) {
2394                         offset2 = amodule->code_end - amodule->code;
2395                 } else {
2396                         g_assert (table [(pos + 1) * 2] != -1);
2397                         offset2 = amodule->code_offsets [table [(pos + 1) * 2]];
2398                 }
2399
2400                 if (offset < offset1)
2401                         right = pos;
2402                 else if (offset >= offset2)
2403                         left = pos + 1;
2404                 else
2405                         break;
2406         }
2407
2408         code_start = amodule->code + amodule->code_offsets [table [(pos * 2)]];
2409         if (pos + 1 == fde_count) {
2410                 /* The +1 entry in the table contains the length of the last method */
2411                 int len = table [(pos + 1) * 2];
2412                 code_end = code_start + len;
2413         } else {
2414                 code_end = amodule->code + amodule->code_offsets [table [(pos + 1) * 2]];
2415         }
2416         code_len = code_end - code_start;
2417
2418         g_assert (code >= code_start && code < code_end);
2419
2420         if (amodule->thumb_end && (guint8*)code_start < amodule->thumb_end)
2421                 /* Clear thumb flag */
2422                 code_start = (guint8*)(((mgreg_t)code_start) & ~1);
2423
2424         fde = amodule->mono_eh_frame + table [(pos * 2) + 1];   
2425         /* This won't overflow because there is +1 entry in the table */
2426         fde_len = table [(pos * 2) + 2 + 1] - table [(pos * 2) + 1];
2427
2428         mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info);
2429         ei = info.ex_info;
2430         ei_len = info.ex_info_len;
2431         type_info = info.type_info;
2432         *this_reg = info.this_reg;
2433         *this_offset = info.this_offset;
2434
2435         /* Count number of nested clauses */
2436         nested_len = 0;
2437         for (i = 0; i < ei_len; ++i) {
2438                 /* This might be unaligned */
2439                 gint32 cindex1 = read32 (type_info [i]);
2440                 GSList *l;
2441
2442                 for (l = nesting [cindex1]; l; l = l->next) {
2443                         gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2444
2445                         for (j = 0; j < ei_len; ++j) {
2446                                 gint32 cindex2 = read32 (type_info [j]);
2447
2448                                 if (cindex2 == nesting_cindex)
2449                                         nested_len ++;
2450                         }
2451                 }
2452         }
2453
2454         /*
2455          * LLVM might represent one IL region with multiple regions, so have to
2456          * allocate a new JI.
2457          */
2458         jinfo = 
2459                 mono_domain_alloc0_lock_free (domain, mono_jit_info_size (flags, ei_len + nested_len, 0));
2460         mono_jit_info_init (jinfo, method, code, code_len, flags, ei_len + nested_len, 0);
2461
2462         jinfo->unwind_info = mono_cache_unwind_info (info.unw_info, info.unw_info_len);
2463         /* This signals that unwind_info points to a normal cached unwind info */
2464         jinfo->from_aot = 0;
2465         jinfo->from_llvm = 1;
2466
2467         for (i = 0; i < ei_len; ++i) {
2468                 /*
2469                  * clauses contains the original IL exception info saved by the AOT
2470                  * compiler, we have to combine that with the information produced by LLVM
2471                  */
2472                 /* The type_info entries contain IL clause indexes */
2473                 int clause_index = read32 (type_info [i]);
2474                 MonoJitExceptionInfo *jei = &jinfo->clauses [i];
2475                 MonoJitExceptionInfo *orig_jei = &clauses [clause_index];
2476
2477                 g_assert (clause_index < num_clauses);
2478                 jei->flags = orig_jei->flags;
2479                 jei->data.catch_class = orig_jei->data.catch_class;
2480
2481                 jei->try_start = ei [i].try_start;
2482                 jei->try_end = ei [i].try_end;
2483                 jei->handler_start = ei [i].handler_start;
2484
2485                 /* Make sure we transition to thumb when a handler starts */
2486                 if (amodule->thumb_end && (guint8*)jei->handler_start < amodule->thumb_end)
2487                         jei->handler_start = (void*)((mgreg_t)jei->handler_start + 1);
2488         }
2489
2490         /* See exception_cb () in mini-llvm.c as to why this is needed */
2491         nindex = ei_len;
2492         for (i = 0; i < ei_len; ++i) {
2493                 gint32 cindex1 = read32 (type_info [i]);
2494                 GSList *l;
2495
2496                 for (l = nesting [cindex1]; l; l = l->next) {
2497                         gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2498
2499                         for (j = 0; j < ei_len; ++j) {
2500                                 gint32 cindex2 = read32 (type_info [j]);
2501
2502                                 if (cindex2 == nesting_cindex) {
2503                                         /* 
2504                                          * The try interval comes from the nested clause, everything else from the
2505                                          * nesting clause.
2506                                          */
2507                                         memcpy (&jinfo->clauses [nindex], &jinfo->clauses [j], sizeof (MonoJitExceptionInfo));
2508                                         jinfo->clauses [nindex].try_start = jinfo->clauses [i].try_start;
2509                                         jinfo->clauses [nindex].try_end = jinfo->clauses [i].try_end;
2510                                         nindex ++;
2511                                 }
2512                         }
2513                 }
2514         }
2515         g_assert (nindex == ei_len + nested_len);
2516
2517         return jinfo;
2518 }
2519
2520 static gpointer
2521 alloc0_jit_info_data (MonoDomain *domain, int size, gboolean async_context)
2522 {
2523         gpointer res;
2524
2525         if (async_context) {
2526                 res = mono_domain_alloc0_lock_free (domain, size);
2527                 InterlockedExchangeAdd (&async_jit_info_size, size);
2528         } else {
2529                 res = mono_domain_alloc0 (domain, size);
2530         }
2531         return res;
2532 }
2533
2534 /*
2535  * LOCKING: Acquires the domain lock.
2536  * In async context, this is async safe.
2537  */
2538 static MonoJitInfo*
2539 decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain, 
2540                                                          MonoMethod *method, guint8* ex_info, guint8 *addr,
2541                                                          guint8 *code, guint32 code_len)
2542 {
2543         int i, buf_len, num_clauses, len;
2544         MonoJitInfo *jinfo;
2545         MonoJitInfoFlags flags = JIT_INFO_NONE;
2546         guint unwind_info, eflags;
2547         gboolean has_generic_jit_info, has_dwarf_unwind_info, has_clauses, has_seq_points, has_try_block_holes, has_arch_eh_jit_info;
2548         gboolean from_llvm, has_gc_map;
2549         guint8 *p;
2550         int generic_info_size, try_holes_info_size, num_holes, arch_eh_jit_info_size;
2551         int this_reg = 0, this_offset = 0;
2552         gboolean async;
2553
2554         /* Load the method info from the AOT file */
2555         async = mono_thread_info_is_async_context ();
2556
2557         p = ex_info;
2558         eflags = decode_value (p, &p);
2559         has_generic_jit_info = (eflags & 1) != 0;
2560         has_dwarf_unwind_info = (eflags & 2) != 0;
2561         has_clauses = (eflags & 4) != 0;
2562         has_seq_points = (eflags & 8) != 0;
2563         from_llvm = (eflags & 16) != 0;
2564         has_try_block_holes = (eflags & 32) != 0;
2565         has_gc_map = (eflags & 64) != 0;
2566         has_arch_eh_jit_info = (eflags & 128) != 0;
2567
2568         if (has_dwarf_unwind_info) {
2569                 unwind_info = decode_value (p, &p);
2570                 g_assert (unwind_info < (1 << 30));
2571         } else {
2572                 unwind_info = decode_value (p, &p);
2573         }
2574         if (has_generic_jit_info) {
2575                 flags |= JIT_INFO_HAS_GENERIC_JIT_INFO;
2576                 generic_info_size = sizeof (MonoGenericJitInfo);
2577         } else {
2578                 generic_info_size = 0;
2579         }
2580
2581         if (has_try_block_holes) {
2582                 num_holes = decode_value (p, &p);
2583                 flags |= JIT_INFO_HAS_TRY_BLOCK_HOLES;
2584                 try_holes_info_size = sizeof (MonoTryBlockHoleTableJitInfo) + num_holes * sizeof (MonoTryBlockHoleJitInfo);
2585         } else {
2586                 num_holes = try_holes_info_size = 0;
2587         }
2588         /* Exception table */
2589         if (has_clauses)
2590                 num_clauses = decode_value (p, &p);
2591         else
2592                 num_clauses = 0;
2593         if (has_arch_eh_jit_info) {
2594                 flags |= JIT_INFO_HAS_ARCH_EH_INFO;
2595                 arch_eh_jit_info_size = sizeof (MonoArchEHJitInfo);
2596         } else {
2597                 arch_eh_jit_info_size = 0;
2598         }
2599
2600         if (from_llvm) {
2601                 MonoJitExceptionInfo *clauses;
2602                 GSList **nesting;
2603
2604                 // FIXME: async
2605                 g_assert (!async);
2606
2607                 /*
2608                  * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
2609                  * section.
2610                  */
2611                 clauses = g_new0 (MonoJitExceptionInfo, num_clauses);
2612                 nesting = g_new0 (GSList*, num_clauses);
2613
2614                 for (i = 0; i < num_clauses; ++i) {
2615                         MonoJitExceptionInfo *ei = &clauses [i];
2616
2617                         ei->flags = decode_value (p, &p);
2618
2619                         if (decode_value (p, &p))
2620                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p);
2621
2622                         /* Read the list of nesting clauses */
2623                         while (TRUE) {
2624                                 int nesting_index = decode_value (p, &p);
2625                                 if (nesting_index == -1)
2626                                         break;
2627                                 nesting [i] = g_slist_prepend (nesting [i], GINT_TO_POINTER (nesting_index));
2628                         }
2629                 }
2630
2631                 jinfo = decode_llvm_mono_eh_frame (amodule, domain, method, code, clauses, num_clauses, flags, nesting, &this_reg, &this_offset);
2632
2633                 g_free (clauses);
2634                 for (i = 0; i < num_clauses; ++i)
2635                         g_slist_free (nesting [i]);
2636                 g_free (nesting);
2637         } else {
2638                 len = mono_jit_info_size (flags, num_clauses, num_holes);
2639                 jinfo = alloc0_jit_info_data (domain, len, async);
2640                 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, num_holes);
2641
2642                 for (i = 0; i < jinfo->num_clauses; ++i) {
2643                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
2644
2645                         ei->flags = decode_value (p, &p);
2646
2647                         ei->exvar_offset = decode_value (p, &p);
2648
2649                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
2650                                 ei->data.filter = code + decode_value (p, &p);
2651                         else {
2652                                 int len = decode_value (p, &p);
2653
2654                                 if (len > 0) {
2655                                         if (async)
2656                                                 p += len;
2657                                         else
2658                                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p);
2659                                 }
2660                         }
2661
2662                         ei->try_start = code + decode_value (p, &p);
2663                         ei->try_end = code + decode_value (p, &p);
2664                         ei->handler_start = code + decode_value (p, &p);
2665                 }
2666
2667                 jinfo->unwind_info = unwind_info;
2668                 jinfo->domain_neutral = 0;
2669                 jinfo->from_aot = 1;
2670         }
2671
2672         if (has_try_block_holes) {
2673                 MonoTryBlockHoleTableJitInfo *table;
2674
2675                 g_assert (jinfo->has_try_block_holes);
2676
2677                 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
2678                 g_assert (table);
2679
2680                 table->num_holes = (guint16)num_holes;
2681                 for (i = 0; i < num_holes; ++i) {
2682                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
2683                         hole->clause = decode_value (p, &p);
2684                         hole->length = decode_value (p, &p);
2685                         hole->offset = decode_value (p, &p);
2686                 }
2687         }
2688
2689         if (has_arch_eh_jit_info) {
2690                 MonoArchEHJitInfo *eh_info;
2691
2692                 g_assert (jinfo->has_arch_eh_info);
2693
2694                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
2695                 eh_info->stack_size = decode_value (p, &p);
2696                 eh_info->epilog_size = decode_value (p, &p);
2697         }
2698
2699         if (async) {
2700                 /* The rest is not needed in async mode */
2701                 jinfo->async = TRUE;
2702                 jinfo->d.aot_info = amodule;
2703                 // FIXME: Cache
2704                 return jinfo;
2705         }
2706
2707         if (has_generic_jit_info) {
2708                 MonoGenericJitInfo *gi;
2709                 int len;
2710
2711                 g_assert (jinfo->has_generic_jit_info);
2712
2713                 gi = mono_jit_info_get_generic_jit_info (jinfo);
2714                 g_assert (gi);
2715
2716                 gi->nlocs = decode_value (p, &p);
2717                 if (gi->nlocs) {
2718                         gi->locations = alloc0_jit_info_data (domain, gi->nlocs * sizeof (MonoDwarfLocListEntry), async);
2719                         for (i = 0; i < gi->nlocs; ++i) {
2720                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
2721
2722                                 entry->is_reg = decode_value (p, &p);
2723                                 entry->reg = decode_value (p, &p);
2724                                 if (!entry->is_reg)
2725                                         entry->offset = decode_value (p, &p);
2726                                 if (i > 0)
2727                                         entry->from = decode_value (p, &p);
2728                                 entry->to = decode_value (p, &p);
2729                         }
2730                 } else {
2731                         if (from_llvm) {
2732                                 gi->has_this = this_reg != -1;
2733                                 gi->this_reg = this_reg;
2734                                 gi->this_offset = this_offset;
2735                         } else {
2736                                 gi->has_this = decode_value (p, &p);
2737                                 gi->this_reg = decode_value (p, &p);
2738                                 gi->this_offset = decode_value (p, &p);
2739                         }
2740                 }
2741
2742                 len = decode_value (p, &p);
2743                 if (async)
2744                         p += len;
2745                 else
2746                         jinfo->d.method = decode_resolve_method_ref (amodule, p, &p);
2747
2748                 gi->generic_sharing_context = g_new0 (MonoGenericSharingContext, 1);
2749                 if (decode_value (p, &p)) {
2750                         /* gsharedvt */
2751                         int i, n;
2752                         MonoGenericSharingContext *gsctx = gi->generic_sharing_context;
2753
2754                         n = decode_value (p, &p);
2755                         if (n) {
2756                                 gsctx->var_is_vt = alloc0_jit_info_data (domain, sizeof (gboolean) * n, async);
2757                                 for (i = 0; i < n; ++i)
2758                                         gsctx->var_is_vt [i] = decode_value (p, &p);
2759                         }
2760                         n = decode_value (p, &p);
2761                         if (n) {
2762                                 gsctx->mvar_is_vt = alloc0_jit_info_data (domain, sizeof (gboolean) * n, async);
2763                                 for (i = 0; i < n; ++i)
2764                                         gsctx->mvar_is_vt [i] = decode_value (p, &p);
2765                         }
2766                 }
2767         }
2768
2769         if (method && has_seq_points) {
2770                 MonoSeqPointInfo *seq_points;
2771                 int il_offset, native_offset, last_il_offset, last_native_offset, j;
2772
2773                 int len = decode_value (p, &p);
2774
2775                 seq_points = g_malloc0 (sizeof (MonoSeqPointInfo) + (len - MONO_ZERO_LEN_ARRAY) * sizeof (SeqPoint));
2776                 seq_points->len = len;
2777                 last_il_offset = last_native_offset = 0;
2778                 for (i = 0; i < len; ++i) {
2779                         SeqPoint *sp = &seq_points->seq_points [i];
2780                         il_offset = last_il_offset + decode_value (p, &p);
2781                         native_offset = last_native_offset + decode_value (p, &p);
2782
2783                         sp->il_offset = il_offset;
2784                         sp->native_offset = native_offset;
2785                         
2786                         sp->flags = decode_value (p, &p);
2787                         sp->next_len = decode_value (p, &p);
2788                         sp->next = g_new (int, sp->next_len);
2789                         for (j = 0; j < sp->next_len; ++j)
2790                                 sp->next [j] = decode_value (p, &p);
2791
2792                         last_il_offset = il_offset;
2793                         last_native_offset = native_offset;
2794                 }
2795
2796                 mono_domain_lock (domain);
2797                 g_hash_table_insert (domain_jit_info (domain)->seq_points, method, seq_points);
2798                 mono_domain_unlock (domain);
2799         }
2800
2801         /* Load debug info */
2802         buf_len = decode_value (p, &p);
2803         if (!async)
2804                 mono_debug_add_aot_method (domain, method, code, p, buf_len);
2805         p += buf_len;
2806
2807         if (has_gc_map) {
2808                 int map_size = decode_value (p, &p);
2809                 /* The GC map requires 4 bytes of alignment */
2810                 while ((guint64)(gsize)p % 4)
2811                         p ++;           
2812                 jinfo->gc_info = p;
2813                 p += map_size;
2814         }
2815
2816         if (amodule != jinfo->d.method->klass->image->aot_module) {
2817                 mono_aot_lock ();
2818                 if (!ji_to_amodule)
2819                         ji_to_amodule = g_hash_table_new (NULL, NULL);
2820                 g_hash_table_insert (ji_to_amodule, jinfo, amodule);
2821                 mono_aot_unlock ();             
2822         }
2823
2824         return jinfo;
2825 }
2826
2827 /*
2828  * mono_aot_get_unwind_info:
2829  *
2830  *   Return a pointer to the DWARF unwind info belonging to JI.
2831  */
2832 guint8*
2833 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
2834 {
2835         MonoAotModule *amodule;
2836         guint8 *p;
2837         guint8 *code = ji->code_start;
2838
2839         if (ji->async)
2840                 amodule = ji->d.aot_info;
2841         else
2842                 amodule = jinfo_get_method (ji)->klass->image->aot_module;
2843         g_assert (amodule);
2844         g_assert (ji->from_aot);
2845
2846         if (!(code >= amodule->code && code <= amodule->code_end)) {
2847                 /* ji belongs to a different aot module than amodule */
2848                 mono_aot_lock ();
2849                 g_assert (ji_to_amodule);
2850                 amodule = g_hash_table_lookup (ji_to_amodule, ji);
2851                 g_assert (amodule);
2852                 g_assert (code >= amodule->code && code <= amodule->code_end);
2853                 mono_aot_unlock ();
2854         }
2855
2856         p = amodule->unwind_info + ji->unwind_info;
2857         *unwind_info_len = decode_value (p, &p);
2858         return p;
2859 }
2860
2861 static G_GNUC_UNUSED int
2862 compare_ints (const void *a, const void *b)
2863 {
2864         return *(gint32*)a - *(gint32*)b;
2865 }
2866
2867 static void
2868 msort_code_offsets_internal (gint32 *array, int lo, int hi, gint32 *scratch)
2869 {
2870         int mid = (lo + hi) / 2;
2871         int i, t_lo, t_hi;
2872
2873         if (lo >= hi)
2874                 return;
2875
2876         if (hi - lo < 32) {
2877                 for (i = lo; i < hi; ++i)
2878                         if (array [(i * 2)] > array [(i * 2) + 2])
2879                                 break;
2880                 if (i == hi)
2881                         /* Already sorted */
2882                         return;
2883         }
2884
2885         msort_code_offsets_internal (array, lo, mid, scratch);
2886         msort_code_offsets_internal (array, mid + 1, hi, scratch);
2887
2888         if (array [mid * 2] < array [(mid + 1) * 2])
2889                 return;
2890
2891         /* Merge */
2892         t_lo = lo;
2893         t_hi = mid + 1;
2894         for (i = lo; i <= hi; i ++) {
2895                 if (t_lo <= mid && ((t_hi > hi) || array [t_lo * 2] < array [t_hi * 2])) {
2896                         scratch [(i * 2)] = array [t_lo * 2];
2897                         scratch [(i * 2) + 1] = array [(t_lo *2) + 1];
2898                         t_lo ++;
2899                 } else {
2900                         scratch [(i * 2)] = array [t_hi * 2];
2901                         scratch [(i * 2) + 1] = array [(t_hi *2) + 1];
2902                         t_hi ++;
2903                 }
2904         }
2905         for (i = lo; i <= hi; ++i) {
2906                 array [(i * 2)] = scratch [i * 2];
2907                 array [(i * 2) + 1] = scratch [(i * 2) + 1];
2908         }
2909 }
2910
2911 static void
2912 msort_code_offsets (gint32 *array, int len)
2913 {
2914         gint32 *scratch;
2915
2916         scratch = g_new (gint32, len * 2);
2917         msort_code_offsets_internal (array, 0, len - 1, scratch);
2918         g_free (scratch);
2919 }
2920
2921 /*
2922  * mono_aot_find_jit_info:
2923  *
2924  *   In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
2925  * to the jit info tables.
2926  * FIXME: Large sizes in the lock free allocator
2927  */
2928 MonoJitInfo *
2929 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
2930 {
2931         int pos, left, right, offset, offset1, offset2, code_len;
2932         int method_index, table_len;
2933         guint32 token;
2934         MonoAotModule *amodule = image->aot_module;
2935         MonoMethod *method = NULL;
2936         MonoJitInfo *jinfo;
2937         guint8 *code, *ex_info, *p;
2938         guint32 *table;
2939         int nmethods;
2940         gint32 *code_offsets;
2941         int offsets_len, i;
2942         gboolean async;
2943
2944         if (!amodule)
2945                 return NULL;
2946
2947         nmethods = amodule->info.nmethods;
2948
2949         if (domain != mono_get_root_domain ())
2950                 /* FIXME: */
2951                 return NULL;
2952
2953         async = mono_thread_info_is_async_context ();
2954
2955         offset = (guint8*)addr - amodule->code;
2956
2957         /* Compute a sorted table mapping code offsets to method indexes. */
2958         if (!amodule->sorted_code_offsets) {
2959                 // FIXME: async
2960                 code_offsets = g_new0 (gint32, nmethods * 2);
2961                 offsets_len = 0;
2962                 for (i = 0; i < nmethods; ++i) {
2963                         /* Skip the -1 entries to speed up sorting */
2964                         if (amodule->code_offsets [i] == 0xffffffff)
2965                                 continue;
2966                         code_offsets [(offsets_len * 2)] = amodule->code_offsets [i];
2967                         code_offsets [(offsets_len *2) + 1] = i;
2968                         offsets_len ++;
2969                 }
2970                 /* Use a merge sort as this is mostly sorted */
2971                 msort_code_offsets (code_offsets, offsets_len);
2972                 //qsort (code_offsets, offsets_len, sizeof (gint32) * 2, compare_ints);
2973                 for (i = 0; i < offsets_len -1; ++i)
2974                         g_assert (code_offsets [(i * 2)] <= code_offsets [(i + 1) * 2]);
2975
2976                 amodule->sorted_code_offsets_len = offsets_len;
2977                 mono_memory_barrier ();
2978                 if (InterlockedCompareExchangePointer ((gpointer*)&amodule->sorted_code_offsets, code_offsets, NULL) != NULL)
2979                         /* Somebody got in before us */
2980                         g_free (code_offsets);
2981         }
2982
2983         code_offsets = amodule->sorted_code_offsets;
2984         offsets_len = amodule->sorted_code_offsets_len;
2985
2986         if (offsets_len > 0 && (offset < code_offsets [0] || offset >= (amodule->code_end - amodule->code)))
2987                 return NULL;
2988
2989         /* Binary search in the sorted_code_offsets table */
2990         left = 0;
2991         right = offsets_len;
2992         while (TRUE) {
2993                 pos = (left + right) / 2;
2994
2995                 offset1 = code_offsets [(pos * 2)];
2996                 if (pos + 1 == offsets_len)
2997                         offset2 = amodule->code_end - amodule->code;
2998                 else
2999                         offset2 = code_offsets [(pos + 1) * 2];
3000
3001                 if (offset < offset1)
3002                         right = pos;
3003                 else if (offset >= offset2)
3004                         left = pos + 1;
3005                 else
3006                         break;
3007         }
3008
3009         g_assert (offset >= code_offsets [(pos * 2)]);
3010         if (pos + 1 < offsets_len)
3011                 g_assert (offset < code_offsets [((pos + 1) * 2)]);
3012         method_index = code_offsets [(pos * 2) + 1];
3013
3014         /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3015         if (async) {
3016                 JitInfoMap *table = amodule->async_jit_info_table;
3017                 int len;
3018
3019                 if (table) {
3020                         len = table [0].method_index;
3021                         for (i = 1; i < len; ++i) {
3022                                 if (table [i].method_index == method_index)
3023                                         return table [i].jinfo;
3024                         }
3025                 }
3026         }
3027
3028         code = &amodule->code [amodule->code_offsets [method_index]];
3029         ex_info = &amodule->blob [mono_aot_get_offset (amodule->ex_info_offsets, method_index)];
3030
3031         if (pos == offsets_len - 1)
3032                 code_len = amodule->code_end - code;
3033         else
3034                 code_len = code_offsets [(pos + 1) * 2] - code_offsets [pos * 2];
3035
3036         g_assert ((guint8*)code <= (guint8*)addr && (guint8*)addr < (guint8*)code + code_len);
3037
3038         /* Might be a wrapper/extra method */
3039         if (!async) {
3040                 if (amodule->extra_methods) {
3041                         amodule_lock (amodule);
3042                         method = g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
3043                         amodule_unlock (amodule);
3044                 } else {
3045                         method = NULL;
3046                 }
3047
3048                 if (!method) {
3049                         if (method_index >= image->tables [MONO_TABLE_METHOD].rows) {
3050                                 /*
3051                                  * This is hit for extra methods which are called directly, so they are
3052                                  * not in amodule->extra_methods.
3053                                  */
3054                                 table_len = amodule->extra_method_info_offsets [0];
3055                                 table = amodule->extra_method_info_offsets + 1;
3056                                 left = 0;
3057                                 right = table_len;
3058                                 pos = 0;
3059
3060                                 /* Binary search */
3061                                 while (TRUE) {
3062                                         pos = ((left + right) / 2);
3063
3064                                         g_assert (pos < table_len);
3065
3066                                         if (table [pos * 2] < method_index)
3067                                                 left = pos + 1;
3068                                         else if (table [pos * 2] > method_index)
3069                                                 right = pos;
3070                                         else
3071                                                 break;
3072                                 }
3073
3074                                 p = amodule->blob + table [(pos * 2) + 1];
3075                                 method = decode_resolve_method_ref (amodule, p, &p);
3076                                 if (!method)
3077                                         /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3078                                         return NULL;
3079                         } else {
3080                                 token = mono_metadata_make_token (MONO_TABLE_METHOD, method_index + 1);
3081                                 method = mono_get_method (image, token, NULL);
3082                         }
3083                 }
3084                 /* FIXME: */
3085                 g_assert (method);
3086         }
3087
3088         //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3089         
3090         jinfo = decode_exception_debug_info (amodule, domain, method, ex_info, addr, code, code_len);
3091
3092         g_assert ((guint8*)addr >= (guint8*)jinfo->code_start);
3093         g_assert ((guint8*)addr < (guint8*)jinfo->code_start + jinfo->code_size);
3094
3095         /* Add it to the normal JitInfo tables */
3096         if (async) {
3097                 JitInfoMap *old_table, *new_table;
3098                 int len;
3099
3100                 /*
3101                  * Use a simple inmutable table with linear search to cache async jit info entries.
3102                  * This assumes that the number of entries is small.
3103                  */
3104                 while (TRUE) {
3105                         /* Copy the table, adding a new entry at the end */
3106                         old_table = amodule->async_jit_info_table;
3107                         if (old_table)
3108                                 len = old_table[0].method_index;
3109                         else
3110                                 len = 1;
3111                         new_table = alloc0_jit_info_data (domain, (len + 1) * sizeof (JitInfoMap), async);
3112                         if (old_table)
3113                                 memcpy (new_table, old_table, len * sizeof (JitInfoMap));
3114                         new_table [0].method_index = len + 1;
3115                         new_table [len].method_index = method_index;
3116                         new_table [len].jinfo = jinfo;
3117                         /* Publish it */
3118                         mono_memory_barrier ();
3119                         if (InterlockedCompareExchangePointer ((gpointer)&amodule->async_jit_info_table, new_table, old_table) == old_table)
3120                                 break;
3121                 }
3122         } else {
3123                 mono_jit_info_table_add (domain, jinfo);
3124         }
3125         
3126         return jinfo;
3127 }
3128
3129 static gboolean
3130 decode_patch (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji, guint8 *buf, guint8 **endbuf)
3131 {
3132         guint8 *p = buf;
3133         gpointer *table;
3134         MonoImage *image;
3135         int i;
3136
3137         switch (ji->type) {
3138         case MONO_PATCH_INFO_METHOD:
3139         case MONO_PATCH_INFO_METHOD_JUMP:
3140         case MONO_PATCH_INFO_ICALL_ADDR:
3141         case MONO_PATCH_INFO_METHOD_RGCTX:
3142         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
3143                 MethodRef ref;
3144                 gboolean res;
3145
3146                 res = decode_method_ref (aot_module, &ref, p, &p);
3147                 if (!res)
3148                         goto cleanup;
3149
3150                 if (!ref.method && !mono_aot_only && !ref.no_aot_trampoline && (ji->type == MONO_PATCH_INFO_METHOD) && (mono_metadata_token_table (ref.token) == MONO_TABLE_METHOD)) {
3151                         ji->data.target = mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref.image, ref.token));
3152                         ji->type = MONO_PATCH_INFO_ABS;
3153                 }
3154                 else {
3155                         if (ref.method)
3156                                 ji->data.method = ref.method;
3157                         else
3158                                 ji->data.method = mono_get_method (ref.image, ref.token, NULL);
3159                         g_assert (ji->data.method);
3160                         mono_class_init (ji->data.method->klass);
3161                 }
3162                 break;
3163         }
3164         case MONO_PATCH_INFO_INTERNAL_METHOD:
3165         case MONO_PATCH_INFO_JIT_ICALL_ADDR: {
3166                 guint32 len = decode_value (p, &p);
3167
3168                 ji->data.name = (char*)p;
3169                 p += len + 1;
3170                 break;
3171         }
3172         case MONO_PATCH_INFO_METHODCONST:
3173                 /* Shared */
3174                 ji->data.method = decode_resolve_method_ref (aot_module, p, &p);
3175                 if (!ji->data.method)
3176                         goto cleanup;
3177                 break;
3178         case MONO_PATCH_INFO_VTABLE:
3179         case MONO_PATCH_INFO_CLASS:
3180         case MONO_PATCH_INFO_IID:
3181         case MONO_PATCH_INFO_ADJUSTED_IID:
3182         case MONO_PATCH_INFO_CLASS_INIT:
3183                 /* Shared */
3184                 ji->data.klass = decode_klass_ref (aot_module, p, &p);
3185                 if (!ji->data.klass)
3186                         goto cleanup;
3187                 break;
3188         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
3189                 ji->data.del_tramp = mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
3190                 ji->data.del_tramp->klass = decode_klass_ref (aot_module, p, &p);
3191                 if (!ji->data.del_tramp->klass)
3192                         goto cleanup;
3193                 if (decode_value (p, &p)) {
3194                         ji->data.del_tramp->method = decode_resolve_method_ref (aot_module, p, &p);
3195                         if (!ji->data.del_tramp->method)
3196                                 goto cleanup;
3197                 }
3198                 ji->data.del_tramp->virtual = decode_value (p, &p) ? TRUE : FALSE;
3199                 break;
3200         case MONO_PATCH_INFO_IMAGE:
3201                 ji->data.image = load_image (aot_module, decode_value (p, &p), TRUE);
3202                 if (!ji->data.image)
3203                         goto cleanup;
3204                 break;
3205         case MONO_PATCH_INFO_FIELD:
3206         case MONO_PATCH_INFO_SFLDA:
3207                 /* Shared */
3208                 ji->data.field = decode_field_info (aot_module, p, &p);
3209                 if (!ji->data.field)
3210                         goto cleanup;
3211                 break;
3212         case MONO_PATCH_INFO_SWITCH:
3213                 ji->data.table = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoBBTable));
3214                 ji->data.table->table_size = decode_value (p, &p);
3215                 table = mono_domain_alloc (mono_domain_get (), sizeof (gpointer) * ji->data.table->table_size);
3216                 ji->data.table->table = (MonoBasicBlock**)table;
3217                 for (i = 0; i < ji->data.table->table_size; i++)
3218                         table [i] = (gpointer)(gssize)decode_value (p, &p);
3219                 break;
3220         case MONO_PATCH_INFO_R4: {
3221                 guint32 val;
3222                 
3223                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3224                 val = decode_value (p, &p);
3225                 *(float*)ji->data.target = *(float*)&val;
3226                 break;
3227         }
3228         case MONO_PATCH_INFO_R8: {
3229                 guint32 val [2];
3230                 guint64 v;
3231
3232                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3233
3234                 val [0] = decode_value (p, &p);
3235                 val [1] = decode_value (p, &p);
3236                 v = ((guint64)val [1] << 32) | ((guint64)val [0]);
3237                 *(double*)ji->data.target = *(double*)&v;
3238                 break;
3239         }
3240         case MONO_PATCH_INFO_LDSTR:
3241                 image = load_image (aot_module, decode_value (p, &p), TRUE);
3242                 if (!image)
3243                         goto cleanup;
3244                 ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
3245                 break;
3246         case MONO_PATCH_INFO_RVA:
3247         case MONO_PATCH_INFO_DECLSEC:
3248         case MONO_PATCH_INFO_LDTOKEN:
3249         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3250                 /* Shared */
3251                 image = load_image (aot_module, decode_value (p, &p), TRUE);
3252                 if (!image)
3253                         goto cleanup;
3254                 ji->data.token = mono_jump_info_token_new (mp, image, decode_value (p, &p));
3255
3256                 ji->data.token->has_context = decode_value (p, &p);
3257                 if (ji->data.token->has_context) {
3258                         gboolean res = decode_generic_context (aot_module, &ji->data.token->context, p, &p);
3259                         if (!res)
3260                                 goto cleanup;
3261                 }
3262                 break;
3263         case MONO_PATCH_INFO_EXC_NAME:
3264                 ji->data.klass = decode_klass_ref (aot_module, p, &p);
3265                 if (!ji->data.klass)
3266                         goto cleanup;
3267                 ji->data.name = ji->data.klass->name;
3268                 break;
3269         case MONO_PATCH_INFO_METHOD_REL:
3270                 ji->data.offset = decode_value (p, &p);
3271                 break;
3272         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
3273         case MONO_PATCH_INFO_GENERIC_CLASS_INIT:
3274         case MONO_PATCH_INFO_MONITOR_ENTER:
3275         case MONO_PATCH_INFO_MONITOR_EXIT:
3276         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
3277         case MONO_PATCH_INFO_JIT_TLS_ID:
3278                 break;
3279         case MONO_PATCH_INFO_CASTCLASS_CACHE:
3280                 ji->data.index = decode_value (p, &p);
3281                 break;
3282         case MONO_PATCH_INFO_RGCTX_FETCH: {
3283                 gboolean res;
3284                 MonoJumpInfoRgctxEntry *entry;
3285                 guint32 offset, val;
3286                 guint8 *p2;
3287
3288                 offset = decode_value (p, &p);
3289                 val = decode_value (p, &p);
3290
3291                 entry = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3292                 p2 = aot_module->blob + offset;
3293                 entry->method = decode_resolve_method_ref (aot_module, p2, &p2);
3294                 entry->in_mrgctx = ((val & 1) > 0) ? TRUE : FALSE;
3295                 entry->info_type = (val >> 1) & 0xff;
3296                 entry->data = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3297                 entry->data->type = (val >> 9) & 0xff;
3298                 
3299                 res = decode_patch (aot_module, mp, entry->data, p, &p);
3300                 if (!res)
3301                         goto cleanup;
3302                 ji->data.rgctx_entry = entry;
3303                 break;
3304         }
3305         case MONO_PATCH_INFO_SEQ_POINT_INFO:
3306                 break;
3307         case MONO_PATCH_INFO_LLVM_IMT_TRAMPOLINE: {
3308                 MonoJumpInfoImtTramp *imt_tramp = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoImtTramp));
3309
3310                 imt_tramp->method = decode_resolve_method_ref (aot_module, p, &p);
3311                 imt_tramp->vt_offset = decode_value (p, &p);
3312                 
3313                 ji->data.imt_tramp = imt_tramp;
3314                 break;
3315         }
3316         case MONO_PATCH_INFO_SIGNATURE:
3317                 ji->data.target = decode_signature (aot_module, p, &p);
3318                 break;
3319         case MONO_PATCH_INFO_TLS_OFFSET:
3320                 ji->data.target = GINT_TO_POINTER (decode_value (p, &p));
3321                 break;
3322         case MONO_PATCH_INFO_GSHAREDVT_CALL: {
3323                 MonoJumpInfoGSharedVtCall *info = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoGSharedVtCall));
3324                 info->sig = decode_signature (aot_module, p, &p);
3325                 g_assert (info->sig);
3326                 info->method = decode_resolve_method_ref (aot_module, p, &p);
3327                 g_assert (info->method);
3328
3329                 ji->data.target = info;
3330                 break;
3331         }
3332         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
3333                 MonoGSharedVtMethodInfo *info = mono_mempool_alloc0 (mp, sizeof (MonoGSharedVtMethodInfo));
3334                 int i;
3335                 
3336                 info->method = decode_resolve_method_ref (aot_module, p, &p);
3337                 g_assert (info->method);
3338                 info->num_entries = decode_value (p, &p);
3339                 info->count_entries = info->num_entries;
3340                 info->entries = mono_mempool_alloc0 (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->num_entries);
3341                 for (i = 0; i < info->num_entries; ++i) {
3342                         MonoRuntimeGenericContextInfoTemplate *template = &info->entries [i];
3343
3344                         template->info_type = decode_value (p, &p);
3345                         switch (mini_rgctx_info_type_to_patch_info_type (template->info_type)) {
3346                         case MONO_PATCH_INFO_CLASS: {
3347                                 MonoClass *klass = decode_klass_ref (aot_module, p, &p);
3348                                 if (!klass)
3349                                         goto cleanup;
3350                                 template->data = &klass->byval_arg;
3351                                 break;
3352                         }
3353                         case MONO_PATCH_INFO_FIELD:
3354                                 template->data = decode_field_info (aot_module, p, &p);
3355                                 if (!template->data)
3356                                         goto cleanup;
3357                                 break;
3358                         default:
3359                                 g_assert_not_reached ();
3360                                 break;
3361                         }
3362                 }
3363                 ji->data.target = info;
3364                 break;
3365         }
3366         default:
3367                 g_warning ("unhandled type %d", ji->type);
3368                 g_assert_not_reached ();
3369         }
3370
3371         *endbuf = p;
3372
3373         return TRUE;
3374
3375  cleanup:
3376         return FALSE;
3377 }
3378
3379 static MonoJumpInfo*
3380 load_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, int n_patches, 
3381                                  guint32 **got_slots, 
3382                                  guint8 *buf, guint8 **endbuf)
3383 {
3384         MonoJumpInfo *patches;
3385         int pindex;
3386         guint8 *p;
3387
3388         p = buf;
3389
3390         patches = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo) * n_patches);
3391
3392         *got_slots = g_malloc (sizeof (guint32) * n_patches);
3393
3394         for (pindex = 0; pindex < n_patches; ++pindex) {
3395                 MonoJumpInfo *ji = &patches [pindex];
3396                 guint8 *shared_p;
3397                 gboolean res;
3398                 guint32 got_offset;
3399
3400                 got_offset = decode_value (p, &p);
3401
3402                 shared_p = aot_module->blob + mono_aot_get_offset (aot_module->got_info_offsets, got_offset);
3403
3404                 ji->type = decode_value (shared_p, &shared_p);
3405
3406                 /* See load_method () for SFLDA */
3407                 if (aot_module->got [got_offset] && ji->type != MONO_PATCH_INFO_SFLDA) {
3408                         /* Already loaded */
3409                 } else {
3410                         res = decode_patch (aot_module, mp, ji, shared_p, &shared_p);
3411                         if (!res)
3412                                 goto cleanup;
3413                 }
3414
3415                 (*got_slots) [pindex] = got_offset;
3416         }
3417
3418         *endbuf = p;
3419         return patches;
3420
3421  cleanup:
3422         g_free (*got_slots);
3423         *got_slots = NULL;
3424
3425         return NULL;
3426 }
3427
3428 static void
3429 register_jump_target_got_slot (MonoDomain *domain, MonoMethod *method, gpointer *got_slot)
3430 {
3431         /*
3432          * Jump addresses cannot be patched by the trampoline code since it
3433          * does not have access to the caller's address. Instead, we collect
3434          * the addresses of the GOT slots pointing to a method, and patch
3435          * them after the method has been compiled.
3436          */
3437         MonoJitDomainInfo *info = domain_jit_info (domain);
3438         GSList *list;
3439                 
3440         mono_domain_lock (domain);
3441         if (!info->jump_target_got_slot_hash)
3442                 info->jump_target_got_slot_hash = g_hash_table_new (NULL, NULL);
3443         list = g_hash_table_lookup (info->jump_target_got_slot_hash, method);
3444         list = g_slist_prepend (list, got_slot);
3445         g_hash_table_insert (info->jump_target_got_slot_hash, method, list);
3446         mono_domain_unlock (domain);
3447 }
3448
3449 /*
3450  * load_method:
3451  *
3452  *   Load the method identified by METHOD_INDEX from the AOT image. Return a
3453  * pointer to the native code of the method, or NULL if not found.
3454  * METHOD might not be set if the caller only has the image/token info.
3455  */
3456 static gpointer
3457 load_method (MonoDomain *domain, MonoAotModule *amodule, MonoImage *image, MonoMethod *method, guint32 token, int method_index)
3458 {
3459         MonoClass *klass;
3460         gboolean from_plt = method == NULL;
3461         MonoMemPool *mp;
3462         int i, pindex, n_patches, used_strings;
3463         gboolean keep_patches = TRUE;
3464         guint8 *p;
3465         MonoJitInfo *jinfo = NULL;
3466         guint8 *code, *info;
3467
3468         if (mono_profiler_get_events () & MONO_PROFILE_ENTER_LEAVE) {
3469                 if (mono_aot_only)
3470                         /* The caller cannot handle this */
3471                         g_assert_not_reached ();
3472                 return NULL;
3473         }
3474
3475         if ((domain != mono_get_root_domain ()) && (!(amodule->info.opts & MONO_OPT_SHARED)))
3476                 /* Non shared AOT code can't be used in other appdomains */
3477                 return NULL;
3478
3479         if (amodule->out_of_date)
3480                 return NULL;
3481
3482         if (amodule->code_offsets [method_index] == 0xffffffff) {
3483                 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3484                         char *full_name;
3485
3486                         if (!method)
3487                                 method = mono_get_method (image, token, NULL);
3488                         full_name = mono_method_full_name (method, TRUE);
3489                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: NOT FOUND: %s.", full_name);
3490                         g_free (full_name);
3491                 }
3492                 return NULL;
3493         }
3494
3495         code = &amodule->code [amodule->code_offsets [method_index]];
3496
3497         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
3498
3499         if (amodule->thumb_end && code < amodule->thumb_end && ((amodule->info.flags & MONO_AOT_FILE_FLAG_DIRECT_METHOD_ADDRESSES) == 0)) {
3500                 /* Convert this into a thumb address */
3501                 g_assert ((amodule->code_offsets [method_index] & 0x1) == 0);
3502                 code = &amodule->code [amodule->code_offsets [method_index] + 1];
3503         }
3504
3505         if (!amodule->methods_loaded) {
3506                 amodule_lock (amodule);
3507                 if (!amodule->methods_loaded) {
3508                         guint32 *loaded;
3509
3510                         loaded = g_new0 (guint32, amodule->info.nmethods / 32 + 1);
3511                         mono_memory_barrier ();
3512                         amodule->methods_loaded = loaded;
3513                 }
3514                 amodule_unlock (amodule);
3515         }
3516
3517         if ((amodule->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
3518                 return code;
3519
3520         if (mono_last_aot_method != -1) {
3521                 if (mono_jit_stats.methods_aot >= mono_last_aot_method)
3522                                 return NULL;
3523                 else if (mono_jit_stats.methods_aot == mono_last_aot_method - 1) {
3524                         if (!method)
3525                                 method = mono_get_method (image, token, NULL);
3526                         if (method) {
3527                                 char *name = mono_method_full_name (method, TRUE);
3528                                 g_print ("LAST AOT METHOD: %s.\n", name);
3529                                 g_free (name);
3530                         } else {
3531                                 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
3532                         }
3533                 }
3534         }
3535
3536         p = info;
3537
3538         if (method) {
3539                 klass = method->klass;
3540                 decode_klass_ref (amodule, p, &p);
3541         } else {
3542                 klass = decode_klass_ref (amodule, p, &p);
3543         }
3544
3545         if (amodule->info.opts & MONO_OPT_SHARED)
3546                 used_strings = decode_value (p, &p);
3547         else
3548                 used_strings = 0;
3549
3550         for (i = 0; i < used_strings; i++) {
3551                 guint token = decode_value (p, &p);
3552                 mono_ldstr (mono_get_root_domain (), image, mono_metadata_token_index (token));
3553         }
3554
3555         if (amodule->info.opts & MONO_OPT_SHARED)       
3556                 keep_patches = FALSE;
3557
3558         n_patches = decode_value (p, &p);
3559
3560         keep_patches = FALSE;
3561
3562         if (n_patches) {
3563                 MonoJumpInfo *patches;
3564                 guint32 *got_slots;
3565
3566                 if (keep_patches)
3567                         mp = domain->mp;
3568                 else
3569                         mp = mono_mempool_new ();
3570
3571                 patches = load_patch_info (amodule, mp, n_patches, &got_slots, p, &p);
3572                 if (patches == NULL)
3573                         goto cleanup;
3574
3575                 for (pindex = 0; pindex < n_patches; ++pindex) {
3576                         MonoJumpInfo *ji = &patches [pindex];
3577                         gpointer addr;
3578
3579                         /*
3580                          * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
3581                          * been initialized by load_method () for a static cctor before the cctor has
3582                          * finished executing (#23242).
3583                          */
3584                         if (!amodule->got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
3585                                 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE);
3586                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
3587                                         addr = mono_create_ftnptr (domain, addr);
3588                                 mono_memory_barrier ();
3589                                 amodule->got [got_slots [pindex]] = addr;
3590                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
3591                                         register_jump_target_got_slot (domain, ji->data.method, &(amodule->got [got_slots [pindex]]));
3592                         }
3593                         ji->type = MONO_PATCH_INFO_NONE;
3594                 }
3595
3596                 g_free (got_slots);
3597
3598                 if (!keep_patches)
3599                         mono_mempool_destroy (mp);
3600         }
3601
3602         if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
3603                 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3604
3605         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3606                 char *full_name;
3607
3608                 if (!method)
3609                         method = mono_get_method (image, token, NULL);
3610
3611                 full_name = mono_method_full_name (method, TRUE);
3612
3613                 if (!jinfo)
3614                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3615
3616                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
3617                 g_free (full_name);
3618         }
3619
3620         amodule_lock (amodule);
3621
3622         InterlockedIncrement (&mono_jit_stats.methods_aot);
3623
3624         amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
3625
3626         init_plt (amodule);
3627
3628         if (method && method->wrapper_type)
3629                 g_hash_table_insert (amodule->method_to_code, method, code);
3630
3631         amodule_unlock (amodule);
3632
3633         if (mono_profiler_get_events () & MONO_PROFILE_JIT_COMPILATION) {
3634                 MonoJitInfo *jinfo;
3635
3636                 if (!method) {
3637                         method = mono_get_method (image, token, NULL);
3638                         g_assert (method);
3639                 }
3640                 mono_profiler_method_jit (method);
3641                 jinfo = mono_jit_info_table_find (domain, (char*)code);
3642                 g_assert (jinfo);
3643                 mono_profiler_method_end_jit (method, jinfo, MONO_PROFILE_OK);
3644         }
3645
3646         if (from_plt && klass && !klass->generic_container)
3647                 mono_runtime_class_init (mono_class_vtable (domain, klass));
3648
3649         return code;
3650
3651  cleanup:
3652         /* FIXME: The space in domain->mp is wasted */  
3653         if (amodule->info.opts & MONO_OPT_SHARED)
3654                 /* No need to cache patches */
3655                 mono_mempool_destroy (mp);
3656
3657         if (jinfo)
3658                 g_free (jinfo);
3659
3660         return NULL;
3661 }
3662
3663 static guint32
3664 find_extra_method_in_amodule (MonoAotModule *amodule, MonoMethod *method)
3665 {
3666         guint32 table_size, entry_size, hash;
3667         guint32 *table, *entry;
3668         guint32 index;
3669         static guint32 n_extra_decodes;
3670
3671         if (!amodule || amodule->out_of_date)
3672                 return 0xffffff;
3673
3674         table_size = amodule->extra_method_table [0];
3675         table = amodule->extra_method_table + 1;
3676         entry_size = 3;
3677
3678         hash = mono_aot_method_hash (method) % table_size;
3679
3680         entry = &table [hash * entry_size];
3681
3682         if (entry [0] == 0)
3683                 return 0xffffff;
3684
3685         index = 0xffffff;
3686         while (TRUE) {
3687                 guint32 key = entry [0];
3688                 guint32 value = entry [1];
3689                 guint32 next = entry [entry_size - 1];
3690                 MonoMethod *m;
3691                 guint8 *p, *orig_p;
3692
3693                 p = amodule->blob + key;
3694                 orig_p = p;
3695
3696                 amodule_lock (amodule);
3697                 if (!amodule->method_ref_to_method)
3698                         amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
3699                 m = g_hash_table_lookup (amodule->method_ref_to_method, p);
3700                 amodule_unlock (amodule);
3701                 if (!m) {
3702                         m = decode_resolve_method_ref_with_target (amodule, method, p, &p);
3703                         if (m) {
3704                                 amodule_lock (amodule);
3705                                 g_hash_table_insert (amodule->method_ref_to_method, orig_p, m);
3706                                 amodule_unlock (amodule);
3707                         }
3708                 }
3709                 if (m == method) {
3710                         index = value;
3711                         break;
3712                 }
3713
3714                 /* Special case: wrappers of shared generic methods */
3715                 if (m && method->wrapper_type && m->wrapper_type == m->wrapper_type &&
3716                         method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
3717                         MonoMethod *w1 = mono_marshal_method_from_wrapper (method);
3718                         MonoMethod *w2 = mono_marshal_method_from_wrapper (m);
3719
3720                         if (w1->is_inflated && ((MonoMethodInflated *)w1)->declaring == w2) {
3721                                 index = value;
3722                                 break;
3723                         }
3724                 }
3725
3726                 /* Methods decoded needlessly */
3727                 if (m) {
3728                         //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
3729                         n_extra_decodes ++;
3730                 }
3731
3732                 if (next != 0)
3733                         entry = &table [next * entry_size];
3734                 else
3735                         break;
3736         }
3737
3738         return index;
3739 }
3740
3741 static void
3742 add_module_cb (gpointer key, gpointer value, gpointer user_data)
3743 {
3744         g_ptr_array_add ((GPtrArray*)user_data, value);
3745 }
3746
3747 /*
3748  * find_extra_method:
3749  *
3750  *   Try finding METHOD in the extra_method table in all AOT images.
3751  * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
3752  * module where the method was found.
3753  */
3754 static guint32
3755 find_extra_method (MonoMethod *method, MonoAotModule **out_amodule)
3756 {
3757         guint32 index;
3758         GPtrArray *modules;
3759         int i;
3760
3761         /* Try the method's module first */
3762         *out_amodule = method->klass->image->aot_module;
3763         index = find_extra_method_in_amodule (method->klass->image->aot_module, method);
3764         if (index != 0xffffff)
3765                 return index;
3766
3767         /* 
3768          * Try all other modules.
3769          * This is needed because generic instances klass->image points to the image
3770          * containing the generic definition, but the native code is generated to the
3771          * AOT image which contains the reference.
3772          */
3773
3774         /* Make a copy to avoid doing the search inside the aot lock */
3775         modules = g_ptr_array_new ();
3776         mono_aot_lock ();
3777         g_hash_table_foreach (aot_modules, add_module_cb, modules);
3778         mono_aot_unlock ();
3779
3780         index = 0xffffff;
3781         for (i = 0; i < modules->len; ++i) {
3782                 MonoAotModule *amodule = g_ptr_array_index (modules, i);
3783
3784                 if (amodule != method->klass->image->aot_module)
3785                         index = find_extra_method_in_amodule (amodule, method);
3786                 if (index != 0xffffff) {
3787                         *out_amodule = amodule;
3788                         break;
3789                 }
3790         }
3791         
3792         g_ptr_array_free (modules, TRUE);
3793
3794         return index;
3795 }
3796
3797 /*
3798  * mono_aot_get_method:
3799  *
3800  *   Return a pointer to the AOTed native code for METHOD if it can be found,
3801  * NULL otherwise.
3802  * On platforms with function pointers, this doesn't return a function pointer.
3803  */
3804 gpointer
3805 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
3806 {
3807         MonoClass *klass = method->klass;
3808         guint32 method_index;
3809         MonoAotModule *amodule = klass->image->aot_module;
3810         guint8 *code;
3811
3812         if (enable_aot_cache && !amodule && domain->entry_assembly && klass->image == mono_defaults.corlib) {
3813                 /* This cannot be AOTed during startup, so do it now */
3814                 if (!mscorlib_aot_loaded) {
3815                         mscorlib_aot_loaded = TRUE;
3816                         load_aot_module (klass->image->assembly, NULL);
3817                         amodule = klass->image->aot_module;
3818                 }
3819         }
3820
3821         if (!amodule)
3822                 return NULL;
3823
3824         if (amodule->out_of_date)
3825                 return NULL;
3826
3827         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
3828                 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
3829                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
3830                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
3831                 return NULL;
3832
3833         /*
3834          * Use the original method instead of its invoke-with-check wrapper.
3835          * This is not a problem when using full-aot, since it doesn't support
3836          * remoting.
3837          */
3838         if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
3839                 return mono_aot_get_method (domain, mono_marshal_method_from_wrapper (method));
3840
3841         g_assert (klass->inited);
3842
3843         /* Find method index */
3844         method_index = 0xffffff;
3845         if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
3846                 /* 
3847                  * For generic methods, we store the fully shared instance in place of the
3848                  * original method.
3849                  */
3850                 method = mono_method_get_declaring_generic_method (method);
3851                 method_index = mono_metadata_token_index (method->token) - 1;
3852         } else if (method->is_inflated || !method->token) {
3853                 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
3854                 amodule_lock (amodule);
3855                 code = g_hash_table_lookup (amodule->method_to_code, method);
3856                 amodule_unlock (amodule);
3857                 if (code)
3858                         return code;
3859
3860                 method_index = find_extra_method (method, &amodule);
3861                 /*
3862                  * Special case the ICollection<T> wrappers for arrays, as they cannot
3863                  * be statically enumerated, and each wrapper ends up calling the same
3864                  * method in Array.
3865                  */
3866                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && method->klass->rank && strstr (method->name, "System.Collections.Generic")) {
3867                         MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
3868
3869                         code = mono_aot_get_method (domain, m);
3870                         if (code)
3871                                 return code;
3872                 }
3873
3874                 /*
3875                  * Special case Array.GetGenericValueImpl which is a generic icall.
3876                  * Generic sharing currently can't handle it, but the icall returns data using
3877                  * an out parameter, so the managed-to-native wrappers can share the same code.
3878                  */
3879                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
3880                         MonoMethod *m;
3881                         MonoGenericContext ctx;
3882                         MonoType *args [16];
3883
3884                         if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
3885                                 /* Avoid recursion */
3886                                 return NULL;
3887
3888                         m = mono_class_get_method_from_name (mono_defaults.array_class, "GetGenericValueImpl", 2);
3889                         g_assert (m);
3890
3891                         memset (&ctx, 0, sizeof (ctx));
3892                         args [0] = &mono_defaults.object_class->byval_arg;
3893                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
3894
3895                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method (m, &ctx), TRUE, TRUE);
3896
3897                         /* 
3898                          * Get the code for the <object> instantiation which should be emitted into
3899                          * the mscorlib aot image by the AOT compiler.
3900                          */
3901                         code = mono_aot_get_method (domain, m);
3902                         if (code)
3903                                 return code;
3904                 }
3905
3906                 /* Same for CompareExchange<T> and Exchange<T> */
3907                 /* Same for Volatile.Read<T>/Write<T> */
3908                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass->image == mono_defaults.corlib && 
3909                         ((!strcmp (method->klass->name_space, "System.Threading") && !strcmp (method->klass->name, "Interlocked") && (!strcmp (method->name, "CompareExchange") || !strcmp (method->name, "Exchange")) && MONO_TYPE_IS_REFERENCE (mono_method_signature (method)->params [1])) ||
3910                          (!strcmp (method->klass->name_space, "System.Threading") && !strcmp (method->klass->name, "Volatile") && (!strcmp (method->name, "Read") && MONO_TYPE_IS_REFERENCE (mono_method_signature (method)->ret))) ||
3911                          (!strcmp (method->klass->name_space, "System.Threading") && !strcmp (method->klass->name, "Volatile") && (!strcmp (method->name, "Write") && MONO_TYPE_IS_REFERENCE (mono_method_signature (method)->params [1]))))) {
3912                         MonoMethod *m;
3913                         MonoGenericContext ctx;
3914                         MonoType *args [16];
3915                         gpointer iter = NULL;
3916
3917                         while ((m = mono_class_get_methods (method->klass, &iter))) {
3918                                 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
3919                                         break;
3920                         }
3921                         g_assert (m);
3922
3923                         memset (&ctx, 0, sizeof (ctx));
3924                         args [0] = &mono_defaults.object_class->byval_arg;
3925                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
3926
3927                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method (m, &ctx), TRUE, TRUE);
3928
3929                         /* Avoid recursion */
3930                         if (method == m)
3931                                 return NULL;
3932
3933                         /* 
3934                          * Get the code for the <object> instantiation which should be emitted into
3935                          * the mscorlib aot image by the AOT compiler.
3936                          */
3937                         code = mono_aot_get_method (domain, m);
3938                         if (code)
3939                                 return code;
3940                 }
3941
3942                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
3943                         /* Partial sharing */
3944                         MonoMethod *shared;
3945
3946                         shared = mini_get_shared_method (method);
3947                         method_index = find_extra_method (shared, &amodule);
3948                         if (method_index != 0xffffff)
3949                                 method = shared;
3950                 }
3951
3952                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
3953                         /* gsharedvt */
3954                         /* Use the all-vt shared method since this is what was AOTed */
3955                         method_index = find_extra_method (mini_get_shared_method_full (method, TRUE, TRUE), &amodule);
3956                         if (method_index != 0xffffff)
3957                                 method = mini_get_shared_method_full (method, TRUE, FALSE);
3958                 }
3959
3960                 if (method_index == 0xffffff) {
3961                         if (mono_aot_only && mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3962                                 char *full_name;
3963
3964                                 full_name = mono_method_full_name (method, TRUE);
3965                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.", full_name);
3966                                 g_free (full_name);
3967                         }
3968                         return NULL;
3969                 }
3970
3971                 if (method_index == 0xffffff)
3972                         return NULL;
3973
3974                 /* Needed by find_jit_info */
3975                 amodule_lock (amodule);
3976                 if (!amodule->extra_methods)
3977                         amodule->extra_methods = g_hash_table_new (NULL, NULL);
3978                 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), method);
3979                 amodule_unlock (amodule);
3980         } else {
3981                 /* Common case */
3982                 method_index = mono_metadata_token_index (method->token) - 1;
3983         }
3984
3985         return load_method (domain, amodule, klass->image, method, method->token, method_index);
3986 }
3987
3988 /**
3989  * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
3990  * method.
3991  */
3992 gpointer
3993 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token)
3994 {
3995         MonoAotModule *aot_module = image->aot_module;
3996         int method_index;
3997
3998         if (!aot_module)
3999                 return NULL;
4000
4001         method_index = mono_metadata_token_index (token) - 1;
4002
4003         return load_method (domain, aot_module, image, NULL, token, method_index);
4004 }
4005
4006 typedef struct {
4007         guint8 *addr;
4008         gboolean res;
4009 } IsGotEntryUserData;
4010
4011 static void
4012 check_is_got_entry (gpointer key, gpointer value, gpointer user_data)
4013 {
4014         IsGotEntryUserData *data = (IsGotEntryUserData*)user_data;
4015         MonoAotModule *aot_module = (MonoAotModule*)value;
4016
4017         if (aot_module->got && (data->addr >= (guint8*)(aot_module->got)) && (data->addr < (guint8*)(aot_module->got + aot_module->info.got_size)))
4018                 data->res = TRUE;
4019 }
4020
4021 gboolean
4022 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
4023 {
4024         IsGotEntryUserData user_data;
4025
4026         if (!aot_modules)
4027                 return FALSE;
4028
4029         user_data.addr = addr;
4030         user_data.res = FALSE;
4031         mono_aot_lock ();
4032         g_hash_table_foreach (aot_modules, check_is_got_entry, &user_data);
4033         mono_aot_unlock ();
4034         
4035         return user_data.res;
4036 }
4037
4038 typedef struct {
4039         guint8 *addr;
4040         MonoAotModule *module;
4041 } FindAotModuleUserData;
4042
4043 static void
4044 find_aot_module_cb (gpointer key, gpointer value, gpointer user_data)
4045 {
4046         FindAotModuleUserData *data = (FindAotModuleUserData*)user_data;
4047         MonoAotModule *aot_module = (MonoAotModule*)value;
4048
4049         if ((data->addr >= (guint8*)(aot_module->code)) && (data->addr < (guint8*)(aot_module->code_end)))
4050                 data->module = aot_module;
4051 }
4052
4053 static inline MonoAotModule*
4054 find_aot_module (guint8 *code)
4055 {
4056         FindAotModuleUserData user_data;
4057
4058         if (!aot_modules)
4059                 return NULL;
4060
4061         /* Reading these need no locking */
4062         if (((gsize)code < aot_code_low_addr) || ((gsize)code > aot_code_high_addr))
4063                 return NULL;
4064
4065         user_data.addr = code;
4066         user_data.module = NULL;
4067                 
4068         mono_aot_lock ();
4069         g_hash_table_foreach (aot_modules, find_aot_module_cb, &user_data);
4070         mono_aot_unlock ();
4071         
4072         return user_data.module;
4073 }
4074
4075 void
4076 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
4077 {
4078         MonoAotModule *amodule;
4079
4080         /*
4081          * Since AOT code is only used in the root domain, 
4082          * mono_domain_get () != mono_get_root_domain () means the calling method
4083          * is AppDomain:InvokeInDomain, so this is the same check as in 
4084          * mono_method_same_domain () but without loading the metadata for the method.
4085          */
4086         if (mono_domain_get () == mono_get_root_domain ()) {
4087                 if (!got) {
4088                         amodule = find_aot_module (code);
4089                         if (amodule)
4090                                 got = amodule->got;
4091                 }
4092                 mono_arch_patch_plt_entry (plt_entry, got, regs, addr);
4093         }
4094 }
4095
4096 /*
4097  * mono_aot_plt_resolve:
4098  *
4099  *   This function is called by the entries in the PLT to resolve the actual method that
4100  * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4101  * Returns NULL if the something cannot be loaded.
4102  */
4103 gpointer
4104 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
4105 {
4106 #ifdef MONO_ARCH_AOT_SUPPORTED
4107         guint8 *p, *target, *plt_entry;
4108         MonoJumpInfo ji;
4109         MonoAotModule *module = (MonoAotModule*)aot_module;
4110         gboolean res, no_ftnptr = FALSE;
4111         MonoMemPool *mp;
4112         gboolean using_gsharedvt = FALSE;
4113
4114         //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4115
4116         p = &module->blob [plt_info_offset];
4117
4118         ji.type = decode_value (p, &p);
4119
4120         mp = mono_mempool_new_size (512);
4121         res = decode_patch (module, mp, &ji, p, &p);
4122
4123         if (!res) {
4124                 mono_mempool_destroy (mp);
4125                 return NULL;
4126         }
4127
4128 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4129         using_gsharedvt = TRUE;
4130 #endif
4131
4132         /* 
4133          * Avoid calling resolve_patch_target in the full-aot case if possible, since
4134          * it would create a trampoline, and we don't need that.
4135          * We could do this only if the method does not need the special handling
4136          * in mono_magic_trampoline ().
4137          */
4138         if (mono_aot_only && ji.type == MONO_PATCH_INFO_METHOD && !ji.data.method->is_generic && !mono_method_check_context_used (ji.data.method) && !(ji.data.method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) &&
4139                 !mono_method_needs_static_rgctx_invoke (ji.data.method, FALSE) && !using_gsharedvt) {
4140                 target = mono_jit_compile_method (ji.data.method);
4141                 no_ftnptr = TRUE;
4142         } else {
4143                 target = mono_resolve_patch_target (NULL, mono_domain_get (), NULL, &ji, TRUE);
4144         }
4145
4146         /*
4147          * The trampoline expects us to return a function descriptor on platforms which use
4148          * it, but resolve_patch_target returns a direct function pointer for some type of
4149          * patches, so have to translate between the two.
4150          * FIXME: Clean this up, but how ?
4151          */
4152         if (ji.type == MONO_PATCH_INFO_ABS || ji.type == MONO_PATCH_INFO_INTERNAL_METHOD || ji.type == MONO_PATCH_INFO_CLASS_INIT || ji.type == MONO_PATCH_INFO_ICALL_ADDR || ji.type == MONO_PATCH_INFO_JIT_ICALL_ADDR || ji.type == MONO_PATCH_INFO_RGCTX_FETCH) {
4153                 /* These should already have a function descriptor */
4154 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4155                 /* Our function descriptors have a 0 environment, gcc created ones don't */
4156                 if (ji.type != MONO_PATCH_INFO_INTERNAL_METHOD && ji.type != MONO_PATCH_INFO_JIT_ICALL_ADDR && ji.type != MONO_PATCH_INFO_ICALL_ADDR)
4157                         g_assert (((gpointer*)target) [2] == 0);
4158 #endif
4159                 /* Empty */
4160         } else if (!no_ftnptr) {
4161 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4162                 g_assert (((gpointer*)target) [2] != 0);
4163 #endif
4164                 target = mono_create_ftnptr (mono_domain_get (), target);
4165         }
4166
4167         mono_mempool_destroy (mp);
4168
4169         /* Patch the PLT entry with target which might be the actual method not a trampoline */
4170         plt_entry = mono_aot_get_plt_entry (code);
4171         g_assert (plt_entry);
4172         mono_aot_patch_plt_entry (code, plt_entry, module->got, NULL, target);
4173
4174         return target;
4175 #else
4176         g_assert_not_reached ();
4177         return NULL;
4178 #endif
4179 }
4180
4181 /**
4182  * init_plt:
4183  *
4184  *   Initialize the PLT table of the AOT module. Called lazily when the first AOT
4185  * method in the module is loaded to avoid committing memory by writing to it.
4186  * LOCKING: Assumes the AMODULE lock is held.
4187  */
4188 static void
4189 init_plt (MonoAotModule *amodule)
4190 {
4191         int i;
4192         gpointer tramp;
4193
4194         if (amodule->plt_inited)
4195                 return;
4196
4197         tramp = mono_create_specific_trampoline (amodule, MONO_TRAMPOLINE_AOT_PLT, mono_get_root_domain (), NULL);
4198
4199         /*
4200          * Initialize the PLT entries in the GOT to point to the default targets.
4201          */
4202
4203         tramp = mono_create_ftnptr (mono_domain_get (), tramp);
4204          for (i = 1; i < amodule->info.plt_size; ++i)
4205                  /* All the default entries point to the AOT trampoline */
4206                  ((gpointer*)amodule->got)[amodule->info.plt_got_offset_base + i] = tramp;
4207
4208         amodule->plt_inited = TRUE;
4209 }
4210
4211 /*
4212  * mono_aot_get_plt_entry:
4213  *
4214  *   Return the address of the PLT entry called by the code at CODE if exists.
4215  */
4216 guint8*
4217 mono_aot_get_plt_entry (guint8 *code)
4218 {
4219         MonoAotModule *amodule = find_aot_module (code);
4220         guint8 *target = NULL;
4221
4222         if (!amodule)
4223                 return NULL;
4224
4225 #ifdef TARGET_ARM
4226         if (amodule->thumb_end && code < amodule->thumb_end) {
4227                 return mono_arm_get_thumb_plt_entry (code);
4228         }
4229 #endif
4230
4231 #ifdef MONO_ARCH_AOT_SUPPORTED
4232         target = mono_arch_get_call_target (code);
4233 #else
4234         g_assert_not_reached ();
4235 #endif
4236
4237 #ifdef MONOTOUCH
4238         while (target != NULL) {
4239                 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4240                         return target;
4241                 
4242                 // Add 4 since mono_arch_get_call_target assumes we're passing
4243                 // the instruction after the actual branch instruction.
4244                 target = mono_arch_get_call_target (target + 4);
4245         }
4246
4247         return NULL;
4248 #else
4249         if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4250                 return target;
4251         else
4252                 return NULL;
4253 #endif
4254 }
4255
4256 /*
4257  * mono_aot_get_plt_info_offset:
4258  *
4259  *   Return the PLT info offset belonging to the plt entry called by CODE.
4260  */
4261 guint32
4262 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
4263 {
4264         guint8 *plt_entry = mono_aot_get_plt_entry (code);
4265
4266         g_assert (plt_entry);
4267
4268         /* The offset is embedded inside the code after the plt entry */
4269 #ifdef MONO_ARCH_AOT_SUPPORTED
4270         return mono_arch_get_plt_info_offset (plt_entry, regs, code);
4271 #else
4272         g_assert_not_reached ();
4273         return 0;
4274 #endif
4275 }
4276
4277 static gpointer
4278 mono_create_ftnptr_malloc (guint8 *code)
4279 {
4280 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4281         MonoPPCFunctionDescriptor *ftnptr = g_malloc0 (sizeof (MonoPPCFunctionDescriptor));
4282
4283         ftnptr->code = code;
4284         ftnptr->toc = NULL;
4285         ftnptr->env = NULL;
4286
4287         return ftnptr;
4288 #else
4289         return code;
4290 #endif
4291 }
4292
4293 /*
4294  * mono_aot_register_jit_icall:
4295  *
4296  *   Register a JIT icall which is called by trampolines in full-aot mode. This should
4297  * be called from mono_arch_init () during startup.
4298  */
4299 void
4300 mono_aot_register_jit_icall (const char *name, gpointer addr)
4301 {
4302         /* No need for locking */
4303         if (!aot_jit_icall_hash)
4304                 aot_jit_icall_hash = g_hash_table_new (g_str_hash, g_str_equal);
4305         g_hash_table_insert (aot_jit_icall_hash, (char*)name, addr);
4306 }
4307
4308 /*
4309  * load_function_full:
4310  *
4311  *   Load the function named NAME from the aot image. 
4312  */
4313 static gpointer
4314 load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **out_tinfo)
4315 {
4316         char *symbol;
4317         guint8 *p;
4318         int n_patches, pindex;
4319         MonoMemPool *mp;
4320         gpointer code;
4321         guint32 info_offset;
4322
4323         /* Load the code */
4324
4325         symbol = g_strdup_printf ("%s", name);
4326         find_symbol (amodule->sofile, amodule->globals, symbol, (gpointer *)&code);
4327         g_free (symbol);
4328         if (!code)
4329                 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name, amodule->aot_name);
4330
4331         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND function '%s' in AOT file '%s'.", name, amodule->aot_name);
4332
4333         /* Load info */
4334
4335         symbol = g_strdup_printf ("%s_p", name);
4336         find_symbol (amodule->sofile, amodule->globals, symbol, (gpointer *)&p);
4337         g_free (symbol);
4338         if (!p)
4339                 /* Nothing to patch */
4340                 return code;
4341
4342         info_offset = *(guint32*)p;
4343         if (out_tinfo) {
4344                 MonoTrampInfo *tinfo;
4345                 guint32 code_size, uw_info_len, uw_offset;
4346                 guint8 *uw_info;
4347                 /* Construct a MonoTrampInfo from the data in the AOT image */
4348
4349                 p += sizeof (guint32);
4350                 code_size = *(guint32*)p;
4351                 p += sizeof (guint32);
4352                 uw_offset = *(guint32*)p;
4353                 uw_info = amodule->unwind_info + uw_offset;
4354                 uw_info_len = decode_value (uw_info, &uw_info);
4355
4356                 tinfo = g_new0 (MonoTrampInfo, 1);
4357                 tinfo->code = code;
4358                 tinfo->code_size = code_size;
4359                 tinfo->uw_info = uw_info;
4360                 tinfo->uw_info_len = uw_info_len;
4361
4362                 *out_tinfo = tinfo;
4363         }
4364
4365         p = amodule->blob + info_offset;
4366
4367         /* Similar to mono_aot_load_method () */
4368
4369         n_patches = decode_value (p, &p);
4370
4371         if (n_patches) {
4372                 MonoJumpInfo *patches;
4373                 guint32 *got_slots;
4374
4375                 mp = mono_mempool_new ();
4376
4377                 patches = load_patch_info (amodule, mp, n_patches, &got_slots, p, &p);
4378                 g_assert (patches);
4379
4380                 for (pindex = 0; pindex < n_patches; ++pindex) {
4381                         MonoJumpInfo *ji = &patches [pindex];
4382                         gpointer target;
4383
4384                         if (amodule->got [got_slots [pindex]])
4385                                 continue;
4386
4387                         /*
4388                          * When this code is executed, the runtime may not be initalized yet, so
4389                          * resolve the patch info by hand.
4390                          */
4391                         if (ji->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
4392                                 if (!strcmp (ji->data.name, "mono_get_lmf_addr")) {
4393                                         target = mono_get_lmf_addr;
4394                                 } else if (!strcmp (ji->data.name, "mono_thread_force_interruption_checkpoint")) {
4395                                         target = mono_thread_force_interruption_checkpoint;
4396                                 } else if (!strcmp (ji->data.name, "mono_exception_from_token")) {
4397                                         target = mono_exception_from_token;
4398                                 } else if (!strcmp (ji->data.name, "mono_throw_exception")) {
4399                                         target = mono_get_throw_exception ();
4400                                 } else if (strstr (ji->data.name, "trampoline_func_") == ji->data.name) {
4401                                         int tramp_type2 = atoi (ji->data.name + strlen ("trampoline_func_"));
4402                                         target = (gpointer)mono_get_trampoline_func (tramp_type2);
4403                                 } else if (strstr (ji->data.name, "specific_trampoline_lazy_fetch_") == ji->data.name) {
4404                                         /* atoll is needed because the the offset is unsigned */
4405                                         guint32 slot;
4406                                         int res;
4407
4408                                         res = sscanf (ji->data.name, "specific_trampoline_lazy_fetch_%u", &slot);
4409                                         g_assert (res == 1);
4410                                         target = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
4411                                         target = mono_create_ftnptr_malloc (target);
4412                                 } else if (!strcmp (ji->data.name, "specific_trampoline_monitor_enter")) {
4413                                         target = mono_create_specific_trampoline (NULL, MONO_TRAMPOLINE_MONITOR_ENTER, mono_get_root_domain (), NULL);
4414                                         target = mono_create_ftnptr_malloc (target);
4415                                 } else if (!strcmp (ji->data.name, "specific_trampoline_monitor_exit")) {
4416                                         target = mono_create_specific_trampoline (NULL, MONO_TRAMPOLINE_MONITOR_EXIT, mono_get_root_domain (), NULL);
4417                                         target = mono_create_ftnptr_malloc (target);
4418                                 } else if (!strcmp (ji->data.name, "specific_trampoline_generic_class_init")) {
4419                                         target = mono_create_specific_trampoline (NULL, MONO_TRAMPOLINE_GENERIC_CLASS_INIT, mono_get_root_domain (), NULL);
4420                                         target = mono_create_ftnptr_malloc (target);
4421                                 } else if (!strcmp (ji->data.name, "mono_thread_get_and_clear_pending_exception")) {
4422                                         target = mono_thread_get_and_clear_pending_exception;
4423                                 } else if (strstr (ji->data.name, "generic_trampoline_")) {
4424                                         target = mono_aot_get_trampoline (ji->data.name);
4425                                 } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) {
4426                                         /* Registered by mono_arch_init () */
4427                                         target = g_hash_table_lookup (aot_jit_icall_hash, ji->data.name);
4428                                 } else {
4429                                         fprintf (stderr, "Unknown relocation '%s'\n", ji->data.name);
4430                                         g_assert_not_reached ();
4431                                         target = NULL;
4432                                 }
4433                         } else {
4434                                 /* Hopefully the code doesn't have patches which need method or 
4435                                  * domain to be set.
4436                                  */
4437                                 target = mono_resolve_patch_target (NULL, NULL, code, ji, FALSE);
4438                                 g_assert (target);
4439                         }
4440
4441                         amodule->got [got_slots [pindex]] = target;
4442                 }
4443
4444                 g_free (got_slots);
4445
4446                 mono_mempool_destroy (mp);
4447         }
4448
4449         return code;
4450 }
4451
4452 static gpointer
4453 load_function (MonoAotModule *amodule, const char *name)
4454 {
4455         return load_function_full (amodule, name, NULL);
4456 }
4457
4458 /*
4459  * Return the trampoline identified by NAME from the mscorlib AOT file.
4460  * On ppc64, this returns a function descriptor.
4461  */
4462 gpointer
4463 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
4464 {
4465         MonoImage *image;
4466         MonoAotModule *amodule;
4467
4468         image = mono_defaults.corlib;
4469         g_assert (image);
4470
4471         amodule = image->aot_module;
4472         g_assert (amodule);
4473
4474         return mono_create_ftnptr_malloc (load_function_full (amodule, name, out_tinfo));
4475 }
4476
4477 gpointer
4478 mono_aot_get_trampoline (const char *name)
4479 {
4480         return mono_aot_get_trampoline_full (name, NULL);
4481 }
4482
4483 #ifdef MONOTOUCH
4484 #include <mach/mach.h>
4485
4486 static TrampolinePage* trampoline_pages [MONO_AOT_TRAMP_NUM];
4487
4488 static unsigned char*
4489 get_new_trampoline_from_page (int tramp_type)
4490 {
4491         MonoAotModule *amodule;
4492         MonoImage *image;
4493         TrampolinePage *page;
4494         int count;
4495         void *tpage;
4496         vm_address_t addr, taddr;
4497         kern_return_t ret;
4498         vm_prot_t prot, max_prot;
4499         int psize, specific_trampoline_size;
4500         unsigned char *code;
4501
4502         specific_trampoline_size = 2 * sizeof (gpointer);
4503
4504         mono_aot_page_lock ();
4505         page = trampoline_pages [tramp_type];
4506         if (page && page->trampolines < page->trampolines_end) {
4507                 code = page->trampolines;
4508                 page->trampolines += specific_trampoline_size;
4509                 mono_aot_page_unlock ();
4510                 return code;
4511         }
4512         mono_aot_page_unlock ();
4513         psize = mono_pagesize ();
4514         /* the trampoline template page is in the mscorlib module */
4515         image = mono_defaults.corlib;
4516         g_assert (image);
4517
4518         amodule = image->aot_module;
4519         g_assert (amodule);
4520
4521         g_assert (amodule->info.tramp_page_size == psize);
4522
4523         if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
4524                 tpage = load_function (amodule, "specific_trampolines_page");
4525         else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
4526                 tpage = load_function (amodule, "rgctx_trampolines_page");
4527         else if (tramp_type == MONO_AOT_TRAMP_IMT_THUNK)
4528                 tpage = load_function (amodule, "imt_trampolines_page");
4529         else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
4530                 tpage = load_function (amodule, "gsharedvt_arg_trampolines_page");
4531         else
4532                 g_error ("Incorrect tramp type for trampolines page");
4533         g_assert (tpage);
4534         /*g_warning ("loaded trampolines page at %x", tpage);*/
4535
4536         /* avoid the unlikely case of looping forever */
4537         count = 40;
4538         page = NULL;
4539         while (page == NULL && count-- > 0) {
4540                 addr = 0;
4541                 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
4542                  * while the second will contain the trampolines.
4543                  */
4544                 ret = vm_allocate (mach_task_self (), &addr, psize * 2, VM_FLAGS_ANYWHERE);
4545                 if (ret != KERN_SUCCESS) {
4546                         g_error ("Cannot allocate memory for trampolines: %d", ret);
4547                         break;
4548                 }
4549                 /*g_warning ("allocated trampoline double page at %x", addr);*/
4550                 /* replace the second page with a remapped trampoline page */
4551                 taddr = addr + psize;
4552                 vm_deallocate (mach_task_self (), taddr, psize);
4553                 ret = vm_remap (mach_task_self (), &taddr, psize, 0, FALSE, mach_task_self(), (vm_address_t)tpage, FALSE, &prot, &max_prot, VM_INHERIT_SHARE);
4554                 if (ret != KERN_SUCCESS) {
4555                         /* someone else got the page, try again  */
4556                         vm_deallocate (mach_task_self (), addr, psize);
4557                         continue;
4558                 }
4559                 /*g_warning ("remapped trampoline page at %x", taddr);*/
4560
4561                 mono_aot_page_lock ();
4562                 page = trampoline_pages [tramp_type];
4563                 /* some other thread already allocated, so use that to avoid wasting memory */
4564                 if (page && page->trampolines < page->trampolines_end) {
4565                         code = page->trampolines;
4566                         page->trampolines += specific_trampoline_size;
4567                         mono_aot_page_unlock ();
4568                         vm_deallocate (mach_task_self (), addr, psize);
4569                         vm_deallocate (mach_task_self (), taddr, psize);
4570                         return code;
4571                 }
4572                 page = (TrampolinePage*)addr;
4573                 page->next = trampoline_pages [tramp_type];
4574                 trampoline_pages [tramp_type] = page;
4575                 page->trampolines = (void*)(taddr + amodule->info.tramp_page_code_offsets [tramp_type]);
4576                 page->trampolines_end = (void*)(taddr + psize - 64);
4577                 code = page->trampolines;
4578                 page->trampolines += specific_trampoline_size;
4579                 mono_aot_page_unlock ();
4580                 return code;
4581         }
4582         g_error ("Cannot allocate more trampoline pages: %d", ret);
4583         return NULL;
4584 }
4585
4586 #else
4587 static unsigned char*
4588 get_new_trampoline_from_page (int tramp_type)
4589 {
4590         g_error ("Page trampolines not supported.");
4591         return NULL;
4592 }
4593 #endif
4594
4595
4596 static gpointer
4597 get_new_specific_trampoline_from_page (gpointer tramp, gpointer arg)
4598 {
4599         void *code;
4600         gpointer *data;
4601
4602         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC);
4603
4604         data = (gpointer*)((char*)code - mono_pagesize ());
4605         data [0] = arg;
4606         data [1] = tramp;
4607         /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4608         return code;
4609
4610 }
4611
4612 static gpointer
4613 get_new_rgctx_trampoline_from_page (gpointer tramp, gpointer arg)
4614 {
4615         void *code;
4616         gpointer *data;
4617
4618         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX);
4619
4620         data = (gpointer*)((char*)code - mono_pagesize ());
4621         data [0] = arg;
4622         data [1] = tramp;
4623         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4624         return code;
4625
4626 }
4627
4628 static gpointer
4629 get_new_imt_trampoline_from_page (gpointer arg)
4630 {
4631         void *code;
4632         gpointer *data;
4633
4634         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT_THUNK);
4635
4636         data = (gpointer*)((char*)code - mono_pagesize ());
4637         data [0] = arg;
4638         /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
4639         return code;
4640
4641 }
4642
4643 static gpointer
4644 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp, gpointer arg)
4645 {
4646         void *code;
4647         gpointer *data;
4648
4649         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG);
4650
4651         data = (gpointer*)((char*)code - mono_pagesize ());
4652         data [0] = arg;
4653         data [1] = tramp;
4654         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4655         return code;
4656 }
4657
4658 /* Return a given kind of trampoline */
4659 static gpointer
4660 get_numerous_trampoline (MonoAotTrampoline tramp_type, int n_got_slots, MonoAotModule **out_amodule, guint32 *got_offset, guint32 *out_tramp_size)
4661 {
4662         MonoAotModule *amodule;
4663         int index, tramp_size;
4664         MonoImage *image;
4665
4666         /* Currently, we keep all trampolines in the mscorlib AOT image */
4667         image = mono_defaults.corlib;
4668         g_assert (image);
4669
4670         mono_aot_lock ();
4671
4672         amodule = image->aot_module;
4673         g_assert (amodule);
4674
4675         *out_amodule = amodule;
4676
4677 #ifdef MONOTOUCH
4678 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
4679 #else
4680 #define MONOTOUCH_TRAMPOLINES_ERROR ""
4681 #endif
4682         if (amodule->trampoline_index [tramp_type] == amodule->info.num_trampolines [tramp_type]) {
4683                 g_error ("Ran out of trampolines of type %d in '%s' (%d)%s\n", 
4684                                  tramp_type, image->name, amodule->info.num_trampolines [tramp_type], MONOTOUCH_TRAMPOLINES_ERROR);
4685         }
4686         index = amodule->trampoline_index [tramp_type] ++;
4687
4688         mono_aot_unlock ();
4689
4690         *got_offset = amodule->info.trampoline_got_offset_base [tramp_type] + (index * n_got_slots);
4691
4692         tramp_size = amodule->info.trampoline_size [tramp_type];
4693
4694         if (out_tramp_size)
4695                 *out_tramp_size = tramp_size;
4696
4697         return amodule->trampolines [tramp_type] + (index * tramp_size);
4698 }
4699
4700 /*
4701  * Return a specific trampoline from the AOT file.
4702  */
4703 gpointer
4704 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
4705 {
4706         MonoAotModule *amodule;
4707         guint32 got_offset, tramp_size;
4708         guint8 *code, *tramp;
4709         static gpointer generic_trampolines [MONO_TRAMPOLINE_NUM];
4710         static gboolean inited;
4711         static guint32 num_trampolines;
4712
4713         if (!inited) {
4714                 mono_aot_lock ();
4715
4716                 if (!inited) {
4717                         mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &num_trampolines);
4718                         inited = TRUE;
4719                 }
4720
4721                 mono_aot_unlock ();
4722         }
4723
4724         num_trampolines ++;
4725
4726         if (!generic_trampolines [tramp_type]) {
4727                 char *symbol;
4728
4729                 symbol = mono_get_generic_trampoline_name (tramp_type);
4730                 generic_trampolines [tramp_type] = mono_aot_get_trampoline (symbol);
4731                 g_free (symbol);
4732         }
4733
4734         tramp = generic_trampolines [tramp_type];
4735         g_assert (tramp);
4736
4737         if (USE_PAGE_TRAMPOLINES) {
4738                 code = get_new_specific_trampoline_from_page (tramp, arg1);
4739                 tramp_size = 8;
4740         } else {
4741                 code = get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC, 2, &amodule, &got_offset, &tramp_size);
4742
4743                 amodule->got [got_offset] = tramp;
4744                 amodule->got [got_offset + 1] = arg1;
4745         }
4746
4747         if (code_len)
4748                 *code_len = tramp_size;
4749
4750         return code;
4751 }
4752
4753 gpointer
4754 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
4755 {
4756         MonoAotModule *amodule;
4757         guint8 *code;
4758         guint32 got_offset;
4759
4760         if (USE_PAGE_TRAMPOLINES) {
4761                 code = get_new_rgctx_trampoline_from_page (addr, ctx);
4762         } else {
4763                 code = get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX, 2, &amodule, &got_offset, NULL);
4764
4765                 amodule->got [got_offset] = ctx;
4766                 amodule->got [got_offset + 1] = addr; 
4767         }
4768
4769         /* The caller expects an ftnptr */
4770         return mono_create_ftnptr (mono_domain_get (), code);
4771 }
4772
4773 gpointer
4774 mono_aot_get_unbox_trampoline (MonoMethod *method)
4775 {
4776         guint32 method_index = mono_metadata_token_index (method->token) - 1;
4777         MonoAotModule *amodule;
4778         gpointer code;
4779         guint32 *ut, *ut_end, *entry;
4780         int low, high, entry_index;
4781
4782         if (method->is_inflated && !mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
4783                 method_index = find_extra_method (method, &amodule);
4784                 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
4785                         MonoMethod *shared = mini_get_shared_method_full (method, TRUE, TRUE);
4786                         method_index = find_extra_method (shared, &amodule);
4787                 }
4788                 g_assert (method_index != 0xffffff);
4789         } else {
4790                 amodule = method->klass->image->aot_module;
4791                 g_assert (amodule);
4792         }
4793
4794         ut = amodule->unbox_trampolines;
4795         ut_end = amodule->unbox_trampolines_end;
4796
4797         /* Do a binary search in the sorted table */
4798         code = NULL;
4799         low = 0;
4800         high = (ut_end - ut) / 2;
4801         while (low < high) {
4802                 entry_index = (low + high) / 2;
4803                 entry = &ut [(entry_index * 2)];
4804                 if (entry [0] < method_index) {
4805                         low = entry_index + 1;
4806                 } else if (entry [0] > method_index) {
4807                         high = entry_index;
4808                 } else {
4809                         if (amodule->info.flags & MONO_AOT_FILE_FLAG_DIRECT_METHOD_ADDRESSES)
4810                                 code = get_arm_bl_target (entry + 1);
4811                         else
4812                                 code = amodule->code + entry [1];
4813                         break;
4814                 }
4815         }
4816         g_assert (code);
4817
4818         /* The caller expects an ftnptr */
4819         return mono_create_ftnptr (mono_domain_get (), code);
4820 }
4821
4822 gpointer
4823 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
4824 {
4825         char *symbol;
4826         gpointer code;
4827         MonoAotModule *amodule = mono_defaults.corlib->aot_module;
4828         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
4829         static int count = 0;
4830
4831         count ++;
4832         if (index >= amodule->info.num_rgctx_fetch_trampolines) {
4833                 static gpointer addr;
4834                 gpointer *info;
4835
4836                 /*
4837                  * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
4838                  */
4839                 if (!addr)
4840                         addr = load_function (amodule, "rgctx_fetch_trampoline_general");
4841                 info = mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer) * 2);
4842                 info [0] = GUINT_TO_POINTER (slot);
4843                 info [1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
4844                 code = mono_aot_get_static_rgctx_trampoline (info, addr);
4845                 return mono_create_ftnptr (mono_domain_get (), code);
4846         }
4847
4848         symbol = mono_get_rgctx_fetch_trampoline_name (slot);
4849         code = load_function (mono_defaults.corlib->aot_module, symbol);
4850         g_free (symbol);
4851         /* The caller expects an ftnptr */
4852         return mono_create_ftnptr (mono_domain_get (), code);
4853 }
4854
4855 gpointer
4856 mono_aot_get_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
4857 {
4858         guint32 got_offset;
4859         gpointer code;
4860         gpointer *buf;
4861         int i, index, real_count;
4862         MonoAotModule *amodule;
4863
4864         real_count = 0;
4865         for (i = 0; i < count; ++i) {
4866                 MonoIMTCheckItem *item = imt_entries [i];
4867
4868                 if (item->is_equals)
4869                         real_count ++;
4870         }
4871
4872         /* Save the entries into an array */
4873         buf = mono_domain_alloc (domain, (real_count + 1) * 2 * sizeof (gpointer));
4874         index = 0;
4875         for (i = 0; i < count; ++i) {
4876                 MonoIMTCheckItem *item = imt_entries [i];               
4877
4878                 if (!item->is_equals)
4879                         continue;
4880
4881                 g_assert (item->key);
4882
4883                 buf [(index * 2)] = item->key;
4884                 if (item->has_target_code) {
4885                         gpointer *p = mono_domain_alloc (domain, sizeof (gpointer));
4886                         *p = item->value.target_code;
4887                         buf [(index * 2) + 1] = p;
4888                 } else {
4889                         buf [(index * 2) + 1] = &(vtable->vtable [item->value.vtable_slot]);
4890                 }
4891                 index ++;
4892         }
4893         buf [(index * 2)] = NULL;
4894         buf [(index * 2) + 1] = fail_tramp;
4895         
4896         if (USE_PAGE_TRAMPOLINES) {
4897                 code = get_new_imt_trampoline_from_page (buf);
4898         } else {
4899                 code = get_numerous_trampoline (MONO_AOT_TRAMP_IMT_THUNK, 1, &amodule, &got_offset, NULL);
4900
4901                 amodule->got [got_offset] = buf;
4902         }
4903
4904         return code;
4905 }
4906
4907 gpointer
4908 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
4909 {
4910         MonoAotModule *amodule;
4911         guint8 *code;
4912         guint32 got_offset;
4913
4914         if (USE_PAGE_TRAMPOLINES) {
4915                 code = get_new_gsharedvt_arg_trampoline_from_page (addr, arg);
4916         } else {
4917                 code = get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG, 2, &amodule, &got_offset, NULL);
4918
4919                 amodule->got [got_offset] = arg;
4920                 amodule->got [got_offset + 1] = addr; 
4921         }
4922
4923         /* The caller expects an ftnptr */
4924         return mono_create_ftnptr (mono_domain_get (), code);
4925 }
4926  
4927 /*
4928  * mono_aot_set_make_unreadable:
4929  *
4930  *   Set whenever to make all mmaped memory unreadable. In conjuction with a
4931  * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
4932  */
4933 void
4934 mono_aot_set_make_unreadable (gboolean unreadable)
4935 {
4936         static int inited;
4937
4938         make_unreadable = unreadable;
4939
4940         if (make_unreadable && !inited) {
4941                 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT | MONO_COUNTER_INT, &n_pagefaults);
4942         }               
4943 }
4944
4945 typedef struct {
4946         MonoAotModule *module;
4947         guint8 *ptr;
4948 } FindMapUserData;
4949
4950 static void
4951 find_map (gpointer key, gpointer value, gpointer user_data)
4952 {
4953         MonoAotModule *module = (MonoAotModule*)value;
4954         FindMapUserData *data = (FindMapUserData*)user_data;
4955
4956         if (!data->module)
4957                 if ((data->ptr >= module->mem_begin) && (data->ptr < module->mem_end))
4958                         data->module = module;
4959 }
4960
4961 static MonoAotModule*
4962 find_module_for_addr (void *ptr)
4963 {
4964         FindMapUserData data;
4965
4966         if (!make_unreadable)
4967                 return NULL;
4968
4969         data.module = NULL;
4970         data.ptr = (guint8*)ptr;
4971
4972         mono_aot_lock ();
4973         g_hash_table_foreach (aot_modules, (GHFunc)find_map, &data);
4974         mono_aot_unlock ();
4975
4976         return data.module;
4977 }
4978
4979 /*
4980  * mono_aot_is_pagefault:
4981  *
4982  *   Should be called from a SIGSEGV signal handler to find out whenever @ptr is
4983  * within memory allocated by this module.
4984  */
4985 gboolean
4986 mono_aot_is_pagefault (void *ptr)
4987 {
4988         if (!make_unreadable)
4989                 return FALSE;
4990
4991         /* 
4992          * Not signal safe, but SIGSEGV's are synchronous, and
4993          * this is only turned on by a MONO_DEBUG option.
4994          */
4995         return find_module_for_addr (ptr) != NULL;
4996 }
4997
4998 /*
4999  * mono_aot_handle_pagefault:
5000  *
5001  *   Handle a pagefault caused by an unreadable page by making it readable again.
5002  */
5003 void
5004 mono_aot_handle_pagefault (void *ptr)
5005 {
5006 #ifndef PLATFORM_WIN32
5007         guint8* start = (guint8*)ROUND_DOWN (((gssize)ptr), mono_pagesize ());
5008         int res;
5009
5010         mono_aot_lock ();
5011         res = mono_mprotect (start, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_WRITE|MONO_MMAP_EXEC);
5012         g_assert (res == 0);
5013
5014         n_pagefaults ++;
5015         mono_aot_unlock ();
5016 #endif
5017 }
5018
5019 #else
5020 /* AOT disabled */
5021
5022 void
5023 mono_aot_init (void)
5024 {
5025 }
5026
5027 gpointer
5028 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
5029 {
5030         return NULL;
5031 }
5032
5033 gboolean
5034 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
5035 {
5036         return FALSE;
5037 }
5038
5039 gboolean
5040 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
5041 {
5042         return FALSE;
5043 }
5044
5045 gboolean
5046 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
5047 {
5048         return FALSE;
5049 }
5050
5051 MonoJitInfo *
5052 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
5053 {
5054         return NULL;
5055 }
5056
5057 gpointer
5058 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token)
5059 {
5060         return NULL;
5061 }
5062
5063 guint8*
5064 mono_aot_get_plt_entry (guint8 *code)
5065 {
5066         return NULL;
5067 }
5068
5069 gpointer
5070 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
5071 {
5072         return NULL;
5073 }
5074
5075 void
5076 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
5077 {
5078 }
5079
5080 gpointer
5081 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot)
5082 {
5083         return NULL;
5084 }
5085
5086 guint32
5087 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
5088 {
5089         g_assert_not_reached ();
5090
5091         return 0;
5092 }
5093
5094 gpointer
5095 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5096 {
5097         g_assert_not_reached ();
5098         return NULL;
5099 }
5100
5101 gpointer
5102 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5103 {
5104         g_assert_not_reached ();
5105         return NULL;
5106 }
5107
5108 gpointer
5109 mono_aot_get_trampoline (const char *name)
5110 {
5111         g_assert_not_reached ();
5112         return NULL;
5113 }
5114
5115 gpointer
5116 mono_aot_get_unbox_trampoline (MonoMethod *method)
5117 {
5118         g_assert_not_reached ();
5119         return NULL;
5120 }
5121
5122 gpointer
5123 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5124 {
5125         g_assert_not_reached ();
5126         return NULL;
5127 }
5128
5129 gpointer
5130 mono_aot_get_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5131 {
5132         g_assert_not_reached ();
5133         return NULL;
5134 }       
5135
5136 guint8*
5137 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
5138 {
5139         g_assert_not_reached ();
5140         return NULL;
5141 }
5142
5143 void
5144 mono_aot_register_jit_icall (const char *name, gpointer addr)
5145 {
5146 }
5147
5148 #endif