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