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