Merge pull request #1991 from esdrubal/seq_test_fix
[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 #if defined (TARGET_ARM) && defined (TARGET_MACH)
1875         {
1876                 MonoType t;
1877                 int align = 0;
1878
1879                 memset (&t, 0, sizeof (MonoType));
1880                 t.type = MONO_TYPE_R8;
1881                 mono_type_size (&t, &align);
1882                 align_double = align;
1883
1884                 memset (&t, 0, sizeof (MonoType));
1885                 t.type = MONO_TYPE_I8;
1886                 align_int64 = align;
1887         }
1888 #else
1889         align_double = MONO_ABI_ALIGNOF (double);
1890         align_int64 = MONO_ABI_ALIGNOF (gint64);
1891 #endif
1892
1893         /* Sanity check */
1894         g_assert (info->double_align == align_double);
1895         g_assert (info->long_align == align_int64);
1896         g_assert (info->generic_tramp_num == MONO_TRAMPOLINE_NUM);
1897
1898         blob = info->blob;
1899
1900         amodule = g_new0 (MonoAotModule, 1);
1901         amodule->aot_name = aot_name;
1902         amodule->assembly = assembly;
1903
1904         memcpy (&amodule->info, info, sizeof (*info));
1905
1906         amodule->got = amodule->info.jit_got;
1907         amodule->llvm_got = amodule->info.llvm_got;
1908         amodule->globals = globals;
1909         amodule->sofile = sofile;
1910         amodule->method_to_code = g_hash_table_new (mono_aligned_addr_hash, NULL);
1911         amodule->blob = blob;
1912
1913         mono_mutex_init_recursive (&amodule->mutex);
1914
1915         /* Read image table */
1916         {
1917                 guint32 table_len, i;
1918                 char *table = NULL;
1919
1920                 table = info->image_table;
1921                 g_assert (table);
1922
1923                 table_len = *(guint32*)table;
1924                 table += sizeof (guint32);
1925                 amodule->image_table = g_new0 (MonoImage*, table_len);
1926                 amodule->image_names = g_new0 (MonoAssemblyName, table_len);
1927                 amodule->image_guids = g_new0 (char*, table_len);
1928                 amodule->image_table_len = table_len;
1929                 for (i = 0; i < table_len; ++i) {
1930                         MonoAssemblyName *aname = &(amodule->image_names [i]);
1931
1932                         aname->name = g_strdup (table);
1933                         table += strlen (table) + 1;
1934                         amodule->image_guids [i] = g_strdup (table);
1935                         table += strlen (table) + 1;
1936                         if (table [0] != 0)
1937                                 aname->culture = g_strdup (table);
1938                         table += strlen (table) + 1;
1939                         memcpy (aname->public_key_token, table, strlen (table) + 1);
1940                         table += strlen (table) + 1;                    
1941
1942                         table = ALIGN_PTR_TO (table, 8);
1943                         aname->flags = *(guint32*)table;
1944                         table += 4;
1945                         aname->major = *(guint32*)table;
1946                         table += 4;
1947                         aname->minor = *(guint32*)table;
1948                         table += 4;
1949                         aname->build = *(guint32*)table;
1950                         table += 4;
1951                         aname->revision = *(guint32*)table;
1952                         table += 4;
1953                 }
1954         }
1955
1956         amodule->jit_code_start = info->jit_code_start;
1957         amodule->jit_code_end = info->jit_code_end;
1958         amodule->method_info_offsets = info->method_info_offsets;
1959         amodule->ex_info_offsets = info->ex_info_offsets;
1960         amodule->class_info_offsets = info->class_info_offsets;
1961         amodule->class_name_table = info->class_name_table;
1962         amodule->extra_method_table = info->extra_method_table;
1963         amodule->extra_method_info_offsets = info->extra_method_info_offsets;
1964         amodule->unbox_trampolines = info->unbox_trampolines;
1965         amodule->unbox_trampolines_end = info->unbox_trampolines_end;
1966         amodule->unbox_trampoline_addresses = info->unbox_trampoline_addresses;
1967         amodule->unwind_info = info->unwind_info;
1968         amodule->mem_begin = amodule->jit_code_start;
1969         amodule->mem_end = info->mem_end;
1970         amodule->plt = info->plt;
1971         amodule->plt_end = info->plt_end;
1972         amodule->mono_eh_frame = info->mono_eh_frame;
1973         amodule->trampolines [MONO_AOT_TRAMP_SPECIFIC] = info->specific_trampolines;
1974         amodule->trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = info->static_rgctx_trampolines;
1975         amodule->trampolines [MONO_AOT_TRAMP_IMT_THUNK] = info->imt_thunks;
1976         amodule->trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = info->gsharedvt_arg_trampolines;
1977
1978         if (!strcmp (assembly->aname.name, "mscorlib"))
1979                 mscorlib_aot_module = amodule;
1980
1981         /* Compute method addresses */
1982         amodule->methods = g_malloc0 (amodule->info.nmethods * sizeof (gpointer));
1983         for (i = 0; i < amodule->info.nmethods; ++i) {
1984                 void *addr = NULL;
1985
1986                 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
1987                 if (!addr && amodule->info.method_addresses) {
1988                         addr = get_call_table_entry (amodule->info.method_addresses, i);
1989                         g_assert (addr);
1990                         if (addr == amodule->info.method_addresses)
1991                                 addr = NULL;
1992                 }
1993                 if (addr == NULL)
1994                         amodule->methods [i] = GINT_TO_POINTER (-1);
1995                 else
1996                         amodule->methods [i] = addr;
1997         }
1998
1999         if (make_unreadable) {
2000 #ifndef TARGET_WIN32
2001                 guint8 *addr;
2002                 guint8 *page_start, *page_end;
2003                 int err, len;
2004
2005                 addr = amodule->mem_begin;
2006                 g_assert (addr);
2007                 len = amodule->mem_end - amodule->mem_begin;
2008
2009                 /* Round down in both directions to avoid modifying data which is not ours */
2010                 page_start = (guint8 *) (((gssize) (addr)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2011                 page_end = (guint8 *) (((gssize) (addr + len)) & ~ (mono_pagesize () - 1));
2012                 if (page_end > page_start) {
2013                         err = mono_mprotect (page_start, (page_end - page_start), MONO_MMAP_NONE);
2014                         g_assert (err == 0);
2015                 }
2016 #endif
2017         }
2018
2019         /* Compute the boundaries of LLVM code */
2020         if (info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM)
2021                 compute_llvm_code_range (amodule, &amodule->llvm_code_start, &amodule->llvm_code_end);
2022
2023         mono_aot_lock ();
2024
2025         if (amodule->jit_code_start) {
2026                 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->jit_code_start);
2027                 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->jit_code_end);
2028         }
2029         if (amodule->llvm_code_start) {
2030                 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->llvm_code_start);
2031                 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->llvm_code_end);
2032         }
2033
2034         g_hash_table_insert (aot_modules, assembly, amodule);
2035         mono_aot_unlock ();
2036
2037         if (amodule->jit_code_start)
2038                 mono_jit_info_add_aot_module (assembly->image, amodule->jit_code_start, amodule->jit_code_end);
2039         if (amodule->llvm_code_start)
2040                 mono_jit_info_add_aot_module (assembly->image, amodule->llvm_code_start, amodule->llvm_code_end);
2041
2042         assembly->image->aot_module = amodule;
2043
2044         amodule->shared_got [0] = assembly->image;
2045
2046         if (mono_aot_only) {
2047                 char *code;
2048                 find_symbol (amodule->sofile, amodule->globals, "specific_trampolines_page", (gpointer *)&code);
2049                 amodule->use_page_trampolines = code != NULL;
2050                 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2051                 if (mono_defaults.corlib) {
2052                         /* The second got slot contains the mscorlib got addr */
2053                         MonoAotModule *mscorlib_amodule = mono_defaults.corlib->aot_module;
2054
2055                         amodule->shared_got [1] = mscorlib_amodule->got;
2056                 } else {
2057                         amodule->shared_got [1] = amodule->got;
2058                 }
2059         }
2060
2061         if (mono_gc_is_moving ()) {
2062                 MonoJumpInfo ji;
2063
2064                 memset (&ji, 0, sizeof (ji));
2065                 ji.type = MONO_PATCH_INFO_GC_CARD_TABLE_ADDR;
2066                 amodule->shared_got [2] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, &ji, FALSE);
2067
2068                 memset (&ji, 0, sizeof (ji));
2069                 ji.type = MONO_PATCH_INFO_GC_NURSERY_START;
2070                 amodule->shared_got [3] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, &ji, FALSE);
2071         }
2072
2073         init_gots (amodule);
2074
2075         /*
2076          * Register the plt region as a single trampoline so we can unwind from this code
2077          */
2078         mono_tramp_info_register (
2079                 mono_tramp_info_create (
2080                         NULL,
2081                         amodule->plt,
2082                         amodule->plt_end - amodule->plt,
2083                         NULL,
2084                         mono_unwind_get_cie_program ()
2085                         ),
2086                 NULL
2087                 );
2088
2089         /*
2090          * Since we store methoddef and classdef tokens when referring to methods/classes in
2091          * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2092          * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2093          * non-lazily, since we can't handle out-of-date errors later.
2094          * The cached class info also depends on the exact assemblies.
2095          */
2096 #if defined(__native_client__)
2097         /* TODO: Don't 'load_image' on mscorlib due to a */
2098         /* recursive loading problem.  This should be    */
2099         /* removed if mscorlib is loaded from disk.      */
2100         if (strncmp(assembly->aname.name, "mscorlib", 8)) {
2101                 do_load_image = TRUE;
2102         } else {
2103                 do_load_image = FALSE;
2104         }
2105 #endif
2106         if (do_load_image) {
2107                 for (i = 0; i < amodule->image_table_len; ++i)
2108                         load_image (amodule, i, FALSE);
2109         }
2110
2111         if (amodule->out_of_date) {
2112                 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);
2113                 if (mono_aot_only)
2114                         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);
2115         }
2116         else
2117                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loaded AOT Module for %s.\n", assembly->image->name);
2118 }
2119
2120 /*
2121  * mono_aot_register_globals:
2122  *
2123  *   This is called by the ctor function in AOT images compiled with the
2124  * 'no-dlsym' option.
2125  */
2126 void
2127 mono_aot_register_globals (gpointer *globals)
2128 {
2129         g_assert_not_reached ();
2130 }
2131
2132 /*
2133  * mono_aot_register_module:
2134  *
2135  *   This should be called by embedding code to register AOT modules statically linked
2136  * into the executable. AOT_INFO should be the value of the 
2137  * 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2138  */
2139 void
2140 mono_aot_register_module (gpointer *aot_info)
2141 {
2142         gpointer *globals;
2143         char *aname;
2144         MonoAotFileInfo *info = (gpointer)aot_info;
2145
2146         g_assert (info->version == MONO_AOT_FILE_VERSION);
2147
2148         globals = info->globals;
2149         g_assert (globals);
2150
2151         aname = info->assembly_name;
2152
2153         /* This could be called before startup */
2154         if (aot_modules)
2155                 mono_aot_lock ();
2156
2157         if (!static_aot_modules)
2158                 static_aot_modules = g_hash_table_new (g_str_hash, g_str_equal);
2159
2160         g_hash_table_insert (static_aot_modules, aname, info);
2161
2162         if (aot_modules)
2163                 mono_aot_unlock ();
2164 }
2165
2166 void
2167 mono_aot_init (void)
2168 {
2169         mono_mutex_init_recursive (&aot_mutex);
2170         mono_mutex_init_recursive (&aot_page_mutex);
2171         aot_modules = g_hash_table_new (NULL, NULL);
2172
2173 #ifndef __native_client__
2174         mono_install_assembly_load_hook (load_aot_module, NULL);
2175 #endif
2176         mono_counters_register ("Async JIT info size", MONO_COUNTER_INT|MONO_COUNTER_JIT, &async_jit_info_size);
2177
2178         if (g_getenv ("MONO_LASTAOT"))
2179                 mono_last_aot_method = atoi (g_getenv ("MONO_LASTAOT"));
2180         aot_cache_init ();
2181 }
2182
2183 void
2184 mono_aot_cleanup (void)
2185 {
2186         if (aot_jit_icall_hash)
2187                 g_hash_table_destroy (aot_jit_icall_hash);
2188         if (aot_modules)
2189                 g_hash_table_destroy (aot_modules);
2190 }
2191
2192 static gboolean
2193 decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guint8 *buf, guint8 **endbuf)
2194 {
2195         guint32 flags;
2196         MethodRef ref;
2197         gboolean res;
2198
2199         info->vtable_size = decode_value (buf, &buf);
2200         if (info->vtable_size == -1)
2201                 /* Generic type */
2202                 return FALSE;
2203         flags = decode_value (buf, &buf);
2204         info->ghcimpl = (flags >> 0) & 0x1;
2205         info->has_finalize = (flags >> 1) & 0x1;
2206         info->has_cctor = (flags >> 2) & 0x1;
2207         info->has_nested_classes = (flags >> 3) & 0x1;
2208         info->blittable = (flags >> 4) & 0x1;
2209         info->has_references = (flags >> 5) & 0x1;
2210         info->has_static_refs = (flags >> 6) & 0x1;
2211         info->no_special_static_fields = (flags >> 7) & 0x1;
2212         info->is_generic_container = (flags >> 8) & 0x1;
2213
2214         if (info->has_cctor) {
2215                 res = decode_method_ref (module, &ref, buf, &buf);
2216                 if (!res)
2217                         return FALSE;
2218                 info->cctor_token = ref.token;
2219         }
2220         if (info->has_finalize) {
2221                 res = decode_method_ref (module, &ref, buf, &buf);
2222                 if (!res)
2223                         return FALSE;
2224                 info->finalize_image = ref.image;
2225                 info->finalize_token = ref.token;
2226         }
2227
2228         info->instance_size = decode_value (buf, &buf);
2229         info->class_size = decode_value (buf, &buf);
2230         info->packing_size = decode_value (buf, &buf);
2231         info->min_align = decode_value (buf, &buf);
2232
2233         *endbuf = buf;
2234
2235         return TRUE;
2236 }       
2237
2238 gpointer
2239 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot)
2240 {
2241         int i;
2242         MonoClass *klass = vtable->klass;
2243         MonoAotModule *amodule = klass->image->aot_module;
2244         guint8 *info, *p;
2245         MonoCachedClassInfo class_info;
2246         gboolean err;
2247         MethodRef ref;
2248         gboolean res;
2249
2250         if (MONO_CLASS_IS_INTERFACE (klass) || klass->rank || !amodule)
2251                 return NULL;
2252
2253         info = &amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2254         p = info;
2255
2256         err = decode_cached_class_info (amodule, &class_info, p, &p);
2257         if (!err)
2258                 return NULL;
2259
2260         for (i = 0; i < slot; ++i)
2261                 decode_method_ref (amodule, &ref, p, &p);
2262
2263         res = decode_method_ref (amodule, &ref, p, &p);
2264         if (!res)
2265                 return NULL;
2266         if (ref.no_aot_trampoline)
2267                 return NULL;
2268
2269         if (mono_metadata_token_index (ref.token) == 0 || mono_metadata_token_table (ref.token) != MONO_TABLE_METHOD)
2270                 return NULL;
2271
2272         return mono_aot_get_method_from_token (domain, ref.image, ref.token);
2273 }
2274
2275 gboolean
2276 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
2277 {
2278         MonoAotModule *amodule = klass->image->aot_module;
2279         guint8 *p;
2280         gboolean err;
2281
2282         if (klass->rank || !amodule)
2283                 return FALSE;
2284
2285         p = (guint8*)&amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (klass->type_token) - 1)];
2286
2287         err = decode_cached_class_info (amodule, res, p, &p);
2288         if (!err)
2289                 return FALSE;
2290
2291         return TRUE;
2292 }
2293
2294 /**
2295  * mono_aot_get_class_from_name:
2296  *
2297  *  Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2298  * using a cache stored in the AOT file.
2299  * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2300  *
2301  * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was 
2302  * found.
2303  */
2304 gboolean
2305 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
2306 {
2307         MonoAotModule *amodule = image->aot_module;
2308         guint16 *table, *entry;
2309         guint16 table_size;
2310         guint32 hash;
2311         char full_name_buf [1024];
2312         char *full_name;
2313         const char *name2, *name_space2;
2314         MonoTableInfo  *t;
2315         guint32 cols [MONO_TYPEDEF_SIZE];
2316         GHashTable *nspace_table;
2317
2318         if (!amodule || !amodule->class_name_table)
2319                 return FALSE;
2320
2321         amodule_lock (amodule);
2322
2323         *klass = NULL;
2324
2325         /* First look in the cache */
2326         if (!amodule->name_cache)
2327                 amodule->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
2328         nspace_table = g_hash_table_lookup (amodule->name_cache, name_space);
2329         if (nspace_table) {
2330                 *klass = g_hash_table_lookup (nspace_table, name);
2331                 if (*klass) {
2332                         amodule_unlock (amodule);
2333                         return TRUE;
2334                 }
2335         }
2336
2337         table_size = amodule->class_name_table [0];
2338         table = amodule->class_name_table + 1;
2339
2340         if (name_space [0] == '\0')
2341                 full_name = g_strdup_printf ("%s", name);
2342         else {
2343                 if (strlen (name_space) + strlen (name) < 1000) {
2344                         sprintf (full_name_buf, "%s.%s", name_space, name);
2345                         full_name = full_name_buf;
2346                 } else {
2347                         full_name = g_strdup_printf ("%s.%s", name_space, name);
2348                 }
2349         }
2350         hash = mono_metadata_str_hash (full_name) % table_size;
2351         if (full_name != full_name_buf)
2352                 g_free (full_name);
2353
2354         entry = &table [hash * 2];
2355
2356         if (entry [0] != 0) {
2357                 t = &image->tables [MONO_TABLE_TYPEDEF];
2358
2359                 while (TRUE) {
2360                         guint32 index = entry [0];
2361                         guint32 next = entry [1];
2362                         guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
2363
2364                         name_table_accesses ++;
2365
2366                         mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
2367
2368                         name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2369                         name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2370
2371                         if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
2372                                 MonoError error;
2373                                 amodule_unlock (amodule);
2374                                 *klass = mono_class_get_checked (image, token, &error);
2375                                 if (!mono_error_ok (&error))
2376                                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
2377
2378                                 /* Add to cache */
2379                                 if (*klass) {
2380                                         amodule_lock (amodule);
2381                                         nspace_table = g_hash_table_lookup (amodule->name_cache, name_space);
2382                                         if (!nspace_table) {
2383                                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
2384                                                 g_hash_table_insert (amodule->name_cache, (char*)name_space2, nspace_table);
2385                                         }
2386                                         g_hash_table_insert (nspace_table, (char*)name2, *klass);
2387                                         amodule_unlock (amodule);
2388                                 }
2389                                 return TRUE;
2390                         }
2391
2392                         if (next != 0) {
2393                                 entry = &table [next * 2];
2394                         } else {
2395                                 break;
2396                         }
2397                 }
2398         }
2399
2400         amodule_unlock (amodule);
2401         
2402         return TRUE;
2403 }
2404
2405 /* Compute the boundaries of the LLVM code for AMODULE. */
2406 static void
2407 compute_llvm_code_range (MonoAotModule *amodule, guint8 **code_start, guint8 **code_end)
2408 {
2409         guint8 *p;
2410         int version, fde_count;
2411         gint32 *table;
2412
2413         g_assert (amodule->mono_eh_frame);
2414
2415         p = amodule->mono_eh_frame;
2416
2417         /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2418
2419         /* Header */
2420         version = *p;
2421         g_assert (version == 3);
2422         p ++;
2423         p ++;
2424         p = ALIGN_PTR_TO (p, 4);
2425
2426         fde_count = *(guint32*)p;
2427         p += 4;
2428         table = (gint32*)p;
2429
2430         if (fde_count > 0) {
2431                 *code_start = amodule->methods [table [0]];
2432                 *code_end = (guint8*)amodule->methods [table [(fde_count - 1) * 2]] + table [fde_count * 2];
2433         } else {
2434                 *code_start = NULL;
2435                 *code_end = NULL;
2436         }
2437 }
2438
2439 static gboolean
2440 is_llvm_code (MonoAotModule *amodule, guint8 *code)
2441 {
2442         if ((guint8*)code >= amodule->llvm_code_start && (guint8*)code < amodule->llvm_code_end)
2443                 return TRUE;
2444         else
2445                 return FALSE;
2446 }
2447
2448 static gboolean
2449 is_thumb_code (MonoAotModule *amodule, guint8 *code)
2450 {
2451         if (is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_THUMB))
2452                 return TRUE;
2453         else
2454                 return FALSE;
2455 }
2456
2457 /*
2458  * decode_llvm_mono_eh_frame:
2459  *
2460  *   Decode the EH information emitted by our modified LLVM compiler and construct a
2461  * MonoJitInfo structure from it.
2462  * LOCKING: Acquires the domain lock.
2463  */
2464 static MonoJitInfo*
2465 decode_llvm_mono_eh_frame (MonoAotModule *amodule, MonoDomain *domain, 
2466                                                    MonoMethod *method, guint8 *code, 
2467                                                    MonoJitExceptionInfo *clauses, int num_clauses,
2468                                                    MonoJitInfoFlags flags,
2469                                                    GSList **nesting,
2470                                                    int *this_reg, int *this_offset)
2471 {
2472         guint8 *p, *code1, *code2;
2473         guint8 *fde, *cie, *code_start, *code_end;
2474         int version, fde_count;
2475         gint32 *table;
2476         int i, pos, left, right, code_len;
2477         MonoJitExceptionInfo *ei;
2478         guint32 fde_len, ei_len, nested_len, nindex;
2479         gpointer *type_info;
2480         MonoJitInfo *jinfo;
2481         MonoLLVMFDEInfo info;
2482
2483         g_assert (amodule->mono_eh_frame);
2484
2485         p = amodule->mono_eh_frame;
2486
2487         /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2488
2489         /* Header */
2490         version = *p;
2491         g_assert (version == 3);
2492         p ++;
2493         /* func_encoding = *p; */
2494         p ++;
2495         p = ALIGN_PTR_TO (p, 4);
2496
2497         fde_count = *(guint32*)p;
2498         p += 4;
2499         table = (gint32*)p;
2500
2501         /* There is +1 entry in the table */
2502         cie = p + ((fde_count + 1) * 8);
2503
2504         /* Binary search in the table to find the entry for code */
2505         left = 0;
2506         right = fde_count;
2507         while (TRUE) {
2508                 pos = (left + right) / 2;
2509
2510                 /* The table contains method index/fde offset pairs */
2511                 g_assert (table [(pos * 2)] != -1);
2512                 code1 = amodule->methods [table [(pos * 2)]];
2513                 if (pos + 1 == fde_count) {
2514                         code2 = amodule->llvm_code_end;
2515                 } else {
2516                         g_assert (table [(pos + 1) * 2] != -1);
2517                         code2 = amodule->methods [table [(pos + 1) * 2]];
2518                 }
2519
2520                 if (code < code1)
2521                         right = pos;
2522                 else if (code >= code2)
2523                         left = pos + 1;
2524                 else
2525                         break;
2526         }
2527
2528         code_start = amodule->methods [table [(pos * 2)]];
2529         if (pos + 1 == fde_count) {
2530                 /* The +1 entry in the table contains the length of the last method */
2531                 int len = table [(pos + 1) * 2];
2532                 code_end = code_start + len;
2533         } else {
2534                 code_end = amodule->methods [table [(pos + 1) * 2]];
2535         }
2536         code_len = code_end - code_start;
2537
2538         g_assert (code >= code_start && code < code_end);
2539
2540         if (is_thumb_code (amodule, code_start))
2541                 /* Clear thumb flag */
2542                 code_start = (guint8*)(((mgreg_t)code_start) & ~1);
2543
2544         fde = amodule->mono_eh_frame + table [(pos * 2) + 1];   
2545         /* This won't overflow because there is +1 entry in the table */
2546         fde_len = table [(pos * 2) + 2 + 1] - table [(pos * 2) + 1];
2547
2548         mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info);
2549         ei = info.ex_info;
2550         ei_len = info.ex_info_len;
2551         type_info = info.type_info;
2552         *this_reg = info.this_reg;
2553         *this_offset = info.this_offset;
2554
2555         /* Count number of nested clauses */
2556         nested_len = 0;
2557         for (i = 0; i < ei_len; ++i) {
2558                 /* This might be unaligned */
2559                 gint32 cindex1 = read32 (type_info [i]);
2560                 GSList *l;
2561
2562                 for (l = nesting [cindex1]; l; l = l->next)
2563                         nested_len ++;
2564         }
2565
2566         /*
2567          * LLVM might represent one IL region with multiple regions, so have to
2568          * allocate a new JI.
2569          */
2570         jinfo = 
2571                 mono_domain_alloc0_lock_free (domain, mono_jit_info_size (flags, ei_len + nested_len, 0));
2572         mono_jit_info_init (jinfo, method, code, code_len, flags, ei_len + nested_len, 0);
2573
2574         jinfo->unwind_info = mono_cache_unwind_info (info.unw_info, info.unw_info_len);
2575         /* This signals that unwind_info points to a normal cached unwind info */
2576         jinfo->from_aot = 0;
2577         jinfo->from_llvm = 1;
2578
2579         for (i = 0; i < ei_len; ++i) {
2580                 /*
2581                  * clauses contains the original IL exception info saved by the AOT
2582                  * compiler, we have to combine that with the information produced by LLVM
2583                  */
2584                 /* The type_info entries contain IL clause indexes */
2585                 int clause_index = read32 (type_info [i]);
2586                 MonoJitExceptionInfo *jei = &jinfo->clauses [i];
2587                 MonoJitExceptionInfo *orig_jei = &clauses [clause_index];
2588
2589                 g_assert (clause_index < num_clauses);
2590                 jei->flags = orig_jei->flags;
2591                 jei->data.catch_class = orig_jei->data.catch_class;
2592
2593                 jei->try_start = ei [i].try_start;
2594                 jei->try_end = ei [i].try_end;
2595                 jei->handler_start = ei [i].handler_start;
2596                 jei->clause_index = clause_index;
2597
2598                 if (is_thumb_code (amodule, jei->try_start)) {
2599                         jei->try_start = (void*)((mgreg_t)jei->try_start & ~1);
2600                         jei->try_end = (void*)((mgreg_t)jei->try_end & ~1);
2601                         /* Make sure we transition to thumb when a handler starts */
2602                         jei->handler_start = (void*)((mgreg_t)jei->handler_start + 1);
2603                 }
2604         }
2605
2606         /* See exception_cb () in mini-llvm.c as to why this is needed */
2607         nindex = ei_len;
2608         for (i = 0; i < ei_len; ++i) {
2609                 gint32 cindex1 = read32 (type_info [i]);
2610                 GSList *l;
2611
2612                 for (l = nesting [cindex1]; l; l = l->next) {
2613                         gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2614                         MonoJitExceptionInfo *nesting_ei;
2615                         MonoJitExceptionInfo *nesting_clause = &clauses [nesting_cindex];
2616
2617                         nesting_ei = &jinfo->clauses [nindex];
2618                         nindex ++;
2619
2620                         memcpy (nesting_ei, &jinfo->clauses [i], sizeof (MonoJitExceptionInfo));
2621                         nesting_ei->flags = nesting_clause->flags;
2622                         nesting_ei->data.catch_class = nesting_clause->data.catch_class;
2623                         nesting_ei->clause_index = nesting_cindex;
2624                 }
2625         }
2626         g_assert (nindex == ei_len + nested_len);
2627
2628         return jinfo;
2629 }
2630
2631 static gpointer
2632 alloc0_jit_info_data (MonoDomain *domain, int size, gboolean async_context)
2633 {
2634         gpointer res;
2635
2636         if (async_context) {
2637                 res = mono_domain_alloc0_lock_free (domain, size);
2638                 InterlockedExchangeAdd (&async_jit_info_size, size);
2639         } else {
2640                 res = mono_domain_alloc0 (domain, size);
2641         }
2642         return res;
2643 }
2644
2645 /*
2646  * LOCKING: Acquires the domain lock.
2647  * In async context, this is async safe.
2648  */
2649 static MonoJitInfo*
2650 decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain, 
2651                                                          MonoMethod *method, guint8* ex_info, guint8 *addr,
2652                                                          guint8 *code, guint32 code_len)
2653 {
2654         int i, buf_len, num_clauses, len;
2655         MonoJitInfo *jinfo;
2656         MonoJitInfoFlags flags = JIT_INFO_NONE;
2657         guint unwind_info, eflags;
2658         gboolean has_generic_jit_info, has_dwarf_unwind_info, has_clauses, has_seq_points, has_try_block_holes, has_arch_eh_jit_info;
2659         gboolean from_llvm, has_gc_map;
2660         guint8 *p;
2661         int try_holes_info_size, num_holes;
2662         int this_reg = 0, this_offset = 0;
2663         gboolean async;
2664
2665         /* Load the method info from the AOT file */
2666         async = mono_thread_info_is_async_context ();
2667
2668         p = ex_info;
2669         eflags = decode_value (p, &p);
2670         has_generic_jit_info = (eflags & 1) != 0;
2671         has_dwarf_unwind_info = (eflags & 2) != 0;
2672         has_clauses = (eflags & 4) != 0;
2673         has_seq_points = (eflags & 8) != 0;
2674         from_llvm = (eflags & 16) != 0;
2675         has_try_block_holes = (eflags & 32) != 0;
2676         has_gc_map = (eflags & 64) != 0;
2677         has_arch_eh_jit_info = (eflags & 128) != 0;
2678
2679         if (has_dwarf_unwind_info) {
2680                 unwind_info = decode_value (p, &p);
2681                 g_assert (unwind_info < (1 << 30));
2682         } else {
2683                 unwind_info = decode_value (p, &p);
2684         }
2685         if (has_generic_jit_info)
2686                 flags |= JIT_INFO_HAS_GENERIC_JIT_INFO;
2687
2688         if (has_try_block_holes) {
2689                 num_holes = decode_value (p, &p);
2690                 flags |= JIT_INFO_HAS_TRY_BLOCK_HOLES;
2691                 try_holes_info_size = sizeof (MonoTryBlockHoleTableJitInfo) + num_holes * sizeof (MonoTryBlockHoleJitInfo);
2692         } else {
2693                 num_holes = try_holes_info_size = 0;
2694         }
2695
2696         if (has_arch_eh_jit_info) {
2697                 flags |= JIT_INFO_HAS_ARCH_EH_INFO;
2698                 /* Overwrite the original code_len which includes alignment padding */
2699                 code_len = decode_value (p, &p);
2700         }
2701
2702         /* Exception table */
2703         if (has_clauses)
2704                 num_clauses = decode_value (p, &p);
2705         else
2706                 num_clauses = 0;
2707
2708         if (from_llvm) {
2709                 MonoJitExceptionInfo *clauses;
2710                 GSList **nesting;
2711
2712                 // FIXME: async
2713                 g_assert (!async);
2714
2715                 /*
2716                  * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
2717                  * section.
2718                  */
2719                 clauses = g_new0 (MonoJitExceptionInfo, num_clauses);
2720                 nesting = g_new0 (GSList*, num_clauses);
2721
2722                 for (i = 0; i < num_clauses; ++i) {
2723                         MonoJitExceptionInfo *ei = &clauses [i];
2724
2725                         ei->flags = decode_value (p, &p);
2726
2727                         if (decode_value (p, &p))
2728                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p);
2729
2730                         /* Read the list of nesting clauses */
2731                         while (TRUE) {
2732                                 int nesting_index = decode_value (p, &p);
2733                                 if (nesting_index == -1)
2734                                         break;
2735                                 nesting [i] = g_slist_prepend (nesting [i], GINT_TO_POINTER (nesting_index));
2736                         }
2737                 }
2738
2739                 jinfo = decode_llvm_mono_eh_frame (amodule, domain, method, code, clauses, num_clauses, flags, nesting, &this_reg, &this_offset);
2740
2741                 g_free (clauses);
2742                 for (i = 0; i < num_clauses; ++i)
2743                         g_slist_free (nesting [i]);
2744                 g_free (nesting);
2745         } else {
2746                 len = mono_jit_info_size (flags, num_clauses, num_holes);
2747                 jinfo = alloc0_jit_info_data (domain, len, async);
2748                 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, num_holes);
2749
2750                 for (i = 0; i < jinfo->num_clauses; ++i) {
2751                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
2752
2753                         ei->flags = decode_value (p, &p);
2754
2755 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
2756                         /* Not used for catch clauses */
2757                         if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
2758                                 ei->exvar_offset = decode_value (p, &p);
2759 #else
2760                         ei->exvar_offset = decode_value (p, &p);
2761 #endif
2762
2763                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
2764                                 ei->data.filter = code + decode_value (p, &p);
2765                         else {
2766                                 int len = decode_value (p, &p);
2767
2768                                 if (len > 0) {
2769                                         if (async)
2770                                                 p += len;
2771                                         else
2772                                                 ei->data.catch_class = decode_klass_ref (amodule, p, &p);
2773                                 }
2774                         }
2775
2776                         ei->try_start = code + decode_value (p, &p);
2777                         ei->try_end = code + decode_value (p, &p);
2778                         ei->handler_start = code + decode_value (p, &p);
2779                 }
2780
2781                 jinfo->unwind_info = unwind_info;
2782                 jinfo->domain_neutral = 0;
2783                 jinfo->from_aot = 1;
2784         }
2785
2786         if (has_try_block_holes) {
2787                 MonoTryBlockHoleTableJitInfo *table;
2788
2789                 g_assert (jinfo->has_try_block_holes);
2790
2791                 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
2792                 g_assert (table);
2793
2794                 table->num_holes = (guint16)num_holes;
2795                 for (i = 0; i < num_holes; ++i) {
2796                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
2797                         hole->clause = decode_value (p, &p);
2798                         hole->length = decode_value (p, &p);
2799                         hole->offset = decode_value (p, &p);
2800                 }
2801         }
2802
2803         if (has_arch_eh_jit_info) {
2804                 MonoArchEHJitInfo *eh_info;
2805
2806                 g_assert (jinfo->has_arch_eh_info);
2807
2808                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
2809                 eh_info->stack_size = decode_value (p, &p);
2810                 eh_info->epilog_size = decode_value (p, &p);
2811         }
2812
2813         if (async) {
2814                 /* The rest is not needed in async mode */
2815                 jinfo->async = TRUE;
2816                 jinfo->d.aot_info = amodule;
2817                 // FIXME: Cache
2818                 return jinfo;
2819         }
2820
2821         if (has_generic_jit_info) {
2822                 MonoGenericJitInfo *gi;
2823                 int len;
2824
2825                 g_assert (jinfo->has_generic_jit_info);
2826
2827                 gi = mono_jit_info_get_generic_jit_info (jinfo);
2828                 g_assert (gi);
2829
2830                 gi->nlocs = decode_value (p, &p);
2831                 if (gi->nlocs) {
2832                         gi->locations = alloc0_jit_info_data (domain, gi->nlocs * sizeof (MonoDwarfLocListEntry), async);
2833                         for (i = 0; i < gi->nlocs; ++i) {
2834                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
2835
2836                                 entry->is_reg = decode_value (p, &p);
2837                                 entry->reg = decode_value (p, &p);
2838                                 if (!entry->is_reg)
2839                                         entry->offset = decode_value (p, &p);
2840                                 if (i > 0)
2841                                         entry->from = decode_value (p, &p);
2842                                 entry->to = decode_value (p, &p);
2843                         }
2844                         gi->has_this = 1;
2845                 } else {
2846                         if (from_llvm) {
2847                                 gi->has_this = this_reg != -1;
2848                                 gi->this_reg = this_reg;
2849                                 gi->this_offset = this_offset;
2850                         } else {
2851                                 gi->has_this = decode_value (p, &p);
2852                                 gi->this_reg = decode_value (p, &p);
2853                                 gi->this_offset = decode_value (p, &p);
2854                         }
2855                 }
2856
2857                 len = decode_value (p, &p);
2858                 if (async)
2859                         p += len;
2860                 else
2861                         jinfo->d.method = decode_resolve_method_ref (amodule, p, &p);
2862
2863                 gi->generic_sharing_context = g_new0 (MonoGenericSharingContext, 1);
2864                 if (decode_value (p, &p)) {
2865                         /* gsharedvt */
2866                         MonoGenericSharingContext *gsctx = gi->generic_sharing_context;
2867
2868                         gsctx->is_gsharedvt = TRUE;
2869                 }
2870         }
2871
2872         if (method && has_seq_points) {
2873                 MonoSeqPointInfo *seq_points;
2874
2875                 p += mono_seq_point_info_read (&seq_points, p, FALSE);
2876
2877                 mono_domain_lock (domain);
2878                 g_hash_table_insert (domain_jit_info (domain)->seq_points, method, seq_points);
2879                 mono_domain_unlock (domain);
2880         }
2881
2882         /* Load debug info */
2883         buf_len = decode_value (p, &p);
2884         if (!async)
2885                 mono_debug_add_aot_method (domain, method, code, p, buf_len);
2886         p += buf_len;
2887
2888         if (has_gc_map) {
2889                 int map_size = decode_value (p, &p);
2890                 /* The GC map requires 4 bytes of alignment */
2891                 while ((guint64)(gsize)p % 4)
2892                         p ++;           
2893                 jinfo->gc_info = p;
2894                 p += map_size;
2895         }
2896
2897         if (amodule != jinfo->d.method->klass->image->aot_module) {
2898                 mono_aot_lock ();
2899                 if (!ji_to_amodule)
2900                         ji_to_amodule = g_hash_table_new (NULL, NULL);
2901                 g_hash_table_insert (ji_to_amodule, jinfo, amodule);
2902                 mono_aot_unlock ();             
2903         }
2904
2905         return jinfo;
2906 }
2907
2908 static gboolean
2909 amodule_contains_code_addr (MonoAotModule *amodule, guint8 *code)
2910 {
2911         return (code >= amodule->jit_code_start && code <= amodule->jit_code_end) ||
2912                 (code >= amodule->llvm_code_start && code <= amodule->llvm_code_end);
2913 }
2914
2915 /*
2916  * mono_aot_get_unwind_info:
2917  *
2918  *   Return a pointer to the DWARF unwind info belonging to JI.
2919  */
2920 guint8*
2921 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
2922 {
2923         MonoAotModule *amodule;
2924         guint8 *p;
2925         guint8 *code = ji->code_start;
2926
2927         if (ji->async)
2928                 amodule = ji->d.aot_info;
2929         else
2930                 amodule = jinfo_get_method (ji)->klass->image->aot_module;
2931         g_assert (amodule);
2932         g_assert (ji->from_aot);
2933
2934         if (!amodule_contains_code_addr (amodule, code)) {
2935                 /* ji belongs to a different aot module than amodule */
2936                 mono_aot_lock ();
2937                 g_assert (ji_to_amodule);
2938                 amodule = g_hash_table_lookup (ji_to_amodule, ji);
2939                 g_assert (amodule);
2940                 g_assert (amodule_contains_code_addr (amodule, code));
2941                 mono_aot_unlock ();
2942         }
2943
2944         p = amodule->unwind_info + ji->unwind_info;
2945         *unwind_info_len = decode_value (p, &p);
2946         return p;
2947 }
2948
2949 static void
2950 msort_method_addresses_internal (gpointer *array, int *indexes, int lo, int hi, gpointer *scratch, int *scratch_indexes)
2951 {
2952         int mid = (lo + hi) / 2;
2953         int i, t_lo, t_hi;
2954
2955         if (lo >= hi)
2956                 return;
2957
2958         if (hi - lo < 32) {
2959                 for (i = lo; i < hi; ++i)
2960                         if (array [i] > array [i + 1])
2961                                 break;
2962                 if (i == hi)
2963                         /* Already sorted */
2964                         return;
2965         }
2966
2967         msort_method_addresses_internal (array, indexes, lo, mid, scratch, scratch_indexes);
2968         msort_method_addresses_internal (array, indexes, mid + 1, hi, scratch, scratch_indexes);
2969
2970         if (array [mid] < array [mid + 1])
2971                 return;
2972
2973         /* Merge */
2974         t_lo = lo;
2975         t_hi = mid + 1;
2976         for (i = lo; i <= hi; i ++) {
2977                 if (t_lo <= mid && ((t_hi > hi) || array [t_lo] < array [t_hi])) {
2978                         scratch [i] = array [t_lo];
2979                         scratch_indexes [i] = indexes [t_lo];
2980                         t_lo ++;
2981                 } else {
2982                         scratch [i] = array [t_hi];
2983                         scratch_indexes [i] = indexes [t_hi];
2984                         t_hi ++;
2985                 }
2986         }
2987         for (i = lo; i <= hi; ++i) {
2988                 array [i] = scratch [i];
2989                 indexes [i] = scratch_indexes [i];
2990         }
2991 }
2992
2993 static void
2994 msort_method_addresses (gpointer *array, int *indexes, int len)
2995 {
2996         gpointer *scratch;
2997         int *scratch_indexes;
2998
2999         scratch = g_new (gpointer, len);
3000         scratch_indexes = g_new (int, len);
3001         msort_method_addresses_internal (array, indexes, 0, len - 1, scratch, scratch_indexes);
3002         g_free (scratch);
3003         g_free (scratch_indexes);
3004 }
3005
3006 /*
3007  * mono_aot_find_jit_info:
3008  *
3009  *   In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3010  * to the jit info tables.
3011  * FIXME: Large sizes in the lock free allocator
3012  */
3013 MonoJitInfo *
3014 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
3015 {
3016         int pos, left, right, code_len;
3017         int method_index, table_len;
3018         guint32 token;
3019         MonoAotModule *amodule = image->aot_module;
3020         MonoMethod *method = NULL;
3021         MonoJitInfo *jinfo;
3022         guint8 *code, *ex_info, *p;
3023         guint32 *table;
3024         int nmethods;
3025         gpointer *methods;
3026         guint8 *code1, *code2;
3027         int methods_len, i;
3028         gboolean async;
3029
3030         if (!amodule)
3031                 return NULL;
3032
3033         nmethods = amodule->info.nmethods;
3034
3035         if (domain != mono_get_root_domain ())
3036                 /* FIXME: */
3037                 return NULL;
3038
3039         if (!amodule_contains_code_addr (amodule, addr))
3040                 return NULL;
3041
3042         async = mono_thread_info_is_async_context ();
3043
3044         /* Compute a sorted table mapping code to method indexes. */
3045         if (!amodule->sorted_methods) {
3046                 // FIXME: async
3047                 gpointer *methods = g_new0 (gpointer, nmethods);
3048                 int *method_indexes = g_new0 (int, nmethods);
3049                 int methods_len = 0;
3050
3051                 for (i = 0; i < nmethods; ++i) {
3052                         /* Skip the -1 entries to speed up sorting */
3053                         if (amodule->methods [i] == GINT_TO_POINTER (-1))
3054                                 continue;
3055                         methods [methods_len] = amodule->methods [i];
3056                         method_indexes [methods_len] = i;
3057                         methods_len ++;
3058                 }
3059                 /* Use a merge sort as this is mostly sorted */
3060                 msort_method_addresses (methods, method_indexes, methods_len);
3061                 for (i = 0; i < methods_len -1; ++i)
3062                         g_assert (methods [i] <= methods [i + 1]);
3063                 amodule->sorted_methods_len = methods_len;
3064                 if (InterlockedCompareExchangePointer ((gpointer*)&amodule->sorted_methods, methods, NULL) != NULL)
3065                         /* Somebody got in before us */
3066                         g_free (methods);
3067                 if (InterlockedCompareExchangePointer ((gpointer*)&amodule->sorted_method_indexes, method_indexes, NULL) != NULL)
3068                         /* Somebody got in before us */
3069                         g_free (method_indexes);
3070         }
3071
3072         /* Binary search in the sorted_methods table */
3073         methods = amodule->sorted_methods;
3074         methods_len = amodule->sorted_methods_len;
3075         code = addr;
3076         left = 0;
3077         right = methods_len;
3078         while (TRUE) {
3079                 pos = (left + right) / 2;
3080
3081                 code1 = methods [pos];
3082                 if (pos + 1 == methods_len) {
3083                         if (code1 >= amodule->jit_code_start && code1 < amodule->jit_code_end)
3084                                 code2 = amodule->jit_code_end;
3085                         else
3086                                 code2 = amodule->llvm_code_end;
3087                 } else {
3088                         code2 = methods [pos + 1];
3089                 }
3090
3091                 if (code < code1)
3092                         right = pos;
3093                 else if (code >= code2)
3094                         left = pos + 1;
3095                 else
3096                         break;
3097         }
3098
3099         g_assert (addr >= methods [pos]);
3100         if (pos + 1 < methods_len)
3101                 g_assert (addr < methods [pos + 1]);
3102         method_index = amodule->sorted_method_indexes [pos];
3103
3104         /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3105         if (async) {
3106                 JitInfoMap *table = amodule->async_jit_info_table;
3107                 int len;
3108
3109                 if (table) {
3110                         len = table [0].method_index;
3111                         for (i = 1; i < len; ++i) {
3112                                 if (table [i].method_index == method_index)
3113                                         return table [i].jinfo;
3114                         }
3115                 }
3116         }
3117
3118         code = amodule->methods [method_index];
3119         ex_info = &amodule->blob [mono_aot_get_offset (amodule->ex_info_offsets, method_index)];
3120
3121         if (pos == methods_len - 1) {
3122                 if (code >= amodule->jit_code_start && code < amodule->jit_code_end)
3123                         code_len = amodule->jit_code_end - code;
3124                 else
3125                         code_len = amodule->llvm_code_end - code;
3126         } else {
3127                 code_len = (guint8*)methods [pos + 1] - (guint8*)methods [pos];
3128         }
3129
3130         g_assert ((guint8*)code <= (guint8*)addr && (guint8*)addr < (guint8*)code + code_len);
3131
3132         /* Might be a wrapper/extra method */
3133         if (!async) {
3134                 if (amodule->extra_methods) {
3135                         amodule_lock (amodule);
3136                         method = g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
3137                         amodule_unlock (amodule);
3138                 } else {
3139                         method = NULL;
3140                 }
3141
3142                 if (!method) {
3143                         if (method_index >= image->tables [MONO_TABLE_METHOD].rows) {
3144                                 /*
3145                                  * This is hit for extra methods which are called directly, so they are
3146                                  * not in amodule->extra_methods.
3147                                  */
3148                                 table_len = amodule->extra_method_info_offsets [0];
3149                                 table = amodule->extra_method_info_offsets + 1;
3150                                 left = 0;
3151                                 right = table_len;
3152                                 pos = 0;
3153
3154                                 /* Binary search */
3155                                 while (TRUE) {
3156                                         pos = ((left + right) / 2);
3157
3158                                         g_assert (pos < table_len);
3159
3160                                         if (table [pos * 2] < method_index)
3161                                                 left = pos + 1;
3162                                         else if (table [pos * 2] > method_index)
3163                                                 right = pos;
3164                                         else
3165                                                 break;
3166                                 }
3167
3168                                 p = amodule->blob + table [(pos * 2) + 1];
3169                                 method = decode_resolve_method_ref (amodule, p, &p);
3170                                 if (!method)
3171                                         /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3172                                         return NULL;
3173                         } else {
3174                                 token = mono_metadata_make_token (MONO_TABLE_METHOD, method_index + 1);
3175                                 method = mono_get_method (image, token, NULL);
3176                         }
3177                 }
3178                 /* FIXME: */
3179                 g_assert (method);
3180         }
3181
3182         //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3183         
3184         jinfo = decode_exception_debug_info (amodule, domain, method, ex_info, addr, code, code_len);
3185
3186         g_assert ((guint8*)addr >= (guint8*)jinfo->code_start);
3187         g_assert ((guint8*)addr < (guint8*)jinfo->code_start + jinfo->code_size);
3188
3189         /* Add it to the normal JitInfo tables */
3190         if (async) {
3191                 JitInfoMap *old_table, *new_table;
3192                 int len;
3193
3194                 /*
3195                  * Use a simple inmutable table with linear search to cache async jit info entries.
3196                  * This assumes that the number of entries is small.
3197                  */
3198                 while (TRUE) {
3199                         /* Copy the table, adding a new entry at the end */
3200                         old_table = amodule->async_jit_info_table;
3201                         if (old_table)
3202                                 len = old_table[0].method_index;
3203                         else
3204                                 len = 1;
3205                         new_table = alloc0_jit_info_data (domain, (len + 1) * sizeof (JitInfoMap), async);
3206                         if (old_table)
3207                                 memcpy (new_table, old_table, len * sizeof (JitInfoMap));
3208                         new_table [0].method_index = len + 1;
3209                         new_table [len].method_index = method_index;
3210                         new_table [len].jinfo = jinfo;
3211                         /* Publish it */
3212                         mono_memory_barrier ();
3213                         if (InterlockedCompareExchangePointer ((gpointer)&amodule->async_jit_info_table, new_table, old_table) == old_table)
3214                                 break;
3215                 }
3216         } else {
3217                 mono_jit_info_table_add (domain, jinfo);
3218         }
3219         
3220         return jinfo;
3221 }
3222
3223 static gboolean
3224 decode_patch (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji, guint8 *buf, guint8 **endbuf)
3225 {
3226         guint8 *p = buf;
3227         gpointer *table;
3228         MonoImage *image;
3229         int i;
3230
3231         switch (ji->type) {
3232         case MONO_PATCH_INFO_METHOD:
3233         case MONO_PATCH_INFO_METHOD_JUMP:
3234         case MONO_PATCH_INFO_ICALL_ADDR:
3235         case MONO_PATCH_INFO_METHOD_RGCTX:
3236         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
3237                 MethodRef ref;
3238                 gboolean res;
3239
3240                 res = decode_method_ref (aot_module, &ref, p, &p);
3241                 if (!res)
3242                         goto cleanup;
3243
3244                 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)) {
3245                         ji->data.target = mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref.image, ref.token));
3246                         ji->type = MONO_PATCH_INFO_ABS;
3247                 }
3248                 else {
3249                         if (ref.method)
3250                                 ji->data.method = ref.method;
3251                         else
3252                                 ji->data.method = mono_get_method (ref.image, ref.token, NULL);
3253                         g_assert (ji->data.method);
3254                         mono_class_init (ji->data.method->klass);
3255                 }
3256                 break;
3257         }
3258         case MONO_PATCH_INFO_INTERNAL_METHOD:
3259         case MONO_PATCH_INFO_JIT_ICALL_ADDR: {
3260                 guint32 len = decode_value (p, &p);
3261
3262                 ji->data.name = (char*)p;
3263                 p += len + 1;
3264                 break;
3265         }
3266         case MONO_PATCH_INFO_METHODCONST:
3267                 /* Shared */
3268                 ji->data.method = decode_resolve_method_ref (aot_module, p, &p);
3269                 if (!ji->data.method)
3270                         goto cleanup;
3271                 break;
3272         case MONO_PATCH_INFO_VTABLE:
3273         case MONO_PATCH_INFO_CLASS:
3274         case MONO_PATCH_INFO_IID:
3275         case MONO_PATCH_INFO_ADJUSTED_IID:
3276                 /* Shared */
3277                 ji->data.klass = decode_klass_ref (aot_module, p, &p);
3278                 if (!ji->data.klass)
3279                         goto cleanup;
3280                 break;
3281         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
3282                 ji->data.del_tramp = mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
3283                 ji->data.del_tramp->klass = decode_klass_ref (aot_module, p, &p);
3284                 if (!ji->data.del_tramp->klass)
3285                         goto cleanup;
3286                 if (decode_value (p, &p)) {
3287                         ji->data.del_tramp->method = decode_resolve_method_ref (aot_module, p, &p);
3288                         if (!ji->data.del_tramp->method)
3289                                 goto cleanup;
3290                 }
3291                 ji->data.del_tramp->virtual = decode_value (p, &p) ? TRUE : FALSE;
3292                 break;
3293         case MONO_PATCH_INFO_IMAGE:
3294                 ji->data.image = load_image (aot_module, decode_value (p, &p), TRUE);
3295                 if (!ji->data.image)
3296                         goto cleanup;
3297                 break;
3298         case MONO_PATCH_INFO_FIELD:
3299         case MONO_PATCH_INFO_SFLDA:
3300                 /* Shared */
3301                 ji->data.field = decode_field_info (aot_module, p, &p);
3302                 if (!ji->data.field)
3303                         goto cleanup;
3304                 break;
3305         case MONO_PATCH_INFO_SWITCH:
3306                 ji->data.table = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoBBTable));
3307                 ji->data.table->table_size = decode_value (p, &p);
3308                 table = mono_domain_alloc (mono_domain_get (), sizeof (gpointer) * ji->data.table->table_size);
3309                 ji->data.table->table = (MonoBasicBlock**)table;
3310                 for (i = 0; i < ji->data.table->table_size; i++)
3311                         table [i] = (gpointer)(gssize)decode_value (p, &p);
3312                 break;
3313         case MONO_PATCH_INFO_R4: {
3314                 guint32 val;
3315                 
3316                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3317                 val = decode_value (p, &p);
3318                 *(float*)ji->data.target = *(float*)&val;
3319                 break;
3320         }
3321         case MONO_PATCH_INFO_R8: {
3322                 guint32 val [2];
3323                 guint64 v;
3324
3325                 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3326
3327                 val [0] = decode_value (p, &p);
3328                 val [1] = decode_value (p, &p);
3329                 v = ((guint64)val [1] << 32) | ((guint64)val [0]);
3330                 *(double*)ji->data.target = *(double*)&v;
3331                 break;
3332         }
3333         case MONO_PATCH_INFO_LDSTR:
3334                 image = load_image (aot_module, decode_value (p, &p), TRUE);
3335                 if (!image)
3336                         goto cleanup;
3337                 ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
3338                 break;
3339         case MONO_PATCH_INFO_RVA:
3340         case MONO_PATCH_INFO_DECLSEC:
3341         case MONO_PATCH_INFO_LDTOKEN:
3342         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3343                 /* Shared */
3344                 image = load_image (aot_module, decode_value (p, &p), TRUE);
3345                 if (!image)
3346                         goto cleanup;
3347                 ji->data.token = mono_jump_info_token_new (mp, image, decode_value (p, &p));
3348
3349                 ji->data.token->has_context = decode_value (p, &p);
3350                 if (ji->data.token->has_context) {
3351                         gboolean res = decode_generic_context (aot_module, &ji->data.token->context, p, &p);
3352                         if (!res)
3353                                 goto cleanup;
3354                 }
3355                 break;
3356         case MONO_PATCH_INFO_EXC_NAME:
3357                 ji->data.klass = decode_klass_ref (aot_module, p, &p);
3358                 if (!ji->data.klass)
3359                         goto cleanup;
3360                 ji->data.name = ji->data.klass->name;
3361                 break;
3362         case MONO_PATCH_INFO_METHOD_REL:
3363                 ji->data.offset = decode_value (p, &p);
3364                 break;
3365         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
3366         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
3367         case MONO_PATCH_INFO_GC_NURSERY_START:
3368         case MONO_PATCH_INFO_JIT_TLS_ID:
3369                 break;
3370         case MONO_PATCH_INFO_CASTCLASS_CACHE:
3371                 ji->data.index = decode_value (p, &p);
3372                 break;
3373         case MONO_PATCH_INFO_RGCTX_FETCH: {
3374                 gboolean res;
3375                 MonoJumpInfoRgctxEntry *entry;
3376                 guint32 offset, val;
3377                 guint8 *p2;
3378
3379                 offset = decode_value (p, &p);
3380                 val = decode_value (p, &p);
3381
3382                 entry = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3383                 p2 = aot_module->blob + offset;
3384                 entry->method = decode_resolve_method_ref (aot_module, p2, &p2);
3385                 entry->in_mrgctx = ((val & 1) > 0) ? TRUE : FALSE;
3386                 entry->info_type = (val >> 1) & 0xff;
3387                 entry->data = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3388                 entry->data->type = (val >> 9) & 0xff;
3389                 
3390                 res = decode_patch (aot_module, mp, entry->data, p, &p);
3391                 if (!res)
3392                         goto cleanup;
3393                 ji->data.rgctx_entry = entry;
3394                 break;
3395         }
3396         case MONO_PATCH_INFO_SEQ_POINT_INFO:
3397                 break;
3398         case MONO_PATCH_INFO_LLVM_IMT_TRAMPOLINE: {
3399                 MonoJumpInfoImtTramp *imt_tramp = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoImtTramp));
3400
3401                 imt_tramp->method = decode_resolve_method_ref (aot_module, p, &p);
3402                 imt_tramp->vt_offset = decode_value (p, &p);
3403                 
3404                 ji->data.imt_tramp = imt_tramp;
3405                 break;
3406         }
3407         case MONO_PATCH_INFO_SIGNATURE:
3408                 ji->data.target = decode_signature (aot_module, p, &p);
3409                 break;
3410         case MONO_PATCH_INFO_TLS_OFFSET:
3411                 ji->data.target = GINT_TO_POINTER (decode_value (p, &p));
3412                 break;
3413         case MONO_PATCH_INFO_GSHAREDVT_CALL: {
3414                 MonoJumpInfoGSharedVtCall *info = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoGSharedVtCall));
3415                 info->sig = decode_signature (aot_module, p, &p);
3416                 g_assert (info->sig);
3417                 info->method = decode_resolve_method_ref (aot_module, p, &p);
3418                 g_assert (info->method);
3419
3420                 ji->data.target = info;
3421                 break;
3422         }
3423         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
3424                 MonoGSharedVtMethodInfo *info = mono_mempool_alloc0 (mp, sizeof (MonoGSharedVtMethodInfo));
3425                 int i;
3426                 
3427                 info->method = decode_resolve_method_ref (aot_module, p, &p);
3428                 g_assert (info->method);
3429                 info->num_entries = decode_value (p, &p);
3430                 info->count_entries = info->num_entries;
3431                 info->entries = mono_mempool_alloc0 (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->num_entries);
3432                 for (i = 0; i < info->num_entries; ++i) {
3433                         MonoRuntimeGenericContextInfoTemplate *template = &info->entries [i];
3434
3435                         template->info_type = decode_value (p, &p);
3436                         switch (mini_rgctx_info_type_to_patch_info_type (template->info_type)) {
3437                         case MONO_PATCH_INFO_CLASS: {
3438                                 MonoClass *klass = decode_klass_ref (aot_module, p, &p);
3439                                 if (!klass)
3440                                         goto cleanup;
3441                                 template->data = &klass->byval_arg;
3442                                 break;
3443                         }
3444                         case MONO_PATCH_INFO_FIELD:
3445                                 template->data = decode_field_info (aot_module, p, &p);
3446                                 if (!template->data)
3447                                         goto cleanup;
3448                                 break;
3449                         default:
3450                                 g_assert_not_reached ();
3451                                 break;
3452                         }
3453                 }
3454                 ji->data.target = info;
3455                 break;
3456         }
3457         case MONO_PATCH_INFO_LDSTR_LIT: {
3458                 int len = decode_value (p, &p);
3459                 char *s;
3460
3461                 s = mono_mempool_alloc0 (mp, len + 1);
3462                 memcpy (s, p, len + 1);
3463                 p += len + 1;
3464
3465                 ji->data.target = s;
3466                 break;
3467         }
3468         case MONO_PATCH_INFO_VIRT_METHOD: {
3469                 MonoJumpInfoVirtMethod *info = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoVirtMethod));
3470
3471                 info->klass = decode_klass_ref (aot_module, p, &p);
3472                 g_assert (info->klass);
3473                 info->method = decode_resolve_method_ref (aot_module, p, &p);
3474                 g_assert (info->method);
3475
3476                 ji->data.target = info;
3477                 break;
3478         }
3479         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
3480                 break;
3481         default:
3482                 g_warning ("unhandled type %d", ji->type);
3483                 g_assert_not_reached ();
3484         }
3485
3486         *endbuf = p;
3487
3488         return TRUE;
3489
3490  cleanup:
3491         return FALSE;
3492 }
3493
3494 static MonoJumpInfo*
3495 load_patch_info (MonoAotModule *aot_module, MonoMemPool *mp, int n_patches,
3496                                  gboolean llvm, guint32 **got_slots,
3497                                  guint8 *buf, guint8 **endbuf)
3498 {
3499         MonoJumpInfo *patches;
3500         int pindex;
3501         guint8 *p;
3502         gpointer *got;
3503         guint32 *got_offsets;
3504
3505         p = buf;
3506
3507         if (llvm) {
3508                 got = aot_module->llvm_got;
3509                 got_offsets = aot_module->info.llvm_got_info_offsets;
3510         } else {
3511                 got = aot_module->got;
3512                 got_offsets = aot_module->info.got_info_offsets;
3513         }
3514
3515         patches = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo) * n_patches);
3516
3517         *got_slots = g_malloc (sizeof (guint32) * n_patches);
3518
3519         for (pindex = 0; pindex < n_patches; ++pindex) {
3520                 MonoJumpInfo *ji = &patches [pindex];
3521                 guint8 *shared_p;
3522                 gboolean res;
3523                 guint32 got_offset;
3524
3525                 got_offset = decode_value (p, &p);
3526
3527                 shared_p = aot_module->blob + mono_aot_get_offset (got_offsets, got_offset);
3528
3529                 ji->type = decode_value (shared_p, &shared_p);
3530
3531                 /* See load_method () for SFLDA */
3532                 if (got [got_offset] && ji->type != MONO_PATCH_INFO_SFLDA) {
3533                         /* Already loaded */
3534                 } else {
3535                         res = decode_patch (aot_module, mp, ji, shared_p, &shared_p);
3536                         if (!res)
3537                                 goto cleanup;
3538                 }
3539
3540                 (*got_slots) [pindex] = got_offset;
3541         }
3542
3543         *endbuf = p;
3544         return patches;
3545
3546  cleanup:
3547         g_free (*got_slots);
3548         *got_slots = NULL;
3549
3550         return NULL;
3551 }
3552
3553 static void
3554 register_jump_target_got_slot (MonoDomain *domain, MonoMethod *method, gpointer *got_slot)
3555 {
3556         /*
3557          * Jump addresses cannot be patched by the trampoline code since it
3558          * does not have access to the caller's address. Instead, we collect
3559          * the addresses of the GOT slots pointing to a method, and patch
3560          * them after the method has been compiled.
3561          */
3562         MonoJitDomainInfo *info = domain_jit_info (domain);
3563         GSList *list;
3564                 
3565         mono_domain_lock (domain);
3566         if (!info->jump_target_got_slot_hash)
3567                 info->jump_target_got_slot_hash = g_hash_table_new (NULL, NULL);
3568         list = g_hash_table_lookup (info->jump_target_got_slot_hash, method);
3569         list = g_slist_prepend (list, got_slot);
3570         g_hash_table_insert (info->jump_target_got_slot_hash, method, list);
3571         mono_domain_unlock (domain);
3572 }
3573
3574 /*
3575  * load_method:
3576  *
3577  *   Load the method identified by METHOD_INDEX from the AOT image. Return a
3578  * pointer to the native code of the method, or NULL if not found.
3579  * METHOD might not be set if the caller only has the image/token info.
3580  */
3581 static gpointer
3582 load_method (MonoDomain *domain, MonoAotModule *amodule, MonoImage *image, MonoMethod *method, guint32 token, int method_index)
3583 {
3584         MonoClass *klass;
3585         gboolean from_plt = method == NULL;
3586         MonoJitInfo *jinfo = NULL;
3587         guint8 *code = NULL, *info;
3588         gboolean res;
3589
3590         if (mono_profiler_get_events () & MONO_PROFILE_ENTER_LEAVE) {
3591                 if (mono_aot_only)
3592                         /* The caller cannot handle this */
3593                         g_assert_not_reached ();
3594                 return NULL;
3595         }
3596
3597         if (domain != mono_get_root_domain ())
3598                 /* Non shared AOT code can't be used in other appdomains */
3599                 return NULL;
3600
3601         if (amodule->out_of_date)
3602                 return NULL;
3603
3604         if (!code) {
3605                 if (amodule->methods [method_index] == GINT_TO_POINTER (-1)) {
3606                         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3607                                 char *full_name;
3608
3609                                 if (!method)
3610                                         method = mono_get_method (image, token, NULL);
3611                                 full_name = mono_method_full_name (method, TRUE);
3612                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: NOT FOUND: %s.", full_name);
3613                                 g_free (full_name);
3614                         }
3615                         return NULL;
3616                 }
3617         }
3618
3619         code = amodule->methods [method_index];
3620
3621         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
3622
3623         if (!amodule->methods_loaded) {
3624                 amodule_lock (amodule);
3625                 if (!amodule->methods_loaded) {
3626                         guint32 *loaded;
3627
3628                         loaded = g_new0 (guint32, amodule->info.nmethods / 32 + 1);
3629                         mono_memory_barrier ();
3630                         amodule->methods_loaded = loaded;
3631                 }
3632                 amodule_unlock (amodule);
3633         }
3634
3635         if ((amodule->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
3636                 return code;
3637
3638         if (mono_last_aot_method != -1) {
3639                 if (mono_jit_stats.methods_aot >= mono_last_aot_method)
3640                                 return NULL;
3641                 else if (mono_jit_stats.methods_aot == mono_last_aot_method - 1) {
3642                         if (!method)
3643                                 method = mono_get_method (image, token, NULL);
3644                         if (method) {
3645                                 char *name = mono_method_full_name (method, TRUE);
3646                                 g_print ("LAST AOT METHOD: %s.\n", name);
3647                                 g_free (name);
3648                         } else {
3649                                 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
3650                         }
3651                 }
3652         }
3653
3654         res = init_method (amodule, method_index, method, &klass);
3655         if (!res)
3656                 goto cleanup;
3657
3658         if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3659                 char *full_name;
3660
3661                 if (!method)
3662                         method = mono_get_method (image, token, NULL);
3663
3664                 full_name = mono_method_full_name (method, TRUE);
3665
3666                 if (!jinfo)
3667                         jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3668
3669                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
3670                 g_free (full_name);
3671         }
3672
3673         amodule_lock (amodule);
3674
3675         InterlockedIncrement (&mono_jit_stats.methods_aot);
3676
3677         amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
3678
3679         init_plt (amodule);
3680
3681         if (method && method->wrapper_type)
3682                 g_hash_table_insert (amodule->method_to_code, method, code);
3683
3684         amodule_unlock (amodule);
3685
3686         if (mono_profiler_get_events () & MONO_PROFILE_JIT_COMPILATION) {
3687                 MonoJitInfo *jinfo;
3688
3689                 if (!method) {
3690                         method = mono_get_method (amodule->assembly->image, token, NULL);
3691                         g_assert (method);
3692                 }
3693                 mono_profiler_method_jit (method);
3694                 jinfo = mono_jit_info_table_find (domain, (char*)code);
3695                 g_assert (jinfo);
3696                 mono_profiler_method_end_jit (method, jinfo, MONO_PROFILE_OK);
3697         }
3698
3699         if (from_plt && klass && !klass->generic_container)
3700                 mono_runtime_class_init (mono_class_vtable (domain, klass));
3701
3702         return code;
3703
3704  cleanup:
3705         if (jinfo)
3706                 g_free (jinfo);
3707
3708         return NULL;
3709 }
3710
3711 static guint32
3712 find_aot_method_in_amodule (MonoAotModule *amodule, MonoMethod *method, guint32 hash_full)
3713 {
3714         guint32 table_size, entry_size, hash;
3715         guint32 *table, *entry;
3716         guint32 index;
3717         static guint32 n_extra_decodes;
3718
3719         if (!amodule || amodule->out_of_date)
3720                 return 0xffffff;
3721
3722         table_size = amodule->extra_method_table [0];
3723         hash = hash_full % table_size;
3724         table = amodule->extra_method_table + 1;
3725         entry_size = 3;
3726
3727         entry = &table [hash * entry_size];
3728
3729         if (entry [0] == 0)
3730                 return 0xffffff;
3731
3732         index = 0xffffff;
3733         while (TRUE) {
3734                 guint32 key = entry [0];
3735                 guint32 value = entry [1];
3736                 guint32 next = entry [entry_size - 1];
3737                 MonoMethod *m;
3738                 guint8 *p, *orig_p;
3739
3740                 p = amodule->blob + key;
3741                 orig_p = p;
3742
3743                 amodule_lock (amodule);
3744                 if (!amodule->method_ref_to_method)
3745                         amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
3746                 m = g_hash_table_lookup (amodule->method_ref_to_method, p);
3747                 amodule_unlock (amodule);
3748                 if (!m) {
3749                         m = decode_resolve_method_ref_with_target (amodule, method, p, &p);
3750                         /*
3751                          * Can't catche runtime invoke wrappers since it would break
3752                          * the check in decode_method_ref_with_target ().
3753                          */
3754                         if (m && m->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
3755                                 amodule_lock (amodule);
3756                                 g_hash_table_insert (amodule->method_ref_to_method, orig_p, m);
3757                                 amodule_unlock (amodule);
3758                         }
3759                 }
3760                 if (m == method) {
3761                         index = value;
3762                         break;
3763                 }
3764
3765                 /* Special case: wrappers of shared generic methods */
3766                 if (m && method->wrapper_type && m->wrapper_type == m->wrapper_type &&
3767                         method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
3768                         MonoMethod *w1 = mono_marshal_method_from_wrapper (method);
3769                         MonoMethod *w2 = mono_marshal_method_from_wrapper (m);
3770
3771                         if (w1->is_inflated && ((MonoMethodInflated *)w1)->declaring == w2) {
3772                                 index = value;
3773                                 break;
3774                         }
3775                 }
3776
3777                 /* Methods decoded needlessly */
3778                 if (m) {
3779                         //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
3780                         n_extra_decodes ++;
3781                 }
3782
3783                 if (next != 0)
3784                         entry = &table [next * entry_size];
3785                 else
3786                         break;
3787         }
3788
3789         return index;
3790 }
3791
3792 static void
3793 add_module_cb (gpointer key, gpointer value, gpointer user_data)
3794 {
3795         g_ptr_array_add ((GPtrArray*)user_data, value);
3796 }
3797
3798 /*
3799  * find_aot_method:
3800  *
3801  *   Try finding METHOD in the extra_method table in all AOT images.
3802  * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
3803  * module where the method was found.
3804  */
3805 static guint32
3806 find_aot_method (MonoMethod *method, MonoAotModule **out_amodule)
3807 {
3808         guint32 index;
3809         GPtrArray *modules;
3810         int i;
3811         guint32 hash = mono_aot_method_hash (method);
3812
3813         /* Try the method's module first */
3814         *out_amodule = method->klass->image->aot_module;
3815         index = find_aot_method_in_amodule (method->klass->image->aot_module, method, hash);
3816         if (index != 0xffffff)
3817                 return index;
3818
3819         /* 
3820          * Try all other modules.
3821          * This is needed because generic instances klass->image points to the image
3822          * containing the generic definition, but the native code is generated to the
3823          * AOT image which contains the reference.
3824          */
3825
3826         /* Make a copy to avoid doing the search inside the aot lock */
3827         modules = g_ptr_array_new ();
3828         mono_aot_lock ();
3829         g_hash_table_foreach (aot_modules, add_module_cb, modules);
3830         mono_aot_unlock ();
3831
3832         index = 0xffffff;
3833         for (i = 0; i < modules->len; ++i) {
3834                 MonoAotModule *amodule = g_ptr_array_index (modules, i);
3835
3836                 if (amodule != method->klass->image->aot_module)
3837                         index = find_aot_method_in_amodule (amodule, method, hash);
3838                 if (index != 0xffffff) {
3839                         *out_amodule = amodule;
3840                         break;
3841                 }
3842         }
3843         
3844         g_ptr_array_free (modules, TRUE);
3845
3846         return index;
3847 }
3848
3849 guint32
3850 mono_aot_find_method_index (MonoMethod *method)
3851 {
3852         MonoAotModule *out_amodule;
3853         return find_aot_method (method, &out_amodule);
3854 }
3855
3856 static gboolean
3857 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass **klass)
3858 {
3859         MonoDomain *domain = mono_domain_get ();
3860         MonoMemPool *mp;
3861         int pindex, n_patches;
3862         guint8 *p;
3863         MonoJitInfo *jinfo = NULL;
3864         guint8 *code, *info;
3865
3866         code = amodule->methods [method_index];
3867         info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
3868
3869         p = info;
3870
3871         if (method) {
3872                 *klass = method->klass;
3873                 decode_klass_ref (amodule, p, &p);
3874         } else {
3875                 *klass = decode_klass_ref (amodule, p, &p);
3876         }
3877
3878         n_patches = decode_value (p, &p);
3879
3880         if (n_patches) {
3881                 MonoJumpInfo *patches;
3882                 guint32 *got_slots;
3883                 gboolean llvm;
3884                 gpointer *got;
3885
3886                 mp = mono_mempool_new ();
3887
3888                 if ((gpointer)code >= amodule->info.jit_code_start && (gpointer)code <= amodule->info.jit_code_end) {
3889                         llvm = FALSE;
3890                         got = amodule->got;
3891                 } else {
3892                         llvm = TRUE;
3893                         got = amodule->llvm_got;
3894                         g_assert (got);
3895                 }
3896
3897                 patches = load_patch_info (amodule, mp, n_patches, llvm, &got_slots, p, &p);
3898                 if (patches == NULL)
3899                         goto cleanup;
3900
3901                 for (pindex = 0; pindex < n_patches; ++pindex) {
3902                         MonoJumpInfo *ji = &patches [pindex];
3903                         gpointer addr;
3904
3905                         /*
3906                          * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
3907                          * been initialized by load_method () for a static cctor before the cctor has
3908                          * finished executing (#23242).
3909                          */
3910                         if (!got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
3911                                 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE);
3912                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
3913                                         addr = mono_create_ftnptr (domain, addr);
3914                                 mono_memory_barrier ();
3915                                 got [got_slots [pindex]] = addr;
3916                                 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
3917                                         register_jump_target_got_slot (domain, ji->data.method, &(got [got_slots [pindex]]));
3918                         }
3919                         ji->type = MONO_PATCH_INFO_NONE;
3920                 }
3921
3922                 g_free (got_slots);
3923
3924                 mono_mempool_destroy (mp);
3925         }
3926
3927         if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
3928                 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
3929
3930         return TRUE;
3931
3932  cleanup:
3933         if (jinfo)
3934                 g_free (jinfo);
3935
3936         return FALSE;
3937 }
3938
3939 /*
3940  * mono_aot_get_method:
3941  *
3942  *   Return a pointer to the AOTed native code for METHOD if it can be found,
3943  * NULL otherwise.
3944  * On platforms with function pointers, this doesn't return a function pointer.
3945  */
3946 gpointer
3947 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
3948 {
3949         MonoClass *klass = method->klass;
3950         guint32 method_index;
3951         MonoAotModule *amodule = klass->image->aot_module;
3952         guint8 *code;
3953
3954         if (enable_aot_cache && !amodule && domain->entry_assembly && klass->image == mono_defaults.corlib) {
3955                 /* This cannot be AOTed during startup, so do it now */
3956                 if (!mscorlib_aot_loaded) {
3957                         mscorlib_aot_loaded = TRUE;
3958                         load_aot_module (klass->image->assembly, NULL);
3959                         amodule = klass->image->aot_module;
3960                 }
3961         }
3962
3963         if (!amodule)
3964                 return NULL;
3965
3966         if (amodule->out_of_date)
3967                 return NULL;
3968
3969         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
3970                 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
3971                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
3972                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
3973                 return NULL;
3974
3975         /*
3976          * Use the original method instead of its invoke-with-check wrapper.
3977          * This is not a problem when using full-aot, since it doesn't support
3978          * remoting.
3979          */
3980         if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
3981                 return mono_aot_get_method (domain, mono_marshal_method_from_wrapper (method));
3982
3983         g_assert (klass->inited);
3984
3985         /* Find method index */
3986         method_index = 0xffffff;
3987         if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE)) {
3988                 /* 
3989                  * For generic methods, we store the fully shared instance in place of the
3990                  * original method.
3991                  */
3992                 method = mono_method_get_declaring_generic_method (method);
3993                 method_index = mono_metadata_token_index (method->token) - 1;
3994         } else if (method->is_inflated || !method->token) {
3995                 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
3996                 amodule_lock (amodule);
3997                 code = g_hash_table_lookup (amodule->method_to_code, method);
3998                 amodule_unlock (amodule);
3999                 if (code)
4000                         return code;
4001
4002                 method_index = find_aot_method (method, &amodule);
4003                 /*
4004                  * Special case the ICollection<T> wrappers for arrays, as they cannot
4005                  * be statically enumerated, and each wrapper ends up calling the same
4006                  * method in Array.
4007                  */
4008                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && method->klass->rank && strstr (method->name, "System.Collections.Generic")) {
4009                         MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4010
4011                         code = mono_aot_get_method (domain, m);
4012                         if (code)
4013                                 return code;
4014                 }
4015
4016                 /*
4017                  * Special case Array.GetGenericValueImpl which is a generic icall.
4018                  * Generic sharing currently can't handle it, but the icall returns data using
4019                  * an out parameter, so the managed-to-native wrappers can share the same code.
4020                  */
4021                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
4022                         MonoError error;
4023                         MonoMethod *m;
4024                         MonoGenericContext ctx;
4025                         MonoType *args [16];
4026
4027                         if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
4028                                 /* Avoid recursion */
4029                                 return NULL;
4030
4031                         m = mono_class_get_method_from_name (mono_defaults.array_class, "GetGenericValueImpl", 2);
4032                         g_assert (m);
4033
4034                         memset (&ctx, 0, sizeof (ctx));
4035                         args [0] = &mono_defaults.object_class->byval_arg;
4036                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4037
4038                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE);
4039                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4040
4041                         /* 
4042                          * Get the code for the <object> instantiation which should be emitted into
4043                          * the mscorlib aot image by the AOT compiler.
4044                          */
4045                         code = mono_aot_get_method (domain, m);
4046                         if (code)
4047                                 return code;
4048                 }
4049
4050                 /* Same for CompareExchange<T> and Exchange<T> */
4051                 /* Same for Volatile.Read<T>/Write<T> */
4052                 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass->image == mono_defaults.corlib && 
4053                         ((!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])) ||
4054                          (!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))) ||
4055                          (!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]))))) {
4056                         MonoError error;
4057                         MonoMethod *m;
4058                         MonoGenericContext ctx;
4059                         MonoType *args [16];
4060                         gpointer iter = NULL;
4061
4062                         while ((m = mono_class_get_methods (method->klass, &iter))) {
4063                                 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
4064                                         break;
4065                         }
4066                         g_assert (m);
4067
4068                         memset (&ctx, 0, sizeof (ctx));
4069                         args [0] = &mono_defaults.object_class->byval_arg;
4070                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4071
4072                         m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE);
4073                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4074
4075                         /* Avoid recursion */
4076                         if (method == m)
4077                                 return NULL;
4078
4079                         /* 
4080                          * Get the code for the <object> instantiation which should be emitted into
4081                          * the mscorlib aot image by the AOT compiler.
4082                          */
4083                         code = mono_aot_get_method (domain, m);
4084                         if (code)
4085                                 return code;
4086                 }
4087
4088                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
4089                         /* Partial sharing */
4090                         MonoMethod *shared;
4091
4092                         shared = mini_get_shared_method (method);
4093                         method_index = find_aot_method (shared, &amodule);
4094                         if (method_index != 0xffffff)
4095                                 method = shared;
4096                 }
4097
4098                 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
4099                         /* gsharedvt */
4100                         /* Use the all-vt shared method since this is what was AOTed */
4101                         method_index = find_aot_method (mini_get_shared_method_full (method, TRUE, TRUE), &amodule);
4102                         if (method_index != 0xffffff)
4103                                 method = mini_get_shared_method_full (method, TRUE, FALSE);
4104                 }
4105
4106                 if (method_index == 0xffffff) {
4107                         if (mono_aot_only && mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4108                                 char *full_name;
4109
4110                                 full_name = mono_method_full_name (method, TRUE);
4111                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.", full_name);
4112                                 g_free (full_name);
4113                         }
4114                         return NULL;
4115                 }
4116
4117                 if (method_index == 0xffffff)
4118                         return NULL;
4119
4120                 /* Needed by find_jit_info */
4121                 amodule_lock (amodule);
4122                 if (!amodule->extra_methods)
4123                         amodule->extra_methods = g_hash_table_new (NULL, NULL);
4124                 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), method);
4125                 amodule_unlock (amodule);
4126         } else {
4127                 /* Common case */
4128                 method_index = mono_metadata_token_index (method->token) - 1;
4129         }
4130
4131         return load_method (domain, amodule, klass->image, method, method->token, method_index);
4132 }
4133
4134 /**
4135  * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4136  * method.
4137  */
4138 gpointer
4139 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token)
4140 {
4141         MonoAotModule *aot_module = image->aot_module;
4142         int method_index;
4143
4144         if (!aot_module)
4145                 return NULL;
4146
4147         method_index = mono_metadata_token_index (token) - 1;
4148
4149         return load_method (domain, aot_module, image, NULL, token, method_index);
4150 }
4151
4152 typedef struct {
4153         guint8 *addr;
4154         gboolean res;
4155 } IsGotEntryUserData;
4156
4157 static void
4158 check_is_got_entry (gpointer key, gpointer value, gpointer user_data)
4159 {
4160         IsGotEntryUserData *data = (IsGotEntryUserData*)user_data;
4161         MonoAotModule *aot_module = (MonoAotModule*)value;
4162
4163         if (aot_module->got && (data->addr >= (guint8*)(aot_module->got)) && (data->addr < (guint8*)(aot_module->got + aot_module->info.got_size)))
4164                 data->res = TRUE;
4165 }
4166
4167 gboolean
4168 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
4169 {
4170         IsGotEntryUserData user_data;
4171
4172         if (!aot_modules)
4173                 return FALSE;
4174
4175         user_data.addr = addr;
4176         user_data.res = FALSE;
4177         mono_aot_lock ();
4178         g_hash_table_foreach (aot_modules, check_is_got_entry, &user_data);
4179         mono_aot_unlock ();
4180         
4181         return user_data.res;
4182 }
4183
4184 typedef struct {
4185         guint8 *addr;
4186         MonoAotModule *module;
4187 } FindAotModuleUserData;
4188
4189 static void
4190 find_aot_module_cb (gpointer key, gpointer value, gpointer user_data)
4191 {
4192         FindAotModuleUserData *data = (FindAotModuleUserData*)user_data;
4193         MonoAotModule *aot_module = (MonoAotModule*)value;
4194
4195         if (amodule_contains_code_addr (aot_module, data->addr))
4196                 data->module = aot_module;
4197 }
4198
4199 static inline MonoAotModule*
4200 find_aot_module (guint8 *code)
4201 {
4202         FindAotModuleUserData user_data;
4203
4204         if (!aot_modules)
4205                 return NULL;
4206
4207         /* Reading these need no locking */
4208         if (((gsize)code < aot_code_low_addr) || ((gsize)code > aot_code_high_addr))
4209                 return NULL;
4210
4211         user_data.addr = code;
4212         user_data.module = NULL;
4213                 
4214         mono_aot_lock ();
4215         g_hash_table_foreach (aot_modules, find_aot_module_cb, &user_data);
4216         mono_aot_unlock ();
4217         
4218         return user_data.module;
4219 }
4220
4221 void
4222 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
4223 {
4224         MonoAotModule *amodule;
4225
4226         /*
4227          * Since AOT code is only used in the root domain, 
4228          * mono_domain_get () != mono_get_root_domain () means the calling method
4229          * is AppDomain:InvokeInDomain, so this is the same check as in 
4230          * mono_method_same_domain () but without loading the metadata for the method.
4231          */
4232         if (mono_domain_get () == mono_get_root_domain ()) {
4233                 if (!got) {
4234                         amodule = find_aot_module (code);
4235                         if (amodule)
4236                                 got = amodule->got;
4237                 }
4238                 mono_arch_patch_plt_entry (plt_entry, got, regs, addr);
4239         }
4240 }
4241
4242 /*
4243  * mono_aot_plt_resolve:
4244  *
4245  *   This function is called by the entries in the PLT to resolve the actual method that
4246  * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4247  * Returns NULL if the something cannot be loaded.
4248  */
4249 gpointer
4250 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
4251 {
4252 #ifdef MONO_ARCH_AOT_SUPPORTED
4253         guint8 *p, *target, *plt_entry;
4254         MonoJumpInfo ji;
4255         MonoAotModule *module = (MonoAotModule*)aot_module;
4256         gboolean res, no_ftnptr = FALSE;
4257         MonoMemPool *mp;
4258         gboolean using_gsharedvt = FALSE;
4259
4260         //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4261
4262         p = &module->blob [plt_info_offset];
4263
4264         ji.type = decode_value (p, &p);
4265
4266         mp = mono_mempool_new_size (512);
4267         res = decode_patch (module, mp, &ji, p, &p);
4268
4269         if (!res) {
4270                 mono_mempool_destroy (mp);
4271                 return NULL;
4272         }
4273
4274 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4275         using_gsharedvt = TRUE;
4276 #endif
4277
4278         /* 
4279          * Avoid calling resolve_patch_target in the full-aot case if possible, since
4280          * it would create a trampoline, and we don't need that.
4281          * We could do this only if the method does not need the special handling
4282          * in mono_magic_trampoline ().
4283          */
4284         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) &&
4285                 !mono_method_needs_static_rgctx_invoke (ji.data.method, FALSE) && !using_gsharedvt) {
4286                 target = mono_jit_compile_method (ji.data.method);
4287                 no_ftnptr = TRUE;
4288         } else {
4289                 target = mono_resolve_patch_target (NULL, mono_domain_get (), NULL, &ji, TRUE);
4290         }
4291
4292         /*
4293          * The trampoline expects us to return a function descriptor on platforms which use
4294          * it, but resolve_patch_target returns a direct function pointer for some type of
4295          * patches, so have to translate between the two.
4296          * FIXME: Clean this up, but how ?
4297          */
4298         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) {
4299                 /* These should already have a function descriptor */
4300 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4301                 /* Our function descriptors have a 0 environment, gcc created ones don't */
4302                 if (ji.type != MONO_PATCH_INFO_INTERNAL_METHOD && ji.type != MONO_PATCH_INFO_JIT_ICALL_ADDR && ji.type != MONO_PATCH_INFO_ICALL_ADDR)
4303                         g_assert (((gpointer*)target) [2] == 0);
4304 #endif
4305                 /* Empty */
4306         } else if (!no_ftnptr) {
4307 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4308                 g_assert (((gpointer*)target) [2] != 0);
4309 #endif
4310                 target = mono_create_ftnptr (mono_domain_get (), target);
4311         }
4312
4313         mono_mempool_destroy (mp);
4314
4315         /* Patch the PLT entry with target which might be the actual method not a trampoline */
4316         plt_entry = mono_aot_get_plt_entry (code);
4317         g_assert (plt_entry);
4318         mono_aot_patch_plt_entry (code, plt_entry, module->got, NULL, target);
4319
4320         return target;
4321 #else
4322         g_assert_not_reached ();
4323         return NULL;
4324 #endif
4325 }
4326
4327 /**
4328  * init_plt:
4329  *
4330  *   Initialize the PLT table of the AOT module. Called lazily when the first AOT
4331  * method in the module is loaded to avoid committing memory by writing to it.
4332  * LOCKING: Assumes the AMODULE lock is held.
4333  */
4334 static void
4335 init_plt (MonoAotModule *amodule)
4336 {
4337         int i;
4338         gpointer tramp;
4339
4340         if (amodule->plt_inited)
4341                 return;
4342
4343         tramp = mono_create_specific_trampoline (amodule, MONO_TRAMPOLINE_AOT_PLT, mono_get_root_domain (), NULL);
4344
4345         /*
4346          * Initialize the PLT entries in the GOT to point to the default targets.
4347          */
4348
4349         tramp = mono_create_ftnptr (mono_domain_get (), tramp);
4350          for (i = 1; i < amodule->info.plt_size; ++i)
4351                  /* All the default entries point to the AOT trampoline */
4352                  ((gpointer*)amodule->got)[amodule->info.plt_got_offset_base + i] = tramp;
4353
4354         amodule->plt_inited = TRUE;
4355 }
4356
4357 /*
4358  * mono_aot_get_plt_entry:
4359  *
4360  *   Return the address of the PLT entry called by the code at CODE if exists.
4361  */
4362 guint8*
4363 mono_aot_get_plt_entry (guint8 *code)
4364 {
4365         MonoAotModule *amodule = find_aot_module (code);
4366         guint8 *target = NULL;
4367
4368         if (!amodule)
4369                 return NULL;
4370
4371 #ifdef TARGET_ARM
4372         if (is_thumb_code (amodule, code))
4373                 return mono_arm_get_thumb_plt_entry (code);
4374 #endif
4375
4376 #ifdef MONO_ARCH_AOT_SUPPORTED
4377         target = mono_arch_get_call_target (code);
4378 #else
4379         g_assert_not_reached ();
4380 #endif
4381
4382 #ifdef MONOTOUCH
4383         while (target != NULL) {
4384                 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4385                         return target;
4386                 
4387                 // Add 4 since mono_arch_get_call_target assumes we're passing
4388                 // the instruction after the actual branch instruction.
4389                 target = mono_arch_get_call_target (target + 4);
4390         }
4391
4392         return NULL;
4393 #else
4394         if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
4395                 return target;
4396         else
4397                 return NULL;
4398 #endif
4399 }
4400
4401 /*
4402  * mono_aot_get_plt_info_offset:
4403  *
4404  *   Return the PLT info offset belonging to the plt entry called by CODE.
4405  */
4406 guint32
4407 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
4408 {
4409         guint8 *plt_entry = mono_aot_get_plt_entry (code);
4410
4411         g_assert (plt_entry);
4412
4413         /* The offset is embedded inside the code after the plt entry */
4414 #ifdef MONO_ARCH_AOT_SUPPORTED
4415         return mono_arch_get_plt_info_offset (plt_entry, regs, code);
4416 #else
4417         g_assert_not_reached ();
4418         return 0;
4419 #endif
4420 }
4421
4422 static gpointer
4423 mono_create_ftnptr_malloc (guint8 *code)
4424 {
4425 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4426         MonoPPCFunctionDescriptor *ftnptr = g_malloc0 (sizeof (MonoPPCFunctionDescriptor));
4427
4428         ftnptr->code = code;
4429         ftnptr->toc = NULL;
4430         ftnptr->env = NULL;
4431
4432         return ftnptr;
4433 #else
4434         return code;
4435 #endif
4436 }
4437
4438 /*
4439  * mono_aot_register_jit_icall:
4440  *
4441  *   Register a JIT icall which is called by trampolines in full-aot mode. This should
4442  * be called from mono_arch_init () during startup.
4443  */
4444 void
4445 mono_aot_register_jit_icall (const char *name, gpointer addr)
4446 {
4447         /* No need for locking */
4448         if (!aot_jit_icall_hash)
4449                 aot_jit_icall_hash = g_hash_table_new (g_str_hash, g_str_equal);
4450         g_hash_table_insert (aot_jit_icall_hash, (char*)name, addr);
4451 }
4452
4453 /*
4454  * load_function_full:
4455  *
4456  *   Load the function named NAME from the aot image. 
4457  */
4458 static gpointer
4459 load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **out_tinfo)
4460 {
4461         char *symbol;
4462         guint8 *p;
4463         int n_patches, pindex;
4464         MonoMemPool *mp;
4465         gpointer code;
4466         guint32 info_offset;
4467
4468         /* Load the code */
4469
4470         symbol = g_strdup_printf ("%s", name);
4471         find_symbol (amodule->sofile, amodule->globals, symbol, (gpointer *)&code);
4472         g_free (symbol);
4473         if (!code)
4474                 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name, amodule->aot_name);
4475
4476         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND function '%s' in AOT file '%s'.", name, amodule->aot_name);
4477
4478         /* Load info */
4479
4480         symbol = g_strdup_printf ("%s_p", name);
4481         find_symbol (amodule->sofile, amodule->globals, symbol, (gpointer *)&p);
4482         g_free (symbol);
4483         if (!p)
4484                 /* Nothing to patch */
4485                 return code;
4486
4487         info_offset = *(guint32*)p;
4488         if (out_tinfo) {
4489                 MonoTrampInfo *tinfo;
4490                 guint32 code_size, uw_info_len, uw_offset;
4491                 guint8 *uw_info;
4492                 /* Construct a MonoTrampInfo from the data in the AOT image */
4493
4494                 p += sizeof (guint32);
4495                 code_size = *(guint32*)p;
4496                 p += sizeof (guint32);
4497                 uw_offset = *(guint32*)p;
4498                 uw_info = amodule->unwind_info + uw_offset;
4499                 uw_info_len = decode_value (uw_info, &uw_info);
4500
4501                 tinfo = g_new0 (MonoTrampInfo, 1);
4502                 tinfo->code = code;
4503                 tinfo->code_size = code_size;
4504                 tinfo->uw_info = uw_info;
4505                 tinfo->uw_info_len = uw_info_len;
4506
4507                 *out_tinfo = tinfo;
4508         }
4509
4510         p = amodule->blob + info_offset;
4511
4512         /* Similar to mono_aot_load_method () */
4513
4514         n_patches = decode_value (p, &p);
4515
4516         if (n_patches) {
4517                 MonoJumpInfo *patches;
4518                 guint32 *got_slots;
4519
4520                 mp = mono_mempool_new ();
4521
4522                 patches = load_patch_info (amodule, mp, n_patches, FALSE, &got_slots, p, &p);
4523                 g_assert (patches);
4524
4525                 for (pindex = 0; pindex < n_patches; ++pindex) {
4526                         MonoJumpInfo *ji = &patches [pindex];
4527                         gpointer target;
4528
4529                         if (amodule->got [got_slots [pindex]])
4530                                 continue;
4531
4532                         /*
4533                          * When this code is executed, the runtime may not be initalized yet, so
4534                          * resolve the patch info by hand.
4535                          */
4536                         if (ji->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
4537                                 if (!strcmp (ji->data.name, "mono_get_lmf_addr")) {
4538                                         target = mono_get_lmf_addr;
4539                                 } else if (!strcmp (ji->data.name, "mono_thread_force_interruption_checkpoint")) {
4540                                         target = mono_thread_force_interruption_checkpoint;
4541                                 } else if (!strcmp (ji->data.name, "mono_exception_from_token")) {
4542                                         target = mono_exception_from_token;
4543                                 } else if (!strcmp (ji->data.name, "mono_throw_exception")) {
4544                                         target = mono_get_throw_exception ();
4545                                 } else if (strstr (ji->data.name, "trampoline_func_") == ji->data.name) {
4546                                         int tramp_type2 = atoi (ji->data.name + strlen ("trampoline_func_"));
4547                                         target = (gpointer)mono_get_trampoline_func (tramp_type2);
4548                                 } else if (strstr (ji->data.name, "specific_trampoline_lazy_fetch_") == ji->data.name) {
4549                                         /* atoll is needed because the the offset is unsigned */
4550                                         guint32 slot;
4551                                         int res;
4552
4553                                         res = sscanf (ji->data.name, "specific_trampoline_lazy_fetch_%u", &slot);
4554                                         g_assert (res == 1);
4555                                         target = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
4556                                         target = mono_create_ftnptr_malloc (target);
4557                                 } else if (!strcmp (ji->data.name, "mono_thread_get_and_clear_pending_exception")) {
4558                                         target = mono_thread_get_and_clear_pending_exception;
4559                                 } else if (!strcmp (ji->data.name, "debugger_agent_single_step_from_context")) {
4560                                         target = debugger_agent_single_step_from_context;
4561                                 } else if (!strcmp (ji->data.name, "debugger_agent_breakpoint_from_context")) {
4562                                         target = debugger_agent_breakpoint_from_context;
4563                                 } else if (strstr (ji->data.name, "generic_trampoline_")) {
4564                                         target = mono_aot_get_trampoline (ji->data.name);
4565                                 } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) {
4566                                         /* Registered by mono_arch_init () */
4567                                         target = g_hash_table_lookup (aot_jit_icall_hash, ji->data.name);
4568                                 } else {
4569                                         fprintf (stderr, "Unknown relocation '%s'\n", ji->data.name);
4570                                         g_assert_not_reached ();
4571                                         target = NULL;
4572                                 }
4573                         } else {
4574                                 /* Hopefully the code doesn't have patches which need method or 
4575                                  * domain to be set.
4576                                  */
4577                                 target = mono_resolve_patch_target (NULL, NULL, code, ji, FALSE);
4578                                 g_assert (target);
4579                         }
4580
4581                         amodule->got [got_slots [pindex]] = target;
4582                 }
4583
4584                 g_free (got_slots);
4585
4586                 mono_mempool_destroy (mp);
4587         }
4588
4589         return code;
4590 }
4591
4592 static gpointer
4593 load_function (MonoAotModule *amodule, const char *name)
4594 {
4595         return load_function_full (amodule, name, NULL);
4596 }
4597
4598 static MonoAotModule*
4599 get_mscorlib_aot_module (void)
4600 {
4601         MonoImage *image;
4602         MonoAotModule *amodule;
4603
4604         image = mono_defaults.corlib;
4605         if (image)
4606                 amodule = image->aot_module;
4607         else
4608                 amodule = mscorlib_aot_module;
4609         g_assert (amodule);
4610         return amodule;
4611 }
4612
4613 /*
4614  * Return the trampoline identified by NAME from the mscorlib AOT file.
4615  * On ppc64, this returns a function descriptor.
4616  */
4617 gpointer
4618 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
4619 {
4620         MonoAotModule *amodule = get_mscorlib_aot_module ();
4621
4622         return mono_create_ftnptr_malloc (load_function_full (amodule, name, out_tinfo));
4623 }
4624
4625 gpointer
4626 mono_aot_get_trampoline (const char *name)
4627 {
4628         MonoTrampInfo *out_tinfo;
4629         gpointer code;
4630
4631         code =  mono_aot_get_trampoline_full (name, &out_tinfo);
4632         mono_tramp_info_register (out_tinfo, NULL);
4633
4634         return code;
4635 }
4636
4637 static gpointer
4638 read_unwind_info (MonoAotModule *amodule, MonoTrampInfo *info, const char *symbol_name)
4639 {
4640         gpointer symbol_addr;
4641         guint32 uw_offset, uw_info_len;
4642         guint8 *uw_info;
4643
4644         find_symbol (amodule->sofile, amodule->globals, symbol_name, &symbol_addr);
4645
4646         if (!symbol_addr)
4647                 return NULL;
4648
4649         uw_offset = *(guint32*)symbol_addr;
4650         uw_info = amodule->unwind_info + uw_offset;
4651         uw_info_len = decode_value (uw_info, &uw_info);
4652
4653         info->uw_info = uw_info;
4654         info->uw_info_len = uw_info_len;
4655
4656         /* If successful return the address of the following data */
4657         return (guint32*)symbol_addr + 1;
4658 }
4659
4660 #ifdef MONOTOUCH
4661 #include <mach/mach.h>
4662
4663 static TrampolinePage* trampoline_pages [MONO_AOT_TRAMP_NUM];
4664
4665 static void
4666 read_page_trampoline_uwinfo (MonoTrampInfo *info, int tramp_type, gboolean is_generic)
4667 {
4668         char symbol_name [128];
4669
4670         if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
4671                 sprintf (symbol_name, "specific_trampolines_page_%s_p", is_generic ? "gen" : "sp");
4672         else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
4673                 sprintf (symbol_name, "rgctx_trampolines_page_%s_p", is_generic ? "gen" : "sp");
4674         else if (tramp_type == MONO_AOT_TRAMP_IMT_THUNK)
4675                 sprintf (symbol_name, "imt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
4676         else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
4677                 sprintf (symbol_name, "gsharedvt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
4678         else
4679                 g_assert_not_reached ();
4680
4681         read_unwind_info (mono_defaults.corlib->aot_module, info, symbol_name);
4682 }
4683
4684 static unsigned char*
4685 get_new_trampoline_from_page (int tramp_type)
4686 {
4687         MonoAotModule *amodule;
4688         MonoImage *image;
4689         TrampolinePage *page;
4690         int count;
4691         void *tpage;
4692         vm_address_t addr, taddr;
4693         kern_return_t ret;
4694         vm_prot_t prot, max_prot;
4695         int psize, specific_trampoline_size;
4696         unsigned char *code;
4697
4698         specific_trampoline_size = 2 * sizeof (gpointer);
4699
4700         mono_aot_page_lock ();
4701         page = trampoline_pages [tramp_type];
4702         if (page && page->trampolines < page->trampolines_end) {
4703                 code = page->trampolines;
4704                 page->trampolines += specific_trampoline_size;
4705                 mono_aot_page_unlock ();
4706                 return code;
4707         }
4708         mono_aot_page_unlock ();
4709         /* the trampoline template page is in the mscorlib module */
4710         image = mono_defaults.corlib;
4711         g_assert (image);
4712
4713         psize = MONO_AOT_TRAMP_PAGE_SIZE;
4714
4715         amodule = image->aot_module;
4716         g_assert (amodule);
4717
4718         if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
4719                 tpage = load_function (amodule, "specific_trampolines_page");
4720         else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
4721                 tpage = load_function (amodule, "rgctx_trampolines_page");
4722         else if (tramp_type == MONO_AOT_TRAMP_IMT_THUNK)
4723                 tpage = load_function (amodule, "imt_trampolines_page");
4724         else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
4725                 tpage = load_function (amodule, "gsharedvt_arg_trampolines_page");
4726         else
4727                 g_error ("Incorrect tramp type for trampolines page");
4728         g_assert (tpage);
4729         /*g_warning ("loaded trampolines page at %x", tpage);*/
4730
4731         /* avoid the unlikely case of looping forever */
4732         count = 40;
4733         page = NULL;
4734         while (page == NULL && count-- > 0) {
4735                 MonoTrampInfo *gen_info, *sp_info;
4736
4737                 addr = 0;
4738                 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
4739                  * while the second will contain the trampolines.
4740                  */
4741                 ret = vm_allocate (mach_task_self (), &addr, psize * 2, VM_FLAGS_ANYWHERE);
4742                 if (ret != KERN_SUCCESS) {
4743                         g_error ("Cannot allocate memory for trampolines: %d", ret);
4744                         break;
4745                 }
4746                 /*g_warning ("allocated trampoline double page at %x", addr);*/
4747                 /* replace the second page with a remapped trampoline page */
4748                 taddr = addr + psize;
4749                 vm_deallocate (mach_task_self (), taddr, psize);
4750                 ret = vm_remap (mach_task_self (), &taddr, psize, 0, FALSE, mach_task_self(), (vm_address_t)tpage, FALSE, &prot, &max_prot, VM_INHERIT_SHARE);
4751                 if (ret != KERN_SUCCESS) {
4752                         /* someone else got the page, try again  */
4753                         vm_deallocate (mach_task_self (), addr, psize);
4754                         continue;
4755                 }
4756                 /*g_warning ("remapped trampoline page at %x", taddr);*/
4757
4758                 mono_aot_page_lock ();
4759                 page = trampoline_pages [tramp_type];
4760                 /* some other thread already allocated, so use that to avoid wasting memory */
4761                 if (page && page->trampolines < page->trampolines_end) {
4762                         code = page->trampolines;
4763                         page->trampolines += specific_trampoline_size;
4764                         mono_aot_page_unlock ();
4765                         vm_deallocate (mach_task_self (), addr, psize);
4766                         vm_deallocate (mach_task_self (), taddr, psize);
4767                         return code;
4768                 }
4769                 page = (TrampolinePage*)addr;
4770                 page->next = trampoline_pages [tramp_type];
4771                 trampoline_pages [tramp_type] = page;
4772                 page->trampolines = (void*)(taddr + amodule->info.tramp_page_code_offsets [tramp_type]);
4773                 page->trampolines_end = (void*)(taddr + psize - 64);
4774                 code = page->trampolines;
4775                 page->trampolines += specific_trampoline_size;
4776                 mono_aot_page_unlock ();
4777
4778                 /* Register the generic part at the beggining of the trampoline page */
4779                 gen_info = mono_tramp_info_create (NULL, (guint8*)taddr, amodule->info.tramp_page_code_offsets [tramp_type], NULL, NULL);
4780                 read_page_trampoline_uwinfo (gen_info, tramp_type, TRUE);
4781                 mono_tramp_info_register (gen_info, NULL);
4782                 /*
4783                  * FIXME
4784                  * Registering each specific trampoline produces a lot of
4785                  * MonoJitInfo structures. Jump trampolines are also registered
4786                  * separately.
4787                  */
4788                 if (tramp_type != MONO_AOT_TRAMP_SPECIFIC) {
4789                         /* Register the rest of the page as a single trampoline */
4790                         sp_info = mono_tramp_info_create (NULL, code, page->trampolines_end - code, NULL, NULL);
4791                         read_page_trampoline_uwinfo (sp_info, tramp_type, FALSE);
4792                         mono_tramp_info_register (sp_info, NULL);
4793                 }
4794                 return code;
4795         }
4796         g_error ("Cannot allocate more trampoline pages: %d", ret);
4797         return NULL;
4798 }
4799
4800 #else
4801 static unsigned char*
4802 get_new_trampoline_from_page (int tramp_type)
4803 {
4804         g_error ("Page trampolines not supported.");
4805         return NULL;
4806 }
4807 #endif
4808
4809
4810 static gpointer
4811 get_new_specific_trampoline_from_page (gpointer tramp, gpointer arg)
4812 {
4813         void *code;
4814         gpointer *data;
4815
4816         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC);
4817
4818         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
4819         data [0] = arg;
4820         data [1] = tramp;
4821         /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4822         return code;
4823
4824 }
4825
4826 static gpointer
4827 get_new_rgctx_trampoline_from_page (gpointer tramp, gpointer arg)
4828 {
4829         void *code;
4830         gpointer *data;
4831
4832         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX);
4833
4834         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
4835         data [0] = arg;
4836         data [1] = tramp;
4837         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4838         return code;
4839
4840 }
4841
4842 static gpointer
4843 get_new_imt_trampoline_from_page (gpointer arg)
4844 {
4845         void *code;
4846         gpointer *data;
4847
4848         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT_THUNK);
4849
4850         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
4851         data [0] = arg;
4852         /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
4853         return code;
4854
4855 }
4856
4857 static gpointer
4858 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp, gpointer arg)
4859 {
4860         void *code;
4861         gpointer *data;
4862
4863         code = get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG);
4864
4865         data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
4866         data [0] = arg;
4867         data [1] = tramp;
4868         /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
4869         return code;
4870 }
4871
4872 /* Return a given kind of trampoline */
4873 /* FIXME set unwind info for these trampolines */
4874 static gpointer
4875 get_numerous_trampoline (MonoAotTrampoline tramp_type, int n_got_slots, MonoAotModule **out_amodule, guint32 *got_offset, guint32 *out_tramp_size)
4876 {
4877         MonoImage *image;
4878         MonoAotModule *amodule = get_mscorlib_aot_module ();
4879         int index, tramp_size;
4880
4881         /* Currently, we keep all trampolines in the mscorlib AOT image */
4882         image = mono_defaults.corlib;
4883
4884         *out_amodule = amodule;
4885
4886         mono_aot_lock ();
4887
4888 #ifdef MONOTOUCH
4889 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
4890 #else
4891 #define MONOTOUCH_TRAMPOLINES_ERROR ""
4892 #endif
4893         if (amodule->trampoline_index [tramp_type] == amodule->info.num_trampolines [tramp_type]) {
4894                 g_error ("Ran out of trampolines of type %d in '%s' (%d)%s\n", 
4895                                  tramp_type, image ? image->name : "mscorlib", amodule->info.num_trampolines [tramp_type], MONOTOUCH_TRAMPOLINES_ERROR);
4896         }
4897         index = amodule->trampoline_index [tramp_type] ++;
4898
4899         mono_aot_unlock ();
4900
4901         *got_offset = amodule->info.trampoline_got_offset_base [tramp_type] + (index * n_got_slots);
4902
4903         tramp_size = amodule->info.trampoline_size [tramp_type];
4904
4905         if (out_tramp_size)
4906                 *out_tramp_size = tramp_size;
4907
4908         return amodule->trampolines [tramp_type] + (index * tramp_size);
4909 }
4910
4911 /*
4912  * Return a specific trampoline from the AOT file.
4913  */
4914 gpointer
4915 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
4916 {
4917         MonoAotModule *amodule;
4918         guint32 got_offset, tramp_size;
4919         guint8 *code, *tramp;
4920         static gpointer generic_trampolines [MONO_TRAMPOLINE_NUM];
4921         static gboolean inited;
4922         static guint32 num_trampolines;
4923
4924         if (!inited) {
4925                 mono_aot_lock ();
4926
4927                 if (!inited) {
4928                         mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &num_trampolines);
4929                         inited = TRUE;
4930                 }
4931
4932                 mono_aot_unlock ();
4933         }
4934
4935         num_trampolines ++;
4936
4937         if (!generic_trampolines [tramp_type]) {
4938                 char *symbol;
4939
4940                 symbol = mono_get_generic_trampoline_name (tramp_type);
4941                 generic_trampolines [tramp_type] = mono_aot_get_trampoline (symbol);
4942                 g_free (symbol);
4943         }
4944
4945         tramp = generic_trampolines [tramp_type];
4946         g_assert (tramp);
4947
4948         if (USE_PAGE_TRAMPOLINES) {
4949                 code = get_new_specific_trampoline_from_page (tramp, arg1);
4950                 tramp_size = 8;
4951         } else {
4952                 code = get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC, 2, &amodule, &got_offset, &tramp_size);
4953
4954                 amodule->got [got_offset] = tramp;
4955                 amodule->got [got_offset + 1] = arg1;
4956         }
4957
4958         if (code_len)
4959                 *code_len = tramp_size;
4960
4961         return code;
4962 }
4963
4964 gpointer
4965 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
4966 {
4967         MonoAotModule *amodule;
4968         guint8 *code;
4969         guint32 got_offset;
4970
4971         if (USE_PAGE_TRAMPOLINES) {
4972                 code = get_new_rgctx_trampoline_from_page (addr, ctx);
4973         } else {
4974                 code = get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX, 2, &amodule, &got_offset, NULL);
4975
4976                 amodule->got [got_offset] = ctx;
4977                 amodule->got [got_offset + 1] = addr; 
4978         }
4979
4980         /* The caller expects an ftnptr */
4981         return mono_create_ftnptr (mono_domain_get (), code);
4982 }
4983
4984 gpointer
4985 mono_aot_get_unbox_trampoline (MonoMethod *method)
4986 {
4987         guint32 method_index = mono_metadata_token_index (method->token) - 1;
4988         MonoAotModule *amodule;
4989         gpointer code;
4990         guint32 *ut, *ut_end, *entry;
4991         int low, high, entry_index = 0;
4992         gpointer symbol_addr;
4993         MonoTrampInfo *tinfo;
4994
4995         if (method->is_inflated && !mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
4996                 method_index = find_aot_method (method, &amodule);
4997                 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
4998                         MonoMethod *shared = mini_get_shared_method_full (method, FALSE, FALSE);
4999                         method_index = find_aot_method (shared, &amodule);
5000                 }
5001                 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, TRUE)) {
5002                         MonoMethod *shared = mini_get_shared_method_full (method, TRUE, TRUE);
5003                         method_index = find_aot_method (shared, &amodule);
5004                 }
5005                 g_assert (method_index != 0xffffff);
5006         } else {
5007                 amodule = method->klass->image->aot_module;
5008                 g_assert (amodule);
5009         }
5010
5011         ut = amodule->unbox_trampolines;
5012         ut_end = amodule->unbox_trampolines_end;
5013
5014         /* Do a binary search in the sorted table */
5015         code = NULL;
5016         low = 0;
5017         high = (ut_end - ut);
5018         while (low < high) {
5019                 entry_index = (low + high) / 2;
5020                 entry = &ut [entry_index];
5021                 if (entry [0] < method_index) {
5022                         low = entry_index + 1;
5023                 } else if (entry [0] > method_index) {
5024                         high = entry_index;
5025                 } else {
5026                         break;
5027                 }
5028         }
5029
5030         code = get_call_table_entry (amodule->unbox_trampoline_addresses, entry_index);
5031         g_assert (code);
5032
5033         tinfo = mono_tramp_info_create (NULL, code, 0, NULL, NULL);
5034
5035         symbol_addr = read_unwind_info (amodule, tinfo, "unbox_trampoline_p");
5036         if (!symbol_addr) {
5037                 mono_tramp_info_free (tinfo);
5038                 return FALSE;
5039         }
5040
5041         tinfo->code_size = *(guint32*)symbol_addr;
5042         mono_tramp_info_register (tinfo, NULL);
5043
5044         /* The caller expects an ftnptr */
5045         return mono_create_ftnptr (mono_domain_get (), code);
5046 }
5047
5048 gpointer
5049 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5050 {
5051         char *symbol;
5052         gpointer code;
5053         MonoAotModule *amodule = mono_defaults.corlib->aot_module;
5054         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
5055         static int count = 0;
5056
5057         count ++;
5058         if (index >= amodule->info.num_rgctx_fetch_trampolines) {
5059                 static gpointer addr;
5060                 gpointer *info;
5061
5062                 /*
5063                  * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5064                  */
5065                 if (!addr)
5066                         addr = load_function (amodule, "rgctx_fetch_trampoline_general");
5067                 info = mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer) * 2);
5068                 info [0] = GUINT_TO_POINTER (slot);
5069                 info [1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5070                 code = mono_aot_get_static_rgctx_trampoline (info, addr);
5071                 return mono_create_ftnptr (mono_domain_get (), code);
5072         }
5073
5074         symbol = mono_get_rgctx_fetch_trampoline_name (slot);
5075         code = load_function (mono_defaults.corlib->aot_module, symbol);
5076         g_free (symbol);
5077         /* The caller expects an ftnptr */
5078         return mono_create_ftnptr (mono_domain_get (), code);
5079 }
5080
5081 gpointer
5082 mono_aot_get_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5083 {
5084         guint32 got_offset;
5085         gpointer code;
5086         gpointer *buf;
5087         int i, index, real_count;
5088         MonoAotModule *amodule;
5089
5090         real_count = 0;
5091         for (i = 0; i < count; ++i) {
5092                 MonoIMTCheckItem *item = imt_entries [i];
5093
5094                 if (item->is_equals)
5095                         real_count ++;
5096         }
5097
5098         /* Save the entries into an array */
5099         buf = mono_domain_alloc (domain, (real_count + 1) * 2 * sizeof (gpointer));
5100         index = 0;
5101         for (i = 0; i < count; ++i) {
5102                 MonoIMTCheckItem *item = imt_entries [i];               
5103
5104                 if (!item->is_equals)
5105                         continue;
5106
5107                 g_assert (item->key);
5108
5109                 buf [(index * 2)] = item->key;
5110                 if (item->has_target_code) {
5111                         gpointer *p = mono_domain_alloc (domain, sizeof (gpointer));
5112                         *p = item->value.target_code;
5113                         buf [(index * 2) + 1] = p;
5114                 } else {
5115                         buf [(index * 2) + 1] = &(vtable->vtable [item->value.vtable_slot]);
5116                 }
5117                 index ++;
5118         }
5119         buf [(index * 2)] = NULL;
5120         buf [(index * 2) + 1] = fail_tramp;
5121         
5122         if (USE_PAGE_TRAMPOLINES) {
5123                 code = get_new_imt_trampoline_from_page (buf);
5124         } else {
5125                 code = get_numerous_trampoline (MONO_AOT_TRAMP_IMT_THUNK, 1, &amodule, &got_offset, NULL);
5126
5127                 amodule->got [got_offset] = buf;
5128         }
5129
5130         return code;
5131 }
5132
5133 gpointer
5134 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
5135 {
5136         MonoAotModule *amodule;
5137         guint8 *code;
5138         guint32 got_offset;
5139
5140         if (USE_PAGE_TRAMPOLINES) {
5141                 code = get_new_gsharedvt_arg_trampoline_from_page (addr, arg);
5142         } else {
5143                 code = get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG, 2, &amodule, &got_offset, NULL);
5144
5145                 amodule->got [got_offset] = arg;
5146                 amodule->got [got_offset + 1] = addr; 
5147         }
5148
5149         /* The caller expects an ftnptr */
5150         return mono_create_ftnptr (mono_domain_get (), code);
5151 }
5152  
5153 /*
5154  * mono_aot_set_make_unreadable:
5155  *
5156  *   Set whenever to make all mmaped memory unreadable. In conjuction with a
5157  * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5158  */
5159 void
5160 mono_aot_set_make_unreadable (gboolean unreadable)
5161 {
5162         static int inited;
5163
5164         make_unreadable = unreadable;
5165
5166         if (make_unreadable && !inited) {
5167                 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT | MONO_COUNTER_INT, &n_pagefaults);
5168         }               
5169 }
5170
5171 typedef struct {
5172         MonoAotModule *module;
5173         guint8 *ptr;
5174 } FindMapUserData;
5175
5176 static void
5177 find_map (gpointer key, gpointer value, gpointer user_data)
5178 {
5179         MonoAotModule *module = (MonoAotModule*)value;
5180         FindMapUserData *data = (FindMapUserData*)user_data;
5181
5182         if (!data->module)
5183                 if ((data->ptr >= module->mem_begin) && (data->ptr < module->mem_end))
5184                         data->module = module;
5185 }
5186
5187 static MonoAotModule*
5188 find_module_for_addr (void *ptr)
5189 {
5190         FindMapUserData data;
5191
5192         if (!make_unreadable)
5193                 return NULL;
5194
5195         data.module = NULL;
5196         data.ptr = (guint8*)ptr;
5197
5198         mono_aot_lock ();
5199         g_hash_table_foreach (aot_modules, (GHFunc)find_map, &data);
5200         mono_aot_unlock ();
5201
5202         return data.module;
5203 }
5204
5205 /*
5206  * mono_aot_is_pagefault:
5207  *
5208  *   Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5209  * within memory allocated by this module.
5210  */
5211 gboolean
5212 mono_aot_is_pagefault (void *ptr)
5213 {
5214         if (!make_unreadable)
5215                 return FALSE;
5216
5217         /* 
5218          * Not signal safe, but SIGSEGV's are synchronous, and
5219          * this is only turned on by a MONO_DEBUG option.
5220          */
5221         return find_module_for_addr (ptr) != NULL;
5222 }
5223
5224 /*
5225  * mono_aot_handle_pagefault:
5226  *
5227  *   Handle a pagefault caused by an unreadable page by making it readable again.
5228  */
5229 void
5230 mono_aot_handle_pagefault (void *ptr)
5231 {
5232 #ifndef PLATFORM_WIN32
5233         guint8* start = (guint8*)ROUND_DOWN (((gssize)ptr), mono_pagesize ());
5234         int res;
5235
5236         mono_aot_lock ();
5237         res = mono_mprotect (start, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_WRITE|MONO_MMAP_EXEC);
5238         g_assert (res == 0);
5239
5240         n_pagefaults ++;
5241         mono_aot_unlock ();
5242 #endif
5243 }
5244
5245 #else
5246 /* AOT disabled */
5247
5248 void
5249 mono_aot_init (void)
5250 {
5251 }
5252
5253 gpointer
5254 mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
5255 {
5256         return NULL;
5257 }
5258
5259 gboolean
5260 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
5261 {
5262         return FALSE;
5263 }
5264
5265 gboolean
5266 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
5267 {
5268         return FALSE;
5269 }
5270
5271 gboolean
5272 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
5273 {
5274         return FALSE;
5275 }
5276
5277 MonoJitInfo *
5278 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
5279 {
5280         return NULL;
5281 }
5282
5283 gpointer
5284 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token)
5285 {
5286         return NULL;
5287 }
5288
5289 guint8*
5290 mono_aot_get_plt_entry (guint8 *code)
5291 {
5292         return NULL;
5293 }
5294
5295 gpointer
5296 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
5297 {
5298         return NULL;
5299 }
5300
5301 void
5302 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
5303 {
5304 }
5305
5306 gpointer
5307 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot)
5308 {
5309         return NULL;
5310 }
5311
5312 guint32
5313 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
5314 {
5315         g_assert_not_reached ();
5316
5317         return 0;
5318 }
5319
5320 gpointer
5321 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5322 {
5323         g_assert_not_reached ();
5324         return NULL;
5325 }
5326
5327 gpointer
5328 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5329 {
5330         g_assert_not_reached ();
5331         return NULL;
5332 }
5333
5334 gpointer
5335 mono_aot_get_trampoline (const char *name)
5336 {
5337         g_assert_not_reached ();
5338         return NULL;
5339 }
5340
5341 gpointer
5342 mono_aot_get_unbox_trampoline (MonoMethod *method)
5343 {
5344         g_assert_not_reached ();
5345         return NULL;
5346 }
5347
5348 gpointer
5349 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5350 {
5351         g_assert_not_reached ();
5352         return NULL;
5353 }
5354
5355 gpointer
5356 mono_aot_get_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5357 {
5358         g_assert_not_reached ();
5359         return NULL;
5360 }       
5361
5362 guint8*
5363 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
5364 {
5365         g_assert_not_reached ();
5366         return NULL;
5367 }
5368
5369 void
5370 mono_aot_register_jit_icall (const char *name, gpointer addr)
5371 {
5372 }
5373
5374 #endif