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