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