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