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