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