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