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