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