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