Merge pull request #5382 from kumpera/pedump_fix
[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                 if (mono_jit_stats.methods_aot >= mono_last_aot_method)
3961                                 return NULL;
3962                 else if (mono_jit_stats.methods_aot == mono_last_aot_method - 1) {
3963                         if (!method) {
3964                                 method = mono_get_method_checked (image, token, NULL, NULL, error);
3965                                 if (!method)
3966                                         return NULL;
3967                         }
3968                         if (method) {
3969                                 char *name = mono_method_full_name (method, TRUE);
3970                                 g_print ("LAST AOT METHOD: %s.\n", name);
3971                                 g_free (name);
3972                         } else {
3973                                 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
3974                         }
3975                 }
3976         }
3977
3978         if (!(is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) ||
3979                 (mono_llvm_only && method && method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED)) {
3980                 res = init_method (amodule, method_index, method, NULL, NULL, error);
3981                 if (!res)
3982                         goto cleanup;
3983         }
3984
3985         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3986                 char *full_name;
3987
3988                 if (!method) {
3989                         method = mono_get_method_checked (image, token, NULL, NULL, error);
3990                         if (!method)
3991                                 return NULL;
3992                 }
3993
3994                 full_name = mono_method_full_name (method, TRUE);
3995
3996                 if (!jinfo)
3997                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3998
3999                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
4000                 g_free (full_name);
4001         }
4002
4003         amodule_lock (amodule);
4004
4005         init_plt (amodule);
4006
4007         InterlockedIncrement (&mono_jit_stats.methods_aot);
4008
4009         if (method && method->wrapper_type)
4010                 g_hash_table_insert (amodule->method_to_code, method, code);
4011
4012         /* Commit changes since methods_loaded is accessed outside the lock */
4013         mono_memory_barrier ();
4014
4015         amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
4016
4017         amodule_unlock (amodule);
4018
4019         if (MONO_PROFILER_ENABLED (jit_begin) || MONO_PROFILER_ENABLED (jit_done)) {
4020                 MonoJitInfo *jinfo;
4021
4022                 if (!method) {
4023                         method = mono_get_method_checked (amodule->assembly->image, token, NULL, NULL, error);
4024                         if (!method)
4025                                 return NULL;
4026                 }
4027                 MONO_PROFILER_RAISE (jit_begin, (method));
4028                 jinfo = mono_jit_info_table_find (domain, (char*)code);
4029                 g_assert (jinfo);
4030                 MONO_PROFILER_RAISE (jit_done, (method, jinfo));
4031         }
4032
4033         return code;
4034
4035  cleanup:
4036         if (jinfo)
4037                 g_free (jinfo);
4038
4039         return NULL;
4040 }
4041
4042 static guint32
4043 find_aot_method_in_amodule (MonoAotModule *amodule, MonoMethod *method, guint32 hash_full)
4044 {
4045         MonoError error;
4046         guint32 table_size, entry_size, hash;
4047         guint32 *table, *entry;
4048         guint32 index;
4049         static guint32 n_extra_decodes;
4050
4051         if (!amodule || amodule->out_of_date)
4052                 return 0xffffff;
4053
4054         table_size = amodule->extra_method_table [0];
4055         hash = hash_full % table_size;
4056         table = amodule->extra_method_table + 1;
4057         entry_size = 3;
4058
4059         entry = &table [hash * entry_size];
4060
4061         if (entry [0] == 0)
4062                 return 0xffffff;
4063
4064         index = 0xffffff;
4065         while (TRUE) {
4066                 guint32 key = entry [0];
4067                 guint32 value = entry [1];
4068                 guint32 next = entry [entry_size - 1];
4069                 MonoMethod *m;
4070                 guint8 *p, *orig_p;
4071
4072                 p = amodule->blob + key;
4073                 orig_p = p;
4074
4075                 amodule_lock (amodule);
4076                 if (!amodule->method_ref_to_method)
4077                         amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
4078                 m = (MonoMethod *)g_hash_table_lookup (amodule->method_ref_to_method, p);
4079                 amodule_unlock (amodule);
4080                 if (!m) {
4081                         m = decode_resolve_method_ref_with_target (amodule, method, p, &p, &error);
4082                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
4083                         /*
4084                          * Can't catche runtime invoke wrappers since it would break
4085                          * the check in decode_method_ref_with_target ().
4086                          */
4087                         if (m && m->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
4088                                 amodule_lock (amodule);
4089                                 g_hash_table_insert (amodule->method_ref_to_method, orig_p, m);
4090                                 amodule_unlock (amodule);
4091                         }
4092                 }
4093                 if (m == method) {
4094                         index = value;
4095                         break;
4096                 }
4097
4098                 /* Methods decoded needlessly */
4099                 if (m) {
4100                         //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4101                         n_extra_decodes ++;
4102                 }
4103
4104                 if (next != 0)
4105                         entry = &table [next * entry_size];
4106                 else
4107                         break;
4108         }
4109
4110         return index;
4111 }
4112
4113 static void
4114 add_module_cb (gpointer key, gpointer value, gpointer user_data)
4115 {
4116         g_ptr_array_add ((GPtrArray*)user_data, value);
4117 }
4118
4119 /*
4120  * find_aot_method:
4121  *
4122  *   Try finding METHOD in the extra_method table in all AOT images.
4123  * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4124  * module where the method was found.
4125  */
4126 static guint32
4127 find_aot_method (MonoMethod *method, MonoAotModule **out_amodule)
4128 {
4129         guint32 index;
4130         GPtrArray *modules;
4131         int i;
4132         guint32 hash = mono_aot_method_hash (method);
4133
4134         /* Try the method's module first */
4135         *out_amodule = (MonoAotModule *)method->klass->image->aot_module;
4136         index = find_aot_method_in_amodule ((MonoAotModule *)method->klass->image->aot_module, method, hash);
4137         if (index != 0xffffff)
4138                 return index;
4139
4140         /* 
4141          * Try all other modules.
4142          * This is needed because generic instances klass->image points to the image
4143          * containing the generic definition, but the native code is generated to the
4144          * AOT image which contains the reference.
4145          */
4146
4147         /* Make a copy to avoid doing the search inside the aot lock */
4148         modules = g_ptr_array_new ();
4149         mono_aot_lock ();
4150         g_hash_table_foreach (aot_modules, add_module_cb, modules);
4151         mono_aot_unlock ();
4152
4153         index = 0xffffff;
4154         for (i = 0; i < modules->len; ++i) {
4155                 MonoAotModule *amodule = (MonoAotModule *)g_ptr_array_index (modules, i);
4156
4157                 if (amodule != method->klass->image->aot_module)
4158                         index = find_aot_method_in_amodule (amodule, method, hash);
4159                 if (index != 0xffffff) {
4160                         *out_amodule = amodule;
4161                         break;
4162                 }
4163         }
4164         
4165         g_ptr_array_free (modules, TRUE);
4166
4167         return index;
4168 }
4169
4170 guint32
4171 mono_aot_find_method_index (MonoMethod *method)
4172 {
4173         MonoAotModule *out_amodule;
4174         return find_aot_method (method, &out_amodule);
4175 }
4176
4177 static gboolean
4178 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context, MonoError *error)
4179 {
4180         MonoDomain *domain = mono_domain_get ();
4181         MonoMemPool *mp;
4182         MonoClass *klass_to_run_ctor = NULL;
4183         gboolean from_plt = method == NULL;
4184         int pindex, n_patches;
4185         guint8 *p;
4186         MonoJitInfo *jinfo = NULL;
4187         guint8 *code, *info;
4188
4189         error_init (error);
4190
4191         code = (guint8 *)amodule->methods [method_index];
4192         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4193
4194         p = info;
4195
4196         //does the method's class has a cctor?
4197         if (decode_value (p, &p) == 1)
4198                 klass_to_run_ctor = decode_klass_ref (amodule, p, &p, error);
4199         if (!is_ok (error))
4200                 return FALSE;
4201
4202         //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
4203         if (method)
4204                 klass_to_run_ctor = method->klass;
4205
4206         n_patches = decode_value (p, &p);
4207
4208         if (n_patches) {
4209                 MonoJumpInfo *patches;
4210                 guint32 *got_slots;
4211                 gboolean llvm;
4212                 gpointer *got;
4213
4214                 mp = mono_mempool_new ();
4215
4216                 if ((gpointer)code >= amodule->info.jit_code_start && (gpointer)code <= amodule->info.jit_code_end) {
4217                         llvm = FALSE;
4218                         got = amodule->got;
4219                 } else {
4220                         llvm = TRUE;
4221                         got = amodule->llvm_got;
4222                         g_assert (got);
4223                 }
4224
4225                 patches = load_patch_info (amodule, mp, n_patches, llvm, &got_slots, p, &p);
4226                 if (patches == NULL) {
4227                         mono_mempool_destroy (mp);
4228                         goto cleanup;
4229                 }
4230
4231                 for (pindex = 0; pindex < n_patches; ++pindex) {
4232                         MonoJumpInfo *ji = &patches [pindex];
4233                         gpointer addr;
4234
4235                         /*
4236                          * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4237                          * been initialized by load_method () for a static cctor before the cctor has
4238                          * finished executing (#23242).
4239                          */
4240                         if (!got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
4241                                 /* In llvm-only made, we might encounter shared methods */
4242                                 if (mono_llvm_only && ji->type == MONO_PATCH_INFO_METHOD && mono_method_check_context_used (ji->data.method)) {
4243                                         g_assert (context);
4244                                         ji->data.method = mono_class_inflate_generic_method_checked (ji->data.method, context, error);
4245                                         if (!mono_error_ok (error)) {
4246                                                 g_free (got_slots);
4247                                                 mono_mempool_destroy (mp);
4248                                                 return FALSE;
4249                                         }
4250                                 }
4251                                 /* This cannot be resolved in mono_resolve_patch_target () */
4252                                 if (ji->type == MONO_PATCH_INFO_AOT_JIT_INFO) {
4253                                         // FIXME: Lookup using the index
4254                                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4255                                         ji->type = MONO_PATCH_INFO_ABS;
4256                                         ji->data.target = jinfo;
4257                                 }
4258                                 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE, error);
4259                                 if (!mono_error_ok (error)) {
4260                                         g_free (got_slots);
4261                                         mono_mempool_destroy (mp);
4262                                         return FALSE;
4263                                 }
4264                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4265                                         addr = mono_create_ftnptr (domain, addr);
4266                                 mono_memory_barrier ();
4267                                 got [got_slots [pindex]] = addr;
4268                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4269                                         register_jump_target_got_slot (domain, ji->data.method, &(got [got_slots [pindex]]));
4270                         }
4271                         ji->type = MONO_PATCH_INFO_NONE;
4272                 }
4273
4274                 g_free (got_slots);
4275
4276                 mono_mempool_destroy (mp);
4277         }
4278
4279         if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
4280                 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4281
4282         gboolean inited_ok = TRUE;
4283         if (init_class)
4284                 inited_ok = mono_runtime_class_init_full (mono_class_vtable (domain, init_class), error);
4285         else if (from_plt && klass_to_run_ctor && !mono_class_is_gtd (klass_to_run_ctor))
4286                 inited_ok = mono_runtime_class_init_full (mono_class_vtable (domain, klass_to_run_ctor), error);
4287         if (!inited_ok)
4288                 return FALSE;
4289
4290         return TRUE;
4291
4292  cleanup:
4293         if (jinfo)
4294                 g_free (jinfo);
4295
4296         return FALSE;
4297 }
4298
4299 static void
4300 init_llvmonly_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context)
4301 {
4302         gboolean res;
4303         MonoError error;
4304
4305         res = init_method (amodule, method_index, method, init_class, context, &error);
4306         if (!is_ok (&error)) {
4307                 MonoException *ex = mono_error_convert_to_exception (&error);
4308                 /* Its okay to raise in llvmonly mode */
4309                 if (ex)
4310                         mono_llvm_throw_exception ((MonoObject*)ex);
4311         }
4312 }
4313
4314 void
4315 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
4316 {
4317         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4318
4319         init_llvmonly_method (amodule, method_index, NULL, NULL, NULL);
4320 }
4321
4322 void
4323 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this_obj)
4324 {
4325         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4326         MonoClass *klass;
4327         MonoGenericContext *context;
4328         MonoMethod *method;
4329
4330         // FIXME:
4331         g_assert (this_obj);
4332         klass = this_obj->vtable->klass;
4333
4334         amodule_lock (amodule);
4335         method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4336         amodule_unlock (amodule);
4337
4338         g_assert (method);
4339         context = mono_method_get_context (method);
4340         g_assert (context);
4341
4342         init_llvmonly_method (amodule, method_index, NULL, klass, context);
4343 }
4344
4345 void
4346 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
4347 {
4348         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4349         MonoGenericContext context = { NULL, NULL };
4350         MonoClass *klass = rgctx->class_vtable->klass;
4351
4352         if (mono_class_is_ginst (klass))
4353                 context.class_inst = mono_class_get_generic_class (klass)->context.class_inst;
4354         else if (mono_class_is_gtd (klass))
4355                 context.class_inst = mono_class_get_generic_container (klass)->context.class_inst;
4356         context.method_inst = rgctx->method_inst;
4357
4358         init_llvmonly_method (amodule, method_index, NULL, rgctx->class_vtable->klass, &context);
4359 }
4360
4361 void
4362 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
4363 {
4364         MonoAotModule *amodule = (MonoAotModule *)aot_module;
4365         MonoClass *klass;
4366         MonoGenericContext *context;
4367         MonoMethod *method;
4368
4369         klass = vtable->klass;
4370
4371         amodule_lock (amodule);
4372         method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4373         amodule_unlock (amodule);
4374
4375         g_assert (method);
4376         context = mono_method_get_context (method);
4377         g_assert (context);
4378
4379         init_llvmonly_method (amodule, method_index, NULL, klass, context);
4380 }
4381
4382 /*
4383  * mono_aot_get_method_checked:
4384  *
4385  *   Return a pointer to the AOTed native code for METHOD if it can be found,
4386  * NULL otherwise.
4387  * On platforms with function pointers, this doesn't return a function pointer.
4388  */
4389 gpointer
4390 mono_aot_get_method_checked (MonoDomain *domain, MonoMethod *method, MonoError *error)
4391 {
4392         MonoClass *klass = method->klass;
4393         MonoMethod *orig_method = method;
4394         guint32 method_index;
4395         MonoAotModule *amodule = (MonoAotModule *)klass->image->aot_module;
4396         guint8 *code;
4397         gboolean cache_result = FALSE;
4398         MonoError inner_error;
4399
4400         error_init (error);
4401
4402         if (domain != mono_get_root_domain ())
4403                 /* Non shared AOT code can't be used in other appdomains */
4404                 return NULL;
4405
4406         if (enable_aot_cache && !amodule && domain->entry_assembly && klass->image == mono_defaults.corlib) {
4407                 /* This cannot be AOTed during startup, so do it now */
4408                 if (!mscorlib_aot_loaded) {
4409                         mscorlib_aot_loaded = TRUE;
4410                         load_aot_module (klass->image->assembly, NULL);
4411                         amodule = (MonoAotModule *)klass->image->aot_module;
4412                 }
4413         }
4414
4415         if (!amodule)
4416                 return NULL;
4417
4418         if (amodule->out_of_date)
4419                 return NULL;
4420
4421         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
4422                 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4423                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
4424                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
4425                 return NULL;
4426
4427         /*
4428          * Use the original method instead of its invoke-with-check wrapper.
4429          * This is not a problem when using full-aot, since it doesn't support
4430          * remoting.
4431          */
4432         if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
4433                 return mono_aot_get_method_checked (domain, mono_marshal_method_from_wrapper (method), error);
4434
4435         g_assert (klass->inited);
4436
4437         /* Find method index */
4438         method_index = 0xffffff;
4439         if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE)) {
4440                 MonoMethod *orig_method = method;
4441                 /* 
4442                  * For generic methods, we store the fully shared instance in place of the
4443                  * original method.
4444                  */
4445                 method = mono_method_get_declaring_generic_method (method);
4446                 method_index = mono_metadata_token_index (method->token) - 1;
4447
4448                 if (mono_llvm_only) {
4449                         /* Needed by mono_aot_init_gshared_method_this () */
4450                         /* orig_method is a random instance but it is enough to make init_method () work */
4451                         amodule_lock (amodule);
4452                         g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), orig_method);
4453                         amodule_unlock (amodule);
4454                 }
4455         } else if (method->is_inflated || !method->token) {
4456                 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4457                 amodule_lock (amodule);
4458                 code = (guint8 *)g_hash_table_lookup (amodule->method_to_code, method);
4459                 amodule_unlock (amodule);
4460                 if (code)
4461                         return code;
4462
4463                 cache_result = TRUE;
4464                 method_index = find_aot_method (method, &amodule);
4465                 /*
4466                  * Special case the ICollection<T> wrappers for arrays, as they cannot
4467                  * be statically enumerated, and each wrapper ends up calling the same
4468                  * method in Array.
4469                  */
4470                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && method->klass->rank && strstr (method->name, "System.Collections.Generic")) {
4471                         MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4472
4473                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4474                         mono_error_cleanup (&inner_error);
4475                         if (code)
4476                                 return code;
4477                 }
4478
4479                 /*
4480                  * Special case Array.GetGenericValueImpl which is a generic icall.
4481                  * Generic sharing currently can't handle it, but the icall returns data using
4482                  * an out parameter, so the managed-to-native wrappers can share the same code.
4483                  */
4484                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
4485                         MonoMethod *m;
4486                         MonoGenericContext ctx;
4487                         MonoType *args [16];
4488
4489                         if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
4490                                 /* Avoid recursion */
4491                                 return NULL;
4492
4493                         m = mono_class_get_method_from_name (mono_defaults.array_class, "GetGenericValueImpl", 2);
4494                         g_assert (m);
4495
4496                         memset (&ctx, 0, sizeof (ctx));
4497                         args [0] = &mono_defaults.object_class->byval_arg;
4498                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4499
4500                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4501                         if (!m)
4502                                 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4503
4504                         /* 
4505                          * Get the code for the <object> instantiation which should be emitted into
4506                          * the mscorlib aot image by the AOT compiler.
4507                          */
4508                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4509                         mono_error_cleanup (&inner_error);
4510                         if (code)
4511                                 return code;
4512                 }
4513
4514                 /* Same for CompareExchange<T> and Exchange<T> */
4515                 /* Same for Volatile.Read<T>/Write<T> */
4516                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass->image == mono_defaults.corlib && 
4517                         ((!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]))) ||
4518                          (!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)))) ||
4519                          (!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])))))) {
4520                         MonoMethod *m;
4521                         MonoGenericContext ctx;
4522                         MonoType *args [16];
4523                         gpointer iter = NULL;
4524
4525                         while ((m = mono_class_get_methods (method->klass, &iter))) {
4526                                 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
4527                                         break;
4528                         }
4529                         g_assert (m);
4530
4531                         memset (&ctx, 0, sizeof (ctx));
4532                         args [0] = &mono_defaults.object_class->byval_arg;
4533                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4534
4535                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4536                         if (!m)
4537                                 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4538
4539                         /* Avoid recursion */
4540                         if (method == m)
4541                                 return NULL;
4542
4543                         /* 
4544                          * Get the code for the <object> instantiation which should be emitted into
4545                          * the mscorlib aot image by the AOT compiler.
4546                          */
4547                         code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4548                         mono_error_cleanup (&inner_error);
4549                         if (code)
4550                                 return code;
4551                 }
4552
4553                 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4554                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
4555                         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
4556
4557                         if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
4558                                 MonoMethod *array_method = info->d.array_accessor.method;
4559                                 if (MONO_TYPE_IS_REFERENCE (&array_method->klass->element_class->byval_arg)) {
4560                                         int rank;
4561
4562                                         if (!strcmp (array_method->name, "Set"))
4563                                                 rank = mono_method_signature (array_method)->param_count - 1;
4564                                         else if (!strcmp (array_method->name, "Get") || !strcmp (array_method->name, "Address"))
4565                                                 rank = mono_method_signature (array_method)->param_count;
4566                                         else
4567                                                 g_assert_not_reached ();
4568                                         MonoClass *obj_array_class = mono_array_class_get (mono_defaults.object_class, rank);
4569                                         MonoMethod *m = mono_class_get_method_from_name (obj_array_class, array_method->name, mono_method_signature (array_method)->param_count);
4570                                         g_assert (m);
4571
4572                                         m = mono_marshal_get_array_accessor_wrapper (m);
4573                                         if (m != method) {
4574                                                 code = (guint8 *)mono_aot_get_method_checked (domain, m, &inner_error);
4575                                                 mono_error_cleanup (&inner_error);
4576                                                 if (code)
4577                                                         return code;
4578                                         }
4579                                 }
4580                         }
4581                 }
4582
4583                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
4584                         /* Partial sharing */
4585                         MonoMethod *shared;
4586
4587                         shared = mini_get_shared_method (method);
4588                         method_index = find_aot_method (shared, &amodule);
4589                         if (method_index != 0xffffff)
4590                                 method = shared;
4591                 }
4592
4593                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
4594                         MonoMethod *shared;
4595                         /* gsharedvt */
4596                         /* Use the all-vt shared method since this is what was AOTed */
4597                         shared = mini_get_shared_method_full (method, TRUE, TRUE);
4598                         method_index = find_aot_method (shared, &amodule);
4599                         if (method_index != 0xffffff)
4600                                 method = mini_get_shared_method_full (method, TRUE, FALSE);
4601                 }
4602
4603                 if (method_index == 0xffffff) {
4604                         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4605                                 char *full_name;
4606
4607                                 full_name = mono_method_full_name (method, TRUE);
4608                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.", full_name);
4609                                 g_free (full_name);
4610                         }
4611                         return NULL;
4612                 }
4613
4614                 if (method_index == 0xffffff)
4615                         return NULL;
4616
4617                 /* Needed by find_jit_info */
4618                 amodule_lock (amodule);
4619                 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), method);
4620                 amodule_unlock (amodule);
4621         } else {
4622                 /* Common case */
4623                 method_index = mono_metadata_token_index (method->token) - 1;
4624         }
4625
4626         code = (guint8 *)load_method (domain, amodule, klass->image, method, method->token, method_index, error);
4627         if (!is_ok (error))
4628                 return NULL;
4629         if (code && cache_result) {
4630                 amodule_lock (amodule);
4631                 g_hash_table_insert (amodule->method_to_code, orig_method, code);
4632                 amodule_unlock (amodule);
4633         }
4634         return code;
4635 }
4636
4637 /**
4638  * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4639  * method.
4640  */
4641 gpointer
4642 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
4643 {
4644         MonoAotModule *aot_module = (MonoAotModule *)image->aot_module;
4645         int method_index;
4646         gpointer res;
4647
4648         error_init (error);
4649
4650         if (!aot_module)
4651                 return NULL;
4652
4653         method_index = mono_metadata_token_index (token) - 1;
4654
4655         res = load_method (domain, aot_module, image, NULL, token, method_index, error);
4656         return res;
4657 }
4658
4659 typedef struct {
4660         guint8 *addr;
4661         gboolean res;
4662 } IsGotEntryUserData;
4663
4664 static void
4665 check_is_got_entry (gpointer key, gpointer value, gpointer user_data)
4666 {
4667         IsGotEntryUserData *data = (IsGotEntryUserData*)user_data;
4668         MonoAotModule *aot_module = (MonoAotModule*)value;
4669
4670         if (aot_module->got && (data->addr >= (guint8*)(aot_module->got)) && (data->addr < (guint8*)(aot_module->got + aot_module->info.got_size)))
4671                 data->res = TRUE;
4672 }
4673
4674 gboolean
4675 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
4676 {
4677         IsGotEntryUserData user_data;
4678
4679         if (!aot_modules)
4680                 return FALSE;
4681
4682         user_data.addr = addr;
4683         user_data.res = FALSE;
4684         mono_aot_lock ();
4685         g_hash_table_foreach (aot_modules, check_is_got_entry, &user_data);
4686         mono_aot_unlock ();
4687         
4688         return user_data.res;
4689 }
4690
4691 typedef struct {
4692         guint8 *addr;
4693         MonoAotModule *module;
4694 } FindAotModuleUserData;
4695
4696 static void
4697 find_aot_module_cb (gpointer key, gpointer value, gpointer user_data)
4698 {
4699         FindAotModuleUserData *data = (FindAotModuleUserData*)user_data;
4700         MonoAotModule *aot_module = (MonoAotModule*)value;
4701
4702         if (amodule_contains_code_addr (aot_module, data->addr))
4703                 data->module = aot_module;
4704 }
4705
4706 static inline MonoAotModule*
4707 find_aot_module (guint8 *code)
4708 {
4709         FindAotModuleUserData user_data;
4710
4711         if (!aot_modules)
4712                 return NULL;
4713
4714         /* Reading these need no locking */
4715         if (((gsize)code < aot_code_low_addr) || ((gsize)code > aot_code_high_addr))
4716                 return NULL;
4717
4718         user_data.addr = code;
4719         user_data.module = NULL;
4720                 
4721         mono_aot_lock ();
4722         g_hash_table_foreach (aot_modules, find_aot_module_cb, &user_data);
4723         mono_aot_unlock ();
4724         
4725         return user_data.module;
4726 }
4727
4728 void
4729 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
4730 {
4731         MonoAotModule *amodule;
4732
4733         /*
4734          * Since AOT code is only used in the root domain, 
4735          * mono_domain_get () != mono_get_root_domain () means the calling method
4736          * is AppDomain:InvokeInDomain, so this is the same check as in 
4737          * mono_method_same_domain () but without loading the metadata for the method.
4738          */
4739         if (mono_domain_get () == mono_get_root_domain ()) {
4740                 if (!got) {
4741                         amodule = find_aot_module (code);
4742                         if (amodule)
4743                                 got = amodule->got;
4744                 }
4745                 mono_arch_patch_plt_entry (plt_entry, got, regs, addr);
4746         }
4747 }
4748
4749 /*
4750  * mono_aot_plt_resolve:
4751  *
4752  *   This function is called by the entries in the PLT to resolve the actual method that
4753  * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4754  * Returns NULL if the something cannot be loaded.
4755  */
4756 gpointer
4757 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
4758 {
4759 #ifdef MONO_ARCH_AOT_SUPPORTED
4760         guint8 *p, *target, *plt_entry;
4761         MonoJumpInfo ji;
4762         MonoAotModule *module = (MonoAotModule*)aot_module;
4763         gboolean res, no_ftnptr = FALSE;
4764         MonoMemPool *mp;
4765         gboolean using_gsharedvt = FALSE;
4766
4767         error_init (error);
4768
4769         //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4770
4771         p = &module->blob [plt_info_offset];
4772
4773         ji.type = (MonoJumpInfoType)decode_value (p, &p);
4774
4775         mp = mono_mempool_new ();
4776         res = decode_patch (module, mp, &ji, p, &p);
4777
4778         if (!res) {
4779                 mono_mempool_destroy (mp);
4780                 return NULL;
4781         }
4782
4783 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4784         using_gsharedvt = TRUE;
4785 #endif
4786
4787         /* 
4788          * Avoid calling resolve_patch_target in the full-aot case if possible, since
4789          * it would create a trampoline, and we don't need that.
4790          * We could do this only if the method does not need the special handling
4791          * in mono_magic_trampoline ().
4792          */
4793         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) &&
4794                 !mono_method_needs_static_rgctx_invoke (ji.data.method, FALSE) && !using_gsharedvt) {
4795                 target = (guint8 *)mono_jit_compile_method (ji.data.method, error);
4796                 if (!mono_error_ok (error)) {
4797                         mono_mempool_destroy (mp);
4798                         return NULL;
4799                 }
4800                 no_ftnptr = TRUE;
4801         } else {
4802                 target = (guint8 *)mono_resolve_patch_target (NULL, mono_domain_get (), NULL, &ji, TRUE, error);
4803                 if (!mono_error_ok (error)) {
4804                         mono_mempool_destroy (mp);
4805                         return NULL;
4806                 }
4807         }
4808
4809         /*
4810          * The trampoline expects us to return a function descriptor on platforms which use
4811          * it, but resolve_patch_target returns a direct function pointer for some type of
4812          * patches, so have to translate between the two.
4813          * FIXME: Clean this up, but how ?
4814          */
4815         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) {
4816                 /* These should already have a function descriptor */
4817 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4818                 /* Our function descriptors have a 0 environment, gcc created ones don't */
4819                 if (ji.type != MONO_PATCH_INFO_INTERNAL_METHOD && ji.type != MONO_PATCH_INFO_JIT_ICALL_ADDR && ji.type != MONO_PATCH_INFO_ICALL_ADDR)
4820                         g_assert (((gpointer*)target) [2] == 0);
4821 #endif
4822                 /* Empty */
4823         } else if (!no_ftnptr) {
4824 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4825                 g_assert (((gpointer*)target) [2] != 0);
4826 #endif
4827                 target = (guint8 *)mono_create_ftnptr (mono_domain_get (), target);
4828         }
4829
4830         mono_mempool_destroy (mp);
4831
4832         /* Patch the PLT entry with target which might be the actual method not a trampoline */
4833         plt_entry = mono_aot_get_plt_entry (code);
4834         g_assert (plt_entry);
4835         mono_aot_patch_plt_entry (code, plt_entry, module->got, NULL, target);
4836
4837         return target;
4838 #else
4839         g_assert_not_reached ();
4840         return NULL;
4841 #endif
4842 }
4843
4844 /**
4845  * init_plt:
4846  *
4847  *   Initialize the PLT table of the AOT module. Called lazily when the first AOT
4848  * method in the module is loaded to avoid committing memory by writing to it.
4849  * LOCKING: Assumes the AMODULE lock is held.
4850  */
4851 static void
4852 init_plt (MonoAotModule *amodule)
4853 {
4854         int i;
4855         gpointer tramp;
4856
4857         if (amodule->plt_inited)
4858                 return;
4859
4860         if (amodule->info.plt_size <= 1) {
4861                 amodule->plt_inited = TRUE;
4862                 return;
4863         }
4864
4865         tramp = mono_create_specific_trampoline (amodule, MONO_TRAMPOLINE_AOT_PLT, mono_get_root_domain (), NULL);
4866
4867         /*
4868          * Initialize the PLT entries in the GOT to point to the default targets.
4869          */
4870
4871         tramp = mono_create_ftnptr (mono_domain_get (), tramp);
4872          for (i = 1; i < amodule->info.plt_size; ++i)
4873                  /* All the default entries point to the AOT trampoline */
4874                  ((gpointer*)amodule->got)[amodule->info.plt_got_offset_base + i] = tramp;
4875
4876         amodule->plt_inited = TRUE;
4877 }
4878
4879 /*
4880  * mono_aot_get_plt_entry:
4881  *
4882  *   Return the address of the PLT entry called by the code at CODE if exists.
4883  */
4884 guint8*
4885 mono_aot_get_plt_entry (guint8 *code)
4886 {
4887         MonoAotModule *amodule = find_aot_module (code);
4888         guint8 *target = NULL;
4889
4890         if (!amodule)
4891                 return NULL;
4892
4893 #ifdef TARGET_ARM
4894         if (is_thumb_code (amodule, code - 4))
4895                 return mono_arm_get_thumb_plt_entry (code);
4896 #endif
4897
4898 #ifdef MONO_ARCH_AOT_SUPPORTED
4899         target = mono_arch_get_call_target (code);
4900 #else
4901         g_assert_not_reached ();
4902 #endif
4903
4904 #ifdef MONOTOUCH
4905         while (target != NULL) {
4906                 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4907                         return target;
4908                 
4909                 // Add 4 since mono_arch_get_call_target assumes we're passing
4910                 // the instruction after the actual branch instruction.
4911                 target = mono_arch_get_call_target (target + 4);
4912         }
4913
4914         return NULL;
4915 #else
4916         if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4917                 return target;
4918         else
4919                 return NULL;
4920 #endif
4921 }
4922
4923 /*
4924  * mono_aot_get_plt_info_offset:
4925  *
4926  *   Return the PLT info offset belonging to the plt entry called by CODE.
4927  */
4928 guint32
4929 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
4930 {
4931         guint8 *plt_entry = mono_aot_get_plt_entry (code);
4932
4933         g_assert (plt_entry);
4934
4935         /* The offset is embedded inside the code after the plt entry */
4936 #ifdef MONO_ARCH_AOT_SUPPORTED
4937         return mono_arch_get_plt_info_offset (plt_entry, regs, code);
4938 #else
4939         g_assert_not_reached ();
4940         return 0;
4941 #endif
4942 }
4943
4944 static gpointer
4945 mono_create_ftnptr_malloc (guint8 *code)
4946 {
4947 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4948         MonoPPCFunctionDescriptor *ftnptr = g_malloc0 (sizeof (MonoPPCFunctionDescriptor));
4949
4950         ftnptr->code = code;
4951         ftnptr->toc = NULL;
4952         ftnptr->env = NULL;
4953
4954         return ftnptr;
4955 #else
4956         return code;
4957 #endif
4958 }
4959
4960 /*
4961  * mono_aot_register_jit_icall:
4962  *
4963  *   Register a JIT icall which is called by trampolines in full-aot mode. This should
4964  * be called from mono_arch_init () during startup.
4965  */
4966 void
4967 mono_aot_register_jit_icall (const char *name, gpointer addr)
4968 {
4969         /* No need for locking */
4970         if (!aot_jit_icall_hash)
4971                 aot_jit_icall_hash = g_hash_table_new (g_str_hash, g_str_equal);
4972         g_hash_table_insert (aot_jit_icall_hash, (char*)name, addr);
4973 }
4974
4975 /*
4976  * load_function_full:
4977  *
4978  *   Load the function named NAME from the aot image. 
4979  */
4980 static gpointer
4981 load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **out_tinfo)
4982 {
4983         char *symbol;
4984         guint8 *p;
4985         int n_patches, pindex;
4986         MonoMemPool *mp;
4987         gpointer code;
4988         guint32 info_offset;
4989
4990         /* Load the code */
4991
4992         symbol = g_strdup_printf ("%s", name);
4993         find_amodule_symbol (amodule, symbol, (gpointer *)&code);
4994         g_free (symbol);
4995         if (!code)
4996                 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name, amodule->aot_name);
4997
4998         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND function '%s' in AOT file '%s'.", name, amodule->aot_name);
4999
5000         /* Load info */
5001
5002         symbol = g_strdup_printf ("%s_p", name);
5003         find_amodule_symbol (amodule, symbol, (gpointer *)&p);
5004         g_free (symbol);
5005         if (!p)
5006                 /* Nothing to patch */
5007                 return code;
5008
5009         info_offset = *(guint32*)p;
5010         if (out_tinfo) {
5011                 MonoTrampInfo *tinfo;
5012                 guint32 code_size, uw_info_len, uw_offset;
5013                 guint8 *uw_info;
5014                 /* Construct a MonoTrampInfo from the data in the AOT image */
5015
5016                 p += sizeof (guint32);
5017                 code_size = *(guint32*)p;
5018                 p += sizeof (guint32);
5019                 uw_offset = *(guint32*)p;
5020                 uw_info = amodule->unwind_info + uw_offset;
5021                 uw_info_len = decode_value (uw_info, &uw_info);
5022
5023                 tinfo = g_new0 (MonoTrampInfo, 1);
5024                 tinfo->code = (guint8 *)code;
5025                 tinfo->code_size = code_size;
5026                 tinfo->uw_info_len = uw_info_len;
5027                 if (uw_info_len)
5028                         tinfo->uw_info = uw_info;
5029
5030                 *out_tinfo = tinfo;
5031         }
5032
5033         p = amodule->blob + info_offset;
5034
5035         /* Similar to mono_aot_load_method () */
5036
5037         n_patches = decode_value (p, &p);
5038
5039         if (n_patches) {
5040                 MonoJumpInfo *patches;
5041                 guint32 *got_slots;
5042
5043                 mp = mono_mempool_new ();
5044
5045                 patches = load_patch_info (amodule, mp, n_patches, FALSE, &got_slots, p, &p);
5046                 g_assert (patches);
5047
5048                 for (pindex = 0; pindex < n_patches; ++pindex) {
5049                         MonoJumpInfo *ji = &patches [pindex];
5050                         MonoError error;
5051                         gpointer target;
5052
5053                         if (amodule->got [got_slots [pindex]])
5054                                 continue;
5055
5056                         /*
5057                          * When this code is executed, the runtime may not be initalized yet, so
5058                          * resolve the patch info by hand.
5059                          */
5060                         if (ji->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
5061                                 if (!strcmp (ji->data.name, "mono_get_lmf_addr")) {
5062                                         target = mono_get_lmf_addr;
5063                                 } else if (!strcmp (ji->data.name, "mono_thread_force_interruption_checkpoint_noraise")) {
5064                                         target = mono_thread_force_interruption_checkpoint_noraise;
5065                                 } else if (!strcmp (ji->data.name, "mono_interruption_checkpoint_from_trampoline")) {
5066                                         target = mono_interruption_checkpoint_from_trampoline;
5067                                 } else if (!strcmp (ji->data.name, "mono_exception_from_token")) {
5068                                         target = mono_exception_from_token;
5069                                 } else if (!strcmp (ji->data.name, "mono_throw_exception")) {
5070                                         target = mono_get_throw_exception ();
5071                                 } else if (strstr (ji->data.name, "trampoline_func_") == ji->data.name) {
5072                                         MonoTrampolineType tramp_type2 = (MonoTrampolineType)atoi (ji->data.name + strlen ("trampoline_func_"));
5073                                         target = (gpointer)mono_get_trampoline_func (tramp_type2);
5074                                 } else if (strstr (ji->data.name, "specific_trampoline_lazy_fetch_") == ji->data.name) {
5075                                         /* atoll is needed because the the offset is unsigned */
5076                                         guint32 slot;
5077                                         int res;
5078
5079                                         res = sscanf (ji->data.name, "specific_trampoline_lazy_fetch_%u", &slot);
5080                                         g_assert (res == 1);
5081                                         target = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5082                                         target = mono_create_ftnptr_malloc ((guint8 *)target);
5083                                 } else if (!strcmp (ji->data.name, "debugger_agent_single_step_from_context")) {
5084                                         target = debugger_agent_single_step_from_context;
5085                                 } else if (!strcmp (ji->data.name, "debugger_agent_breakpoint_from_context")) {
5086                                         target = debugger_agent_breakpoint_from_context;
5087                                 } else if (!strcmp (ji->data.name, "throw_exception_addr")) {
5088                                         target = mono_get_throw_exception_addr ();
5089                                 } else if (strstr (ji->data.name, "generic_trampoline_")) {
5090                                         target = mono_aot_get_trampoline (ji->data.name);
5091                                 } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) {
5092                                         /* Registered by mono_arch_init () */
5093                                         target = g_hash_table_lookup (aot_jit_icall_hash, ji->data.name);
5094                                 } else {
5095                                         fprintf (stderr, "Unknown relocation '%s'\n", ji->data.name);
5096                                         g_assert_not_reached ();
5097                                         target = NULL;
5098                                 }
5099                         } else {
5100                                 /* Hopefully the code doesn't have patches which need method or 
5101                                  * domain to be set.
5102                                  */
5103                                 target = mono_resolve_patch_target (NULL, NULL, (guint8 *)code, ji, FALSE, &error);
5104                                 mono_error_assert_ok (&error);
5105                                 g_assert (target);
5106                         }
5107
5108                         amodule->got [got_slots [pindex]] = target;
5109                 }
5110
5111                 g_free (got_slots);
5112
5113                 mono_mempool_destroy (mp);
5114         }
5115
5116         return code;
5117 }
5118
5119 static gpointer
5120 load_function (MonoAotModule *amodule, const char *name)
5121 {
5122         return load_function_full (amodule, name, NULL);
5123 }
5124
5125 static MonoAotModule*
5126 get_mscorlib_aot_module (void)
5127 {
5128         MonoImage *image;
5129         MonoAotModule *amodule;
5130
5131         image = mono_defaults.corlib;
5132         if (image)
5133                 amodule = (MonoAotModule *)image->aot_module;
5134         else
5135                 amodule = mscorlib_aot_module;
5136         g_assert (amodule);
5137         return amodule;
5138 }
5139
5140 static void
5141 no_trampolines (void)
5142 {
5143         g_assert_not_reached ();
5144 }
5145
5146 /*
5147  * Return the trampoline identified by NAME from the mscorlib AOT file.
5148  * On ppc64, this returns a function descriptor.
5149  */
5150 gpointer
5151 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
5152 {
5153         MonoAotModule *amodule = get_mscorlib_aot_module ();
5154
5155         if (mono_llvm_only) {
5156                 *out_tinfo = NULL;
5157                 return no_trampolines;
5158         }
5159
5160         return mono_create_ftnptr_malloc ((guint8 *)load_function_full (amodule, name, out_tinfo));
5161 }
5162
5163 gpointer
5164 mono_aot_get_trampoline (const char *name)
5165 {
5166         MonoTrampInfo *out_tinfo;
5167         gpointer code;
5168
5169         code =  mono_aot_get_trampoline_full (name, &out_tinfo);
5170         mono_aot_tramp_info_register (out_tinfo, NULL);
5171
5172         return code;
5173 }
5174
5175 static gpointer
5176 read_unwind_info (MonoAotModule *amodule, MonoTrampInfo *info, const char *symbol_name)
5177 {
5178         gpointer symbol_addr;
5179         guint32 uw_offset, uw_info_len;
5180         guint8 *uw_info;
5181
5182         find_amodule_symbol (amodule, symbol_name, &symbol_addr);
5183
5184         if (!symbol_addr)
5185                 return NULL;
5186
5187         uw_offset = *(guint32*)symbol_addr;
5188         uw_info = amodule->unwind_info + uw_offset;
5189         uw_info_len = decode_value (uw_info, &uw_info);
5190
5191         info->uw_info_len = uw_info_len;
5192         if (uw_info_len)
5193                 info->uw_info = uw_info;
5194         else
5195                 info->uw_info = NULL;
5196
5197         /* If successful return the address of the following data */
5198         return (guint32*)symbol_addr + 1;
5199 }
5200
5201 #ifdef MONOTOUCH
5202 #include <mach/mach.h>
5203
5204 static TrampolinePage* trampoline_pages [MONO_AOT_TRAMP_NUM];
5205
5206 static void
5207 read_page_trampoline_uwinfo (MonoTrampInfo *info, int tramp_type, gboolean is_generic)
5208 {
5209         char symbol_name [128];
5210
5211         if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5212                 sprintf (symbol_name, "specific_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5213         else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5214                 sprintf (symbol_name, "rgctx_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5215         else if (tramp_type == MONO_AOT_TRAMP_IMT)
5216                 sprintf (symbol_name, "imt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5217         else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5218                 sprintf (symbol_name, "gsharedvt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5219         else
5220                 g_assert_not_reached ();
5221
5222         read_unwind_info (mono_defaults.corlib->aot_module, info, symbol_name);
5223 }
5224
5225 static unsigned char*
5226 get_new_trampoline_from_page (int tramp_type)
5227 {
5228         MonoAotModule *amodule;
5229         MonoImage *image;
5230         TrampolinePage *page;
5231         int count;
5232         void *tpage;
5233         vm_address_t addr, taddr;
5234         kern_return_t ret;
5235         vm_prot_t prot, max_prot;
5236         int psize, specific_trampoline_size;
5237         unsigned char *code;
5238
5239         specific_trampoline_size = 2 * sizeof (gpointer);
5240
5241         mono_aot_page_lock ();
5242         page = trampoline_pages [tramp_type];
5243         if (page && page->trampolines < page->trampolines_end) {
5244                 code = page->trampolines;
5245                 page->trampolines += specific_trampoline_size;
5246                 mono_aot_page_unlock ();
5247                 return code;
5248         }
5249         mono_aot_page_unlock ();
5250         /* the trampoline template page is in the mscorlib module */
5251         image = mono_defaults.corlib;
5252         g_assert (image);
5253
5254         psize = MONO_AOT_TRAMP_PAGE_SIZE;
5255
5256         amodule = image->aot_module;
5257         g_assert (amodule);
5258
5259         if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5260                 tpage = load_function (amodule, "specific_trampolines_page");
5261         else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5262                 tpage = load_function (amodule, "rgctx_trampolines_page");
5263         else if (tramp_type == MONO_AOT_TRAMP_IMT)
5264                 tpage = load_function (amodule, "imt_trampolines_page");
5265         else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5266                 tpage = load_function (amodule, "gsharedvt_arg_trampolines_page");
5267         else
5268                 g_error ("Incorrect tramp type for trampolines page");
5269         g_assert (tpage);
5270         /*g_warning ("loaded trampolines page at %x", tpage);*/
5271
5272         /* avoid the unlikely case of looping forever */
5273         count = 40;
5274         page = NULL;
5275         while (page == NULL && count-- > 0) {
5276                 MonoTrampInfo *gen_info, *sp_info;
5277
5278                 addr = 0;
5279                 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
5280                  * while the second will contain the trampolines.
5281                  */
5282                 do {
5283                         ret = vm_allocate (mach_task_self (), &addr, psize * 2, VM_FLAGS_ANYWHERE);
5284                 } while (ret == KERN_ABORTED);
5285                 if (ret != KERN_SUCCESS) {
5286                         g_error ("Cannot allocate memory for trampolines: %d", ret);
5287                         break;
5288                 }
5289                 /*g_warning ("allocated trampoline double page at %x", addr);*/
5290                 /* replace the second page with a remapped trampoline page */
5291                 taddr = addr + psize;
5292                 vm_deallocate (mach_task_self (), taddr, psize);
5293                 ret = vm_remap (mach_task_self (), &taddr, psize, 0, FALSE, mach_task_self(), (vm_address_t)tpage, FALSE, &prot, &max_prot, VM_INHERIT_SHARE);
5294                 if (ret != KERN_SUCCESS) {
5295                         /* someone else got the page, try again  */
5296                         vm_deallocate (mach_task_self (), addr, psize);
5297                         continue;
5298                 }
5299                 /*g_warning ("remapped trampoline page at %x", taddr);*/
5300
5301                 mono_aot_page_lock ();
5302                 page = trampoline_pages [tramp_type];
5303                 /* some other thread already allocated, so use that to avoid wasting memory */
5304                 if (page && page->trampolines < page->trampolines_end) {
5305                         code = page->trampolines;
5306                         page->trampolines += specific_trampoline_size;
5307                         mono_aot_page_unlock ();
5308                         vm_deallocate (mach_task_self (), addr, psize);
5309                         vm_deallocate (mach_task_self (), taddr, psize);
5310                         return code;
5311                 }
5312                 page = (TrampolinePage*)addr;
5313                 page->next = trampoline_pages [tramp_type];
5314                 trampoline_pages [tramp_type] = page;
5315                 page->trampolines = (void*)(taddr + amodule->info.tramp_page_code_offsets [tramp_type]);
5316                 page->trampolines_end = (void*)(taddr + psize - 64);
5317                 code = page->trampolines;
5318                 page->trampolines += specific_trampoline_size;
5319                 mono_aot_page_unlock ();
5320
5321                 /* Register the generic part at the beggining of the trampoline page */
5322                 gen_info = mono_tramp_info_create (NULL, (guint8*)taddr, amodule->info.tramp_page_code_offsets [tramp_type], NULL, NULL);
5323                 read_page_trampoline_uwinfo (gen_info, tramp_type, TRUE);
5324                 mono_aot_tramp_info_register (gen_info, NULL);
5325                 /*
5326                  * FIXME
5327                  * Registering each specific trampoline produces a lot of
5328                  * MonoJitInfo structures. Jump trampolines are also registered
5329                  * separately.
5330                  */
5331                 if (tramp_type != MONO_AOT_TRAMP_SPECIFIC) {
5332                         /* Register the rest of the page as a single trampoline */
5333                         sp_info = mono_tramp_info_create (NULL, code, page->trampolines_end - code, NULL, NULL);
5334                         read_page_trampoline_uwinfo (sp_info, tramp_type, FALSE);
5335                         mono_aot_tramp_info_register (sp_info, NULL);
5336                 }
5337                 return code;
5338         }
5339         g_error ("Cannot allocate more trampoline pages: %d", ret);
5340         return NULL;
5341 }
5342
5343 #else
5344 static unsigned char*
5345 get_new_trampoline_from_page (int tramp_type)
5346 {
5347         g_error ("Page trampolines not supported.");
5348         return NULL;
5349 }
5350 #endif
5351
5352
5353 static gpointer
5354 get_new_specific_trampoline_from_page (gpointer tramp, gpointer arg)
5355 {
5356         void *code;
5357         gpointer *data;
5358
5359         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC);
5360
5361         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5362         data [0] = arg;
5363         data [1] = tramp;
5364         /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5365         return code;
5366
5367 }
5368
5369 static gpointer
5370 get_new_rgctx_trampoline_from_page (gpointer tramp, gpointer arg)
5371 {
5372         void *code;
5373         gpointer *data;
5374
5375         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX);
5376
5377         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5378         data [0] = arg;
5379         data [1] = tramp;
5380         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5381         return code;
5382
5383 }
5384
5385 static gpointer
5386 get_new_imt_trampoline_from_page (gpointer arg)
5387 {
5388         void *code;
5389         gpointer *data;
5390
5391         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT);
5392
5393         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5394         data [0] = arg;
5395         /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
5396         return code;
5397
5398 }
5399
5400 static gpointer
5401 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp, gpointer arg)
5402 {
5403         void *code;
5404         gpointer *data;
5405
5406         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG);
5407
5408         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5409         data [0] = arg;
5410         data [1] = tramp;
5411         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5412         return code;
5413 }
5414
5415 /* Return a given kind of trampoline */
5416 /* FIXME set unwind info for these trampolines */
5417 static gpointer
5418 get_numerous_trampoline (MonoAotTrampoline tramp_type, int n_got_slots, MonoAotModule **out_amodule, guint32 *got_offset, guint32 *out_tramp_size)
5419 {
5420         MonoImage *image;
5421         MonoAotModule *amodule = get_mscorlib_aot_module ();
5422         int index, tramp_size;
5423
5424         /* Currently, we keep all trampolines in the mscorlib AOT image */
5425         image = mono_defaults.corlib;
5426
5427         *out_amodule = amodule;
5428
5429         mono_aot_lock ();
5430
5431 #ifdef MONOTOUCH
5432 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
5433 #else
5434 #define MONOTOUCH_TRAMPOLINES_ERROR ""
5435 #endif
5436         if (amodule->trampoline_index [tramp_type] == amodule->info.num_trampolines [tramp_type]) {
5437                 g_error ("Ran out of trampolines of type %d in '%s' (limit %d)%s\n", 
5438                                  tramp_type, image ? image->name : "mscorlib", amodule->info.num_trampolines [tramp_type], MONOTOUCH_TRAMPOLINES_ERROR);
5439         }
5440         index = amodule->trampoline_index [tramp_type] ++;
5441
5442         mono_aot_unlock ();
5443
5444         *got_offset = amodule->info.trampoline_got_offset_base [tramp_type] + (index * n_got_slots);
5445
5446         tramp_size = amodule->info.trampoline_size [tramp_type];
5447
5448         if (out_tramp_size)
5449                 *out_tramp_size = tramp_size;
5450
5451         return amodule->trampolines [tramp_type] + (index * tramp_size);
5452 }
5453
5454 static void
5455 no_specific_trampoline (void)
5456 {
5457         g_assert_not_reached ();
5458 }
5459
5460 /*
5461  * Return a specific trampoline from the AOT file.
5462  */
5463 gpointer
5464 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5465 {
5466         MonoAotModule *amodule;
5467         guint32 got_offset, tramp_size;
5468         guint8 *code, *tramp;
5469         static gpointer generic_trampolines [MONO_TRAMPOLINE_NUM];
5470         static gboolean inited;
5471         static guint32 num_trampolines;
5472
5473         if (mono_llvm_only) {
5474                 *code_len = 1;
5475                 return no_specific_trampoline;
5476         }
5477
5478         if (!inited) {
5479                 mono_aot_lock ();
5480
5481                 if (!inited) {
5482                         mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &num_trampolines);
5483                         inited = TRUE;
5484                 }
5485
5486                 mono_aot_unlock ();
5487         }
5488
5489         num_trampolines ++;
5490
5491         if (!generic_trampolines [tramp_type]) {
5492                 char *symbol;
5493
5494                 symbol = mono_get_generic_trampoline_name (tramp_type);
5495                 generic_trampolines [tramp_type] = mono_aot_get_trampoline (symbol);
5496                 g_free (symbol);
5497         }
5498
5499         tramp = (guint8 *)generic_trampolines [tramp_type];
5500         g_assert (tramp);
5501
5502         if (USE_PAGE_TRAMPOLINES) {
5503                 code = (guint8 *)get_new_specific_trampoline_from_page (tramp, arg1);
5504                 tramp_size = 8;
5505         } else {
5506                 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC, 2, &amodule, &got_offset, &tramp_size);
5507
5508                 amodule->got [got_offset] = tramp;
5509                 amodule->got [got_offset + 1] = arg1;
5510         }
5511
5512         if (code_len)
5513                 *code_len = tramp_size;
5514
5515         return code;
5516 }
5517
5518 gpointer
5519 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5520 {
5521         MonoAotModule *amodule;
5522         guint8 *code;
5523         guint32 got_offset;
5524
5525         if (USE_PAGE_TRAMPOLINES) {
5526                 code = (guint8 *)get_new_rgctx_trampoline_from_page (addr, ctx);
5527         } else {
5528                 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX, 2, &amodule, &got_offset, NULL);
5529
5530                 amodule->got [got_offset] = ctx;
5531                 amodule->got [got_offset + 1] = addr; 
5532         }
5533
5534         /* The caller expects an ftnptr */
5535         return mono_create_ftnptr (mono_domain_get (), code);
5536 }
5537
5538 gpointer
5539 mono_aot_get_unbox_trampoline (MonoMethod *method)
5540 {
5541         guint32 method_index = mono_metadata_token_index (method->token) - 1;
5542         MonoAotModule *amodule;
5543         gpointer code;
5544         guint32 *ut, *ut_end, *entry;
5545         int low, high, entry_index = 0;
5546         gpointer symbol_addr;
5547         MonoTrampInfo *tinfo;
5548
5549         if (method->is_inflated && !mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
5550                 method_index = find_aot_method (method, &amodule);
5551                 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
5552                         MonoMethod *shared = mini_get_shared_method_full (method, FALSE, FALSE);
5553                         method_index = find_aot_method (shared, &amodule);
5554                 }
5555                 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, TRUE)) {
5556                         MonoMethod *shared = mini_get_shared_method_full (method, TRUE, TRUE);
5557                         method_index = find_aot_method (shared, &amodule);
5558                 }
5559                 g_assert (method_index != 0xffffff);
5560         } else {
5561                 amodule = (MonoAotModule *)method->klass->image->aot_module;
5562                 g_assert (amodule);
5563         }
5564
5565         if (amodule->info.llvm_get_unbox_tramp) {
5566                 gpointer (*get_tramp) (int) = (gpointer (*)(int))amodule->info.llvm_get_unbox_tramp;
5567                 code = get_tramp (method_index);
5568
5569                 if (code)
5570                         return code;
5571         }
5572
5573         ut = amodule->unbox_trampolines;
5574         ut_end = amodule->unbox_trampolines_end;
5575
5576         /* Do a binary search in the sorted table */
5577         code = NULL;
5578         low = 0;
5579         high = (ut_end - ut);
5580         while (low < high) {
5581                 entry_index = (low + high) / 2;
5582                 entry = &ut [entry_index];
5583                 if (entry [0] < method_index) {
5584                         low = entry_index + 1;
5585                 } else if (entry [0] > method_index) {
5586                         high = entry_index;
5587                 } else {
5588                         break;
5589                 }
5590         }
5591
5592         code = get_call_table_entry (amodule->unbox_trampoline_addresses, entry_index);
5593         g_assert (code);
5594
5595         tinfo = mono_tramp_info_create (NULL, (guint8 *)code, 0, NULL, NULL);
5596
5597         symbol_addr = read_unwind_info (amodule, tinfo, "unbox_trampoline_p");
5598         if (!symbol_addr) {
5599                 mono_tramp_info_free (tinfo);
5600                 return FALSE;
5601         }
5602
5603         tinfo->code_size = *(guint32*)symbol_addr;
5604         mono_aot_tramp_info_register (tinfo, NULL);
5605
5606         /* The caller expects an ftnptr */
5607         return mono_create_ftnptr (mono_domain_get (), code);
5608 }
5609
5610 gpointer
5611 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5612 {
5613         char *symbol;
5614         gpointer code;
5615         MonoAotModule *amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
5616         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
5617         static int count = 0;
5618
5619         count ++;
5620         if (index >= amodule->info.num_rgctx_fetch_trampolines) {
5621                 static gpointer addr;
5622                 gpointer *info;
5623
5624                 /*
5625                  * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5626                  */
5627                 if (!addr)
5628                         addr = load_function (amodule, "rgctx_fetch_trampoline_general");
5629                 info = (void **)mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer) * 2);
5630                 info [0] = GUINT_TO_POINTER (slot);
5631                 info [1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5632                 code = mono_aot_get_static_rgctx_trampoline (info, addr);
5633                 return mono_create_ftnptr (mono_domain_get (), code);
5634         }
5635
5636         symbol = mono_get_rgctx_fetch_trampoline_name (slot);
5637         code = load_function ((MonoAotModule *)mono_defaults.corlib->aot_module, symbol);
5638         g_free (symbol);
5639         /* The caller expects an ftnptr */
5640         return mono_create_ftnptr (mono_domain_get (), code);
5641 }
5642
5643 static void
5644 no_imt_trampoline (void)
5645 {
5646         g_assert_not_reached ();
5647 }
5648
5649 gpointer
5650 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5651 {
5652         guint32 got_offset;
5653         gpointer code;
5654         gpointer *buf;
5655         int i, index, real_count;
5656         MonoAotModule *amodule;
5657
5658         if (mono_llvm_only)
5659                 return no_imt_trampoline;
5660
5661         real_count = 0;
5662         for (i = 0; i < count; ++i) {
5663                 MonoIMTCheckItem *item = imt_entries [i];
5664
5665                 if (item->is_equals)
5666                         real_count ++;
5667         }
5668
5669         /* Save the entries into an array */
5670         buf = (void **)mono_domain_alloc (domain, (real_count + 1) * 2 * sizeof (gpointer));
5671         index = 0;
5672         for (i = 0; i < count; ++i) {
5673                 MonoIMTCheckItem *item = imt_entries [i];               
5674
5675                 if (!item->is_equals)
5676                         continue;
5677
5678                 g_assert (item->key);
5679
5680                 buf [(index * 2)] = item->key;
5681                 if (item->has_target_code) {
5682                         gpointer *p = (gpointer *)mono_domain_alloc (domain, sizeof (gpointer));
5683                         *p = item->value.target_code;
5684                         buf [(index * 2) + 1] = p;
5685                 } else {
5686                         buf [(index * 2) + 1] = &(vtable->vtable [item->value.vtable_slot]);
5687                 }
5688                 index ++;
5689         }
5690         buf [(index * 2)] = NULL;
5691         buf [(index * 2) + 1] = fail_tramp;
5692         
5693         if (USE_PAGE_TRAMPOLINES) {
5694                 code = get_new_imt_trampoline_from_page (buf);
5695         } else {
5696                 code = get_numerous_trampoline (MONO_AOT_TRAMP_IMT, 1, &amodule, &got_offset, NULL);
5697
5698                 amodule->got [got_offset] = buf;
5699         }
5700
5701         return code;
5702 }
5703
5704 gpointer
5705 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
5706 {
5707         MonoAotModule *amodule;
5708         guint8 *code;
5709         guint32 got_offset;
5710
5711         if (USE_PAGE_TRAMPOLINES) {
5712                 code = (guint8 *)get_new_gsharedvt_arg_trampoline_from_page (addr, arg);
5713         } else {
5714                 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG, 2, &amodule, &got_offset, NULL);
5715
5716                 amodule->got [got_offset] = arg;
5717                 amodule->got [got_offset + 1] = addr; 
5718         }
5719
5720         /* The caller expects an ftnptr */
5721         return mono_create_ftnptr (mono_domain_get (), code);
5722 }
5723  
5724 /*
5725  * mono_aot_set_make_unreadable:
5726  *
5727  *   Set whenever to make all mmaped memory unreadable. In conjuction with a
5728  * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5729  */
5730 void
5731 mono_aot_set_make_unreadable (gboolean unreadable)
5732 {
5733         static int inited;
5734
5735         make_unreadable = unreadable;
5736
5737         if (make_unreadable && !inited) {
5738                 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT | MONO_COUNTER_INT, &n_pagefaults);
5739         }               
5740 }
5741
5742 typedef struct {
5743         MonoAotModule *module;
5744         guint8 *ptr;
5745 } FindMapUserData;
5746
5747 static void
5748 find_map (gpointer key, gpointer value, gpointer user_data)
5749 {
5750         MonoAotModule *module = (MonoAotModule*)value;
5751         FindMapUserData *data = (FindMapUserData*)user_data;
5752
5753         if (!data->module)
5754                 if ((data->ptr >= module->mem_begin) && (data->ptr < module->mem_end))
5755                         data->module = module;
5756 }
5757
5758 static MonoAotModule*
5759 find_module_for_addr (void *ptr)
5760 {
5761         FindMapUserData data;
5762
5763         if (!make_unreadable)
5764                 return NULL;
5765
5766         data.module = NULL;
5767         data.ptr = (guint8*)ptr;
5768
5769         mono_aot_lock ();
5770         g_hash_table_foreach (aot_modules, (GHFunc)find_map, &data);
5771         mono_aot_unlock ();
5772
5773         return data.module;
5774 }
5775
5776 /*
5777  * mono_aot_is_pagefault:
5778  *
5779  *   Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5780  * within memory allocated by this module.
5781  */
5782 gboolean
5783 mono_aot_is_pagefault (void *ptr)
5784 {
5785         if (!make_unreadable)
5786                 return FALSE;
5787
5788         /* 
5789          * Not signal safe, but SIGSEGV's are synchronous, and
5790          * this is only turned on by a MONO_DEBUG option.
5791          */
5792         return find_module_for_addr (ptr) != NULL;
5793 }
5794
5795 /*
5796  * mono_aot_handle_pagefault:
5797  *
5798  *   Handle a pagefault caused by an unreadable page by making it readable again.
5799  */
5800 void
5801 mono_aot_handle_pagefault (void *ptr)
5802 {
5803 #ifndef HOST_WIN32
5804         guint8* start = (guint8*)ROUND_DOWN (((gssize)ptr), mono_pagesize ());
5805         int res;
5806
5807         mono_aot_lock ();
5808         res = mono_mprotect (start, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_WRITE|MONO_MMAP_EXEC);
5809         g_assert (res == 0);
5810
5811         n_pagefaults ++;
5812         mono_aot_unlock ();
5813 #endif
5814 }
5815
5816 #else
5817 /* AOT disabled */
5818
5819 void
5820 mono_aot_init (void)
5821 {
5822 }
5823
5824 void
5825 mono_aot_cleanup (void)
5826 {
5827 }
5828
5829 guint32
5830 mono_aot_find_method_index (MonoMethod *method)
5831 {
5832         g_assert_not_reached ();
5833         return 0;
5834 }
5835
5836 void
5837 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
5838 {
5839 }
5840
5841 void
5842 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this)
5843 {
5844 }
5845
5846 void
5847 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
5848 {
5849 }
5850
5851 void
5852 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
5853 {
5854 }
5855
5856 gpointer
5857 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
5858 {
5859         return NULL;
5860 }
5861
5862 gpointer
5863 mono_aot_get_method_checked (MonoDomain *domain,
5864                                                          MonoMethod *method, MonoError *error)
5865 {
5866         error_init (error);
5867         return NULL;
5868 }
5869
5870 gboolean
5871 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
5872 {
5873         return FALSE;
5874 }
5875
5876 gboolean
5877 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
5878 {
5879         return FALSE;
5880 }
5881
5882 gboolean
5883 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
5884 {
5885         return FALSE;
5886 }
5887
5888 MonoJitInfo *
5889 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
5890 {
5891         return NULL;
5892 }
5893
5894 gpointer
5895 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
5896 {
5897         error_init (error);
5898         return NULL;
5899 }
5900
5901 guint8*
5902 mono_aot_get_plt_entry (guint8 *code)
5903 {
5904         return NULL;
5905 }
5906
5907 gpointer
5908 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
5909 {
5910         return NULL;
5911 }
5912
5913 void
5914 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
5915 {
5916 }
5917
5918 gpointer
5919 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
5920 {
5921         error_init (error);
5922
5923         return NULL;
5924 }
5925
5926 guint32
5927 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
5928 {
5929         g_assert_not_reached ();
5930
5931         return 0;
5932 }
5933
5934 gpointer
5935 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5936 {
5937         g_assert_not_reached ();
5938         return NULL;
5939 }
5940
5941 gpointer
5942 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5943 {
5944         g_assert_not_reached ();
5945         return NULL;
5946 }
5947
5948 gpointer
5949 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
5950 {
5951         g_assert_not_reached ();
5952         return NULL;
5953 }
5954
5955 gpointer
5956 mono_aot_get_trampoline (const char *name)
5957 {
5958         g_assert_not_reached ();
5959         return NULL;
5960 }
5961
5962 gpointer
5963 mono_aot_get_unbox_trampoline (MonoMethod *method)
5964 {
5965         g_assert_not_reached ();
5966         return NULL;
5967 }
5968
5969 gpointer
5970 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5971 {
5972         g_assert_not_reached ();
5973         return NULL;
5974 }
5975
5976 gpointer
5977 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5978 {
5979         g_assert_not_reached ();
5980         return NULL;
5981 }       
5982
5983 gpointer
5984 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
5985 {
5986         g_assert_not_reached ();
5987         return NULL;
5988 }
5989
5990 void
5991 mono_aot_set_make_unreadable (gboolean unreadable)
5992 {
5993 }
5994
5995 gboolean
5996 mono_aot_is_pagefault (void *ptr)
5997 {
5998         return FALSE;
5999 }
6000
6001 void
6002 mono_aot_handle_pagefault (void *ptr)
6003 {
6004 }
6005
6006 guint8*
6007 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
6008 {
6009         g_assert_not_reached ();
6010         return NULL;
6011 }
6012
6013 void
6014 mono_aot_register_jit_icall (const char *name, gpointer addr)
6015 {
6016 }
6017
6018 #endif