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