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