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