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