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