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