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