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