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