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