Merge pull request #2734 from nealef/master
[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         mono_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.\n", 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').\n", 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').\n", 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         mono_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         mono_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         mono_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 (gclass->generic_container);
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 = class_def->generic_container;
532                                 }
533                         } else {
534                                 // We didn't decode is_method, so we have to infer it from type enum.
535                                 container = get_anonymous_container_for_image (module->assembly->image, type == MONO_TYPE_MVAR);
536                         }
537
538                         t = g_new0 (MonoType, 1);
539                         t->type = (MonoTypeEnum)type;
540                         if (is_not_anonymous) {
541                                 t->data.generic_param = mono_generic_container_get_param (container, num);
542                         } else {
543                                 /* Anonymous */
544                                 MonoGenericParam *par = (MonoGenericParam*)mono_image_alloc0 (module->assembly->image, sizeof (MonoGenericParamFull));
545                                 par->owner = container;
546                                 par->num = num;
547                                 t->data.generic_param = par;
548                                 ((MonoGenericParamFull*)par)->info.name = make_generic_name_string (module->assembly->image, num);
549                         }
550                         // FIXME: Maybe use types directly to avoid
551                         // the overhead of creating MonoClass-es
552                         klass = mono_class_from_mono_type (t);
553
554                         g_free (t);
555                 }
556                 break;
557         }
558         case MONO_AOT_TYPEREF_ARRAY:
559                 /* Array */
560                 rank = decode_value (p, &p);
561                 eklass = decode_klass_ref (module, p, &p, error);
562                 if (!eklass)
563                         return NULL;
564                 klass = mono_array_class_get (eklass, rank);
565                 break;
566         case MONO_AOT_TYPEREF_PTR: {
567                 MonoType *t;
568
569                 t = decode_type (module, p, &p, error);
570                 if (!t)
571                         return NULL;
572                 klass = mono_class_from_mono_type (t);
573                 g_free (t);
574                 break;
575         }
576         case MONO_AOT_TYPEREF_BLOB_INDEX: {
577                 guint32 offset = decode_value (p, &p);
578                 guint8 *p2;
579
580                 p2 = module->blob + offset;
581                 klass = decode_klass_ref (module, p2, &p2, error);
582                 break;
583         }
584         default:
585                 mono_error_set_bad_image_name (error, module->aot_name, "Invalid klass reftype %d", reftype);
586         }
587         //g_assert (klass);
588         //printf ("BLA: %s\n", mono_type_full_name (&klass->byval_arg));
589         *endbuf = p;
590         return klass;
591 }
592
593 static MonoClassField*
594 decode_field_info (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
595 {
596         MonoError error;
597         MonoClass *klass = decode_klass_ref (module, buf, &buf, &error);
598         guint32 token;
599         guint8 *p = buf;
600
601         if (!klass) {
602                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
603                 return NULL;
604         }
605
606         token = MONO_TOKEN_FIELD_DEF + decode_value (p, &p);
607
608         *endbuf = p;
609
610         return mono_class_get_field (klass, token);
611 }
612
613 /*
614  * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
615  * memory.
616  */
617 static MonoType*
618 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
619 {
620         guint8 *p = buf;
621         MonoType *t;
622
623         t = (MonoType *)g_malloc0 (sizeof (MonoType));
624         mono_error_init (error);
625
626         while (TRUE) {
627                 if (*p == MONO_TYPE_PINNED) {
628                         t->pinned = TRUE;
629                         ++p;
630                 } else if (*p == MONO_TYPE_BYREF) {
631                         t->byref = TRUE;
632                         ++p;
633                 } else {
634                         break;
635                 }
636         }
637
638         t->type = (MonoTypeEnum)*p;
639         ++p;
640
641         switch (t->type) {
642         case MONO_TYPE_VOID:
643         case MONO_TYPE_BOOLEAN:
644         case MONO_TYPE_CHAR:
645         case MONO_TYPE_I1:
646         case MONO_TYPE_U1:
647         case MONO_TYPE_I2:
648         case MONO_TYPE_U2:
649         case MONO_TYPE_I4:
650         case MONO_TYPE_U4:
651         case MONO_TYPE_I8:
652         case MONO_TYPE_U8:
653         case MONO_TYPE_R4:
654         case MONO_TYPE_R8:
655         case MONO_TYPE_I:
656         case MONO_TYPE_U:
657         case MONO_TYPE_STRING:
658         case MONO_TYPE_OBJECT:
659         case MONO_TYPE_TYPEDBYREF:
660                 break;
661         case MONO_TYPE_VALUETYPE:
662         case MONO_TYPE_CLASS:
663                 t->data.klass = decode_klass_ref (module, p, &p, error);
664                 if (!t->data.klass)
665                         goto fail;
666                 break;
667         case MONO_TYPE_SZARRAY:
668                 t->data.klass = decode_klass_ref (module, p, &p, error);
669
670                 if (!t->data.klass)
671                         goto fail;
672                 break;
673         case MONO_TYPE_PTR:
674                 t->data.type = decode_type (module, p, &p, error);
675                 if (!t->data.type)
676                         goto fail;
677                 break;
678         case MONO_TYPE_GENERICINST: {
679                 MonoClass *gclass;
680                 MonoGenericContext ctx;
681                 MonoType *type;
682                 MonoClass *klass;
683
684                 gclass = decode_klass_ref (module, p, &p, error);
685                 if (!gclass)
686                         goto fail;
687                 g_assert (gclass->generic_container);
688
689                 memset (&ctx, 0, sizeof (ctx));
690                 ctx.class_inst = decode_generic_inst (module, p, &p, error);
691                 if (!ctx.class_inst)
692                         goto fail;
693                 type = mono_class_inflate_generic_type_checked (&gclass->byval_arg, &ctx, error);
694                 if (!type)
695                         goto fail;
696                 klass = mono_class_from_mono_type (type);
697                 t->data.generic_class = klass->generic_class;
698                 break;
699         }
700         case MONO_TYPE_ARRAY: {
701                 MonoArrayType *array;
702                 int i;
703
704                 // FIXME: memory management
705                 array = g_new0 (MonoArrayType, 1);
706                 array->eklass = decode_klass_ref (module, p, &p, error);
707                 if (!array->eklass)
708                         goto fail;
709                 array->rank = decode_value (p, &p);
710                 array->numsizes = decode_value (p, &p);
711
712                 if (array->numsizes)
713                         array->sizes = (int *)g_malloc0 (sizeof (int) * array->numsizes);
714                 for (i = 0; i < array->numsizes; ++i)
715                         array->sizes [i] = decode_value (p, &p);
716
717                 array->numlobounds = decode_value (p, &p);
718                 if (array->numlobounds)
719                         array->lobounds = (int *)g_malloc0 (sizeof (int) * array->numlobounds);
720                 for (i = 0; i < array->numlobounds; ++i)
721                         array->lobounds [i] = decode_value (p, &p);
722                 t->data.array = array;
723                 break;
724         }
725         case MONO_TYPE_VAR:
726         case MONO_TYPE_MVAR: {
727                 MonoClass *klass = decode_klass_ref (module, p, &p, error);
728                 if (!klass)
729                         goto fail;
730                 t->data.generic_param = klass->byval_arg.data.generic_param;
731                 break;
732         }
733         default:
734                 mono_error_set_bad_image_name (error, module->aot_name, "Invalid encoded type %d", t->type);
735                 goto fail;
736         }
737
738         *endbuf = p;
739
740         return t;
741 fail:
742         g_free (t);
743         return NULL;
744 }
745
746 // FIXME: Error handling, memory management
747
748 static MonoMethodSignature*
749 decode_signature_with_target (MonoAotModule *module, MonoMethodSignature *target, guint8 *buf, guint8 **endbuf)
750 {
751         MonoError error;
752         MonoMethodSignature *sig;
753         guint32 flags;
754         int i, gen_param_count = 0, param_count, call_conv;
755         guint8 *p = buf;
756         gboolean hasthis, explicit_this, has_gen_params;
757
758         flags = *p;
759         p ++;
760         has_gen_params = (flags & 0x10) != 0;
761         hasthis = (flags & 0x20) != 0;
762         explicit_this = (flags & 0x40) != 0;
763         call_conv = flags & 0x0F;
764
765         if (has_gen_params)
766                 gen_param_count = decode_value (p, &p);
767         param_count = decode_value (p, &p);
768         if (target && param_count != target->param_count)
769                 return NULL;
770         sig = (MonoMethodSignature *)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE + param_count * sizeof (MonoType *));
771         sig->param_count = param_count;
772         sig->sentinelpos = -1;
773         sig->hasthis = hasthis;
774         sig->explicit_this = explicit_this;
775         sig->call_convention = call_conv;
776         sig->generic_param_count = gen_param_count;
777         sig->ret = decode_type (module, p, &p, &error);
778         if (!sig->ret)
779                 goto fail;
780         for (i = 0; i < param_count; ++i) {
781                 if (*p == MONO_TYPE_SENTINEL) {
782                         g_assert (sig->call_convention == MONO_CALL_VARARG);
783                         sig->sentinelpos = i;
784                         p ++;
785                 }
786                 sig->params [i] = decode_type (module, p, &p, &error);
787                 if (!sig->params [i])
788                         goto fail;
789         }
790
791         if (sig->call_convention == MONO_CALL_VARARG && sig->sentinelpos == -1)
792                 sig->sentinelpos = sig->param_count;
793
794         *endbuf = p;
795
796         return sig;
797 fail:
798         mono_error_cleanup (&error); /* FIXME don't swallow the error */
799         g_free (sig);
800         return NULL;
801 }
802
803 static MonoMethodSignature*
804 decode_signature (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
805 {
806         return decode_signature_with_target (module, NULL, buf, endbuf);
807 }
808
809 static gboolean
810 sig_matches_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf)
811 {
812         MonoMethodSignature *sig;
813         gboolean res;
814         guint8 *p = buf;
815         
816         sig = decode_signature_with_target (module, mono_method_signature (target), p, &p);
817         res = sig && mono_metadata_signature_equal (mono_method_signature (target), sig);
818         g_free (sig);
819         *endbuf = p;
820         return res;
821 }
822
823 /* Stores information returned by decode_method_ref () */
824 typedef struct {
825         MonoImage *image;
826         guint32 token;
827         MonoMethod *method;
828         gboolean no_aot_trampoline;
829 } MethodRef;
830
831 /*
832  * decode_method_ref_with_target:
833  *
834  *   Decode a method reference, storing the image/token into a MethodRef structure.
835  * This avoids loading metadata for the method if the caller does not need it. If the method has
836  * no token, then it is loaded from metadata and ref->method is set to the method instance.
837  * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
838  *  couldn't resolve to TARGET, and return FALSE.
839  * There are some kinds of method references which only support a non-null TARGET.
840  * This means that its not possible to decode this into a method, only to check
841  * that the method reference matches a given method. This is normally not a problem
842  * as these wrappers only occur in the extra_methods table, where we already have
843  * a method we want to lookup.
844  *
845  * 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         mono_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                 case MONO_WRAPPER_ISINST: {
908                         MonoClass *klass = decode_klass_ref (module, p, &p, error);
909                         if (!klass)
910                                 return FALSE;
911                         if (wrapper_type == MONO_WRAPPER_LDFLD)
912                                 ref->method = mono_marshal_get_ldfld_wrapper (&klass->byval_arg);
913                         else if (wrapper_type == MONO_WRAPPER_LDFLDA)
914                                 ref->method = mono_marshal_get_ldflda_wrapper (&klass->byval_arg);
915                         else if (wrapper_type == MONO_WRAPPER_STFLD)
916                                 ref->method = mono_marshal_get_stfld_wrapper (&klass->byval_arg);
917                         else if (wrapper_type == MONO_WRAPPER_ISINST)
918                                 ref->method = mono_marshal_get_isinst (klass);
919                         else {
920                                 mono_error_set_bad_image_name (error, module->aot_name, "Unknown AOT wrapper type %d", wrapper_type);
921                                 return FALSE;
922                         }
923                         break;
924                 }
925                 case MONO_WRAPPER_LDFLD_REMOTE:
926                         ref->method = mono_marshal_get_ldfld_remote_wrapper (NULL);
927                         break;
928                 case MONO_WRAPPER_STFLD_REMOTE:
929                         ref->method = mono_marshal_get_stfld_remote_wrapper (NULL);
930                         break;
931 #endif
932                 case MONO_WRAPPER_ALLOC: {
933                         int atype = decode_value (p, &p);
934                         ManagedAllocatorVariant variant =
935                                 mono_profiler_get_events () & MONO_PROFILE_ALLOCATIONS ?
936                                 MANAGED_ALLOCATOR_SLOW_PATH : MANAGED_ALLOCATOR_REGULAR;
937
938                         ref->method = mono_gc_get_managed_allocator_by_type (atype, variant);
939                         if (!ref->method) {
940                                 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");
941                                 return FALSE;
942                         }
943                         break;
944                 }
945                 case MONO_WRAPPER_WRITE_BARRIER: {
946                         ref->method = mono_gc_get_write_barrier ();
947                         break;
948                 }
949                 case MONO_WRAPPER_STELEMREF: {
950                         int subtype = decode_value (p, &p);
951
952                         if (subtype == WRAPPER_SUBTYPE_NONE) {
953                                 ref->method = mono_marshal_get_stelemref ();
954                         } else if (subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF) {
955                                 int kind;
956                                 
957                                 kind = decode_value (p, &p);
958
959                                 /* Can't decode this */
960                                 if (!target)
961                                         return FALSE;
962                                 if (target->wrapper_type == MONO_WRAPPER_STELEMREF) {
963                                         info = mono_marshal_get_wrapper_info (target);
964
965                                         g_assert (info);
966                                         if (info->subtype == subtype && info->d.virtual_stelemref.kind == kind)
967                                                 ref->method = target;
968                                         else
969                                                 return FALSE;
970                                 } else {
971                                         return FALSE;
972                                 }
973                         } else {
974                                 mono_error_set_bad_image_name (error, module->aot_name, "Invalid STELEMREF subtype %d", subtype);
975                                 return FALSE;
976                         }
977                         break;
978                 }
979                 case MONO_WRAPPER_SYNCHRONIZED: {
980                         MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
981                         if (!m)
982                                 return FALSE;
983                         ref->method = mono_marshal_get_synchronized_wrapper (m);
984                         break;
985                 }
986                 case MONO_WRAPPER_UNKNOWN: {
987                         int subtype = decode_value (p, &p);
988
989                         if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE || subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR) {
990                                 MonoClass *klass = decode_klass_ref (module, p, &p, error);
991                                 if (!klass)
992                                         return FALSE;
993
994                                 if (!target)
995                                         return FALSE;
996                                 if (klass != target->klass)
997                                         return FALSE;
998
999                                 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE) {
1000                                         if (strcmp (target->name, "PtrToStructure"))
1001                                                 return FALSE;
1002                                         ref->method = mono_marshal_get_ptr_to_struct (klass);
1003                                 } else {
1004                                         if (strcmp (target->name, "StructureToPtr"))
1005                                                 return FALSE;
1006                                         ref->method = mono_marshal_get_struct_to_ptr (klass);
1007                                 }
1008                         } else if (subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER) {
1009                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1010                                 if (!m)
1011                                         return FALSE;
1012                                 ref->method = mono_marshal_get_synchronized_inner_wrapper (m);
1013                         } else if (subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
1014                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1015                                 if (!m)
1016                                         return FALSE;
1017                                 ref->method = mono_marshal_get_array_accessor_wrapper (m);
1018                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN) {
1019                                 ref->method = mono_marshal_get_gsharedvt_in_wrapper ();
1020                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT) {
1021                                 ref->method = mono_marshal_get_gsharedvt_out_wrapper ();
1022                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG) {
1023                                 MonoMethodSignature *sig = decode_signature (module, p, &p);
1024                                 if (!sig)
1025                                         return FALSE;
1026                                 ref->method = mini_get_gsharedvt_in_sig_wrapper (sig);
1027                         } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG) {
1028                                 MonoMethodSignature *sig = decode_signature (module, p, &p);
1029                                 if (!sig)
1030                                         return FALSE;
1031                                 ref->method = mini_get_gsharedvt_out_sig_wrapper (sig);
1032                         } else {
1033                                 mono_error_set_bad_image_name (error, module->aot_name, "Invalid UNKNOWN wrapper subtype %d", subtype);
1034                                 return FALSE;
1035                         }
1036                         break;
1037                 }
1038                 case MONO_WRAPPER_MANAGED_TO_MANAGED: {
1039                         int subtype = decode_value (p, &p);
1040
1041                         if (subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
1042                                 int rank = decode_value (p, &p);
1043                                 int elem_size = decode_value (p, &p);
1044
1045                                 ref->method = mono_marshal_get_array_address (rank, elem_size);
1046                         } else if (subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
1047                                 MonoMethod *m;
1048
1049                                 m = decode_resolve_method_ref (module, p, &p, error);
1050                                 if (!m)
1051                                         return FALSE;
1052
1053                                 if (!target)
1054                                         return FALSE;
1055                                 g_assert (target->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED);
1056
1057                                 info = mono_marshal_get_wrapper_info (target);
1058                                 if (info && info->subtype == subtype && info->d.string_ctor.method == m)
1059                                         ref->method = target;
1060                                 else
1061                                         return FALSE;
1062                         }
1063                         break;
1064                 }
1065                 case MONO_WRAPPER_MANAGED_TO_NATIVE: {
1066                         MonoMethod *m;
1067                         int subtype = decode_value (p, &p);
1068                         char *name;
1069
1070                         if (subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
1071                                 if (!target)
1072                                         return FALSE;
1073
1074                                 name = (char*)p;
1075                                 if (strcmp (target->name, name) != 0)
1076                                         return FALSE;
1077                                 ref->method = target;
1078                         } else {
1079                                 m = decode_resolve_method_ref (module, p, &p, error);
1080                                 if (!m)
1081                                         return FALSE;
1082
1083                                 /* This should only happen when looking for an extra method */
1084                                 if (!target)
1085                                         return FALSE;
1086                                 if (mono_marshal_method_from_wrapper (target) == m)
1087                                         ref->method = target;
1088                                 else
1089                                         return FALSE;
1090                         }
1091                         break;
1092                 }
1093                 case MONO_WRAPPER_CASTCLASS: {
1094                         int subtype = decode_value (p, &p);
1095
1096                         if (subtype == WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE)
1097                                 ref->method = mono_marshal_get_castclass_with_cache ();
1098                         else if (subtype == WRAPPER_SUBTYPE_ISINST_WITH_CACHE)
1099                                 ref->method = mono_marshal_get_isinst_with_cache ();
1100                         else {
1101                                 mono_error_set_bad_image_name (error, module->aot_name, "Invalid CASTCLASS wrapper subtype %d", subtype);
1102                                 return FALSE;
1103                         }
1104                         break;
1105                 }
1106                 case MONO_WRAPPER_RUNTIME_INVOKE: {
1107                         int subtype = decode_value (p, &p);
1108
1109                         if (!target)
1110                                 return FALSE;
1111
1112                         if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC) {
1113                                 if (strcmp (target->name, "runtime_invoke_dynamic") != 0)
1114                                         return FALSE;
1115                                 ref->method = target;
1116                         } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT) {
1117                                 /* 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, FALSE);
1122                         } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL) {
1123                                 /* Virtual direct wrapper */
1124                                 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1125                                 if (!m)
1126                                         return FALSE;
1127                                 ref->method = mono_marshal_get_runtime_invoke (m, TRUE);
1128                         } else {
1129                                 MonoMethodSignature *sig;
1130
1131                                 sig = decode_signature_with_target (module, NULL, p, &p);
1132                                 info = mono_marshal_get_wrapper_info (target);
1133                                 g_assert (info);
1134
1135                                 if (info->subtype != subtype)
1136                                         return FALSE;
1137                                 g_assert (info->d.runtime_invoke.sig);
1138                                 if (mono_metadata_signature_equal (sig, info->d.runtime_invoke.sig))
1139                                         ref->method = target;
1140                                 else
1141                                         return FALSE;
1142                         }
1143                         break;
1144                 }
1145                 case MONO_WRAPPER_DELEGATE_INVOKE:
1146                 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1147                 case MONO_WRAPPER_DELEGATE_END_INVOKE: {
1148                         gboolean is_inflated = decode_value (p, &p);
1149                         WrapperSubtype subtype;
1150
1151                         if (is_inflated) {
1152                                 MonoClass *klass;
1153                                 MonoMethod *invoke, *wrapper;
1154
1155                                 klass = decode_klass_ref (module, p, &p, error);
1156                                 if (!klass)
1157                                         return FALSE;
1158
1159                                 switch (wrapper_type) {
1160                                 case MONO_WRAPPER_DELEGATE_INVOKE:
1161                                         invoke = mono_get_delegate_invoke (klass);
1162                                         wrapper = mono_marshal_get_delegate_invoke (invoke, NULL);
1163                                         break;
1164                                 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1165                                         invoke = mono_get_delegate_begin_invoke (klass);
1166                                         wrapper = mono_marshal_get_delegate_begin_invoke (invoke);
1167                                         break;
1168                                 case MONO_WRAPPER_DELEGATE_END_INVOKE:
1169                                         invoke = mono_get_delegate_end_invoke (klass);
1170                                         wrapper = mono_marshal_get_delegate_end_invoke (invoke);
1171                                         break;
1172                                 default:
1173                                         g_assert_not_reached ();
1174                                         break;
1175                                 }
1176                                 if (target) {
1177                                         /*
1178                                          * Due to the way mini_get_shared_method () works, we could end up with
1179                                          * multiple copies of the same wrapper.
1180                                          */
1181                                         if (wrapper->klass != target->klass)
1182                                                 return FALSE;
1183                                         ref->method = target;
1184                                 } else {
1185                                         ref->method = wrapper;
1186                                 }
1187                         } else {
1188                                 /*
1189                                  * These wrappers are associated with a signature, not with a method.
1190                                  * Since we can't decode them into methods, they need a target method.
1191                                  */
1192                                 if (!target)
1193                                         return FALSE;
1194
1195                                 if (wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE) {
1196                                         subtype = (WrapperSubtype)decode_value (p, &p);
1197                                         info = mono_marshal_get_wrapper_info (target);
1198                                         if (info) {
1199                                                 if (info->subtype != subtype)
1200                                                         return FALSE;
1201                                         } else {
1202                                                 if (subtype != WRAPPER_SUBTYPE_NONE)
1203                                                         return FALSE;
1204                                         }
1205                                 }
1206                                 if (sig_matches_target (module, target, p, &p))
1207                                         ref->method = target;
1208                                 else
1209                                         return FALSE;
1210                         }
1211                         break;
1212                 }
1213                 case MONO_WRAPPER_NATIVE_TO_MANAGED: {
1214                         MonoMethod *m;
1215                         MonoClass *klass;
1216
1217                         m = decode_resolve_method_ref (module, p, &p, error);
1218                         if (!m)
1219                                 return FALSE;
1220                         klass = decode_klass_ref (module, p, &p, error);
1221                         if (!klass)
1222                                 return FALSE;
1223                         ref->method = mono_marshal_get_managed_wrapper (m, klass, 0);
1224                         break;
1225                 }
1226                 default:
1227                         g_assert_not_reached ();
1228                 }
1229         } else if (image_index == MONO_AOT_METHODREF_METHODSPEC) {
1230                 image_index = decode_value (p, &p);
1231                 ref->token = decode_value (p, &p);
1232
1233                 image = load_image (module, image_index, error);
1234                 if (!image)
1235                         return FALSE;
1236         } else if (image_index == MONO_AOT_METHODREF_GINST) {
1237                 MonoClass *klass;
1238                 MonoGenericContext ctx;
1239
1240                 /* 
1241                  * These methods do not have a token which resolves them, so we 
1242                  * resolve them immediately.
1243                  */
1244                 klass = decode_klass_ref (module, p, &p, error);
1245                 if (!klass)
1246                         return FALSE;
1247
1248                 if (target && target->klass != klass)
1249                         return FALSE;
1250
1251                 image_index = decode_value (p, &p);
1252                 ref->token = decode_value (p, &p);
1253
1254                 image = load_image (module, image_index, error);
1255                 if (!image)
1256                         return FALSE;
1257
1258                 ref->method = mono_get_method_checked (image, ref->token, NULL, NULL, error);
1259                 if (!ref->method)
1260                         return FALSE;
1261
1262
1263                 memset (&ctx, 0, sizeof (ctx));
1264
1265                 if (FALSE && klass->generic_class) {
1266                         ctx.class_inst = klass->generic_class->context.class_inst;
1267                         ctx.method_inst = NULL;
1268  
1269                         ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1270                         if (!ref->method)
1271                                 return FALSE;
1272                 }                       
1273
1274                 memset (&ctx, 0, sizeof (ctx));
1275
1276                 if (!decode_generic_context (module, &ctx, p, &p, error))
1277                         return FALSE;
1278
1279                 ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1280                 if (!ref->method)
1281                         return FALSE;
1282
1283         } else if (image_index == MONO_AOT_METHODREF_ARRAY) {
1284                 MonoClass *klass;
1285                 int method_type;
1286
1287                 klass = decode_klass_ref (module, p, &p, error);
1288                 if (!klass)
1289                         return FALSE;
1290                 method_type = decode_value (p, &p);
1291                 switch (method_type) {
1292                 case 0:
1293                         ref->method = mono_class_get_method_from_name (klass, ".ctor", klass->rank);
1294                         break;
1295                 case 1:
1296                         ref->method = mono_class_get_method_from_name (klass, ".ctor", klass->rank * 2);
1297                         break;
1298                 case 2:
1299                         ref->method = mono_class_get_method_from_name (klass, "Get", -1);
1300                         break;
1301                 case 3:
1302                         ref->method = mono_class_get_method_from_name (klass, "Address", -1);
1303                         break;
1304                 case 4:
1305                         ref->method = mono_class_get_method_from_name (klass, "Set", -1);
1306                         break;
1307                 default:
1308                         mono_error_set_bad_image_name (error, module->aot_name, "Invalid METHODREF_ARRAY method type %d", method_type);
1309                         return FALSE;
1310                 }
1311         } else {
1312                 if (image_index == MONO_AOT_METHODREF_LARGE_IMAGE_INDEX) {
1313                         image_index = decode_value (p, &p);
1314                         value = decode_value (p, &p);
1315                 }
1316
1317                 ref->token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
1318
1319                 image = load_image (module, image_index, error);
1320                 if (!image)
1321                         return FALSE;
1322         }
1323
1324         *endbuf = p;
1325
1326         ref->image = image;
1327
1328         return TRUE;
1329 }
1330
1331 static gboolean
1332 decode_method_ref (MonoAotModule *module, MethodRef *ref, guint8 *buf, guint8 **endbuf, MonoError *error)
1333 {
1334         return decode_method_ref_with_target (module, ref, NULL, buf, endbuf, error);
1335 }
1336
1337 /*
1338  * decode_resolve_method_ref_with_target:
1339  *
1340  *   Similar to decode_method_ref, but resolve and return the method itself.
1341  */
1342 static MonoMethod*
1343 decode_resolve_method_ref_with_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf, MonoError *error)
1344 {
1345         MethodRef ref;
1346
1347         mono_error_init (error);
1348
1349         if (!decode_method_ref_with_target (module, &ref, target, buf, endbuf, error))
1350                 return NULL;
1351         if (ref.method)
1352                 return ref.method;
1353         if (!ref.image) {
1354                 mono_error_set_bad_image_name (error, module->aot_name, "No image found for methodref with target");
1355                 return NULL;
1356         }
1357         return mono_get_method_checked (ref.image, ref.token, NULL, NULL, error);
1358 }
1359
1360 static MonoMethod*
1361 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
1362 {
1363         return decode_resolve_method_ref_with_target (module, NULL, buf, endbuf, error);
1364 }
1365
1366 #ifdef ENABLE_AOT_CACHE
1367
1368 /* AOT CACHE */
1369
1370 /*
1371  * FIXME:
1372  * - Add options for controlling the cache size
1373  * - Handle full cache by deleting old assemblies lru style
1374  * - Maybe add a threshold after an assembly is AOT compiled
1375  * - Add options for enabling this for specific main assemblies
1376  */
1377
1378 /* The cache directory */
1379 static char *cache_dir;
1380
1381 /* The number of assemblies AOTed in this run */
1382 static int cache_count;
1383
1384 /* Whenever to AOT in-process */
1385 static gboolean in_process;
1386
1387 static void
1388 collect_assemblies (gpointer data, gpointer user_data)
1389 {
1390         MonoAssembly *ass = data;
1391         GSList **l = user_data;
1392
1393         *l = g_slist_prepend (*l, ass);
1394 }
1395
1396 #define SHA1_DIGEST_LENGTH 20
1397
1398 /*
1399  * get_aot_config_hash:
1400  *
1401  *   Return a hash for all the version information an AOT module depends on.
1402  */
1403 static G_GNUC_UNUSED char*
1404 get_aot_config_hash (MonoAssembly *assembly)
1405 {
1406         char *build_info;
1407         GSList *l, *assembly_list = NULL;
1408         GString *s;
1409         int i;
1410         guint8 digest [SHA1_DIGEST_LENGTH];
1411         char *digest_str;
1412
1413         build_info = mono_get_runtime_build_info ();
1414
1415         s = g_string_new (build_info);
1416
1417         mono_assembly_foreach (collect_assemblies, &assembly_list);
1418
1419         /*
1420          * The assembly list includes the current assembly as well, no need
1421          * to add it.
1422          */
1423         for (l = assembly_list; l; l = l->next) {
1424                 MonoAssembly *ass = l->data;
1425
1426                 g_string_append (s, "_");
1427                 g_string_append (s, ass->aname.name);
1428                 g_string_append (s, "_");
1429                 g_string_append (s, ass->image->guid);
1430         }
1431
1432         for (i = 0; i < s->len; ++i) {
1433                 if (!isalnum (s->str [i]) && s->str [i] != '-')
1434                         s->str [i] = '_';
1435         }
1436
1437         mono_sha1_get_digest ((guint8*)s->str, s->len, digest);
1438
1439         digest_str = g_malloc0 ((SHA1_DIGEST_LENGTH * 2) + 1);
1440         for (i = 0; i < SHA1_DIGEST_LENGTH; ++i)
1441                 sprintf (digest_str + (i * 2), "%02x", digest [i]);
1442
1443         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: file dependencies: %s, hash %s", s->str, digest_str);
1444
1445         g_string_free (s, TRUE);
1446
1447         return digest_str;
1448 }
1449
1450 static void
1451 aot_cache_init (void)
1452 {
1453         if (mono_aot_only)
1454                 return;
1455         enable_aot_cache = TRUE;
1456         in_process = TRUE;
1457 }
1458
1459 /*
1460  * aot_cache_load_module:
1461  *
1462  *   Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1463  */
1464 static MonoDl*
1465 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1466 {
1467         MonoAotCacheConfig *config;
1468         GSList *l;
1469         char *fname, *tmp2, *aot_options, *failure_fname;
1470         const char *home;
1471         MonoDl *module;
1472         gboolean res;
1473         gint exit_status;
1474         char *hash;
1475         int pid;
1476         gboolean enabled;
1477         FILE *failure_file;
1478
1479         *aot_name = NULL;
1480
1481         if (image_is_dynamic (assembly->image))
1482                 return NULL;
1483
1484         /* Check in the list of assemblies enabled for aot caching */
1485         config = mono_get_aot_cache_config ();
1486
1487         enabled = FALSE;
1488         if (config->apps) {
1489                 MonoDomain *domain = mono_domain_get ();
1490                 MonoAssembly *entry_assembly = domain->entry_assembly;
1491
1492                 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1493                 for (l = config->apps; l; l = l->next) {
1494                         char *n = l->data;
1495
1496                         if ((entry_assembly && !strcmp (entry_assembly->aname.name, n)) || (!entry_assembly && !strcmp (assembly->aname.name, n)))
1497                                 break;
1498                 }
1499                 if (l)
1500                         enabled = TRUE;
1501         }
1502
1503         if (!enabled) {
1504                 for (l = config->assemblies; l; l = l->next) {
1505                         char *n = l->data;
1506
1507                         if (!strcmp (assembly->aname.name, n))
1508                                 break;
1509                 }
1510                 if (l)
1511                         enabled = TRUE;
1512         }
1513         if (!enabled)
1514                 return NULL;
1515
1516         if (!cache_dir) {
1517                 home = g_get_home_dir ();
1518                 if (!home)
1519                         return NULL;
1520                 cache_dir = g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home);
1521                 if (!g_file_test (cache_dir, G_FILE_TEST_EXISTS|G_FILE_TEST_IS_DIR))
1522                         g_mkdir_with_parents (cache_dir, 0777);
1523         }
1524
1525         /*
1526          * The same assembly can be used in multiple configurations, i.e. multiple
1527      * versions of the runtime, with multiple versions of dependent assemblies etc.
1528          * To handle this, we compute a version string containing all this information, hash it,
1529          * and use the hash as a filename suffix.
1530          */
1531         hash = get_aot_config_hash (assembly);
1532
1533         tmp2 = g_strdup_printf ("%s-%s%s", assembly->image->assembly_name, hash, MONO_SOLIB_EXT);
1534         fname = g_build_filename (cache_dir, tmp2, NULL);
1535         *aot_name = fname;
1536         g_free (tmp2);
1537
1538         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loading from cache: '%s'.", fname);
1539         module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1540
1541         if (module) {
1542                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: found in cache: '%s'.", fname);
1543                 return module;
1544         }
1545
1546         if (!strcmp (assembly->aname.name, "mscorlib") && !mscorlib_aot_loaded)
1547                 /*
1548                  * Can't AOT this during startup, so we AOT it when called later from
1549                  * mono_aot_get_method ().
1550                  */
1551                 return NULL;
1552
1553         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: not found.");
1554
1555         /* Only AOT one assembly per run to avoid slowing down execution too much */
1556         if (cache_count > 0)
1557                 return NULL;
1558         cache_count ++;
1559
1560         /* Check for previous failure */
1561         failure_fname = g_strdup_printf ("%s.failure", fname);
1562         failure_file = fopen (failure_fname, "r");
1563         if (failure_file) {
1564                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly->image->name, fname, failure_fname);
1565                 g_free (failure_fname);
1566                 return NULL;
1567         } else {
1568                 g_free (failure_fname);
1569                 fclose (failure_file);
1570         }
1571
1572         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly->image->name, fname);
1573
1574         /*
1575          * We need to invoke the AOT compiler here. There are multiple approaches:
1576          * - spawn a new runtime process. This can be hard when running with mkbundle, and
1577          * its hard to make the new process load the same set of assemblies.
1578          * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1579          * the AOT compiler.
1580          * - fork a new process and do the work there.
1581          */
1582         if (in_process) {
1583                 aot_options = g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname, fname, config->aot_options ? "," : "", config->aot_options ? config->aot_options : "");
1584                 /* Maybe due this in another thread ? */
1585                 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options);
1586                 if (res) {
1587                         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation failed.");
1588                         failure_fname = g_strdup_printf ("%s.failure", fname);
1589                         failure_file = fopen (failure_fname, "a+");
1590                         fclose (failure_file);
1591                         g_free (failure_fname);
1592                 } else {
1593                         mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation succeeded.");
1594                 }
1595         } else {
1596                 /*
1597                  * - Avoid waiting for the aot process to finish ?
1598                  *   (less overhead, but multiple processes could aot the same assembly at the same time)
1599                  */
1600                 pid = fork ();
1601                 if (pid == 0) {
1602                         FILE *logfile;
1603                         char *logfile_name;
1604
1605                         /* Child */
1606
1607                         logfile_name = g_strdup_printf ("%s/aot.log", cache_dir);
1608                         logfile = fopen (logfile_name, "a+");
1609                         g_free (logfile_name);
1610
1611                         dup2 (fileno (logfile), 1);
1612                         dup2 (fileno (logfile), 2);
1613
1614                         aot_options = g_strdup_printf ("outfile=%s", fname);
1615                         res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options);
1616                         if (!res) {
1617                                 exit (1);
1618                         } else {
1619                                 exit (0);
1620                         }
1621                 } else {
1622                         /* Parent */
1623                         waitpid (pid, &exit_status, 0);
1624                         if (!WIFEXITED (exit_status) && (WEXITSTATUS (exit_status) == 0))
1625                                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: failed.");
1626                         else
1627                                 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: succeeded.");
1628                 }
1629         }
1630
1631         module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1632
1633         return module;
1634 }
1635
1636 #else
1637
1638 static void
1639 aot_cache_init (void)
1640 {
1641 }
1642
1643 static MonoDl*
1644 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1645 {
1646         return NULL;
1647 }
1648
1649 #endif
1650
1651 static void
1652 find_symbol (MonoDl *module, gpointer *globals, const char *name, gpointer *value)
1653 {
1654         if (globals) {
1655                 int global_index;
1656                 guint16 *table, *entry;
1657                 guint16 table_size;
1658                 guint32 hash;           
1659                 char *symbol = (char*)name;
1660
1661 #ifdef TARGET_MACH
1662                 symbol = g_strdup_printf ("_%s", name);
1663 #endif
1664
1665                 /* The first entry points to the hash */
1666                 table = (guint16 *)globals [0];
1667                 globals ++;
1668
1669                 table_size = table [0];
1670                 table ++;
1671
1672                 hash = mono_metadata_str_hash (symbol) % table_size;
1673
1674                 entry = &table [hash * 2];
1675
1676                 /* Search the hash for the index into the globals table */
1677                 global_index = -1;
1678                 while (entry [0] != 0) {
1679                         guint32 index = entry [0] - 1;
1680                         guint32 next = entry [1];
1681
1682                         //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1683
1684                         if (!strcmp (globals [index * 2], symbol)) {
1685                                 global_index = index;
1686                                 break;
1687                         }
1688
1689                         if (next != 0) {
1690                                 entry = &table [next * 2];
1691                         } else {
1692                                 break;
1693                         }
1694                 }
1695
1696                 if (global_index != -1)
1697                         *value = globals [global_index * 2 + 1];
1698                 else
1699                         *value = NULL;
1700
1701                 if (symbol != name)
1702                         g_free (symbol);
1703         } else {
1704                 char *err = mono_dl_symbol (module, name, value);
1705
1706                 if (err)
1707                         g_free (err);
1708         }
1709 }
1710
1711 static void
1712 find_amodule_symbol (MonoAotModule *amodule, const char *name, gpointer *value)
1713 {
1714         g_assert (!(amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY));
1715
1716         find_symbol (amodule->sofile, amodule->globals, name, value);
1717 }
1718
1719 void
1720 mono_install_load_aot_data_hook (MonoLoadAotDataFunc load_func, MonoFreeAotDataFunc free_func, gpointer user_data)
1721 {
1722         aot_data_load_func = load_func;
1723         aot_data_free_func = free_func;
1724         aot_data_func_user_data = user_data;
1725 }
1726
1727 /* Load the separate aot data file for ASSEMBLY */
1728 static guint8*
1729 open_aot_data (MonoAssembly *assembly, MonoAotFileInfo *info, void **ret_handle)
1730 {
1731         MonoFileMap *map;
1732         char *filename;
1733         guint8 *data;
1734
1735         if (aot_data_load_func) {
1736                 data = aot_data_load_func (assembly, info->datafile_size, aot_data_func_user_data, ret_handle);
1737                 g_assert (data);
1738                 return data;
1739         }
1740
1741         /*
1742          * Use <assembly name>.aotdata as the default implementation if no callback is given
1743          */
1744         filename = g_strdup_printf ("%s.aotdata", assembly->image->name);
1745         map = mono_file_map_open (filename);
1746         g_assert (map);
1747         data = mono_file_map (info->datafile_size, MONO_MMAP_READ, mono_file_map_fd (map), 0, ret_handle);
1748         g_assert (data);
1749
1750         return data;
1751 }
1752
1753 static gboolean
1754 check_usable (MonoAssembly *assembly, MonoAotFileInfo *info, guint8 *blob, char **out_msg)
1755 {
1756         char *build_info;
1757         char *msg = NULL;
1758         gboolean usable = TRUE;
1759         gboolean full_aot, safepoints;
1760         guint32 excluded_cpu_optimizations;
1761
1762         if (strcmp (assembly->image->guid, info->assembly_guid)) {
1763                 msg = g_strdup_printf ("doesn't match assembly");
1764                 usable = FALSE;
1765         }
1766
1767         build_info = mono_get_runtime_build_info ();
1768         if (strlen ((const char *)info->runtime_version) > 0 && strcmp (info->runtime_version, build_info)) {
1769                 msg = g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info->runtime_version, build_info);
1770                 usable = FALSE;
1771         }
1772         g_free (build_info);
1773
1774         full_aot = info->flags & MONO_AOT_FILE_FLAG_FULL_AOT;
1775
1776         if (mono_aot_only && !full_aot) {
1777                 msg = g_strdup_printf ("not compiled with --aot=full");
1778                 usable = FALSE;
1779         }
1780         if (!mono_aot_only && full_aot) {
1781                 msg = g_strdup_printf ("compiled with --aot=full");
1782                 usable = FALSE;
1783         }
1784         if (mono_llvm_only && !(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
1785                 msg = g_strdup_printf ("not compiled with --aot=llvmonly");
1786                 usable = FALSE;
1787         }
1788 #ifdef TARGET_ARM
1789         /* mono_arch_find_imt_method () requires this */
1790         if ((info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM) && !mono_use_llvm) {
1791                 msg = g_strdup_printf ("compiled against LLVM");
1792                 usable = FALSE;
1793         }
1794         if (!(info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM) && mono_use_llvm) {
1795                 msg = g_strdup_printf ("not compiled against LLVM");
1796                 usable = FALSE;
1797         }
1798 #endif
1799         if (mini_get_debug_options ()->mdb_optimizations && !(info->flags & MONO_AOT_FILE_FLAG_DEBUG) && !full_aot) {
1800                 msg = g_strdup_printf ("not compiled for debugging");
1801                 usable = FALSE;
1802         }
1803
1804         mono_arch_cpu_optimizations (&excluded_cpu_optimizations);
1805         if (info->opts & excluded_cpu_optimizations) {
1806                 msg = g_strdup_printf ("compiled with unsupported CPU optimizations");
1807                 usable = FALSE;
1808         }
1809
1810         if (!mono_aot_only && (info->simd_opts & ~mono_arch_cpu_enumerate_simd_versions ())) {
1811                 msg = g_strdup_printf ("compiled with unsupported SIMD extensions");
1812                 usable = FALSE;
1813         }
1814
1815         if (info->gc_name_index != -1) {
1816                 char *gc_name = (char*)&blob [info->gc_name_index];
1817                 const char *current_gc_name = mono_gc_get_gc_name ();
1818
1819                 if (strcmp (current_gc_name, gc_name) != 0) {
1820                         msg = g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name, current_gc_name);
1821                         usable = FALSE;
1822                 }
1823         }
1824
1825         safepoints = info->flags & MONO_AOT_FILE_FLAG_SAFEPOINTS;
1826
1827         if (!safepoints && mono_threads_is_coop_enabled ()) {
1828                 msg = g_strdup_printf ("not compiled with safepoints");
1829                 usable = FALSE;
1830         }
1831
1832         *out_msg = msg;
1833         return usable;
1834 }
1835
1836 /*
1837  * TABLE should point to a table of call instructions. Return the address called by the INDEXth entry.
1838  */
1839 static void*
1840 get_call_table_entry (void *table, int index)
1841 {
1842 #if defined(TARGET_ARM)
1843         guint32 *ins_addr;
1844         guint32 ins;
1845         gint32 offset;
1846
1847         ins_addr = (guint32*)table + index;
1848         ins = *ins_addr;
1849         if ((ins >> ARMCOND_SHIFT) == ARMCOND_NV) {
1850                 /* blx */
1851                 offset = (((int)(((ins & 0xffffff) << 1) | ((ins >> 24) & 0x1))) << 7) >> 7;
1852                 return (char*)ins_addr + (offset * 2) + 8 + 1;
1853         } else {
1854                 offset = (((int)ins & 0xffffff) << 8) >> 8;
1855                 return (char*)ins_addr + (offset * 4) + 8;
1856         }
1857 #elif defined(TARGET_ARM64)
1858         return mono_arch_get_call_target ((guint8*)table + (index * 4) + 4);
1859 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1860         /* The callee expects an ip which points after the call */
1861         return mono_arch_get_call_target ((guint8*)table + (index * 5) + 5);
1862 #else
1863         g_assert_not_reached ();
1864         return NULL;
1865 #endif
1866 }
1867
1868 /*
1869  * init_amodule_got:
1870  *
1871  *   Initialize the shared got entries for AMODULE.
1872  */
1873 static void
1874 init_amodule_got (MonoAotModule *amodule)
1875 {
1876         MonoJumpInfo *ji;
1877         MonoMemPool *mp;
1878         MonoJumpInfo *patches;
1879         guint32 got_offsets [128];
1880         MonoError error;
1881         int i, npatches;
1882
1883         /* These can't be initialized in load_aot_module () */
1884         if (amodule->shared_got [0] || amodule->got_initializing)
1885                 return;
1886
1887         amodule->got_initializing = TRUE;
1888
1889         mp = mono_mempool_new ();
1890         npatches = amodule->info.nshared_got_entries;
1891         for (i = 0; i < npatches; ++i)
1892                 got_offsets [i] = i;
1893         patches = decode_patches (amodule, mp, npatches, FALSE, got_offsets);
1894         g_assert (patches);
1895         for (i = 0; i < npatches; ++i) {
1896                 ji = &patches [i];
1897
1898                 if (ji->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR && !mono_gc_is_moving ()) {
1899                         amodule->shared_got [i] = NULL;
1900                 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_START && !mono_gc_is_moving ()) {
1901                         amodule->shared_got [i] = NULL;
1902                 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_BITS && !mono_gc_is_moving ()) {
1903                         amodule->shared_got [i] = NULL;
1904                 } else if (ji->type == MONO_PATCH_INFO_IMAGE) {
1905                         amodule->shared_got [i] = amodule->assembly->image;
1906                 } else if (ji->type == MONO_PATCH_INFO_MSCORLIB_GOT_ADDR) {
1907                         if (mono_defaults.corlib) {
1908                                 MonoAotModule *mscorlib_amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
1909
1910                                 if (mscorlib_amodule)
1911                                         amodule->shared_got [i] = mscorlib_amodule->got;
1912                         } else {
1913                                 amodule->shared_got [i] = amodule->got;
1914                         }
1915                 } else if (ji->type == MONO_PATCH_INFO_AOT_MODULE) {
1916                         amodule->shared_got [i] = amodule;
1917                 } else {
1918                         amodule->shared_got [i] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, ji, FALSE, &error);
1919                         mono_error_assert_ok (&error);
1920                 }
1921         }
1922
1923         if (amodule->got) {
1924                 for (i = 0; i < npatches; ++i)
1925                         amodule->got [i] = amodule->shared_got [i];
1926         }
1927         if (amodule->llvm_got) {
1928                 for (i = 0; i < npatches; ++i)
1929                         amodule->llvm_got [i] = amodule->shared_got [i];
1930         }
1931
1932         mono_mempool_destroy (mp);
1933 }
1934
1935 static void
1936 load_aot_module (MonoAssembly *assembly, gpointer user_data)
1937 {
1938         char *aot_name;
1939         MonoAotModule *amodule;
1940         MonoDl *sofile;
1941         gboolean usable = TRUE;
1942         char *version_symbol = NULL;
1943         char *msg = NULL;
1944         gpointer *globals = NULL;
1945         MonoAotFileInfo *info = NULL;
1946         int i, version;
1947         gboolean do_load_image = TRUE;
1948         int align_double, align_int64;
1949         guint8 *aot_data = NULL;
1950
1951         if (mono_compile_aot)
1952                 return;
1953
1954         if (assembly->image->aot_module)
1955                 /* 
1956                  * Already loaded. This can happen because the assembly loading code might invoke
1957                  * the assembly load hooks multiple times for the same assembly.
1958                  */
1959                 return;
1960
1961         if (image_is_dynamic (assembly->image) || assembly->ref_only)
1962                 return;
1963
1964         mono_aot_lock ();
1965         if (static_aot_modules)
1966                 info = (MonoAotFileInfo *)g_hash_table_lookup (static_aot_modules, assembly->aname.name);
1967         else
1968                 info = NULL;
1969         mono_aot_unlock ();
1970
1971         sofile = NULL;
1972
1973         if (info) {
1974                 /* Statically linked AOT module */
1975                 aot_name = g_strdup_printf ("%s", assembly->aname.name);
1976                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "Found statically linked AOT module '%s'.\n", aot_name);
1977                 if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
1978                         globals = (void **)info->globals;
1979                         g_assert (globals);
1980                 }
1981         } else {
1982                 if (enable_aot_cache)
1983                         sofile = aot_cache_load_module (assembly, &aot_name);
1984                 if (!sofile) {
1985                         char *err;
1986                         aot_name = g_strdup_printf ("%s%s", assembly->image->name, MONO_SOLIB_EXT);
1987
1988                         sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
1989
1990                         if (!sofile) {
1991                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module '%s' not found: %s\n", aot_name, err);
1992                                 g_free (err);
1993
1994                                 g_free (aot_name);
1995                                 char *basename = g_path_get_basename (assembly->image->name);
1996                                 aot_name = g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE, basename, MONO_SOLIB_EXT);
1997                                 g_free (basename);
1998                                 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
1999                                 if (!sofile) {
2000                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module '%s' not found: %s\n", aot_name, err);
2001                                         g_free (err);
2002                                 }
2003
2004                         }
2005                 }
2006                 if (!sofile) {
2007                         if (mono_aot_only && assembly->image->tables [MONO_TABLE_METHOD].rows)
2008                                 g_error ("Failed to load AOT module '%s' in aot-only mode.\n", aot_name);
2009                         g_free (aot_name);
2010                         return;
2011                 }
2012         }
2013
2014         if (!info) {
2015                 find_symbol (sofile, globals, "mono_aot_version", (gpointer *) &version_symbol);
2016                 find_symbol (sofile, globals, "mono_aot_file_info", (gpointer*)&info);
2017         }
2018
2019         if (version_symbol) {
2020                 /* Old file format */
2021                 version = atoi (version_symbol);
2022         } else {
2023                 g_assert (info);
2024                 version = info->version;
2025         }
2026
2027         if (version != MONO_AOT_FILE_VERSION) {
2028                 msg = g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION, version);
2029                 usable = FALSE;
2030         } else {
2031                 guint8 *blob;
2032                 void *handle;
2033
2034                 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2035                         aot_data = open_aot_data (assembly, info, &handle);
2036
2037                         blob = aot_data + info->table_offsets [MONO_AOT_TABLE_BLOB];
2038                 } else {
2039                         blob = (guint8 *)info->blob;
2040                 }
2041
2042                 usable = check_usable (assembly, info, blob, &msg);
2043         }
2044
2045         if (!usable) {
2046                 if (mono_aot_only) {
2047                         g_error ("Failed to load AOT module '%s' while running in aot-only mode: %s.\n", aot_name, msg);
2048                 } else {
2049                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable: %s.\n", aot_name, msg);
2050                 }
2051                 g_free (msg);
2052                 g_free (aot_name);
2053                 if (sofile)
2054                         mono_dl_close (sofile);
2055                 assembly->image->aot_module = NULL;
2056                 return;
2057         }
2058
2059         /* Sanity check */
2060         align_double = MONO_ABI_ALIGNOF (double);
2061         align_int64 = MONO_ABI_ALIGNOF (gint64);
2062         g_assert (info->double_align == align_double);
2063         g_assert (info->long_align == align_int64);
2064         g_assert (info->generic_tramp_num == MONO_TRAMPOLINE_NUM);
2065
2066         amodule = g_new0 (MonoAotModule, 1);
2067         amodule->aot_name = aot_name;
2068         amodule->assembly = assembly;
2069
2070         memcpy (&amodule->info, info, sizeof (*info));
2071
2072         amodule->got = (void **)amodule->info.jit_got;
2073         amodule->llvm_got = (void **)amodule->info.llvm_got;
2074         amodule->globals = globals;
2075         amodule->sofile = sofile;
2076         amodule->method_to_code = g_hash_table_new (mono_aligned_addr_hash, NULL);
2077         amodule->extra_methods = g_hash_table_new (NULL, NULL);
2078         amodule->shared_got = g_new0 (gpointer, info->nshared_got_entries);
2079
2080         if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2081                 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
2082                         amodule->tables [i] = aot_data + info->table_offsets [i];
2083         }
2084
2085         mono_os_mutex_init_recursive (&amodule->mutex);
2086
2087         /* Read image table */
2088         {
2089                 guint32 table_len, i;
2090                 char *table = NULL;
2091
2092                 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA)
2093                         table = amodule->tables [MONO_AOT_TABLE_IMAGE_TABLE];
2094                 else
2095                         table = (char *)info->image_table;
2096                 g_assert (table);
2097
2098                 table_len = *(guint32*)table;
2099                 table += sizeof (guint32);
2100                 amodule->image_table = g_new0 (MonoImage*, table_len);
2101                 amodule->image_names = g_new0 (MonoAssemblyName, table_len);
2102                 amodule->image_guids = g_new0 (char*, table_len);
2103                 amodule->image_table_len = table_len;
2104                 for (i = 0; i < table_len; ++i) {
2105                         MonoAssemblyName *aname = &(amodule->image_names [i]);
2106
2107                         aname->name = g_strdup (table);
2108                         table += strlen (table) + 1;
2109                         amodule->image_guids [i] = g_strdup (table);
2110                         table += strlen (table) + 1;
2111                         if (table [0] != 0)
2112                                 aname->culture = g_strdup (table);
2113                         table += strlen (table) + 1;
2114                         memcpy (aname->public_key_token, table, strlen (table) + 1);
2115                         table += strlen (table) + 1;                    
2116
2117                         table = (char *)ALIGN_PTR_TO (table, 8);
2118                         aname->flags = *(guint32*)table;
2119                         table += 4;
2120                         aname->major = *(guint32*)table;
2121                         table += 4;
2122                         aname->minor = *(guint32*)table;
2123                         table += 4;
2124                         aname->build = *(guint32*)table;
2125                         table += 4;
2126                         aname->revision = *(guint32*)table;
2127                         table += 4;
2128                 }
2129         }
2130
2131         amodule->jit_code_start = (guint8 *)info->jit_code_start;
2132         amodule->jit_code_end = (guint8 *)info->jit_code_end;
2133         if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2134                 amodule->blob = amodule->tables [MONO_AOT_TABLE_BLOB];
2135                 amodule->method_info_offsets = amodule->tables [MONO_AOT_TABLE_METHOD_INFO_OFFSETS];
2136                 amodule->ex_info_offsets = amodule->tables [MONO_AOT_TABLE_EX_INFO_OFFSETS];
2137                 amodule->class_info_offsets = amodule->tables [MONO_AOT_TABLE_CLASS_INFO_OFFSETS];
2138                 amodule->class_name_table = amodule->tables [MONO_AOT_TABLE_CLASS_NAME];
2139                 amodule->extra_method_table = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_TABLE];
2140                 amodule->extra_method_info_offsets = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS];
2141                 amodule->got_info_offsets = amodule->tables [MONO_AOT_TABLE_GOT_INFO_OFFSETS];
2142                 amodule->llvm_got_info_offsets = amodule->tables [MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS];
2143         } else {
2144                 amodule->blob = info->blob;
2145                 amodule->method_info_offsets = (guint32 *)info->method_info_offsets;
2146                 amodule->ex_info_offsets = (guint32 *)info->ex_info_offsets;
2147                 amodule->class_info_offsets = (guint32 *)info->class_info_offsets;
2148                 amodule->class_name_table = (guint16 *)info->class_name_table;
2149                 amodule->extra_method_table = (guint32 *)info->extra_method_table;
2150                 amodule->extra_method_info_offsets = (guint32 *)info->extra_method_info_offsets;
2151                 amodule->got_info_offsets = info->got_info_offsets;
2152                 amodule->llvm_got_info_offsets = info->llvm_got_info_offsets;
2153         }
2154         amodule->unbox_trampolines = (guint32 *)info->unbox_trampolines;
2155         amodule->unbox_trampolines_end = (guint32 *)info->unbox_trampolines_end;
2156         amodule->unbox_trampoline_addresses = (guint32 *)info->unbox_trampoline_addresses;
2157         amodule->unwind_info = (guint8 *)info->unwind_info;
2158         amodule->mem_begin = amodule->jit_code_start;
2159         amodule->mem_end = (guint8 *)info->mem_end;
2160         amodule->plt = (guint8 *)info->plt;
2161         amodule->plt_end = (guint8 *)info->plt_end;
2162         amodule->mono_eh_frame = (guint8 *)info->mono_eh_frame;
2163         amodule->trampolines [MONO_AOT_TRAMP_SPECIFIC] = (guint8 *)info->specific_trampolines;
2164         amodule->trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = (guint8 *)info->static_rgctx_trampolines;
2165         amodule->trampolines [MONO_AOT_TRAMP_IMT_THUNK] = (guint8 *)info->imt_thunks;
2166         amodule->trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = (guint8 *)info->gsharedvt_arg_trampolines;
2167
2168         if (!strcmp (assembly->aname.name, "mscorlib"))
2169                 mscorlib_aot_module = amodule;
2170
2171         /* Compute method addresses */
2172         amodule->methods = (void **)g_malloc0 (amodule->info.nmethods * sizeof (gpointer));
2173         for (i = 0; i < amodule->info.nmethods; ++i) {
2174                 void *addr = NULL;
2175
2176                 if (amodule->info.llvm_get_method) {
2177                         gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2178
2179                         addr = get_method (i);
2180                 }
2181
2182                 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
2183                 if (!addr && amodule->info.method_addresses) {
2184                         addr = get_call_table_entry (amodule->info.method_addresses, i);
2185                         g_assert (addr);
2186                         if (addr == amodule->info.method_addresses)
2187                                 addr = NULL;
2188                 }
2189                 if (addr == NULL)
2190                         amodule->methods [i] = GINT_TO_POINTER (-1);
2191                 else
2192                         amodule->methods [i] = addr;
2193         }
2194
2195         if (make_unreadable) {
2196 #ifndef TARGET_WIN32
2197                 guint8 *addr;
2198                 guint8 *page_start, *page_end;
2199                 int err, len;
2200
2201                 addr = amodule->mem_begin;
2202                 g_assert (addr);
2203                 len = amodule->mem_end - amodule->mem_begin;
2204
2205                 /* Round down in both directions to avoid modifying data which is not ours */
2206                 page_start = (guint8 *) (((gssize) (addr)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2207                 page_end = (guint8 *) (((gssize) (addr + len)) & ~ (mono_pagesize () - 1));
2208                 if (page_end > page_start) {
2209                         err = mono_mprotect (page_start, (page_end - page_start), MONO_MMAP_NONE);
2210                         g_assert (err == 0);
2211                 }
2212 #endif
2213         }
2214
2215         /* Compute the boundaries of LLVM code */
2216         if (info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM)
2217                 compute_llvm_code_range (amodule, &amodule->llvm_code_start, &amodule->llvm_code_end);
2218
2219         mono_aot_lock ();
2220
2221         if (amodule->jit_code_start) {
2222                 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->jit_code_start);
2223                 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->jit_code_end);
2224         }
2225         if (amodule->llvm_code_start) {
2226                 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->llvm_code_start);
2227                 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->llvm_code_end);
2228         }
2229
2230         g_hash_table_insert (aot_modules, assembly, amodule);
2231         mono_aot_unlock ();
2232
2233         if (amodule->jit_code_start)
2234                 mono_jit_info_add_aot_module (assembly->image, amodule->jit_code_start, amodule->jit_code_end);
2235         if (amodule->llvm_code_start)
2236                 mono_jit_info_add_aot_module (assembly->image, amodule->llvm_code_start, amodule->llvm_code_end);
2237
2238         assembly->image->aot_module = amodule;
2239
2240         if (mono_aot_only && !mono_llvm_only) {
2241                 char *code;
2242                 find_amodule_symbol (amodule, "specific_trampolines_page", (gpointer *)&code);
2243                 amodule->use_page_trampolines = code != NULL;
2244                 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2245         }
2246
2247         /*
2248          * Register the plt region as a single trampoline so we can unwind from this code
2249          */
2250         mono_tramp_info_register (
2251                 mono_tramp_info_create (
2252                         NULL,
2253                         amodule->plt,
2254                         amodule->plt_end - amodule->plt,
2255                         NULL,
2256                         mono_unwind_get_cie_program ()
2257                         ),
2258                 NULL
2259                 );
2260
2261         /*
2262          * Since we store methoddef and classdef tokens when referring to methods/classes in
2263          * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2264          * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2265          * non-lazily, since we can't handle out-of-date errors later.
2266          * The cached class info also depends on the exact assemblies.
2267          */
2268 #if defined(__native_client__)
2269         /* TODO: Don't 'load_image' on mscorlib due to a */
2270         /* recursive loading problem.  This should be    */
2271         /* removed if mscorlib is loaded from disk.      */
2272         if (strncmp(assembly->aname.name, "mscorlib", 8)) {
2273                 do_load_image = TRUE;
2274         } else {
2275                 do_load_image = FALSE;
2276         }
2277 #endif
2278         if (do_load_image) {
2279                 for (i = 0; i < amodule->image_table_len; ++i) {
2280                         MonoError error;
2281                         load_image (amodule, i, &error);
2282                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
2283                 }
2284         }
2285
2286         if (amodule->out_of_date) {
2287                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: Module %s is unusable because a dependency is out-of-date.\n", assembly->image->name);
2288                 if (mono_aot_only)
2289                         g_error ("Failed to load AOT module '%s' while running in aot-only mode because a dependency cannot be found or it is out of date.\n", aot_name);
2290         }
2291         else
2292                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loaded AOT Module for %s.\n", assembly->image->name);
2293 }
2294
2295 /*
2296  * mono_aot_register_module:
2297  *
2298  *   This should be called by embedding code to register AOT modules statically linked
2299  * into the executable. AOT_INFO should be the value of the 
2300  * 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2301  */
2302 void
2303 mono_aot_register_module (gpointer *aot_info)
2304 {
2305         gpointer *globals;
2306         char *aname;
2307         MonoAotFileInfo *info = (MonoAotFileInfo *)aot_info;
2308
2309         g_assert (info->version == MONO_AOT_FILE_VERSION);
2310
2311         if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
2312                 globals = (void **)info->globals;
2313                 g_assert (globals);
2314         }
2315
2316         aname = (char *)info->assembly_name;
2317
2318         /* This could be called before startup */
2319         if (aot_modules)
2320                 mono_aot_lock ();
2321
2322         if (!static_aot_modules)
2323                 static_aot_modules = g_hash_table_new (g_str_hash, g_str_equal);
2324
2325         g_hash_table_insert (static_aot_modules, aname, info);
2326
2327         if (aot_modules)
2328                 mono_aot_unlock ();
2329 }
2330
2331 void
2332 mono_aot_init (void)
2333 {
2334         mono_os_mutex_init_recursive (&aot_mutex);
2335         mono_os_mutex_init_recursive (&aot_page_mutex);
2336         aot_modules = g_hash_table_new (NULL, NULL);
2337
2338 #ifndef __native_client__
2339         mono_install_assembly_load_hook (load_aot_module, NULL);
2340 #endif
2341         mono_counters_register ("Async JIT info size", MONO_COUNTER_INT|MONO_COUNTER_JIT, &async_jit_info_size);
2342
2343         if (g_getenv ("MONO_LASTAOT"))
2344                 mono_last_aot_method = atoi (g_getenv ("MONO_LASTAOT"));
2345         aot_cache_init ();
2346 }
2347
2348 void
2349 mono_aot_cleanup (void)
2350 {
2351         if (aot_jit_icall_hash)
2352                 g_hash_table_destroy (aot_jit_icall_hash);
2353         if (aot_modules)
2354                 g_hash_table_destroy (aot_modules);
2355 }
2356
2357 static gboolean
2358 decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guint8 *buf, guint8 **endbuf)
2359 {
2360         MonoError error;
2361         guint32 flags;
2362         MethodRef ref;
2363         gboolean res;
2364
2365         info->vtable_size = decode_value (buf, &buf);
2366         if (info->vtable_size == -1)
2367                 /* Generic type */
2368                 return FALSE;
2369         flags = decode_value (buf, &buf);
2370         info->ghcimpl = (flags >> 0) & 0x1;
2371         info->has_finalize = (flags >> 1) & 0x1;
2372         info->has_cctor = (flags >> 2) & 0x1;
2373         info->has_nested_classes = (flags >> 3) & 0x1;
2374         info->blittable = (flags >> 4) & 0x1;
2375         info->has_references = (flags >> 5) & 0x1;
2376         info->has_static_refs = (flags >> 6) & 0x1;
2377         info->no_special_static_fields = (flags >> 7) & 0x1;
2378         info->is_generic_container = (flags >> 8) & 0x1;
2379
2380         if (info->has_cctor) {
2381                 res = decode_method_ref (module, &ref, buf, &buf, &error);
2382                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
2383                 if (!res)
2384                         return FALSE;
2385                 info->cctor_token = ref.token;
2386         }
2387         if (info->has_finalize) {
2388                 res = decode_method_ref (module, &ref, buf, &buf, &error);
2389                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
2390                 if (!res)
2391                         return FALSE;
2392                 info->finalize_image = ref.image;
2393                 info->finalize_token = ref.token;
2394         }
2395
2396         info->instance_size = decode_value (buf, &buf);
2397         info->class_size = decode_value (buf, &buf);
2398         info->packing_size = decode_value (buf, &buf);
2399         info->min_align = decode_value (buf, &buf);
2400
2401         *endbuf = buf;
2402
2403         return TRUE;
2404 }       
2405
2406 gpointer
2407 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
2408 {
2409         int i;
2410         MonoClass *klass = vtable->klass;
2411         MonoAotModule *amodule = (MonoAotModule *)klass->image->aot_module;
2412         guint8 *info, *p;
2413         MonoCachedClassInfo class_info;
2414         gboolean err;
2415         MethodRef ref;
2416         gboolean res;
2417         gpointer addr;
2418         MonoError inner_error;
2419
2420         mono_error_init (error);
2421
2422         if (MONO_CLASS_IS_INTERFACE (klass) || klass->rank || !amodule)
2423                 return NULL;
2424
2425         info = &amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2426         p = info;
2427
2428         err = decode_cached_class_info (amodule, &class_info, p, &p);
2429         if (!err)
2430                 return NULL;
2431
2432         for (i = 0; i < slot; ++i) {
2433                 decode_method_ref (amodule, &ref, p, &p, &inner_error);
2434                 mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2435         }
2436
2437         res = decode_method_ref (amodule, &ref, p, &p, &inner_error);
2438         mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2439         if (!res)
2440                 return NULL;
2441         if (ref.no_aot_trampoline)
2442                 return NULL;
2443
2444         if (mono_metadata_token_index (ref.token) == 0 || mono_metadata_token_table (ref.token) != MONO_TABLE_METHOD)
2445                 return NULL;
2446
2447         addr = mono_aot_get_method_from_token (domain, ref.image, ref.token, error);
2448         return addr;
2449 }
2450
2451 gboolean
2452 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
2453 {
2454         MonoAotModule *amodule = (MonoAotModule *)klass->image->aot_module;
2455         guint8 *p;
2456         gboolean err;
2457
2458         if (klass->rank || !amodule)
2459                 return FALSE;
2460
2461         p = (guint8*)&amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2462
2463         err = decode_cached_class_info (amodule, res, p, &p);
2464         if (!err)
2465                 return FALSE;
2466
2467         return TRUE;
2468 }
2469
2470 /**
2471  * mono_aot_get_class_from_name:
2472  *
2473  *  Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2474  * using a cache stored in the AOT file.
2475  * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2476  *
2477  * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was 
2478  * found.
2479  */
2480 gboolean
2481 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
2482 {
2483         MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
2484         guint16 *table, *entry;
2485         guint16 table_size;
2486         guint32 hash;
2487         char full_name_buf [1024];
2488         char *full_name;
2489         const char *name2, *name_space2;
2490         MonoTableInfo  *t;
2491         guint32 cols [MONO_TYPEDEF_SIZE];
2492         GHashTable *nspace_table;
2493
2494         if (!amodule || !amodule->class_name_table)
2495                 return FALSE;
2496
2497         amodule_lock (amodule);
2498
2499         *klass = NULL;
2500
2501         /* First look in the cache */
2502         if (!amodule->name_cache)
2503                 amodule->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
2504         nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2505         if (nspace_table) {
2506                 *klass = (MonoClass *)g_hash_table_lookup (nspace_table, name);
2507                 if (*klass) {
2508                         amodule_unlock (amodule);
2509                         return TRUE;
2510                 }
2511         }
2512
2513         table_size = amodule->class_name_table [0];
2514         table = amodule->class_name_table + 1;
2515
2516         if (name_space [0] == '\0')
2517                 full_name = g_strdup_printf ("%s", name);
2518         else {
2519                 if (strlen (name_space) + strlen (name) < 1000) {
2520                         sprintf (full_name_buf, "%s.%s", name_space, name);
2521                         full_name = full_name_buf;
2522                 } else {
2523                         full_name = g_strdup_printf ("%s.%s", name_space, name);
2524                 }
2525         }
2526         hash = mono_metadata_str_hash (full_name) % table_size;
2527         if (full_name != full_name_buf)
2528                 g_free (full_name);
2529
2530         entry = &table [hash * 2];
2531
2532         if (entry [0] != 0) {
2533                 t = &image->tables [MONO_TABLE_TYPEDEF];
2534
2535                 while (TRUE) {
2536                         guint32 index = entry [0];
2537                         guint32 next = entry [1];
2538                         guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
2539
2540                         name_table_accesses ++;
2541
2542                         mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
2543
2544                         name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2545                         name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2546
2547                         if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
2548                                 MonoError error;
2549                                 amodule_unlock (amodule);
2550                                 *klass = mono_class_get_checked (image, token, &error);
2551                                 if (!mono_error_ok (&error))
2552                                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
2553
2554                                 /* Add to cache */
2555                                 if (*klass) {
2556                                         amodule_lock (amodule);
2557                                         nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2558                                         if (!nspace_table) {
2559                                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
2560                                                 g_hash_table_insert (amodule->name_cache, (char*)name_space2, nspace_table);
2561                                         }
2562                                         g_hash_table_insert (nspace_table, (char*)name2, *klass);
2563                                         amodule_unlock (amodule);
2564                                 }
2565                                 return TRUE;
2566                         }
2567
2568                         if (next != 0) {
2569                                 entry = &table [next * 2];
2570                         } else {
2571                                 break;
2572                         }
2573                 }
2574         }
2575
2576         amodule_unlock (amodule);
2577         
2578         return TRUE;
2579 }
2580
2581 /* Compute the boundaries of the LLVM code for AMODULE. */
2582 static void
2583 compute_llvm_code_range (MonoAotModule *amodule, guint8 **code_start, guint8 **code_end)
2584 {
2585         guint8 *p;
2586         int version, fde_count;
2587         gint32 *table;
2588
2589         if (amodule->info.llvm_get_method) {
2590                 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2591
2592                 *code_start = (guint8 *)get_method (-1);
2593                 *code_end = (guint8 *)get_method (-2);
2594
2595                 g_assert (*code_end > *code_start);
2596                 return;
2597         }
2598
2599         g_assert (amodule->mono_eh_frame);
2600
2601         p = amodule->mono_eh_frame;
2602
2603         /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2604
2605         /* Header */
2606         version = *p;
2607         g_assert (version == 3);
2608         p ++;
2609         p ++;
2610         p = (guint8 *)ALIGN_PTR_TO (p, 4);
2611
2612         fde_count = *(guint32*)p;
2613         p += 4;
2614         table = (gint32*)p;
2615
2616         if (fde_count > 0) {
2617                 *code_start = (guint8 *)amodule->methods [table [0]];
2618                 *code_end = (guint8*)amodule->methods [table [(fde_count - 1) * 2]] + table [fde_count * 2];
2619         } else {
2620                 *code_start = NULL;
2621                 *code_end = NULL;
2622         }
2623 }
2624
2625 static gboolean
2626 is_llvm_code (MonoAotModule *amodule, guint8 *code)
2627 {
2628         if ((guint8*)code >= amodule->llvm_code_start && (guint8*)code < amodule->llvm_code_end)
2629                 return TRUE;
2630         else
2631                 return FALSE;
2632 }
2633
2634 static gboolean
2635 is_thumb_code (MonoAotModule *amodule, guint8 *code)
2636 {
2637         if (is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_THUMB))
2638                 return TRUE;
2639         else
2640                 return FALSE;
2641 }
2642
2643 /*
2644  * decode_llvm_mono_eh_frame:
2645  *
2646  *   Decode the EH information emitted by our modified LLVM compiler and construct a
2647  * MonoJitInfo structure from it.
2648  * LOCKING: Acquires the domain lock.
2649  */
2650 static MonoJitInfo*
2651 decode_llvm_mono_eh_frame (MonoAotModule *amodule, MonoDomain *domain, 
2652                                                    MonoMethod *method, guint8 *code, guint32 code_len,
2653                                                    MonoJitExceptionInfo *clauses, int num_clauses,
2654                                                    MonoJitInfoFlags flags,
2655                                                    GSList **nesting,
2656                                                    int *this_reg, int *this_offset)
2657 {
2658         guint8 *p, *code1, *code2;
2659         guint8 *fde, *cie, *code_start, *code_end;
2660         int version, fde_count;
2661         gint32 *table;
2662         int i, pos, left, right;
2663         MonoJitExceptionInfo *ei;
2664         guint32 fde_len, ei_len, nested_len, nindex;
2665         gpointer *type_info;
2666         MonoJitInfo *jinfo;
2667         MonoLLVMFDEInfo info;
2668
2669         if (!amodule->mono_eh_frame) {
2670                 jinfo = (MonoJitInfo *)mono_domain_alloc0_lock_free (domain, mono_jit_info_size (flags, num_clauses, 0));
2671                 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, 0);
2672                 memcpy (jinfo->clauses, clauses, num_clauses * sizeof (MonoJitExceptionInfo));
2673                 return jinfo;
2674         }
2675
2676         g_assert (amodule->mono_eh_frame && code);
2677
2678         p = amodule->mono_eh_frame;
2679
2680         /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2681
2682         /* Header */
2683         version = *p;
2684         g_assert (version == 3);
2685         p ++;
2686         /* func_encoding = *p; */
2687         p ++;
2688         p = (guint8 *)ALIGN_PTR_TO (p, 4);
2689
2690         fde_count = *(guint32*)p;
2691         p += 4;
2692         table = (gint32*)p;
2693
2694         /* There is +1 entry in the table */
2695         cie = p + ((fde_count + 1) * 8);
2696
2697         /* Binary search in the table to find the entry for code */
2698         left = 0;
2699         right = fde_count;
2700         while (TRUE) {
2701                 pos = (left + right) / 2;
2702
2703                 /* The table contains method index/fde offset pairs */
2704                 g_assert (table [(pos * 2)] != -1);
2705                 code1 = (guint8 *)amodule->methods [table [(pos * 2)]];
2706                 if (pos + 1 == fde_count) {
2707                         code2 = amodule->llvm_code_end;
2708                 } else {
2709                         g_assert (table [(pos + 1) * 2] != -1);
2710                         code2 = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2711                 }
2712
2713                 if (code < code1)
2714                         right = pos;
2715                 else if (code >= code2)
2716                         left = pos + 1;
2717                 else
2718                         break;
2719         }
2720
2721         code_start = (guint8 *)amodule->methods [table [(pos * 2)]];
2722         if (pos + 1 == fde_count) {
2723                 /* The +1 entry in the table contains the length of the last method */
2724                 int len = table [(pos + 1) * 2];
2725                 code_end = code_start + len;
2726         } else {
2727                 code_end = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2728         }
2729         if (!code_len)
2730                 code_len = code_end - code_start;
2731
2732         g_assert (code >= code_start && code < code_end);
2733
2734         if (is_thumb_code (amodule, code_start))
2735                 /* Clear thumb flag */
2736                 code_start = (guint8*)(((mgreg_t)code_start) & ~1);
2737
2738         fde = amodule->mono_eh_frame + table [(pos * 2) + 1];   
2739         /* This won't overflow because there is +1 entry in the table */
2740         fde_len = table [(pos * 2) + 2 + 1] - table [(pos * 2) + 1];
2741
2742         mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info);
2743         ei = info.ex_info;
2744         ei_len = info.ex_info_len;
2745         type_info = info.type_info;
2746         *this_reg = info.this_reg;
2747         *this_offset = info.this_offset;
2748
2749         /* Count number of nested clauses */
2750         nested_len = 0;
2751         for (i = 0; i < ei_len; ++i) {
2752                 /* This might be unaligned */
2753                 gint32 cindex1 = read32 (type_info [i]);
2754                 GSList *l;
2755
2756                 for (l = nesting [cindex1]; l; l = l->next)
2757                         nested_len ++;
2758         }
2759
2760         /*
2761          * LLVM might represent one IL region with multiple regions, so have to
2762          * allocate a new JI.
2763          */
2764         jinfo = 
2765                 (MonoJitInfo *)mono_domain_alloc0_lock_free (domain, mono_jit_info_size (flags, ei_len + nested_len, 0));
2766         mono_jit_info_init (jinfo, method, code, code_len, flags, ei_len + nested_len, 0);
2767
2768         jinfo->unwind_info = mono_cache_unwind_info (info.unw_info, info.unw_info_len);
2769         /* This signals that unwind_info points to a normal cached unwind info */
2770         jinfo->from_aot = 0;
2771         jinfo->from_llvm = 1;
2772
2773         for (i = 0; i < ei_len; ++i) {
2774                 /*
2775                  * clauses contains the original IL exception info saved by the AOT
2776                  * compiler, we have to combine that with the information produced by LLVM
2777                  */
2778                 /* The type_info entries contain IL clause indexes */
2779                 int clause_index = read32 (type_info [i]);
2780                 MonoJitExceptionInfo *jei = &jinfo->clauses [i];
2781                 MonoJitExceptionInfo *orig_jei = &clauses [clause_index];
2782
2783                 g_assert (clause_index < num_clauses);
2784                 jei->flags = orig_jei->flags;
2785                 jei->data.catch_class = orig_jei->data.catch_class;
2786
2787                 jei->try_start = ei [i].try_start;
2788                 jei->try_end = ei [i].try_end;
2789                 jei->handler_start = ei [i].handler_start;
2790                 jei->clause_index = clause_index;
2791
2792                 if (is_thumb_code (amodule, (guint8 *)jei->try_start)) {
2793                         jei->try_start = (void*)((mgreg_t)jei->try_start & ~1);
2794                         jei->try_end = (void*)((mgreg_t)jei->try_end & ~1);
2795                         /* Make sure we transition to thumb when a handler starts */
2796                         jei->handler_start = (void*)((mgreg_t)jei->handler_start + 1);
2797                 }
2798         }
2799
2800         /* See exception_cb () in mini-llvm.c as to why this is needed */
2801         nindex = ei_len;
2802         for (i = 0; i < ei_len; ++i) {
2803                 gint32 cindex1 = read32 (type_info [i]);
2804                 GSList *l;
2805
2806                 for (l = nesting [cindex1]; l; l = l->next) {
2807                         gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2808                         MonoJitExceptionInfo *nesting_ei;
2809                         MonoJitExceptionInfo *nesting_clause = &clauses [nesting_cindex];
2810
2811                         nesting_ei = &jinfo->clauses [nindex];
2812                         nindex ++;
2813
2814                         memcpy (nesting_ei, &jinfo->clauses [i], sizeof (MonoJitExceptionInfo));
2815                         nesting_ei->flags = nesting_clause->flags;
2816                         nesting_ei->data.catch_class = nesting_clause->data.catch_class;
2817                         nesting_ei->clause_index = nesting_cindex;
2818                 }
2819         }
2820         g_assert (nindex == ei_len + nested_len);
2821
2822         return jinfo;
2823 }
2824
2825 static gpointer
2826 alloc0_jit_info_data (MonoDomain *domain, int size, gboolean async_context)
2827 {
2828         gpointer res;
2829
2830         if (async_context) {
2831                 res = mono_domain_alloc0_lock_free (domain, size);
2832                 InterlockedExchangeAdd (&async_jit_info_size, size);
2833         } else {
2834                 res = mono_domain_alloc0 (domain, size);
2835         }
2836         return res;
2837 }
2838
2839 /*
2840  * LOCKING: Acquires the domain lock.
2841  * In async context, this is async safe.
2842  */
2843 static MonoJitInfo*
2844 decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain, 
2845                                                          MonoMethod *method, guint8* ex_info,
2846                                                          guint8 *code, guint32 code_len)
2847 {
2848         MonoError error;
2849         int i, buf_len, num_clauses, len;
2850         MonoJitInfo *jinfo;
2851         MonoJitInfoFlags flags = JIT_INFO_NONE;
2852         guint unwind_info, eflags;
2853         gboolean has_generic_jit_info, has_dwarf_unwind_info, has_clauses, has_seq_points, has_try_block_holes, has_arch_eh_jit_info;
2854         gboolean from_llvm, has_gc_map;
2855         guint8 *p;
2856         int try_holes_info_size, num_holes;
2857         int this_reg = 0, this_offset = 0;
2858         gboolean async;
2859
2860         /* Load the method info from the AOT file */
2861         async = mono_thread_info_is_async_context ();
2862
2863         p = ex_info;
2864         eflags = decode_value (p, &p);
2865         has_generic_jit_info = (eflags & 1) != 0;
2866         has_dwarf_unwind_info = (eflags & 2) != 0;
2867         has_clauses = (eflags & 4) != 0;
2868         has_seq_points = (eflags & 8) != 0;
2869         from_llvm = (eflags & 16) != 0;
2870         has_try_block_holes = (eflags & 32) != 0;
2871         has_gc_map = (eflags & 64) != 0;
2872         has_arch_eh_jit_info = (eflags & 128) != 0;
2873
2874         if (has_dwarf_unwind_info) {
2875                 unwind_info = decode_value (p, &p);
2876                 g_assert (unwind_info < (1 << 30));
2877         } else {
2878                 unwind_info = decode_value (p, &p);
2879         }
2880         if (has_generic_jit_info)
2881                 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_GENERIC_JIT_INFO);
2882
2883         if (has_try_block_holes) {
2884                 num_holes = decode_value (p, &p);
2885                 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_TRY_BLOCK_HOLES);
2886                 try_holes_info_size = sizeof (MonoTryBlockHoleTableJitInfo) + num_holes * sizeof (MonoTryBlockHoleJitInfo);
2887         } else {
2888                 num_holes = try_holes_info_size = 0;
2889         }
2890
2891         if (has_arch_eh_jit_info) {
2892                 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_ARCH_EH_INFO);
2893                 /* Overwrite the original code_len which includes alignment padding */
2894                 code_len = decode_value (p, &p);
2895         }
2896
2897         /* Exception table */
2898         if (has_clauses)
2899                 num_clauses = decode_value (p, &p);
2900         else
2901                 num_clauses = 0;
2902
2903         if (from_llvm) {
2904                 MonoJitExceptionInfo *clauses;
2905                 GSList **nesting;
2906
2907                 // FIXME: async
2908                 g_assert (!async);
2909
2910                 /*
2911                  * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
2912                  * section.
2913                  */
2914                 clauses = g_new0 (MonoJitExceptionInfo, num_clauses);
2915                 nesting = g_new0 (GSList*, num_clauses);
2916
2917                 for (i = 0; i < num_clauses; ++i) {
2918                         MonoJitExceptionInfo *ei = &clauses [i];
2919
2920                         ei->flags = decode_value (p, &p);
2921
2922                         if (decode_value (p, &p)) {
2923                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p, &error);
2924                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
2925                         }
2926
2927                         ei->clause_index = i;
2928
2929                         ei->try_offset = decode_value (p, &p);
2930                         ei->try_len = decode_value (p, &p);
2931                         ei->handler_offset = decode_value (p, &p);
2932                         ei->handler_len = decode_value (p, &p);
2933
2934                         /* Read the list of nesting clauses */
2935                         while (TRUE) {
2936                                 int nesting_index = decode_value (p, &p);
2937                                 if (nesting_index == -1)
2938                                         break;
2939                                 nesting [i] = g_slist_prepend (nesting [i], GINT_TO_POINTER (nesting_index));
2940                         }
2941                 }
2942
2943                 jinfo = decode_llvm_mono_eh_frame (amodule, domain, method, code, code_len, clauses, num_clauses, flags, nesting, &this_reg, &this_offset);
2944
2945                 g_free (clauses);
2946                 for (i = 0; i < num_clauses; ++i)
2947                         g_slist_free (nesting [i]);
2948                 g_free (nesting);
2949         } else {
2950                 len = mono_jit_info_size (flags, num_clauses, num_holes);
2951                 jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async);
2952                 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, num_holes);
2953
2954                 for (i = 0; i < jinfo->num_clauses; ++i) {
2955                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
2956
2957                         ei->flags = decode_value (p, &p);
2958
2959 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
2960                         /* Not used for catch clauses */
2961                         if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
2962                                 ei->exvar_offset = decode_value (p, &p);
2963 #else
2964                         ei->exvar_offset = decode_value (p, &p);
2965 #endif
2966
2967                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
2968                                 ei->data.filter = code + decode_value (p, &p);
2969                         else {
2970                                 int len = decode_value (p, &p);
2971
2972                                 if (len > 0) {
2973                                         if (async) {
2974                                                 p += len;
2975                                         } else {
2976                                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p, &error);
2977                                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
2978                                         }
2979                                 }
2980                         }
2981
2982                         ei->try_start = code + decode_value (p, &p);
2983                         ei->try_end = code + decode_value (p, &p);
2984                         ei->handler_start = code + decode_value (p, &p);
2985                 }
2986
2987                 jinfo->unwind_info = unwind_info;
2988                 jinfo->domain_neutral = 0;
2989                 jinfo->from_aot = 1;
2990         }
2991
2992         if (has_try_block_holes) {
2993                 MonoTryBlockHoleTableJitInfo *table;
2994
2995                 g_assert (jinfo->has_try_block_holes);
2996
2997                 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
2998                 g_assert (table);
2999
3000                 table->num_holes = (guint16)num_holes;
3001                 for (i = 0; i < num_holes; ++i) {
3002                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
3003                         hole->clause = decode_value (p, &p);
3004                         hole->length = decode_value (p, &p);
3005                         hole->offset = decode_value (p, &p);
3006                 }
3007         }
3008
3009         if (has_arch_eh_jit_info) {
3010                 MonoArchEHJitInfo *eh_info;
3011
3012                 g_assert (jinfo->has_arch_eh_info);
3013
3014                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
3015                 eh_info->stack_size = decode_value (p, &p);
3016                 eh_info->epilog_size = decode_value (p, &p);
3017         }
3018
3019         if (async) {
3020                 /* The rest is not needed in async mode */
3021                 jinfo->async = TRUE;
3022                 jinfo->d.aot_info = amodule;
3023                 // FIXME: Cache
3024                 return jinfo;
3025         }
3026
3027         if (has_generic_jit_info) {
3028                 MonoGenericJitInfo *gi;
3029                 int len;
3030
3031                 g_assert (jinfo->has_generic_jit_info);
3032
3033                 gi = mono_jit_info_get_generic_jit_info (jinfo);
3034                 g_assert (gi);
3035
3036                 gi->nlocs = decode_value (p, &p);
3037                 if (gi->nlocs) {
3038                         gi->locations = (MonoDwarfLocListEntry *)alloc0_jit_info_data (domain, gi->nlocs * sizeof (MonoDwarfLocListEntry), async);
3039                         for (i = 0; i < gi->nlocs; ++i) {
3040                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
3041
3042                                 entry->is_reg = decode_value (p, &p);
3043                                 entry->reg = decode_value (p, &p);
3044                                 if (!entry->is_reg)
3045                                         entry->offset = decode_value (p, &p);
3046                                 if (i > 0)
3047                                         entry->from = decode_value (p, &p);
3048                                 entry->to = decode_value (p, &p);
3049                         }
3050                         gi->has_this = 1;
3051                 } else {
3052                         if (from_llvm) {
3053                                 gi->has_this = this_reg != -1;
3054                                 gi->this_reg = this_reg;
3055                                 gi->this_offset = this_offset;
3056                         } else {
3057                                 gi->has_this = decode_value (p, &p);
3058                                 gi->this_reg = decode_value (p, &p);
3059                                 gi->this_offset = decode_value (p, &p);
3060                         }
3061                 }
3062
3063                 len = decode_value (p, &p);
3064                 if (async) {
3065                         p += len;
3066                 } else {
3067                         jinfo->d.method = decode_resolve_method_ref (amodule, p, &p, &error);
3068                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
3069                 }
3070
3071                 gi->generic_sharing_context = alloc0_jit_info_data (domain, sizeof (MonoGenericSharingContext), async);
3072                 if (decode_value (p, &p)) {
3073                         /* gsharedvt */
3074                         MonoGenericSharingContext *gsctx = gi->generic_sharing_context;
3075
3076                         gsctx->is_gsharedvt = TRUE;
3077                 }
3078         }
3079
3080         if (method && has_seq_points) {
3081                 MonoSeqPointInfo *seq_points;
3082
3083                 p += mono_seq_point_info_read (&seq_points, p, FALSE);
3084
3085                 mono_domain_lock (domain);
3086                 /* This could be set already since this function can be called more than once for the same method */
3087                 if (!g_hash_table_lookup (domain_jit_info (domain)->seq_points, method))
3088                         g_hash_table_insert (domain_jit_info (domain)->seq_points, method, seq_points);
3089                 else
3090                         mono_seq_point_info_free (seq_points);
3091                 mono_domain_unlock (domain);
3092         }
3093
3094         /* Load debug info */
3095         buf_len = decode_value (p, &p);
3096         if (!async)
3097                 mono_debug_add_aot_method (domain, method, code, p, buf_len);
3098         p += buf_len;
3099
3100         if (has_gc_map) {
3101                 int map_size = decode_value (p, &p);
3102                 /* The GC map requires 4 bytes of alignment */
3103                 while ((guint64)(gsize)p % 4)
3104                         p ++;           
3105                 jinfo->gc_info = p;
3106                 p += map_size;
3107         }
3108
3109         if (amodule != jinfo->d.method->klass->image->aot_module) {
3110                 mono_aot_lock ();
3111                 if (!ji_to_amodule)
3112                         ji_to_amodule = g_hash_table_new (NULL, NULL);
3113                 g_hash_table_insert (ji_to_amodule, jinfo, amodule);
3114                 mono_aot_unlock ();             
3115         }
3116
3117         return jinfo;
3118 }
3119
3120 static gboolean
3121 amodule_contains_code_addr (MonoAotModule *amodule, guint8 *code)
3122 {
3123         return (code >= amodule->jit_code_start && code <= amodule->jit_code_end) ||
3124                 (code >= amodule->llvm_code_start && code <= amodule->llvm_code_end);
3125 }
3126
3127 /*
3128  * mono_aot_get_unwind_info:
3129  *
3130  *   Return a pointer to the DWARF unwind info belonging to JI.
3131  */
3132 guint8*
3133 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
3134 {
3135         MonoAotModule *amodule;
3136         guint8 *p;
3137         guint8 *code = (guint8 *)ji->code_start;
3138
3139         if (ji->async)
3140                 amodule = (MonoAotModule *)ji->d.aot_info;
3141         else
3142                 amodule = (MonoAotModule *)jinfo_get_method (ji)->klass->image->aot_module;
3143         g_assert (amodule);
3144         g_assert (ji->from_aot);
3145
3146         if (!amodule_contains_code_addr (amodule, code)) {
3147                 /* ji belongs to a different aot module than amodule */
3148                 mono_aot_lock ();
3149                 g_assert (ji_to_amodule);
3150                 amodule = (MonoAotModule *)g_hash_table_lookup (ji_to_amodule, ji);
3151                 g_assert (amodule);
3152                 g_assert (amodule_contains_code_addr (amodule, code));
3153                 mono_aot_unlock ();
3154         }
3155
3156         p = amodule->unwind_info + ji->unwind_info;
3157         *unwind_info_len = decode_value (p, &p);
3158         return p;
3159 }
3160
3161 static void
3162 msort_method_addresses_internal (gpointer *array, int *indexes, int lo, int hi, gpointer *scratch, int *scratch_indexes)
3163 {
3164         int mid = (lo + hi) / 2;
3165         int i, t_lo, t_hi;
3166
3167         if (lo >= hi)
3168                 return;
3169
3170         if (hi - lo < 32) {
3171                 for (i = lo; i < hi; ++i)
3172                         if (array [i] > array [i + 1])
3173                                 break;
3174                 if (i == hi)
3175                         /* Already sorted */
3176                         return;
3177         }
3178
3179         msort_method_addresses_internal (array, indexes, lo, mid, scratch, scratch_indexes);
3180         msort_method_addresses_internal (array, indexes, mid + 1, hi, scratch, scratch_indexes);
3181
3182         if (array [mid] < array [mid + 1])
3183                 return;
3184
3185         /* Merge */
3186         t_lo = lo;
3187         t_hi = mid + 1;
3188         for (i = lo; i <= hi; i ++) {
3189                 if (t_lo <= mid && ((t_hi > hi) || array [t_lo] < array [t_hi])) {
3190                         scratch [i] = array [t_lo];
3191                         scratch_indexes [i] = indexes [t_lo];
3192                         t_lo ++;
3193                 } else {
3194                         scratch [i] = array [t_hi];
3195                         scratch_indexes [i] = indexes [t_hi];
3196                         t_hi ++;
3197                 }
3198         }
3199         for (i = lo; i <= hi; ++i) {
3200                 array [i] = scratch [i];
3201                 indexes [i] = scratch_indexes [i];
3202         }
3203 }
3204
3205 static void
3206 msort_method_addresses (gpointer *array, int *indexes, int len)
3207 {
3208         gpointer *scratch;
3209         int *scratch_indexes;
3210
3211         scratch = g_new (gpointer, len);
3212         scratch_indexes = g_new (int, len);
3213         msort_method_addresses_internal (array, indexes, 0, len - 1, scratch, scratch_indexes);
3214         g_free (scratch);
3215         g_free (scratch_indexes);
3216 }
3217
3218 /*
3219  * mono_aot_find_jit_info:
3220  *
3221  *   In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3222  * to the jit info tables.
3223  * FIXME: Large sizes in the lock free allocator
3224  */
3225 MonoJitInfo *
3226 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
3227 {
3228         MonoError error;
3229         int pos, left, right, code_len;
3230         int method_index, table_len;
3231         guint32 token;
3232         MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
3233         MonoMethod *method = NULL;
3234         MonoJitInfo *jinfo;
3235         guint8 *code, *ex_info, *p;
3236         guint32 *table;
3237         int nmethods;
3238         gpointer *methods;
3239         guint8 *code1, *code2;
3240         int methods_len, i;
3241         gboolean async;
3242
3243         if (!amodule)
3244                 return NULL;
3245
3246         nmethods = amodule->info.nmethods;
3247
3248         if (domain != mono_get_root_domain ())
3249                 /* FIXME: */
3250                 return NULL;
3251
3252         if (!amodule_contains_code_addr (amodule, (guint8 *)addr))
3253                 return NULL;
3254
3255         async = mono_thread_info_is_async_context ();
3256
3257         /* Compute a sorted table mapping code to method indexes. */
3258         if (!amodule->sorted_methods) {
3259                 // FIXME: async
3260                 gpointer *methods = g_new0 (gpointer, nmethods);
3261                 int *method_indexes = g_new0 (int, nmethods);
3262                 int methods_len = 0;
3263
3264                 for (i = 0; i < nmethods; ++i) {
3265                         /* Skip the -1 entries to speed up sorting */
3266                         if (amodule->methods [i] == GINT_TO_POINTER (-1))
3267                                 continue;
3268                         methods [methods_len] = amodule->methods [i];
3269                         method_indexes [methods_len] = i;
3270                         methods_len ++;
3271                 }
3272                 /* Use a merge sort as this is mostly sorted */
3273                 msort_method_addresses (methods, method_indexes, methods_len);
3274                 for (i = 0; i < methods_len -1; ++i)
3275                         g_assert (methods [i] <= methods [i + 1]);
3276                 amodule->sorted_methods_len = methods_len;
3277                 if (InterlockedCompareExchangePointer ((gpointer*)&amodule->sorted_methods, methods, NULL) != NULL)
3278                         /* Somebody got in before us */
3279                         g_free (methods);
3280                 if (InterlockedCompareExchangePointer ((gpointer*)&amodule->sorted_method_indexes, method_indexes, NULL) != NULL)
3281                         /* Somebody got in before us */
3282                         g_free (method_indexes);
3283         }
3284
3285         /* Binary search in the sorted_methods table */
3286         methods = amodule->sorted_methods;
3287         methods_len = amodule->sorted_methods_len;
3288         code = (guint8 *)addr;
3289         left = 0;
3290         right = methods_len;
3291         while (TRUE) {
3292                 pos = (left + right) / 2;
3293
3294                 code1 = (guint8 *)methods [pos];
3295                 if (pos + 1 == methods_len) {
3296                         if (code1 >= amodule->jit_code_start && code1 < amodule->jit_code_end)
3297                                 code2 = amodule->jit_code_end;
3298                         else
3299                                 code2 = amodule->llvm_code_end;
3300                 } else {
3301                         code2 = (guint8 *)methods [pos + 1];
3302                 }
3303
3304                 if (code < code1)
3305                         right = pos;
3306                 else if (code >= code2)
3307                         left = pos + 1;
3308                 else
3309                         break;
3310         }
3311
3312         g_assert (addr >= methods [pos]);
3313         if (pos + 1 < methods_len)
3314                 g_assert (addr < methods [pos + 1]);
3315         method_index = amodule->sorted_method_indexes [pos];
3316
3317         /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3318         if (async) {
3319                 JitInfoMap *table = amodule->async_jit_info_table;
3320                 int len;
3321
3322                 if (table) {
3323                         len = table [0].method_index;
3324                         for (i = 1; i < len; ++i) {
3325                                 if (table [i].method_index == method_index)
3326                                         return table [i].jinfo;
3327                         }
3328                 }
3329         }
3330
3331         code = (guint8 *)amodule->methods [method_index];
3332         ex_info = &amodule->blob [mono_aot_get_offset (amodule->ex_info_offsets, method_index)];
3333
3334         if (pos == methods_len - 1) {
3335                 if (code >= amodule->jit_code_start && code < amodule->jit_code_end)
3336                         code_len = amodule->jit_code_end - code;
3337                 else
3338                         code_len = amodule->llvm_code_end - code;
3339         } else {
3340                 code_len = (guint8*)methods [pos + 1] - (guint8*)methods [pos];
3341         }
3342
3343         g_assert ((guint8*)code <= (guint8*)addr && (guint8*)addr < (guint8*)code + code_len);
3344
3345         /* Might be a wrapper/extra method */
3346         if (!async) {
3347                 if (amodule->extra_methods) {
3348                         amodule_lock (amodule);
3349                         method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
3350                         amodule_unlock (amodule);
3351                 } else {
3352                         method = NULL;
3353                 }
3354
3355                 if (!method) {
3356                         if (method_index >= image->tables [MONO_TABLE_METHOD].rows) {
3357                                 /*
3358                                  * This is hit for extra methods which are called directly, so they are
3359                                  * not in amodule->extra_methods.
3360                                  */
3361                                 table_len = amodule->extra_method_info_offsets [0];
3362                                 table = amodule->extra_method_info_offsets + 1;
3363                                 left = 0;
3364                                 right = table_len;
3365                                 pos = 0;
3366
3367                                 /* Binary search */
3368                                 while (TRUE) {
3369                                         pos = ((left + right) / 2);
3370
3371                                         g_assert (pos < table_len);
3372
3373                                         if (table [pos * 2] < method_index)
3374                                                 left = pos + 1;
3375                                         else if (table [pos * 2] > method_index)
3376                                                 right = pos;
3377                                         else
3378                                                 break;
3379                                 }
3380
3381                                 p = amodule->blob + table [(pos * 2) + 1];
3382                                 method = decode_resolve_method_ref (amodule, p, &p, &error);
3383                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3384                                 if (!method)
3385                                         /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3386                                         return NULL;
3387                         } else {
3388                                 MonoError error;
3389                                 token = mono_metadata_make_token (MONO_TABLE_METHOD, method_index + 1);
3390                                 method = mono_get_method_checked (image, token, NULL, NULL, &error);
3391                                 if (!method)
3392                                         g_error ("AOT runtime could not load method due to %s", mono_error_get_message (&error)); /* FIXME don't swallow the error */
3393                         }
3394                 }
3395                 /* FIXME: */
3396                 g_assert (method);
3397         }
3398
3399         //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3400
3401         jinfo = decode_exception_debug_info (amodule, domain, method, ex_info, code, code_len);
3402
3403         g_assert ((guint8*)addr >= (guint8*)jinfo->code_start);
3404
3405         /* Add it to the normal JitInfo tables */
3406         if (async) {
3407                 JitInfoMap *old_table, *new_table;
3408                 int len;
3409
3410                 /*
3411                  * Use a simple inmutable table with linear search to cache async jit info entries.
3412                  * This assumes that the number of entries is small.
3413                  */
3414                 while (TRUE) {
3415                         /* Copy the table, adding a new entry at the end */
3416                         old_table = amodule->async_jit_info_table;
3417                         if (old_table)
3418                                 len = old_table[0].method_index;
3419                         else
3420                                 len = 1;
3421                         new_table = (JitInfoMap *)alloc0_jit_info_data (domain, (len + 1) * sizeof (JitInfoMap), async);
3422                         if (old_table)
3423                                 memcpy (new_table, old_table, len * sizeof (JitInfoMap));
3424                         new_table [0].method_index = len + 1;
3425                         new_table [len].method_index = method_index;
3426                         new_table [len].jinfo = jinfo;
3427                         /* Publish it */
3428                         mono_memory_barrier ();
3429                         if (InterlockedCompareExchangePointer ((volatile gpointer *)&amodule->async_jit_info_table, new_table, old_table) == old_table)
3430                                 break;
3431                 }
3432         } else {
3433                 mono_jit_info_table_add (domain, jinfo);
3434         }
3435
3436         if ((guint8*)addr >= (guint8*)jinfo->code_start + jinfo->code_size)
3437                 /* addr is in the padding between methods, see the adjustment of code_size in decode_exception_debug_info () */
3438                 return NULL;
3439         
3440         return jinfo;
3441 }
3442
3443 static gboolean
3444 decode_patch (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji, guint8 *buf, guint8 **endbuf)
3445 {
3446         MonoError error;
3447         guint8 *p = buf;
3448         gpointer *table;
3449         MonoImage *image;
3450         int i;
3451
3452         switch (ji->type) {
3453         case MONO_PATCH_INFO_METHOD:
3454         case MONO_PATCH_INFO_METHOD_JUMP:
3455         case MONO_PATCH_INFO_ICALL_ADDR:
3456         case MONO_PATCH_INFO_ICALL_ADDR_CALL:
3457         case MONO_PATCH_INFO_METHOD_RGCTX:
3458         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
3459                 MethodRef ref;
3460                 gboolean res;
3461
3462                 res = decode_method_ref (aot_module, &ref, p, &p, &error);
3463                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
3464                 if (!res)
3465                         goto cleanup;
3466
3467                 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)) {
3468                         ji->data.target = mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref.image, ref.token));
3469                         ji->type = MONO_PATCH_INFO_ABS;
3470                 }
3471                 else {
3472                         if (ref.method) {
3473                                 ji->data.method = ref.method;
3474                         }else {
3475                                 MonoError error;
3476                                 ji->data.method = mono_get_method_checked (ref.image, ref.token, NULL, NULL, &error);
3477                                 if (!ji->data.method)
3478                                         g_error ("AOT Runtime could not load method due to %s", mono_error_get_message (&error)); /* FIXME don't swallow the error */
3479                         }
3480                         g_assert (ji->data.method);
3481                         mono_class_init (ji->data.method->klass);
3482                 }
3483                 break;
3484         }
3485         case MONO_PATCH_INFO_INTERNAL_METHOD:
3486         case MONO_PATCH_INFO_JIT_ICALL_ADDR: {
3487                 guint32 len = decode_value (p, &p);
3488
3489                 ji->data.name = (char*)p;
3490                 p += len + 1;
3491                 break;
3492         }
3493         case MONO_PATCH_INFO_METHODCONST:
3494                 /* Shared */
3495                 ji->data.method = decode_resolve_method_ref (aot_module, p, &p, &error);
3496                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3497                 if (!ji->data.method)
3498                         goto cleanup;
3499                 break;
3500         case MONO_PATCH_INFO_VTABLE:
3501         case MONO_PATCH_INFO_CLASS:
3502         case MONO_PATCH_INFO_IID:
3503         case MONO_PATCH_INFO_ADJUSTED_IID:
3504                 /* Shared */
3505                 ji->data.klass = decode_klass_ref (aot_module, p, &p, &error);
3506                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3507                 if (!ji->data.klass)
3508                         goto cleanup;
3509                 break;
3510         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
3511                 ji->data.del_tramp = (MonoDelegateClassMethodPair *)mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
3512                 ji->data.del_tramp->klass = decode_klass_ref (aot_module, p, &p, &error);
3513                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3514                 if (!ji->data.del_tramp->klass)
3515                         goto cleanup;
3516                 if (decode_value (p, &p)) {
3517                         ji->data.del_tramp->method = decode_resolve_method_ref (aot_module, p, &p, &error);
3518                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
3519                         if (!ji->data.del_tramp->method)
3520                                 goto cleanup;
3521                 }
3522                 ji->data.del_tramp->is_virtual = decode_value (p, &p) ? TRUE : FALSE;
3523                 break;
3524         case MONO_PATCH_INFO_IMAGE:
3525                 ji->data.image = load_image (aot_module, decode_value (p, &p), &error);
3526                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3527                 if (!ji->data.image)
3528                         goto cleanup;
3529                 break;
3530         case MONO_PATCH_INFO_FIELD:
3531         case MONO_PATCH_INFO_SFLDA:
3532                 /* Shared */
3533                 ji->data.field = decode_field_info (aot_module, p, &p);
3534                 if (!ji->data.field)
3535                         goto cleanup;
3536                 break;
3537         case MONO_PATCH_INFO_SWITCH:
3538                 ji->data.table = (MonoJumpInfoBBTable *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoBBTable));
3539                 ji->data.table->table_size = decode_value (p, &p);
3540                 table = (void **)mono_domain_alloc (mono_domain_get (), sizeof (gpointer) * ji->data.table->table_size);
3541                 ji->data.table->table = (MonoBasicBlock**)table;
3542                 for (i = 0; i < ji->data.table->table_size; i++)
3543                         table [i] = (gpointer)(gssize)decode_value (p, &p);
3544                 break;
3545         case MONO_PATCH_INFO_R4: {
3546                 guint32 val;
3547                 
3548                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3549                 val = decode_value (p, &p);
3550                 *(float*)ji->data.target = *(float*)&val;
3551                 break;
3552         }
3553         case MONO_PATCH_INFO_R8: {
3554                 guint32 val [2];
3555                 guint64 v;
3556
3557                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3558
3559                 val [0] = decode_value (p, &p);
3560                 val [1] = decode_value (p, &p);
3561                 v = ((guint64)val [1] << 32) | ((guint64)val [0]);
3562                 *(double*)ji->data.target = *(double*)&v;
3563                 break;
3564         }
3565         case MONO_PATCH_INFO_LDSTR:
3566                 image = load_image (aot_module, decode_value (p, &p), &error);
3567                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3568                 if (!image)
3569                         goto cleanup;
3570                 ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
3571                 break;
3572         case MONO_PATCH_INFO_RVA:
3573         case MONO_PATCH_INFO_DECLSEC:
3574         case MONO_PATCH_INFO_LDTOKEN:
3575         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3576                 /* Shared */
3577                 image = load_image (aot_module, decode_value (p, &p), &error);
3578                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3579                 if (!image)
3580                         goto cleanup;
3581                 ji->data.token = mono_jump_info_token_new (mp, image, decode_value (p, &p));
3582
3583                 ji->data.token->has_context = decode_value (p, &p);
3584                 if (ji->data.token->has_context) {
3585                         gboolean res = decode_generic_context (aot_module, &ji->data.token->context, p, &p, &error);
3586                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
3587                         if (!res)
3588                                 goto cleanup;
3589                 }
3590                 break;
3591         case MONO_PATCH_INFO_EXC_NAME:
3592                 ji->data.klass = decode_klass_ref (aot_module, p, &p, &error);
3593                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3594                 if (!ji->data.klass)
3595                         goto cleanup;
3596                 ji->data.name = ji->data.klass->name;
3597                 break;
3598         case MONO_PATCH_INFO_METHOD_REL:
3599                 ji->data.offset = decode_value (p, &p);
3600                 break;
3601         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
3602         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
3603         case MONO_PATCH_INFO_GC_NURSERY_START:
3604         case MONO_PATCH_INFO_GC_NURSERY_BITS:
3605         case MONO_PATCH_INFO_JIT_TLS_ID:
3606                 break;
3607         case MONO_PATCH_INFO_CASTCLASS_CACHE:
3608                 ji->data.index = decode_value (p, &p);
3609                 break;
3610         case MONO_PATCH_INFO_RGCTX_FETCH:
3611         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
3612                 gboolean res;
3613                 MonoJumpInfoRgctxEntry *entry;
3614                 guint32 offset, val;
3615                 guint8 *p2;
3616
3617                 offset = decode_value (p, &p);
3618                 val = decode_value (p, &p);
3619
3620                 entry = (MonoJumpInfoRgctxEntry *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3621                 p2 = aot_module->blob + offset;
3622                 entry->method = decode_resolve_method_ref (aot_module, p2, &p2, &error);
3623                 entry->in_mrgctx = ((val & 1) > 0) ? TRUE : FALSE;
3624                 entry->info_type = (MonoRgctxInfoType)((val >> 1) & 0xff);
3625                 entry->data = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3626                 entry->data->type = (MonoJumpInfoType)((val >> 9) & 0xff);
3627                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3628                 
3629                 res = decode_patch (aot_module, mp, entry->data, p, &p);
3630                 if (!res)
3631                         goto cleanup;
3632                 ji->data.rgctx_entry = entry;
3633                 break;
3634         }
3635         case MONO_PATCH_INFO_SEQ_POINT_INFO:
3636         case MONO_PATCH_INFO_AOT_MODULE:
3637         case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
3638                 break;
3639         case MONO_PATCH_INFO_SIGNATURE:
3640         case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
3641                 ji->data.target = decode_signature (aot_module, p, &p);
3642                 break;
3643         case MONO_PATCH_INFO_TLS_OFFSET:
3644                 ji->data.target = GINT_TO_POINTER (decode_value (p, &p));
3645                 break;
3646         case MONO_PATCH_INFO_GSHAREDVT_CALL: {
3647                 MonoJumpInfoGSharedVtCall *info = (MonoJumpInfoGSharedVtCall *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoGSharedVtCall));
3648                 info->sig = decode_signature (aot_module, p, &p);
3649                 g_assert (info->sig);
3650                 info->method = decode_resolve_method_ref (aot_module, p, &p, &error);
3651                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
3652
3653                 ji->data.target = info;
3654                 break;
3655         }
3656         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
3657                 MonoGSharedVtMethodInfo *info = (MonoGSharedVtMethodInfo *)mono_mempool_alloc0 (mp, sizeof (MonoGSharedVtMethodInfo));
3658                 int i;
3659                 
3660                 info->method = decode_resolve_method_ref (aot_module, p, &p, &error);
3661                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
3662
3663                 info->num_entries = decode_value (p, &p);
3664                 info->count_entries = info->num_entries;
3665                 info->entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->num_entries);
3666                 for (i = 0; i < info->num_entries; ++i) {
3667                         MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
3668
3669                         template_->info_type = (MonoRgctxInfoType)decode_value (p, &p);
3670                         switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
3671                         case MONO_PATCH_INFO_CLASS: {
3672                                 MonoClass *klass = decode_klass_ref (aot_module, p, &p, &error);
3673                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
3674                                 if (!klass)
3675                                         goto cleanup;
3676                                 template_->data = &klass->byval_arg;
3677                                 break;
3678                         }
3679                         case MONO_PATCH_INFO_FIELD:
3680                                 template_->data = decode_field_info (aot_module, p, &p);
3681                                 if (!template_->data)
3682                                         goto cleanup;
3683                                 break;
3684                         default:
3685                                 g_assert_not_reached ();
3686                                 break;
3687                         }
3688                 }
3689                 ji->data.target = info;
3690                 break;
3691         }
3692         case MONO_PATCH_INFO_LDSTR_LIT: {
3693                 int len = decode_value (p, &p);
3694                 char *s;
3695
3696                 s = (char *)mono_mempool_alloc0 (mp, len + 1);
3697                 memcpy (s, p, len + 1);
3698                 p += len + 1;
3699
3700                 ji->data.target = s;
3701                 break;
3702         }
3703         case MONO_PATCH_INFO_VIRT_METHOD: {
3704                 MonoJumpInfoVirtMethod *info = (MonoJumpInfoVirtMethod *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoVirtMethod));
3705
3706                 info->klass = decode_klass_ref (aot_module, p, &p, &error);
3707                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
3708
3709                 info->method = decode_resolve_method_ref (aot_module, p, &p, &error);
3710                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
3711
3712                 ji->data.target = info;
3713                 break;
3714         }
3715         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
3716                 break;
3717         case MONO_PATCH_INFO_AOT_JIT_INFO:
3718                 ji->data.index = decode_value (p, &p);
3719                 break;
3720         default:
3721                 g_warning ("unhandled type %d", ji->type);
3722                 g_assert_not_reached ();
3723         }
3724
3725         *endbuf = p;
3726
3727         return TRUE;
3728
3729  cleanup:
3730         return FALSE;
3731 }
3732
3733 /*
3734  * decode_patches:
3735  *
3736  *    Decode a list of patches identified by the got offsets in GOT_OFFSETS. Return an array of
3737  * MonoJumpInfo structures allocated from MP.
3738  */
3739 static MonoJumpInfo*
3740 decode_patches (MonoAotModule *amodule, MonoMemPool *mp, int n_patches, gboolean llvm, guint32 *got_offsets)
3741 {
3742         MonoJumpInfo *patches;
3743         MonoJumpInfo *ji;
3744         gpointer *got;
3745         guint32 *got_info_offsets;
3746         int i;
3747         gboolean res;
3748
3749         if (llvm) {
3750                 got = amodule->llvm_got;
3751                 got_info_offsets = (guint32 *)amodule->llvm_got_info_offsets;
3752         } else {
3753                 got = amodule->got;
3754                 got_info_offsets = (guint32 *)amodule->got_info_offsets;
3755         }
3756
3757         patches = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo) * n_patches);
3758         for (i = 0; i < n_patches; ++i) {
3759                 guint8 *p = amodule->blob + mono_aot_get_offset (got_info_offsets, got_offsets [i]);
3760
3761                 ji = &patches [i];
3762                 ji->type = (MonoJumpInfoType)decode_value (p, &p);
3763
3764                 /* See load_method () for SFLDA */
3765                 if (got && got [got_offsets [i]] && ji->type != MONO_PATCH_INFO_SFLDA) {
3766                         /* Already loaded */
3767                 } else {
3768                         res = decode_patch (amodule, mp, ji, p, &p);
3769                         if (!res)
3770                                 return NULL;
3771                 }
3772         }
3773
3774         return patches;
3775 }
3776
3777 static MonoJumpInfo*
3778 load_patch_info (MonoAotModule *amodule, MonoMemPool *mp, int n_patches,
3779                                  gboolean llvm, guint32 **got_slots,
3780                                  guint8 *buf, guint8 **endbuf)
3781 {
3782         MonoJumpInfo *patches;
3783         int pindex;
3784         guint8 *p;
3785
3786         p = buf;
3787
3788         *got_slots = (guint32 *)g_malloc (sizeof (guint32) * n_patches);
3789         for (pindex = 0; pindex < n_patches; ++pindex) {
3790                 (*got_slots)[pindex] = decode_value (p, &p);
3791         }
3792
3793         patches = decode_patches (amodule, mp, n_patches, llvm, *got_slots);
3794         if (!patches) {
3795                 g_free (*got_slots);
3796                 *got_slots = NULL;
3797                 return NULL;
3798         }
3799
3800         *endbuf = p;
3801         return patches;
3802 }
3803
3804 static void
3805 register_jump_target_got_slot (MonoDomain *domain, MonoMethod *method, gpointer *got_slot)
3806 {
3807         /*
3808          * Jump addresses cannot be patched by the trampoline code since it
3809          * does not have access to the caller's address. Instead, we collect
3810          * the addresses of the GOT slots pointing to a method, and patch
3811          * them after the method has been compiled.
3812          */
3813         MonoJitDomainInfo *info = domain_jit_info (domain);
3814         GSList *list;
3815                 
3816         mono_domain_lock (domain);
3817         if (!info->jump_target_got_slot_hash)
3818                 info->jump_target_got_slot_hash = g_hash_table_new (NULL, NULL);
3819         list = (GSList *)g_hash_table_lookup (info->jump_target_got_slot_hash, method);
3820         list = g_slist_prepend (list, got_slot);
3821         g_hash_table_insert (info->jump_target_got_slot_hash, method, list);
3822         mono_domain_unlock (domain);
3823 }
3824
3825 /*
3826  * load_method:
3827  *
3828  *   Load the method identified by METHOD_INDEX from the AOT image. Return a
3829  * pointer to the native code of the method, or NULL if not found.
3830  * METHOD might not be set if the caller only has the image/token info.
3831  */
3832 static gpointer
3833 load_method (MonoDomain *domain, MonoAotModule *amodule, MonoImage *image, MonoMethod *method, guint32 token, int method_index,
3834                          MonoError *error)
3835 {
3836         MonoJitInfo *jinfo = NULL;
3837         guint8 *code = NULL, *info;
3838         gboolean res;
3839
3840         mono_error_init (error);
3841
3842         init_amodule_got (amodule);
3843
3844         if (mono_profiler_get_events () & MONO_PROFILE_ENTER_LEAVE) {
3845                 if (mono_aot_only)
3846                         /* The caller cannot handle this */
3847                         g_assert_not_reached ();
3848                 return NULL;
3849         }
3850
3851         if (domain != mono_get_root_domain ())
3852                 /* Non shared AOT code can't be used in other appdomains */
3853                 return NULL;
3854
3855         if (amodule->out_of_date)
3856                 return NULL;
3857
3858         if (amodule->info.llvm_get_method) {
3859                 /*
3860                  * Obtain the method address by calling a generated function in the LLVM module.
3861                  */
3862                 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
3863                 code = (guint8 *)get_method (method_index);
3864         }
3865
3866         if (!code) {
3867                 /* JITted method */
3868                 if (amodule->methods [method_index] == GINT_TO_POINTER (-1)) {
3869                         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3870                                 char *full_name;
3871
3872                                 if (!method) {
3873                                         method = mono_get_method_checked (image, token, NULL, NULL, error);
3874                                         if (!method)
3875                                                 return NULL;
3876                                 }
3877                                 full_name = mono_method_full_name (method, TRUE);
3878                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: NOT FOUND: %s.", full_name);
3879                                 g_free (full_name);
3880                         }
3881                         return NULL;
3882                 }
3883                 code = (guint8 *)amodule->methods [method_index];
3884         }
3885
3886         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
3887
3888         if (!amodule->methods_loaded) {
3889                 amodule_lock (amodule);
3890                 if (!amodule->methods_loaded) {
3891                         guint32 *loaded;
3892
3893                         loaded = g_new0 (guint32, amodule->info.nmethods / 32 + 1);
3894                         mono_memory_barrier ();
3895                         amodule->methods_loaded = loaded;
3896                 }
3897                 amodule_unlock (amodule);
3898         }
3899
3900         if ((amodule->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
3901                 return code;
3902
3903         if (mono_last_aot_method != -1) {
3904                 if (mono_jit_stats.methods_aot >= mono_last_aot_method)
3905                                 return NULL;
3906                 else if (mono_jit_stats.methods_aot == mono_last_aot_method - 1) {
3907                         if (!method) {
3908                                 method = mono_get_method_checked (image, token, NULL, NULL, error);
3909                                 if (!method)
3910                                         return NULL;
3911                         }
3912                         if (method) {
3913                                 char *name = mono_method_full_name (method, TRUE);
3914                                 g_print ("LAST AOT METHOD: %s.\n", name);
3915                                 g_free (name);
3916                         } else {
3917                                 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
3918                         }
3919                 }
3920         }
3921
3922         if (!(is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY))) {
3923                 res = init_method (amodule, method_index, method, NULL, NULL, error);
3924                 if (!res)
3925                         goto cleanup;
3926         }
3927
3928         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3929                 char *full_name;
3930
3931                 if (!method) {
3932                         method = mono_get_method_checked (image, token, NULL, NULL, error);
3933                         if (!method)
3934                                 return NULL;
3935                 }
3936
3937                 full_name = mono_method_full_name (method, TRUE);
3938
3939                 if (!jinfo)
3940                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3941
3942                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
3943                 g_free (full_name);
3944         }
3945
3946         amodule_lock (amodule);
3947
3948         InterlockedIncrement (&mono_jit_stats.methods_aot);
3949
3950         amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
3951
3952         init_plt (amodule);
3953
3954         if (method && method->wrapper_type)
3955                 g_hash_table_insert (amodule->method_to_code, method, code);
3956
3957         amodule_unlock (amodule);
3958
3959         if (mono_profiler_get_events () & MONO_PROFILE_JIT_COMPILATION) {
3960                 MonoJitInfo *jinfo;
3961
3962                 if (!method) {
3963                         method = mono_get_method_checked (amodule->assembly->image, token, NULL, NULL, error);
3964                         if (!method)
3965                                 return NULL;
3966                 }
3967                 mono_profiler_method_jit (method);
3968                 jinfo = mono_jit_info_table_find (domain, (char*)code);
3969                 g_assert (jinfo);
3970                 mono_profiler_method_end_jit (method, jinfo, MONO_PROFILE_OK);
3971         }
3972
3973         return code;
3974
3975  cleanup:
3976         if (jinfo)
3977                 g_free (jinfo);
3978
3979         return NULL;
3980 }
3981
3982 static guint32
3983 find_aot_method_in_amodule (MonoAotModule *amodule, MonoMethod *method, guint32 hash_full)
3984 {
3985         MonoError error;
3986         guint32 table_size, entry_size, hash;
3987         guint32 *table, *entry;
3988         guint32 index;
3989         static guint32 n_extra_decodes;
3990
3991         if (!amodule || amodule->out_of_date)
3992                 return 0xffffff;
3993
3994         table_size = amodule->extra_method_table [0];
3995         hash = hash_full % table_size;
3996         table = amodule->extra_method_table + 1;
3997         entry_size = 3;
3998
3999         entry = &table [hash * entry_size];
4000
4001         if (entry [0] == 0)
4002                 return 0xffffff;
4003
4004         index = 0xffffff;
4005         while (TRUE) {
4006                 guint32 key = entry [0];
4007                 guint32 value = entry [1];
4008                 guint32 next = entry [entry_size - 1];
4009                 MonoMethod *m;
4010                 guint8 *p, *orig_p;
4011
4012                 p = amodule->blob + key;
4013                 orig_p = p;
4014
4015                 amodule_lock (amodule);
4016                 if (!amodule->method_ref_to_method)
4017                         amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
4018                 m = (MonoMethod *)g_hash_table_lookup (amodule->method_ref_to_method, p);
4019                 amodule_unlock (amodule);
4020                 if (!m) {
4021                         m = decode_resolve_method_ref_with_target (amodule, method, p, &p, &error);
4022                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
4023                         /*
4024                          * Can't catche runtime invoke wrappers since it would break
4025                          * the check in decode_method_ref_with_target ().
4026                          */
4027                         if (m && m->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
4028                                 amodule_lock (amodule);
4029                                 g_hash_table_insert (amodule->method_ref_to_method, orig_p, m);
4030                                 amodule_unlock (amodule);
4031                         }
4032                 }
4033                 if (m == method) {
4034                         index = value;
4035                         break;
4036                 }
4037
4038                 /*
4039                  * Special case: wrappers of shared generic methods.
4040                  * This is needed because of the way mini_get_shared_method () works,
4041                  * we could end up with multiple copies of the same wrapper.
4042                  */
4043                 if (m && method->wrapper_type && method->wrapper_type == m->wrapper_type &&
4044                         method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
4045                         MonoMethod *w1 = mono_marshal_method_from_wrapper (method);
4046                         MonoMethod *w2 = mono_marshal_method_from_wrapper (m);
4047
4048                         if ((w1 == w2) || (w1->is_inflated && ((MonoMethodInflated *)w1)->declaring == w2)) {
4049                                 index = value;
4050                                 break;
4051                         }
4052                 }
4053                 if (m && method->wrapper_type && method->wrapper_type == m->wrapper_type &&
4054                         method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE) {
4055                         WrapperInfo *info1 = mono_marshal_get_wrapper_info (method);
4056                         WrapperInfo *info2 = mono_marshal_get_wrapper_info (m);
4057
4058                         if (info1 && info2 && info1->subtype == info2->subtype && method->klass == m->klass) {
4059                                 index = value;
4060                                 break;
4061                         }
4062                 }
4063
4064                 /* Methods decoded needlessly */
4065                 if (m) {
4066                         //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4067                         n_extra_decodes ++;
4068                 }
4069
4070                 if (next != 0)
4071                         entry = &table [next * entry_size];
4072                 else
4073                         break;
4074         }
4075
4076         return index;
4077 }
4078
4079 static void
4080 add_module_cb (gpointer key, gpointer value, gpointer user_data)
4081 {
4082         g_ptr_array_add ((GPtrArray*)user_data, value);
4083 }
4084
4085 /*
4086  * find_aot_method:
4087  *
4088  *   Try finding METHOD in the extra_method table in all AOT images.
4089  * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4090  * module where the method was found.
4091  */
4092 static guint32
4093 find_aot_method (MonoMethod *method, MonoAotModule **out_amodule)
4094 {
4095         guint32 index;
4096         GPtrArray *modules;
4097         int i;
4098         guint32 hash = mono_aot_method_hash (method);
4099
4100         /* Try the method's module first */
4101         *out_amodule = (MonoAotModule *)method->klass->image->aot_module;
4102         index = find_aot_method_in_amodule ((MonoAotModule *)method->klass->image->aot_module, method, hash);
4103         if (index != 0xffffff)
4104                 return index;
4105
4106         /* 
4107          * Try all other modules.
4108          * This is needed because generic instances klass->image points to the image
4109          * containing the generic definition, but the native code is generated to the
4110          * AOT image which contains the reference.
4111          */
4112
4113         /* Make a copy to avoid doing the search inside the aot lock */
4114         modules = g_ptr_array_new ();
4115         mono_aot_lock ();
4116         g_hash_table_foreach (aot_modules, add_module_cb, modules);
4117         mono_aot_unlock ();
4118
4119         index = 0xffffff;
4120         for (i = 0; i < modules->len; ++i) {
4121                 MonoAotModule *amodule = (MonoAotModule *)g_ptr_array_index (modules, i);
4122
4123                 if (amodule != method->klass->image->aot_module)
4124                         index = find_aot_method_in_amodule (amodule, method, hash);
4125                 if (index != 0xffffff) {
4126                         *out_amodule = amodule;
4127                         break;
4128                 }
4129         }
4130         
4131         g_ptr_array_free (modules, TRUE);
4132
4133         return index;
4134 }
4135
4136 guint32
4137 mono_aot_find_method_index (MonoMethod *method)
4138 {
4139         MonoAotModule *out_amodule;
4140         return find_aot_method (method, &out_amodule);
4141 }
4142
4143 static gboolean
4144 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context, MonoError *error)
4145 {
4146         MonoDomain *domain = mono_domain_get ();
4147         MonoMemPool *mp;
4148         MonoClass *klass_to_run_ctor = NULL;
4149         gboolean from_plt = method == NULL;
4150         int pindex, n_patches;
4151         guint8 *p;
4152         MonoJitInfo *jinfo = NULL;
4153         guint8 *code, *info;
4154
4155         mono_error_init (error);
4156
4157         code = (guint8 *)amodule->methods [method_index];
4158         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4159
4160         p = info;
4161
4162         //does the method's class has a cctor?
4163         if (decode_value (p, &p) == 1)
4164                 klass_to_run_ctor = decode_klass_ref (amodule, p, &p, error);
4165         if (!is_ok (error))
4166                 return FALSE;
4167
4168         //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
4169         if (method)
4170                 klass_to_run_ctor = method->klass;
4171
4172         n_patches = decode_value (p, &p);
4173
4174         if (n_patches) {
4175                 MonoJumpInfo *patches;
4176                 guint32 *got_slots;
4177                 gboolean llvm;
4178                 gpointer *got;
4179
4180                 mp = mono_mempool_new ();
4181
4182                 if ((gpointer)code >= amodule->info.jit_code_start && (gpointer)code <= amodule->info.jit_code_end) {
4183                         llvm = FALSE;
4184                         got = amodule->got;
4185                 } else {
4186                         llvm = TRUE;
4187                         got = amodule->llvm_got;
4188                         g_assert (got);
4189                 }
4190
4191                 patches = load_patch_info (amodule, mp, n_patches, llvm, &got_slots, p, &p);
4192                 if (patches == NULL) {
4193                         mono_mempool_destroy (mp);
4194                         goto cleanup;
4195                 }
4196
4197                 for (pindex = 0; pindex < n_patches; ++pindex) {
4198                         MonoJumpInfo *ji = &patches [pindex];
4199                         gpointer addr;
4200
4201                         /*
4202                          * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4203                          * been initialized by load_method () for a static cctor before the cctor has
4204                          * finished executing (#23242).
4205                          */
4206                         if (!got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
4207                                 /* In llvm-only made, we might encounter shared methods */
4208                                 if (mono_llvm_only && ji->type == MONO_PATCH_INFO_METHOD && mono_method_check_context_used (ji->data.method)) {
4209                                         g_assert (context);
4210                                         ji->data.method = mono_class_inflate_generic_method_checked (ji->data.method, context, error);
4211                                         if (!mono_error_ok (error)) {
4212                                                 g_free (got_slots);
4213                                                 mono_mempool_destroy (mp);
4214                                                 return FALSE;
4215                                         }
4216                                 }
4217                                 /* This cannot be resolved in mono_resolve_patch_target () */
4218                                 if (ji->type == MONO_PATCH_INFO_AOT_JIT_INFO) {
4219                                         // FIXME: Lookup using the index
4220                                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4221                                         ji->type = MONO_PATCH_INFO_ABS;
4222                                         ji->data.target = jinfo;
4223                                 }
4224                                 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE, error);
4225                                 if (!mono_error_ok (error)) {
4226                                         g_free (got_slots);
4227                                         mono_mempool_destroy (mp);
4228                                         return FALSE;
4229                                 }
4230                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4231                                         addr = mono_create_ftnptr (domain, addr);
4232                                 mono_memory_barrier ();
4233                                 got [got_slots [pindex]] = addr;
4234                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4235                                         register_jump_target_got_slot (domain, ji->data.method, &(got [got_slots [pindex]]));
4236                         }
4237                         ji->type = MONO_PATCH_INFO_NONE;
4238                 }
4239
4240                 g_free (got_slots);
4241
4242                 mono_mempool_destroy (mp);
4243         }
4244
4245         if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
4246                 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4247
4248         gboolean inited_ok = TRUE;
4249         if (init_class)
4250                 inited_ok = mono_runtime_class_init_full (mono_class_vtable (domain, init_class), error);
4251         else if (from_plt && klass_to_run_ctor && !klass_to_run_ctor->generic_container)
4252                 inited_ok = mono_runtime_class_init_full (mono_class_vtable (domain, klass_to_run_ctor), error);
4253         if (!inited_ok)
4254                 return FALSE;
4255
4256         return TRUE;
4257
4258  cleanup:
4259         if (jinfo)
4260                 g_free (jinfo);
4261
4262         return FALSE;
4263 }
4264
4265 static void
4266 init_llvmonly_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context)
4267 {
4268         gboolean res;
4269         MonoError error;
4270
4271         res = init_method (amodule, method_index, method, init_class, context, &error);
4272         if (!is_ok (&error)) {
4273                 MonoException *ex = mono_error_convert_to_exception (&error);
4274                 /* Its okay to raise in llvmonly mode */
4275                 if (ex)
4276                         mono_llvm_throw_exception ((MonoObject*)ex);
4277         }
4278 }
4279
4280 void
4281 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
4282 {
4283         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4284
4285         init_llvmonly_method (amodule, method_index, NULL, NULL, NULL);
4286 }
4287
4288 void
4289 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this_obj)
4290 {
4291         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4292         MonoClass *klass;
4293         MonoGenericContext *context;
4294         MonoMethod *method;
4295
4296         // FIXME:
4297         g_assert (this_obj);
4298         klass = this_obj->vtable->klass;
4299
4300         amodule_lock (amodule);
4301         method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4302         amodule_unlock (amodule);
4303
4304         g_assert (method);
4305         context = mono_method_get_context (method);
4306         g_assert (context);
4307
4308         init_llvmonly_method (amodule, method_index, NULL, klass, context);
4309 }
4310
4311 void
4312 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
4313 {
4314         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4315         MonoGenericContext context = { NULL, NULL };
4316         MonoClass *klass = rgctx->class_vtable->klass;
4317
4318         if (klass->generic_class)
4319                 context.class_inst = klass->generic_class->context.class_inst;
4320         else if (klass->generic_container)
4321                 context.class_inst = klass->generic_container->context.class_inst;
4322         context.method_inst = rgctx->method_inst;
4323
4324         init_llvmonly_method (amodule, method_index, NULL, rgctx->class_vtable->klass, &context);
4325 }
4326
4327 void
4328 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
4329 {
4330         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4331         MonoClass *klass;
4332         MonoGenericContext *context;
4333         MonoMethod *method;
4334
4335         klass = vtable->klass;
4336
4337         amodule_lock (amodule);
4338         method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4339         amodule_unlock (amodule);
4340
4341         g_assert (method);
4342         context = mono_method_get_context (method);
4343         g_assert (context);
4344
4345         init_llvmonly_method (amodule, method_index, NULL, klass, context);
4346 }
4347
4348 /*
4349  * mono_aot_get_method_checked:
4350  *
4351  *   Return a pointer to the AOTed native code for METHOD if it can be found,
4352  * NULL otherwise.
4353  * On platforms with function pointers, this doesn't return a function pointer.
4354  */
4355 gpointer
4356 mono_aot_get_method_checked (MonoDomain *domain, MonoMethod *method, MonoError *error)
4357 {
4358         MonoClass *klass = method->klass;
4359         MonoMethod *orig_method = method;
4360         guint32 method_index;
4361         MonoAotModule *amodule = (MonoAotModule *)klass->image->aot_module;
4362         guint8 *code;
4363         gboolean cache_result = FALSE;
4364         MonoError inner_error;
4365
4366         mono_error_init (error);
4367
4368         if (domain != mono_get_root_domain ())
4369                 /* Non shared AOT code can't be used in other appdomains */
4370                 return NULL;
4371
4372         if (enable_aot_cache && !amodule && domain->entry_assembly && klass->image == mono_defaults.corlib) {
4373                 /* This cannot be AOTed during startup, so do it now */
4374                 if (!mscorlib_aot_loaded) {
4375                         mscorlib_aot_loaded = TRUE;
4376                         load_aot_module (klass->image->assembly, NULL);
4377                         amodule = (MonoAotModule *)klass->image->aot_module;
4378                 }
4379         }
4380
4381         if (!amodule)
4382                 return NULL;
4383
4384         if (amodule->out_of_date)
4385                 return NULL;
4386
4387         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
4388                 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4389                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
4390                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
4391                 return NULL;
4392
4393         /*
4394          * Use the original method instead of its invoke-with-check wrapper.
4395          * This is not a problem when using full-aot, since it doesn't support
4396          * remoting.
4397          */
4398         if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
4399                 return mono_aot_get_method_checked (domain, mono_marshal_method_from_wrapper (method), error);
4400
4401         g_assert (klass->inited);
4402
4403         /* Find method index */
4404         method_index = 0xffffff;
4405         if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE)) {
4406                 MonoMethod *orig_method = method;
4407                 /* 
4408                  * For generic methods, we store the fully shared instance in place of the
4409                  * original method.
4410                  */
4411                 method = mono_method_get_declaring_generic_method (method);
4412                 method_index = mono_metadata_token_index (method->token) - 1;
4413
4414                 if (mono_llvm_only) {
4415                         /* Needed by mono_aot_init_gshared_method_this () */
4416                         /* orig_method is a random instance but it is enough to make init_method () work */
4417                         amodule_lock (amodule);
4418                         g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), orig_method);
4419                         amodule_unlock (amodule);
4420                 }
4421         } else if (method->is_inflated || !method->token) {
4422                 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4423                 amodule_lock (amodule);
4424                 code = (guint8 *)g_hash_table_lookup (amodule->method_to_code, method);
4425                 amodule_unlock (amodule);
4426                 if (code)
4427                         return code;
4428
4429                 cache_result = TRUE;
4430                 method_index = find_aot_method (method, &amodule);
4431                 /*
4432                  * Special case the ICollection<T> wrappers for arrays, as they cannot
4433                  * be statically enumerated, and each wrapper ends up calling the same
4434                  * method in Array.
4435                  */
4436                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && method->klass->rank && strstr (method->name, "System.Collections.Generic")) {
4437                         MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4438
4439                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4440                         mono_error_cleanup (&inner_error);
4441                         if (code)
4442                                 return code;
4443                 }
4444
4445                 /*
4446                  * Special case Array.GetGenericValueImpl which is a generic icall.
4447                  * Generic sharing currently can't handle it, but the icall returns data using
4448                  * an out parameter, so the managed-to-native wrappers can share the same code.
4449                  */
4450                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
4451                         MonoMethod *m;
4452                         MonoGenericContext ctx;
4453                         MonoType *args [16];
4454
4455                         if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
4456                                 /* Avoid recursion */
4457                                 return NULL;
4458
4459                         m = mono_class_get_method_from_name (mono_defaults.array_class, "GetGenericValueImpl", 2);
4460                         g_assert (m);
4461
4462                         memset (&ctx, 0, sizeof (ctx));
4463                         args [0] = &mono_defaults.object_class->byval_arg;
4464                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4465
4466                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4467                         if (!m)
4468                                 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4469
4470                         /* 
4471                          * Get the code for the <object> instantiation which should be emitted into
4472                          * the mscorlib aot image by the AOT compiler.
4473                          */
4474                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4475                         mono_error_cleanup (&inner_error);
4476                         if (code)
4477                                 return code;
4478                 }
4479
4480                 /* Same for CompareExchange<T> and Exchange<T> */
4481                 /* Same for Volatile.Read<T>/Write<T> */
4482                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass->image == mono_defaults.corlib && 
4483                         ((!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]))) ||
4484                          (!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)))) ||
4485                          (!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])))))) {
4486                         MonoMethod *m;
4487                         MonoGenericContext ctx;
4488                         MonoType *args [16];
4489                         gpointer iter = NULL;
4490
4491                         while ((m = mono_class_get_methods (method->klass, &iter))) {
4492                                 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
4493                                         break;
4494                         }
4495                         g_assert (m);
4496
4497                         memset (&ctx, 0, sizeof (ctx));
4498                         args [0] = &mono_defaults.object_class->byval_arg;
4499                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4500
4501                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4502                         if (!m)
4503                                 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4504
4505                         /* Avoid recursion */
4506                         if (method == m)
4507                                 return NULL;
4508
4509                         /* 
4510                          * Get the code for the <object> instantiation which should be emitted into
4511                          * the mscorlib aot image by the AOT compiler.
4512                          */
4513                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4514                         mono_error_cleanup (&inner_error);
4515                         if (code)
4516                                 return code;
4517                 }
4518
4519                 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4520                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
4521                         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
4522
4523                         if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
4524                                 MonoMethod *array_method = info->d.array_accessor.method;
4525                                 if (MONO_TYPE_IS_REFERENCE (&array_method->klass->element_class->byval_arg)) {
4526                                         MonoClass *obj_array_class = mono_array_class_get (mono_defaults.object_class, 1);
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_aot_only && 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         mono_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         mono_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_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_THUNK)
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_THUNK)
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_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_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_THUNK);
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_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_thunk (void)
5621 {
5622        g_assert_not_reached ();
5623 }
5624
5625 gpointer
5626 mono_aot_get_imt_thunk (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_thunk;
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_THUNK, 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         mono_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         mono_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         mono_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_thunk (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