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