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