6b91543a56b6bbfd9e7f6a4c32f6bdb29911f289
[mono.git] / mono / mini / aot-compiler.c
1 /**
2  * \file
3  * mono Ahead of Time compiler
4  *
5  * Author:
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *   Zoltan Varga (vargaz@gmail.com)
8  *   Johan Lorensson (lateralusx.github@gmail.com)
9  *
10  * (C) 2002 Ximian, Inc.
11  * Copyright 2003-2011 Novell, Inc 
12  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
13  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
14  */
15
16 #include "config.h"
17 #include <sys/types.h>
18 #ifdef HAVE_UNISTD_H
19 #include <unistd.h>
20 #endif
21 #ifdef HAVE_STDINT_H
22 #include <stdint.h>
23 #endif
24 #include <fcntl.h>
25 #include <ctype.h>
26 #include <string.h>
27 #ifndef HOST_WIN32
28 #include <sys/time.h>
29 #else
30 #include <winsock2.h>
31 #include <windows.h>
32 #endif
33
34 #include <errno.h>
35 #include <sys/stat.h>
36
37 #include <mono/metadata/abi-details.h>
38 #include <mono/metadata/tabledefs.h>
39 #include <mono/metadata/class.h>
40 #include <mono/metadata/object.h>
41 #include <mono/metadata/tokentype.h>
42 #include <mono/metadata/appdomain.h>
43 #include <mono/metadata/debug-helpers.h>
44 #include <mono/metadata/assembly.h>
45 #include <mono/metadata/metadata-internals.h>
46 #include <mono/metadata/reflection-internals.h>
47 #include <mono/metadata/marshal.h>
48 #include <mono/metadata/gc-internals.h>
49 #include <mono/metadata/mempool-internals.h>
50 #include <mono/metadata/mono-endian.h>
51 #include <mono/metadata/threads-types.h>
52 #include <mono/utils/mono-logger-internals.h>
53 #include <mono/utils/mono-compiler.h>
54 #include <mono/utils/mono-time.h>
55 #include <mono/utils/mono-mmap.h>
56 #include <mono/utils/mono-rand.h>
57 #include <mono/utils/json.h>
58 #include <mono/utils/mono-threads-coop.h>
59 #include <mono/profiler/aot.h>
60 #include <mono/utils/w32api.h>
61
62 #include "aot-compiler.h"
63 #include "seq-points.h"
64 #include "image-writer.h"
65 #include "dwarfwriter.h"
66 #include "mini-gc.h"
67 #include "mini-llvm.h"
68
69 #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT)
70
71 // Use MSVC toolchain, Clang for MSVC using MSVC codegen and linker, when compiling for AMD64
72 // targeting WIN32 platforms running AOT compiler on WIN32 platform with VS installation.
73 #if defined(TARGET_AMD64) && defined(TARGET_WIN32) && defined(HOST_WIN32) && defined(_MSC_VER)
74 #define TARGET_X86_64_WIN32_MSVC
75 #endif
76
77 #if defined(TARGET_X86_64_WIN32_MSVC)
78 #define TARGET_WIN32_MSVC
79 #endif
80
81 #if defined(__linux__)
82 #define RODATA_SECT ".rodata"
83 #elif defined(TARGET_MACH)
84 #define RODATA_SECT ".section __TEXT, __const"
85 #elif defined(TARGET_WIN32_MSVC)
86 #define RODATA_SECT ".rdata"
87 #else
88 #define RODATA_SECT ".text"
89 #endif
90
91 #define TV_DECLARE(name) gint64 name
92 #define TV_GETTIME(tv) tv = mono_100ns_ticks ()
93 #define TV_ELAPSED(start,end) (((end) - (start)) / 10)
94
95 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
96 #define ALIGN_PTR_TO(ptr,align) (gpointer)((((gssize)(ptr)) + (align - 1)) & (~(align - 1)))
97 #define ROUND_DOWN(VALUE,SIZE)  ((VALUE) & ~((SIZE) - 1))
98
99 typedef struct {
100         char *name;
101         MonoImage *image;
102 } ImageProfileData;
103
104 typedef struct ClassProfileData ClassProfileData;
105
106 typedef struct {
107         int argc;
108         ClassProfileData **argv;
109         MonoGenericInst *inst;
110 } GInstProfileData;
111
112 struct ClassProfileData {
113         ImageProfileData *image;
114         char *ns, *name;
115         GInstProfileData *inst;
116         MonoClass *klass;
117 };
118
119 typedef struct {
120         ClassProfileData *klass;
121         int id;
122         char *name;
123         int param_count;
124         char *signature;
125         GInstProfileData *inst;
126         MonoMethod *method;
127 } MethodProfileData;
128
129 typedef struct {
130         GHashTable *images, *classes, *ginsts, *methods;
131 } ProfileData;
132
133 /* predefined values for static readonly fields without needed to run the .cctor */
134 typedef struct _ReadOnlyValue ReadOnlyValue;
135 struct _ReadOnlyValue {
136         ReadOnlyValue *next;
137         char *name;
138         int type; /* to be used later for typechecking to prevent user errors */
139         union {
140                 guint8 i1;
141                 guint16 i2;
142                 guint32 i4;
143                 guint64 i8;
144                 gpointer ptr;
145         } value;
146 };
147 static ReadOnlyValue *readonly_values;
148
149 typedef struct MonoAotOptions {
150         char *outfile;
151         char *llvm_outfile;
152         char *data_outfile;
153         GList *profile_files;
154         gboolean save_temps;
155         gboolean write_symbols;
156         gboolean metadata_only;
157         gboolean bind_to_runtime_version;
158         MonoAotMode mode;
159         gboolean no_dlsym;
160         gboolean static_link;
161         gboolean asm_only;
162         gboolean asm_writer;
163         gboolean nodebug;
164         gboolean dwarf_debug;
165         gboolean soft_debug;
166         gboolean log_generics;
167         gboolean log_instances;
168         gboolean gen_msym_dir;
169         char *gen_msym_dir_path;
170         gboolean direct_pinvoke;
171         gboolean direct_icalls;
172         gboolean no_direct_calls;
173         gboolean use_trampolines_page;
174         gboolean no_instances;
175         gboolean gnu_asm;
176         gboolean llvm;
177         gboolean llvm_only;
178         int nthreads;
179         int ntrampolines;
180         int nrgctx_trampolines;
181         int nimt_trampolines;
182         int ngsharedvt_arg_trampolines;
183         int nrgctx_fetch_trampolines;
184         gboolean print_skipped_methods;
185         gboolean stats;
186         gboolean verbose;
187         char *tool_prefix;
188         char *ld_flags;
189         char *mtriple;
190         char *llvm_path;
191         char *temp_path;
192         char *instances_logfile_path;
193         char *logfile;
194         gboolean dump_json;
195         gboolean profile_only;
196 } MonoAotOptions;
197
198 typedef enum {
199         METHOD_CAT_NORMAL,
200         METHOD_CAT_GSHAREDVT,
201         METHOD_CAT_INST,
202         METHOD_CAT_WRAPPER,
203         METHOD_CAT_NUM
204 } MethodCategory;
205
206 typedef struct MonoAotStats {
207         int ccount, mcount, lmfcount, abscount, gcount, ocount, genericcount;
208         gint64 code_size, info_size, ex_info_size, unwind_info_size, got_size, class_info_size, got_info_size, plt_size;
209         int methods_without_got_slots, direct_calls, all_calls, llvm_count;
210         int got_slots, offsets_size;
211         int method_categories [METHOD_CAT_NUM];
212         int got_slot_types [MONO_PATCH_INFO_NUM];
213         int got_slot_info_sizes [MONO_PATCH_INFO_NUM];
214         int jit_time, gen_time, link_time;
215 } MonoAotStats;
216
217 typedef struct GotInfo {
218         GHashTable *patch_to_got_offset;
219         GHashTable **patch_to_got_offset_by_type;
220         GPtrArray *got_patches;
221 } GotInfo;
222
223 typedef struct MonoAotCompile {
224         MonoImage *image;
225         GPtrArray *methods;
226         GHashTable *method_indexes;
227         GHashTable *method_depth;
228         MonoCompile **cfgs;
229         int cfgs_size;
230         GHashTable **patch_to_plt_entry;
231         GHashTable *plt_offset_to_entry;
232         //GHashTable *patch_to_got_offset;
233         //GHashTable **patch_to_got_offset_by_type;
234         //GPtrArray *got_patches;
235         GotInfo got_info, llvm_got_info;
236         GHashTable *image_hash;
237         GHashTable *method_to_cfg;
238         GHashTable *token_info_hash;
239         GHashTable *method_to_pinvoke_import;
240         GPtrArray *extra_methods;
241         GPtrArray *image_table;
242         GPtrArray *globals;
243         GPtrArray *method_order;
244         GHashTable *export_names;
245         /* Maps MonoClass* -> blob offset */
246         GHashTable *klass_blob_hash;
247         /* Maps MonoMethod* -> blob offset */
248         GHashTable *method_blob_hash;
249         GHashTable *gsharedvt_in_signatures;
250         GHashTable *gsharedvt_out_signatures;
251         guint32 *plt_got_info_offsets;
252         guint32 got_offset, llvm_got_offset, plt_offset, plt_got_offset_base, nshared_got_entries;
253         /* Number of GOT entries reserved for trampolines */
254         guint32 num_trampoline_got_entries;
255         guint32 tramp_page_size;
256
257         guint32 table_offsets [MONO_AOT_TABLE_NUM];
258         guint32 num_trampolines [MONO_AOT_TRAMP_NUM];
259         guint32 trampoline_got_offset_base [MONO_AOT_TRAMP_NUM];
260         guint32 trampoline_size [MONO_AOT_TRAMP_NUM];
261         guint32 tramp_page_code_offsets [MONO_AOT_TRAMP_NUM];
262
263         MonoAotOptions aot_opts;
264         guint32 nmethods;
265         guint32 opts;
266         guint32 simd_opts;
267         MonoMemPool *mempool;
268         MonoAotStats stats;
269         int method_index;
270         char *static_linking_symbol;
271         mono_mutex_t mutex;
272         gboolean gas_line_numbers;
273         /* Whenever to emit an object file directly from llc */
274         gboolean llvm_owriter;
275         gboolean llvm_owriter_supported;
276         MonoImageWriter *w;
277         MonoDwarfWriter *dwarf;
278         FILE *fp;
279         char *tmpbasename;
280         char *tmpfname;
281         char *llvm_sfile;
282         char *llvm_ofile;
283         GSList *cie_program;
284         GHashTable *unwind_info_offsets;
285         GPtrArray *unwind_ops;
286         guint32 unwind_info_offset;
287         char *global_prefix;
288         char *got_symbol;
289         char *llvm_got_symbol;
290         char *plt_symbol;
291         char *llvm_eh_frame_symbol;
292         GHashTable *method_label_hash;
293         const char *temp_prefix;
294         const char *user_symbol_prefix;
295         const char *llvm_label_prefix;
296         const char *inst_directive;
297         int align_pad_value;
298         guint32 label_generator;
299         gboolean llvm;
300         gboolean has_jitted_code;
301         gboolean is_full_aot;
302         MonoAotFileFlags flags;
303         MonoDynamicStream blob;
304         gboolean blob_closed;
305         GHashTable *typespec_classes;
306         GString *llc_args;
307         GString *as_args;
308         char *assembly_name_sym;
309         GHashTable *plt_entry_debug_sym_cache;
310         gboolean thumb_mixed, need_no_dead_strip, need_pt_gnu_stack;
311         GHashTable *ginst_hash;
312         GHashTable *dwarf_ln_filenames;
313         gboolean global_symbols;
314         int objc_selector_index, objc_selector_index_2;
315         GPtrArray *objc_selectors;
316         GHashTable *objc_selector_to_index;
317         GList *profile_data;
318         GHashTable *profile_methods;
319         FILE *logfile;
320         FILE *instances_logfile;
321         FILE *data_outfile;
322         int datafile_offset;
323         int gc_name_offset;
324 } MonoAotCompile;
325
326 typedef struct {
327         int plt_offset;
328         char *symbol, *llvm_symbol, *debug_sym;
329         MonoJumpInfo *ji;
330         gboolean jit_used, llvm_used;
331 } MonoPltEntry;
332
333 #define mono_acfg_lock(acfg) mono_os_mutex_lock (&((acfg)->mutex))
334 #define mono_acfg_unlock(acfg) mono_os_mutex_unlock (&((acfg)->mutex))
335
336 /* This points to the current acfg in LLVM mode */
337 static MonoAotCompile *llvm_acfg;
338
339 #ifdef HAVE_ARRAY_ELEM_INIT
340 #define MSGSTRFIELD(line) MSGSTRFIELD1(line)
341 #define MSGSTRFIELD1(line) str##line
342 static const struct msgstr_t {
343 #define PATCH_INFO(a,b) char MSGSTRFIELD(__LINE__) [sizeof (b)];
344 #include "patch-info.h"
345 #undef PATCH_INFO
346 } opstr = {
347 #define PATCH_INFO(a,b) b,
348 #include "patch-info.h"
349 #undef PATCH_INFO
350 };
351 static const gint16 opidx [] = {
352 #define PATCH_INFO(a,b) [MONO_PATCH_INFO_ ## a] = offsetof (struct msgstr_t, MSGSTRFIELD(__LINE__)),
353 #include "patch-info.h"
354 #undef PATCH_INFO
355 };
356
357 static G_GNUC_UNUSED const char*
358 get_patch_name (int info)
359 {
360         return (const char*)&opstr + opidx [info];
361 }
362
363 #else
364 #define PATCH_INFO(a,b) b,
365 static const char* const
366 patch_types [MONO_PATCH_INFO_NUM + 1] = {
367 #include "patch-info.h"
368         NULL
369 };
370
371 static G_GNUC_UNUSED const char*
372 get_patch_name (int info)
373 {
374         return patch_types [info];
375 }
376
377 #endif
378
379 static guint32
380 get_unwind_info_offset (MonoAotCompile *acfg, guint8 *encoded, guint32 encoded_len);
381
382 static char*
383 get_plt_entry_debug_sym (MonoAotCompile *acfg, MonoJumpInfo *ji, GHashTable *cache);
384
385 static void
386 add_gsharedvt_wrappers (MonoAotCompile *acfg, MonoMethodSignature *sig, gboolean gsharedvt_in, gboolean gsharedvt_out);
387
388 static void
389 add_profile_instances (MonoAotCompile *acfg, ProfileData *data);
390
391 static void
392 aot_printf (MonoAotCompile *acfg, const gchar *format, ...)
393 {
394         FILE *output;
395         va_list args;
396
397         if (acfg->logfile)
398                 output = acfg->logfile;
399         else
400                 output = stdout;
401
402         va_start (args, format);
403         vfprintf (output, format, args);
404         va_end (args);
405 }
406
407 static void
408 aot_printerrf (MonoAotCompile *acfg, const gchar *format, ...)
409 {
410         FILE *output;
411         va_list args;
412
413         if (acfg->logfile)
414                 output = acfg->logfile;
415         else
416                 output = stderr;
417
418         va_start (args, format);
419         vfprintf (output, format, args);
420         va_end (args);
421 }
422
423 static void
424 report_loader_error (MonoAotCompile *acfg, MonoError *error, const char *format, ...)
425 {
426         FILE *output;
427         va_list args;
428
429         if (mono_error_ok (error))
430                 return;
431
432         if (acfg->logfile)
433                 output = acfg->logfile;
434         else
435                 output = stderr;
436
437         va_start (args, format);
438         vfprintf (output, format, args);
439         va_end (args);
440         mono_error_cleanup (error);
441
442         if (acfg->is_full_aot) {
443                 fprintf (output, "FullAOT cannot continue if there are loader errors.\n");
444                 exit (1);
445         }
446 }
447
448 /* Wrappers around the image writer functions */
449
450 #define MAX_SYMBOL_SIZE 256
451
452 static inline const char *
453 mangle_symbol (const char * symbol, char * mangled_symbol, gsize length)
454 {
455         gsize needed_size = length;
456
457         g_assert (NULL != symbol);
458         g_assert (NULL != mangled_symbol);
459         g_assert (0 != length);
460
461 #if defined(TARGET_WIN32) && defined(TARGET_X86)
462         if (symbol && '_' != symbol [0]) {
463                 needed_size = g_snprintf (mangled_symbol, length, "_%s", symbol);
464         } else {
465                 needed_size = g_snprintf (mangled_symbol, length, "%s", symbol);
466         }
467 #else
468         needed_size = g_snprintf (mangled_symbol, length, "%s", symbol);
469 #endif
470
471         g_assert (0 <= needed_size && needed_size < length);
472         return mangled_symbol;
473 }
474
475 static inline char *
476 mangle_symbol_alloc (const char * symbol)
477 {
478         g_assert (NULL != symbol);
479
480 #if defined(TARGET_WIN32) && defined(TARGET_X86)
481         if (symbol && '_' != symbol [0]) {
482                 return g_strdup_printf ("_%s", symbol);
483         }
484         else {
485                 return g_strdup_printf ("%s", symbol);
486         }
487 #else
488         return g_strdup_printf ("%s", symbol);
489 #endif
490 }
491
492 static inline void
493 emit_section_change (MonoAotCompile *acfg, const char *section_name, int subsection_index)
494 {
495         mono_img_writer_emit_section_change (acfg->w, section_name, subsection_index);
496 }
497
498 #if defined(TARGET_WIN32) && defined(TARGET_X86)
499
500 static inline void
501 emit_local_symbol (MonoAotCompile *acfg, const char *name, const char *end_label, gboolean func)
502 {
503         const char * mangled_symbol_name = name;
504         char * mangled_symbol_name_alloc = NULL;
505
506         if (TRUE == func) {
507                 mangled_symbol_name_alloc = mangle_symbol_alloc (name);
508                 mangled_symbol_name = mangled_symbol_name_alloc;
509         }
510
511         if (name != mangled_symbol_name && 0 != g_strcasecmp (name, mangled_symbol_name)) {
512                 mono_img_writer_emit_label (acfg->w, mangled_symbol_name);
513         }
514         mono_img_writer_emit_local_symbol (acfg->w, mangled_symbol_name, end_label, func);
515
516         if (NULL != mangled_symbol_name_alloc) {
517                 g_free (mangled_symbol_name_alloc);
518         }
519 }
520
521 #else
522
523 static inline void
524 emit_local_symbol (MonoAotCompile *acfg, const char *name, const char *end_label, gboolean func) 
525
526         mono_img_writer_emit_local_symbol (acfg->w, name, end_label, func);
527 }
528
529 #endif
530
531 static inline void
532 emit_label (MonoAotCompile *acfg, const char *name) 
533
534         mono_img_writer_emit_label (acfg->w, name); 
535 }
536
537 static inline void
538 emit_bytes (MonoAotCompile *acfg, const guint8* buf, int size) 
539
540         mono_img_writer_emit_bytes (acfg->w, buf, size); 
541 }
542
543 static inline void
544 emit_string (MonoAotCompile *acfg, const char *value) 
545
546         mono_img_writer_emit_string (acfg->w, value); 
547 }
548
549 static inline void
550 emit_line (MonoAotCompile *acfg) 
551
552         mono_img_writer_emit_line (acfg->w); 
553 }
554
555 static inline void
556 emit_alignment (MonoAotCompile *acfg, int size)
557
558         mono_img_writer_emit_alignment (acfg->w, size);
559 }
560
561 static inline void
562 emit_alignment_code (MonoAotCompile *acfg, int size)
563 {
564         if (acfg->align_pad_value)
565                 mono_img_writer_emit_alignment_fill (acfg->w, size, acfg->align_pad_value);
566         else
567                 mono_img_writer_emit_alignment (acfg->w, size);
568 }
569
570 static inline void
571 emit_padding (MonoAotCompile *acfg, int size)
572 {
573         int i;
574         guint8 buf [16];
575
576         if (acfg->align_pad_value) {
577                 for (i = 0; i < 16; ++i)
578                         buf [i] = acfg->align_pad_value;
579         } else {
580                 memset (buf, 0, sizeof (buf));
581         }
582
583         for (i = 0; i < size; i += 16) {
584                 if (size - i < 16)
585                         emit_bytes (acfg, buf, size - i);
586                 else
587                         emit_bytes (acfg, buf, 16);
588         }
589 }
590
591 static inline void
592 emit_pointer (MonoAotCompile *acfg, const char *target) 
593
594         mono_img_writer_emit_pointer (acfg->w, target); 
595 }
596
597 static inline void
598 emit_pointer_2 (MonoAotCompile *acfg, const char *prefix, const char *target) 
599
600         if (prefix [0] != '\0') {
601                 char *s = g_strdup_printf ("%s%s", prefix, target);
602                 mono_img_writer_emit_pointer (acfg->w, s);
603                 g_free (s);
604         } else {
605                 mono_img_writer_emit_pointer (acfg->w, target);
606         }
607 }
608
609 static inline void
610 emit_int16 (MonoAotCompile *acfg, int value) 
611
612         mono_img_writer_emit_int16 (acfg->w, value); 
613 }
614
615 static inline void
616 emit_int32 (MonoAotCompile *acfg, int value) 
617
618         mono_img_writer_emit_int32 (acfg->w, value); 
619 }
620
621 static inline void
622 emit_symbol_diff (MonoAotCompile *acfg, const char *end, const char* start, int offset) 
623
624         mono_img_writer_emit_symbol_diff (acfg->w, end, start, offset); 
625 }
626
627 static inline void
628 emit_zero_bytes (MonoAotCompile *acfg, int num) 
629
630         mono_img_writer_emit_zero_bytes (acfg->w, num); 
631 }
632
633 static inline void
634 emit_byte (MonoAotCompile *acfg, guint8 val) 
635
636         mono_img_writer_emit_byte (acfg->w, val); 
637 }
638
639 #if defined(TARGET_WIN32) && defined(TARGET_X86)
640
641 static G_GNUC_UNUSED void
642 emit_global_inner (MonoAotCompile *acfg, const char *name, gboolean func)
643 {
644         const char * mangled_symbol_name = name;
645         char * mangled_symbol_name_alloc = NULL;
646
647         mangled_symbol_name_alloc = mangle_symbol_alloc (name);
648         mangled_symbol_name = mangled_symbol_name_alloc;
649         
650         if (0 != g_strcasecmp (name, mangled_symbol_name)) {
651                 mono_img_writer_emit_label (acfg->w, mangled_symbol_name);
652         }
653         mono_img_writer_emit_global (acfg->w, mangled_symbol_name, func);
654
655         if (NULL != mangled_symbol_name_alloc) {
656                 g_free (mangled_symbol_name_alloc);
657         }
658 }
659
660 #else
661
662 static G_GNUC_UNUSED void
663 emit_global_inner (MonoAotCompile *acfg, const char *name, gboolean func)
664 {
665         mono_img_writer_emit_global (acfg->w, name, func);
666 }
667
668 #endif
669
670 static inline gboolean
671 link_shared_library (MonoAotCompile *acfg)
672 {
673         return !acfg->aot_opts.static_link && !acfg->aot_opts.asm_only;
674 }
675
676 static inline gboolean
677 add_to_global_symbol_table (MonoAotCompile *acfg)
678 {
679 #ifdef TARGET_WIN32_MSVC
680         return acfg->aot_opts.no_dlsym || link_shared_library (acfg);
681 #else
682         return acfg->aot_opts.no_dlsym;
683 #endif
684 }
685
686 static void
687 emit_global (MonoAotCompile *acfg, const char *name, gboolean func)
688 {
689         if (add_to_global_symbol_table (acfg))
690                 g_ptr_array_add (acfg->globals, g_strdup (name));
691
692         if (acfg->aot_opts.no_dlsym) {
693                 mono_img_writer_emit_local_symbol (acfg->w, name, NULL, func);
694         } else {
695                 emit_global_inner (acfg, name, func);
696         }
697 }
698
699 static void
700 emit_symbol_size (MonoAotCompile *acfg, const char *name, const char *end_label)
701 {
702         mono_img_writer_emit_symbol_size (acfg->w, name, end_label);
703 }
704
705 /* Emit a symbol which is referenced by the MonoAotFileInfo structure */
706 static void
707 emit_info_symbol (MonoAotCompile *acfg, const char *name)
708 {
709         char symbol [MAX_SYMBOL_SIZE];
710
711         if (acfg->llvm) {
712                 emit_label (acfg, name);
713                 /* LLVM generated code references this */
714                 sprintf (symbol, "%s%s%s", acfg->user_symbol_prefix, acfg->global_prefix, name);
715                 emit_label (acfg, symbol);
716                 emit_global_inner (acfg, symbol, FALSE);
717         } else {
718                 emit_label (acfg, name);
719         }
720 }
721
722 static void
723 emit_string_symbol (MonoAotCompile *acfg, const char *name, const char *value)
724 {
725         if (acfg->llvm) {
726                 mono_llvm_emit_aot_data (name, (guint8*)value, strlen (value) + 1);
727                 return;
728         }
729
730         mono_img_writer_emit_section_change (acfg->w, RODATA_SECT, 1);
731 #ifdef TARGET_MACH
732         /* On apple, all symbols need to be aligned to avoid warnings from ld */
733         emit_alignment (acfg, 4);
734 #endif
735         mono_img_writer_emit_label (acfg->w, name);
736         mono_img_writer_emit_string (acfg->w, value);
737 }
738
739 static G_GNUC_UNUSED void
740 emit_uleb128 (MonoAotCompile *acfg, guint32 value)
741 {
742         do {
743                 guint8 b = value & 0x7f;
744                 value >>= 7;
745                 if (value != 0) /* more bytes to come */
746                         b |= 0x80;
747                 emit_byte (acfg, b);
748         } while (value);
749 }
750
751 static G_GNUC_UNUSED void
752 emit_sleb128 (MonoAotCompile *acfg, gint64 value)
753 {
754         gboolean more = 1;
755         gboolean negative = (value < 0);
756         guint32 size = 64;
757         guint8 byte;
758
759         while (more) {
760                 byte = value & 0x7f;
761                 value >>= 7;
762                 /* the following is unnecessary if the
763                  * implementation of >>= uses an arithmetic rather
764                  * than logical shift for a signed left operand
765                  */
766                 if (negative)
767                         /* sign extend */
768                         value |= - ((gint64)1 <<(size - 7));
769                 /* sign bit of byte is second high order bit (0x40) */
770                 if ((value == 0 && !(byte & 0x40)) ||
771                         (value == -1 && (byte & 0x40)))
772                         more = 0;
773                 else
774                         byte |= 0x80;
775                 emit_byte (acfg, byte);
776         }
777 }
778
779 static G_GNUC_UNUSED void
780 encode_uleb128 (guint32 value, guint8 *buf, guint8 **endbuf)
781 {
782         guint8 *p = buf;
783
784         do {
785                 guint8 b = value & 0x7f;
786                 value >>= 7;
787                 if (value != 0) /* more bytes to come */
788                         b |= 0x80;
789                 *p ++ = b;
790         } while (value);
791
792         *endbuf = p;
793 }
794
795 static G_GNUC_UNUSED void
796 encode_sleb128 (gint32 value, guint8 *buf, guint8 **endbuf)
797 {
798         gboolean more = 1;
799         gboolean negative = (value < 0);
800         guint32 size = 32;
801         guint8 byte;
802         guint8 *p = buf;
803
804         while (more) {
805                 byte = value & 0x7f;
806                 value >>= 7;
807                 /* the following is unnecessary if the
808                  * implementation of >>= uses an arithmetic rather
809                  * than logical shift for a signed left operand
810                  */
811                 if (negative)
812                         /* sign extend */
813                         value |= - (1 <<(size - 7));
814                 /* sign bit of byte is second high order bit (0x40) */
815                 if ((value == 0 && !(byte & 0x40)) ||
816                         (value == -1 && (byte & 0x40)))
817                         more = 0;
818                 else
819                         byte |= 0x80;
820                 *p ++= byte;
821         }
822
823         *endbuf = p;
824 }
825
826 static void
827 encode_int (gint32 val, guint8 *buf, guint8 **endbuf)
828 {
829         // FIXME: Big-endian
830         buf [0] = (val >> 0) & 0xff;
831         buf [1] = (val >> 8) & 0xff;
832         buf [2] = (val >> 16) & 0xff;
833         buf [3] = (val >> 24) & 0xff;
834
835         *endbuf = buf + 4;
836 }
837
838 static void
839 encode_int16 (guint16 val, guint8 *buf, guint8 **endbuf)
840 {
841         buf [0] = (val >> 0) & 0xff;
842         buf [1] = (val >> 8) & 0xff;
843
844         *endbuf = buf + 2;
845 }
846
847 static void
848 encode_string (const char *s, guint8 *buf, guint8 **endbuf)
849 {
850         int len = strlen (s);
851
852         memcpy (buf, s, len + 1);
853         *endbuf = buf + len + 1;
854 }
855
856 static void
857 emit_unset_mode (MonoAotCompile *acfg)
858 {
859         mono_img_writer_emit_unset_mode (acfg->w);
860 }
861
862 static G_GNUC_UNUSED void
863 emit_set_thumb_mode (MonoAotCompile *acfg)
864 {
865         emit_unset_mode (acfg);
866         fprintf (acfg->fp, ".code 16\n");
867 }
868
869 static G_GNUC_UNUSED void
870 emit_set_arm_mode (MonoAotCompile *acfg)
871 {
872         emit_unset_mode (acfg);
873         fprintf (acfg->fp, ".code 32\n");
874 }
875
876 static inline void
877 emit_code_bytes (MonoAotCompile *acfg, const guint8* buf, int size)
878 {
879 #ifdef TARGET_ARM64
880         int i;
881
882         g_assert (size % 4 == 0);
883         emit_unset_mode (acfg);
884         for (i = 0; i < size; i += 4)
885                 fprintf (acfg->fp, "%s 0x%x\n", acfg->inst_directive, *(guint32*)(buf + i));
886 #else
887         emit_bytes (acfg, buf, size);
888 #endif
889 }
890
891 /* ARCHITECTURE SPECIFIC CODE */
892
893 #if defined(TARGET_X86) || defined(TARGET_AMD64) || defined(TARGET_ARM) || defined(TARGET_POWERPC) || defined(TARGET_ARM64)
894 #define EMIT_DWARF_INFO 1
895 #endif
896
897 #ifdef TARGET_WIN32_MSVC
898 #undef EMIT_DWARF_INFO
899 #endif
900
901 #if defined(TARGET_ARM)
902 #define AOT_FUNC_ALIGNMENT 4
903 #else
904 #define AOT_FUNC_ALIGNMENT 16
905 #endif
906  
907 #if defined(TARGET_POWERPC64) && !defined(__mono_ilp32__)
908 #define PPC_LD_OP "ld"
909 #define PPC_LDX_OP "ldx"
910 #else
911 #define PPC_LD_OP "lwz"
912 #define PPC_LDX_OP "lwzx"
913 #endif
914
915 #ifdef TARGET_X86_64_WIN32_MSVC
916 #define AOT_TARGET_STR "AMD64 (WIN32) (MSVC codegen)"
917 #elif TARGET_AMD64
918 #define AOT_TARGET_STR "AMD64"
919 #endif
920
921 #ifdef TARGET_ARM
922 #ifdef TARGET_MACH
923 #define AOT_TARGET_STR "ARM (MACH)"
924 #else
925 #define AOT_TARGET_STR "ARM (!MACH)"
926 #endif
927 #endif
928
929 #ifdef TARGET_ARM64
930 #ifdef TARGET_MACH
931 #define AOT_TARGET_STR "ARM64 (MACH)"
932 #else
933 #define AOT_TARGET_STR "ARM64 (!MACH)"
934 #endif
935 #endif
936
937 #ifdef TARGET_POWERPC64
938 #ifdef __mono_ilp32__
939 #define AOT_TARGET_STR "POWERPC64 (mono ilp32)"
940 #else
941 #define AOT_TARGET_STR "POWERPC64 (!mono ilp32)"
942 #endif
943 #else
944 #ifdef TARGET_POWERPC
945 #ifdef __mono_ilp32__
946 #define AOT_TARGET_STR "POWERPC (mono ilp32)"
947 #else
948 #define AOT_TARGET_STR "POWERPC (!mono ilp32)"
949 #endif
950 #endif
951 #endif
952
953 #ifdef TARGET_X86
954 #ifdef TARGET_WIN32
955 #define AOT_TARGET_STR "X86 (WIN32)"
956 #else
957 #define AOT_TARGET_STR "X86"
958 #endif
959 #endif
960
961 #ifndef AOT_TARGET_STR
962 #define AOT_TARGET_STR ""
963 #endif
964
965 static void
966 arch_init (MonoAotCompile *acfg)
967 {
968         acfg->llc_args = g_string_new ("");
969         acfg->as_args = g_string_new ("");
970         acfg->llvm_owriter_supported = TRUE;
971
972         /*
973          * The prefix LLVM likes to put in front of symbol names on darwin.
974          * The mach-os specs require this for globals, but LLVM puts them in front of all
975          * symbols. We need to handle this, since we need to refer to LLVM generated
976          * symbols.
977          */
978         acfg->llvm_label_prefix = "";
979         acfg->user_symbol_prefix = "";
980
981 #if defined(TARGET_X86)
982         g_string_append (acfg->llc_args, " -march=x86 -mattr=sse4.1");
983 #endif
984
985 #if defined(TARGET_AMD64)
986         g_string_append (acfg->llc_args, " -march=x86-64 -mattr=sse4.1");
987         /* NOP */
988         acfg->align_pad_value = 0x90;
989 #endif
990
991 #ifdef TARGET_ARM
992         if (acfg->aot_opts.mtriple && strstr (acfg->aot_opts.mtriple, "darwin")) {
993                 g_string_append (acfg->llc_args, "-mattr=+v6");
994         } else {
995 #if defined(ARM_FPU_VFP_HARD)
996                 g_string_append (acfg->llc_args, " -mattr=+vfp2,-neon,+d16 -float-abi=hard");
997                 g_string_append (acfg->as_args, " -mfpu=vfp3");
998 #elif defined(ARM_FPU_VFP)
999                 g_string_append (acfg->llc_args, " -mattr=+vfp2,-neon,+d16");
1000                 g_string_append (acfg->as_args, " -mfpu=vfp3");
1001 #else
1002                 g_string_append (acfg->llc_args, " -soft-float");
1003 #endif
1004         }
1005         if (acfg->aot_opts.mtriple && strstr (acfg->aot_opts.mtriple, "thumb"))
1006                 acfg->thumb_mixed = TRUE;
1007
1008         if (acfg->aot_opts.mtriple)
1009                 mono_arch_set_target (acfg->aot_opts.mtriple);
1010 #endif
1011
1012 #ifdef TARGET_ARM64
1013         acfg->inst_directive = ".inst";
1014         if (acfg->aot_opts.mtriple)
1015                 mono_arch_set_target (acfg->aot_opts.mtriple);
1016 #endif
1017
1018 #ifdef TARGET_MACH
1019         acfg->user_symbol_prefix = "_";
1020         acfg->llvm_label_prefix = "_";
1021         acfg->inst_directive = ".word";
1022         acfg->need_no_dead_strip = TRUE;
1023         acfg->aot_opts.gnu_asm = TRUE;
1024 #endif
1025
1026 #if defined(__linux__) && !defined(TARGET_ARM)
1027         acfg->need_pt_gnu_stack = TRUE;
1028 #endif
1029
1030 #ifdef MONOTOUCH
1031         acfg->global_symbols = TRUE;
1032 #endif
1033
1034 #ifdef TARGET_ANDROID
1035         acfg->llvm_owriter_supported = FALSE;
1036 #endif
1037 }
1038
1039 #ifdef TARGET_ARM64
1040
1041
1042 /* Load the contents of GOT_SLOT into dreg, clobbering ip0 */
1043 static void
1044 arm64_emit_load_got_slot (MonoAotCompile *acfg, int dreg, int got_slot)
1045 {
1046         int offset;
1047
1048         g_assert (acfg->fp);
1049         emit_unset_mode (acfg);
1050         /* r16==ip0 */
1051         offset = (int)(got_slot * sizeof (gpointer));
1052 #ifdef TARGET_MACH
1053         /* clang's integrated assembler */
1054         fprintf (acfg->fp, "adrp x16, %s@PAGE+%d\n", acfg->got_symbol, offset & 0xfffff000);
1055         fprintf (acfg->fp, "add x16, x16, %s@PAGEOFF\n", acfg->got_symbol);
1056         fprintf (acfg->fp, "ldr x%d, [x16, #%d]\n", dreg, offset & 0xfff);
1057 #else
1058         /* Linux GAS */
1059         fprintf (acfg->fp, "adrp x16, %s+%d\n", acfg->got_symbol, offset & 0xfffff000);
1060         fprintf (acfg->fp, "add x16, x16, :lo12:%s\n", acfg->got_symbol);
1061         fprintf (acfg->fp, "ldr x%d, [x16, %d]\n", dreg, offset & 0xfff);
1062 #endif
1063 }
1064
1065 static void
1066 arm64_emit_objc_selector_ref (MonoAotCompile *acfg, guint8 *code, int index, int *code_size)
1067 {
1068         int reg;
1069
1070         g_assert (acfg->fp);
1071         emit_unset_mode (acfg);
1072
1073         /* ldr rt, target */
1074         reg = arm_get_ldr_lit_reg (code);
1075
1076         fprintf (acfg->fp, "adrp x%d, L_OBJC_SELECTOR_REFERENCES_%d@PAGE\n", reg, index);
1077         fprintf (acfg->fp, "add x%d, x%d, L_OBJC_SELECTOR_REFERENCES_%d@PAGEOFF\n", reg, reg, index);
1078         fprintf (acfg->fp, "ldr x%d, [x%d]\n", reg, reg);
1079
1080         *code_size = 12;
1081 }
1082
1083 static void
1084 arm64_emit_direct_call (MonoAotCompile *acfg, const char *target, gboolean external, gboolean thumb, MonoJumpInfo *ji, int *call_size)
1085 {
1086         g_assert (acfg->fp);
1087         emit_unset_mode (acfg);
1088         if (ji && ji->relocation == MONO_R_ARM64_B) {
1089                 fprintf (acfg->fp, "b %s\n", target);
1090         } else {
1091                 if (ji)
1092                         g_assert (ji->relocation == MONO_R_ARM64_BL);
1093                 fprintf (acfg->fp, "bl %s\n", target);
1094         }
1095         *call_size = 4;
1096 }
1097
1098 static void
1099 arm64_emit_got_access (MonoAotCompile *acfg, guint8 *code, int got_slot, int *code_size)
1100 {
1101         int reg;
1102
1103         /* ldr rt, target */
1104         reg = arm_get_ldr_lit_reg (code);
1105         arm64_emit_load_got_slot (acfg, reg, got_slot);
1106         *code_size = 12;
1107 }
1108
1109 static void
1110 arm64_emit_plt_entry (MonoAotCompile *acfg, const char *got_symbol, int offset, int info_offset)
1111 {
1112         arm64_emit_load_got_slot (acfg, ARMREG_R16, offset / sizeof (gpointer));
1113         fprintf (acfg->fp, "br x16\n");
1114         /* Used by mono_aot_get_plt_info_offset () */
1115         fprintf (acfg->fp, "%s %d\n", acfg->inst_directive, info_offset);
1116 }
1117
1118 static void
1119 arm64_emit_tramp_page_common_code (MonoAotCompile *acfg, int pagesize, int arg_reg, int *size)
1120 {
1121         guint8 buf [256];
1122         guint8 *code;
1123         int imm;
1124
1125         /* The common code */
1126         code = buf;
1127         imm = pagesize;
1128         /* The trampoline address is in IP0 */
1129         arm_movzx (code, ARMREG_IP1, imm & 0xffff, 0);
1130         arm_movkx (code, ARMREG_IP1, (imm >> 16) & 0xffff, 16);
1131         /* Compute the data slot address */
1132         arm_subx (code, ARMREG_IP0, ARMREG_IP0, ARMREG_IP1);
1133         /* Trampoline argument */
1134         arm_ldrx (code, arg_reg, ARMREG_IP0, 0);
1135         /* Address */
1136         arm_ldrx (code, ARMREG_IP0, ARMREG_IP0, 8);
1137         arm_brx (code, ARMREG_IP0);
1138
1139         /* Emit it */
1140         emit_code_bytes (acfg, buf, code - buf);
1141
1142         *size = code - buf;
1143 }
1144
1145 static void
1146 arm64_emit_tramp_page_specific_code (MonoAotCompile *acfg, int pagesize, int common_tramp_size, int specific_tramp_size)
1147 {
1148         guint8 buf [256];
1149         guint8 *code;
1150         int i, count;
1151
1152         count = (pagesize - common_tramp_size) / specific_tramp_size;
1153         for (i = 0; i < count; ++i) {
1154                 code = buf;
1155                 arm_adrx (code, ARMREG_IP0, code);
1156                 /* Branch to the generic code */
1157                 arm_b (code, code - 4 - (i * specific_tramp_size) - common_tramp_size);
1158                 /* This has to be 2 pointers long */
1159                 arm_nop (code);
1160                 arm_nop (code);
1161                 g_assert (code - buf == specific_tramp_size);
1162                 emit_code_bytes (acfg, buf, code - buf);
1163         }
1164 }
1165
1166 static void
1167 arm64_emit_specific_trampoline_pages (MonoAotCompile *acfg)
1168 {
1169         guint8 buf [128];
1170         guint8 *code;
1171         guint8 *labels [16];
1172         int common_tramp_size;
1173         int specific_tramp_size = 2 * 8;
1174         int imm, pagesize;
1175         char symbol [128];
1176
1177         if (!acfg->aot_opts.use_trampolines_page)
1178                 return;
1179
1180 #ifdef TARGET_MACH
1181         /* Have to match the target pagesize */
1182         pagesize = 16384;
1183 #else
1184         pagesize = mono_pagesize ();
1185 #endif
1186         acfg->tramp_page_size = pagesize;
1187
1188         /* The specific trampolines */
1189         sprintf (symbol, "%sspecific_trampolines_page", acfg->user_symbol_prefix);
1190         emit_alignment (acfg, pagesize);
1191         emit_global (acfg, symbol, TRUE);
1192         emit_label (acfg, symbol);
1193
1194         /* The common code */
1195         arm64_emit_tramp_page_common_code (acfg, pagesize, ARMREG_IP1, &common_tramp_size);
1196         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_SPECIFIC] = common_tramp_size;
1197
1198         arm64_emit_tramp_page_specific_code (acfg, pagesize, common_tramp_size, specific_tramp_size);
1199
1200         /* The rgctx trampolines */
1201         /* These are the same as the specific trampolines, but they load the argument into MONO_ARCH_RGCTX_REG */
1202         sprintf (symbol, "%srgctx_trampolines_page", acfg->user_symbol_prefix);
1203         emit_alignment (acfg, pagesize);
1204         emit_global (acfg, symbol, TRUE);
1205         emit_label (acfg, symbol);
1206
1207         /* The common code */
1208         arm64_emit_tramp_page_common_code (acfg, pagesize, MONO_ARCH_RGCTX_REG, &common_tramp_size);
1209         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_STATIC_RGCTX] = common_tramp_size;
1210
1211         arm64_emit_tramp_page_specific_code (acfg, pagesize, common_tramp_size, specific_tramp_size);
1212
1213         /* The gsharedvt arg trampolines */
1214         /* These are the same as the specific trampolines */
1215         sprintf (symbol, "%sgsharedvt_arg_trampolines_page", acfg->user_symbol_prefix);
1216         emit_alignment (acfg, pagesize);
1217         emit_global (acfg, symbol, TRUE);
1218         emit_label (acfg, symbol);
1219
1220         arm64_emit_tramp_page_common_code (acfg, pagesize, ARMREG_IP1, &common_tramp_size);
1221         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_GSHAREDVT_ARG] = common_tramp_size;
1222
1223         arm64_emit_tramp_page_specific_code (acfg, pagesize, common_tramp_size, specific_tramp_size);
1224
1225         /* The IMT trampolines */
1226         sprintf (symbol, "%simt_trampolines_page", acfg->user_symbol_prefix);
1227         emit_alignment (acfg, pagesize);
1228         emit_global (acfg, symbol, TRUE);
1229         emit_label (acfg, symbol);
1230
1231         code = buf;
1232         imm = pagesize;
1233         /* The trampoline address is in IP0 */
1234         arm_movzx (code, ARMREG_IP1, imm & 0xffff, 0);
1235         arm_movkx (code, ARMREG_IP1, (imm >> 16) & 0xffff, 16);
1236         /* Compute the data slot address */
1237         arm_subx (code, ARMREG_IP0, ARMREG_IP0, ARMREG_IP1);
1238         /* Trampoline argument */
1239         arm_ldrx (code, ARMREG_IP1, ARMREG_IP0, 0);
1240
1241         /* Same as arch_emit_imt_trampoline () */
1242         labels [0] = code;
1243         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 0);
1244         arm_cmpx (code, ARMREG_IP0, MONO_ARCH_RGCTX_REG);
1245         labels [1] = code;
1246         arm_bcc (code, ARMCOND_EQ, 0);
1247
1248         /* End-of-loop check */
1249         labels [2] = code;
1250         arm_cbzx (code, ARMREG_IP0, 0);
1251
1252         /* Loop footer */
1253         arm_addx_imm (code, ARMREG_IP1, ARMREG_IP1, 2 * 8);
1254         arm_b (code, labels [0]);
1255
1256         /* Match */
1257         mono_arm_patch (labels [1], code, MONO_R_ARM64_BCC);
1258         /* Load vtable slot addr */
1259         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 8);
1260         /* Load vtable slot */
1261         arm_ldrx (code, ARMREG_IP0, ARMREG_IP0, 0);
1262         arm_brx (code, ARMREG_IP0);
1263
1264         /* No match */
1265         mono_arm_patch (labels [2], code, MONO_R_ARM64_CBZ);
1266         /* Load fail addr */
1267         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 8);
1268         arm_brx (code, ARMREG_IP0);
1269
1270         emit_code_bytes (acfg, buf, code - buf);
1271
1272         common_tramp_size = code - buf;
1273         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_IMT] = common_tramp_size;
1274
1275         arm64_emit_tramp_page_specific_code (acfg, pagesize, common_tramp_size, specific_tramp_size);
1276 }
1277
1278 static void
1279 arm64_emit_specific_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
1280 {
1281         /* Load argument from second GOT slot */
1282         arm64_emit_load_got_slot (acfg, ARMREG_R17, offset + 1);
1283         /* Load generic trampoline address from first GOT slot */
1284         arm64_emit_load_got_slot (acfg, ARMREG_R16, offset);
1285         fprintf (acfg->fp, "br x16\n");
1286         *tramp_size = 7 * 4;
1287 }
1288
1289 static void
1290 arm64_emit_unbox_trampoline (MonoAotCompile *acfg, MonoCompile *cfg, MonoMethod *method, const char *call_target)
1291 {
1292         emit_unset_mode (acfg);
1293         fprintf (acfg->fp, "add x0, x0, %d\n", (int)(sizeof (MonoObject)));
1294         fprintf (acfg->fp, "b %s\n", call_target);
1295 }
1296
1297 static void
1298 arm64_emit_static_rgctx_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
1299 {
1300         /* Similar to the specific trampolines, but use the rgctx reg instead of ip1 */
1301
1302         /* Load argument from first GOT slot */
1303         arm64_emit_load_got_slot (acfg, MONO_ARCH_RGCTX_REG, offset);
1304         /* Load generic trampoline address from second GOT slot */
1305         arm64_emit_load_got_slot (acfg, ARMREG_R16, offset + 1);
1306         fprintf (acfg->fp, "br x16\n");
1307         *tramp_size = 7 * 4;
1308 }
1309
1310 static void
1311 arm64_emit_imt_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
1312 {
1313         guint8 buf [128];
1314         guint8 *code, *labels [16];
1315
1316         /* Load parameter from GOT slot into ip1 */
1317         arm64_emit_load_got_slot (acfg, ARMREG_R17, offset);
1318
1319         code = buf;
1320         labels [0] = code;
1321         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 0);
1322         arm_cmpx (code, ARMREG_IP0, MONO_ARCH_RGCTX_REG);
1323         labels [1] = code;
1324         arm_bcc (code, ARMCOND_EQ, 0);
1325
1326         /* End-of-loop check */
1327         labels [2] = code;
1328         arm_cbzx (code, ARMREG_IP0, 0);
1329
1330         /* Loop footer */
1331         arm_addx_imm (code, ARMREG_IP1, ARMREG_IP1, 2 * 8);
1332         arm_b (code, labels [0]);
1333
1334         /* Match */
1335         mono_arm_patch (labels [1], code, MONO_R_ARM64_BCC);
1336         /* Load vtable slot addr */
1337         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 8);
1338         /* Load vtable slot */
1339         arm_ldrx (code, ARMREG_IP0, ARMREG_IP0, 0);
1340         arm_brx (code, ARMREG_IP0);
1341
1342         /* No match */
1343         mono_arm_patch (labels [2], code, MONO_R_ARM64_CBZ);
1344         /* Load fail addr */
1345         arm_ldrx (code, ARMREG_IP0, ARMREG_IP1, 8);
1346         arm_brx (code, ARMREG_IP0);
1347
1348         emit_code_bytes (acfg, buf, code - buf);
1349
1350         *tramp_size = code - buf + (3 * 4);
1351 }
1352
1353 static void
1354 arm64_emit_gsharedvt_arg_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
1355 {
1356         /* Similar to the specific trampolines, but the address is in the second slot */
1357         /* Load argument from first GOT slot */
1358         arm64_emit_load_got_slot (acfg, ARMREG_R17, offset);
1359         /* Load generic trampoline address from second GOT slot */
1360         arm64_emit_load_got_slot (acfg, ARMREG_R16, offset + 1);
1361         fprintf (acfg->fp, "br x16\n");
1362         *tramp_size = 7 * 4;
1363 }
1364
1365
1366 #endif
1367
1368 #ifdef MONO_ARCH_AOT_SUPPORTED
1369 /*
1370  * arch_emit_direct_call:
1371  *
1372  *   Emit a direct call to the symbol TARGET. CALL_SIZE is set to the size of the
1373  * calling code.
1374  */
1375 static void
1376 arch_emit_direct_call (MonoAotCompile *acfg, const char *target, gboolean external, gboolean thumb, MonoJumpInfo *ji, int *call_size)
1377 {
1378 #if defined(TARGET_X86) || defined(TARGET_AMD64)
1379         /* Need to make sure this is exactly 5 bytes long */
1380         emit_unset_mode (acfg);
1381         fprintf (acfg->fp, "call %s\n", target);
1382         *call_size = 5;
1383 #elif defined(TARGET_ARM)
1384         emit_unset_mode (acfg);
1385         if (thumb)
1386                 fprintf (acfg->fp, "blx %s\n", target);
1387         else
1388                 fprintf (acfg->fp, "bl %s\n", target);
1389         *call_size = 4;
1390 #elif defined(TARGET_ARM64)
1391         arm64_emit_direct_call (acfg, target, external, thumb, ji, call_size);
1392 #elif defined(TARGET_POWERPC)
1393         emit_unset_mode (acfg);
1394         fprintf (acfg->fp, "bl %s\n", target);
1395         *call_size = 4;
1396 #else
1397         g_assert_not_reached ();
1398 #endif
1399 }
1400 #endif
1401
1402 /*
1403  * PPC32 design:
1404  * - we use an approach similar to the x86 abi: reserve a register (r30) to hold 
1405  *   the GOT pointer.
1406  * - The full-aot trampolines need access to the GOT of mscorlib, so we store
1407  *   in in the 2. slot of every GOT, and require every method to place the GOT
1408  *   address in r30, even when it doesn't access the GOT otherwise. This way,
1409  *   the trampolines can compute the mscorlib GOT address by loading 4(r30).
1410  */
1411
1412 /*
1413  * PPC64 design:
1414  * PPC64 uses function descriptors which greatly complicate all code, since
1415  * these are used very inconsistently in the runtime. Some functions like 
1416  * mono_compile_method () return ftn descriptors, while others like the
1417  * trampoline creation functions do not.
1418  * We assume that all GOT slots contain function descriptors, and create 
1419  * descriptors in aot-runtime.c when needed.
1420  * The ppc64 abi uses r2 to hold the address of the TOC/GOT, which is loaded
1421  * from function descriptors, we could do the same, but it would require 
1422  * rewriting all the ppc/aot code to handle function descriptors properly.
1423  * So instead, we use the same approach as on PPC32.
1424  * This is a horrible mess, but fixing it would probably lead to an even bigger
1425  * one.
1426  */
1427
1428 /*
1429  * X86 design:
1430  * - similar to the PPC32 design, we reserve EBX to hold the GOT pointer.
1431  */
1432
1433 #ifdef MONO_ARCH_AOT_SUPPORTED
1434 /*
1435  * arch_emit_got_offset:
1436  *
1437  *   The memory pointed to by CODE should hold native code for computing the GOT
1438  * address (OP_LOAD_GOTADDR). Emit this code while patching it with the offset
1439  * between code and the GOT. CODE_SIZE is set to the number of bytes emitted.
1440  */
1441 static void
1442 arch_emit_got_offset (MonoAotCompile *acfg, guint8 *code, int *code_size)
1443 {
1444 #if defined(TARGET_POWERPC64)
1445         emit_unset_mode (acfg);
1446         /* 
1447          * The ppc32 code doesn't seem to work on ppc64, the assembler complains about
1448          * unsupported relocations. So we store the got address into the .Lgot_addr
1449          * symbol which is in the text segment, compute its address, and load it.
1450          */
1451         fprintf (acfg->fp, ".L%d:\n", acfg->label_generator);
1452         fprintf (acfg->fp, "lis 0, (.Lgot_addr + 4 - .L%d)@h\n", acfg->label_generator);
1453         fprintf (acfg->fp, "ori 0, 0, (.Lgot_addr + 4 - .L%d)@l\n", acfg->label_generator);
1454         fprintf (acfg->fp, "add 30, 30, 0\n");
1455         fprintf (acfg->fp, "%s 30, 0(30)\n", PPC_LD_OP);
1456         acfg->label_generator ++;
1457         *code_size = 16;
1458 #elif defined(TARGET_POWERPC)
1459         emit_unset_mode (acfg);
1460         fprintf (acfg->fp, ".L%d:\n", acfg->label_generator);
1461         fprintf (acfg->fp, "lis 0, (%s + 4 - .L%d)@h\n", acfg->got_symbol, acfg->label_generator);
1462         fprintf (acfg->fp, "ori 0, 0, (%s + 4 - .L%d)@l\n", acfg->got_symbol, acfg->label_generator);
1463         acfg->label_generator ++;
1464         *code_size = 8;
1465 #else
1466         guint32 offset = mono_arch_get_patch_offset (code);
1467         emit_bytes (acfg, code, offset);
1468         emit_symbol_diff (acfg, acfg->got_symbol, ".", offset);
1469
1470         *code_size = offset + 4;
1471 #endif
1472 }
1473
1474 /*
1475  * arch_emit_got_access:
1476  *
1477  *   The memory pointed to by CODE should hold native code for loading a GOT
1478  * slot (OP_AOTCONST/OP_GOT_ENTRY). Emit this code while patching it so it accesses the
1479  * GOT slot GOT_SLOT. CODE_SIZE is set to the number of bytes emitted.
1480  */
1481 static void
1482 arch_emit_got_access (MonoAotCompile *acfg, const char *got_symbol, guint8 *code, int got_slot, int *code_size)
1483 {
1484 #ifdef TARGET_AMD64
1485         /* mov reg, got+offset(%rip) */
1486         if (acfg->llvm) {
1487                 /* The GOT symbol is in the LLVM module, the clang assembler has problems emitting symbol diffs for it */
1488                 int dreg;
1489                 int rex_r;
1490
1491                 /* Decode reg, see amd64_mov_reg_membase () */
1492                 rex_r = code [0] & AMD64_REX_R;
1493                 g_assert (code [0] == 0x49 + rex_r);
1494                 g_assert (code [1] == 0x8b);
1495                 dreg = ((code [2] >> 3) & 0x7) + (rex_r ? 8 : 0);
1496
1497                 emit_unset_mode (acfg);
1498                 fprintf (acfg->fp, "mov %s+%d(%%rip), %s\n", got_symbol, (unsigned int) ((got_slot * sizeof (gpointer))), mono_arch_regname (dreg));
1499                 *code_size = 7;
1500         } else {
1501                 emit_bytes (acfg, code, mono_arch_get_patch_offset (code));
1502                 emit_symbol_diff (acfg, got_symbol, ".", (unsigned int) ((got_slot * sizeof (gpointer)) - 4));
1503                 *code_size = mono_arch_get_patch_offset (code) + 4;
1504         }
1505 #elif defined(TARGET_X86)
1506         emit_bytes (acfg, code, mono_arch_get_patch_offset (code));
1507         emit_int32 (acfg, (unsigned int) ((got_slot * sizeof (gpointer))));
1508         *code_size = mono_arch_get_patch_offset (code) + 4;
1509 #elif defined(TARGET_ARM)
1510         emit_bytes (acfg, code, mono_arch_get_patch_offset (code));
1511         emit_symbol_diff (acfg, got_symbol, ".", (unsigned int) ((got_slot * sizeof (gpointer))) - 12);
1512         *code_size = mono_arch_get_patch_offset (code) + 4;
1513 #elif defined(TARGET_ARM64)
1514         emit_bytes (acfg, code, mono_arch_get_patch_offset (code));
1515         arm64_emit_got_access (acfg, code, got_slot, code_size);
1516 #elif defined(TARGET_POWERPC)
1517         {
1518                 guint8 buf [32];
1519
1520                 emit_bytes (acfg, code, mono_arch_get_patch_offset (code));
1521                 code = buf;
1522                 ppc_load32 (code, ppc_r0, got_slot * sizeof (gpointer));
1523                 g_assert (code - buf == 8);
1524                 emit_bytes (acfg, buf, code - buf);
1525                 *code_size = code - buf;
1526         }
1527 #else
1528         g_assert_not_reached ();
1529 #endif
1530 }
1531
1532 #endif
1533
1534 #ifdef MONO_ARCH_AOT_SUPPORTED
1535 /*
1536  * arch_emit_objc_selector_ref:
1537  *
1538  *   Emit the implementation of OP_OBJC_GET_SELECTOR, which itself implements @selector(foo:) in objective-c.
1539  */
1540 static void
1541 arch_emit_objc_selector_ref (MonoAotCompile *acfg, guint8 *code, int index, int *code_size)
1542 {
1543 #if defined(TARGET_ARM)
1544         char symbol1 [MAX_SYMBOL_SIZE];
1545         char symbol2 [MAX_SYMBOL_SIZE];
1546         int lindex = acfg->objc_selector_index_2 ++;
1547
1548         /* Emit ldr.imm/b */
1549         emit_bytes (acfg, code, 8);
1550
1551         sprintf (symbol1, "L_OBJC_SELECTOR_%d", lindex);
1552         sprintf (symbol2, "L_OBJC_SELECTOR_REFERENCES_%d", index);
1553
1554         emit_label (acfg, symbol1);
1555         mono_img_writer_emit_unset_mode (acfg->w);
1556         fprintf (acfg->fp, ".long %s-(%s+12)", symbol2, symbol1);
1557
1558         *code_size = 12;
1559 #elif defined(TARGET_ARM64)
1560         arm64_emit_objc_selector_ref (acfg, code, index, code_size);
1561 #else
1562         g_assert_not_reached ();
1563 #endif
1564 }
1565 #endif
1566
1567 /*
1568  * arch_emit_plt_entry:
1569  *
1570  *   Emit code for the PLT entry.
1571  * The plt entry should look like this:
1572  * <indirect jump to GOT_SYMBOL + OFFSET>
1573  * <INFO_OFFSET embedded into the instruction stream>
1574  */
1575 static void
1576 arch_emit_plt_entry (MonoAotCompile *acfg, const char *got_symbol, int offset, int info_offset)
1577 {
1578 #if defined(TARGET_X86)
1579                 /* jmp *<offset>(%ebx) */
1580                 emit_byte (acfg, 0xff);
1581                 emit_byte (acfg, 0xa3);
1582                 emit_int32 (acfg, offset);
1583                 /* Used by mono_aot_get_plt_info_offset */
1584                 emit_int32 (acfg, info_offset);
1585 #elif defined(TARGET_AMD64)
1586                 emit_unset_mode (acfg);
1587                 fprintf (acfg->fp, "jmp *%s+%d(%%rip)\n", got_symbol, offset);
1588                 /* Used by mono_aot_get_plt_info_offset */
1589                 emit_int32 (acfg, info_offset);
1590                 acfg->stats.plt_size += 10;
1591 #elif defined(TARGET_ARM)
1592                 guint8 buf [256];
1593                 guint8 *code;
1594
1595                 code = buf;
1596                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
1597                 ARM_LDR_REG_REG (code, ARMREG_PC, ARMREG_PC, ARMREG_IP);
1598                 emit_bytes (acfg, buf, code - buf);
1599                 emit_symbol_diff (acfg, got_symbol, ".", offset - 4);
1600                 /* Used by mono_aot_get_plt_info_offset */
1601                 emit_int32 (acfg, info_offset);
1602 #elif defined(TARGET_ARM64)
1603                 arm64_emit_plt_entry (acfg, got_symbol, offset, info_offset);
1604 #elif defined(TARGET_POWERPC)
1605                 /* The GOT address is guaranteed to be in r30 by OP_LOAD_GOTADDR */
1606                 emit_unset_mode (acfg);
1607                 fprintf (acfg->fp, "lis 11, %d@h\n", offset);
1608                 fprintf (acfg->fp, "ori 11, 11, %d@l\n", offset);
1609                 fprintf (acfg->fp, "add 11, 11, 30\n");
1610                 fprintf (acfg->fp, "%s 11, 0(11)\n", PPC_LD_OP);
1611 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
1612                 fprintf (acfg->fp, "%s 2, %d(11)\n", PPC_LD_OP, (int)sizeof (gpointer));
1613                 fprintf (acfg->fp, "%s 11, 0(11)\n", PPC_LD_OP);
1614 #endif
1615                 fprintf (acfg->fp, "mtctr 11\n");
1616                 fprintf (acfg->fp, "bctr\n");
1617                 emit_int32 (acfg, info_offset);
1618 #else
1619                 g_assert_not_reached ();
1620 #endif
1621 }
1622
1623 /*
1624  * arch_emit_llvm_plt_entry:
1625  *
1626  *   Same as arch_emit_plt_entry, but handles calls from LLVM generated code.
1627  * This is only needed on arm to handle thumb interop.
1628  */
1629 static void
1630 arch_emit_llvm_plt_entry (MonoAotCompile *acfg, const char *got_symbol, int offset, int info_offset)
1631 {
1632 #if defined(TARGET_ARM)
1633         /* LLVM calls the PLT entries using bl, so these have to be thumb2 */
1634         /* The caller already transitioned to thumb */
1635         /* The code below should be 12 bytes long */
1636         /* clang has trouble encoding these instructions, so emit the binary */
1637 #if 0
1638         fprintf (acfg->fp, "ldr ip, [pc, #8]\n");
1639         /* thumb can't encode ld pc, [pc, ip] */
1640         fprintf (acfg->fp, "add ip, pc, ip\n");
1641         fprintf (acfg->fp, "ldr ip, [ip, #0]\n");
1642         fprintf (acfg->fp, "bx ip\n");
1643 #endif
1644         emit_set_thumb_mode (acfg);
1645         fprintf (acfg->fp, ".4byte 0xc008f8df\n");
1646         fprintf (acfg->fp, ".2byte 0x44fc\n");
1647         fprintf (acfg->fp, ".4byte 0xc000f8dc\n");
1648         fprintf (acfg->fp, ".2byte 0x4760\n");
1649         emit_symbol_diff (acfg, got_symbol, ".", offset + 4);
1650         emit_int32 (acfg, info_offset);
1651         emit_unset_mode (acfg);
1652         emit_set_arm_mode (acfg);
1653 #else
1654         g_assert_not_reached ();
1655 #endif
1656 }
1657
1658 /* Save unwind_info in the module and emit the offset to the information at symbol */
1659 static void save_unwind_info (MonoAotCompile *acfg, char *symbol, GSList *unwind_ops)
1660 {
1661         guint32 uw_offset, encoded_len;
1662         guint8 *encoded;
1663
1664         emit_section_change (acfg, RODATA_SECT, 0);
1665         emit_global (acfg, symbol, FALSE);
1666         emit_label (acfg, symbol);
1667
1668         encoded = mono_unwind_ops_encode (unwind_ops, &encoded_len);
1669         uw_offset = get_unwind_info_offset (acfg, encoded, encoded_len);
1670         g_free (encoded);
1671         emit_int32 (acfg, uw_offset);
1672 }
1673
1674 /*
1675  * arch_emit_specific_trampoline_pages:
1676  *
1677  * Emits a page full of trampolines: each trampoline uses its own address to
1678  * lookup both the generic trampoline code and the data argument.
1679  * This page can be remapped in process multiple times so we can get an
1680  * unlimited number of trampolines.
1681  * Specifically this implementation uses the following trick: two memory pages
1682  * are allocated, with the first containing the data and the second containing the trampolines.
1683  * To reduce trampoline size, each trampoline jumps at the start of the page where a common
1684  * implementation does all the lifting.
1685  * Note that the ARM single trampoline size is 8 bytes, exactly like the data that needs to be stored
1686  * on the arm 32 bit system.
1687  */
1688 static void
1689 arch_emit_specific_trampoline_pages (MonoAotCompile *acfg)
1690 {
1691 #if defined(TARGET_ARM)
1692         guint8 buf [128];
1693         guint8 *code;
1694         guint8 *loop_start, *loop_branch_back, *loop_end_check, *imt_found_check;
1695         int i;
1696         int pagesize = MONO_AOT_TRAMP_PAGE_SIZE;
1697         GSList *unwind_ops = NULL;
1698 #define COMMON_TRAMP_SIZE 16
1699         int count = (pagesize - COMMON_TRAMP_SIZE) / 8;
1700         int imm8, rot_amount;
1701         char symbol [128];
1702
1703         if (!acfg->aot_opts.use_trampolines_page)
1704                 return;
1705
1706         acfg->tramp_page_size = pagesize;
1707
1708         sprintf (symbol, "%sspecific_trampolines_page", acfg->user_symbol_prefix);
1709         emit_alignment (acfg, pagesize);
1710         emit_global (acfg, symbol, TRUE);
1711         emit_label (acfg, symbol);
1712
1713         /* emit the generic code first, the trampoline address + 8 is in the lr register */
1714         code = buf;
1715         imm8 = mono_arm_is_rotated_imm8 (pagesize, &rot_amount);
1716         ARM_SUB_REG_IMM (code, ARMREG_LR, ARMREG_LR, imm8, rot_amount);
1717         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_LR, -8);
1718         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_LR, -4);
1719         ARM_NOP (code);
1720         g_assert (code - buf == COMMON_TRAMP_SIZE);
1721
1722         /* Emit it */
1723         emit_bytes (acfg, buf, code - buf);
1724
1725         for (i = 0; i < count; ++i) {
1726                 code = buf;
1727                 ARM_PUSH (code, 0x5fff);
1728                 ARM_BL (code, 0);
1729                 arm_patch (code - 4, code - COMMON_TRAMP_SIZE - 8 * (i + 1));
1730                 g_assert (code - buf == 8);
1731                 emit_bytes (acfg, buf, code - buf);
1732         }
1733
1734         /* now the rgctx trampolines: each specific trampolines puts in the ip register
1735          * the instruction pointer address, so the generic trampoline at the start of the page
1736          * subtracts 4096 to get to the data page and loads the values
1737          * We again fit the generic trampiline in 16 bytes.
1738          */
1739         sprintf (symbol, "%srgctx_trampolines_page", acfg->user_symbol_prefix);
1740         emit_global (acfg, symbol, TRUE);
1741         emit_label (acfg, symbol);
1742         code = buf;
1743         imm8 = mono_arm_is_rotated_imm8 (pagesize, &rot_amount);
1744         ARM_SUB_REG_IMM (code, ARMREG_IP, ARMREG_IP, imm8, rot_amount);
1745         ARM_LDR_IMM (code, MONO_ARCH_RGCTX_REG, ARMREG_IP, -8);
1746         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, -4);
1747         ARM_NOP (code);
1748         g_assert (code - buf == COMMON_TRAMP_SIZE);
1749
1750         /* Emit it */
1751         emit_bytes (acfg, buf, code - buf);
1752
1753         for (i = 0; i < count; ++i) {
1754                 code = buf;
1755                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_PC);
1756                 ARM_B (code, 0);
1757                 arm_patch (code - 4, code - COMMON_TRAMP_SIZE - 8 * (i + 1));
1758                 g_assert (code - buf == 8);
1759                 emit_bytes (acfg, buf, code - buf);
1760         }
1761
1762         /*
1763          * gsharedvt arg trampolines: see arch_emit_gsharedvt_arg_trampoline ()
1764          */
1765         sprintf (symbol, "%sgsharedvt_arg_trampolines_page", acfg->user_symbol_prefix);
1766         emit_global (acfg, symbol, TRUE);
1767         emit_label (acfg, symbol);
1768         code = buf;
1769         ARM_PUSH (code, (1 << ARMREG_R0) | (1 << ARMREG_R1) | (1 << ARMREG_R2) | (1 << ARMREG_R3));
1770         imm8 = mono_arm_is_rotated_imm8 (pagesize, &rot_amount);
1771         ARM_SUB_REG_IMM (code, ARMREG_IP, ARMREG_IP, imm8, rot_amount);
1772         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_IP, -8);
1773         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, -4);
1774         g_assert (code - buf == COMMON_TRAMP_SIZE);
1775         /* Emit it */
1776         emit_bytes (acfg, buf, code - buf);
1777
1778         for (i = 0; i < count; ++i) {
1779                 code = buf;
1780                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_PC);
1781                 ARM_B (code, 0);
1782                 arm_patch (code - 4, code - COMMON_TRAMP_SIZE - 8 * (i + 1));
1783                 g_assert (code - buf == 8);
1784                 emit_bytes (acfg, buf, code - buf);
1785         }
1786
1787         /* now the imt trampolines: each specific trampolines puts in the ip register
1788          * the instruction pointer address, so the generic trampoline at the start of the page
1789          * subtracts 4096 to get to the data page and loads the values
1790          */
1791 #define IMT_TRAMP_SIZE 72
1792         sprintf (symbol, "%simt_trampolines_page", acfg->user_symbol_prefix);
1793         emit_global (acfg, symbol, TRUE);
1794         emit_label (acfg, symbol);
1795         code = buf;
1796         /* Need at least two free registers, plus a slot for storing the pc */
1797         ARM_PUSH (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_R2));
1798
1799         imm8 = mono_arm_is_rotated_imm8 (pagesize, &rot_amount);
1800         ARM_SUB_REG_IMM (code, ARMREG_IP, ARMREG_IP, imm8, rot_amount);
1801         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_IP, -8);
1802
1803         /* The IMT method is in v5, r0 has the imt array address */
1804
1805         loop_start = code;
1806         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_R0, 0);
1807         ARM_CMP_REG_REG (code, ARMREG_R1, ARMREG_V5);
1808         imt_found_check = code;
1809         ARM_B_COND (code, ARMCOND_EQ, 0);
1810
1811         /* End-of-loop check */
1812         ARM_CMP_REG_IMM (code, ARMREG_R1, 0, 0);
1813         loop_end_check = code;
1814         ARM_B_COND (code, ARMCOND_EQ, 0);
1815
1816         /* Loop footer */
1817         ARM_ADD_REG_IMM8 (code, ARMREG_R0, ARMREG_R0, sizeof (gpointer) * 2);
1818         loop_branch_back = code;
1819         ARM_B (code, 0);
1820         arm_patch (loop_branch_back, loop_start);
1821
1822         /* Match */
1823         arm_patch (imt_found_check, code);
1824         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
1825         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 0);
1826         /* Save it to the third stack slot */
1827         ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, 8);
1828         /* Restore the registers and branch */
1829         ARM_POP (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_PC));
1830
1831         /* No match */
1832         arm_patch (loop_end_check, code);
1833         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
1834         ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, 8);
1835         ARM_POP (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_PC));
1836         ARM_NOP (code);
1837
1838         /* Emit it */
1839         g_assert (code - buf == IMT_TRAMP_SIZE);
1840         emit_bytes (acfg, buf, code - buf);
1841
1842         for (i = 0; i < count; ++i) {
1843                 code = buf;
1844                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_PC);
1845                 ARM_B (code, 0);
1846                 arm_patch (code - 4, code - IMT_TRAMP_SIZE - 8 * (i + 1));
1847                 g_assert (code - buf == 8);
1848                 emit_bytes (acfg, buf, code - buf);
1849         }
1850
1851         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_SPECIFIC] = 16;
1852         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_STATIC_RGCTX] = 16;
1853         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_IMT] = 72;
1854         acfg->tramp_page_code_offsets [MONO_AOT_TRAMP_GSHAREDVT_ARG] = 16;
1855
1856         /* Unwind info for specifc trampolines */
1857         sprintf (symbol, "%sspecific_trampolines_page_gen_p", acfg->user_symbol_prefix);
1858         /* We unwind to the original caller, from the stack, since lr is clobbered */
1859         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 14 * sizeof (mgreg_t));
1860         mono_add_unwind_op_offset (unwind_ops, 0, 0, ARMREG_LR, -4);
1861         save_unwind_info (acfg, symbol, unwind_ops);
1862         mono_free_unwind_info (unwind_ops);
1863
1864         sprintf (symbol, "%sspecific_trampolines_page_sp_p", acfg->user_symbol_prefix);
1865         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1866         mono_add_unwind_op_def_cfa_offset (unwind_ops, 4, 0, 14 * sizeof (mgreg_t));
1867         save_unwind_info (acfg, symbol, unwind_ops);
1868         mono_free_unwind_info (unwind_ops);
1869
1870         /* Unwind info for rgctx trampolines */
1871         sprintf (symbol, "%srgctx_trampolines_page_gen_p", acfg->user_symbol_prefix);
1872         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1873         save_unwind_info (acfg, symbol, unwind_ops);
1874
1875         sprintf (symbol, "%srgctx_trampolines_page_sp_p", acfg->user_symbol_prefix);
1876         save_unwind_info (acfg, symbol, unwind_ops);
1877         mono_free_unwind_info (unwind_ops);
1878
1879         /* Unwind info for gsharedvt trampolines */
1880         sprintf (symbol, "%sgsharedvt_trampolines_page_gen_p", acfg->user_symbol_prefix);
1881         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1882         mono_add_unwind_op_def_cfa_offset (unwind_ops, 4, 0, 4 * sizeof (mgreg_t));
1883         save_unwind_info (acfg, symbol, unwind_ops);
1884         mono_free_unwind_info (unwind_ops);
1885
1886         sprintf (symbol, "%sgsharedvt_trampolines_page_sp_p", acfg->user_symbol_prefix);
1887         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1888         save_unwind_info (acfg, symbol, unwind_ops);
1889         mono_free_unwind_info (unwind_ops);
1890
1891         /* Unwind info for imt trampolines */
1892         sprintf (symbol, "%simt_trampolines_page_gen_p", acfg->user_symbol_prefix);
1893         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1894         mono_add_unwind_op_def_cfa_offset (unwind_ops, 4, 0, 3 * sizeof (mgreg_t));
1895         save_unwind_info (acfg, symbol, unwind_ops);
1896         mono_free_unwind_info (unwind_ops);
1897
1898         sprintf (symbol, "%simt_trampolines_page_sp_p", acfg->user_symbol_prefix);
1899         mono_add_unwind_op_def_cfa (unwind_ops, 0, 0, ARMREG_SP, 0);
1900         save_unwind_info (acfg, symbol, unwind_ops);
1901         mono_free_unwind_info (unwind_ops);
1902 #elif defined(TARGET_ARM64)
1903         arm64_emit_specific_trampoline_pages (acfg);
1904 #endif
1905 }
1906
1907 /*
1908  * arch_emit_specific_trampoline:
1909  *
1910  *   Emit code for a specific trampoline. OFFSET is the offset of the first of
1911  * two GOT slots which contain the generic trampoline address and the trampoline
1912  * argument. TRAMP_SIZE is set to the size of the emitted trampoline.
1913  */
1914 static void
1915 arch_emit_specific_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
1916 {
1917         /*
1918          * The trampolines created here are variations of the specific 
1919          * trampolines created in mono_arch_create_specific_trampoline (). The 
1920          * differences are:
1921          * - the generic trampoline address is taken from a got slot.
1922          * - the offset of the got slot where the trampoline argument is stored
1923          *   is embedded in the instruction stream, and the generic trampoline
1924          *   can load the argument by loading the offset, adding it to the
1925          *   address of the trampoline to get the address of the got slot, and
1926          *   loading the argument from there.
1927          * - all the trampolines should be of the same length.
1928          */
1929 #if defined(TARGET_AMD64)
1930         /* This should be exactly 8 bytes long */
1931         *tramp_size = 8;
1932         /* call *<offset>(%rip) */
1933         if (acfg->llvm) {
1934                 emit_unset_mode (acfg);
1935                 fprintf (acfg->fp, "call *%s+%d(%%rip)\n", acfg->got_symbol, (int)(offset * sizeof (gpointer)));
1936                 emit_zero_bytes (acfg, 2);
1937         } else {
1938                 emit_byte (acfg, '\x41');
1939                 emit_byte (acfg, '\xff');
1940                 emit_byte (acfg, '\x15');
1941                 emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) - 4);
1942                 emit_zero_bytes (acfg, 1);
1943         }
1944 #elif defined(TARGET_ARM)
1945         guint8 buf [128];
1946         guint8 *code;
1947
1948         /* This should be exactly 20 bytes long */
1949         *tramp_size = 20;
1950         code = buf;
1951         ARM_PUSH (code, 0x5fff);
1952         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 4);
1953         /* Load the value from the GOT */
1954         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_PC, ARMREG_R1);
1955         /* Branch to it */
1956         ARM_BLX_REG (code, ARMREG_R1);
1957
1958         g_assert (code - buf == 16);
1959
1960         /* Emit it */
1961         emit_bytes (acfg, buf, code - buf);
1962         /* 
1963          * Only one offset is needed, since the second one would be equal to the
1964          * first one.
1965          */
1966         emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) - 4 + 4);
1967         //emit_symbol_diff (acfg, acfg->got_symbol, ".", ((offset + 1) * sizeof (gpointer)) - 4 + 8);
1968 #elif defined(TARGET_ARM64)
1969         arm64_emit_specific_trampoline (acfg, offset, tramp_size);
1970 #elif defined(TARGET_POWERPC)
1971         guint8 buf [128];
1972         guint8 *code;
1973
1974         *tramp_size = 4;
1975         code = buf;
1976
1977         /*
1978          * PPC has no ip relative addressing, so we need to compute the address
1979          * of the mscorlib got. That is slow and complex, so instead, we store it
1980          * in the second got slot of every aot image. The caller already computed
1981          * the address of its got and placed it into r30.
1982          */
1983         emit_unset_mode (acfg);
1984         /* Load mscorlib got address */
1985         fprintf (acfg->fp, "%s 0, %d(30)\n", PPC_LD_OP, (int)sizeof (gpointer));
1986         /* Load generic trampoline address */
1987         fprintf (acfg->fp, "lis 11, %d@h\n", (int)(offset * sizeof (gpointer)));
1988         fprintf (acfg->fp, "ori 11, 11, %d@l\n", (int)(offset * sizeof (gpointer)));
1989         fprintf (acfg->fp, "%s 11, 11, 0\n", PPC_LDX_OP);
1990 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
1991         fprintf (acfg->fp, "%s 11, 0(11)\n", PPC_LD_OP);
1992 #endif
1993         fprintf (acfg->fp, "mtctr 11\n");
1994         /* Load trampoline argument */
1995         /* On ppc, we pass it normally to the generic trampoline */
1996         fprintf (acfg->fp, "lis 11, %d@h\n", (int)((offset + 1) * sizeof (gpointer)));
1997         fprintf (acfg->fp, "ori 11, 11, %d@l\n", (int)((offset + 1) * sizeof (gpointer)));
1998         fprintf (acfg->fp, "%s 0, 11, 0\n", PPC_LDX_OP);
1999         /* Branch to generic trampoline */
2000         fprintf (acfg->fp, "bctr\n");
2001
2002 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
2003         *tramp_size = 10 * 4;
2004 #else
2005         *tramp_size = 9 * 4;
2006 #endif
2007 #elif defined(TARGET_X86)
2008         guint8 buf [128];
2009         guint8 *code;
2010
2011         /* Similar to the PPC code above */
2012
2013         /* FIXME: Could this clobber the register needed by get_vcall_slot () ? */
2014
2015         code = buf;
2016         /* Load mscorlib got address */
2017         x86_mov_reg_membase (code, X86_ECX, MONO_ARCH_GOT_REG, sizeof (gpointer), 4);
2018         /* Push trampoline argument */
2019         x86_push_membase (code, X86_ECX, (offset + 1) * sizeof (gpointer));
2020         /* Load generic trampoline address */
2021         x86_mov_reg_membase (code, X86_ECX, X86_ECX, offset * sizeof (gpointer), 4);
2022         /* Branch to generic trampoline */
2023         x86_jump_reg (code, X86_ECX);
2024
2025         emit_bytes (acfg, buf, code - buf);
2026
2027         *tramp_size = 17;
2028         g_assert (code - buf == *tramp_size);
2029 #else
2030         g_assert_not_reached ();
2031 #endif
2032 }
2033
2034 /*
2035  * arch_emit_unbox_trampoline:
2036  *
2037  *   Emit code for the unbox trampoline for METHOD used in the full-aot case.
2038  * CALL_TARGET is the symbol pointing to the native code of METHOD.
2039  */
2040 static void
2041 arch_emit_unbox_trampoline (MonoAotCompile *acfg, MonoCompile *cfg, MonoMethod *method, const char *call_target)
2042 {
2043 #if defined(TARGET_AMD64)
2044         guint8 buf [32];
2045         guint8 *code;
2046         int this_reg;
2047
2048         this_reg = mono_arch_get_this_arg_reg (NULL);
2049         code = buf;
2050         amd64_alu_reg_imm (code, X86_ADD, this_reg, sizeof (MonoObject));
2051
2052         emit_bytes (acfg, buf, code - buf);
2053         /* jump <method> */
2054         if (acfg->llvm) {
2055                 emit_unset_mode (acfg);
2056                 fprintf (acfg->fp, "jmp %s\n", call_target);
2057         } else {
2058                 emit_byte (acfg, '\xe9');
2059                 emit_symbol_diff (acfg, call_target, ".", -4);
2060         }
2061 #elif defined(TARGET_X86)
2062         guint8 buf [32];
2063         guint8 *code;
2064         int this_pos = 4;
2065
2066         code = buf;
2067
2068         x86_alu_membase_imm (code, X86_ADD, X86_ESP, this_pos, sizeof (MonoObject));
2069
2070         emit_bytes (acfg, buf, code - buf);
2071
2072         /* jump <method> */
2073         emit_byte (acfg, '\xe9');
2074         emit_symbol_diff (acfg, call_target, ".", -4);
2075 #elif defined(TARGET_ARM)
2076         guint8 buf [128];
2077         guint8 *code;
2078
2079         if (acfg->thumb_mixed && cfg->compile_llvm) {
2080                 fprintf (acfg->fp, "add r0, r0, #%d\n", (int)sizeof (MonoObject));
2081                 fprintf (acfg->fp, "b %s\n", call_target);
2082                 fprintf (acfg->fp, ".arm\n");
2083                 fprintf (acfg->fp, ".align 2\n");
2084                 return;
2085         }
2086
2087         code = buf;
2088
2089         ARM_ADD_REG_IMM8 (code, ARMREG_R0, ARMREG_R0, sizeof (MonoObject));
2090
2091         emit_bytes (acfg, buf, code - buf);
2092         /* jump to method */
2093         if (acfg->thumb_mixed && cfg->compile_llvm)
2094                 fprintf (acfg->fp, "\n\tbx %s\n", call_target);
2095         else
2096                 fprintf (acfg->fp, "\n\tb %s\n", call_target);
2097 #elif defined(TARGET_ARM64)
2098         arm64_emit_unbox_trampoline (acfg, cfg, method, call_target);
2099 #elif defined(TARGET_POWERPC)
2100         int this_pos = 3;
2101
2102         fprintf (acfg->fp, "\n\taddi %d, %d, %d\n", this_pos, this_pos, (int)sizeof (MonoObject));
2103         fprintf (acfg->fp, "\n\tb %s\n", call_target);
2104 #else
2105         g_assert_not_reached ();
2106 #endif
2107 }
2108
2109 /*
2110  * arch_emit_static_rgctx_trampoline:
2111  *
2112  *   Emit code for a static rgctx trampoline. OFFSET is the offset of the first of
2113  * two GOT slots which contain the rgctx argument, and the method to jump to.
2114  * TRAMP_SIZE is set to the size of the emitted trampoline.
2115  * These kinds of trampolines cannot be enumerated statically, since there could
2116  * be one trampoline per method instantiation, so we emit the same code for all
2117  * trampolines, and parameterize them using two GOT slots.
2118  */
2119 static void
2120 arch_emit_static_rgctx_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
2121 {
2122 #if defined(TARGET_AMD64)
2123         /* This should be exactly 13 bytes long */
2124         *tramp_size = 13;
2125
2126         if (acfg->llvm) {
2127                 emit_unset_mode (acfg);
2128                 fprintf (acfg->fp, "mov %s+%d(%%rip), %%r10\n", acfg->got_symbol, (int)(offset * sizeof (gpointer)));
2129                 fprintf (acfg->fp, "jmp *%s+%d(%%rip)\n", acfg->got_symbol, (int)((offset + 1) * sizeof (gpointer)));
2130         } else {
2131                 /* mov <OFFSET>(%rip), %r10 */
2132                 emit_byte (acfg, '\x4d');
2133                 emit_byte (acfg, '\x8b');
2134                 emit_byte (acfg, '\x15');
2135                 emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) - 4);
2136
2137                 /* jmp *<offset>(%rip) */
2138                 emit_byte (acfg, '\xff');
2139                 emit_byte (acfg, '\x25');
2140                 emit_symbol_diff (acfg, acfg->got_symbol, ".", ((offset + 1) * sizeof (gpointer)) - 4);
2141         }
2142 #elif defined(TARGET_ARM)
2143         guint8 buf [128];
2144         guint8 *code;
2145
2146         /* This should be exactly 24 bytes long */
2147         *tramp_size = 24;
2148         code = buf;
2149         /* Load rgctx value */
2150         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 8);
2151         ARM_LDR_REG_REG (code, MONO_ARCH_RGCTX_REG, ARMREG_PC, ARMREG_IP);
2152         /* Load branch addr + branch */
2153         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 4);
2154         ARM_LDR_REG_REG (code, ARMREG_PC, ARMREG_PC, ARMREG_IP);
2155
2156         g_assert (code - buf == 16);
2157
2158         /* Emit it */
2159         emit_bytes (acfg, buf, code - buf);
2160         emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) - 4 + 8);
2161         emit_symbol_diff (acfg, acfg->got_symbol, ".", ((offset + 1) * sizeof (gpointer)) - 4 + 4);
2162 #elif defined(TARGET_ARM64)
2163         arm64_emit_static_rgctx_trampoline (acfg, offset, tramp_size);
2164 #elif defined(TARGET_POWERPC)
2165         guint8 buf [128];
2166         guint8 *code;
2167
2168         *tramp_size = 4;
2169         code = buf;
2170
2171         /*
2172          * PPC has no ip relative addressing, so we need to compute the address
2173          * of the mscorlib got. That is slow and complex, so instead, we store it
2174          * in the second got slot of every aot image. The caller already computed
2175          * the address of its got and placed it into r30.
2176          */
2177         emit_unset_mode (acfg);
2178         /* Load mscorlib got address */
2179         fprintf (acfg->fp, "%s 0, %d(30)\n", PPC_LD_OP, (int)sizeof (gpointer));
2180         /* Load rgctx */
2181         fprintf (acfg->fp, "lis 11, %d@h\n", (int)(offset * sizeof (gpointer)));
2182         fprintf (acfg->fp, "ori 11, 11, %d@l\n", (int)(offset * sizeof (gpointer)));
2183         fprintf (acfg->fp, "%s %d, 11, 0\n", PPC_LDX_OP, MONO_ARCH_RGCTX_REG);
2184         /* Load target address */
2185         fprintf (acfg->fp, "lis 11, %d@h\n", (int)((offset + 1) * sizeof (gpointer)));
2186         fprintf (acfg->fp, "ori 11, 11, %d@l\n", (int)((offset + 1) * sizeof (gpointer)));
2187         fprintf (acfg->fp, "%s 11, 11, 0\n", PPC_LDX_OP);
2188 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
2189         fprintf (acfg->fp, "%s 2, %d(11)\n", PPC_LD_OP, (int)sizeof (gpointer));
2190         fprintf (acfg->fp, "%s 11, 0(11)\n", PPC_LD_OP);
2191 #endif
2192         fprintf (acfg->fp, "mtctr 11\n");
2193         /* Branch to the target address */
2194         fprintf (acfg->fp, "bctr\n");
2195
2196 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
2197         *tramp_size = 11 * 4;
2198 #else
2199         *tramp_size = 9 * 4;
2200 #endif
2201
2202 #elif defined(TARGET_X86)
2203         guint8 buf [128];
2204         guint8 *code;
2205
2206         /* Similar to the PPC code above */
2207
2208         g_assert (MONO_ARCH_RGCTX_REG != X86_ECX);
2209
2210         code = buf;
2211         /* Load mscorlib got address */
2212         x86_mov_reg_membase (code, X86_ECX, MONO_ARCH_GOT_REG, sizeof (gpointer), 4);
2213         /* Load arg */
2214         x86_mov_reg_membase (code, MONO_ARCH_RGCTX_REG, X86_ECX, offset * sizeof (gpointer), 4);
2215         /* Branch to the target address */
2216         x86_jump_membase (code, X86_ECX, (offset + 1) * sizeof (gpointer));
2217
2218         emit_bytes (acfg, buf, code - buf);
2219
2220         *tramp_size = 15;
2221         g_assert (code - buf == *tramp_size);
2222 #else
2223         g_assert_not_reached ();
2224 #endif
2225 }       
2226
2227 /*
2228  * arch_emit_imt_trampoline:
2229  *
2230  *   Emit an IMT trampoline usable in full-aot mode. The trampoline uses 1 got slot which
2231  * points to an array of pointer pairs. The pairs of the form [key, ptr], where
2232  * key is the IMT key, and ptr holds the address of a memory location holding
2233  * the address to branch to if the IMT arg matches the key. The array is 
2234  * terminated by a pair whose key is NULL, and whose ptr is the address of the 
2235  * fail_tramp.
2236  * TRAMP_SIZE is set to the size of the emitted trampoline.
2237  */
2238 static void
2239 arch_emit_imt_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
2240 {
2241 #if defined(TARGET_AMD64)
2242         guint8 *buf, *code;
2243         guint8 *labels [16];
2244         guint8 mov_buf[3];
2245         guint8 *mov_buf_ptr = mov_buf;
2246
2247         const int kSizeOfMove = 7;
2248
2249         code = buf = (guint8 *)g_malloc (256);
2250
2251         /* FIXME: Optimize this, i.e. use binary search etc. */
2252         /* Maybe move the body into a separate function (slower, but much smaller) */
2253
2254         /* MONO_ARCH_IMT_SCRATCH_REG is a free register */
2255
2256         if (acfg->llvm) {
2257                 emit_unset_mode (acfg);
2258                 fprintf (acfg->fp, "mov %s+%d(%%rip), %s\n", acfg->got_symbol, (int)(offset * sizeof (gpointer)), mono_arch_regname (MONO_ARCH_IMT_SCRATCH_REG));
2259         }
2260
2261         labels [0] = code;
2262         amd64_alu_membase_imm (code, X86_CMP, MONO_ARCH_IMT_SCRATCH_REG, 0, 0);
2263         labels [1] = code;
2264         amd64_branch8 (code, X86_CC_Z, 0, FALSE);
2265
2266         /* Check key */
2267         amd64_alu_membase_reg_size (code, X86_CMP, MONO_ARCH_IMT_SCRATCH_REG, 0, MONO_ARCH_IMT_REG, sizeof (gpointer));
2268         labels [2] = code;
2269         amd64_branch8 (code, X86_CC_Z, 0, FALSE);
2270
2271         /* Loop footer */
2272         amd64_alu_reg_imm (code, X86_ADD, MONO_ARCH_IMT_SCRATCH_REG, 2 * sizeof (gpointer));
2273         amd64_jump_code (code, labels [0]);
2274
2275         /* Match */
2276         mono_amd64_patch (labels [2], code);
2277         amd64_mov_reg_membase (code, MONO_ARCH_IMT_SCRATCH_REG, MONO_ARCH_IMT_SCRATCH_REG, sizeof (gpointer), sizeof (gpointer));
2278         amd64_jump_membase (code, MONO_ARCH_IMT_SCRATCH_REG, 0);
2279
2280         /* No match */
2281         mono_amd64_patch (labels [1], code);
2282         /* Load fail tramp */
2283         amd64_alu_reg_imm (code, X86_ADD, MONO_ARCH_IMT_SCRATCH_REG, sizeof (gpointer));
2284         /* Check if there is a fail tramp */
2285         amd64_alu_membase_imm (code, X86_CMP, MONO_ARCH_IMT_SCRATCH_REG, 0, 0);
2286         labels [3] = code;
2287         amd64_branch8 (code, X86_CC_Z, 0, FALSE);
2288         /* Jump to fail tramp */
2289         amd64_jump_membase (code, MONO_ARCH_IMT_SCRATCH_REG, 0);
2290
2291         /* Fail */
2292         mono_amd64_patch (labels [3], code);
2293         x86_breakpoint (code);
2294
2295         if (!acfg->llvm) {
2296                 /* mov <OFFSET>(%rip), MONO_ARCH_IMT_SCRATCH_REG */
2297                 amd64_emit_rex (mov_buf_ptr, sizeof(gpointer), MONO_ARCH_IMT_SCRATCH_REG, 0, AMD64_RIP);
2298                 *(mov_buf_ptr)++ = (unsigned char)0x8b; /* mov opcode */
2299                 x86_address_byte (mov_buf_ptr, 0, MONO_ARCH_IMT_SCRATCH_REG & 0x7, 5);
2300                 emit_bytes (acfg, mov_buf, mov_buf_ptr - mov_buf);
2301                 emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) - 4);
2302         }
2303         emit_bytes (acfg, buf, code - buf);
2304
2305         *tramp_size = code - buf + kSizeOfMove;
2306
2307         g_free (buf);
2308
2309 #elif defined(TARGET_X86)
2310         guint8 *buf, *code;
2311         guint8 *labels [16];
2312
2313         code = buf = g_malloc (256);
2314
2315         /* Allocate a temporary stack slot */
2316         x86_push_reg (code, X86_EAX);
2317         /* Save EAX */
2318         x86_push_reg (code, X86_EAX);
2319
2320         /* Load mscorlib got address */
2321         x86_mov_reg_membase (code, X86_EAX, MONO_ARCH_GOT_REG, sizeof (gpointer), 4);
2322         /* Load arg */
2323         x86_mov_reg_membase (code, X86_EAX, X86_EAX, offset * sizeof (gpointer), 4);
2324
2325         labels [0] = code;
2326         x86_alu_membase_imm (code, X86_CMP, X86_EAX, 0, 0);
2327         labels [1] = code;
2328         x86_branch8 (code, X86_CC_Z, FALSE, 0);
2329
2330         /* Check key */
2331         x86_alu_membase_reg (code, X86_CMP, X86_EAX, 0, MONO_ARCH_IMT_REG);
2332         labels [2] = code;
2333         x86_branch8 (code, X86_CC_Z, FALSE, 0);
2334
2335         /* Loop footer */
2336         x86_alu_reg_imm (code, X86_ADD, X86_EAX, 2 * sizeof (gpointer));
2337         x86_jump_code (code, labels [0]);
2338
2339         /* Match */
2340         mono_x86_patch (labels [2], code);
2341         x86_mov_reg_membase (code, X86_EAX, X86_EAX, sizeof (gpointer), 4);
2342         x86_mov_reg_membase (code, X86_EAX, X86_EAX, 0, 4);
2343         /* Save the target address to the temporary stack location */
2344         x86_mov_membase_reg (code, X86_ESP, 4, X86_EAX, 4);
2345         /* Restore EAX */
2346         x86_pop_reg (code, X86_EAX);
2347         /* Jump to the target address */
2348         x86_ret (code);
2349
2350         /* No match */
2351         mono_x86_patch (labels [1], code);
2352         /* Load fail tramp */
2353         x86_mov_reg_membase (code, X86_EAX, X86_EAX, sizeof (gpointer), 4);
2354         x86_alu_membase_imm (code, X86_CMP, X86_EAX, 0, 0);
2355         labels [3] = code;
2356         x86_branch8 (code, X86_CC_Z, FALSE, 0);
2357         /* Jump to fail tramp */
2358         x86_mov_membase_reg (code, X86_ESP, 4, X86_EAX, 4);
2359         x86_pop_reg (code, X86_EAX);
2360         x86_ret (code);
2361
2362         /* Fail */
2363         mono_x86_patch (labels [3], code);
2364         x86_breakpoint (code);
2365
2366         emit_bytes (acfg, buf, code - buf);
2367         
2368         *tramp_size = code - buf;
2369
2370         g_free (buf);
2371
2372 #elif defined(TARGET_ARM)
2373         guint8 buf [128];
2374         guint8 *code, *code2, *labels [16];
2375
2376         code = buf;
2377
2378         /* The IMT method is in v5 */
2379
2380         /* Need at least two free registers, plus a slot for storing the pc */
2381         ARM_PUSH (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_R2));
2382         labels [0] = code;
2383         /* Load the parameter from the GOT */
2384         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
2385         ARM_LDR_REG_REG (code, ARMREG_R0, ARMREG_PC, ARMREG_R0);
2386
2387         labels [1] = code;
2388         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_R0, 0);
2389         ARM_CMP_REG_REG (code, ARMREG_R1, ARMREG_V5);
2390         labels [2] = code;
2391         ARM_B_COND (code, ARMCOND_EQ, 0);
2392
2393         /* End-of-loop check */
2394         ARM_CMP_REG_IMM (code, ARMREG_R1, 0, 0);
2395         labels [3] = code;
2396         ARM_B_COND (code, ARMCOND_EQ, 0);
2397
2398         /* Loop footer */
2399         ARM_ADD_REG_IMM8 (code, ARMREG_R0, ARMREG_R0, sizeof (gpointer) * 2);
2400         labels [4] = code;
2401         ARM_B (code, 0);
2402         arm_patch (labels [4], labels [1]);
2403
2404         /* Match */
2405         arm_patch (labels [2], code);
2406         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
2407         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 0);
2408         /* Save it to the third stack slot */
2409         ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, 8);
2410         /* Restore the registers and branch */
2411         ARM_POP (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_PC));
2412
2413         /* No match */
2414         arm_patch (labels [3], code);
2415         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
2416         ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, 8);
2417         ARM_POP (code, (1 << ARMREG_R0)|(1 << ARMREG_R1)|(1 << ARMREG_PC));
2418
2419         /* Fixup offset */
2420         code2 = labels [0];
2421         ARM_LDR_IMM (code2, ARMREG_R0, ARMREG_PC, (code - (labels [0] + 8)));
2422
2423         emit_bytes (acfg, buf, code - buf);
2424         emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) + (code - (labels [0] + 8)) - 4);
2425
2426         *tramp_size = code - buf + 4;
2427 #elif defined(TARGET_ARM64)
2428         arm64_emit_imt_trampoline (acfg, offset, tramp_size);
2429 #elif defined(TARGET_POWERPC)
2430         guint8 buf [128];
2431         guint8 *code, *labels [16];
2432
2433         code = buf;
2434
2435         /* Load the mscorlib got address */
2436         ppc_ldptr (code, ppc_r12, sizeof (gpointer), ppc_r30);
2437         /* Load the parameter from the GOT */
2438         ppc_load (code, ppc_r0, offset * sizeof (gpointer));
2439         ppc_ldptr_indexed (code, ppc_r12, ppc_r12, ppc_r0);
2440
2441         /* Load and check key */
2442         labels [1] = code;
2443         ppc_ldptr (code, ppc_r0, 0, ppc_r12);
2444         ppc_cmp (code, 0, sizeof (gpointer) == 8 ? 1 : 0, ppc_r0, MONO_ARCH_IMT_REG);
2445         labels [2] = code;
2446         ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
2447
2448         /* End-of-loop check */
2449         ppc_cmpi (code, 0, sizeof (gpointer) == 8 ? 1 : 0, ppc_r0, 0);
2450         labels [3] = code;
2451         ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
2452
2453         /* Loop footer */
2454         ppc_addi (code, ppc_r12, ppc_r12, 2 * sizeof (gpointer));
2455         labels [4] = code;
2456         ppc_b (code, 0);
2457         mono_ppc_patch (labels [4], labels [1]);
2458
2459         /* Match */
2460         mono_ppc_patch (labels [2], code);
2461         ppc_ldptr (code, ppc_r12, sizeof (gpointer), ppc_r12);
2462         /* r12 now contains the value of the vtable slot */
2463         /* this is not a function descriptor on ppc64 */
2464         ppc_ldptr (code, ppc_r12, 0, ppc_r12);
2465         ppc_mtctr (code, ppc_r12);
2466         ppc_bcctr (code, PPC_BR_ALWAYS, 0);
2467
2468         /* Fail */
2469         mono_ppc_patch (labels [3], code);
2470         /* FIXME: */
2471         ppc_break (code);
2472
2473         *tramp_size = code - buf;
2474
2475         emit_bytes (acfg, buf, code - buf);
2476 #else
2477         g_assert_not_reached ();
2478 #endif
2479 }
2480
2481
2482 #if defined (TARGET_AMD64)
2483
2484 static void
2485 amd64_emit_load_got_slot (MonoAotCompile *acfg, int dreg, int got_slot)
2486 {
2487
2488         g_assert (acfg->fp);
2489         emit_unset_mode (acfg);
2490
2491         fprintf (acfg->fp, "mov %s+%d(%%rip), %s\n", acfg->got_symbol, (unsigned int) ((got_slot * sizeof (gpointer))), mono_arch_regname (dreg));
2492 }
2493
2494 #endif
2495
2496
2497 /*
2498  * arch_emit_gsharedvt_arg_trampoline:
2499  *
2500  *   Emit code for a gsharedvt arg trampoline. OFFSET is the offset of the first of
2501  * two GOT slots which contain the argument, and the code to jump to.
2502  * TRAMP_SIZE is set to the size of the emitted trampoline.
2503  * These kinds of trampolines cannot be enumerated statically, since there could
2504  * be one trampoline per method instantiation, so we emit the same code for all
2505  * trampolines, and parameterize them using two GOT slots.
2506  */
2507 static void
2508 arch_emit_gsharedvt_arg_trampoline (MonoAotCompile *acfg, int offset, int *tramp_size)
2509 {
2510 #if defined(TARGET_X86)
2511         guint8 buf [128];
2512         guint8 *code;
2513
2514         /* Similar to the PPC code above */
2515
2516         g_assert (MONO_ARCH_RGCTX_REG != X86_ECX);
2517
2518         code = buf;
2519         /* Load mscorlib got address */
2520         x86_mov_reg_membase (code, X86_ECX, MONO_ARCH_GOT_REG, sizeof (gpointer), 4);
2521         /* Load arg */
2522         x86_mov_reg_membase (code, X86_EAX, X86_ECX, offset * sizeof (gpointer), 4);
2523         /* Branch to the target address */
2524         x86_jump_membase (code, X86_ECX, (offset + 1) * sizeof (gpointer));
2525
2526         emit_bytes (acfg, buf, code - buf);
2527
2528         *tramp_size = 15;
2529         g_assert (code - buf == *tramp_size);
2530 #elif defined(TARGET_ARM)
2531         guint8 buf [128];
2532         guint8 *code;
2533
2534         /* The same as mono_arch_get_gsharedvt_arg_trampoline (), but for AOT */
2535         /* Similar to arch_emit_specific_trampoline () */
2536         *tramp_size = 24;
2537         code = buf;
2538         ARM_PUSH (code, (1 << ARMREG_R0) | (1 << ARMREG_R1) | (1 << ARMREG_R2) | (1 << ARMREG_R3));
2539         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 8);
2540         /* Load the arg value from the GOT */
2541         ARM_LDR_REG_REG (code, ARMREG_R0, ARMREG_PC, ARMREG_R1);
2542         /* Load the addr from the GOT */
2543         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_PC, ARMREG_R1);
2544         /* Branch to it */
2545         ARM_BX (code, ARMREG_R1);
2546
2547         g_assert (code - buf == 20);
2548
2549         /* Emit it */
2550         emit_bytes (acfg, buf, code - buf);
2551         emit_symbol_diff (acfg, acfg->got_symbol, ".", (offset * sizeof (gpointer)) + 4);
2552 #elif defined(TARGET_ARM64)
2553         arm64_emit_gsharedvt_arg_trampoline (acfg, offset, tramp_size);
2554 #elif defined (TARGET_AMD64)
2555
2556         amd64_emit_load_got_slot (acfg, AMD64_RAX, offset);
2557         amd64_emit_load_got_slot (acfg, MONO_ARCH_IMT_SCRATCH_REG, offset + 1);
2558         g_assert (AMD64_R11 == MONO_ARCH_IMT_SCRATCH_REG);
2559         fprintf (acfg->fp, "jmp *%%r11\n");
2560
2561         *tramp_size = 0x11;
2562 #else
2563         g_assert_not_reached ();
2564 #endif
2565 }       
2566
2567 /* END OF ARCH SPECIFIC CODE */
2568
2569 static guint32
2570 mono_get_field_token (MonoClassField *field) 
2571 {
2572         MonoClass *klass = field->parent;
2573         int i;
2574
2575         int fcount = mono_class_get_field_count (klass);
2576         for (i = 0; i < fcount; ++i) {
2577                 if (field == &klass->fields [i])
2578                         return MONO_TOKEN_FIELD_DEF | (mono_class_get_first_field_idx (klass) + 1 + i);
2579         }
2580
2581         g_assert_not_reached ();
2582         return 0;
2583 }
2584
2585 static inline void
2586 encode_value (gint32 value, guint8 *buf, guint8 **endbuf)
2587 {
2588         guint8 *p = buf;
2589
2590         //printf ("ENCODE: %d 0x%x.\n", value, value);
2591
2592         /* 
2593          * Same encoding as the one used in the metadata, extended to handle values
2594          * greater than 0x1fffffff.
2595          */
2596         if ((value >= 0) && (value <= 127))
2597                 *p++ = value;
2598         else if ((value >= 0) && (value <= 16383)) {
2599                 p [0] = 0x80 | (value >> 8);
2600                 p [1] = value & 0xff;
2601                 p += 2;
2602         } else if ((value >= 0) && (value <= 0x1fffffff)) {
2603                 p [0] = (value >> 24) | 0xc0;
2604                 p [1] = (value >> 16) & 0xff;
2605                 p [2] = (value >> 8) & 0xff;
2606                 p [3] = value & 0xff;
2607                 p += 4;
2608         }
2609         else {
2610                 p [0] = 0xff;
2611                 p [1] = (value >> 24) & 0xff;
2612                 p [2] = (value >> 16) & 0xff;
2613                 p [3] = (value >> 8) & 0xff;
2614                 p [4] = value & 0xff;
2615                 p += 5;
2616         }
2617         if (endbuf)
2618                 *endbuf = p;
2619 }
2620
2621 static void
2622 stream_init (MonoDynamicStream *sh)
2623 {
2624         sh->index = 0;
2625         sh->alloc_size = 4096;
2626         sh->data = (char *)g_malloc (4096);
2627
2628         /* So offsets are > 0 */
2629         sh->data [0] = 0;
2630         sh->index ++;
2631 }
2632
2633 static void
2634 make_room_in_stream (MonoDynamicStream *stream, int size)
2635 {
2636         if (size <= stream->alloc_size)
2637                 return;
2638         
2639         while (stream->alloc_size <= size) {
2640                 if (stream->alloc_size < 4096)
2641                         stream->alloc_size = 4096;
2642                 else
2643                         stream->alloc_size *= 2;
2644         }
2645         
2646         stream->data = (char *)g_realloc (stream->data, stream->alloc_size);
2647 }
2648
2649 static guint32
2650 add_stream_data (MonoDynamicStream *stream, const char *data, guint32 len)
2651 {
2652         guint32 idx;
2653         
2654         make_room_in_stream (stream, stream->index + len);
2655         memcpy (stream->data + stream->index, data, len);
2656         idx = stream->index;
2657         stream->index += len;
2658         return idx;
2659 }
2660
2661 /*
2662  * add_to_blob:
2663  *
2664  *   Add data to the binary blob inside the aot image. Returns the offset inside the
2665  * blob where the data was stored.
2666  */
2667 static guint32
2668 add_to_blob (MonoAotCompile *acfg, const guint8 *data, guint32 data_len)
2669 {
2670         g_assert (!acfg->blob_closed);
2671
2672         if (acfg->blob.alloc_size == 0)
2673                 stream_init (&acfg->blob);
2674
2675         return add_stream_data (&acfg->blob, (char*)data, data_len);
2676 }
2677
2678 static guint32
2679 add_to_blob_aligned (MonoAotCompile *acfg, const guint8 *data, guint32 data_len, guint32 align)
2680 {
2681         char buf [4] = {0};
2682         guint32 count;
2683
2684         if (acfg->blob.alloc_size == 0)
2685                 stream_init (&acfg->blob);
2686
2687         count = acfg->blob.index % align;
2688
2689         /* we assume the stream data will be aligned */
2690         if (count)
2691                 add_stream_data (&acfg->blob, buf, 4 - count);
2692
2693         return add_stream_data (&acfg->blob, (char*)data, data_len);
2694 }
2695
2696 /* Emit a table of data into the aot image */
2697 static void
2698 emit_aot_data (MonoAotCompile *acfg, MonoAotFileTable table, const char *symbol, guint8 *data, int size)
2699 {
2700         if (acfg->data_outfile) {
2701                 acfg->table_offsets [(int)table] = acfg->datafile_offset;
2702                 fwrite (data,1, size, acfg->data_outfile);
2703                 acfg->datafile_offset += size;
2704                 // align the data to 8 bytes. Put zeros in the file (so that every build results in consistent output).
2705                 int align = 8 - size % 8;
2706                 acfg->datafile_offset += align;
2707                 guint8 align_buf [16];
2708                 memset (&align_buf, 0, sizeof (align_buf));
2709                 fwrite (align_buf, align, 1, acfg->data_outfile);
2710         } else if (acfg->llvm) {
2711                 mono_llvm_emit_aot_data (symbol, data, size);
2712         } else {
2713                 emit_section_change (acfg, RODATA_SECT, 0);
2714                 emit_alignment (acfg, 8);
2715                 emit_label (acfg, symbol);
2716                 emit_bytes (acfg, data, size);
2717         }
2718 }
2719
2720 /*
2721  * emit_offset_table:
2722  *
2723  *   Emit a table of increasing offsets in a compact form using differential encoding.
2724  * There is an index entry for each GROUP_SIZE number of entries. The greater the
2725  * group size, the more compact the table becomes, but the slower it becomes to compute
2726  * a given entry. Returns the size of the table.
2727  */
2728 static guint32
2729 emit_offset_table (MonoAotCompile *acfg, const char *symbol, MonoAotFileTable table, int noffsets, int group_size, gint32 *offsets)
2730 {
2731         gint32 current_offset;
2732         int i, buf_size, ngroups, index_entry_size;
2733         guint8 *p, *buf;
2734         guint8 *data_p, *data_buf;
2735         guint32 *index_offsets;
2736
2737         ngroups = (noffsets + (group_size - 1)) / group_size;
2738
2739         index_offsets = g_new0 (guint32, ngroups);
2740
2741         buf_size = noffsets * 4;
2742         p = buf = (guint8 *)g_malloc0 (buf_size);
2743
2744         current_offset = 0;
2745         for (i = 0; i < noffsets; ++i) {
2746                 //printf ("D: %d -> %d\n", i, offsets [i]);
2747                 if ((i % group_size) == 0) {
2748                         index_offsets [i / group_size] = p - buf;
2749                         /* Emit the full value for these entries */
2750                         encode_value (offsets [i], p, &p);
2751                 } else {
2752                         /* The offsets are allowed to be non-increasing */
2753                         //g_assert (offsets [i] >= current_offset);
2754                         encode_value (offsets [i] - current_offset, p, &p);
2755                 }
2756                 current_offset = offsets [i];
2757         }
2758         data_buf = buf;
2759         data_p = p;
2760
2761         if (ngroups && index_offsets [ngroups - 1] < 65000)
2762                 index_entry_size = 2;
2763         else
2764                 index_entry_size = 4;
2765
2766         buf_size = (data_p - data_buf) + (ngroups * 4) + 16;
2767         p = buf = (guint8 *)g_malloc0 (buf_size);
2768
2769         /* Emit the header */
2770         encode_int (noffsets, p, &p);
2771         encode_int (group_size, p, &p);
2772         encode_int (ngroups, p, &p);
2773         encode_int (index_entry_size, p, &p);
2774
2775         /* Emit the index */
2776         for (i = 0; i < ngroups; ++i) {
2777                 if (index_entry_size == 2)
2778                         encode_int16 (index_offsets [i], p, &p);
2779                 else
2780                         encode_int (index_offsets [i], p, &p);
2781         }
2782         /* Emit the data */
2783         memcpy (p, data_buf, data_p - data_buf);
2784         p += data_p - data_buf;
2785
2786         g_assert (p - buf <= buf_size);
2787
2788         emit_aot_data (acfg, table, symbol, buf, p - buf);
2789
2790         g_free (buf);
2791         g_free (data_buf);
2792
2793     return (int)(p - buf);
2794 }
2795
2796 static guint32
2797 get_image_index (MonoAotCompile *cfg, MonoImage *image)
2798 {
2799         guint32 index;
2800
2801         index = GPOINTER_TO_UINT (g_hash_table_lookup (cfg->image_hash, image));
2802         if (index)
2803                 return index - 1;
2804         else {
2805                 index = g_hash_table_size (cfg->image_hash);
2806                 g_hash_table_insert (cfg->image_hash, image, GUINT_TO_POINTER (index + 1));
2807                 g_ptr_array_add (cfg->image_table, image);
2808                 return index;
2809         }
2810 }
2811
2812 static guint32
2813 find_typespec_for_class (MonoAotCompile *acfg, MonoClass *klass)
2814 {
2815         int i;
2816         int len = acfg->image->tables [MONO_TABLE_TYPESPEC].rows;
2817
2818         /* FIXME: Search referenced images as well */
2819         if (!acfg->typespec_classes) {
2820                 acfg->typespec_classes = g_hash_table_new (NULL, NULL);
2821                 for (i = 0; i < len; i++) {
2822                         MonoError error;
2823                         int typespec = MONO_TOKEN_TYPE_SPEC | (i + 1);
2824                         MonoClass *klass_key = mono_class_get_and_inflate_typespec_checked (acfg->image, typespec, NULL, &error);
2825                         if (!is_ok (&error)) {
2826                                 mono_error_cleanup (&error);
2827                                 continue;
2828                         }
2829                         g_hash_table_insert (acfg->typespec_classes, klass_key, GINT_TO_POINTER (typespec));
2830                 }
2831         }
2832         return GPOINTER_TO_INT (g_hash_table_lookup (acfg->typespec_classes, klass));
2833 }
2834
2835 static void
2836 encode_method_ref (MonoAotCompile *acfg, MonoMethod *method, guint8 *buf, guint8 **endbuf);
2837
2838 static void
2839 encode_klass_ref (MonoAotCompile *acfg, MonoClass *klass, guint8 *buf, guint8 **endbuf);
2840
2841 static void
2842 encode_ginst (MonoAotCompile *acfg, MonoGenericInst *inst, guint8 *buf, guint8 **endbuf);
2843
2844 static void
2845 encode_type (MonoAotCompile *acfg, MonoType *t, guint8 *buf, guint8 **endbuf);
2846
2847 static void
2848 encode_klass_ref_inner (MonoAotCompile *acfg, MonoClass *klass, guint8 *buf, guint8 **endbuf)
2849 {
2850         guint8 *p = buf;
2851
2852         /*
2853          * The encoding begins with one of the MONO_AOT_TYPEREF values, followed by additional
2854          * information.
2855          */
2856
2857         if (mono_class_is_ginst (klass)) {
2858                 guint32 token;
2859                 g_assert (klass->type_token);
2860
2861                 /* Find a typespec for a class if possible */
2862                 token = find_typespec_for_class (acfg, klass);
2863                 if (token) {
2864                         encode_value (MONO_AOT_TYPEREF_TYPESPEC_TOKEN, p, &p);
2865                         encode_value (token, p, &p);
2866                 } else {
2867                         MonoClass *gclass = mono_class_get_generic_class (klass)->container_class;
2868                         MonoGenericInst *inst = mono_class_get_generic_class (klass)->context.class_inst;
2869                         static int count = 0;
2870                         guint8 *p1 = p;
2871
2872                         encode_value (MONO_AOT_TYPEREF_GINST, p, &p);
2873                         encode_klass_ref (acfg, gclass, p, &p);
2874                         encode_ginst (acfg, inst, p, &p);
2875
2876                         count += p - p1;
2877                 }
2878         } else if (klass->type_token) {
2879                 int iindex = get_image_index (acfg, klass->image);
2880
2881                 g_assert (mono_metadata_token_code (klass->type_token) == MONO_TOKEN_TYPE_DEF);
2882                 if (iindex == 0) {
2883                         encode_value (MONO_AOT_TYPEREF_TYPEDEF_INDEX, p, &p);
2884                         encode_value (klass->type_token - MONO_TOKEN_TYPE_DEF, p, &p);
2885                 } else {
2886                         encode_value (MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE, p, &p);
2887                         encode_value (klass->type_token - MONO_TOKEN_TYPE_DEF, p, &p);
2888                         encode_value (get_image_index (acfg, klass->image), p, &p);
2889                 }
2890         } else if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR)) {
2891                 MonoGenericContainer *container = mono_type_get_generic_param_owner (&klass->byval_arg);
2892                 MonoGenericParam *par = klass->byval_arg.data.generic_param;
2893
2894                 encode_value (MONO_AOT_TYPEREF_VAR, p, &p);
2895
2896                 encode_value (par->gshared_constraint ? 1 : 0, p, &p);
2897                 if (par->gshared_constraint) {
2898                         MonoGSharedGenericParam *gpar = (MonoGSharedGenericParam*)par;
2899                         encode_type (acfg, par->gshared_constraint, p, &p);
2900                         encode_klass_ref (acfg, mono_class_from_generic_parameter_internal (gpar->parent), p, &p);
2901                 } else {
2902                         encode_value (klass->byval_arg.type, p, &p);
2903                         encode_value (mono_type_get_generic_param_num (&klass->byval_arg), p, &p);
2904
2905                         encode_value (container->is_anonymous ? 0 : 1, p, &p);
2906
2907                         if (!container->is_anonymous) {
2908                                 encode_value (container->is_method, p, &p);
2909                                 if (container->is_method)
2910                                         encode_method_ref (acfg, container->owner.method, p, &p);
2911                                 else
2912                                         encode_klass_ref (acfg, container->owner.klass, p, &p);
2913                         }
2914                 }
2915         } else if (klass->byval_arg.type == MONO_TYPE_PTR) {
2916                 encode_value (MONO_AOT_TYPEREF_PTR, p, &p);
2917                 encode_type (acfg, &klass->byval_arg, p, &p);
2918         } else {
2919                 /* Array class */
2920                 g_assert (klass->rank > 0);
2921                 encode_value (MONO_AOT_TYPEREF_ARRAY, p, &p);
2922                 encode_value (klass->rank, p, &p);
2923                 encode_klass_ref (acfg, klass->element_class, p, &p);
2924         }
2925         *endbuf = p;
2926 }
2927
2928 /*
2929  * encode_klass_ref:
2930  *
2931  *   Encode a reference to KLASS. We use our home-grown encoding instead of the
2932  * standard metadata encoding.
2933  */
2934 static void
2935 encode_klass_ref (MonoAotCompile *acfg, MonoClass *klass, guint8 *buf, guint8 **endbuf)
2936 {
2937         gboolean shared = FALSE;
2938
2939         /* 
2940          * The encoding of generic instances is large so emit them only once.
2941          */
2942         if (mono_class_is_ginst (klass)) {
2943                 guint32 token;
2944                 g_assert (klass->type_token);
2945
2946                 /* Find a typespec for a class if possible */
2947                 token = find_typespec_for_class (acfg, klass);
2948                 if (!token)
2949                         shared = TRUE;
2950         } else if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR)) {
2951                 shared = TRUE;
2952         }
2953
2954         if (shared) {
2955                 guint offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->klass_blob_hash, klass));
2956                 guint8 *buf2, *p;
2957
2958                 if (!offset) {
2959                         buf2 = (guint8 *)g_malloc (1024);
2960                         p = buf2;
2961
2962                         encode_klass_ref_inner (acfg, klass, p, &p);
2963                         g_assert (p - buf2 < 1024);
2964
2965                         offset = add_to_blob (acfg, buf2, p - buf2);
2966                         g_free (buf2);
2967
2968                         g_hash_table_insert (acfg->klass_blob_hash, klass, GUINT_TO_POINTER (offset + 1));
2969                 } else {
2970                         offset --;
2971                 }
2972
2973                 p = buf;
2974                 encode_value (MONO_AOT_TYPEREF_BLOB_INDEX, p, &p);
2975                 encode_value (offset, p, &p);
2976                 *endbuf = p;
2977                 return;
2978         }
2979
2980         encode_klass_ref_inner (acfg, klass, buf, endbuf);
2981 }
2982
2983 static void
2984 encode_field_info (MonoAotCompile *cfg, MonoClassField *field, guint8 *buf, guint8 **endbuf)
2985 {
2986         guint32 token = mono_get_field_token (field);
2987         guint8 *p = buf;
2988
2989         encode_klass_ref (cfg, field->parent, p, &p);
2990         g_assert (mono_metadata_token_code (token) == MONO_TOKEN_FIELD_DEF);
2991         encode_value (token - MONO_TOKEN_FIELD_DEF, p, &p);
2992         *endbuf = p;
2993 }
2994
2995 static void
2996 encode_ginst (MonoAotCompile *acfg, MonoGenericInst *inst, guint8 *buf, guint8 **endbuf)
2997 {
2998         guint8 *p = buf;
2999         int i;
3000
3001         encode_value (inst->type_argc, p, &p);
3002         for (i = 0; i < inst->type_argc; ++i)
3003                 encode_klass_ref (acfg, mono_class_from_mono_type (inst->type_argv [i]), p, &p);
3004         *endbuf = p;
3005 }
3006
3007 static void
3008 encode_generic_context (MonoAotCompile *acfg, MonoGenericContext *context, guint8 *buf, guint8 **endbuf)
3009 {
3010         guint8 *p = buf;
3011         MonoGenericInst *inst;
3012
3013         inst = context->class_inst;
3014         if (inst) {
3015                 g_assert (inst->type_argc);
3016                 encode_ginst (acfg, inst, p, &p);
3017         } else {
3018                 encode_value (0, p, &p);
3019         }
3020         inst = context->method_inst;
3021         if (inst) {
3022                 g_assert (inst->type_argc);
3023                 encode_ginst (acfg, inst, p, &p);
3024         } else {
3025                 encode_value (0, p, &p);
3026         }
3027         *endbuf = p;
3028 }
3029
3030 static void
3031 encode_type (MonoAotCompile *acfg, MonoType *t, guint8 *buf, guint8 **endbuf)
3032 {
3033         guint8 *p = buf;
3034
3035         g_assert (t->num_mods == 0);
3036         /* t->attrs can be ignored */
3037         //g_assert (t->attrs == 0);
3038
3039         if (t->pinned) {
3040                 *p = MONO_TYPE_PINNED;
3041                 ++p;
3042         }
3043         if (t->byref) {
3044                 *p = MONO_TYPE_BYREF;
3045                 ++p;
3046         }
3047
3048         *p = t->type;
3049         p ++;
3050
3051         switch (t->type) {
3052         case MONO_TYPE_VOID:
3053         case MONO_TYPE_BOOLEAN:
3054         case MONO_TYPE_CHAR:
3055         case MONO_TYPE_I1:
3056         case MONO_TYPE_U1:
3057         case MONO_TYPE_I2:
3058         case MONO_TYPE_U2:
3059         case MONO_TYPE_I4:
3060         case MONO_TYPE_U4:
3061         case MONO_TYPE_I8:
3062         case MONO_TYPE_U8:
3063         case MONO_TYPE_R4:
3064         case MONO_TYPE_R8:
3065         case MONO_TYPE_I:
3066         case MONO_TYPE_U:
3067         case MONO_TYPE_STRING:
3068         case MONO_TYPE_OBJECT:
3069         case MONO_TYPE_TYPEDBYREF:
3070                 break;
3071         case MONO_TYPE_VALUETYPE:
3072         case MONO_TYPE_CLASS:
3073                 encode_klass_ref (acfg, mono_class_from_mono_type (t), p, &p);
3074                 break;
3075         case MONO_TYPE_SZARRAY:
3076                 encode_klass_ref (acfg, t->data.klass, p, &p);
3077                 break;
3078         case MONO_TYPE_PTR:
3079                 encode_type (acfg, t->data.type, p, &p);
3080                 break;
3081         case MONO_TYPE_GENERICINST: {
3082                 MonoClass *gclass = t->data.generic_class->container_class;
3083                 MonoGenericInst *inst = t->data.generic_class->context.class_inst;
3084
3085                 encode_klass_ref (acfg, gclass, p, &p);
3086                 encode_ginst (acfg, inst, p, &p);
3087                 break;
3088         }
3089         case MONO_TYPE_ARRAY: {
3090                 MonoArrayType *array = t->data.array;
3091                 int i;
3092
3093                 encode_klass_ref (acfg, array->eklass, p, &p);
3094                 encode_value (array->rank, p, &p);
3095                 encode_value (array->numsizes, p, &p);
3096                 for (i = 0; i < array->numsizes; ++i)
3097                         encode_value (array->sizes [i], p, &p);
3098                 encode_value (array->numlobounds, p, &p);
3099                 for (i = 0; i < array->numlobounds; ++i)
3100                         encode_value (array->lobounds [i], p, &p);
3101                 break;
3102         }
3103         case MONO_TYPE_VAR:
3104         case MONO_TYPE_MVAR:
3105                 encode_klass_ref (acfg, mono_class_from_mono_type (t), p, &p);
3106                 break;
3107         default:
3108                 g_assert_not_reached ();
3109         }
3110
3111         *endbuf = p;
3112 }
3113
3114 static void
3115 encode_signature (MonoAotCompile *acfg, MonoMethodSignature *sig, guint8 *buf, guint8 **endbuf)
3116 {
3117         guint8 *p = buf;
3118         guint32 flags = 0;
3119         int i;
3120
3121         /* Similar to the metadata encoding */
3122         if (sig->generic_param_count)
3123                 flags |= 0x10;
3124         if (sig->hasthis)
3125                 flags |= 0x20;
3126         if (sig->explicit_this)
3127                 flags |= 0x40;
3128         flags |= (sig->call_convention & 0x0F);
3129
3130         *p = flags;
3131         ++p;
3132         if (sig->generic_param_count)
3133                 encode_value (sig->generic_param_count, p, &p);
3134         encode_value (sig->param_count, p, &p);
3135
3136         encode_type (acfg, sig->ret, p, &p);
3137         for (i = 0; i < sig->param_count; ++i) {
3138                 if (sig->sentinelpos == i) {
3139                         *p = MONO_TYPE_SENTINEL;
3140                         ++p;
3141                 }
3142                 encode_type (acfg, sig->params [i], p, &p);
3143         }
3144
3145         *endbuf = p;
3146 }
3147
3148 #define MAX_IMAGE_INDEX 250
3149
3150 static void
3151 encode_method_ref (MonoAotCompile *acfg, MonoMethod *method, guint8 *buf, guint8 **endbuf)
3152 {
3153         guint32 image_index = get_image_index (acfg, method->klass->image);
3154         guint32 token = method->token;
3155         MonoJumpInfoToken *ji;
3156         guint8 *p = buf;
3157
3158         /*
3159          * The encoding for most methods is as follows:
3160          * - image index encoded as a leb128
3161          * - token index encoded as a leb128
3162          * Values of image index >= MONO_AOT_METHODREF_MIN are used to mark additional
3163          * types of method encodings.
3164          */
3165
3166         /* Mark methods which can't use aot trampolines because they need the further 
3167          * processing in mono_magic_trampoline () which requires a MonoMethod*.
3168          */
3169         if ((method->is_generic && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) ||
3170                 (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED))
3171                 encode_value ((MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE << 24), p, &p);
3172
3173         if (method->wrapper_type) {
3174                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
3175
3176                 encode_value ((MONO_AOT_METHODREF_WRAPPER << 24), p, &p);
3177
3178                 encode_value (method->wrapper_type, p, &p);
3179
3180                 switch (method->wrapper_type) {
3181                 case MONO_WRAPPER_REMOTING_INVOKE:
3182                 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
3183                 case MONO_WRAPPER_XDOMAIN_INVOKE: {
3184                         MonoMethod *m;
3185
3186                         m = mono_marshal_method_from_wrapper (method);
3187                         g_assert (m);
3188                         encode_method_ref (acfg, m, p, &p);
3189                         break;
3190                 }
3191                 case MONO_WRAPPER_PROXY_ISINST:
3192                 case MONO_WRAPPER_LDFLD:
3193                 case MONO_WRAPPER_LDFLDA:
3194                 case MONO_WRAPPER_STFLD: {
3195                         g_assert (info);
3196                         encode_klass_ref (acfg, info->d.proxy.klass, p, &p);
3197                         break;
3198                 }
3199                 case MONO_WRAPPER_ALLOC: {
3200                         /* The GC name is saved once in MonoAotFileInfo */
3201                         g_assert (info->d.alloc.alloc_type != -1);
3202                         encode_value (info->d.alloc.alloc_type, p, &p);
3203                         break;
3204                 }
3205                 case MONO_WRAPPER_WRITE_BARRIER: {
3206                         g_assert (info);
3207                         break;
3208                 }
3209                 case MONO_WRAPPER_STELEMREF: {
3210                         g_assert (info);
3211                         encode_value (info->subtype, p, &p);
3212                         if (info->subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF)
3213                                 encode_value (info->d.virtual_stelemref.kind, p, &p);
3214                         break;
3215                 }
3216                 case MONO_WRAPPER_UNKNOWN: {
3217                         g_assert (info);
3218                         encode_value (info->subtype, p, &p);
3219                         if (info->subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE ||
3220                                 info->subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR)
3221                                 encode_klass_ref (acfg, method->klass, p, &p);
3222                         else if (info->subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER)
3223                                 encode_method_ref (acfg, info->d.synchronized_inner.method, p, &p);
3224                         else if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR)
3225                                 encode_method_ref (acfg, info->d.array_accessor.method, p, &p);
3226                         else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG)
3227                                 encode_signature (acfg, info->d.gsharedvt.sig, p, &p);
3228                         else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)
3229                                 encode_signature (acfg, info->d.gsharedvt.sig, p, &p);
3230                         break;
3231                 }
3232                 case MONO_WRAPPER_MANAGED_TO_NATIVE: {
3233                         g_assert (info);
3234                         encode_value (info->subtype, p, &p);
3235                         if (info->subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
3236                                 strcpy ((char*)p, method->name);
3237                                 p += strlen (method->name) + 1;
3238                         } else if (info->subtype == WRAPPER_SUBTYPE_NATIVE_FUNC_AOT) {
3239                                 encode_method_ref (acfg, info->d.managed_to_native.method, p, &p);
3240                         } else {
3241                                 g_assert (info->subtype == WRAPPER_SUBTYPE_NONE || info->subtype == WRAPPER_SUBTYPE_PINVOKE);
3242                                 encode_method_ref (acfg, info->d.managed_to_native.method, p, &p);
3243                         }
3244                         break;
3245                 }
3246                 case MONO_WRAPPER_SYNCHRONIZED: {
3247                         MonoMethod *m;
3248
3249                         m = mono_marshal_method_from_wrapper (method);
3250                         g_assert (m);
3251                         g_assert (m != method);
3252                         encode_method_ref (acfg, m, p, &p);
3253                         break;
3254                 }
3255                 case MONO_WRAPPER_MANAGED_TO_MANAGED: {
3256                         g_assert (info);
3257                         encode_value (info->subtype, p, &p);
3258
3259                         if (info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
3260                                 encode_value (info->d.element_addr.rank, p, &p);
3261                                 encode_value (info->d.element_addr.elem_size, p, &p);
3262                         } else if (info->subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
3263                                 encode_method_ref (acfg, info->d.string_ctor.method, p, &p);
3264                         } else {
3265                                 g_assert_not_reached ();
3266                         }
3267                         break;
3268                 }
3269                 case MONO_WRAPPER_CASTCLASS: {
3270                         g_assert (info);
3271                         encode_value (info->subtype, p, &p);
3272                         break;
3273                 }
3274                 case MONO_WRAPPER_RUNTIME_INVOKE: {
3275                         g_assert (info);
3276                         encode_value (info->subtype, p, &p);
3277                         if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT || info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL)
3278                                 encode_method_ref (acfg, info->d.runtime_invoke.method, p, &p);
3279                         else if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL)
3280                                 encode_signature (acfg, info->d.runtime_invoke.sig, p, &p);
3281                         break;
3282                 }
3283                 case MONO_WRAPPER_DELEGATE_INVOKE:
3284                 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
3285                 case MONO_WRAPPER_DELEGATE_END_INVOKE: {
3286                         if (method->is_inflated) {
3287                                 /* These wrappers are identified by their class */
3288                                 encode_value (1, p, &p);
3289                                 encode_klass_ref (acfg, method->klass, p, &p);
3290                         } else {
3291                                 MonoMethodSignature *sig = mono_method_signature (method);
3292                                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
3293
3294                                 encode_value (0, p, &p);
3295                                 if (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
3296                                         encode_value (info ? info->subtype : 0, p, &p);
3297                                 encode_signature (acfg, sig, p, &p);
3298                         }
3299                         break;
3300                 }
3301                 case MONO_WRAPPER_NATIVE_TO_MANAGED: {
3302                         g_assert (info);
3303                         encode_method_ref (acfg, info->d.native_to_managed.method, p, &p);
3304                         encode_klass_ref (acfg, info->d.native_to_managed.klass, p, &p);
3305                         break;
3306                 }
3307                 default:
3308                         g_assert_not_reached ();
3309                 }
3310         } else if (mono_method_signature (method)->is_inflated) {
3311                 /* 
3312                  * This is a generic method, find the original token which referenced it and
3313                  * encode that.
3314                  * Obtain the token from information recorded by the JIT.
3315                  */
3316                 ji = (MonoJumpInfoToken *)g_hash_table_lookup (acfg->token_info_hash, method);
3317                 if (ji) {
3318                         image_index = get_image_index (acfg, ji->image);
3319                         g_assert (image_index < MAX_IMAGE_INDEX);
3320                         token = ji->token;
3321
3322                         encode_value ((MONO_AOT_METHODREF_METHODSPEC << 24), p, &p);
3323                         encode_value (image_index, p, &p);
3324                         encode_value (token, p, &p);
3325                 } else {
3326                         MonoMethod *declaring;
3327                         MonoGenericContext *context = mono_method_get_context (method);
3328
3329                         g_assert (method->is_inflated);
3330                         declaring = ((MonoMethodInflated*)method)->declaring;
3331
3332                         /*
3333                          * This might be a non-generic method of a generic instance, which 
3334                          * doesn't have a token since the reference is generated by the JIT 
3335                          * like Nullable:Box/Unbox, or by generic sharing.
3336                          */
3337                         encode_value ((MONO_AOT_METHODREF_GINST << 24), p, &p);
3338                         /* Encode the klass */
3339                         encode_klass_ref (acfg, method->klass, p, &p);
3340                         /* Encode the method */
3341                         image_index = get_image_index (acfg, method->klass->image);
3342                         g_assert (image_index < MAX_IMAGE_INDEX);
3343                         g_assert (declaring->token);
3344                         token = declaring->token;
3345                         g_assert (mono_metadata_token_table (token) == MONO_TABLE_METHOD);
3346                         encode_value (image_index, p, &p);
3347                         encode_value (token, p, &p);
3348                         encode_generic_context (acfg, context, p, &p);
3349                 }
3350         } else if (token == 0) {
3351                 /* This might be a method of a constructed type like int[,].Set */
3352                 /* Obtain the token from information recorded by the JIT */
3353                 ji = (MonoJumpInfoToken *)g_hash_table_lookup (acfg->token_info_hash, method);
3354                 if (ji) {
3355                         image_index = get_image_index (acfg, ji->image);
3356                         g_assert (image_index < MAX_IMAGE_INDEX);
3357                         token = ji->token;
3358
3359                         encode_value ((MONO_AOT_METHODREF_METHODSPEC << 24), p, &p);
3360                         encode_value (image_index, p, &p);
3361                         encode_value (token, p, &p);
3362                 } else {
3363                         /* Array methods */
3364                         g_assert (method->klass->rank);
3365
3366                         /* Encode directly */
3367                         encode_value ((MONO_AOT_METHODREF_ARRAY << 24), p, &p);
3368                         encode_klass_ref (acfg, method->klass, p, &p);
3369                         if (!strcmp (method->name, ".ctor") && mono_method_signature (method)->param_count == method->klass->rank)
3370                                 encode_value (0, p, &p);
3371                         else if (!strcmp (method->name, ".ctor") && mono_method_signature (method)->param_count == method->klass->rank * 2)
3372                                 encode_value (1, p, &p);
3373                         else if (!strcmp (method->name, "Get"))
3374                                 encode_value (2, p, &p);
3375                         else if (!strcmp (method->name, "Address"))
3376                                 encode_value (3, p, &p);
3377                         else if (!strcmp (method->name, "Set"))
3378                                 encode_value (4, p, &p);
3379                         else
3380                                 g_assert_not_reached ();
3381                 }
3382         } else {
3383                 g_assert (mono_metadata_token_table (token) == MONO_TABLE_METHOD);
3384
3385                 if (image_index >= MONO_AOT_METHODREF_MIN) {
3386                         encode_value ((MONO_AOT_METHODREF_LARGE_IMAGE_INDEX << 24), p, &p);
3387                         encode_value (image_index, p, &p);
3388                         encode_value (mono_metadata_token_index (token), p, &p);
3389                 } else {
3390                         encode_value ((image_index << 24) | mono_metadata_token_index (token), p, &p);
3391                 }
3392         }
3393         *endbuf = p;
3394 }
3395
3396 static gint
3397 compare_patches (gconstpointer a, gconstpointer b)
3398 {
3399         int i, j;
3400
3401         i = (*(MonoJumpInfo**)a)->ip.i;
3402         j = (*(MonoJumpInfo**)b)->ip.i;
3403
3404         if (i < j)
3405                 return -1;
3406         else
3407                 if (i > j)
3408                         return 1;
3409         else
3410                 return 0;
3411 }
3412
3413 static G_GNUC_UNUSED char*
3414 patch_to_string (MonoJumpInfo *patch_info)
3415 {
3416         GString *str;
3417
3418         str = g_string_new ("");
3419
3420         g_string_append_printf (str, "%s(", get_patch_name (patch_info->type));
3421
3422         switch (patch_info->type) {
3423         case MONO_PATCH_INFO_VTABLE:
3424                 mono_type_get_desc (str, &patch_info->data.klass->byval_arg, TRUE);
3425                 break;
3426         default:
3427                 break;
3428         }
3429         g_string_append_printf (str, ")");
3430         return g_string_free (str, FALSE);
3431 }
3432
3433 /*
3434  * is_plt_patch:
3435  *
3436  *   Return whenever PATCH_INFO refers to a direct call, and thus requires a
3437  * PLT entry.
3438  */
3439 static inline gboolean
3440 is_plt_patch (MonoJumpInfo *patch_info)
3441 {
3442         switch (patch_info->type) {
3443         case MONO_PATCH_INFO_METHOD:
3444         case MONO_PATCH_INFO_INTERNAL_METHOD:
3445         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
3446         case MONO_PATCH_INFO_ICALL_ADDR_CALL:
3447         case MONO_PATCH_INFO_RGCTX_FETCH:
3448                 return TRUE;
3449         default:
3450                 return FALSE;
3451         }
3452 }
3453
3454 /*
3455  * get_plt_symbol:
3456  *
3457  *   Return the symbol identifying the plt entry PLT_OFFSET.
3458  */
3459 static char*
3460 get_plt_symbol (MonoAotCompile *acfg, int plt_offset, MonoJumpInfo *patch_info)
3461 {
3462 #ifdef TARGET_MACH
3463         /* 
3464          * The Apple linker reorganizes object files, so it doesn't like branches to local
3465          * labels, since those have no relocations.
3466          */
3467         return g_strdup_printf ("%sp_%d", acfg->llvm_label_prefix, plt_offset);
3468 #else
3469         return g_strdup_printf ("%sp_%d", acfg->temp_prefix, plt_offset);
3470 #endif
3471 }
3472
3473 /*
3474  * get_plt_entry:
3475  *
3476  *   Return a PLT entry which belongs to the method identified by PATCH_INFO.
3477  */
3478 static MonoPltEntry*
3479 get_plt_entry (MonoAotCompile *acfg, MonoJumpInfo *patch_info)
3480 {
3481         MonoPltEntry *res;
3482         gboolean synchronized = FALSE;
3483         static int synchronized_symbol_idx;
3484
3485         if (!is_plt_patch (patch_info))
3486                 return NULL;
3487
3488         if (!acfg->patch_to_plt_entry [patch_info->type])
3489                 acfg->patch_to_plt_entry [patch_info->type] = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
3490         res = (MonoPltEntry *)g_hash_table_lookup (acfg->patch_to_plt_entry [patch_info->type], patch_info);
3491
3492         if (!acfg->llvm && patch_info->type == MONO_PATCH_INFO_METHOD && (patch_info->data.method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)) {
3493                 /* 
3494                  * Allocate a separate PLT slot for each such patch, since some plt
3495                  * entries will refer to the method itself, and some will refer to the
3496                  * wrapper.
3497                  */
3498                 res = NULL;
3499                 synchronized = TRUE;
3500         }
3501
3502         if (!res) {
3503                 MonoJumpInfo *new_ji;
3504
3505                 new_ji = mono_patch_info_dup_mp (acfg->mempool, patch_info);
3506
3507                 res = (MonoPltEntry *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoPltEntry));
3508                 res->plt_offset = acfg->plt_offset;
3509                 res->ji = new_ji;
3510                 res->symbol = get_plt_symbol (acfg, res->plt_offset, patch_info);
3511                 if (acfg->aot_opts.write_symbols)
3512                         res->debug_sym = get_plt_entry_debug_sym (acfg, res->ji, acfg->plt_entry_debug_sym_cache);
3513                 if (synchronized) {
3514                         /* Avoid duplicate symbols because we don't cache */
3515                         res->symbol = g_strdup_printf ("%s_%d", res->symbol, synchronized_symbol_idx);
3516                         if (res->debug_sym)
3517                                 res->debug_sym = g_strdup_printf ("%s_%d", res->debug_sym, synchronized_symbol_idx);
3518                         synchronized_symbol_idx ++;
3519                 }
3520                 if (res->debug_sym)
3521                         res->llvm_symbol = g_strdup_printf ("%s_%s_llvm", res->symbol, res->debug_sym);
3522                 else
3523                         res->llvm_symbol = g_strdup_printf ("%s_llvm", res->symbol);
3524
3525                 g_hash_table_insert (acfg->patch_to_plt_entry [new_ji->type], new_ji, res);
3526
3527                 g_hash_table_insert (acfg->plt_offset_to_entry, GUINT_TO_POINTER (res->plt_offset), res);
3528
3529                 //g_assert (mono_patch_info_equal (patch_info, new_ji));
3530                 //mono_print_ji (patch_info); printf ("\n");
3531                 //g_hash_table_print_stats (acfg->patch_to_plt_entry);
3532
3533                 acfg->plt_offset ++;
3534         }
3535
3536         return res;
3537 }
3538
3539 /**
3540  * get_got_offset:
3541  *
3542  *   Returns the offset of the GOT slot where the runtime object resulting from resolving
3543  * JI could be found if it exists, otherwise allocates a new one.
3544  */
3545 static guint32
3546 get_got_offset (MonoAotCompile *acfg, gboolean llvm, MonoJumpInfo *ji)
3547 {
3548         guint32 got_offset;
3549         GotInfo *info = llvm ? &acfg->llvm_got_info : &acfg->got_info;
3550
3551         got_offset = GPOINTER_TO_UINT (g_hash_table_lookup (info->patch_to_got_offset_by_type [ji->type], ji));
3552         if (got_offset)
3553                 return got_offset - 1;
3554
3555         if (llvm) {
3556                 got_offset = acfg->llvm_got_offset;
3557                 acfg->llvm_got_offset ++;
3558         } else {
3559                 got_offset = acfg->got_offset;
3560                 acfg->got_offset ++;
3561         }
3562
3563         acfg->stats.got_slots ++;
3564         acfg->stats.got_slot_types [ji->type] ++;
3565
3566         g_hash_table_insert (info->patch_to_got_offset, ji, GUINT_TO_POINTER (got_offset + 1));
3567         g_hash_table_insert (info->patch_to_got_offset_by_type [ji->type], ji, GUINT_TO_POINTER (got_offset + 1));
3568         g_ptr_array_add (info->got_patches, ji);
3569
3570         return got_offset;
3571 }
3572
3573 /* Add a method to the list of methods which need to be emitted */
3574 static void
3575 add_method_with_index (MonoAotCompile *acfg, MonoMethod *method, int index, gboolean extra)
3576 {
3577         g_assert (method);
3578         if (!g_hash_table_lookup (acfg->method_indexes, method)) {
3579                 g_ptr_array_add (acfg->methods, method);
3580                 g_hash_table_insert (acfg->method_indexes, method, GUINT_TO_POINTER (index + 1));
3581                 acfg->nmethods = acfg->methods->len + 1;
3582         }
3583
3584         if (method->wrapper_type || extra)
3585                 g_ptr_array_add (acfg->extra_methods, method);
3586 }
3587
3588 static gboolean
3589 prefer_gsharedvt_method (MonoAotCompile *acfg, MonoMethod *method)
3590 {
3591         /* One instantiation with valuetypes is generated for each async method */
3592         if (method->klass->image == mono_defaults.corlib && (!strcmp (method->klass->name, "AsyncMethodBuilderCore") || !strcmp (method->klass->name, "AsyncVoidMethodBuilder")))
3593                 return TRUE;
3594         else
3595                 return FALSE;
3596 }
3597
3598 static guint32
3599 get_method_index (MonoAotCompile *acfg, MonoMethod *method)
3600 {
3601         int index = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_indexes, method));
3602         
3603         g_assert (index);
3604
3605         return index - 1;
3606 }
3607
3608 static int
3609 add_method_full (MonoAotCompile *acfg, MonoMethod *method, gboolean extra, int depth)
3610 {
3611         int index;
3612
3613         index = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_indexes, method));
3614         if (index)
3615                 return index - 1;
3616
3617         index = acfg->method_index;
3618         add_method_with_index (acfg, method, index, extra);
3619
3620         g_ptr_array_add (acfg->method_order, GUINT_TO_POINTER (index));
3621
3622         g_hash_table_insert (acfg->method_depth, method, GUINT_TO_POINTER (depth));
3623
3624         acfg->method_index ++;
3625
3626         return index;
3627 }
3628
3629 static int
3630 add_method (MonoAotCompile *acfg, MonoMethod *method)
3631 {
3632         return add_method_full (acfg, method, FALSE, 0);
3633 }
3634
3635 static void
3636 add_extra_method_with_depth (MonoAotCompile *acfg, MonoMethod *method, int depth)
3637 {
3638         if (mono_method_is_generic_sharable_full (method, TRUE, TRUE, FALSE))
3639                 method = mini_get_shared_method (method);
3640         else if ((acfg->opts & MONO_OPT_GSHAREDVT) && prefer_gsharedvt_method (acfg, method) && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE))
3641                 /* Use the gsharedvt version */
3642                 method = mini_get_shared_method_full (method, TRUE, TRUE);
3643
3644         if (acfg->aot_opts.log_generics)
3645                 aot_printf (acfg, "%*sAdding method %s.\n", depth, "", mono_method_get_full_name (method));
3646
3647         add_method_full (acfg, method, TRUE, depth);
3648 }
3649
3650 static void
3651 add_extra_method (MonoAotCompile *acfg, MonoMethod *method)
3652 {
3653         add_extra_method_with_depth (acfg, method, 0);
3654 }
3655
3656 static void
3657 add_jit_icall_wrapper (gpointer key, gpointer value, gpointer user_data)
3658 {
3659         MonoAotCompile *acfg = (MonoAotCompile *)user_data;
3660         MonoJitICallInfo *callinfo = (MonoJitICallInfo *)value;
3661         MonoMethod *wrapper;
3662         char *name;
3663
3664         if (!callinfo->sig)
3665                 return;
3666
3667         name = g_strdup_printf ("__icall_wrapper_%s", callinfo->name);
3668         wrapper = mono_marshal_get_icall_wrapper (callinfo->sig, name, callinfo->func, TRUE);
3669         g_free (name);
3670
3671         add_method (acfg, wrapper);
3672 }
3673
3674 static MonoMethod*
3675 get_runtime_invoke_sig (MonoMethodSignature *sig)
3676 {
3677         MonoMethodBuilder *mb;
3678         MonoMethod *m;
3679
3680         mb = mono_mb_new (mono_defaults.object_class, "FOO", MONO_WRAPPER_NONE);
3681         m = mono_mb_create_method (mb, sig, 16);
3682         MonoMethod *invoke = mono_marshal_get_runtime_invoke (m, FALSE);
3683         mono_mb_free (mb);
3684         return invoke;
3685 }
3686
3687 static MonoMethod*
3688 get_runtime_invoke (MonoAotCompile *acfg, MonoMethod *method, gboolean virtual_)
3689 {
3690         return mono_marshal_get_runtime_invoke (method, virtual_);
3691 }
3692
3693 static gboolean
3694 can_marshal_struct (MonoClass *klass)
3695 {
3696         MonoClassField *field;
3697         gboolean can_marshal = TRUE;
3698         gpointer iter = NULL;
3699         MonoMarshalType *info;
3700         int i;
3701
3702         if (mono_class_is_auto_layout (klass))
3703                 return FALSE;
3704
3705         info = mono_marshal_load_type_info (klass);
3706
3707         /* Only allow a few field types to avoid asserts in the marshalling code */
3708         while ((field = mono_class_get_fields (klass, &iter))) {
3709                 if ((field->type->attrs & FIELD_ATTRIBUTE_STATIC))
3710                         continue;
3711
3712                 switch (field->type->type) {
3713                 case MONO_TYPE_I4:
3714                 case MONO_TYPE_U4:
3715                 case MONO_TYPE_I1:
3716                 case MONO_TYPE_U1:
3717                 case MONO_TYPE_BOOLEAN:
3718                 case MONO_TYPE_I2:
3719                 case MONO_TYPE_U2:
3720                 case MONO_TYPE_CHAR:
3721                 case MONO_TYPE_I8:
3722                 case MONO_TYPE_U8:
3723                 case MONO_TYPE_I:
3724                 case MONO_TYPE_U:
3725                 case MONO_TYPE_PTR:
3726                 case MONO_TYPE_R4:
3727                 case MONO_TYPE_R8:
3728                 case MONO_TYPE_STRING:
3729                         break;
3730                 case MONO_TYPE_VALUETYPE:
3731                         if (!mono_class_from_mono_type (field->type)->enumtype && !can_marshal_struct (mono_class_from_mono_type (field->type)))
3732                                 can_marshal = FALSE;
3733                         break;
3734                 case MONO_TYPE_SZARRAY: {
3735                         gboolean has_mspec = FALSE;
3736
3737                         if (info) {
3738                                 for (i = 0; i < info->num_fields; ++i) {
3739                                         if (info->fields [i].field == field && info->fields [i].mspec)
3740                                                 has_mspec = TRUE;
3741                                 }
3742                         }
3743                         if (!has_mspec)
3744                                 can_marshal = FALSE;
3745                         break;
3746                 }
3747                 default:
3748                         can_marshal = FALSE;
3749                         break;
3750                 }
3751         }
3752
3753         /* Special cases */
3754         /* Its hard to compute whenever these can be marshalled or not */
3755         if (!strcmp (klass->name_space, "System.Net.NetworkInformation.MacOsStructs") && strcmp (klass->name, "sockaddr_dl"))
3756                 return TRUE;
3757
3758         return can_marshal;
3759 }
3760
3761 static void
3762 create_gsharedvt_inst (MonoAotCompile *acfg, MonoMethod *method, MonoGenericContext *ctx)
3763 {
3764         /* Create a vtype instantiation */
3765         MonoGenericContext shared_context;
3766         MonoType **args;
3767         MonoGenericInst *inst;
3768         MonoGenericContainer *container;
3769         MonoClass **constraints;
3770         int i;
3771
3772         memset (ctx, 0, sizeof (MonoGenericContext));
3773
3774         if (mono_class_is_gtd (method->klass)) {
3775                 shared_context = mono_class_get_generic_container (method->klass)->context;
3776                 inst = shared_context.class_inst;
3777
3778                 args = g_new0 (MonoType*, inst->type_argc);
3779                 for (i = 0; i < inst->type_argc; ++i) {
3780                         args [i] = &mono_defaults.int_class->byval_arg;
3781                 }
3782                 ctx->class_inst = mono_metadata_get_generic_inst (inst->type_argc, args);
3783         }
3784         if (method->is_generic) {
3785                 container = mono_method_get_generic_container (method);
3786                 shared_context = container->context;
3787                 inst = shared_context.method_inst;
3788
3789                 args = g_new0 (MonoType*, inst->type_argc);
3790                 for (i = 0; i < container->type_argc; ++i) {
3791                         MonoGenericParamInfo *info = &container->type_params [i].info;
3792                         gboolean ref_only = FALSE;
3793
3794                         if (info && info->constraints) {
3795                                 constraints = info->constraints;
3796
3797                                 while (*constraints) {
3798                                         MonoClass *cklass = *constraints;
3799                                         if (!(cklass == mono_defaults.object_class || (cklass->image == mono_defaults.corlib && !strcmp (cklass->name, "ValueType"))))
3800                                                 /* Inflaring the method with our vtype would not be valid */
3801                                                 ref_only = TRUE;
3802                                         constraints ++;
3803                                 }
3804                         }
3805
3806                         if (ref_only)
3807                                 args [i] = &mono_defaults.object_class->byval_arg;
3808                         else
3809                                 args [i] = &mono_defaults.int_class->byval_arg;
3810                 }
3811                 ctx->method_inst = mono_metadata_get_generic_inst (inst->type_argc, args);
3812         }
3813 }
3814
3815 static void
3816 add_wrappers (MonoAotCompile *acfg)
3817 {
3818         MonoMethod *method, *m;
3819         int i, j;
3820         MonoMethodSignature *sig, *csig;
3821         guint32 token;
3822
3823         /* 
3824          * FIXME: Instead of AOTing all the wrappers, it might be better to redesign them
3825          * so there is only one wrapper of a given type, or inlining their contents into their
3826          * callers.
3827          */
3828         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
3829                 MonoError error;
3830                 MonoMethod *method;
3831                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
3832                 gboolean skip = FALSE;
3833
3834                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
3835                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
3836
3837                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
3838                         (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
3839                         (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
3840                         skip = TRUE;
3841
3842                 /* Skip methods which can not be handled by get_runtime_invoke () */
3843                 sig = mono_method_signature (method);
3844                 if (!sig)
3845                         continue;
3846                 if ((sig->ret->type == MONO_TYPE_PTR) ||
3847                         (sig->ret->type == MONO_TYPE_TYPEDBYREF))
3848                         skip = TRUE;
3849                 if (mono_class_is_open_constructed_type (sig->ret))
3850                         skip = TRUE;
3851
3852                 for (j = 0; j < sig->param_count; j++) {
3853                         if (sig->params [j]->type == MONO_TYPE_TYPEDBYREF)
3854                                 skip = TRUE;
3855                         if (mono_class_is_open_constructed_type (sig->params [j]))
3856                                 skip = TRUE;
3857                 }
3858
3859 #ifdef MONO_ARCH_DYN_CALL_SUPPORTED
3860                 if (!mono_class_is_contextbound (method->klass)) {
3861                         MonoDynCallInfo *info = mono_arch_dyn_call_prepare (sig);
3862                         gboolean has_nullable = FALSE;
3863
3864                         for (j = 0; j < sig->param_count; j++) {
3865                                 if (sig->params [j]->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (sig->params [j])))
3866                                         has_nullable = TRUE;
3867                         }
3868
3869                         if (info && !has_nullable && !acfg->aot_opts.llvm_only) {
3870                                 /* Supported by the dynamic runtime-invoke wrapper */
3871                                 skip = TRUE;
3872                         }
3873                         if (info)
3874                                 mono_arch_dyn_call_free (info);
3875                 }
3876 #endif
3877
3878                 if (acfg->aot_opts.llvm_only)
3879                         /* Supported by the gsharedvt based runtime-invoke wrapper */
3880                         skip = TRUE;
3881
3882                 if (!skip) {
3883                         //printf ("%s\n", mono_method_full_name (method, TRUE));
3884                         add_method (acfg, get_runtime_invoke (acfg, method, FALSE));
3885                 }
3886         }
3887
3888         if (strcmp (acfg->image->assembly->aname.name, "mscorlib") == 0) {
3889                 int nallocators;
3890
3891                 /* Runtime invoke wrappers */
3892
3893                 /* void runtime-invoke () [.cctor] */
3894                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 0);
3895                 csig->ret = &mono_defaults.void_class->byval_arg;
3896                 add_method (acfg, get_runtime_invoke_sig (csig));
3897
3898                 /* void runtime-invoke () [Finalize] */
3899                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 0);
3900                 csig->hasthis = 1;
3901                 csig->ret = &mono_defaults.void_class->byval_arg;
3902                 add_method (acfg, get_runtime_invoke_sig (csig));
3903
3904                 /* void runtime-invoke (string) [exception ctor] */
3905                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
3906                 csig->hasthis = 1;
3907                 csig->ret = &mono_defaults.void_class->byval_arg;
3908                 csig->params [0] = &mono_defaults.string_class->byval_arg;
3909                 add_method (acfg, get_runtime_invoke_sig (csig));
3910
3911                 /* void runtime-invoke (string, string) [exception ctor] */
3912                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
3913                 csig->hasthis = 1;
3914                 csig->ret = &mono_defaults.void_class->byval_arg;
3915                 csig->params [0] = &mono_defaults.string_class->byval_arg;
3916                 csig->params [1] = &mono_defaults.string_class->byval_arg;
3917                 add_method (acfg, get_runtime_invoke_sig (csig));
3918
3919                 /* string runtime-invoke () [Exception.ToString ()] */
3920                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 0);
3921                 csig->hasthis = 1;
3922                 csig->ret = &mono_defaults.string_class->byval_arg;
3923                 add_method (acfg, get_runtime_invoke_sig (csig));
3924
3925                 /* void runtime-invoke (string, Exception) [exception ctor] */
3926                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
3927                 csig->hasthis = 1;
3928                 csig->ret = &mono_defaults.void_class->byval_arg;
3929                 csig->params [0] = &mono_defaults.string_class->byval_arg;
3930                 csig->params [1] = &mono_defaults.exception_class->byval_arg;
3931                 add_method (acfg, get_runtime_invoke_sig (csig));
3932
3933                 /* Assembly runtime-invoke (string, Assembly, bool) [DoAssemblyResolve] */
3934                 csig = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
3935                 csig->hasthis = 1;
3936                 csig->ret = &(mono_class_load_from_name (
3937                                                                                         mono_defaults.corlib, "System.Reflection", "Assembly"))->byval_arg;
3938                 csig->params [0] = &mono_defaults.string_class->byval_arg;
3939                 csig->params [1] = &(mono_class_load_from_name (mono_defaults.corlib, "System.Reflection", "Assembly"))->byval_arg;
3940                 csig->params [2] = &mono_defaults.boolean_class->byval_arg;
3941                 add_method (acfg, get_runtime_invoke_sig (csig));
3942
3943                 /* runtime-invoke used by finalizers */
3944                 add_method (acfg, get_runtime_invoke (acfg, mono_class_get_method_from_name_flags (mono_defaults.object_class, "Finalize", 0, 0), TRUE));
3945
3946                 /* This is used by mono_runtime_capture_context () */
3947                 method = mono_get_context_capture_method ();
3948                 if (method)
3949                         add_method (acfg, get_runtime_invoke (acfg, method, FALSE));
3950
3951 #ifdef MONO_ARCH_DYN_CALL_SUPPORTED
3952                 if (!acfg->aot_opts.llvm_only)
3953                         add_method (acfg, mono_marshal_get_runtime_invoke_dynamic ());
3954 #endif
3955
3956                 /* These are used by mono_jit_runtime_invoke () to calls gsharedvt out wrappers */
3957                 if (acfg->aot_opts.llvm_only) {
3958                         int variants;
3959
3960                         /* Create simplified signatures which match the signature used by the gsharedvt out wrappers */
3961                         for (variants = 0; variants < 4; ++variants) {
3962                                 for (i = 0; i < 16; ++i) {
3963                                         sig = mini_get_gsharedvt_out_sig_wrapper_signature ((variants & 1) > 0, (variants & 2) > 0, i);
3964                                         add_extra_method (acfg, mono_marshal_get_runtime_invoke_for_sig (sig));
3965
3966                                         g_free (sig);
3967                                 }
3968                         }
3969                 }
3970
3971                 /* stelemref */
3972                 add_method (acfg, mono_marshal_get_stelemref ());
3973
3974                 /* Managed Allocators */
3975                 nallocators = mono_gc_get_managed_allocator_types ();
3976                 for (i = 0; i < nallocators; ++i) {
3977                         if ((m = mono_gc_get_managed_allocator_by_type (i, MANAGED_ALLOCATOR_REGULAR)))
3978                                 add_method (acfg, m);
3979                         if ((m = mono_gc_get_managed_allocator_by_type (i, MANAGED_ALLOCATOR_SLOW_PATH)))
3980                                 add_method (acfg, m);
3981                         if ((m = mono_gc_get_managed_allocator_by_type (i, MANAGED_ALLOCATOR_PROFILER)))
3982                                 add_method (acfg, m);
3983                 }
3984
3985                 /* write barriers */
3986                 if (mono_gc_is_moving ()) {
3987                         add_method (acfg, mono_gc_get_specific_write_barrier (FALSE));
3988                         add_method (acfg, mono_gc_get_specific_write_barrier (TRUE));
3989                 }
3990
3991                 /* Stelemref wrappers */
3992                 {
3993                         MonoMethod **wrappers;
3994                         int nwrappers;
3995
3996                         wrappers = mono_marshal_get_virtual_stelemref_wrappers (&nwrappers);
3997                         for (i = 0; i < nwrappers; ++i)
3998                                 add_method (acfg, wrappers [i]);
3999                         g_free (wrappers);
4000                 }
4001
4002                 /* castclass_with_check wrapper */
4003                 add_method (acfg, mono_marshal_get_castclass_with_cache ());
4004                 /* isinst_with_check wrapper */
4005                 add_method (acfg, mono_marshal_get_isinst_with_cache ());
4006
4007                 /* JIT icall wrappers */
4008                 /* FIXME: locking - this is "safe" as full-AOT threads don't mutate the icall hash*/
4009                 g_hash_table_foreach (mono_get_jit_icall_info (), add_jit_icall_wrapper, acfg);
4010         }
4011
4012         /* 
4013          * remoting-invoke-with-check wrappers are very frequent, so avoid emitting them,
4014          * we use the original method instead at runtime.
4015          * Since full-aot doesn't support remoting, this is not a problem.
4016          */
4017 #if 0
4018         /* remoting-invoke wrappers */
4019         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4020                 MonoError error;
4021                 MonoMethodSignature *sig;
4022                 
4023                 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4024                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4025                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4026
4027                 sig = mono_method_signature (method);
4028
4029                 if (sig->hasthis && (method->klass->marshalbyref || method->klass == mono_defaults.object_class)) {
4030                         m = mono_marshal_get_remoting_invoke_with_check (method);
4031
4032                         add_method (acfg, m);
4033                 }
4034         }
4035 #endif
4036
4037         /* delegate-invoke wrappers */
4038         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
4039                 MonoError error;
4040                 MonoClass *klass;
4041                 MonoCustomAttrInfo *cattr;
4042                 
4043                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
4044                 klass = mono_class_get_checked (acfg->image, token, &error);
4045
4046                 if (!klass) {
4047                         mono_error_cleanup (&error);
4048                         continue;
4049                 }
4050
4051                 if (!klass->delegate || klass == mono_defaults.delegate_class || klass == mono_defaults.multicastdelegate_class)
4052                         continue;
4053
4054                 if (!mono_class_is_gtd (klass)) {
4055                         method = mono_get_delegate_invoke (klass);
4056
4057                         m = mono_marshal_get_delegate_invoke (method, NULL);
4058
4059                         add_method (acfg, m);
4060
4061                         method = mono_class_get_method_from_name_flags (klass, "BeginInvoke", -1, 0);
4062                         if (method)
4063                                 add_method (acfg, mono_marshal_get_delegate_begin_invoke (method));
4064
4065                         method = mono_class_get_method_from_name_flags (klass, "EndInvoke", -1, 0);
4066                         if (method)
4067                                 add_method (acfg, mono_marshal_get_delegate_end_invoke (method));
4068
4069                         cattr = mono_custom_attrs_from_class_checked (klass, &error);
4070                         if (!is_ok (&error)) {
4071                                 mono_error_cleanup (&error);
4072                                 continue;
4073                         }
4074
4075                         if (cattr) {
4076                                 int j;
4077
4078                                 for (j = 0; j < cattr->num_attrs; ++j)
4079                                         if (cattr->attrs [j].ctor && (!strcmp (cattr->attrs [j].ctor->klass->name, "MonoNativeFunctionWrapperAttribute") || !strcmp (cattr->attrs [j].ctor->klass->name, "UnmanagedFunctionPointerAttribute")))
4080                                                 break;
4081                                 if (j < cattr->num_attrs) {
4082                                         MonoMethod *invoke;
4083                                         MonoMethod *wrapper;
4084                                         MonoMethod *del_invoke;
4085
4086                                         /* Add wrappers needed by mono_ftnptr_to_delegate () */
4087                                         invoke = mono_get_delegate_invoke (klass);
4088                                         wrapper = mono_marshal_get_native_func_wrapper_aot (klass);
4089                                         del_invoke = mono_marshal_get_delegate_invoke_internal (invoke, FALSE, TRUE, wrapper);
4090                                         add_method (acfg, wrapper);
4091                                         add_method (acfg, del_invoke);
4092                                 }
4093                         }
4094                 } else if ((acfg->opts & MONO_OPT_GSHAREDVT) && mono_class_is_gtd (klass)) {
4095                         MonoError error;
4096                         MonoGenericContext ctx;
4097                         MonoMethod *inst, *gshared;
4098
4099                         /*
4100                          * Emit gsharedvt versions of the generic delegate-invoke wrappers
4101                          */
4102                         /* Invoke */
4103                         method = mono_get_delegate_invoke (klass);
4104                         create_gsharedvt_inst (acfg, method, &ctx);
4105
4106                         inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4107                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4108
4109                         m = mono_marshal_get_delegate_invoke (inst, NULL);
4110                         g_assert (m->is_inflated);
4111
4112                         gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4113                         add_extra_method (acfg, gshared);
4114
4115                         /* begin-invoke */
4116                         method = mono_get_delegate_begin_invoke (klass);
4117                         if (method) {
4118                                 create_gsharedvt_inst (acfg, method, &ctx);
4119
4120                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4121                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4122
4123                                 m = mono_marshal_get_delegate_begin_invoke (inst);
4124                                 g_assert (m->is_inflated);
4125
4126                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4127                                 add_extra_method (acfg, gshared);
4128                         }
4129
4130                         /* end-invoke */
4131                         method = mono_get_delegate_end_invoke (klass);
4132                         if (method) {
4133                                 create_gsharedvt_inst (acfg, method, &ctx);
4134
4135                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4136                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4137
4138                                 m = mono_marshal_get_delegate_end_invoke (inst);
4139                                 g_assert (m->is_inflated);
4140
4141                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4142                                 add_extra_method (acfg, gshared);
4143                         }
4144                 }
4145         }
4146
4147         /* array access wrappers */
4148         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows; ++i) {
4149                 MonoError error;
4150                 MonoClass *klass;
4151                 
4152                 token = MONO_TOKEN_TYPE_SPEC | (i + 1);
4153                 klass = mono_class_get_checked (acfg->image, token, &error);
4154
4155                 if (!klass) {
4156                         mono_error_cleanup (&error);
4157                         continue;
4158                 }
4159
4160                 if (klass->rank && MONO_TYPE_IS_PRIMITIVE (&klass->element_class->byval_arg)) {
4161                         MonoMethod *m, *wrapper;
4162
4163                         /* Add runtime-invoke wrappers too */
4164
4165                         m = mono_class_get_method_from_name (klass, "Get", -1);
4166                         g_assert (m);
4167                         wrapper = mono_marshal_get_array_accessor_wrapper (m);
4168                         add_extra_method (acfg, wrapper);
4169                         if (!acfg->aot_opts.llvm_only)
4170                                 add_extra_method (acfg, get_runtime_invoke (acfg, wrapper, FALSE));
4171
4172                         m = mono_class_get_method_from_name (klass, "Set", -1);
4173                         g_assert (m);
4174                         wrapper = mono_marshal_get_array_accessor_wrapper (m);
4175                         add_extra_method (acfg, wrapper);
4176                         if (!acfg->aot_opts.llvm_only)
4177                                 add_extra_method (acfg, get_runtime_invoke (acfg, wrapper, FALSE));
4178                 }
4179         }
4180
4181         /* Synchronized wrappers */
4182         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4183                 MonoError error;
4184                 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4185                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4186                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4187
4188                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) {
4189                         if (method->is_generic) {
4190                                 // FIXME:
4191                         } else if ((acfg->opts & MONO_OPT_GSHAREDVT) && mono_class_is_gtd (method->klass)) {
4192                                 MonoError error;
4193                                 MonoGenericContext ctx;
4194                                 MonoMethod *inst, *gshared, *m;
4195
4196                                 /*
4197                                  * Create a generic wrapper for a generic instance, and AOT that.
4198                                  */
4199                                 create_gsharedvt_inst (acfg, method, &ctx);
4200                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4201                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4202                                 m = mono_marshal_get_synchronized_wrapper (inst);
4203                                 g_assert (m->is_inflated);
4204                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4205                                 add_method (acfg, gshared);
4206                         } else {
4207                                 add_method (acfg, mono_marshal_get_synchronized_wrapper (method));
4208                         }
4209                 }
4210         }
4211
4212         /* pinvoke wrappers */
4213         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4214                 MonoError error;
4215                 MonoMethod *method;
4216                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4217
4218                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4219                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4220
4221                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4222                         (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
4223                         add_method (acfg, mono_marshal_get_native_wrapper (method, TRUE, TRUE));
4224                 }
4225
4226                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
4227                         if (acfg->aot_opts.llvm_only) {
4228                                 /* The wrappers have a different signature (hasthis is not set) so need to add this too */
4229                                 add_gsharedvt_wrappers (acfg, mono_method_signature (method), FALSE, TRUE);
4230                         }
4231                 }
4232         }
4233  
4234         /* native-to-managed wrappers */
4235         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4236                 MonoError error;
4237                 MonoMethod *method;
4238                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4239                 MonoCustomAttrInfo *cattr;
4240                 int j;
4241
4242                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4243                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4244
4245                 /* 
4246                  * Only generate native-to-managed wrappers for methods which have an
4247                  * attribute named MonoPInvokeCallbackAttribute. We search for the attribute by
4248                  * name to avoid defining a new assembly to contain it.
4249                  */
4250                 cattr = mono_custom_attrs_from_method_checked (method, &error);
4251                 if (!is_ok (&error)) {
4252                         char *name = mono_method_get_full_name (method);
4253                         report_loader_error (acfg, &error, "Failed to load custom attributes from method %s due to %s\n", name, mono_error_get_message (&error));
4254                         g_free (name);
4255                 }
4256
4257                 if (cattr) {
4258                         for (j = 0; j < cattr->num_attrs; ++j)
4259                                 if (cattr->attrs [j].ctor && !strcmp (cattr->attrs [j].ctor->klass->name, "MonoPInvokeCallbackAttribute"))
4260                                         break;
4261                         if (j < cattr->num_attrs) {
4262                                 MonoCustomAttrEntry *e = &cattr->attrs [j];
4263                                 MonoMethodSignature *sig = mono_method_signature (e->ctor);
4264                                 const char *p = (const char*)e->data;
4265                                 const char *named;
4266                                 int slen, num_named, named_type;
4267                                 char *n;
4268                                 MonoType *t;
4269                                 MonoClass *klass;
4270                                 char *export_name = NULL;
4271                                 MonoMethod *wrapper;
4272
4273                                 /* this cannot be enforced by the C# compiler so we must give the user some warning before aborting */
4274                                 if (!(method->flags & METHOD_ATTRIBUTE_STATIC)) {
4275                                         g_warning ("AOT restriction: Method '%s' must be static since it is decorated with [MonoPInvokeCallback]. See http://ios.xamarin.com/Documentation/Limitations#Reverse_Callbacks", 
4276                                                 mono_method_full_name (method, TRUE));
4277                                         exit (1);
4278                                 }
4279
4280                                 g_assert (sig->param_count == 1);
4281                                 g_assert (sig->params [0]->type == MONO_TYPE_CLASS && !strcmp (mono_class_from_mono_type (sig->params [0])->name, "Type"));
4282
4283                                 /* 
4284                                  * Decode the cattr manually since we can't create objects
4285                                  * during aot compilation.
4286                                  */
4287                                         
4288                                 /* Skip prolog */
4289                                 p += 2;
4290
4291                                 /* From load_cattr_value () in reflection.c */
4292                                 slen = mono_metadata_decode_value (p, &p);
4293                                 n = (char *)g_memdup (p, slen + 1);
4294                                 n [slen] = 0;
4295                                 t = mono_reflection_type_from_name_checked (n, acfg->image, &error);
4296                                 g_assert (t);
4297                                 mono_error_assert_ok (&error);
4298                                 g_free (n);
4299
4300                                 klass = mono_class_from_mono_type (t);
4301                                 g_assert (klass->parent == mono_defaults.multicastdelegate_class);
4302
4303                                 p += slen;
4304
4305                                 num_named = read16 (p);
4306                                 p += 2;
4307
4308                                 g_assert (num_named < 2);
4309                                 if (num_named == 1) {
4310                                         int name_len;
4311                                         char *name;
4312
4313                                         /* parse ExportSymbol attribute */
4314                                         named = p;
4315                                         named_type = *named;
4316                                         named += 1;
4317                                         /* data_type = *named; */
4318                                         named += 1;
4319
4320                                         name_len = mono_metadata_decode_blob_size (named, &named);
4321                                         name = (char *)g_malloc (name_len + 1);
4322                                         memcpy (name, named, name_len);
4323                                         name [name_len] = 0;
4324                                         named += name_len;
4325
4326                                         g_assert (named_type == 0x54);
4327                                         g_assert (!strcmp (name, "ExportSymbol"));
4328
4329                                         /* load_cattr_value (), string case */
4330                                         g_assert (*named != (char)0xff);
4331                                         slen = mono_metadata_decode_value (named, &named);
4332                                         export_name = (char *)g_malloc (slen + 1);
4333                                         memcpy (export_name, named, slen);
4334                                         export_name [slen] = 0;
4335                                         named += slen;
4336                                 }
4337
4338                                 wrapper = mono_marshal_get_managed_wrapper (method, klass, 0, &error);
4339                                 mono_error_assert_ok (&error);
4340
4341                                 add_method (acfg, wrapper);
4342                                 if (export_name)
4343                                         g_hash_table_insert (acfg->export_names, wrapper, export_name);
4344                         }
4345                         g_free (cattr);
4346                 }
4347
4348                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4349                         (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
4350                         add_method (acfg, mono_marshal_get_native_wrapper (method, TRUE, TRUE));
4351                 }
4352         }
4353
4354         /* StructureToPtr/PtrToStructure wrappers */
4355         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
4356                 MonoError error;
4357                 MonoClass *klass;
4358                 
4359                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
4360                 klass = mono_class_get_checked (acfg->image, token, &error);
4361
4362                 if (!klass) {
4363                         mono_error_cleanup (&error);
4364                         continue;
4365                 }
4366
4367                 if (klass->valuetype && !mono_class_is_gtd (klass) && can_marshal_struct (klass) &&
4368                         !(klass->nested_in && strstr (klass->nested_in->name, "<PrivateImplementationDetails>") == klass->nested_in->name)) {
4369                         add_method (acfg, mono_marshal_get_struct_to_ptr (klass));
4370                         add_method (acfg, mono_marshal_get_ptr_to_struct (klass));
4371                 }
4372         }
4373 }
4374
4375 static gboolean
4376 has_type_vars (MonoClass *klass)
4377 {
4378         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
4379                 return TRUE;
4380         if (klass->rank)
4381                 return has_type_vars (klass->element_class);
4382         if (mono_class_is_ginst (klass)) {
4383                 MonoGenericContext *context = &mono_class_get_generic_class (klass)->context;
4384                 if (context->class_inst) {
4385                         int i;
4386
4387                         for (i = 0; i < context->class_inst->type_argc; ++i)
4388                                 if (has_type_vars (mono_class_from_mono_type (context->class_inst->type_argv [i])))
4389                                         return TRUE;
4390                 }
4391         }
4392         if (mono_class_is_gtd (klass))
4393                 return TRUE;
4394         return FALSE;
4395 }
4396
4397 static gboolean
4398 is_vt_inst (MonoGenericInst *inst)
4399 {
4400         int i;
4401
4402         for (i = 0; i < inst->type_argc; ++i) {
4403                 MonoType *t = inst->type_argv [i];
4404                 if (MONO_TYPE_ISSTRUCT (t) || t->type == MONO_TYPE_VALUETYPE)
4405                         return TRUE;
4406         }
4407         return FALSE;
4408 }
4409
4410 static gboolean
4411 method_has_type_vars (MonoMethod *method)
4412 {
4413         if (has_type_vars (method->klass))
4414                 return TRUE;
4415
4416         if (method->is_inflated) {
4417                 MonoGenericContext *context = mono_method_get_context (method);
4418                 if (context->method_inst) {
4419                         int i;
4420
4421                         for (i = 0; i < context->method_inst->type_argc; ++i)
4422                                 if (has_type_vars (mono_class_from_mono_type (context->method_inst->type_argv [i])))
4423                                         return TRUE;
4424                 }
4425         }
4426         return FALSE;
4427 }
4428
4429 static
4430 gboolean mono_aot_mode_is_full (MonoAotOptions *opts)
4431 {
4432         return opts->mode == MONO_AOT_MODE_FULL || opts->mode == MONO_AOT_MODE_INTERP;
4433 }
4434
4435 static
4436 gboolean mono_aot_mode_is_interp (MonoAotOptions *opts)
4437 {
4438         return opts->mode == MONO_AOT_MODE_INTERP;
4439 }
4440
4441 static
4442 gboolean mono_aot_mode_is_hybrid (MonoAotOptions *opts)
4443 {
4444         return opts->mode == MONO_AOT_MODE_HYBRID;
4445 }
4446
4447 static void add_generic_class_with_depth (MonoAotCompile *acfg, MonoClass *klass, int depth, const char *ref);
4448
4449 static void
4450 add_generic_class (MonoAotCompile *acfg, MonoClass *klass, gboolean force, const char *ref)
4451 {
4452         /* This might lead to a huge code blowup so only do it if neccesary */
4453         if (!mono_aot_mode_is_full (&acfg->aot_opts) && !mono_aot_mode_is_hybrid (&acfg->aot_opts) && !force)
4454                 return;
4455
4456         add_generic_class_with_depth (acfg, klass, 0, ref);
4457 }
4458
4459 static gboolean
4460 check_type_depth (MonoType *t, int depth)
4461 {
4462         int i;
4463
4464         if (depth > 8)
4465                 return TRUE;
4466
4467         switch (t->type) {
4468         case MONO_TYPE_GENERICINST: {
4469                 MonoGenericClass *gklass = t->data.generic_class;
4470                 MonoGenericInst *ginst = gklass->context.class_inst;
4471
4472                 if (ginst) {
4473                         for (i = 0; i < ginst->type_argc; ++i) {
4474                                 if (check_type_depth (ginst->type_argv [i], depth + 1))
4475                                         return TRUE;
4476                         }
4477                 }
4478                 break;
4479         }
4480         default:
4481                 break;
4482         }
4483
4484         return FALSE;
4485 }
4486
4487 static void
4488 add_types_from_method_header (MonoAotCompile *acfg, MonoMethod *method);
4489
4490 /*
4491  * add_generic_class:
4492  *
4493  *   Add all methods of a generic class.
4494  */
4495 static void
4496 add_generic_class_with_depth (MonoAotCompile *acfg, MonoClass *klass, int depth, const char *ref)
4497 {
4498         MonoMethod *method;
4499         MonoClassField *field;
4500         gpointer iter;
4501         gboolean use_gsharedvt = FALSE;
4502
4503         if (!acfg->ginst_hash)
4504                 acfg->ginst_hash = g_hash_table_new (NULL, NULL);
4505
4506         mono_class_init (klass);
4507
4508         if (mono_class_is_ginst (klass) && mono_class_get_generic_class (klass)->context.class_inst->is_open)
4509                 return;
4510
4511         if (has_type_vars (klass))
4512                 return;
4513
4514         if (!mono_class_is_ginst (klass) && !klass->rank)
4515                 return;
4516
4517         if (mono_class_has_failure (klass))
4518                 return;
4519
4520         if (!acfg->ginst_hash)
4521                 acfg->ginst_hash = g_hash_table_new (NULL, NULL);
4522
4523         if (g_hash_table_lookup (acfg->ginst_hash, klass))
4524                 return;
4525
4526         if (check_type_depth (&klass->byval_arg, 0))
4527                 return;
4528
4529         if (acfg->aot_opts.log_generics)
4530                 aot_printf (acfg, "%*sAdding generic instance %s [%s].\n", depth, "", mono_type_full_name (&klass->byval_arg), ref);
4531
4532         g_hash_table_insert (acfg->ginst_hash, klass, klass);
4533
4534         /*
4535          * Use gsharedvt for generic collections with vtype arguments to avoid code blowup.
4536          * Enable this only for some classes since gsharedvt might not support all methods.
4537          */
4538         if ((acfg->opts & MONO_OPT_GSHAREDVT) && klass->image == mono_defaults.corlib && mono_class_is_ginst (klass) && mono_class_get_generic_class (klass)->context.class_inst && is_vt_inst (mono_class_get_generic_class (klass)->context.class_inst) &&
4539                 (!strcmp (klass->name, "Dictionary`2") || !strcmp (klass->name, "List`1") || !strcmp (klass->name, "ReadOnlyCollection`1")))
4540                 use_gsharedvt = TRUE;
4541
4542         iter = NULL;
4543         while ((method = mono_class_get_methods (klass, &iter))) {
4544                 if ((acfg->opts & MONO_OPT_GSHAREDVT) && method->is_inflated && mono_method_get_context (method)->method_inst) {
4545                         /*
4546                          * This is partial sharing, and we can't handle it yet
4547                          */
4548                         continue;
4549                 }
4550                 
4551                 if (mono_method_is_generic_sharable_full (method, FALSE, FALSE, use_gsharedvt)) {
4552                         /* Already added */
4553                         add_types_from_method_header (acfg, method);
4554                         continue;
4555                 }
4556
4557                 if (method->is_generic)
4558                         /* FIXME: */
4559                         continue;
4560
4561                 /*
4562                  * FIXME: Instances which are referenced by these methods are not added,
4563                  * for example Array.Resize<int> for List<int>.Add ().
4564                  */
4565                 add_extra_method_with_depth (acfg, method, depth + 1);
4566         }
4567
4568         iter = NULL;
4569         while ((field = mono_class_get_fields (klass, &iter))) {
4570                 if (field->type->type == MONO_TYPE_GENERICINST)
4571                         add_generic_class_with_depth (acfg, mono_class_from_mono_type (field->type), depth + 1, "field");
4572         }
4573
4574         if (klass->delegate) {
4575                 method = mono_get_delegate_invoke (klass);
4576
4577                 method = mono_marshal_get_delegate_invoke (method, NULL);
4578
4579                 if (acfg->aot_opts.log_generics)
4580                         aot_printf (acfg, "%*sAdding method %s.\n", depth, "", mono_method_get_full_name (method));
4581
4582                 add_method (acfg, method);
4583         }
4584
4585         /* Add superclasses */
4586         if (klass->parent)
4587                 add_generic_class_with_depth (acfg, klass->parent, depth, "parent");
4588
4589         /* 
4590          * For ICollection<T>, add instances of the helper methods
4591          * in Array, since a T[] could be cast to ICollection<T>.
4592          */
4593         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") &&
4594                 (!strcmp(klass->name, "ICollection`1") || !strcmp (klass->name, "IEnumerable`1") || !strcmp (klass->name, "IList`1") || !strcmp (klass->name, "IEnumerator`1") || !strcmp (klass->name, "IReadOnlyList`1"))) {
4595                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4596                 MonoClass *array_class = mono_bounded_array_class_get (tclass, 1, FALSE);
4597                 gpointer iter;
4598                 char *name_prefix;
4599
4600                 if (!strcmp (klass->name, "IEnumerator`1"))
4601                         name_prefix = g_strdup_printf ("%s.%s", klass->name_space, "IEnumerable`1");
4602                 else
4603                         name_prefix = g_strdup_printf ("%s.%s", klass->name_space, klass->name);
4604
4605                 /* Add the T[]/InternalEnumerator class */
4606                 if (!strcmp (klass->name, "IEnumerable`1") || !strcmp (klass->name, "IEnumerator`1")) {
4607                         MonoError error;
4608                         MonoClass *nclass;
4609
4610                         iter = NULL;
4611                         while ((nclass = mono_class_get_nested_types (array_class->parent, &iter))) {
4612                                 if (!strcmp (nclass->name, "InternalEnumerator`1"))
4613                                         break;
4614                         }
4615                         g_assert (nclass);
4616                         nclass = mono_class_inflate_generic_class_checked (nclass, mono_generic_class_get_context (mono_class_get_generic_class (klass)), &error);
4617                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4618                         add_generic_class (acfg, nclass, FALSE, "ICollection<T>");
4619                 }
4620
4621                 iter = NULL;
4622                 while ((method = mono_class_get_methods (array_class, &iter))) {
4623                         if (strstr (method->name, name_prefix)) {
4624                                 MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4625
4626                                 add_extra_method_with_depth (acfg, m, depth);
4627                         }
4628                 }
4629
4630                 g_free (name_prefix);
4631         }
4632
4633         /* Add an instance of GenericComparer<T> which is created dynamically by Comparer<T> */
4634         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "Comparer`1")) {
4635                 MonoError error;
4636                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4637                 MonoClass *icomparable, *gcomparer, *icomparable_inst;
4638                 MonoGenericContext ctx;
4639                 MonoType *args [16];
4640
4641                 memset (&ctx, 0, sizeof (ctx));
4642
4643                 icomparable = mono_class_load_from_name (mono_defaults.corlib, "System", "IComparable`1");
4644
4645                 args [0] = &tclass->byval_arg;
4646                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4647
4648                 icomparable_inst = mono_class_inflate_generic_class_checked (icomparable, &ctx, &error);
4649                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4650
4651                 if (mono_class_is_assignable_from (icomparable_inst, tclass)) {
4652                         MonoClass *gcomparer_inst;
4653                         gcomparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "GenericComparer`1");
4654                         gcomparer_inst = mono_class_inflate_generic_class_checked (gcomparer, &ctx, &error);
4655                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4656
4657                         add_generic_class (acfg, gcomparer_inst, FALSE, "Comparer<T>");
4658                 }
4659         }
4660
4661         /* Add an instance of GenericEqualityComparer<T> which is created dynamically by EqualityComparer<T> */
4662         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "EqualityComparer`1")) {
4663                 MonoError error;
4664                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4665                 MonoClass *iface, *gcomparer, *iface_inst;
4666                 MonoGenericContext ctx;
4667                 MonoType *args [16];
4668
4669                 memset (&ctx, 0, sizeof (ctx));
4670
4671                 iface = mono_class_load_from_name (mono_defaults.corlib, "System", "IEquatable`1");
4672                 g_assert (iface);
4673                 args [0] = &tclass->byval_arg;
4674                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4675
4676                 iface_inst = mono_class_inflate_generic_class_checked (iface, &ctx, &error);
4677                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4678
4679                 if (mono_class_is_assignable_from (iface_inst, tclass)) {
4680                         MonoClass *gcomparer_inst;
4681                         MonoError error;
4682
4683                         gcomparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "GenericEqualityComparer`1");
4684                         gcomparer_inst = mono_class_inflate_generic_class_checked (gcomparer, &ctx, &error);
4685                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4686                         add_generic_class (acfg, gcomparer_inst, FALSE, "EqualityComparer<T>");
4687                 }
4688         }
4689
4690         /* Add an instance of EnumComparer<T> which is created dynamically by EqualityComparer<T> for enums */
4691         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "EqualityComparer`1")) {
4692                 MonoClass *enum_comparer;
4693                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4694                 MonoGenericContext ctx;
4695                 MonoType *args [16];
4696
4697                 if (mono_class_is_enum (tclass)) {
4698                         MonoClass *enum_comparer_inst;
4699                         MonoError error;
4700
4701                         memset (&ctx, 0, sizeof (ctx));
4702                         args [0] = &tclass->byval_arg;
4703                         ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4704
4705                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "EnumEqualityComparer`1");
4706                         enum_comparer_inst = mono_class_inflate_generic_class_checked (enum_comparer, &ctx, &error);
4707                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4708                         add_generic_class (acfg, enum_comparer_inst, FALSE, "EqualityComparer<T>");
4709                 }
4710         }
4711
4712         /* Add an instance of ObjectComparer<T> which is created dynamically by Comparer<T> for enums */
4713         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "Comparer`1")) {
4714                 MonoClass *comparer;
4715                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4716                 MonoGenericContext ctx;
4717                 MonoType *args [16];
4718
4719                 if (mono_class_is_enum (tclass)) {
4720                         MonoClass *comparer_inst;
4721                         MonoError error;
4722
4723                         memset (&ctx, 0, sizeof (ctx));
4724                         args [0] = &tclass->byval_arg;
4725                         ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4726
4727                         comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "ObjectComparer`1");
4728                         comparer_inst = mono_class_inflate_generic_class_checked (comparer, &ctx, &error);
4729                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4730                         add_generic_class (acfg, comparer_inst, FALSE, "Comparer<T>");
4731                 }
4732         }
4733 }
4734
4735 static void
4736 add_instances_of (MonoAotCompile *acfg, MonoClass *klass, MonoType **insts, int ninsts, gboolean force)
4737 {
4738         int i;
4739         MonoGenericContext ctx;
4740         MonoType *args [16];
4741
4742         if (acfg->aot_opts.no_instances)
4743                 return;
4744
4745         memset (&ctx, 0, sizeof (ctx));
4746
4747         for (i = 0; i < ninsts; ++i) {
4748                 MonoError error;
4749                 MonoClass *generic_inst;
4750                 args [0] = insts [i];
4751                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4752                 generic_inst = mono_class_inflate_generic_class_checked (klass, &ctx, &error);
4753                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4754                 add_generic_class (acfg, generic_inst, force, "");
4755         }
4756 }
4757
4758 static void
4759 add_types_from_method_header (MonoAotCompile *acfg, MonoMethod *method)
4760 {
4761         MonoError error;
4762         MonoMethodHeader *header;
4763         MonoMethodSignature *sig;
4764         int j, depth;
4765
4766         depth = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_depth, method));
4767
4768         sig = mono_method_signature (method);
4769
4770         if (sig) {
4771                 for (j = 0; j < sig->param_count; ++j)
4772                         if (sig->params [j]->type == MONO_TYPE_GENERICINST)
4773                                 add_generic_class_with_depth (acfg, mono_class_from_mono_type (sig->params [j]), depth + 1, "arg");
4774         }
4775
4776         header = mono_method_get_header_checked (method, &error);
4777
4778         if (header) {
4779                 for (j = 0; j < header->num_locals; ++j)
4780                         if (header->locals [j]->type == MONO_TYPE_GENERICINST)
4781                                 add_generic_class_with_depth (acfg, mono_class_from_mono_type (header->locals [j]), depth + 1, "local");
4782                 mono_metadata_free_mh (header);
4783         } else {
4784                 mono_error_cleanup (&error); /* FIXME report the error */
4785         }
4786
4787 }
4788
4789 /*
4790  * add_generic_instances:
4791  *
4792  *   Add instances referenced by the METHODSPEC/TYPESPEC table.
4793  */
4794 static void
4795 add_generic_instances (MonoAotCompile *acfg)
4796 {
4797         int i;
4798         guint32 token;
4799         MonoMethod *method;
4800         MonoGenericContext *context;
4801
4802         if (acfg->aot_opts.no_instances)
4803                 return;
4804
4805         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHODSPEC].rows; ++i) {
4806                 MonoError error;
4807                 token = MONO_TOKEN_METHOD_SPEC | (i + 1);
4808                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4809
4810                 if (!method) {
4811                         aot_printerrf (acfg, "Failed to load methodspec 0x%x due to %s.\n", token, mono_error_get_message (&error));
4812                         aot_printerrf (acfg, "Run with MONO_LOG_LEVEL=debug for more information.\n");
4813                         mono_error_cleanup (&error);
4814                         continue;
4815                 }
4816
4817                 if (method->klass->image != acfg->image)
4818                         continue;
4819
4820                 context = mono_method_get_context (method);
4821
4822                 if (context && ((context->class_inst && context->class_inst->is_open)))
4823                         continue;
4824
4825                 /*
4826                  * For open methods, create an instantiation which can be passed to the JIT.
4827                  * FIXME: Handle class_inst as well.
4828                  */
4829                 if (context && context->method_inst && context->method_inst->is_open) {
4830                         MonoError error;
4831                         MonoGenericContext shared_context;
4832                         MonoGenericInst *inst;
4833                         MonoType **type_argv;
4834                         int i;
4835                         MonoMethod *declaring_method;
4836                         gboolean supported = TRUE;
4837
4838                         /* Check that the context doesn't contain open constructed types */
4839                         if (context->class_inst) {
4840                                 inst = context->class_inst;
4841                                 for (i = 0; i < inst->type_argc; ++i) {
4842                                         if (MONO_TYPE_IS_REFERENCE (inst->type_argv [i]) || inst->type_argv [i]->type == MONO_TYPE_VAR || inst->type_argv [i]->type == MONO_TYPE_MVAR)
4843                                                 continue;
4844                                         if (mono_class_is_open_constructed_type (inst->type_argv [i]))
4845                                                 supported = FALSE;
4846                                 }
4847                         }
4848                         if (context->method_inst) {
4849                                 inst = context->method_inst;
4850                                 for (i = 0; i < inst->type_argc; ++i) {
4851                                         if (MONO_TYPE_IS_REFERENCE (inst->type_argv [i]) || inst->type_argv [i]->type == MONO_TYPE_VAR || inst->type_argv [i]->type == MONO_TYPE_MVAR)
4852                                                 continue;
4853                                         if (mono_class_is_open_constructed_type (inst->type_argv [i]))
4854                                                 supported = FALSE;
4855                                 }
4856                         }
4857
4858                         if (!supported)
4859                                 continue;
4860
4861                         memset (&shared_context, 0, sizeof (MonoGenericContext));
4862
4863                         inst = context->class_inst;
4864                         if (inst) {
4865                                 type_argv = g_new0 (MonoType*, inst->type_argc);
4866                                 for (i = 0; i < inst->type_argc; ++i) {
4867                                         if (MONO_TYPE_IS_REFERENCE (inst->type_argv [i]) || inst->type_argv [i]->type == MONO_TYPE_VAR || inst->type_argv [i]->type == MONO_TYPE_MVAR)
4868                                                 type_argv [i] = &mono_defaults.object_class->byval_arg;
4869                                         else
4870                                                 type_argv [i] = inst->type_argv [i];
4871                                 }
4872                                 
4873                                 shared_context.class_inst = mono_metadata_get_generic_inst (inst->type_argc, type_argv);
4874                                 g_free (type_argv);
4875                         }
4876
4877                         inst = context->method_inst;
4878                         if (inst) {
4879                                 type_argv = g_new0 (MonoType*, inst->type_argc);
4880                                 for (i = 0; i < inst->type_argc; ++i) {
4881                                         if (MONO_TYPE_IS_REFERENCE (inst->type_argv [i]) || inst->type_argv [i]->type == MONO_TYPE_VAR || inst->type_argv [i]->type == MONO_TYPE_MVAR)
4882                                                 type_argv [i] = &mono_defaults.object_class->byval_arg;
4883                                         else
4884                                                 type_argv [i] = inst->type_argv [i];
4885                                 }
4886
4887                                 shared_context.method_inst = mono_metadata_get_generic_inst (inst->type_argc, type_argv);
4888                                 g_free (type_argv);
4889                         }
4890
4891                         if (method->is_generic || mono_class_is_gtd (method->klass))
4892                                 declaring_method = method;
4893                         else
4894                                 declaring_method = mono_method_get_declaring_generic_method (method);
4895
4896                         method = mono_class_inflate_generic_method_checked (declaring_method, &shared_context, &error);
4897                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4898                 }
4899
4900                 /* 
4901                  * If the method is fully sharable, it was already added in place of its
4902                  * generic definition.
4903                  */
4904                 if (mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE))
4905                         continue;
4906
4907                 /*
4908                  * FIXME: Partially shared methods are not shared here, so we end up with
4909                  * many identical methods.
4910                  */
4911                 add_extra_method (acfg, method);
4912         }
4913
4914         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows; ++i) {
4915                 MonoError error;
4916                 MonoClass *klass;
4917
4918                 token = MONO_TOKEN_TYPE_SPEC | (i + 1);
4919
4920                 klass = mono_class_get_checked (acfg->image, token, &error);
4921                 if (!klass || klass->rank) {
4922                         mono_error_cleanup (&error);
4923                         continue;
4924                 }
4925
4926                 add_generic_class (acfg, klass, FALSE, "typespec");
4927         }
4928
4929         /* Add types of args/locals */
4930         for (i = 0; i < acfg->methods->len; ++i) {
4931                 method = (MonoMethod *)g_ptr_array_index (acfg->methods, i);
4932                 add_types_from_method_header (acfg, method);
4933         }
4934
4935         if (acfg->image == mono_defaults.corlib) {
4936                 MonoClass *klass;
4937                 MonoType *insts [256];
4938                 int ninsts = 0;
4939
4940                 insts [ninsts ++] = &mono_defaults.byte_class->byval_arg;
4941                 insts [ninsts ++] = &mono_defaults.sbyte_class->byval_arg;
4942                 insts [ninsts ++] = &mono_defaults.int16_class->byval_arg;
4943                 insts [ninsts ++] = &mono_defaults.uint16_class->byval_arg;
4944                 insts [ninsts ++] = &mono_defaults.int32_class->byval_arg;
4945                 insts [ninsts ++] = &mono_defaults.uint32_class->byval_arg;
4946                 insts [ninsts ++] = &mono_defaults.int64_class->byval_arg;
4947                 insts [ninsts ++] = &mono_defaults.uint64_class->byval_arg;
4948                 insts [ninsts ++] = &mono_defaults.single_class->byval_arg;
4949                 insts [ninsts ++] = &mono_defaults.double_class->byval_arg;
4950                 insts [ninsts ++] = &mono_defaults.char_class->byval_arg;
4951                 insts [ninsts ++] = &mono_defaults.boolean_class->byval_arg;
4952
4953                 /* Add GenericComparer<T> instances for primitive types for Enum.ToString () */
4954                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "GenericComparer`1");
4955                 if (klass)
4956                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4957                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "GenericEqualityComparer`1");
4958                 if (klass)
4959                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4960
4961                 /* Add instances of EnumEqualityComparer which are created by EqualityComparer<T> for enums */
4962                 {
4963                         MonoClass *enum_comparer;
4964                         MonoType *insts [16];
4965                         int ninsts;
4966
4967                         ninsts = 0;
4968                         insts [ninsts ++] = &mono_defaults.int32_class->byval_arg;
4969                         insts [ninsts ++] = &mono_defaults.uint32_class->byval_arg;
4970                         insts [ninsts ++] = &mono_defaults.uint16_class->byval_arg;
4971                         insts [ninsts ++] = &mono_defaults.byte_class->byval_arg;
4972                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "EnumEqualityComparer`1");
4973                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4974
4975                         ninsts = 0;
4976                         insts [ninsts ++] = &mono_defaults.int16_class->byval_arg;
4977                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "ShortEnumEqualityComparer`1");
4978                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4979
4980                         ninsts = 0;
4981                         insts [ninsts ++] = &mono_defaults.sbyte_class->byval_arg;
4982                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "SByteEnumEqualityComparer`1");
4983                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4984
4985                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "LongEnumEqualityComparer`1");
4986                         ninsts = 0;
4987                         insts [ninsts ++] = &mono_defaults.int64_class->byval_arg;
4988                         insts [ninsts ++] = &mono_defaults.uint64_class->byval_arg;
4989                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4990                 }
4991
4992                 /* Add instances of the array generic interfaces for primitive types */
4993                 /* This will add instances of the InternalArray_ helper methods in Array too */
4994                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "ICollection`1");
4995                 if (klass)
4996                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4997
4998                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "IList`1");
4999                 if (klass)
5000                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
5001
5002                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "IEnumerable`1");
5003                 if (klass)
5004                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
5005
5006                 /* 
5007                  * Add a managed-to-native wrapper of Array.GetGenericValueImpl<object>, which is
5008                  * used for all instances of GetGenericValueImpl by the AOT runtime.
5009                  */
5010                 {
5011                         MonoGenericContext ctx;
5012                         MonoType *args [16];
5013                         MonoMethod *get_method;
5014                         MonoClass *array_klass = mono_array_class_get (mono_defaults.object_class, 1)->parent;
5015
5016                         get_method = mono_class_get_method_from_name (array_klass, "GetGenericValueImpl", 2);
5017
5018                         if (get_method) {
5019                                 MonoError error;
5020                                 memset (&ctx, 0, sizeof (ctx));
5021                                 args [0] = &mono_defaults.object_class->byval_arg;
5022                                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5023                                 add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (get_method, &ctx, &error), TRUE, TRUE));
5024                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5025                         }
5026                 }
5027
5028                 /* Same for CompareExchange<T>/Exchange<T> */
5029                 {
5030                         MonoGenericContext ctx;
5031                         MonoType *args [16];
5032                         MonoMethod *m;
5033                         MonoClass *interlocked_klass = mono_class_load_from_name (mono_defaults.corlib, "System.Threading", "Interlocked");
5034                         gpointer iter = NULL;
5035
5036                         while ((m = mono_class_get_methods (interlocked_klass, &iter))) {
5037                                 if ((!strcmp (m->name, "CompareExchange") || !strcmp (m->name, "Exchange")) && m->is_generic) {
5038                                         MonoError error;
5039                                         memset (&ctx, 0, sizeof (ctx));
5040                                         args [0] = &mono_defaults.object_class->byval_arg;
5041                                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5042                                         add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE));
5043                                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5044                                 }
5045                         }
5046                 }
5047
5048                 /* Same for Volatile.Read/Write<T> */
5049                 {
5050                         MonoGenericContext ctx;
5051                         MonoType *args [16];
5052                         MonoMethod *m;
5053                         MonoClass *volatile_klass = mono_class_try_load_from_name (mono_defaults.corlib, "System.Threading", "Volatile");
5054                         gpointer iter = NULL;
5055
5056                         if (volatile_klass) {
5057                                 while ((m = mono_class_get_methods (volatile_klass, &iter))) {
5058                                         if ((!strcmp (m->name, "Read") || !strcmp (m->name, "Write")) && m->is_generic) {
5059                                                 MonoError error;
5060                                                 memset (&ctx, 0, sizeof (ctx));
5061                                                 args [0] = &mono_defaults.object_class->byval_arg;
5062                                                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5063                                                 add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE));
5064                                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5065                                         }
5066                                 }
5067                         }
5068                 }
5069
5070                 /* object[] accessor wrappers. */
5071                 for (i = 1; i < 4; ++i) {
5072                         MonoClass *obj_array_class = mono_array_class_get (mono_defaults.object_class, i);
5073                         MonoMethod *m;
5074
5075                         m = mono_class_get_method_from_name (obj_array_class, "Get", i);
5076                         g_assert (m);
5077
5078                         m = mono_marshal_get_array_accessor_wrapper (m);
5079                         add_extra_method (acfg, m);
5080
5081                         m = mono_class_get_method_from_name (obj_array_class, "Address", i);
5082                         g_assert (m);
5083
5084                         m = mono_marshal_get_array_accessor_wrapper (m);
5085                         add_extra_method (acfg, m);
5086
5087                         m = mono_class_get_method_from_name (obj_array_class, "Set", i + 1);
5088                         g_assert (m);
5089
5090                         m = mono_marshal_get_array_accessor_wrapper (m);
5091                         add_extra_method (acfg, m);
5092                 }
5093         }
5094 }
5095
5096 /*
5097  * is_direct_callable:
5098  *
5099  *   Return whenever the method identified by JI is directly callable without 
5100  * going through the PLT.
5101  */
5102 static gboolean
5103 is_direct_callable (MonoAotCompile *acfg, MonoMethod *method, MonoJumpInfo *patch_info)
5104 {
5105         if ((patch_info->type == MONO_PATCH_INFO_METHOD) && (patch_info->data.method->klass->image == acfg->image)) {
5106                 MonoCompile *callee_cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, patch_info->data.method);
5107                 if (callee_cfg) {
5108                         gboolean direct_callable = TRUE;
5109
5110                         if (direct_callable && !(!callee_cfg->has_got_slots && mono_class_is_before_field_init (callee_cfg->method->klass)))
5111                                 direct_callable = FALSE;
5112                         if ((callee_cfg->method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) && (!method || method->wrapper_type != MONO_WRAPPER_SYNCHRONIZED))
5113                                 // FIXME: Maybe call the wrapper directly ?
5114                                 direct_callable = FALSE;
5115
5116                         if (acfg->aot_opts.soft_debug || acfg->aot_opts.no_direct_calls) {
5117                                 /* Disable this so all calls go through load_method (), see the
5118                                  * mini_get_debug_options ()->load_aot_jit_info_eagerly = TRUE; line in
5119                                  * mono_debugger_agent_init ().
5120                                  */
5121                                 direct_callable = FALSE;
5122                         }
5123
5124                         if (callee_cfg->method->wrapper_type == MONO_WRAPPER_ALLOC)
5125                                 /* sgen does some initialization when the allocator method is created */
5126                                 direct_callable = FALSE;
5127                         if (callee_cfg->method->wrapper_type == MONO_WRAPPER_WRITE_BARRIER)
5128                                 /* we don't know at compile time whether sgen is concurrent or not */
5129                                 direct_callable = FALSE;
5130
5131                         if (direct_callable)
5132                                 return TRUE;
5133                 }
5134         } else if ((patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL && patch_info->data.method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
5135                 if (acfg->aot_opts.direct_pinvoke)
5136                         return TRUE;
5137         } else if (patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
5138                 if (acfg->aot_opts.direct_icalls)
5139                         return TRUE;
5140                 return FALSE;
5141         }
5142
5143         return FALSE;
5144 }
5145
5146 #ifdef MONO_ARCH_AOT_SUPPORTED
5147 static const char *
5148 get_pinvoke_import (MonoAotCompile *acfg, MonoMethod *method)
5149 {
5150         MonoImage *image = method->klass->image;
5151         MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *) method;
5152         MonoTableInfo *tables = image->tables;
5153         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
5154         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
5155         guint32 im_cols [MONO_IMPLMAP_SIZE];
5156         char *import;
5157
5158         import = (char *)g_hash_table_lookup (acfg->method_to_pinvoke_import, method);
5159         if (import != NULL)
5160                 return import;
5161
5162         if (!piinfo->implmap_idx || piinfo->implmap_idx > im->rows)
5163                 return NULL;
5164
5165         mono_metadata_decode_row (im, piinfo->implmap_idx - 1, im_cols, MONO_IMPLMAP_SIZE);
5166
5167         if (!im_cols [MONO_IMPLMAP_SCOPE] || im_cols [MONO_IMPLMAP_SCOPE] > mr->rows)
5168                 return NULL;
5169
5170         import = g_strdup_printf ("%s", mono_metadata_string_heap (image, im_cols [MONO_IMPLMAP_NAME]));
5171
5172         g_hash_table_insert (acfg->method_to_pinvoke_import, method, import);
5173         
5174         return import;
5175 }
5176 #else
5177 static const char *
5178 get_pinvoke_import (MonoAotCompile *acfg, MonoMethod *method)
5179 {
5180         return NULL;
5181 }
5182 #endif
5183
5184 static gint
5185 compare_lne (MonoDebugLineNumberEntry *a, MonoDebugLineNumberEntry *b)
5186 {
5187         if (a->native_offset == b->native_offset)
5188                 return a->il_offset - b->il_offset;
5189         else
5190                 return a->native_offset - b->native_offset;
5191 }
5192
5193 /*
5194  * compute_line_numbers:
5195  *
5196  * Returns a sparse array of size CODE_SIZE containing MonoDebugSourceLocation* entries for the native offsets which have a corresponding line number
5197  * entry.
5198  */
5199 static MonoDebugSourceLocation**
5200 compute_line_numbers (MonoMethod *method, int code_size, MonoDebugMethodJitInfo *debug_info)
5201 {
5202         MonoDebugMethodInfo *minfo;
5203         MonoDebugLineNumberEntry *ln_array;
5204         MonoDebugSourceLocation *loc;
5205         int i, prev_line, prev_il_offset;
5206         int *native_to_il_offset = NULL;
5207         MonoDebugSourceLocation **res;
5208         gboolean first;
5209
5210         minfo = mono_debug_lookup_method (method);
5211         if (!minfo)
5212                 return NULL;
5213         // FIXME: This seems to happen when two methods have the same cfg->method_to_register
5214         if (debug_info->code_size != code_size)
5215                 return NULL;
5216
5217         g_assert (code_size);
5218
5219         /* Compute the native->IL offset mapping */
5220
5221         ln_array = g_new0 (MonoDebugLineNumberEntry, debug_info->num_line_numbers);
5222         memcpy (ln_array, debug_info->line_numbers, debug_info->num_line_numbers * sizeof (MonoDebugLineNumberEntry));
5223
5224         qsort (ln_array, debug_info->num_line_numbers, sizeof (MonoDebugLineNumberEntry), (int (*)(const void *, const void *))compare_lne);
5225
5226         native_to_il_offset = g_new0 (int, code_size + 1);
5227
5228         for (i = 0; i < debug_info->num_line_numbers; ++i) {
5229                 int j;
5230                 MonoDebugLineNumberEntry *lne = &ln_array [i];
5231
5232                 if (i == 0) {
5233                         for (j = 0; j < lne->native_offset; ++j)
5234                                 native_to_il_offset [j] = -1;
5235                 }
5236
5237                 if (i < debug_info->num_line_numbers - 1) {
5238                         MonoDebugLineNumberEntry *lne_next = &ln_array [i + 1];
5239
5240                         for (j = lne->native_offset; j < lne_next->native_offset; ++j)
5241                                 native_to_il_offset [j] = lne->il_offset;
5242                 } else {
5243                         for (j = lne->native_offset; j < code_size; ++j)
5244                                 native_to_il_offset [j] = lne->il_offset;
5245                 }
5246         }
5247         g_free (ln_array);
5248
5249         /* Compute the native->line number mapping */
5250         res = g_new0 (MonoDebugSourceLocation*, code_size);
5251         prev_il_offset = -1;
5252         prev_line = -1;
5253         first = TRUE;
5254         for (i = 0; i < code_size; ++i) {
5255                 int il_offset = native_to_il_offset [i];
5256
5257                 if (il_offset == -1 || il_offset == prev_il_offset)
5258                         continue;
5259                 prev_il_offset = il_offset;
5260                 loc = mono_debug_method_lookup_location (minfo, il_offset);
5261                 if (!(loc && loc->source_file))
5262                         continue;
5263                 if (loc->row == prev_line) {
5264                         mono_debug_free_source_location (loc);
5265                         continue;
5266                 }
5267                 prev_line = loc->row;
5268                 //printf ("D: %s:%d il=%x native=%x\n", loc->source_file, loc->row, il_offset, i);
5269                 if (first)
5270                         /* This will cover the prolog too */
5271                         res [0] = loc;
5272                 else
5273                         res [i] = loc;
5274                 first = FALSE;
5275         }
5276         return res;
5277 }
5278
5279 static int
5280 get_file_index (MonoAotCompile *acfg, const char *source_file)
5281 {
5282         int findex;
5283
5284         // FIXME: Free these
5285         if (!acfg->dwarf_ln_filenames)
5286                 acfg->dwarf_ln_filenames = g_hash_table_new (g_str_hash, g_str_equal);
5287         findex = GPOINTER_TO_INT (g_hash_table_lookup (acfg->dwarf_ln_filenames, source_file));
5288         if (!findex) {
5289                 findex = g_hash_table_size (acfg->dwarf_ln_filenames) + 1;
5290                 g_hash_table_insert (acfg->dwarf_ln_filenames, g_strdup (source_file), GINT_TO_POINTER (findex));
5291                 emit_unset_mode (acfg);
5292                 fprintf (acfg->fp, ".file %d \"%s\"\n", findex, mono_dwarf_escape_path (source_file));
5293         }
5294         return findex;
5295 }
5296
5297 #ifdef TARGET_ARM64
5298 #define INST_LEN 4
5299 #else
5300 #define INST_LEN 1
5301 #endif
5302
5303 /*
5304  * emit_and_reloc_code:
5305  *
5306  *   Emit the native code in CODE, handling relocations along the way. If GOT_ONLY
5307  * is true, calls are made through the GOT too. This is used for emitting trampolines
5308  * in full-aot mode, since calls made from trampolines couldn't go through the PLT,
5309  * since trampolines are needed to make PTL work.
5310  */
5311 static void
5312 emit_and_reloc_code (MonoAotCompile *acfg, MonoMethod *method, guint8 *code, guint32 code_len, MonoJumpInfo *relocs, gboolean got_only, MonoDebugMethodJitInfo *debug_info)
5313 {
5314         int i, pindex, start_index;
5315         GPtrArray *patches;
5316         MonoJumpInfo *patch_info;
5317         MonoDebugSourceLocation **locs = NULL;
5318         gboolean skip, prologue_end = FALSE;
5319 #ifdef MONO_ARCH_AOT_SUPPORTED
5320         gboolean direct_call, external_call;
5321         guint32 got_slot;
5322         const char *direct_call_target = 0;
5323         const char *direct_pinvoke;
5324 #endif
5325
5326         if (acfg->gas_line_numbers && method && debug_info) {
5327                 locs = compute_line_numbers (method, code_len, debug_info);
5328                 if (!locs) {
5329                         int findex = get_file_index (acfg, "<unknown>");
5330                         emit_unset_mode (acfg);
5331                         fprintf (acfg->fp, ".loc %d %d 0\n", findex, 1);
5332                 }
5333         }
5334
5335         /* Collect and sort relocations */
5336         patches = g_ptr_array_new ();
5337         for (patch_info = relocs; patch_info; patch_info = patch_info->next)
5338                 g_ptr_array_add (patches, patch_info);
5339         g_ptr_array_sort (patches, compare_patches);
5340
5341         start_index = 0;
5342         for (i = 0; i < code_len; i += INST_LEN) {
5343                 patch_info = NULL;
5344                 for (pindex = start_index; pindex < patches->len; ++pindex) {
5345                         patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5346                         if (patch_info->ip.i >= i)
5347                                 break;
5348                 }
5349
5350                 if (locs && locs [i]) {
5351                         MonoDebugSourceLocation *loc = locs [i];
5352                         int findex;
5353                         const char *options;
5354
5355                         findex = get_file_index (acfg, loc->source_file);
5356                         emit_unset_mode (acfg);
5357                         if (!prologue_end)
5358                                 options = " prologue_end";
5359                         else
5360                                 options = "";
5361                         prologue_end = TRUE;
5362                         fprintf (acfg->fp, ".loc %d %d 0%s\n", findex, loc->row, options);
5363                         mono_debug_free_source_location (loc);
5364                 }
5365
5366                 skip = FALSE;
5367 #ifdef MONO_ARCH_AOT_SUPPORTED
5368                 if (patch_info && (patch_info->ip.i == i) && (pindex < patches->len)) {
5369                         start_index = pindex;
5370
5371                         switch (patch_info->type) {
5372                         case MONO_PATCH_INFO_NONE:
5373                                 break;
5374                         case MONO_PATCH_INFO_GOT_OFFSET: {
5375                                 int code_size;
5376  
5377                                 arch_emit_got_offset (acfg, code + i, &code_size);
5378                                 i += code_size - INST_LEN;
5379                                 skip = TRUE;
5380                                 patch_info->type = MONO_PATCH_INFO_NONE;
5381                                 break;
5382                         }
5383                         case MONO_PATCH_INFO_OBJC_SELECTOR_REF: {
5384                                 int code_size, index;
5385                                 char *selector = (char *)patch_info->data.target;
5386
5387                                 if (!acfg->objc_selector_to_index)
5388                                         acfg->objc_selector_to_index = g_hash_table_new (g_str_hash, g_str_equal);
5389                                 if (!acfg->objc_selectors)
5390                                         acfg->objc_selectors = g_ptr_array_new ();
5391                                 index = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->objc_selector_to_index, selector));
5392                                 if (index)
5393                                         index --;
5394                                 else {
5395                                         index = acfg->objc_selector_index;
5396                                         g_ptr_array_add (acfg->objc_selectors, (void*)patch_info->data.target);
5397                                         g_hash_table_insert (acfg->objc_selector_to_index, selector, GUINT_TO_POINTER (index + 1));
5398                                         acfg->objc_selector_index ++;
5399                                 }
5400
5401                                 arch_emit_objc_selector_ref (acfg, code + i, index, &code_size);
5402                                 i += code_size - INST_LEN;
5403                                 skip = TRUE;
5404                                 patch_info->type = MONO_PATCH_INFO_NONE;
5405                                 break;
5406                         }
5407                         default: {
5408                                 /*
5409                                  * If this patch is a call, try emitting a direct call instead of
5410                                  * through a PLT entry. This is possible if the called method is in
5411                                  * the same assembly and requires no initialization.
5412                                  */
5413                                 direct_call = FALSE;
5414                                 external_call = FALSE;
5415                                 if ((patch_info->type == MONO_PATCH_INFO_METHOD) && (patch_info->data.method->klass->image == acfg->image)) {
5416                                         if (!got_only && is_direct_callable (acfg, method, patch_info)) {
5417                                                 MonoCompile *callee_cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, patch_info->data.method);
5418                                                 //printf ("DIRECT: %s %s\n", method ? mono_method_full_name (method, TRUE) : "", mono_method_full_name (callee_cfg->method, TRUE));
5419                                                 direct_call = TRUE;
5420                                                 direct_call_target = callee_cfg->asm_symbol;
5421                                                 patch_info->type = MONO_PATCH_INFO_NONE;
5422                                                 acfg->stats.direct_calls ++;
5423                                         }
5424
5425                                         acfg->stats.all_calls ++;
5426                                 } else if (patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
5427                                         if (!got_only && is_direct_callable (acfg, method, patch_info)) {
5428                                                 if (!(patch_info->data.method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
5429                                                         direct_pinvoke = mono_lookup_icall_symbol (patch_info->data.method);
5430                                                 else
5431                                                         direct_pinvoke = get_pinvoke_import (acfg, patch_info->data.method);
5432                                                 if (direct_pinvoke) {
5433                                                         direct_call = TRUE;
5434                                                         g_assert (strlen (direct_pinvoke) < 1000);
5435                                                         direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, direct_pinvoke);
5436                                                 }
5437                                         }
5438                                 } else if (patch_info->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
5439                                         const char *sym = mono_lookup_jit_icall_symbol (patch_info->data.name);
5440                                         if (!got_only && sym && acfg->aot_opts.direct_icalls) {
5441                                                 /* Call to a C function implementing a jit icall */
5442                                                 direct_call = TRUE;
5443                                                 external_call = TRUE;
5444                                                 g_assert (strlen (sym) < 1000);
5445                                                 direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, sym);
5446                                         }
5447                                 } else if (patch_info->type == MONO_PATCH_INFO_INTERNAL_METHOD) {
5448                                         MonoJitICallInfo *info = mono_find_jit_icall_by_name (patch_info->data.name);
5449                                         const char *sym = mono_lookup_jit_icall_symbol (patch_info->data.name);
5450                                         if (!got_only && sym && acfg->aot_opts.direct_icalls && info->func == info->wrapper) {
5451                                                 /* Call to a jit icall without a wrapper */
5452                                                 direct_call = TRUE;
5453                                                 external_call = TRUE;
5454                                                 g_assert (strlen (sym) < 1000);
5455                                                 direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, sym);
5456                                         }
5457                                 }
5458
5459                                 if (direct_call) {
5460                                         patch_info->type = MONO_PATCH_INFO_NONE;
5461                                         acfg->stats.direct_calls ++;
5462                                 }
5463
5464                                 if (!got_only && !direct_call) {
5465                                         MonoPltEntry *plt_entry = get_plt_entry (acfg, patch_info);
5466                                         if (plt_entry) {
5467                                                 /* This patch has a PLT entry, so we must emit a call to the PLT entry */
5468                                                 direct_call = TRUE;
5469                                                 direct_call_target = plt_entry->symbol;
5470                 
5471                                                 /* Nullify the patch */
5472                                                 patch_info->type = MONO_PATCH_INFO_NONE;
5473                                                 plt_entry->jit_used = TRUE;
5474                                         }
5475                                 }
5476
5477                                 if (direct_call) {
5478                                         int call_size;
5479
5480                                         arch_emit_direct_call (acfg, direct_call_target, external_call, FALSE, patch_info, &call_size);
5481                                         i += call_size - INST_LEN;
5482                                 } else {
5483                                         int code_size;
5484
5485                                         got_slot = get_got_offset (acfg, FALSE, patch_info);
5486
5487                                         arch_emit_got_access (acfg, acfg->got_symbol, code + i, got_slot, &code_size);
5488                                         i += code_size - INST_LEN;
5489                                 }
5490                                 skip = TRUE;
5491                         }
5492                         }
5493                 }
5494 #endif /* MONO_ARCH_AOT_SUPPORTED */
5495
5496                 if (!skip) {
5497                         /* Find next patch */
5498                         patch_info = NULL;
5499                         for (pindex = start_index; pindex < patches->len; ++pindex) {
5500                                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5501                                 if (patch_info->ip.i >= i)
5502                                         break;
5503                         }
5504
5505                         /* Try to emit multiple bytes at once */
5506                         if (pindex < patches->len && patch_info->ip.i > i) {
5507                                 int limit;
5508
5509                                 for (limit = i + INST_LEN; limit < patch_info->ip.i; limit += INST_LEN) {
5510                                         if (locs && locs [limit])
5511                                                 break;
5512                                 }
5513
5514                                 emit_code_bytes (acfg, code + i, limit - i);
5515                                 i = limit - INST_LEN;
5516                         } else {
5517                                 emit_code_bytes (acfg, code + i, INST_LEN);
5518                         }
5519                 }
5520         }
5521
5522         g_ptr_array_free (patches, TRUE);
5523         g_free (locs);
5524 }
5525
5526 /*
5527  * sanitize_symbol:
5528  *
5529  *   Return a modified version of S which only includes characters permissible in symbols.
5530  */
5531 static char*
5532 sanitize_symbol (MonoAotCompile *acfg, char *s)
5533 {
5534         gboolean process = FALSE;
5535         int i, len;
5536         GString *gs;
5537         char *res;
5538
5539         if (!s)
5540                 return s;
5541
5542         len = strlen (s);
5543         for (i = 0; i < len; ++i)
5544                 if (!(s [i] <= 0x7f && (isalnum (s [i]) || s [i] == '_')))
5545                         process = TRUE;
5546         if (!process)
5547                 return s;
5548
5549         gs = g_string_sized_new (len);
5550         for (i = 0; i < len; ++i) {
5551                 guint8 c = s [i];
5552                 if (c <= 0x7f && (isalnum (c) || c == '_')) {
5553                         g_string_append_c (gs, c);
5554                 } else if (c > 0x7f) {
5555                         /* multi-byte utf8 */
5556                         g_string_append_printf (gs, "_0x%x", c);
5557                         i ++;
5558                         c = s [i];
5559                         while (c >> 6 == 0x2) {
5560                                 g_string_append_printf (gs, "%x", c);
5561                                 i ++;
5562                                 c = s [i];
5563                         }
5564                         g_string_append_printf (gs, "_");
5565                         i --;
5566                 } else {
5567                         g_string_append_c (gs, '_');
5568                 }
5569         }
5570
5571         res = mono_mempool_strdup (acfg->mempool, gs->str);
5572         g_string_free (gs, TRUE);
5573         return res;
5574 }
5575
5576 static char*
5577 get_debug_sym (MonoMethod *method, const char *prefix, GHashTable *cache)
5578 {
5579         char *name1, *name2, *cached;
5580         int i, j, len, count;
5581         MonoMethod *cached_method;
5582
5583         name1 = mono_method_full_name (method, TRUE);
5584
5585 #ifdef TARGET_MACH
5586         // This is so that we don't accidentally create a local symbol (which starts with 'L')
5587         if ((!prefix || !*prefix) && name1 [0] == 'L')
5588                 prefix = "_";
5589 #endif
5590
5591 #if defined(TARGET_WIN32) && defined(TARGET_X86)
5592         char adjustedPrefix [MAX_SYMBOL_SIZE];
5593         prefix = mangle_symbol (prefix, adjustedPrefix, G_N_ELEMENTS (adjustedPrefix));
5594 #endif
5595
5596         len = strlen (name1);
5597         name2 = (char *)malloc (strlen (prefix) + len + 16);
5598         memcpy (name2, prefix, strlen (prefix));
5599         j = strlen (prefix);
5600         for (i = 0; i < len; ++i) {
5601                 if (i == 0 && name1 [0] >= '0' && name1 [0] <= '9') {
5602                         name2 [j ++] = '_';
5603                 } else if (isalnum (name1 [i])) {
5604                         name2 [j ++] = name1 [i];
5605                 } else if (name1 [i] == ' ' && name1 [i + 1] == '(' && name1 [i + 2] == ')') {
5606                         i += 2;
5607                 } else if (name1 [i] == ',' && name1 [i + 1] == ' ') {
5608                         name2 [j ++] = '_';
5609                         i++;
5610                 } else if (name1 [i] == '(' || name1 [i] == ')' || name1 [i] == '>') {
5611                 } else
5612                         name2 [j ++] = '_';
5613         }
5614         name2 [j] = '\0';
5615
5616         g_free (name1);
5617
5618         count = 0;
5619         while (TRUE) {
5620                 cached_method = (MonoMethod *)g_hash_table_lookup (cache, name2);
5621                 if (!(cached_method && cached_method != method))
5622                         break;
5623                 sprintf (name2 + j, "_%d", count);
5624                 count ++;
5625         }
5626
5627         cached = g_strdup (name2);
5628         g_hash_table_insert (cache, cached, method);
5629
5630         return name2;
5631 }
5632
5633 static void
5634 emit_method_code (MonoAotCompile *acfg, MonoCompile *cfg)
5635 {
5636         MonoMethod *method;
5637         int method_index;
5638         guint8 *code;
5639         char *debug_sym = NULL;
5640         char *symbol = NULL;
5641         int func_alignment = AOT_FUNC_ALIGNMENT;
5642         char *export_name;
5643
5644         method = cfg->orig_method;
5645         code = cfg->native_code;
5646
5647         method_index = get_method_index (acfg, method);
5648         symbol = g_strdup_printf ("%sme_%x", acfg->temp_prefix, method_index);
5649
5650         /* Make the labels local */
5651         emit_section_change (acfg, ".text", 0);
5652         emit_alignment_code (acfg, func_alignment);
5653         
5654         if (acfg->global_symbols && acfg->need_no_dead_strip)
5655                 fprintf (acfg->fp, "    .no_dead_strip %s\n", cfg->asm_symbol);
5656         
5657         emit_label (acfg, cfg->asm_symbol);
5658
5659         if (acfg->aot_opts.write_symbols && !acfg->global_symbols && !acfg->llvm) {
5660                 /* 
5661                  * Write a C style symbol for every method, this has two uses:
5662                  * - it works on platforms where the dwarf debugging info is not
5663                  *   yet supported.
5664                  * - it allows the setting of breakpoints of aot-ed methods.
5665                  */
5666                 debug_sym = get_debug_sym (method, "", acfg->method_label_hash);
5667                 cfg->asm_debug_symbol = g_strdup (debug_sym);
5668
5669                 if (acfg->need_no_dead_strip)
5670                         fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
5671                 emit_local_symbol (acfg, debug_sym, symbol, TRUE);
5672                 emit_label (acfg, debug_sym);
5673         }
5674
5675         export_name = (char *)g_hash_table_lookup (acfg->export_names, method);
5676         if (export_name) {
5677                 /* Emit a global symbol for the method */
5678                 emit_global_inner (acfg, export_name, TRUE);
5679                 emit_label (acfg, export_name);
5680         }
5681
5682         if (cfg->verbose_level > 0)
5683                 g_print ("Method %s emitted as %s\n", mono_method_get_full_name (method), cfg->asm_symbol);
5684
5685         acfg->stats.code_size += cfg->code_len;
5686
5687         acfg->cfgs [method_index]->got_offset = acfg->got_offset;
5688
5689         emit_and_reloc_code (acfg, method, code, cfg->code_len, cfg->patch_info, FALSE, mono_debug_find_method (cfg->jit_info->d.method, mono_domain_get ()));
5690
5691         emit_line (acfg);
5692
5693         if (acfg->aot_opts.write_symbols) {
5694                 if (debug_sym)
5695                         emit_symbol_size (acfg, debug_sym, ".");
5696                 else
5697                         emit_symbol_size (acfg, cfg->asm_symbol, ".");
5698                 g_free (debug_sym);
5699         }
5700
5701         emit_label (acfg, symbol);
5702         g_free (symbol);
5703 }
5704
5705 /**
5706  * encode_patch:
5707  *
5708  *  Encode PATCH_INFO into its disk representation.
5709  */
5710 static void
5711 encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info, guint8 *buf, guint8 **endbuf)
5712 {
5713         guint8 *p = buf;
5714
5715         switch (patch_info->type) {
5716         case MONO_PATCH_INFO_NONE:
5717                 break;
5718         case MONO_PATCH_INFO_IMAGE:
5719                 encode_value (get_image_index (acfg, patch_info->data.image), p, &p);
5720                 break;
5721         case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
5722         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
5723         case MONO_PATCH_INFO_GC_NURSERY_START:
5724         case MONO_PATCH_INFO_GC_NURSERY_BITS:
5725                 break;
5726         case MONO_PATCH_INFO_CASTCLASS_CACHE:
5727                 encode_value (patch_info->data.index, p, &p);
5728                 break;
5729         case MONO_PATCH_INFO_METHOD_REL:
5730                 encode_value ((gint)patch_info->data.offset, p, &p);
5731                 break;
5732         case MONO_PATCH_INFO_SWITCH: {
5733                 gpointer *table = (gpointer *)patch_info->data.table->table;
5734                 int k;
5735
5736                 encode_value (patch_info->data.table->table_size, p, &p);
5737                 for (k = 0; k < patch_info->data.table->table_size; k++)
5738                         encode_value ((int)(gssize)table [k], p, &p);
5739                 break;
5740         }
5741         case MONO_PATCH_INFO_METHODCONST:
5742         case MONO_PATCH_INFO_METHOD:
5743         case MONO_PATCH_INFO_METHOD_JUMP:
5744         case MONO_PATCH_INFO_ICALL_ADDR:
5745         case MONO_PATCH_INFO_ICALL_ADDR_CALL:
5746         case MONO_PATCH_INFO_METHOD_RGCTX:
5747         case MONO_PATCH_INFO_METHOD_CODE_SLOT:
5748                 encode_method_ref (acfg, patch_info->data.method, p, &p);
5749                 break;
5750         case MONO_PATCH_INFO_AOT_JIT_INFO:
5751         case MONO_PATCH_INFO_GET_TLS_TRAMP:
5752         case MONO_PATCH_INFO_SET_TLS_TRAMP:
5753                 encode_value (patch_info->data.index, p, &p);
5754                 break;
5755         case MONO_PATCH_INFO_INTERNAL_METHOD:
5756         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
5757         case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL: {
5758                 guint32 len = strlen (patch_info->data.name);
5759
5760                 encode_value (len, p, &p);
5761
5762                 memcpy (p, patch_info->data.name, len);
5763                 p += len;
5764                 *p++ = '\0';
5765                 break;
5766         }
5767         case MONO_PATCH_INFO_LDSTR: {
5768                 guint32 image_index = get_image_index (acfg, patch_info->data.token->image);
5769                 guint32 token = patch_info->data.token->token;
5770                 g_assert (mono_metadata_token_code (token) == MONO_TOKEN_STRING);
5771                 encode_value (image_index, p, &p);
5772                 encode_value (patch_info->data.token->token - MONO_TOKEN_STRING, p, &p);
5773                 break;
5774         }
5775         case MONO_PATCH_INFO_RVA:
5776         case MONO_PATCH_INFO_DECLSEC:
5777         case MONO_PATCH_INFO_LDTOKEN:
5778         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
5779                 encode_value (get_image_index (acfg, patch_info->data.token->image), p, &p);
5780                 encode_value (patch_info->data.token->token, p, &p);
5781                 encode_value (patch_info->data.token->has_context, p, &p);
5782                 if (patch_info->data.token->has_context)
5783                         encode_generic_context (acfg, &patch_info->data.token->context, p, &p);
5784                 break;
5785         case MONO_PATCH_INFO_EXC_NAME: {
5786                 MonoClass *ex_class;
5787
5788                 ex_class =
5789                         mono_class_load_from_name (mono_defaults.exception_class->image,
5790                                                                   "System", (const char *)patch_info->data.target);
5791                 encode_klass_ref (acfg, ex_class, p, &p);
5792                 break;
5793         }
5794         case MONO_PATCH_INFO_R4:
5795                 encode_value (*((guint32 *)patch_info->data.target), p, &p);
5796                 break;
5797         case MONO_PATCH_INFO_R8:
5798                 encode_value (((guint32 *)patch_info->data.target) [MINI_LS_WORD_IDX], p, &p);
5799                 encode_value (((guint32 *)patch_info->data.target) [MINI_MS_WORD_IDX], p, &p);
5800                 break;
5801         case MONO_PATCH_INFO_VTABLE:
5802         case MONO_PATCH_INFO_CLASS:
5803         case MONO_PATCH_INFO_IID:
5804         case MONO_PATCH_INFO_ADJUSTED_IID:
5805                 encode_klass_ref (acfg, patch_info->data.klass, p, &p);
5806                 break;
5807         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
5808                 encode_klass_ref (acfg, patch_info->data.del_tramp->klass, p, &p);
5809                 if (patch_info->data.del_tramp->method) {
5810                         encode_value (1, p, &p);
5811                         encode_method_ref (acfg, patch_info->data.del_tramp->method, p, &p);
5812                 } else {
5813                         encode_value (0, p, &p);
5814                 }
5815                 encode_value (patch_info->data.del_tramp->is_virtual, p, &p);
5816                 break;
5817         case MONO_PATCH_INFO_FIELD:
5818         case MONO_PATCH_INFO_SFLDA:
5819                 encode_field_info (acfg, patch_info->data.field, p, &p);
5820                 break;
5821         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
5822                 break;
5823         case MONO_PATCH_INFO_PROFILER_ALLOCATION_COUNT:
5824                 break;
5825         case MONO_PATCH_INFO_RGCTX_FETCH:
5826         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
5827                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
5828                 guint32 offset;
5829                 guint8 *buf2, *p2;
5830
5831                 /* 
5832                  * entry->method has a lenghtly encoding and multiple rgctx_fetch entries
5833                  * reference the same method, so encode the method only once.
5834                  */
5835                 offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_blob_hash, entry->method));
5836                 if (!offset) {
5837                         buf2 = (guint8 *)g_malloc (1024);
5838                         p2 = buf2;
5839
5840                         encode_method_ref (acfg, entry->method, p2, &p2);
5841                         g_assert (p2 - buf2 < 1024);
5842
5843                         offset = add_to_blob (acfg, buf2, p2 - buf2);
5844                         g_free (buf2);
5845
5846                         g_hash_table_insert (acfg->method_blob_hash, entry->method, GUINT_TO_POINTER (offset + 1));
5847                 } else {
5848                         offset --;
5849                 }
5850
5851                 encode_value (offset, p, &p);
5852                 g_assert ((int)entry->info_type < 256);
5853                 g_assert (entry->data->type < 256);
5854                 encode_value ((entry->in_mrgctx ? 1 : 0) | (entry->info_type << 1) | (entry->data->type << 9), p, &p);
5855                 encode_patch (acfg, entry->data, p, &p);
5856                 break;
5857         }
5858         case MONO_PATCH_INFO_SEQ_POINT_INFO:
5859         case MONO_PATCH_INFO_AOT_MODULE:
5860                 break;
5861         case MONO_PATCH_INFO_SIGNATURE:
5862         case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
5863                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.target, p, &p);
5864                 break;
5865         case MONO_PATCH_INFO_GSHAREDVT_CALL:
5866                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.gsharedvt->sig, p, &p);
5867                 encode_method_ref (acfg, patch_info->data.gsharedvt->method, p, &p);
5868                 break;
5869         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
5870                 MonoGSharedVtMethodInfo *info = patch_info->data.gsharedvt_method;
5871                 int i;
5872
5873                 encode_method_ref (acfg, info->method, p, &p);
5874                 encode_value (info->num_entries, p, &p);
5875                 for (i = 0; i < info->num_entries; ++i) {
5876                         MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
5877
5878                         encode_value (template_->info_type, p, &p);
5879                         switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
5880                         case MONO_PATCH_INFO_CLASS:
5881                                 encode_klass_ref (acfg, mono_class_from_mono_type ((MonoType *)template_->data), p, &p);
5882                                 break;
5883                         case MONO_PATCH_INFO_FIELD:
5884                                 encode_field_info (acfg, (MonoClassField *)template_->data, p, &p);
5885                                 break;
5886                         default:
5887                                 g_assert_not_reached ();
5888                                 break;
5889                         }
5890                 }
5891                 break;
5892         }
5893         case MONO_PATCH_INFO_LDSTR_LIT: {
5894                 const char *s = (const char *)patch_info->data.target;
5895                 int len = strlen (s);
5896
5897                 encode_value (len, p, &p);
5898                 memcpy (p, s, len + 1);
5899                 p += len + 1;
5900                 break;
5901         }
5902         case MONO_PATCH_INFO_VIRT_METHOD:
5903                 encode_klass_ref (acfg, patch_info->data.virt_method->klass, p, &p);
5904                 encode_method_ref (acfg, patch_info->data.virt_method->method, p, &p);
5905                 break;
5906         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
5907         case MONO_PATCH_INFO_JIT_THREAD_ATTACH:
5908                 break;
5909         default:
5910                 g_warning ("unable to handle jump info %d", patch_info->type);
5911                 g_assert_not_reached ();
5912         }
5913
5914         *endbuf = p;
5915 }
5916
5917 static void
5918 encode_patch_list (MonoAotCompile *acfg, GPtrArray *patches, int n_patches, gboolean llvm, int first_got_offset, guint8 *buf, guint8 **endbuf)
5919 {
5920         guint8 *p = buf;
5921         guint32 pindex, offset;
5922         MonoJumpInfo *patch_info;
5923
5924         encode_value (n_patches, p, &p);
5925
5926         for (pindex = 0; pindex < patches->len; ++pindex) {
5927                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5928
5929                 if (patch_info->type == MONO_PATCH_INFO_NONE || patch_info->type == MONO_PATCH_INFO_BB)
5930                         /* Nothing to do */
5931                         continue;
5932
5933                 offset = get_got_offset (acfg, llvm, patch_info);
5934                 encode_value (offset, p, &p);
5935         }
5936
5937         *endbuf = p;
5938 }
5939
5940 static void
5941 emit_method_info (MonoAotCompile *acfg, MonoCompile *cfg)
5942 {
5943         MonoMethod *method;
5944         int pindex, buf_size, n_patches;
5945         GPtrArray *patches;
5946         MonoJumpInfo *patch_info;
5947         guint32 method_index;
5948         guint8 *p, *buf;
5949         guint32 first_got_offset;
5950
5951         method = cfg->orig_method;
5952
5953         method_index = get_method_index (acfg, method);
5954
5955         /* Sort relocations */
5956         patches = g_ptr_array_new ();
5957         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next)
5958                 g_ptr_array_add (patches, patch_info);
5959         g_ptr_array_sort (patches, compare_patches);
5960
5961         first_got_offset = acfg->cfgs [method_index]->got_offset;
5962
5963         /**********************/
5964         /* Encode method info */
5965         /**********************/
5966
5967         buf_size = (patches->len < 1000) ? 40960 : 40960 + (patches->len * 64);
5968         p = buf = (guint8 *)g_malloc (buf_size);
5969
5970         if (mono_class_get_cctor (method->klass)) {
5971                 encode_value (1, p, &p);
5972                 encode_klass_ref (acfg, method->klass, p, &p);
5973         } else {
5974                 /* Not needed when loading the method */
5975                 encode_value (0, p, &p);
5976         }
5977
5978         g_assert (!(cfg->opt & MONO_OPT_SHARED));
5979
5980         n_patches = 0;
5981         for (pindex = 0; pindex < patches->len; ++pindex) {
5982                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5983                 
5984                 if ((patch_info->type == MONO_PATCH_INFO_GOT_OFFSET) ||
5985                         (patch_info->type == MONO_PATCH_INFO_NONE)) {
5986                         patch_info->type = MONO_PATCH_INFO_NONE;
5987                         /* Nothing to do */
5988                         continue;
5989                 }
5990
5991                 if ((patch_info->type == MONO_PATCH_INFO_IMAGE) && (patch_info->data.image == acfg->image)) {
5992                         /* Stored in a GOT slot initialized at module load time */
5993                         patch_info->type = MONO_PATCH_INFO_NONE;
5994                         continue;
5995                 }
5996
5997                 if (patch_info->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR ||
5998                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_START ||
5999                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_BITS ||
6000                         patch_info->type == MONO_PATCH_INFO_AOT_MODULE) {
6001                         /* Stored in a GOT slot initialized at module load time */
6002                         patch_info->type = MONO_PATCH_INFO_NONE;
6003                         continue;
6004                 }
6005
6006                 if (is_plt_patch (patch_info) && !(cfg->compile_llvm && acfg->aot_opts.llvm_only)) {
6007                         /* Calls are made through the PLT */
6008                         patch_info->type = MONO_PATCH_INFO_NONE;
6009                         continue;
6010                 }
6011
6012                 n_patches ++;
6013         }
6014
6015         if (n_patches)
6016                 g_assert (cfg->has_got_slots);
6017
6018         encode_patch_list (acfg, patches, n_patches, cfg->compile_llvm, first_got_offset, p, &p);
6019
6020         g_ptr_array_free (patches, TRUE);
6021
6022         acfg->stats.info_size += p - buf;
6023
6024         g_assert (p - buf < buf_size);
6025
6026         cfg->method_info_offset = add_to_blob (acfg, buf, p - buf);
6027         g_free (buf);
6028 }
6029
6030 static guint32
6031 get_unwind_info_offset (MonoAotCompile *acfg, guint8 *encoded, guint32 encoded_len)
6032 {
6033         guint32 cache_index;
6034         guint32 offset;
6035
6036         /* Reuse the unwind module to canonize and store unwind info entries */
6037         cache_index = mono_cache_unwind_info (encoded, encoded_len);
6038
6039         /* Use +/- 1 to distinguish 0s from missing entries */
6040         offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1)));
6041         if (offset)
6042                 return offset - 1;
6043         else {
6044                 guint8 buf [16];
6045                 guint8 *p;
6046
6047                 /* 
6048                  * It would be easier to use assembler symbols, but the caller needs an
6049                  * offset now.
6050                  */
6051                 offset = acfg->unwind_info_offset;
6052                 g_hash_table_insert (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1), GUINT_TO_POINTER (offset + 1));
6053                 g_ptr_array_add (acfg->unwind_ops, GUINT_TO_POINTER (cache_index));
6054
6055                 p = buf;
6056                 encode_value (encoded_len, p, &p);
6057
6058                 acfg->unwind_info_offset += encoded_len + (p - buf);
6059                 return offset;
6060         }
6061 }
6062
6063 static void
6064 emit_exception_debug_info (MonoAotCompile *acfg, MonoCompile *cfg, gboolean store_seq_points)
6065 {
6066         int i, k, buf_size;
6067         guint32 debug_info_size, seq_points_size;
6068         guint8 *code;
6069         MonoMethodHeader *header;
6070         guint8 *p, *buf, *debug_info;
6071         MonoJitInfo *jinfo = cfg->jit_info;
6072         guint32 flags;
6073         gboolean use_unwind_ops = FALSE;
6074         MonoSeqPointInfo *seq_points;
6075
6076         code = cfg->native_code;
6077         header = cfg->header;
6078
6079         if (!acfg->aot_opts.nodebug) {
6080                 mono_debug_serialize_debug_info (cfg, &debug_info, &debug_info_size);
6081         } else {
6082                 debug_info = NULL;
6083                 debug_info_size = 0;
6084         }
6085
6086         seq_points = cfg->seq_point_info;
6087         seq_points_size = (store_seq_points)? mono_seq_point_info_get_write_size (seq_points) : 0;
6088
6089         buf_size = header->num_clauses * 256 + debug_info_size + 2048 + seq_points_size + cfg->gc_map_size;
6090
6091         p = buf = (guint8 *)g_malloc (buf_size);
6092
6093         use_unwind_ops = cfg->unwind_ops != NULL;
6094
6095         flags = (jinfo->has_generic_jit_info ? 1 : 0) | (use_unwind_ops ? 2 : 0) | (header->num_clauses ? 4 : 0) | (seq_points_size ? 8 : 0) | (cfg->compile_llvm ? 16 : 0) | (jinfo->has_try_block_holes ? 32 : 0) | (cfg->gc_map ? 64 : 0) | (jinfo->has_arch_eh_info ? 128 : 0);
6096
6097         encode_value (flags, p, &p);
6098
6099         if (use_unwind_ops) {
6100                 guint32 encoded_len;
6101                 guint8 *encoded;
6102                 guint32 unwind_desc;
6103
6104                 encoded = mono_unwind_ops_encode (cfg->unwind_ops, &encoded_len);
6105
6106                 unwind_desc = get_unwind_info_offset (acfg, encoded, encoded_len);
6107                 encode_value (unwind_desc, p, &p);
6108
6109                 g_free (encoded);
6110         } else {
6111                 encode_value (jinfo->unwind_info, p, &p);
6112         }
6113
6114         /*Encode the number of holes before the number of clauses to make decoding easier*/
6115         if (jinfo->has_try_block_holes) {
6116                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6117                 encode_value (table->num_holes, p, &p);
6118         }
6119
6120         if (jinfo->has_arch_eh_info) {
6121                 /*
6122                  * In AOT mode, the code length is calculated from the address of the previous method,
6123                  * which could include alignment padding, so calculating the start of the epilog as
6124                  * code_len - epilog_size is correct any more. Save the real code len as a workaround.
6125                  */
6126                 encode_value (jinfo->code_size, p, &p);
6127         }
6128
6129         /* Exception table */
6130         if (cfg->compile_llvm) {
6131                 /*
6132                  * When using LLVM, we can't emit some data, like pc offsets, this reg/offset etc.,
6133                  * since the information is only available to llc. Instead, we let llc save the data
6134                  * into the LSDA, and read it from there at runtime.
6135                  */
6136                 /* The assembly might be CIL stripped so emit the data ourselves */
6137                 if (header->num_clauses)
6138                         encode_value (header->num_clauses, p, &p);
6139
6140                 for (k = 0; k < header->num_clauses; ++k) {
6141                         MonoExceptionClause *clause;
6142
6143                         clause = &header->clauses [k];
6144
6145                         encode_value (clause->flags, p, &p);
6146                         if (!(clause->flags == MONO_EXCEPTION_CLAUSE_FILTER || clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)) {
6147                                 if (clause->data.catch_class) {
6148                                         guint8 *buf2, *p2;
6149                                         int len;
6150
6151                                         buf2 = (guint8 *)g_malloc (4096);
6152                                         p2 = buf2;
6153                                         encode_klass_ref (acfg, clause->data.catch_class, p2, &p2);
6154                                         len = p2 - buf2;
6155                                         g_assert (len < 4096);
6156                                         encode_value (len, p, &p);
6157                                         memcpy (p, buf2, len);
6158                                         p += p2 - buf2;
6159                                         g_free (buf2);
6160                                 } else {
6161                                         encode_value (0, p, &p);
6162                                 }
6163                         }
6164
6165                         /* Emit the IL ranges too, since they might not be available at runtime */
6166                         encode_value (clause->try_offset, p, &p);
6167                         encode_value (clause->try_len, p, &p);
6168                         encode_value (clause->handler_offset, p, &p);
6169                         encode_value (clause->handler_len, p, &p);
6170
6171                         /* Emit a list of nesting clauses */
6172                         for (i = 0; i < header->num_clauses; ++i) {
6173                                 gint32 cindex1 = k;
6174                                 MonoExceptionClause *clause1 = &header->clauses [cindex1];
6175                                 gint32 cindex2 = i;
6176                                 MonoExceptionClause *clause2 = &header->clauses [cindex2];
6177
6178                                 if (cindex1 != cindex2 && clause1->try_offset >= clause2->try_offset && clause1->handler_offset <= clause2->handler_offset)
6179                                         encode_value (i, p, &p);
6180                         }
6181                         encode_value (-1, p, &p);
6182                 }
6183         } else {
6184                 if (jinfo->num_clauses)
6185                         encode_value (jinfo->num_clauses, p, &p);
6186
6187                 for (k = 0; k < jinfo->num_clauses; ++k) {
6188                         MonoJitExceptionInfo *ei = &jinfo->clauses [k];
6189
6190                         encode_value (ei->flags, p, &p);
6191 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
6192                         /* Not used for catch clauses */
6193                         if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
6194                                 encode_value (ei->exvar_offset, p, &p);
6195 #else
6196                         encode_value (ei->exvar_offset, p, &p);
6197 #endif
6198
6199                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
6200                                 encode_value ((gint)((guint8*)ei->data.filter - code), p, &p);
6201                         else {
6202                                 if (ei->data.catch_class) {
6203                                         guint8 *buf2, *p2;
6204                                         int len;
6205
6206                                         buf2 = (guint8 *)g_malloc (4096);
6207                                         p2 = buf2;
6208                                         encode_klass_ref (acfg, ei->data.catch_class, p2, &p2);
6209                                         len = p2 - buf2;
6210                                         g_assert (len < 4096);
6211                                         encode_value (len, p, &p);
6212                                         memcpy (p, buf2, len);
6213                                         p += p2 - buf2;
6214                                         g_free (buf2);
6215                                 } else {
6216                                         encode_value (0, p, &p);
6217                                 }
6218                         }
6219
6220                         encode_value ((gint)((guint8*)ei->try_start - code), p, &p);
6221                         encode_value ((gint)((guint8*)ei->try_end - code), p, &p);
6222                         encode_value ((gint)((guint8*)ei->handler_start - code), p, &p);
6223                 }
6224         }
6225
6226         if (jinfo->has_try_block_holes) {
6227                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6228                 for (i = 0; i < table->num_holes; ++i) {
6229                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
6230                         encode_value (hole->clause, p, &p);
6231                         encode_value (hole->length, p, &p);
6232                         encode_value (hole->offset, p, &p);
6233                 }
6234         }
6235
6236         if (jinfo->has_arch_eh_info) {
6237                 MonoArchEHJitInfo *eh_info;
6238
6239                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
6240                 encode_value (eh_info->stack_size, p, &p);
6241                 encode_value (eh_info->epilog_size, p, &p);
6242         }
6243
6244         if (jinfo->has_generic_jit_info) {
6245                 MonoGenericJitInfo *gi = mono_jit_info_get_generic_jit_info (jinfo);
6246                 MonoGenericSharingContext* gsctx = gi->generic_sharing_context;
6247                 guint8 *buf2, *p2;
6248                 int len;
6249
6250                 encode_value (gi->nlocs, p, &p);
6251                 if (gi->nlocs) {
6252                         for (i = 0; i < gi->nlocs; ++i) {
6253                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
6254
6255                                 encode_value (entry->is_reg ? 1 : 0, p, &p);
6256                                 encode_value (entry->reg, p, &p);
6257                                 if (!entry->is_reg)
6258                                         encode_value (entry->offset, p, &p);
6259                                 if (i == 0)
6260                                         g_assert (entry->from == 0);
6261                                 else
6262                                         encode_value (entry->from, p, &p);
6263                                 encode_value (entry->to, p, &p);
6264                         }
6265                 } else {
6266                         if (!cfg->compile_llvm) {
6267                                 encode_value (gi->has_this ? 1 : 0, p, &p);
6268                                 encode_value (gi->this_reg, p, &p);
6269                                 encode_value (gi->this_offset, p, &p);
6270                         }
6271                 }
6272
6273                 /* 
6274                  * Need to encode jinfo->method too, since it is not equal to 'method'
6275                  * when using generic sharing.
6276                  */
6277                 buf2 = (guint8 *)g_malloc (4096);
6278                 p2 = buf2;
6279                 encode_method_ref (acfg, jinfo->d.method, p2, &p2);
6280                 len = p2 - buf2;
6281                 g_assert (len < 4096);
6282                 encode_value (len, p, &p);
6283                 memcpy (p, buf2, len);
6284                 p += p2 - buf2;
6285                 g_free (buf2);
6286
6287                 if (gsctx && gsctx->is_gsharedvt) {
6288                         encode_value (1, p, &p);
6289                 } else {
6290                         encode_value (0, p, &p);
6291                 }
6292         }
6293
6294         if (seq_points_size)
6295                 p += mono_seq_point_info_write (seq_points, p);
6296
6297         g_assert (debug_info_size < buf_size);
6298
6299         encode_value (debug_info_size, p, &p);
6300         if (debug_info_size) {
6301                 memcpy (p, debug_info, debug_info_size);
6302                 p += debug_info_size;
6303                 g_free (debug_info);
6304         }
6305
6306         /* GC Map */
6307         if (cfg->gc_map) {
6308                 encode_value (cfg->gc_map_size, p, &p);
6309                 /* The GC map requires 4 bytes of alignment */
6310                 while ((gsize)p % 4)
6311                         p ++;
6312                 memcpy (p, cfg->gc_map, cfg->gc_map_size);
6313                 p += cfg->gc_map_size;
6314         }
6315
6316         acfg->stats.ex_info_size += p - buf;
6317
6318         g_assert (p - buf < buf_size);
6319
6320         /* Emit info */
6321         /* The GC Map requires 4 byte alignment */
6322         cfg->ex_info_offset = add_to_blob_aligned (acfg, buf, p - buf, cfg->gc_map ? 4 : 1);
6323         g_free (buf);
6324 }
6325
6326 static guint32
6327 emit_klass_info (MonoAotCompile *acfg, guint32 token)
6328 {
6329         MonoError error;
6330         MonoClass *klass = mono_class_get_checked (acfg->image, token, &error);
6331         guint8 *p, *buf;
6332         int i, buf_size, res;
6333         gboolean no_special_static, cant_encode;
6334         gpointer iter = NULL;
6335
6336         if (!klass) {
6337                 mono_error_cleanup (&error);
6338
6339                 buf_size = 16;
6340
6341                 p = buf = (guint8 *)g_malloc (buf_size);
6342
6343                 /* Mark as unusable */
6344                 encode_value (-1, p, &p);
6345
6346                 res = add_to_blob (acfg, buf, p - buf);
6347                 g_free (buf);
6348
6349                 return res;
6350         }
6351                 
6352         buf_size = 10240 + (klass->vtable_size * 16);
6353         p = buf = (guint8 *)g_malloc (buf_size);
6354
6355         g_assert (klass);
6356
6357         mono_class_init (klass);
6358
6359         mono_class_get_nested_types (klass, &iter);
6360         g_assert (klass->nested_classes_inited);
6361
6362         mono_class_setup_vtable (klass);
6363
6364         /* 
6365          * Emit all the information which is required for creating vtables so
6366          * the runtime does not need to create the MonoMethod structures which
6367          * take up a lot of space.
6368          */
6369
6370         no_special_static = !mono_class_has_special_static_fields (klass);
6371
6372         /* Check whenever we have enough info to encode the vtable */
6373         cant_encode = FALSE;
6374         for (i = 0; i < klass->vtable_size; ++i) {
6375                 MonoMethod *cm = klass->vtable [i];
6376
6377                 if (cm && mono_method_signature (cm)->is_inflated && !g_hash_table_lookup (acfg->token_info_hash, cm))
6378                         cant_encode = TRUE;
6379         }
6380
6381         mono_class_has_finalizer (klass);
6382         if (mono_class_has_failure (klass))
6383                 cant_encode = TRUE;
6384
6385         if (mono_class_is_gtd (klass) || cant_encode) {
6386                 encode_value (-1, p, &p);
6387         } else {
6388                 gboolean has_nested = mono_class_get_nested_classes_property (klass) != NULL;
6389                 encode_value (klass->vtable_size, p, &p);
6390                 encode_value ((mono_class_is_gtd (klass) ? (1 << 8) : 0) | (no_special_static << 7) | (klass->has_static_refs << 6) | (klass->has_references << 5) | ((klass->blittable << 4) | (has_nested ? 1 : 0) << 3) | (klass->has_cctor << 2) | (klass->has_finalize << 1) | klass->ghcimpl, p, &p);
6391                 if (klass->has_cctor)
6392                         encode_method_ref (acfg, mono_class_get_cctor (klass), p, &p);
6393                 if (klass->has_finalize)
6394                         encode_method_ref (acfg, mono_class_get_finalizer (klass), p, &p);
6395  
6396                 encode_value (klass->instance_size, p, &p);
6397                 encode_value (mono_class_data_size (klass), p, &p);
6398                 encode_value (klass->packing_size, p, &p);
6399                 encode_value (klass->min_align, p, &p);
6400
6401                 for (i = 0; i < klass->vtable_size; ++i) {
6402                         MonoMethod *cm = klass->vtable [i];
6403
6404                         if (cm)
6405                                 encode_method_ref (acfg, cm, p, &p);
6406                         else
6407                                 encode_value (0, p, &p);
6408                 }
6409         }
6410
6411         acfg->stats.class_info_size += p - buf;
6412
6413         g_assert (p - buf < buf_size);
6414         res = add_to_blob (acfg, buf, p - buf);
6415         g_free (buf);
6416
6417         return res;
6418 }
6419
6420 static char*
6421 get_plt_entry_debug_sym (MonoAotCompile *acfg, MonoJumpInfo *ji, GHashTable *cache)
6422 {
6423         char *debug_sym = NULL;
6424         char *prefix;
6425
6426         if (acfg->llvm && llvm_acfg->aot_opts.static_link) {
6427                 /* Need to add a prefix to create unique symbols */
6428                 prefix = g_strdup_printf ("plt_%s_", acfg->assembly_name_sym);
6429         } else {
6430 #if defined(TARGET_WIN32) && defined(TARGET_X86)
6431                 prefix = mangle_symbol_alloc ("plt_");
6432 #else
6433                 prefix = g_strdup ("plt_");
6434 #endif
6435         }
6436
6437         switch (ji->type) {
6438         case MONO_PATCH_INFO_METHOD:
6439                 debug_sym = get_debug_sym (ji->data.method, prefix, cache);
6440                 break;
6441         case MONO_PATCH_INFO_INTERNAL_METHOD:
6442                 debug_sym = g_strdup_printf ("%s_jit_icall_%s", prefix, ji->data.name);
6443                 break;
6444         case MONO_PATCH_INFO_RGCTX_FETCH:
6445                 debug_sym = g_strdup_printf ("%s_rgctx_fetch_%d", prefix, acfg->label_generator ++);
6446                 break;
6447         case MONO_PATCH_INFO_ICALL_ADDR:
6448         case MONO_PATCH_INFO_ICALL_ADDR_CALL: {
6449                 char *s = get_debug_sym (ji->data.method, "", cache);
6450                 
6451                 debug_sym = g_strdup_printf ("%s_icall_native_%s", prefix, s);
6452                 g_free (s);
6453                 break;
6454         }
6455         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
6456                 debug_sym = g_strdup_printf ("%s_jit_icall_native_%s", prefix, ji->data.name);
6457                 break;
6458         default:
6459                 break;
6460         }
6461
6462         g_free (prefix);
6463
6464         return sanitize_symbol (acfg, debug_sym);
6465 }
6466
6467 /*
6468  * Calls made from AOTed code are routed through a table of jumps similar to the
6469  * ELF PLT (Program Linkage Table). Initially the PLT entries jump to code which transfers
6470  * control to the AOT runtime through a trampoline.
6471  */
6472 static void
6473 emit_plt (MonoAotCompile *acfg)
6474 {
6475         int i;
6476
6477         if (acfg->aot_opts.llvm_only) {
6478                 g_assert (acfg->plt_offset == 1);
6479                 return;
6480         }
6481
6482         emit_line (acfg);
6483
6484         emit_section_change (acfg, ".text", 0);
6485         emit_alignment_code (acfg, 16);
6486         emit_info_symbol (acfg, "plt");
6487         emit_label (acfg, acfg->plt_symbol);
6488
6489         for (i = 0; i < acfg->plt_offset; ++i) {
6490                 char *debug_sym = NULL;
6491                 MonoPltEntry *plt_entry = NULL;
6492
6493                 if (i == 0)
6494                         /* 
6495                          * The first plt entry is unused.
6496                          */
6497                         continue;
6498
6499                 plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6500
6501                 debug_sym = plt_entry->debug_sym;
6502
6503                 if (acfg->thumb_mixed && !plt_entry->jit_used)
6504                         /* Emit only a thumb version */
6505                         continue;
6506
6507                 /* Skip plt entries not actually called */
6508                 if (!plt_entry->jit_used && !plt_entry->llvm_used)
6509                         continue;
6510
6511                 if (acfg->llvm && !acfg->thumb_mixed) {
6512                         emit_label (acfg, plt_entry->llvm_symbol);
6513                         if (acfg->llvm) {
6514                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6515 #if defined(TARGET_MACH)
6516                                 fprintf (acfg->fp, ".private_extern %s\n", plt_entry->llvm_symbol);
6517 #endif
6518                         }
6519                 }
6520
6521                 if (debug_sym) {
6522                         if (acfg->need_no_dead_strip) {
6523                                 emit_unset_mode (acfg);
6524                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6525                         }
6526                         emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6527                         emit_label (acfg, debug_sym);
6528                 }
6529
6530                 emit_label (acfg, plt_entry->symbol);
6531
6532                 arch_emit_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6533
6534                 if (debug_sym)
6535                         emit_symbol_size (acfg, debug_sym, ".");
6536         }
6537
6538         if (acfg->thumb_mixed) {
6539                 /* Make sure the ARM symbols don't alias the thumb ones */
6540                 emit_zero_bytes (acfg, 16);
6541
6542                 /* 
6543                  * Emit a separate set of PLT entries using thumb2 which is called by LLVM generated
6544                  * code.
6545                  */
6546                 for (i = 0; i < acfg->plt_offset; ++i) {
6547                         char *debug_sym = NULL;
6548                         MonoPltEntry *plt_entry = NULL;
6549
6550                         if (i == 0)
6551                                 continue;
6552
6553                         plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6554
6555                         /* Skip plt entries not actually called by LLVM code */
6556                         if (!plt_entry->llvm_used)
6557                                 continue;
6558
6559                         if (acfg->aot_opts.write_symbols) {
6560                                 if (plt_entry->debug_sym)
6561                                         debug_sym = g_strdup_printf ("%s_thumb", plt_entry->debug_sym);
6562                         }
6563
6564                         if (debug_sym) {
6565 #if defined(TARGET_MACH)
6566                                 fprintf (acfg->fp, "    .thumb_func %s\n", debug_sym);
6567                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6568 #endif
6569                                 emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6570                                 emit_label (acfg, debug_sym);
6571                         }
6572                         fprintf (acfg->fp, "\n.thumb_func\n");
6573
6574                         emit_label (acfg, plt_entry->llvm_symbol);
6575
6576                         if (acfg->llvm)
6577                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6578
6579                         arch_emit_llvm_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6580
6581                         if (debug_sym) {
6582                                 emit_symbol_size (acfg, debug_sym, ".");
6583                                 g_free (debug_sym);
6584                         }
6585                 }
6586         }
6587
6588         emit_symbol_size (acfg, acfg->plt_symbol, ".");
6589
6590         emit_info_symbol (acfg, "plt_end");
6591 }
6592
6593 /*
6594  * emit_trampoline_full:
6595  *
6596  *   If EMIT_TINFO is TRUE, emit additional information which can be used to create a MonoJitInfo for this trampoline by
6597  * create_jit_info_for_trampoline ().
6598  */
6599 static G_GNUC_UNUSED void
6600 emit_trampoline_full (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info, gboolean emit_tinfo)
6601 {
6602         char start_symbol [MAX_SYMBOL_SIZE];
6603         char end_symbol [MAX_SYMBOL_SIZE];
6604         char symbol [MAX_SYMBOL_SIZE];
6605         guint32 buf_size, info_offset;
6606         MonoJumpInfo *patch_info;
6607         guint8 *buf, *p;
6608         GPtrArray *patches;
6609         char *name;
6610         guint8 *code;
6611         guint32 code_size;
6612         MonoJumpInfo *ji;
6613         GSList *unwind_ops;
6614
6615         g_assert (info);
6616
6617         name = info->name;
6618         code = info->code;
6619         code_size = info->code_size;
6620         ji = info->ji;
6621         unwind_ops = info->unwind_ops;
6622
6623         /* Emit code */
6624
6625         sprintf (start_symbol, "%s%s", acfg->user_symbol_prefix, name);
6626
6627         emit_section_change (acfg, ".text", 0);
6628         emit_global (acfg, start_symbol, TRUE);
6629         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6630         emit_label (acfg, start_symbol);
6631
6632         sprintf (symbol, "%snamed_%s", acfg->temp_prefix, name);
6633         emit_label (acfg, symbol);
6634
6635         /* 
6636          * The code should access everything through the GOT, so we pass
6637          * TRUE here.
6638          */
6639         emit_and_reloc_code (acfg, NULL, code, code_size, ji, TRUE, NULL);
6640
6641         emit_symbol_size (acfg, start_symbol, ".");
6642
6643         if (emit_tinfo) {
6644                 sprintf (end_symbol, "%snamede_%s", acfg->temp_prefix, name);
6645                 emit_label (acfg, end_symbol);
6646         }
6647
6648         /* Emit info */
6649
6650         /* Sort relocations */
6651         patches = g_ptr_array_new ();
6652         for (patch_info = ji; patch_info; patch_info = patch_info->next)
6653                 if (patch_info->type != MONO_PATCH_INFO_NONE)
6654                         g_ptr_array_add (patches, patch_info);
6655         g_ptr_array_sort (patches, compare_patches);
6656
6657         buf_size = patches->len * 128 + 128;
6658         buf = (guint8 *)g_malloc (buf_size);
6659         p = buf;
6660
6661         encode_patch_list (acfg, patches, patches->len, FALSE, got_offset, p, &p);
6662         g_assert (p - buf < buf_size);
6663         g_ptr_array_free (patches, TRUE);
6664
6665         sprintf (symbol, "%s%s_p", acfg->user_symbol_prefix, name);
6666
6667         info_offset = add_to_blob (acfg, buf, p - buf);
6668
6669         emit_section_change (acfg, RODATA_SECT, 0);
6670         emit_global (acfg, symbol, FALSE);
6671         emit_label (acfg, symbol);
6672
6673         emit_int32 (acfg, info_offset);
6674
6675         if (emit_tinfo) {
6676                 guint8 *encoded;
6677                 guint32 encoded_len;
6678                 guint32 uw_offset;
6679
6680                 /*
6681                  * Emit additional information which can be used to reconstruct a partial MonoTrampInfo.
6682                  */
6683                 encoded = mono_unwind_ops_encode (info->unwind_ops, &encoded_len);
6684                 uw_offset = get_unwind_info_offset (acfg, encoded, encoded_len);
6685                 g_free (encoded);
6686
6687                 emit_symbol_diff (acfg, end_symbol, start_symbol, 0);
6688                 emit_int32 (acfg, uw_offset);
6689         }
6690
6691         /* Emit debug info */
6692         if (unwind_ops) {
6693                 char symbol2 [MAX_SYMBOL_SIZE];
6694
6695                 sprintf (symbol, "%s", name);
6696                 sprintf (symbol2, "%snamed_%s", acfg->temp_prefix, name);
6697
6698                 if (acfg->dwarf)
6699                         mono_dwarf_writer_emit_trampoline (acfg->dwarf, symbol, symbol2, NULL, NULL, code_size, unwind_ops);
6700         }
6701
6702         g_free (buf);
6703 }
6704
6705 static G_GNUC_UNUSED void
6706 emit_trampoline (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info)
6707 {
6708         emit_trampoline_full (acfg, got_offset, info, TRUE);
6709 }
6710
6711 static void
6712 emit_trampolines (MonoAotCompile *acfg)
6713 {
6714         char symbol [MAX_SYMBOL_SIZE];
6715         char end_symbol [MAX_SYMBOL_SIZE];
6716         int i, tramp_got_offset;
6717         int ntype;
6718 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6719         int tramp_type;
6720 #endif
6721
6722         if (!mono_aot_mode_is_full (&acfg->aot_opts) || acfg->aot_opts.llvm_only)
6723                 return;
6724         
6725         g_assert (acfg->image->assembly);
6726
6727         /* Currently, we emit most trampolines into the mscorlib AOT image. */
6728         if (strcmp (acfg->image->assembly->aname.name, "mscorlib") == 0) {
6729 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6730                 MonoTrampInfo *info;
6731
6732                 /*
6733                  * Emit the generic trampolines.
6734                  *
6735                  * We could save some code by treating the generic trampolines as a wrapper
6736                  * method, but that approach has its own complexities, so we choose the simpler
6737                  * method.
6738                  */
6739                 for (tramp_type = 0; tramp_type < MONO_TRAMPOLINE_NUM; ++tramp_type) {
6740                         /* we overload the boolean here to indicate the slightly different trampoline needed, see mono_arch_create_generic_trampoline() */
6741 #ifdef DISABLE_REMOTING
6742                         if (tramp_type == MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING)
6743                                 continue;
6744 #endif
6745                         mono_arch_create_generic_trampoline ((MonoTrampolineType)tramp_type, &info, acfg->aot_opts.use_trampolines_page? 2: TRUE);
6746                         emit_trampoline (acfg, acfg->got_offset, info);
6747                 }
6748
6749                 /* Emit the exception related code pieces */
6750                 mono_arch_get_restore_context (&info, TRUE);
6751                 emit_trampoline (acfg, acfg->got_offset, info);
6752                 mono_arch_get_call_filter (&info, TRUE);
6753                 emit_trampoline (acfg, acfg->got_offset, info);
6754                 mono_arch_get_throw_exception (&info, TRUE);
6755                 emit_trampoline (acfg, acfg->got_offset, info);
6756                 mono_arch_get_rethrow_exception (&info, TRUE);
6757                 emit_trampoline (acfg, acfg->got_offset, info);
6758                 mono_arch_get_throw_corlib_exception (&info, TRUE);
6759                 emit_trampoline (acfg, acfg->got_offset, info);
6760
6761 #ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES
6762                 mono_arch_create_sdb_trampoline (TRUE, &info, TRUE);
6763                 emit_trampoline (acfg, acfg->got_offset, info);
6764                 mono_arch_create_sdb_trampoline (FALSE, &info, TRUE);
6765                 emit_trampoline (acfg, acfg->got_offset, info);
6766 #endif
6767
6768 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
6769                 mono_arch_get_gsharedvt_trampoline (&info, TRUE);
6770                 if (info) {
6771                         emit_trampoline_full (acfg, acfg->got_offset, info, TRUE);
6772
6773                         /* Create a separate out trampoline for more information in stack traces */
6774                         info->name = g_strdup ("gsharedvt_out_trampoline");
6775                         emit_trampoline_full (acfg, acfg->got_offset, info, TRUE);
6776                 }
6777 #endif
6778
6779 #if defined(MONO_ARCH_HAVE_GET_TRAMPOLINES)
6780                 {
6781                         GSList *l = mono_arch_get_trampolines (TRUE);
6782
6783                         while (l) {
6784                                 MonoTrampInfo *info = (MonoTrampInfo *)l->data;
6785
6786                                 emit_trampoline (acfg, acfg->got_offset, info);
6787                                 l = l->next;
6788                         }
6789                 }
6790 #endif
6791
6792                 for (i = 0; i < acfg->aot_opts.nrgctx_fetch_trampolines; ++i) {
6793                         int offset;
6794
6795                         offset = MONO_RGCTX_SLOT_MAKE_RGCTX (i);
6796                         mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, TRUE);
6797                         emit_trampoline (acfg, acfg->got_offset, info);
6798                         g_free (info);
6799
6800                         offset = MONO_RGCTX_SLOT_MAKE_MRGCTX (i);
6801                         mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, TRUE);
6802                         emit_trampoline (acfg, acfg->got_offset, info);
6803                         g_free (info);
6804                 }
6805
6806 #ifdef MONO_ARCH_HAVE_GENERAL_RGCTX_LAZY_FETCH_TRAMPOLINE
6807                 mono_arch_create_general_rgctx_lazy_fetch_trampoline (&info, TRUE);
6808                 emit_trampoline (acfg, acfg->got_offset, info);
6809 #endif
6810
6811                 {
6812                         GSList *l;
6813
6814                         /* delegate_invoke_impl trampolines */
6815                         l = mono_arch_get_delegate_invoke_impls ();
6816                         while (l) {
6817                                 MonoTrampInfo *info = (MonoTrampInfo *)l->data;
6818
6819                                 emit_trampoline (acfg, acfg->got_offset, info);
6820                                 l = l->next;
6821                         }
6822                 }
6823
6824                 if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
6825                         mono_arch_get_enter_icall_trampoline (&info);
6826                         emit_trampoline (acfg, acfg->got_offset, info);
6827                 }
6828
6829 #endif /* #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES */
6830
6831                 /* Emit trampolines which are numerous */
6832
6833                 /*
6834                  * These include the following:
6835                  * - specific trampolines
6836                  * - static rgctx invoke trampolines
6837                  * - imt trampolines
6838                  * These trampolines have the same code, they are parameterized by GOT 
6839                  * slots. 
6840                  * They are defined in this file, in the arch_... routines instead of
6841                  * in tramp-<ARCH>.c, since it is easier to do it this way.
6842                  */
6843
6844                 /*
6845                  * When running in aot-only mode, we can't create specific trampolines at 
6846                  * runtime, so we create a few, and save them in the AOT file. 
6847                  * Normal trampolines embed their argument as a literal inside the 
6848                  * trampoline code, we can't do that here, so instead we embed an offset
6849                  * which needs to be added to the trampoline address to get the address of
6850                  * the GOT slot which contains the argument value.
6851                  * The generated trampolines jump to the generic trampolines using another
6852                  * GOT slot, which will be setup by the AOT loader to point to the 
6853                  * generic trampoline code of the given type.
6854                  */
6855
6856                 /*
6857                  * FIXME: Maybe we should use more specific trampolines (i.e. one class init for
6858                  * each class).
6859                  */
6860
6861                 emit_section_change (acfg, ".text", 0);
6862
6863                 tramp_got_offset = acfg->got_offset;
6864
6865                 for (ntype = 0; ntype < MONO_AOT_TRAMP_NUM; ++ntype) {
6866                         switch (ntype) {
6867                         case MONO_AOT_TRAMP_SPECIFIC:
6868                                 sprintf (symbol, "specific_trampolines");
6869                                 break;
6870                         case MONO_AOT_TRAMP_STATIC_RGCTX:
6871                                 sprintf (symbol, "static_rgctx_trampolines");
6872                                 break;
6873                         case MONO_AOT_TRAMP_IMT:
6874                                 sprintf (symbol, "imt_trampolines");
6875                                 break;
6876                         case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6877                                 sprintf (symbol, "gsharedvt_arg_trampolines");
6878                                 break;
6879                         default:
6880                                 g_assert_not_reached ();
6881                         }
6882
6883                         sprintf (end_symbol, "%s_e", symbol);
6884
6885                         if (acfg->aot_opts.write_symbols)
6886                                 emit_local_symbol (acfg, symbol, end_symbol, TRUE);
6887
6888                         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6889                         emit_info_symbol (acfg, symbol);
6890
6891                         acfg->trampoline_got_offset_base [ntype] = tramp_got_offset;
6892
6893                         for (i = 0; i < acfg->num_trampolines [ntype]; ++i) {
6894                                 int tramp_size = 0;
6895
6896                                 switch (ntype) {
6897                                 case MONO_AOT_TRAMP_SPECIFIC:
6898                                         arch_emit_specific_trampoline (acfg, tramp_got_offset, &tramp_size);
6899                                         tramp_got_offset += 2;
6900                                 break;
6901                                 case MONO_AOT_TRAMP_STATIC_RGCTX:
6902                                         arch_emit_static_rgctx_trampoline (acfg, tramp_got_offset, &tramp_size);                                
6903                                         tramp_got_offset += 2;
6904                                         break;
6905                                 case MONO_AOT_TRAMP_IMT:
6906                                         arch_emit_imt_trampoline (acfg, tramp_got_offset, &tramp_size);
6907                                         tramp_got_offset += 1;
6908                                         break;
6909                                 case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6910                                         arch_emit_gsharedvt_arg_trampoline (acfg, tramp_got_offset, &tramp_size);                               
6911                                         tramp_got_offset += 2;
6912                                         break;
6913                                 default:
6914                                         g_assert_not_reached ();
6915                                 }
6916                                 if (!acfg->trampoline_size [ntype]) {
6917                                         g_assert (tramp_size);
6918                                         acfg->trampoline_size [ntype] = tramp_size;
6919                                 }
6920                         }
6921
6922                         emit_label (acfg, end_symbol);
6923                         emit_int32 (acfg, 0);
6924                 }
6925
6926                 arch_emit_specific_trampoline_pages (acfg);
6927
6928                 /* Reserve some entries at the end of the GOT for our use */
6929                 acfg->num_trampoline_got_entries = tramp_got_offset - acfg->got_offset;
6930         }
6931
6932         acfg->got_offset += acfg->num_trampoline_got_entries;
6933 }
6934
6935 static gboolean
6936 str_begins_with (const char *str1, const char *str2)
6937 {
6938         int len = strlen (str2);
6939         return strncmp (str1, str2, len) == 0;
6940 }
6941
6942 void*
6943 mono_aot_readonly_field_override (MonoClassField *field)
6944 {
6945         ReadOnlyValue *rdv;
6946         for (rdv = readonly_values; rdv; rdv = rdv->next) {
6947                 char *p = rdv->name;
6948                 int len;
6949                 len = strlen (field->parent->name_space);
6950                 if (strncmp (p, field->parent->name_space, len))
6951                         continue;
6952                 p += len;
6953                 if (*p++ != '.')
6954                         continue;
6955                 len = strlen (field->parent->name);
6956                 if (strncmp (p, field->parent->name, len))
6957                         continue;
6958                 p += len;
6959                 if (*p++ != '.')
6960                         continue;
6961                 if (strcmp (p, field->name))
6962                         continue;
6963                 switch (rdv->type) {
6964                 case MONO_TYPE_I1:
6965                         return &rdv->value.i1;
6966                 case MONO_TYPE_I2:
6967                         return &rdv->value.i2;
6968                 case MONO_TYPE_I4:
6969                         return &rdv->value.i4;
6970                 default:
6971                         break;
6972                 }
6973         }
6974         return NULL;
6975 }
6976
6977 static void
6978 add_readonly_value (MonoAotOptions *opts, const char *val)
6979 {
6980         ReadOnlyValue *rdv;
6981         const char *fval;
6982         const char *tval;
6983         /* the format of val is:
6984          * namespace.typename.fieldname=type/value
6985          * type can be i1 for uint8/int8/boolean, i2 for uint16/int16/char, i4 for uint32/int32
6986          */
6987         fval = strrchr (val, '/');
6988         if (!fval) {
6989                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing /.\n", val);
6990                 exit (1);
6991         }
6992         tval = strrchr (val, '=');
6993         if (!tval) {
6994                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing =.\n", val);
6995                 exit (1);
6996         }
6997         rdv = g_new0 (ReadOnlyValue, 1);
6998         rdv->name = (char *)g_malloc0 (tval - val + 1);
6999         memcpy (rdv->name, val, tval - val);
7000         tval++;
7001         fval++;
7002         if (strncmp (tval, "i1", 2) == 0) {
7003                 rdv->value.i1 = atoi (fval);
7004                 rdv->type = MONO_TYPE_I1;
7005         } else if (strncmp (tval, "i2", 2) == 0) {
7006                 rdv->value.i2 = atoi (fval);
7007                 rdv->type = MONO_TYPE_I2;
7008         } else if (strncmp (tval, "i4", 2) == 0) {
7009                 rdv->value.i4 = atoi (fval);
7010                 rdv->type = MONO_TYPE_I4;
7011         } else {
7012                 fprintf (stderr, "AOT : unsupported type for readonly field '%s'.\n", tval);
7013                 exit (1);
7014         }
7015         rdv->next = readonly_values;
7016         readonly_values = rdv;
7017 }
7018
7019 static gchar *
7020 clean_path (gchar * path)
7021 {
7022         if (!path)
7023                 return NULL;
7024
7025         if (g_str_has_suffix (path, G_DIR_SEPARATOR_S))
7026                 return path;
7027
7028         gchar *clean = g_strconcat (path, G_DIR_SEPARATOR_S, NULL);
7029         g_free (path);
7030
7031         return clean;
7032 }
7033
7034 static gchar *
7035 wrap_path (gchar * path)
7036 {
7037         int len;
7038         if (!path)
7039                 return NULL;
7040
7041         // If the string contains no spaces, just return the original string.
7042         if (strstr (path, " ") == NULL)
7043                 return path;
7044
7045         // If the string is already wrapped in quotes, return it.
7046         len = strlen (path);
7047         if (len >= 2 && path[0] == '\"' && path[len-1] == '\"')
7048                 return path;
7049
7050         // If the string contains spaces, then wrap it in quotes.
7051         gchar *clean = g_strdup_printf ("\"%s\"", path);
7052
7053         return clean;
7054 }
7055
7056 // Duplicate a char range and add it to a ptrarray, but only if it is nonempty
7057 static void
7058 ptr_array_add_range_if_nonempty(GPtrArray *args, gchar const *start, gchar const *end)
7059 {
7060         ptrdiff_t len = end-start;
7061         if (len > 0)
7062                 g_ptr_array_add (args, g_strndup (start, len));
7063 }
7064
7065 static GPtrArray *
7066 mono_aot_split_options (const char *aot_options)
7067 {
7068         enum MonoAotOptionState {
7069                 MONO_AOT_OPTION_STATE_DEFAULT,
7070                 MONO_AOT_OPTION_STATE_STRING,
7071                 MONO_AOT_OPTION_STATE_ESCAPE,
7072         };
7073
7074         GPtrArray *args = g_ptr_array_new ();
7075         enum MonoAotOptionState state = MONO_AOT_OPTION_STATE_DEFAULT;
7076         gchar const *opt_start = aot_options;
7077         gboolean end_of_string = FALSE;
7078         gchar cur;
7079
7080         g_return_val_if_fail (aot_options != NULL, NULL);
7081
7082         while ((cur = *aot_options) != '\0') {
7083                 if (state == MONO_AOT_OPTION_STATE_ESCAPE)
7084                         goto next;
7085
7086                 switch (cur) {
7087                 case '"':
7088                         // If we find a quote, then if we're in the default case then
7089                         // it means we've found the start of a string, if not then it
7090                         // means we've found the end of the string and should switch
7091                         // back to the default case.            
7092                         switch (state) {
7093                         case MONO_AOT_OPTION_STATE_DEFAULT:
7094                                 state = MONO_AOT_OPTION_STATE_STRING;
7095                                 break;
7096                         case MONO_AOT_OPTION_STATE_STRING:
7097                                 state = MONO_AOT_OPTION_STATE_DEFAULT;
7098                                 break;
7099                         case MONO_AOT_OPTION_STATE_ESCAPE:
7100                                 g_assert_not_reached ();
7101                                 break;
7102                         }
7103                         break;
7104                 case '\\':
7105                         // If we've found an escaping operator, then this means we
7106                         // should not process the next character if inside a string.            
7107                         if (state == MONO_AOT_OPTION_STATE_STRING) 
7108                                 state = MONO_AOT_OPTION_STATE_ESCAPE;
7109                         break;
7110                 case ',':
7111                         // If we're in the default state then this means we've found
7112                         // an option, store it for later processing.
7113                         if (state == MONO_AOT_OPTION_STATE_DEFAULT)
7114                                 goto new_opt;
7115                         break;
7116                 }
7117
7118         next:
7119                 aot_options++;
7120         restart:
7121                 // If the next character is end of string, then process the last option.
7122                 if (*(aot_options) == '\0') {
7123                         end_of_string = TRUE;
7124                         goto new_opt;
7125                 }
7126                 continue;
7127
7128         new_opt:
7129                 ptr_array_add_range_if_nonempty (args, opt_start, aot_options);
7130                 opt_start = ++aot_options;
7131                 if (end_of_string)
7132                         break;
7133                 goto restart; // Check for null and continue loop
7134         }
7135
7136         return args;
7137 }
7138
7139 static void
7140 mono_aot_parse_options (const char *aot_options, MonoAotOptions *opts)
7141 {
7142         GPtrArray* args;
7143
7144         args = mono_aot_split_options (aot_options ? aot_options : "");
7145         for (int i = 0; i < args->len; ++i) {
7146                 const char *arg = (const char *)g_ptr_array_index (args, i);
7147
7148                 if (str_begins_with (arg, "outfile=")) {
7149                         opts->outfile = g_strdup (arg + strlen ("outfile="));
7150                 } else if (str_begins_with (arg, "llvm-outfile=")) {
7151                         opts->llvm_outfile = g_strdup (arg + strlen ("llvm-outfile="));
7152                 } else if (str_begins_with (arg, "temp-path=")) {
7153                         opts->temp_path = clean_path (g_strdup (arg + strlen ("temp-path=")));
7154                 } else if (str_begins_with (arg, "save-temps")) {
7155                         opts->save_temps = TRUE;
7156                 } else if (str_begins_with (arg, "keep-temps")) {
7157                         opts->save_temps = TRUE;
7158                 } else if (str_begins_with (arg, "write-symbols")) {
7159                         opts->write_symbols = TRUE;
7160                 } else if (str_begins_with (arg, "no-write-symbols")) {
7161                         opts->write_symbols = FALSE;
7162                 // Intentionally undocumented -- one-off experiment
7163                 } else if (str_begins_with (arg, "metadata-only")) {
7164                         opts->metadata_only = TRUE;
7165                 } else if (str_begins_with (arg, "bind-to-runtime-version")) {
7166                         opts->bind_to_runtime_version = TRUE;
7167                 } else if (str_begins_with (arg, "full")) {
7168                         opts->mode = MONO_AOT_MODE_FULL;
7169                 } else if (str_begins_with (arg, "hybrid")) {
7170                         opts->mode = MONO_AOT_MODE_HYBRID;                      
7171                 } else if (str_begins_with (arg, "interp")) {
7172                         opts->mode = MONO_AOT_MODE_INTERP;
7173                 } else if (str_begins_with (arg, "threads=")) {
7174                         opts->nthreads = atoi (arg + strlen ("threads="));
7175                 } else if (str_begins_with (arg, "static")) {
7176                         opts->static_link = TRUE;
7177                         opts->no_dlsym = TRUE;
7178                 } else if (str_begins_with (arg, "asmonly")) {
7179                         opts->asm_only = TRUE;
7180                 } else if (str_begins_with (arg, "asmwriter")) {
7181                         opts->asm_writer = TRUE;
7182                 } else if (str_begins_with (arg, "nodebug")) {
7183                         opts->nodebug = TRUE;
7184                 } else if (str_begins_with (arg, "dwarfdebug")) {
7185                         opts->dwarf_debug = TRUE;
7186                 // Intentionally undocumented -- No one remembers what this does. It appears to be ARM-only
7187                 } else if (str_begins_with (arg, "nopagetrampolines")) {
7188                         opts->use_trampolines_page = FALSE;
7189                 } else if (str_begins_with (arg, "ntrampolines=")) {
7190                         opts->ntrampolines = atoi (arg + strlen ("ntrampolines="));
7191                 } else if (str_begins_with (arg, "nrgctx-trampolines=")) {
7192                         opts->nrgctx_trampolines = atoi (arg + strlen ("nrgctx-trampolines="));
7193                 } else if (str_begins_with (arg, "nrgctx-fetch-trampolines=")) {
7194                         opts->nrgctx_fetch_trampolines = atoi (arg + strlen ("nrgctx-fetch-trampolines="));
7195                 } else if (str_begins_with (arg, "nimt-trampolines=")) {
7196                         opts->nimt_trampolines = atoi (arg + strlen ("nimt-trampolines="));
7197                 } else if (str_begins_with (arg, "ngsharedvt-trampolines=")) {
7198                         opts->ngsharedvt_arg_trampolines = atoi (arg + strlen ("ngsharedvt-trampolines="));
7199                 } else if (str_begins_with (arg, "tool-prefix=")) {
7200                         opts->tool_prefix = g_strdup (arg + strlen ("tool-prefix="));
7201                 } else if (str_begins_with (arg, "ld-flags=")) {
7202                         opts->ld_flags = g_strdup (arg + strlen ("ld-flags="));                 
7203                 } else if (str_begins_with (arg, "soft-debug")) {
7204                         opts->soft_debug = TRUE;
7205                 // Intentionally undocumented x2-- deprecated
7206                 } else if (str_begins_with (arg, "gen-seq-points-file=")) {
7207                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file= is deprecated.\n");
7208                 } else if (str_begins_with (arg, "gen-seq-points-file")) {
7209                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file is deprecated.\n");
7210                 } else if (str_begins_with (arg, "msym-dir=")) {
7211                         debug_options.no_seq_points_compact_data = FALSE;
7212                         opts->gen_msym_dir = TRUE;
7213                         opts->gen_msym_dir_path = g_strdup (arg + strlen ("msym_dir="));;
7214                 } else if (str_begins_with (arg, "direct-pinvoke")) {
7215                         opts->direct_pinvoke = TRUE;
7216                 } else if (str_begins_with (arg, "direct-icalls")) {
7217                         opts->direct_icalls = TRUE;
7218                 } else if (str_begins_with (arg, "no-direct-calls")) {
7219                         opts->no_direct_calls = TRUE;
7220                 } else if (str_begins_with (arg, "print-skipped")) {
7221                         opts->print_skipped_methods = TRUE;
7222                 } else if (str_begins_with (arg, "stats")) {
7223                         opts->stats = TRUE;
7224                 // Intentionally undocumented-- has no known function other than to debug the compiler
7225                 } else if (str_begins_with (arg, "no-instances")) {
7226                         opts->no_instances = TRUE;
7227                 // Intentionally undocumented x4-- Used for internal debugging of compiler
7228                 } else if (str_begins_with (arg, "log-generics")) {
7229                         opts->log_generics = TRUE;
7230                 } else if (str_begins_with (arg, "log-instances=")) {
7231                         opts->log_instances = TRUE;
7232                         opts->instances_logfile_path = g_strdup (arg + strlen ("log-instances="));
7233                 } else if (str_begins_with (arg, "log-instances")) {
7234                         opts->log_instances = TRUE;
7235                 } else if (str_begins_with (arg, "internal-logfile=")) {
7236                         opts->logfile = g_strdup (arg + strlen ("internal-logfile="));
7237                 } else if (str_begins_with (arg, "mtriple=")) {
7238                         opts->mtriple = g_strdup (arg + strlen ("mtriple="));
7239                 } else if (str_begins_with (arg, "llvm-path=")) {
7240                         opts->llvm_path = clean_path (g_strdup (arg + strlen ("llvm-path=")));
7241                 } else if (!strcmp (arg, "llvm")) {
7242                         opts->llvm = TRUE;
7243                 } else if (str_begins_with (arg, "readonly-value=")) {
7244                         add_readonly_value (opts, arg + strlen ("readonly-value="));
7245                 } else if (str_begins_with (arg, "info")) {
7246                         printf ("AOT target setup: %s.\n", AOT_TARGET_STR);
7247                         exit (0);
7248                 // Intentionally undocumented: Used for precise stack maps, which are not available yet
7249                 } else if (str_begins_with (arg, "gc-maps")) {
7250                         mini_gc_enable_gc_maps_for_aot ();
7251                 // Intentionally undocumented: Used for internal debugging
7252                 } else if (str_begins_with (arg, "dump")) {
7253                         opts->dump_json = TRUE;
7254                 } else if (str_begins_with (arg, "llvmonly")) {
7255                         opts->mode = MONO_AOT_MODE_FULL;
7256                         opts->llvm = TRUE;
7257                         opts->llvm_only = TRUE;
7258                 } else if (str_begins_with (arg, "data-outfile=")) {
7259                         opts->data_outfile = g_strdup (arg + strlen ("data-outfile="));
7260                 } else if (str_begins_with (arg, "profile=")) {
7261                         opts->profile_files = g_list_append (opts->profile_files, g_strdup (arg + strlen ("profile=")));
7262                 } else if (!strcmp (arg, "profile-only")) {
7263                         opts->profile_only = TRUE;
7264                 } else if (!strcmp (arg, "verbose")) {
7265                         opts->verbose = TRUE;
7266                 } else if (str_begins_with (arg, "help") || str_begins_with (arg, "?")) {
7267                         printf ("Supported options for --aot:\n");
7268                         printf ("    asmonly\n");
7269                         printf ("    bind-to-runtime-version\n");
7270                         printf ("    bitcode\n");
7271                         printf ("    data-outfile=\n");
7272                         printf ("    direct-icalls\n");
7273                         printf ("    direct-pinvoke\n");
7274                         printf ("    dwarfdebug\n");
7275                         printf ("    full\n");
7276                         printf ("    hybrid\n");
7277                         printf ("    info\n");
7278                         printf ("    keep-temps\n");
7279                         printf ("    llvm\n");
7280                         printf ("    llvmonly\n");
7281                         printf ("    llvm-outfile=\n");
7282                         printf ("    llvm-path=\n");
7283                         printf ("    msym-dir=\n");
7284                         printf ("    mtriple\n");
7285                         printf ("    nimt-trampolines=\n");
7286                         printf ("    nodebug\n");
7287                         printf ("    no-direct-calls\n");
7288                         printf ("    no-write-symbols\n");
7289                         printf ("    nrgctx-trampolines=\n");
7290                         printf ("    nrgctx-fetch-trampolines=\n");
7291                         printf ("    ngsharedvt-trampolines=\n");
7292                         printf ("    ntrampolines=\n");
7293                         printf ("    outfile=\n");
7294                         printf ("    profile=\n");
7295                         printf ("    profile-only\n");
7296                         printf ("    print-skipped-methods\n");
7297                         printf ("    readonly-value=\n");
7298                         printf ("    save-temps\n");
7299                         printf ("    soft-debug\n");
7300                         printf ("    static\n");
7301                         printf ("    stats\n");
7302                         printf ("    temp-path=\n");
7303                         printf ("    tool-prefix=\n");
7304                         printf ("    threads=\n");
7305                         printf ("    write-symbols\n");
7306                         printf ("    verbose\n");
7307                         printf ("    help/?\n");
7308                         exit (0);
7309                 } else {
7310                         fprintf (stderr, "AOT : Unknown argument '%s'.\n", arg);
7311                         exit (1);
7312                 }
7313
7314                 g_free ((gpointer) arg);
7315         }
7316
7317         if (opts->use_trampolines_page) {
7318                 opts->ntrampolines = 0;
7319                 opts->nrgctx_trampolines = 0;
7320                 opts->nimt_trampolines = 0;
7321                 opts->ngsharedvt_arg_trampolines = 0;
7322         }
7323
7324         g_ptr_array_free (args, /*free_seg=*/TRUE);
7325 }
7326
7327 static void
7328 add_token_info_hash (gpointer key, gpointer value, gpointer user_data)
7329 {
7330         MonoMethod *method = (MonoMethod*)key;
7331         MonoJumpInfoToken *ji = (MonoJumpInfoToken*)value;
7332         MonoAotCompile *acfg = (MonoAotCompile *)user_data;
7333         MonoJumpInfoToken *new_ji;
7334
7335         new_ji = (MonoJumpInfoToken *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfoToken));
7336         new_ji->image = ji->image;
7337         new_ji->token = ji->token;
7338         g_hash_table_insert (acfg->token_info_hash, method, new_ji);
7339 }
7340
7341 static gboolean
7342 can_encode_class (MonoAotCompile *acfg, MonoClass *klass)
7343 {
7344         if (klass->type_token)
7345                 return TRUE;
7346         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR) || (klass->byval_arg.type == MONO_TYPE_PTR))
7347                 return TRUE;
7348         if (klass->rank)
7349                 return can_encode_class (acfg, klass->element_class);
7350         return FALSE;
7351 }
7352
7353 static gboolean
7354 can_encode_method (MonoAotCompile *acfg, MonoMethod *method)
7355 {
7356                 if (method->wrapper_type) {
7357                         switch (method->wrapper_type) {
7358                         case MONO_WRAPPER_NONE:
7359                         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
7360                         case MONO_WRAPPER_XDOMAIN_INVOKE:
7361                         case MONO_WRAPPER_STFLD:
7362                         case MONO_WRAPPER_LDFLD:
7363                         case MONO_WRAPPER_LDFLDA:
7364                         case MONO_WRAPPER_STELEMREF:
7365                         case MONO_WRAPPER_PROXY_ISINST:
7366                         case MONO_WRAPPER_ALLOC:
7367                         case MONO_WRAPPER_REMOTING_INVOKE:
7368                         case MONO_WRAPPER_UNKNOWN:
7369                         case MONO_WRAPPER_WRITE_BARRIER:
7370                         case MONO_WRAPPER_DELEGATE_INVOKE:
7371                         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
7372                         case MONO_WRAPPER_DELEGATE_END_INVOKE:
7373                         case MONO_WRAPPER_SYNCHRONIZED:
7374                                 break;
7375                         case MONO_WRAPPER_MANAGED_TO_MANAGED:
7376                         case MONO_WRAPPER_CASTCLASS: {
7377                                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
7378
7379                                 if (info)
7380                                         return TRUE;
7381                                 else
7382                                         return FALSE;
7383                                 break;
7384                         }
7385                         default:
7386                                 //printf ("Skip (wrapper call): %d -> %s\n", patch_info->type, mono_method_full_name (patch_info->data.method, TRUE));
7387                                 return FALSE;
7388                         }
7389                 } else {
7390                         if (!method->token) {
7391                                 /* The method is part of a constructed type like Int[,].Set (). */
7392                                 if (!g_hash_table_lookup (acfg->token_info_hash, method)) {
7393                                         if (method->klass->rank)
7394                                                 return TRUE;
7395                                         return FALSE;
7396                                 }
7397                         }
7398                 }
7399                 return TRUE;
7400 }
7401
7402 static gboolean
7403 can_encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info)
7404 {
7405         switch (patch_info->type) {
7406         case MONO_PATCH_INFO_METHOD:
7407         case MONO_PATCH_INFO_METHODCONST:
7408         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
7409                 MonoMethod *method = patch_info->data.method;
7410
7411                 return can_encode_method (acfg, method);
7412         }
7413         case MONO_PATCH_INFO_VTABLE:
7414         case MONO_PATCH_INFO_CLASS:
7415         case MONO_PATCH_INFO_IID:
7416         case MONO_PATCH_INFO_ADJUSTED_IID:
7417                 if (!can_encode_class (acfg, patch_info->data.klass)) {
7418                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7419                         return FALSE;
7420                 }
7421                 break;
7422         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE: {
7423                 if (!can_encode_class (acfg, patch_info->data.del_tramp->klass)) {
7424                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7425                         return FALSE;
7426                 }
7427                 break;
7428         }
7429         case MONO_PATCH_INFO_RGCTX_FETCH:
7430         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
7431                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
7432
7433                 if (!can_encode_method (acfg, entry->method))
7434                         return FALSE;
7435                 if (!can_encode_patch (acfg, entry->data))
7436                         return FALSE;
7437                 break;
7438         }
7439         default:
7440                 break;
7441         }
7442
7443         return TRUE;
7444 }
7445
7446 static gboolean
7447 is_concrete_type (MonoType *t)
7448 {
7449         MonoClass *klass;
7450         int i;
7451
7452         if (t->type == MONO_TYPE_VAR || t->type == MONO_TYPE_MVAR)
7453                 return FALSE;
7454         if (t->type == MONO_TYPE_GENERICINST) {
7455                 MonoGenericContext *orig_ctx;
7456                 MonoGenericInst *inst;
7457                 MonoType *arg;
7458
7459                 if (!MONO_TYPE_ISSTRUCT (t))
7460                         return TRUE;
7461                 klass = mono_class_from_mono_type (t);
7462                 orig_ctx = &mono_class_get_generic_class (klass)->context;
7463
7464                 inst = orig_ctx->class_inst;
7465                 if (inst) {
7466                         for (i = 0; i < inst->type_argc; ++i) {
7467                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7468                                 if (!is_concrete_type (arg))
7469                                         return FALSE;
7470                         }
7471                 }
7472                 inst = orig_ctx->method_inst;
7473                 if (inst) {
7474                         for (i = 0; i < inst->type_argc; ++i) {
7475                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7476                                 if (!is_concrete_type (arg))
7477                                         return FALSE;
7478                         }
7479                 }
7480         }
7481         return TRUE;
7482 }
7483
7484 /* LOCKING: Assumes the loader lock is held */
7485 static void
7486 add_gsharedvt_wrappers (MonoAotCompile *acfg, MonoMethodSignature *sig, gboolean gsharedvt_in, gboolean gsharedvt_out)
7487 {
7488         MonoMethod *wrapper;
7489         gboolean concrete = TRUE;
7490         gboolean add_in = gsharedvt_in;
7491         gboolean add_out = gsharedvt_out;
7492
7493         if (gsharedvt_in && g_hash_table_lookup (acfg->gsharedvt_in_signatures, sig))
7494                 add_in = FALSE;
7495         if (gsharedvt_out && g_hash_table_lookup (acfg->gsharedvt_out_signatures, sig))
7496                 add_out = FALSE;
7497
7498         if (!add_in && !add_out)
7499                 return;
7500
7501         if (mini_is_gsharedvt_variable_signature (sig))
7502                 return;
7503
7504         if (add_in)
7505                 g_hash_table_insert (acfg->gsharedvt_in_signatures, sig, sig);
7506         if (add_out)
7507                 g_hash_table_insert (acfg->gsharedvt_out_signatures, sig, sig);
7508
7509         if (!sig->has_type_parameters) {
7510                 //printf ("%s\n", mono_signature_full_name (sig));
7511
7512                 if (gsharedvt_in) {
7513                         wrapper = mini_get_gsharedvt_in_sig_wrapper (sig);
7514                         add_extra_method (acfg, wrapper);
7515                 }
7516                 if (gsharedvt_out) {
7517                         wrapper = mini_get_gsharedvt_out_sig_wrapper (sig);
7518                         add_extra_method (acfg, wrapper);
7519                 }
7520         } else {
7521                 /* For signatures creared during generic sharing, convert them to a concrete signature if possible */
7522                 MonoMethodSignature *copy = mono_metadata_signature_dup (sig);
7523                 int i;
7524
7525                 //printf ("%s\n", mono_signature_full_name (sig));
7526
7527                 copy->ret = mini_get_underlying_type (sig->ret);
7528                 if (!is_concrete_type (copy->ret))
7529                         concrete = FALSE;
7530                 for (i = 0; i < sig->param_count; ++i) {
7531                         copy->params [i] = mini_get_underlying_type (sig->params [i]);
7532                         if (!is_concrete_type (copy->params [i]))
7533                                 concrete = FALSE;
7534                 }
7535                 if (concrete) {
7536                         copy->has_type_parameters = 0;
7537
7538                         if (gsharedvt_in) {
7539                                 wrapper = mini_get_gsharedvt_in_sig_wrapper (copy);
7540                                 add_extra_method (acfg, wrapper);
7541                         }
7542
7543                         if (gsharedvt_out) {
7544                                 wrapper = mini_get_gsharedvt_out_sig_wrapper (copy);
7545                                 add_extra_method (acfg, wrapper);
7546                         }
7547
7548                         //printf ("%s\n", mono_method_full_name (wrapper, 1));
7549                 }
7550         }
7551 }
7552
7553 /*
7554  * compile_method:
7555  *
7556  *   AOT compile a given method.
7557  * This function might be called by multiple threads, so it must be thread-safe.
7558  */
7559 static void
7560 compile_method (MonoAotCompile *acfg, MonoMethod *method)
7561 {
7562         MonoCompile *cfg;
7563         MonoJumpInfo *patch_info;
7564         gboolean skip;
7565         int index, depth;
7566         MonoMethod *wrapped;
7567         GTimer *jit_timer;
7568         JitFlags flags;
7569
7570         if (acfg->aot_opts.metadata_only)
7571                 return;
7572
7573         mono_acfg_lock (acfg);
7574         index = get_method_index (acfg, method);
7575         mono_acfg_unlock (acfg);
7576
7577         /* fixme: maybe we can also precompile wrapper methods */
7578         if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
7579                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
7580                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT)) {
7581                 //printf ("Skip (impossible): %s\n", mono_method_full_name (method, TRUE));
7582                 return;
7583         }
7584
7585         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
7586                 return;
7587
7588         wrapped = mono_marshal_method_from_wrapper (method);
7589         if (wrapped && (wrapped->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && wrapped->is_generic)
7590                 // FIXME: The wrapper should be generic too, but it is not
7591                 return;
7592
7593         if (method->wrapper_type == MONO_WRAPPER_COMINTEROP)
7594                 return;
7595
7596         if (acfg->aot_opts.profile_only && !method->is_inflated && !g_hash_table_lookup (acfg->profile_methods, method))
7597                 return;
7598
7599         InterlockedIncrement (&acfg->stats.mcount);
7600
7601 #if 0
7602         if (method->is_generic || mono_class_is_gtd (method->klass)) {
7603                 InterlockedIncrement (&acfg->stats.genericcount);
7604                 return;
7605         }
7606 #endif
7607
7608         //acfg->aot_opts.print_skipped_methods = TRUE;
7609
7610         /*
7611          * Since these methods are the only ones which are compiled with
7612          * AOT support, and they are not used by runtime startup/shutdown code,
7613          * the runtime will not see AOT methods during AOT compilation,so it
7614          * does not need to support them by creating a fake GOT etc.
7615          */
7616         flags = JIT_FLAG_AOT;
7617         if (mono_aot_mode_is_full (&acfg->aot_opts))
7618                 flags = (JitFlags)(flags | JIT_FLAG_FULL_AOT);
7619         if (acfg->llvm)
7620                 flags = (JitFlags)(flags | JIT_FLAG_LLVM);
7621         if (acfg->aot_opts.llvm_only)
7622                 flags = (JitFlags)(flags | JIT_FLAG_LLVM_ONLY | JIT_FLAG_EXPLICIT_NULL_CHECKS);
7623         if (acfg->aot_opts.no_direct_calls)
7624                 flags = (JitFlags)(flags | JIT_FLAG_NO_DIRECT_ICALLS);
7625         if (acfg->aot_opts.direct_pinvoke)
7626                 flags = (JitFlags)(flags | JIT_FLAG_DIRECT_PINVOKE);
7627
7628         jit_timer = mono_time_track_start ();
7629         cfg = mini_method_compile (method, acfg->opts, mono_get_root_domain (), flags, 0, index);
7630         mono_time_track_end (&mono_jit_stats.jit_time, jit_timer);
7631
7632         if (cfg->exception_type == MONO_EXCEPTION_GENERIC_SHARING_FAILED) {
7633                 if (acfg->aot_opts.print_skipped_methods)
7634                         printf ("Skip (gshared failure): %s (%s)\n", mono_method_get_full_name (method), cfg->exception_message);
7635                 InterlockedIncrement (&acfg->stats.genericcount);
7636                 return;
7637         }
7638         if (cfg->exception_type != MONO_EXCEPTION_NONE) {
7639                 /* Some instances cannot be JITted due to constraints etc. */
7640                 if (!method->is_inflated)
7641                         report_loader_error (acfg, &cfg->error, "Unable to compile method '%s' due to: '%s'.\n", mono_method_get_full_name (method), mono_error_get_message (&cfg->error));
7642                 /* Let the exception happen at runtime */
7643                 return;
7644         }
7645
7646         if (cfg->disable_aot) {
7647                 if (acfg->aot_opts.print_skipped_methods)
7648                         printf ("Skip (disabled): %s\n", mono_method_get_full_name (method));
7649                 InterlockedIncrement (&acfg->stats.ocount);
7650                 return;
7651         }
7652         cfg->method_index = index;
7653
7654         /* Nullify patches which need no aot processing */
7655         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7656                 switch (patch_info->type) {
7657                 case MONO_PATCH_INFO_LABEL:
7658                 case MONO_PATCH_INFO_BB:
7659                         patch_info->type = MONO_PATCH_INFO_NONE;
7660                         break;
7661                 default:
7662                         break;
7663                 }
7664         }
7665
7666         /* Collect method->token associations from the cfg */
7667         mono_acfg_lock (acfg);
7668         g_hash_table_foreach (cfg->token_info_hash, add_token_info_hash, acfg);
7669         mono_acfg_unlock (acfg);
7670         g_hash_table_destroy (cfg->token_info_hash);
7671         cfg->token_info_hash = NULL;
7672
7673         /*
7674          * Check for absolute addresses.
7675          */
7676         skip = FALSE;
7677         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7678                 switch (patch_info->type) {
7679                 case MONO_PATCH_INFO_ABS:
7680                         /* unable to handle this */
7681                         skip = TRUE;    
7682                         break;
7683                 default:
7684                         break;
7685                 }
7686         }
7687
7688         if (skip) {
7689                 if (acfg->aot_opts.print_skipped_methods)
7690                         printf ("Skip (abs call): %s\n", mono_method_get_full_name (method));
7691                 InterlockedIncrement (&acfg->stats.abscount);
7692                 return;
7693         }
7694
7695         /* Lock for the rest of the code */
7696         mono_acfg_lock (acfg);
7697
7698         if (cfg->gsharedvt)
7699                 acfg->stats.method_categories [METHOD_CAT_GSHAREDVT] ++;
7700         else if (cfg->gshared)
7701                 acfg->stats.method_categories [METHOD_CAT_INST] ++;
7702         else if (cfg->method->wrapper_type)
7703                 acfg->stats.method_categories [METHOD_CAT_WRAPPER] ++;
7704         else
7705                 acfg->stats.method_categories [METHOD_CAT_NORMAL] ++;
7706
7707         /*
7708          * Check for methods/klasses we can't encode.
7709          */
7710         skip = FALSE;
7711         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7712                 if (!can_encode_patch (acfg, patch_info))
7713                         skip = TRUE;
7714         }
7715
7716         if (skip) {
7717                 if (acfg->aot_opts.print_skipped_methods)
7718                         printf ("Skip (patches): %s\n", mono_method_get_full_name (method));
7719                 acfg->stats.ocount++;
7720                 mono_acfg_unlock (acfg);
7721                 return;
7722         }
7723
7724         if (!cfg->compile_llvm)
7725                 acfg->has_jitted_code = TRUE;
7726
7727         if (method->is_inflated && acfg->aot_opts.log_instances) {
7728                 if (acfg->instances_logfile)
7729                         fprintf (acfg->instances_logfile, "%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7730                 else
7731                         printf ("%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7732         }
7733
7734         /* Adds generic instances referenced by this method */
7735         /* 
7736          * The depth is used to avoid infinite loops when generic virtual recursion is 
7737          * encountered.
7738          */
7739         depth = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_depth, method));
7740         if (!acfg->aot_opts.no_instances && depth < 32 && mono_aot_mode_is_full (&acfg->aot_opts)) {
7741                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7742                         switch (patch_info->type) {
7743                         case MONO_PATCH_INFO_RGCTX_FETCH:
7744                         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX:
7745                         case MONO_PATCH_INFO_METHOD: {
7746                                 MonoMethod *m = NULL;
7747
7748                                 if (patch_info->type == MONO_PATCH_INFO_RGCTX_FETCH || patch_info->type == MONO_PATCH_INFO_RGCTX_SLOT_INDEX) {
7749                                         MonoJumpInfoRgctxEntry *e = patch_info->data.rgctx_entry;
7750
7751                                         if (e->info_type == MONO_RGCTX_INFO_GENERIC_METHOD_CODE)
7752                                                 m = e->data->data.method;
7753                                 } else {
7754                                         m = patch_info->data.method;
7755                                 }
7756
7757                                 if (!m)
7758                                         break;
7759                                 if (m->is_inflated && mono_aot_mode_is_full (&acfg->aot_opts)) {
7760                                         if (!(mono_class_generic_sharing_enabled (m->klass) &&
7761                                                   mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) &&
7762                                                 (!method_has_type_vars (m) || mono_method_is_generic_sharable_full (m, TRUE, TRUE, FALSE))) {
7763                                                 if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
7764                                                         if (mono_aot_mode_is_full (&acfg->aot_opts) && !method_has_type_vars (m))
7765                                                                 add_extra_method_with_depth (acfg, mono_marshal_get_native_wrapper (m, TRUE, TRUE), depth + 1);
7766                                                 } else {
7767                                                         add_extra_method_with_depth (acfg, m, depth + 1);
7768                                                         add_types_from_method_header (acfg, m);
7769                                                 }
7770                                         }
7771                                         add_generic_class_with_depth (acfg, m->klass, depth + 5, "method");
7772                                 }
7773                                 if (m->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED) {
7774                                         WrapperInfo *info = mono_marshal_get_wrapper_info (m);
7775
7776                                         if (info && info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR)
7777                                                 add_extra_method_with_depth (acfg, m, depth + 1);
7778                                 }
7779                                 break;
7780                         }
7781                         case MONO_PATCH_INFO_VTABLE: {
7782                                 MonoClass *klass = patch_info->data.klass;
7783
7784                                 if (mono_class_is_ginst (klass) && !mini_class_is_generic_sharable (klass))
7785                                         add_generic_class_with_depth (acfg, klass, depth + 5, "vtable");
7786                                 break;
7787                         }
7788                         case MONO_PATCH_INFO_SFLDA: {
7789                                 MonoClass *klass = patch_info->data.field->parent;
7790
7791                                 /* The .cctor needs to run at runtime. */
7792                                 if (mono_class_is_ginst (klass) && !mono_generic_context_is_sharable_full (&mono_class_get_generic_class (klass)->context, FALSE, FALSE) && mono_class_get_cctor (klass))
7793                                         add_extra_method_with_depth (acfg, mono_class_get_cctor (klass), depth + 1);
7794                                 break;
7795                         }
7796                         default:
7797                                 break;
7798                         }
7799                 }
7800         }
7801
7802         /* Determine whenever the method has GOT slots */
7803         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7804                 switch (patch_info->type) {
7805                 case MONO_PATCH_INFO_GOT_OFFSET:
7806                 case MONO_PATCH_INFO_NONE:
7807                 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
7808                 case MONO_PATCH_INFO_GC_NURSERY_START:
7809                 case MONO_PATCH_INFO_GC_NURSERY_BITS:
7810                         break;
7811                 case MONO_PATCH_INFO_IMAGE:
7812                         /* The assembly is stored in GOT slot 0 */
7813                         if (patch_info->data.image != acfg->image)
7814                                 cfg->has_got_slots = TRUE;
7815                         break;
7816                 default:
7817                         if (!is_plt_patch (patch_info) || (cfg->compile_llvm && acfg->aot_opts.llvm_only))
7818                                 cfg->has_got_slots = TRUE;
7819                         break;
7820                 }
7821         }
7822
7823         if (!cfg->has_got_slots)
7824                 InterlockedIncrement (&acfg->stats.methods_without_got_slots);
7825
7826         /* Add gsharedvt wrappers for signatures used by the method */
7827         if (acfg->aot_opts.llvm_only) {
7828                 GSList *l;
7829
7830                 if (!cfg->method->wrapper_type || cfg->method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
7831                         /* These only need out wrappers */
7832                         add_gsharedvt_wrappers (acfg, mono_method_signature (cfg->method), FALSE, TRUE);
7833
7834                 for (l = cfg->signatures; l; l = l->next) {
7835                         MonoMethodSignature *sig = mono_metadata_signature_dup ((MonoMethodSignature*)l->data);
7836
7837                         /* These only need in wrappers */
7838                         add_gsharedvt_wrappers (acfg, sig, TRUE, FALSE);
7839                 }
7840         }
7841
7842         /* 
7843          * FIXME: Instead of this mess, allocate the patches from the aot mempool.
7844          */
7845         /* Make a copy of the patch info which is in the mempool */
7846         {
7847                 MonoJumpInfo *patches = NULL, *patches_end = NULL;
7848
7849                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7850                         MonoJumpInfo *new_patch_info = mono_patch_info_dup_mp (acfg->mempool, patch_info);
7851
7852                         if (!patches)
7853                                 patches = new_patch_info;
7854                         else
7855                                 patches_end->next = new_patch_info;
7856                         patches_end = new_patch_info;
7857                 }
7858                 cfg->patch_info = patches;
7859         }
7860         /* Make a copy of the unwind info */
7861         {
7862                 GSList *l, *unwind_ops;
7863                 MonoUnwindOp *op;
7864
7865                 unwind_ops = NULL;
7866                 for (l = cfg->unwind_ops; l; l = l->next) {
7867                         op = (MonoUnwindOp *)mono_mempool_alloc (acfg->mempool, sizeof (MonoUnwindOp));
7868                         memcpy (op, l->data, sizeof (MonoUnwindOp));
7869                         unwind_ops = g_slist_prepend_mempool (acfg->mempool, unwind_ops, op);
7870                 }
7871                 cfg->unwind_ops = g_slist_reverse (unwind_ops);
7872         }
7873         /* Make a copy of the argument/local info */
7874         {
7875                 MonoError error;
7876                 MonoInst **args, **locals;
7877                 MonoMethodSignature *sig;
7878                 MonoMethodHeader *header;
7879                 int i;
7880                 
7881                 sig = mono_method_signature (method);
7882                 args = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * (sig->param_count + sig->hasthis));
7883                 for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
7884                         args [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7885                         memcpy (args [i], cfg->args [i], sizeof (MonoInst));
7886                 }
7887                 cfg->args = args;
7888
7889                 header = mono_method_get_header_checked (method, &error);
7890                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
7891                 locals = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * header->num_locals);
7892                 for (i = 0; i < header->num_locals; ++i) {
7893                         locals [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7894                         memcpy (locals [i], cfg->locals [i], sizeof (MonoInst));
7895                 }
7896                 mono_metadata_free_mh (header);
7897                 cfg->locals = locals;
7898         }
7899
7900         /* Free some fields used by cfg to conserve memory */
7901         mono_empty_compile (cfg);
7902
7903         //printf ("Compile:           %s\n", mono_method_full_name (method, TRUE));
7904
7905         while (index >= acfg->cfgs_size) {
7906                 MonoCompile **new_cfgs;
7907                 int new_size;
7908
7909                 new_size = acfg->cfgs_size * 2;
7910                 new_cfgs = g_new0 (MonoCompile*, new_size);
7911                 memcpy (new_cfgs, acfg->cfgs, sizeof (MonoCompile*) * acfg->cfgs_size);
7912                 g_free (acfg->cfgs);
7913                 acfg->cfgs = new_cfgs;
7914                 acfg->cfgs_size = new_size;
7915         }
7916         acfg->cfgs [index] = cfg;
7917
7918         g_hash_table_insert (acfg->method_to_cfg, cfg->orig_method, cfg);
7919
7920         /* Update global stats while holding a lock. */
7921         mono_update_jit_stats (cfg);
7922
7923         /*
7924         if (cfg->orig_method->wrapper_type)
7925                 g_ptr_array_add (acfg->extra_methods, cfg->orig_method);
7926         */
7927
7928         mono_acfg_unlock (acfg);
7929
7930         InterlockedIncrement (&acfg->stats.ccount);
7931 }
7932  
7933 static mono_thread_start_return_t WINAPI
7934 compile_thread_main (gpointer user_data)
7935 {
7936         MonoAotCompile *acfg = ((MonoAotCompile **)user_data) [0];
7937         GPtrArray *methods = ((GPtrArray **)user_data) [1];
7938         int i;
7939
7940         MonoError error;
7941         MonoInternalThread *internal = mono_thread_internal_current ();
7942         MonoString *str = mono_string_new_checked (mono_domain_get (), "AOT compiler", &error);
7943         mono_error_assert_ok (&error);
7944         mono_thread_set_name_internal (internal, str, TRUE, FALSE, &error);
7945         mono_error_assert_ok (&error);
7946
7947         for (i = 0; i < methods->len; ++i)
7948                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (methods, i));
7949
7950         return 0;
7951 }
7952  
7953 /* Used by the LLVM backend */
7954 guint32
7955 mono_aot_get_got_offset (MonoJumpInfo *ji)
7956 {
7957         return get_got_offset (llvm_acfg, TRUE, ji);
7958 }
7959
7960 /*
7961  * mono_aot_is_shared_got_offset:
7962  *
7963  *   Return whenever OFFSET refers to a GOT slot which is preinitialized
7964  * when the AOT image is loaded.
7965  */
7966 gboolean
7967 mono_aot_is_shared_got_offset (int offset)
7968 {
7969         return offset < llvm_acfg->nshared_got_entries;
7970 }
7971
7972 char*
7973 mono_aot_get_method_name (MonoCompile *cfg)
7974 {
7975         if (llvm_acfg->aot_opts.static_link)
7976                 /* Include the assembly name too to avoid duplicate symbol errors */
7977                 return g_strdup_printf ("%s_%s", llvm_acfg->assembly_name_sym, get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash));
7978         else
7979                 return get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash);
7980 }
7981
7982 /*
7983  * mono_aot_is_linkonce_method:
7984  *
7985  *   Return whenever METHOD should be emitted with linkonce linkage,
7986  * eliminating duplicate copies when compiling in static mode.
7987  */
7988 gboolean
7989 mono_aot_is_linkonce_method (MonoMethod *method)
7990 {
7991         return FALSE;
7992 #if 0
7993         WrapperInfo *info;
7994
7995         // FIXME: Add more cases
7996         if (method->wrapper_type != MONO_WRAPPER_UNKNOWN)
7997                 return FALSE;
7998         info = mono_marshal_get_wrapper_info (method);
7999         if ((info && (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG || info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)))
8000                 return TRUE;
8001         return FALSE;
8002 #endif
8003 }
8004
8005 static gboolean
8006 append_mangled_type (GString *s, MonoType *t)
8007 {
8008         if (t->byref)
8009                 g_string_append_printf (s, "b");
8010         switch (t->type) {
8011         case MONO_TYPE_VOID:
8012                 g_string_append_printf (s, "void_");
8013                 break;
8014         case MONO_TYPE_I1:
8015                 g_string_append_printf (s, "i1");
8016                 break;
8017         case MONO_TYPE_U1:
8018                 g_string_append_printf (s, "u1");
8019                 break;
8020         case MONO_TYPE_I2:
8021                 g_string_append_printf (s, "i2");
8022                 break;
8023         case MONO_TYPE_U2:
8024                 g_string_append_printf (s, "u2");
8025                 break;
8026         case MONO_TYPE_I4:
8027                 g_string_append_printf (s, "i4");
8028                 break;
8029         case MONO_TYPE_U4:
8030                 g_string_append_printf (s, "u4");
8031                 break;
8032         case MONO_TYPE_I8:
8033                 g_string_append_printf (s, "i8");
8034                 break;
8035         case MONO_TYPE_U8:
8036                 g_string_append_printf (s, "u8");
8037                 break;
8038         case MONO_TYPE_I:
8039                 g_string_append_printf (s, "ii");
8040                 break;
8041         case MONO_TYPE_U:
8042                 g_string_append_printf (s, "ui");
8043                 break;
8044         case MONO_TYPE_R4:
8045                 g_string_append_printf (s, "fl");
8046                 break;
8047         case MONO_TYPE_R8:
8048                 g_string_append_printf (s, "do");
8049                 break;
8050         default: {
8051                 char *fullname = mono_type_full_name (t);
8052                 GString *temp;
8053                 char *temps;
8054                 int i, len;
8055
8056                 /*
8057                  * Have to create a mangled name which is:
8058                  * - a valid symbol
8059                  * - unique
8060                  */
8061                 temp = g_string_new ("");
8062                 len = strlen (fullname);
8063                 for (i = 0; i < len; ++i) {
8064                         char c = fullname [i];
8065                         if (isalnum (c)) {
8066                                 g_string_append_c (temp, c);
8067                         } else if (c == '_') {
8068                                 g_string_append_c (temp, '_');
8069                                 g_string_append_c (temp, '_');
8070                         } else {
8071                                 g_string_append_c (temp, '_');
8072                                 g_string_append_printf (temp, "%x", (int)c);
8073                         }
8074                 }
8075                 temps = g_string_free (temp, FALSE);
8076                 /* Include the length to avoid different length type names aliasing each other */
8077                 g_string_append_printf (s, "cl%x_%s_", strlen (temps), temps);
8078                 g_free (temps);
8079                 return TRUE;
8080         }
8081         }
8082         return TRUE;
8083 }
8084
8085 static gboolean
8086 append_mangled_signature (GString *s, MonoMethodSignature *sig)
8087 {
8088         int i;
8089         gboolean supported;
8090
8091         supported = append_mangled_type (s, sig->ret);
8092         if (!supported)
8093                 return FALSE;
8094         if (sig->hasthis)
8095                 g_string_append_printf (s, "this_");
8096         for (i = 0; i < sig->param_count; ++i) {
8097                 supported = append_mangled_type (s, sig->params [i]);
8098                 if (!supported)
8099                         return FALSE;
8100         }
8101
8102         return TRUE;
8103 }
8104
8105 static void
8106 append_mangled_wrapper_type (GString *s, guint32 wrapper_type) 
8107 {
8108         const char *label;
8109
8110         switch (wrapper_type) {
8111         case MONO_WRAPPER_REMOTING_INVOKE:
8112                 label = "remoting_invoke";
8113                 break;
8114         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8115                 label = "remoting_invoke_check";
8116                 break;
8117         case MONO_WRAPPER_XDOMAIN_INVOKE:
8118                 label = "remoting_invoke_xdomain";
8119                 break;
8120         case MONO_WRAPPER_PROXY_ISINST:
8121                 label = "proxy_isinst";
8122                 break;
8123         case MONO_WRAPPER_LDFLD:
8124                 label = "ldfld";
8125                 break;
8126         case MONO_WRAPPER_LDFLDA:
8127                 label = "ldflda";
8128                 break;
8129         case MONO_WRAPPER_STFLD: 
8130                 label = "stfld";
8131                 break;
8132         case MONO_WRAPPER_ALLOC:
8133                 label = "alloc";
8134                 break;
8135         case MONO_WRAPPER_WRITE_BARRIER:
8136                 label = "write_barrier";
8137                 break;
8138         case MONO_WRAPPER_STELEMREF:
8139                 label = "stelemref";
8140                 break;
8141         case MONO_WRAPPER_UNKNOWN:
8142                 label = "unknown";
8143                 break;
8144         case MONO_WRAPPER_MANAGED_TO_NATIVE:
8145                 label = "man2native";
8146                 break;
8147         case MONO_WRAPPER_SYNCHRONIZED:
8148                 label = "synch";
8149                 break;
8150         case MONO_WRAPPER_MANAGED_TO_MANAGED:
8151                 label = "man2man";
8152                 break;
8153         case MONO_WRAPPER_CASTCLASS:
8154                 label = "castclass";
8155                 break;
8156         case MONO_WRAPPER_RUNTIME_INVOKE:
8157                 label = "run_invoke";
8158                 break;
8159         case MONO_WRAPPER_DELEGATE_INVOKE:
8160                 label = "del_inv";
8161                 break;
8162         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8163                 label = "del_beg_inv";
8164                 break;
8165         case MONO_WRAPPER_DELEGATE_END_INVOKE:
8166                 label = "del_end_inv";
8167                 break;
8168         case MONO_WRAPPER_NATIVE_TO_MANAGED:
8169                 label = "native2man";
8170                 break;
8171         default:
8172                 g_assert_not_reached ();
8173         }
8174
8175         g_string_append_printf (s, "%s_", label);
8176 }
8177
8178 static void
8179 append_mangled_wrapper_subtype (GString *s, WrapperSubtype subtype) 
8180 {
8181         const char *label;
8182
8183         switch (subtype) 
8184         {
8185         case WRAPPER_SUBTYPE_NONE:
8186                 return;
8187         case WRAPPER_SUBTYPE_ELEMENT_ADDR:
8188                 label = "elem_addr";
8189                 break;
8190         case WRAPPER_SUBTYPE_STRING_CTOR:
8191                 label = "str_ctor";
8192                 break;
8193         case WRAPPER_SUBTYPE_VIRTUAL_STELEMREF:
8194                 label = "virt_stelem";
8195                 break;
8196         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER:
8197                 label = "fast_mon_enter";
8198                 break;
8199         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4:
8200                 label = "fast_mon_enter_4";
8201                 break;
8202         case WRAPPER_SUBTYPE_FAST_MONITOR_EXIT:
8203                 label = "fast_monitor_exit";
8204                 break;
8205         case WRAPPER_SUBTYPE_PTR_TO_STRUCTURE:
8206                 label = "ptr2struct";
8207                 break;
8208         case WRAPPER_SUBTYPE_STRUCTURE_TO_PTR:
8209                 label = "struct2ptr";
8210                 break;
8211         case WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE:
8212                 label = "castclass_w_cache";
8213                 break;
8214         case WRAPPER_SUBTYPE_ISINST_WITH_CACHE:
8215                 label = "isinst_w_cache";
8216                 break;
8217         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL:
8218                 label = "run_inv_norm";
8219                 break;
8220         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC:
8221                 label = "run_inv_dyn";
8222                 break;
8223         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT:
8224                 label = "run_inv_dir";
8225                 break;
8226         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL:
8227                 label = "run_inv_vir";
8228                 break;
8229         case WRAPPER_SUBTYPE_ICALL_WRAPPER:
8230                 label = "icall";
8231                 break;
8232         case WRAPPER_SUBTYPE_NATIVE_FUNC_AOT:
8233                 label = "native_func_aot";
8234                 break;
8235         case WRAPPER_SUBTYPE_PINVOKE:
8236                 label = "pinvoke";
8237                 break;
8238         case WRAPPER_SUBTYPE_SYNCHRONIZED_INNER:
8239                 label = "synch_inner";
8240                 break;
8241         case WRAPPER_SUBTYPE_GSHAREDVT_IN:
8242                 label = "gshared_in";
8243                 break;
8244         case WRAPPER_SUBTYPE_GSHAREDVT_OUT:
8245                 label = "gshared_out";
8246                 break;
8247         case WRAPPER_SUBTYPE_ARRAY_ACCESSOR:
8248                 label = "array_acc";
8249                 break;
8250         case WRAPPER_SUBTYPE_GENERIC_ARRAY_HELPER:
8251                 label = "generic_arry_help";
8252                 break;
8253         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_VIRTUAL:
8254                 label = "del_inv_virt";
8255                 break;
8256         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_BOUND:
8257                 label = "del_inv_bound";
8258                 break;
8259         case WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG:
8260                 label = "gsharedvt_in_sig";
8261                 break;
8262         case WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG:
8263                 label = "gsharedvt_out_sig";
8264                 break;
8265         default:
8266                 g_assert_not_reached ();
8267         }
8268
8269         g_string_append_printf (s, "%s_", label);
8270 }
8271
8272 static char *
8273 sanitize_mangled_string (const char *input)
8274 {
8275         GString *s = g_string_new ("");
8276
8277         for (int i=0; input [i] != '\0'; i++) {
8278                 char c = input [i];
8279                 switch (c) {
8280                 case '.':
8281                         g_string_append (s, "_dot_");
8282                         break;
8283                 case ' ':
8284                         g_string_append (s, "_");
8285                         break;
8286                 case '`':
8287                         g_string_append (s, "_bt_");
8288                         break;
8289                 case '<':
8290                         g_string_append (s, "_le_");
8291                         break;
8292                 case '>':
8293                         g_string_append (s, "_gt_");
8294                         break;
8295                 case '/':
8296                         g_string_append (s, "_sl_");
8297                         break;
8298                 case '[':
8299                         g_string_append (s, "_lbrack_");
8300                         break;
8301                 case ']':
8302                         g_string_append (s, "_rbrack_");
8303                         break;
8304                 case '(':
8305                         g_string_append (s, "_lparen_");
8306                         break;
8307                 case '-':
8308                         g_string_append (s, "_dash_");
8309                         break;
8310                 case ')':
8311                         g_string_append (s, "_rparen_");
8312                         break;
8313                 case ',':
8314                         g_string_append (s, "_comma_");
8315                         break;
8316                 default:
8317                         g_string_append_c (s, c);
8318                 }
8319         }
8320
8321         return g_string_free (s, FALSE);
8322 }
8323
8324 static gboolean
8325 append_mangled_klass (GString *s, MonoClass *klass)
8326 {
8327         char *klass_desc = mono_class_full_name (klass);
8328         g_string_append_printf (s, "_%s_%s_", klass->name_space, klass_desc);
8329         g_free (klass_desc);
8330
8331         // Success
8332         return TRUE;
8333 }
8334
8335 static gboolean
8336 append_mangled_method (GString *s, MonoMethod *method);
8337
8338 static gboolean
8339 append_mangled_wrapper (GString *s, MonoMethod *method) 
8340 {
8341         gboolean success = TRUE;
8342         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8343         g_string_append_printf (s, "wrapper_");
8344
8345         append_mangled_wrapper_type (s, method->wrapper_type);
8346
8347         switch (method->wrapper_type) {
8348         case MONO_WRAPPER_REMOTING_INVOKE:
8349         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8350         case MONO_WRAPPER_XDOMAIN_INVOKE: {
8351                 MonoMethod *m = mono_marshal_method_from_wrapper (method);
8352                 g_assert (m);
8353                 success = success && append_mangled_method (s, m);
8354                 break;
8355         }
8356         case MONO_WRAPPER_PROXY_ISINST:
8357         case MONO_WRAPPER_LDFLD:
8358         case MONO_WRAPPER_LDFLDA:
8359         case MONO_WRAPPER_STFLD: {
8360                 g_assert (info);
8361                 success = success && append_mangled_klass (s, info->d.proxy.klass);
8362                 break;
8363         }
8364         case MONO_WRAPPER_ALLOC: {
8365                 /* The GC name is saved once in MonoAotFileInfo */
8366                 g_assert (info->d.alloc.alloc_type != -1);
8367                 g_string_append_printf (s, "%d_", info->d.alloc.alloc_type);
8368                 // SlowAlloc, etc
8369                 g_string_append_printf (s, "%s_", method->name);
8370                 break;
8371         }
8372         case MONO_WRAPPER_WRITE_BARRIER: {
8373                 break;
8374         }
8375         case MONO_WRAPPER_STELEMREF: {
8376                 append_mangled_wrapper_subtype (s, info->subtype);
8377                 if (info->subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF)
8378                         g_string_append_printf (s, "%d", info->d.virtual_stelemref.kind);
8379                 break;
8380         }
8381         case MONO_WRAPPER_UNKNOWN: {
8382                 append_mangled_wrapper_subtype (s, info->subtype);
8383                 if (info->subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE ||
8384                         info->subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR)
8385                         success = success && append_mangled_klass (s, method->klass);
8386                 else if (info->subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER)
8387                         success = success && append_mangled_method (s, info->d.synchronized_inner.method);
8388                 else if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR)
8389                         success = success && append_mangled_method (s, info->d.array_accessor.method);
8390                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG)
8391                         append_mangled_signature (s, info->d.gsharedvt.sig);
8392                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)
8393                         append_mangled_signature (s, info->d.gsharedvt.sig);
8394                 break;
8395         }
8396         case MONO_WRAPPER_MANAGED_TO_NATIVE: {
8397                 append_mangled_wrapper_subtype (s, info->subtype);
8398                 if (info->subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
8399                         g_string_append_printf (s, "%s", method->name);
8400                 } else if (info->subtype == WRAPPER_SUBTYPE_NATIVE_FUNC_AOT) {
8401                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8402                 } else {
8403                         g_assert (info->subtype == WRAPPER_SUBTYPE_NONE || info->subtype == WRAPPER_SUBTYPE_PINVOKE);
8404                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8405                 }
8406                 break;
8407         }
8408         case MONO_WRAPPER_SYNCHRONIZED: {
8409                 MonoMethod *m;
8410
8411                 m = mono_marshal_method_from_wrapper (method);
8412                 g_assert (m);
8413                 g_assert (m != method);
8414                 success = success && append_mangled_method (s, m);
8415                 break;
8416         }
8417         case MONO_WRAPPER_MANAGED_TO_MANAGED: {
8418                 append_mangled_wrapper_subtype (s, info->subtype);
8419
8420                 if (info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
8421                         g_string_append_printf (s, "%d_", info->d.element_addr.rank);
8422                         g_string_append_printf (s, "%d_", info->d.element_addr.elem_size);
8423                 } else if (info->subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
8424                         success = success && append_mangled_method (s, info->d.string_ctor.method);
8425                 } else {
8426                         g_assert_not_reached ();
8427                 }
8428                 break;
8429         }
8430         case MONO_WRAPPER_CASTCLASS: {
8431                 append_mangled_wrapper_subtype (s, info->subtype);
8432                 break;
8433         }
8434         case MONO_WRAPPER_RUNTIME_INVOKE: {
8435                 append_mangled_wrapper_subtype (s, info->subtype);
8436                 if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT || info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL)
8437                         success = success && append_mangled_method (s, info->d.runtime_invoke.method);
8438                 else if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL)
8439                         success = success && append_mangled_signature (s, info->d.runtime_invoke.sig);
8440                 break;
8441         }
8442         case MONO_WRAPPER_DELEGATE_INVOKE:
8443         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8444         case MONO_WRAPPER_DELEGATE_END_INVOKE: {
8445                 if (method->is_inflated) {
8446                         /* These wrappers are identified by their class */
8447                         g_string_append_printf (s, "i_");
8448                         success = success && append_mangled_klass (s, method->klass);
8449                 } else {
8450                         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8451
8452                         g_string_append_printf (s, "u_");
8453                         if (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
8454                                 append_mangled_wrapper_subtype (s, info->subtype);
8455                         g_string_append_printf (s, "u_sigstart");
8456                 }
8457                 break;
8458         }
8459         case MONO_WRAPPER_NATIVE_TO_MANAGED: {
8460                 g_assert (info);
8461                 success = success && append_mangled_method (s, info->d.native_to_managed.method);
8462                 success = success && append_mangled_klass (s, method->klass);
8463                 break;
8464         }
8465         default:
8466                 g_assert_not_reached ();
8467         }
8468         return success && append_mangled_signature (s, mono_method_signature (method));
8469 }
8470
8471 static void
8472 append_mangled_context (GString *str, MonoGenericContext *context)
8473 {
8474         GString *res = g_string_new ("");
8475
8476         g_string_append_printf (res, "gens_");
8477         g_string_append (res, "00");
8478
8479         gboolean good = context->class_inst && context->class_inst->type_argc > 0;
8480         good = good || (context->method_inst && context->method_inst->type_argc > 0);
8481         g_assert (good);
8482
8483         if (context->class_inst)
8484                 mono_ginst_get_desc (res, context->class_inst);
8485         if (context->method_inst) {
8486                 if (context->class_inst)
8487                         g_string_append (res, "11");
8488                 mono_ginst_get_desc (res, context->method_inst);
8489         }
8490         g_string_append_printf (str, "gens_%s", res->str);
8491 }       
8492
8493 static gboolean
8494 append_mangled_method (GString *s, MonoMethod *method)
8495 {
8496         if (method->wrapper_type)
8497                 return append_mangled_wrapper (s, method);
8498
8499         g_string_append_printf (s, "%s_", method->klass->image->assembly->aname.name);
8500
8501         if (method->is_inflated) {
8502                 g_string_append_printf (s, "inflated_");
8503                 MonoMethodInflated *imethod = (MonoMethodInflated*) method;
8504                 g_assert (imethod->context.class_inst != NULL || imethod->context.method_inst != NULL);
8505
8506                 append_mangled_context (s, &imethod->context);
8507                 g_string_append_printf (s, "_declared_by_");
8508                 append_mangled_method (s, imethod->declaring);
8509         } else if (method->is_generic) {
8510                 g_string_append_printf (s, "generic_");
8511                 append_mangled_klass (s, method->klass);
8512                 g_string_append_printf (s, "_%s_", method->name);
8513
8514                 MonoGenericContainer *container = mono_method_get_generic_container (method);
8515                 g_string_append_printf (s, "_%s");
8516                 append_mangled_context (s, &container->context);
8517
8518                 return append_mangled_signature (s, mono_method_signature (method));
8519         } else {
8520                 g_string_append_printf (s, "_");
8521                 append_mangled_klass (s, method->klass);
8522                 g_string_append_printf (s, "_%s_", method->name);
8523                 if (!append_mangled_signature (s, mono_method_signature (method))) {
8524                         g_string_free (s, TRUE);
8525                         return FALSE;
8526                 }
8527         }
8528
8529         return TRUE;
8530 }
8531
8532 /*
8533  * mono_aot_get_mangled_method_name:
8534  *
8535  *   Return a unique mangled name for METHOD, or NULL.
8536  */
8537 char*
8538 mono_aot_get_mangled_method_name (MonoMethod *method)
8539 {
8540         GString *s = g_string_new ("aot_");
8541         if (!append_mangled_method (s, method)) {
8542                 g_string_free (s, TRUE);
8543                 return NULL;
8544         } else {
8545                 char *out = g_string_free (s, FALSE);
8546                 // Scrub method and class names
8547                 char *cleaned = sanitize_mangled_string (out);
8548                 g_free (out);
8549                 return cleaned;
8550         }
8551 }
8552
8553 gboolean
8554 mono_aot_is_direct_callable (MonoJumpInfo *patch_info)
8555 {
8556         return is_direct_callable (llvm_acfg, NULL, patch_info);
8557 }
8558
8559 void
8560 mono_aot_mark_unused_llvm_plt_entry (MonoJumpInfo *patch_info)
8561 {
8562         MonoPltEntry *plt_entry;
8563
8564         plt_entry = get_plt_entry (llvm_acfg, patch_info);
8565         plt_entry->llvm_used = FALSE;
8566 }
8567
8568 char*
8569 mono_aot_get_direct_call_symbol (MonoJumpInfoType type, gconstpointer data)
8570 {
8571         const char *sym = NULL;
8572
8573         if (llvm_acfg->aot_opts.direct_icalls) {
8574                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8575                         /* Call to a C function implementing a jit icall */
8576                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8577                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8578                         MonoMethod *method = (MonoMethod *)data;
8579                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8580                                 sym = mono_lookup_icall_symbol (method);
8581                         else if (llvm_acfg->aot_opts.direct_pinvoke)
8582                                 sym = get_pinvoke_import (llvm_acfg, method);
8583                 }
8584                 if (sym)
8585                         return g_strdup (sym);
8586         }
8587         return NULL;
8588 }
8589
8590 char*
8591 mono_aot_get_plt_symbol (MonoJumpInfoType type, gconstpointer data)
8592 {
8593         MonoJumpInfo *ji = (MonoJumpInfo *)mono_mempool_alloc (llvm_acfg->mempool, sizeof (MonoJumpInfo));
8594         MonoPltEntry *plt_entry;
8595         const char *sym = NULL;
8596
8597         ji->type = type;
8598         ji->data.target = data;
8599
8600         if (!can_encode_patch (llvm_acfg, ji))
8601                 return NULL;
8602
8603         if (llvm_acfg->aot_opts.direct_icalls) {
8604                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8605                         /* Call to a C function implementing a jit icall */
8606                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8607                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8608                         MonoMethod *method = (MonoMethod *)data;
8609                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8610                                 sym = mono_lookup_icall_symbol (method);
8611                 }
8612                 if (sym)
8613                         return g_strdup (sym);
8614         }
8615
8616         plt_entry = get_plt_entry (llvm_acfg, ji);
8617         plt_entry->llvm_used = TRUE;
8618
8619 #if defined(TARGET_MACH)
8620         return g_strdup_printf (plt_entry->llvm_symbol + strlen (llvm_acfg->llvm_label_prefix));
8621 #else
8622         return g_strdup_printf (plt_entry->llvm_symbol);
8623 #endif
8624 }
8625
8626 int
8627 mono_aot_get_method_index (MonoMethod *method)
8628 {
8629         g_assert (llvm_acfg);
8630         return get_method_index (llvm_acfg, method);
8631 }
8632
8633 MonoJumpInfo*
8634 mono_aot_patch_info_dup (MonoJumpInfo* ji)
8635 {
8636         MonoJumpInfo *res;
8637
8638         mono_acfg_lock (llvm_acfg);
8639         res = mono_patch_info_dup_mp (llvm_acfg->mempool, ji);
8640         mono_acfg_unlock (llvm_acfg);
8641
8642         return res;
8643 }
8644
8645 static int
8646 execute_system (const char * command)
8647 {
8648         int status = 0;
8649
8650 #if defined(HOST_WIN32)
8651         // We need an extra set of quotes around the whole command to properly handle commands 
8652         // with spaces since internally the command is called through "cmd /c.
8653         char * quoted_command = g_strdup_printf ("\"%s\"", command);
8654
8655         int size =  MultiByteToWideChar (CP_UTF8, 0 , quoted_command , -1, NULL , 0);
8656         wchar_t* wstr = g_malloc (sizeof (wchar_t) * size);
8657         MultiByteToWideChar (CP_UTF8, 0, quoted_command, -1, wstr , size);
8658         status = _wsystem (wstr);
8659         g_free (wstr);
8660
8661         g_free (quoted_command);
8662 #elif defined (HAVE_SYSTEM)
8663         status = system (command);
8664 #else
8665         g_assert_not_reached ();
8666 #endif
8667
8668         return status;
8669 }
8670
8671 #ifdef ENABLE_LLVM
8672
8673 /*
8674  * emit_llvm_file:
8675  *
8676  *   Emit the LLVM code into an LLVM bytecode file, and compile it using the LLVM
8677  * tools.
8678  */
8679 static gboolean
8680 emit_llvm_file (MonoAotCompile *acfg)
8681 {
8682         char *command, *opts, *tempbc, *optbc, *output_fname;
8683
8684         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only) {
8685                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8686                 optbc = g_strdup (acfg->aot_opts.llvm_outfile);
8687         } else {
8688                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8689                 optbc = g_strdup_printf ("%s.opt.bc", acfg->tmpbasename);
8690         }
8691
8692         mono_llvm_emit_aot_module (tempbc, g_path_get_basename (acfg->image->name));
8693
8694         /*
8695          * FIXME: Experiment with adding optimizations, the -std-compile-opts set takes
8696          * a lot of time, and doesn't seem to save much space.
8697          * The following optimizations cannot be enabled:
8698          * - 'tailcallelim'
8699          * - 'jump-threading' changes our blockaddress references to int constants.
8700          * - 'basiccg' fails because it contains:
8701          * if (CS && !isa<IntrinsicInst>(II)) {
8702          * and isa<IntrinsicInst> is false for invokes to intrinsics (iltests.exe).
8703          * - 'prune-eh' and 'functionattrs' depend on 'basiccg'.
8704          * The opt list below was produced by taking the output of:
8705          * llvm-as < /dev/null | opt -O2 -disable-output -debug-pass=Arguments
8706          * then removing tailcallelim + the global opts.
8707          * strip-dead-prototypes deletes unused intrinsics definitions.
8708          */
8709         /* The dse pass is disabled because of #13734 and #17616 */
8710         /*
8711          * The dse bug is in DeadStoreElimination.cpp:isOverwrite ():
8712          * // If we have no DataLayout information around, then the size of the store
8713          *  // is inferrable from the pointee type.  If they are the same type, then
8714          * // we know that the store is safe.
8715          * if (AA.getDataLayout() == 0 &&
8716          * Later.Ptr->getType() == Earlier.Ptr->getType()) {
8717          * return OverwriteComplete;
8718          * Here, if 'Earlier' refers to a memset, and Later has no size info, it mistakenly thinks the memset is redundant.
8719          */
8720         if (acfg->aot_opts.llvm_only)
8721                 // FIXME: This doesn't work yet
8722                 opts = g_strdup ("");
8723         else
8724 #if LLVM_API_VERSION > 100
8725                 opts = g_strdup ("-O2 -disable-tail-calls");
8726 #else
8727                 opts = g_strdup ("-targetlibinfo -no-aa -basicaa -notti -instcombine -simplifycfg -inline-cost -inline -sroa -domtree -early-cse -lazy-value-info -correlated-propagation -simplifycfg -instcombine -simplifycfg -reassociate -domtree -loops -loop-simplify -lcssa -loop-rotate -licm -lcssa -loop-unswitch -instcombine -scalar-evolution -loop-simplify -lcssa -indvars -loop-idiom -loop-deletion -loop-unroll -memdep -gvn -memdep -memcpyopt -sccp -instcombine -lazy-value-info -correlated-propagation -domtree -memdep -adce -simplifycfg -instcombine -strip-dead-prototypes -domtree -verify");
8728 #endif
8729         command = g_strdup_printf ("\"%sopt\" -f %s -o \"%s\" \"%s\"", acfg->aot_opts.llvm_path, opts, optbc, tempbc);
8730         aot_printf (acfg, "Executing opt: %s\n", command);
8731         if (execute_system (command) != 0)
8732                 return FALSE;
8733         g_free (opts);
8734
8735         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only)
8736                 /* Nothing else to do */
8737                 return TRUE;
8738
8739         if (acfg->aot_opts.llvm_only) {
8740                 /* Use the stock clang from xcode */
8741                 // FIXME: arch
8742                 command = g_strdup_printf ("clang++ -fexceptions -march=x86-64 -fpic -msse -msse2 -msse3 -msse4 -O2 -fno-optimize-sibling-calls -Wno-override-module -c -o \"%s\" \"%s.opt.bc\"", acfg->llvm_ofile, acfg->tmpbasename);
8743
8744                 aot_printf (acfg, "Executing clang: %s\n", command);
8745                 if (execute_system (command) != 0)
8746                         return FALSE;
8747                 return TRUE;
8748         }
8749
8750         if (!acfg->llc_args)
8751                 acfg->llc_args = g_string_new ("");
8752
8753         /* Verbose asm slows down llc greatly */
8754         g_string_append (acfg->llc_args, " -asm-verbose=false");
8755
8756         if (acfg->aot_opts.mtriple)
8757                 g_string_append_printf (acfg->llc_args, " -mtriple=%s", acfg->aot_opts.mtriple);
8758
8759         g_string_append (acfg->llc_args, " -disable-gnu-eh-frame -enable-mono-eh-frame");
8760
8761         g_string_append_printf (acfg->llc_args, " -mono-eh-frame-symbol=%s%s", acfg->user_symbol_prefix, acfg->llvm_eh_frame_symbol);
8762
8763 #if LLVM_API_VERSION > 100
8764         g_string_append_printf (acfg->llc_args, " -disable-tail-calls");
8765 #endif
8766
8767 #if ( defined(TARGET_MACH) && defined(TARGET_ARM) ) || defined(TARGET_ORBIS)
8768         /* ios requires PIC code now */
8769         g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8770 #else
8771         if (llvm_acfg->aot_opts.static_link)
8772                 g_string_append_printf (acfg->llc_args, " -relocation-model=static");
8773         else
8774                 g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8775 #endif
8776
8777         if (acfg->llvm_owriter) {
8778                 /* Emit an object file directly */
8779                 output_fname = g_strdup_printf ("%s", acfg->llvm_ofile);
8780                 g_string_append_printf (acfg->llc_args, " -filetype=obj");
8781         } else {
8782                 output_fname = g_strdup_printf ("%s", acfg->llvm_sfile);
8783         }
8784         command = g_strdup_printf ("\"%sllc\" %s -o \"%s\" \"%s.opt.bc\"", acfg->aot_opts.llvm_path, acfg->llc_args->str, output_fname, acfg->tmpbasename);
8785         g_free (output_fname);
8786
8787         aot_printf (acfg, "Executing llc: %s\n", command);
8788
8789         if (execute_system (command) != 0)
8790                 return FALSE;
8791         return TRUE;
8792 }
8793 #endif
8794
8795 static void
8796 emit_code (MonoAotCompile *acfg)
8797 {
8798         int oindex, i, prev_index;
8799         gboolean saved_unbox_info = FALSE;
8800         char symbol [MAX_SYMBOL_SIZE];
8801
8802         if (acfg->aot_opts.llvm_only)
8803                 return;
8804
8805 #if defined(TARGET_POWERPC64)
8806         sprintf (symbol, ".Lgot_addr");
8807         emit_section_change (acfg, ".text", 0);
8808         emit_alignment (acfg, 8);
8809         emit_label (acfg, symbol);
8810         emit_pointer (acfg, acfg->got_symbol);
8811 #endif
8812
8813         /* 
8814          * This global symbol is used to compute the address of each method using the
8815          * code_offsets array. It is also used to compute the memory ranges occupied by
8816          * AOT code, so it must be equal to the address of the first emitted method.
8817          */
8818         emit_section_change (acfg, ".text", 0);
8819         emit_alignment_code (acfg, 8);
8820         emit_info_symbol (acfg, "jit_code_start");
8821
8822         /* 
8823          * Emit some padding so the local symbol for the first method doesn't have the
8824          * same address as 'methods'.
8825          */
8826         emit_padding (acfg, 16);
8827
8828         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
8829                 MonoCompile *cfg;
8830                 MonoMethod *method;
8831
8832                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
8833
8834                 cfg = acfg->cfgs [i];
8835
8836                 if (!cfg)
8837                         continue;
8838
8839                 method = cfg->orig_method;
8840
8841                 /* Emit unbox trampoline */
8842                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8843                         sprintf (symbol, "ut_%d", get_method_index (acfg, method));
8844
8845                         emit_section_change (acfg, ".text", 0);
8846
8847                         if (acfg->thumb_mixed && cfg->compile_llvm) {
8848                                 emit_set_thumb_mode (acfg);
8849                                 fprintf (acfg->fp, "\n.thumb_func\n");
8850                         }
8851
8852                         emit_label (acfg, symbol);
8853
8854                         arch_emit_unbox_trampoline (acfg, cfg, cfg->orig_method, cfg->asm_symbol);
8855
8856                         if (acfg->thumb_mixed && cfg->compile_llvm)
8857                                 emit_set_arm_mode (acfg);
8858
8859                         if (!saved_unbox_info) {
8860                                 char user_symbol [128];
8861                                 GSList *unwind_ops;
8862                                 sprintf (user_symbol, "%sunbox_trampoline_p", acfg->user_symbol_prefix);
8863
8864                                 emit_label (acfg, "ut_end");
8865
8866                                 unwind_ops = mono_unwind_get_cie_program ();
8867                                 save_unwind_info (acfg, user_symbol, unwind_ops);
8868                                 mono_free_unwind_info (unwind_ops);
8869
8870                                 /* Save the unbox trampoline size */
8871                                 emit_symbol_diff (acfg, "ut_end", symbol, 0);
8872
8873                                 saved_unbox_info = TRUE;
8874                         }
8875                 }
8876
8877                 if (cfg->compile_llvm)
8878                         acfg->stats.llvm_count ++;
8879                 else
8880                         emit_method_code (acfg, cfg);
8881         }
8882
8883         emit_section_change (acfg, ".text", 0);
8884         emit_alignment_code (acfg, 8);
8885         emit_info_symbol (acfg, "jit_code_end");
8886
8887         /* To distinguish it from the next symbol */
8888         emit_padding (acfg, 4);
8889
8890         /* 
8891          * Add .no_dead_strip directives for all LLVM methods to prevent the OSX linker
8892          * from optimizing them away, since it doesn't see that code_offsets references them.
8893          * JITted methods don't need this since they are referenced using assembler local
8894          * symbols.
8895          * FIXME: This is why write-symbols doesn't work on OSX ?
8896          */
8897         if (acfg->llvm && acfg->need_no_dead_strip) {
8898                 fprintf (acfg->fp, "\n");
8899                 for (i = 0; i < acfg->nmethods; ++i) {
8900                         if (acfg->cfgs [i] && acfg->cfgs [i]->compile_llvm)
8901                                 fprintf (acfg->fp, ".no_dead_strip %s\n", acfg->cfgs [i]->asm_symbol);
8902                 }
8903         }
8904
8905         /*
8906          * To work around linker issues, we emit a table of branches, and disassemble them at runtime.
8907          * This is PIE code, and the linker can update it if needed.
8908          */
8909         
8910         sprintf (symbol, "method_addresses");
8911         emit_section_change (acfg, ".text", 1);
8912         emit_alignment_code (acfg, 8);
8913         emit_info_symbol (acfg, symbol);
8914         if (acfg->aot_opts.write_symbols)
8915                 emit_local_symbol (acfg, symbol, "method_addresses_end", TRUE);
8916         emit_unset_mode (acfg);
8917         if (acfg->need_no_dead_strip)
8918                 fprintf (acfg->fp, "    .no_dead_strip %s\n", symbol);
8919
8920         for (i = 0; i < acfg->nmethods; ++i) {
8921 #ifdef MONO_ARCH_AOT_SUPPORTED
8922                 int call_size;
8923
8924                 if (acfg->cfgs [i]) {
8925                         arch_emit_direct_call (acfg, acfg->cfgs [i]->asm_symbol, FALSE, acfg->thumb_mixed && acfg->cfgs [i]->compile_llvm, NULL, &call_size);
8926                 } else {
8927                         arch_emit_direct_call (acfg, symbol, FALSE, FALSE, NULL, &call_size);
8928                 }
8929 #endif
8930         }
8931
8932         sprintf (symbol, "method_addresses_end");
8933         emit_label (acfg, symbol);
8934         emit_line (acfg);
8935
8936         /* Emit a sorted table mapping methods to the index of their unbox trampolines */
8937         sprintf (symbol, "unbox_trampolines");
8938         emit_section_change (acfg, RODATA_SECT, 0);
8939         emit_alignment (acfg, 8);
8940         emit_info_symbol (acfg, symbol);
8941
8942         prev_index = -1;
8943         for (i = 0; i < acfg->nmethods; ++i) {
8944                 MonoCompile *cfg;
8945                 MonoMethod *method;
8946                 int index;
8947
8948                 cfg = acfg->cfgs [i];
8949                 if (!cfg)
8950                         continue;
8951
8952                 method = cfg->orig_method;
8953
8954                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8955                         index = get_method_index (acfg, method);
8956
8957                         emit_int32 (acfg, index);
8958                         /* Make sure the table is sorted by index */
8959                         g_assert (index > prev_index);
8960                         prev_index = index;
8961                 }
8962         }
8963         sprintf (symbol, "unbox_trampolines_end");
8964         emit_info_symbol (acfg, symbol);
8965         emit_int32 (acfg, 0);
8966
8967         /* Emit a separate table with the trampoline addresses/offsets */
8968         sprintf (symbol, "unbox_trampoline_addresses");
8969         emit_section_change (acfg, ".text", 0);
8970         emit_alignment_code (acfg, 8);
8971         emit_info_symbol (acfg, symbol);
8972
8973         for (i = 0; i < acfg->nmethods; ++i) {
8974                 MonoCompile *cfg;
8975                 MonoMethod *method;
8976                 int index;
8977
8978                 cfg = acfg->cfgs [i];
8979                 if (!cfg)
8980                         continue;
8981
8982                 method = cfg->orig_method;
8983
8984                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8985 #ifdef MONO_ARCH_AOT_SUPPORTED
8986                         int call_size;
8987
8988                         index = get_method_index (acfg, method);
8989                         sprintf (symbol, "ut_%d", index);
8990
8991                         arch_emit_direct_call (acfg, symbol, FALSE, acfg->thumb_mixed && cfg->compile_llvm, NULL, &call_size);
8992 #endif
8993                 }
8994         }
8995         emit_int32 (acfg, 0);
8996 }
8997
8998 static void
8999 emit_info (MonoAotCompile *acfg)
9000 {
9001         int oindex, i;
9002         gint32 *offsets;
9003
9004         offsets = g_new0 (gint32, acfg->nmethods);
9005
9006         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
9007                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
9008
9009                 if (acfg->cfgs [i]) {
9010                         emit_method_info (acfg, acfg->cfgs [i]);
9011                         offsets [i] = acfg->cfgs [i]->method_info_offset;
9012                 } else {
9013                         offsets [i] = 0;
9014                 }
9015         }
9016
9017         acfg->stats.offsets_size += emit_offset_table (acfg, "method_info_offsets", MONO_AOT_TABLE_METHOD_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9018
9019         g_free (offsets);
9020 }
9021
9022 #endif /* #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT) */
9023
9024 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
9025 #define mix(a,b,c) { \
9026         a -= c;  a ^= rot(c, 4);  c += b; \
9027         b -= a;  b ^= rot(a, 6);  a += c; \
9028         c -= b;  c ^= rot(b, 8);  b += a; \
9029         a -= c;  a ^= rot(c,16);  c += b; \
9030         b -= a;  b ^= rot(a,19);  a += c; \
9031         c -= b;  c ^= rot(b, 4);  b += a; \
9032 }
9033 #define final(a,b,c) { \
9034         c ^= b; c -= rot(b,14); \
9035         a ^= c; a -= rot(c,11); \
9036         b ^= a; b -= rot(a,25); \
9037         c ^= b; c -= rot(b,16); \
9038         a ^= c; a -= rot(c,4);  \
9039         b ^= a; b -= rot(a,14); \
9040         c ^= b; c -= rot(b,24); \
9041 }
9042
9043 static guint
9044 mono_aot_type_hash (MonoType *t1)
9045 {
9046         guint hash = t1->type;
9047
9048         hash |= t1->byref << 6; /* do not collide with t1->type values */
9049         switch (t1->type) {
9050         case MONO_TYPE_VALUETYPE:
9051         case MONO_TYPE_CLASS:
9052         case MONO_TYPE_SZARRAY:
9053                 /* check if the distribution is good enough */
9054                 return ((hash << 5) - hash) ^ mono_metadata_str_hash (t1->data.klass->name);
9055         case MONO_TYPE_PTR:
9056                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
9057         case MONO_TYPE_ARRAY:
9058                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
9059         case MONO_TYPE_GENERICINST:
9060                 return ((hash << 5) - hash) ^ 0;
9061         default:
9062                 return hash;
9063         }
9064 }
9065
9066 /*
9067  * mono_aot_method_hash:
9068  *
9069  *   Return a hash code for methods which only depends on metadata.
9070  */
9071 guint32
9072 mono_aot_method_hash (MonoMethod *method)
9073 {
9074         MonoMethodSignature *sig;
9075         MonoClass *klass;
9076         int i, hindex;
9077         int hashes_count;
9078         guint32 *hashes_start, *hashes;
9079         guint32 a, b, c;
9080         MonoGenericInst *class_ginst = NULL;
9081         MonoGenericInst *ginst = NULL;
9082
9083         /* Similar to the hash in mono_method_get_imt_slot () */
9084
9085         sig = mono_method_signature (method);
9086
9087         if (mono_class_is_ginst (method->klass))
9088                 class_ginst = mono_class_get_generic_class (method->klass)->context.class_inst;
9089         if (method->is_inflated)
9090                 ginst = ((MonoMethodInflated*)method)->context.method_inst;
9091
9092         hashes_count = sig->param_count + 5 + (class_ginst ? class_ginst->type_argc : 0) + (ginst ? ginst->type_argc : 0);
9093         hashes_start = (guint32 *)g_malloc0 (hashes_count * sizeof (guint32));
9094         hashes = hashes_start;
9095
9096         /* Some wrappers are assigned to random classes */
9097         if (!method->wrapper_type || method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
9098                 klass = method->klass;
9099         else
9100                 klass = mono_defaults.object_class;
9101
9102         if (!method->wrapper_type) {
9103                 char *full_name;
9104
9105                 if (mono_class_is_ginst (klass))
9106                         full_name = mono_type_full_name (&mono_class_get_generic_class (klass)->container_class->byval_arg);
9107                 else
9108                         full_name = mono_type_full_name (&klass->byval_arg);
9109
9110                 hashes [0] = mono_metadata_str_hash (full_name);
9111                 hashes [1] = 0;
9112                 g_free (full_name);
9113         } else {
9114                 hashes [0] = mono_metadata_str_hash (klass->name);
9115                 hashes [1] = mono_metadata_str_hash (klass->name_space);
9116         }
9117         if (method->wrapper_type == MONO_WRAPPER_STFLD || method->wrapper_type == MONO_WRAPPER_LDFLD || method->wrapper_type == MONO_WRAPPER_LDFLDA)
9118                 /* The method name includes a stringified pointer */
9119                 hashes [2] = 0;
9120         else
9121                 hashes [2] = mono_metadata_str_hash (method->name);
9122         hashes [3] = method->wrapper_type;
9123         hashes [4] = mono_aot_type_hash (sig->ret);
9124         hindex = 5;
9125         for (i = 0; i < sig->param_count; i++) {
9126                 hashes [hindex ++] = mono_aot_type_hash (sig->params [i]);
9127         }
9128         if (class_ginst) {
9129                 for (i = 0; i < class_ginst->type_argc; ++i)
9130                         hashes [hindex ++] = mono_aot_type_hash (class_ginst->type_argv [i]);
9131         }
9132         if (ginst) {
9133                 for (i = 0; i < ginst->type_argc; ++i)
9134                         hashes [hindex ++] = mono_aot_type_hash (ginst->type_argv [i]);
9135         }               
9136         g_assert (hindex == hashes_count);
9137
9138         /* Setup internal state */
9139         a = b = c = 0xdeadbeef + (((guint32)hashes_count)<<2);
9140
9141         /* Handle most of the hashes */
9142         while (hashes_count > 3) {
9143                 a += hashes [0];
9144                 b += hashes [1];
9145                 c += hashes [2];
9146                 mix (a,b,c);
9147                 hashes_count -= 3;
9148                 hashes += 3;
9149         }
9150
9151         /* Handle the last 3 hashes (all the case statements fall through) */
9152         switch (hashes_count) { 
9153         case 3 : c += hashes [2];
9154         case 2 : b += hashes [1];
9155         case 1 : a += hashes [0];
9156                 final (a,b,c);
9157         case 0: /* nothing left to add */
9158                 break;
9159         }
9160         
9161         g_free (hashes_start);
9162         
9163         return c;
9164 }
9165 #undef rot
9166 #undef mix
9167 #undef final
9168
9169 /*
9170  * mono_aot_get_array_helper_from_wrapper;
9171  *
9172  * Get the helper method in Array called by an array wrapper method.
9173  */
9174 MonoMethod*
9175 mono_aot_get_array_helper_from_wrapper (MonoMethod *method)
9176 {
9177         MonoMethod *m;
9178         const char *prefix;
9179         MonoGenericContext ctx;
9180         MonoType *args [16];
9181         char *mname, *iname, *s, *s2, *helper_name = NULL;
9182
9183         prefix = "System.Collections.Generic";
9184         s = g_strdup_printf ("%s", method->name + strlen (prefix) + 1);
9185         s2 = strstr (s, "`1.");
9186         g_assert (s2);
9187         s2 [0] = '\0';
9188         iname = s;
9189         mname = s2 + 3;
9190
9191         //printf ("X: %s %s\n", iname, mname);
9192
9193         if (!strcmp (iname, "IList"))
9194                 helper_name = g_strdup_printf ("InternalArray__%s", mname);
9195         else
9196                 helper_name = g_strdup_printf ("InternalArray__%s_%s", iname, mname);
9197         m = mono_class_get_method_from_name (mono_defaults.array_class, helper_name, mono_method_signature (method)->param_count);
9198         g_assert (m);
9199         g_free (helper_name);
9200         g_free (s);
9201
9202         if (m->is_generic) {
9203                 MonoError error;
9204                 memset (&ctx, 0, sizeof (ctx));
9205                 args [0] = &method->klass->element_class->byval_arg;
9206                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
9207                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
9208                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
9209         }
9210
9211         return m;
9212 }
9213
9214 #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT)
9215
9216 typedef struct HashEntry {
9217     guint32 key, value, index;
9218         struct HashEntry *next;
9219 } HashEntry;
9220
9221 /*
9222  * emit_extra_methods:
9223  *
9224  * Emit methods which are not in the METHOD table, like wrappers.
9225  */
9226 static void
9227 emit_extra_methods (MonoAotCompile *acfg)
9228 {
9229         int i, table_size, buf_size;
9230         guint8 *p, *buf;
9231         guint32 *info_offsets;
9232         guint32 hash;
9233         GPtrArray *table;
9234         HashEntry *entry, *new_entry;
9235         int nmethods, max_chain_length;
9236         int *chain_lengths;
9237
9238         info_offsets = g_new0 (guint32, acfg->extra_methods->len);
9239
9240         /* Emit method info */
9241         nmethods = 0;
9242         for (i = 0; i < acfg->extra_methods->len; ++i) {
9243                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9244                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9245
9246                 if (!cfg)
9247                         continue;
9248
9249                 buf_size = 10240;
9250                 p = buf = (guint8 *)g_malloc (buf_size);
9251
9252                 nmethods ++;
9253
9254                 method = cfg->method_to_register;
9255
9256                 encode_method_ref (acfg, method, p, &p);
9257
9258                 g_assert ((p - buf) < buf_size);
9259
9260                 info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9261                 g_free (buf);
9262         }
9263
9264         /*
9265          * Construct a chained hash table for mapping indexes in extra_method_info to
9266          * method indexes.
9267          */
9268         table_size = g_spaced_primes_closest ((int)(nmethods * 1.5));
9269         table = g_ptr_array_sized_new (table_size);
9270         for (i = 0; i < table_size; ++i)
9271                 g_ptr_array_add (table, NULL);
9272         chain_lengths = g_new0 (int, table_size);
9273         max_chain_length = 0;
9274         for (i = 0; i < acfg->extra_methods->len; ++i) {
9275                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9276                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9277                 guint32 key, value;
9278
9279                 if (!cfg)
9280                         continue;
9281
9282                 key = info_offsets [i];
9283                 value = get_method_index (acfg, method);
9284
9285                 hash = mono_aot_method_hash (method) % table_size;
9286                 //printf ("X: %s %x\n", mono_method_get_full_name (method), mono_aot_method_hash (method));
9287
9288                 chain_lengths [hash] ++;
9289                 max_chain_length = MAX (max_chain_length, chain_lengths [hash]);
9290
9291                 new_entry = (HashEntry *)mono_mempool_alloc0 (acfg->mempool, sizeof (HashEntry));
9292                 new_entry->key = key;
9293                 new_entry->value = value;
9294
9295                 entry = (HashEntry *)g_ptr_array_index (table, hash);
9296                 if (entry == NULL) {
9297                         new_entry->index = hash;
9298                         g_ptr_array_index (table, hash) = new_entry;
9299                 } else {
9300                         while (entry->next)
9301                                 entry = entry->next;
9302                         
9303                         entry->next = new_entry;
9304                         new_entry->index = table->len;
9305                         g_ptr_array_add (table, new_entry);
9306                 }
9307         }
9308         g_free (chain_lengths);
9309
9310         //printf ("MAX: %d\n", max_chain_length);
9311
9312         buf_size = table->len * 12 + 4;
9313         p = buf = (guint8 *)g_malloc (buf_size);
9314         encode_int (table_size, p, &p);
9315
9316         for (i = 0; i < table->len; ++i) {
9317                 HashEntry *entry = (HashEntry *)g_ptr_array_index (table, i);
9318
9319                 if (entry == NULL) {
9320                         encode_int (0, p, &p);
9321                         encode_int (0, p, &p);
9322                         encode_int (0, p, &p);
9323                 } else {
9324                         //g_assert (entry->key > 0);
9325                         encode_int (entry->key, p, &p);
9326                         encode_int (entry->value, p, &p);
9327                         if (entry->next)
9328                                 encode_int (entry->next->index, p, &p);
9329                         else
9330                                 encode_int (0, p, &p);
9331                 }
9332         }
9333         g_assert (p - buf <= buf_size);
9334
9335         /* Emit the table */
9336         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_TABLE, "extra_method_table", buf, p - buf);
9337
9338         g_free (buf);
9339
9340         /* 
9341          * Emit a table reverse mapping method indexes to their index in extra_method_info.
9342          * This is used by mono_aot_find_jit_info ().
9343          */
9344         buf_size = acfg->extra_methods->len * 8 + 4;
9345         p = buf = (guint8 *)g_malloc (buf_size);
9346         encode_int (acfg->extra_methods->len, p, &p);
9347         for (i = 0; i < acfg->extra_methods->len; ++i) {
9348                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9349
9350                 encode_int (get_method_index (acfg, method), p, &p);
9351                 encode_int (info_offsets [i], p, &p);
9352         }
9353         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS, "extra_method_info_offsets", buf, p - buf);
9354
9355         g_free (buf);
9356         g_free (info_offsets);
9357         g_ptr_array_free (table, TRUE);
9358 }       
9359
9360 static void
9361 generate_aotid (guint8* aotid)
9362 {
9363         gpointer rand_handle;
9364         MonoError error;
9365
9366         mono_rand_open ();
9367         rand_handle = mono_rand_init (NULL, 0);
9368
9369         mono_rand_try_get_bytes (&rand_handle, aotid, 16, &error);
9370         mono_error_assert_ok (&error);
9371
9372         mono_rand_close (rand_handle);
9373 }
9374
9375 static void
9376 emit_exception_info (MonoAotCompile *acfg)
9377 {
9378         int i;
9379         gint32 *offsets;
9380         SeqPointData sp_data;
9381         gboolean seq_points_to_file = FALSE;
9382
9383         offsets = g_new0 (gint32, acfg->nmethods);
9384         for (i = 0; i < acfg->nmethods; ++i) {
9385                 if (acfg->cfgs [i]) {
9386                         MonoCompile *cfg = acfg->cfgs [i];
9387
9388                         // By design aot-runtime decode_exception_debug_info is not able to load sequence point debug data from a file.
9389                         // As it is not possible to load debug data from a file its is also not possible to store it in a file.
9390                         gboolean method_seq_points_to_file = acfg->aot_opts.gen_msym_dir &&
9391                                 cfg->gen_seq_points && !cfg->gen_sdb_seq_points;
9392                         gboolean method_seq_points_to_binary = cfg->gen_seq_points && !method_seq_points_to_file;
9393                         
9394                         emit_exception_debug_info (acfg, cfg, method_seq_points_to_binary);
9395                         offsets [i] = cfg->ex_info_offset;
9396
9397                         if (method_seq_points_to_file) {
9398                                 if (!seq_points_to_file) {
9399                                         mono_seq_point_data_init (&sp_data, acfg->nmethods);
9400                                         seq_points_to_file = TRUE;
9401                                 }
9402                                 mono_seq_point_data_add (&sp_data, cfg->method->token, cfg->method_index, cfg->seq_point_info);
9403                         }
9404                 } else {
9405                         offsets [i] = 0;
9406                 }
9407         }
9408
9409         if (seq_points_to_file) {
9410                 char *aotid = mono_guid_to_string_minimal (acfg->image->aotid);
9411                 char *dir = g_build_filename (acfg->aot_opts.gen_msym_dir_path, aotid, NULL);
9412                 char *image_basename = g_path_get_basename (acfg->image->name);
9413                 char *aot_file = g_strdup_printf("%s%s", image_basename, SEQ_POINT_AOT_EXT);
9414                 char *aot_file_path = g_build_filename (dir, aot_file, NULL);
9415
9416                 if (g_ensure_directory_exists (aot_file_path) == FALSE) {
9417                         fprintf (stderr, "AOT : failed to create msym directory: %s\n", aot_file_path);
9418                         exit (1);
9419                 }
9420
9421                 mono_seq_point_data_write (&sp_data, aot_file_path);
9422                 mono_seq_point_data_free (&sp_data);
9423
9424                 g_free (aotid);
9425                 g_free (dir);
9426                 g_free (image_basename);
9427                 g_free (aot_file);
9428                 g_free (aot_file_path);
9429         }
9430
9431         acfg->stats.offsets_size += emit_offset_table (acfg, "ex_info_offsets", MONO_AOT_TABLE_EX_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9432         g_free (offsets);
9433 }
9434
9435 static void
9436 emit_unwind_info (MonoAotCompile *acfg)
9437 {
9438         int i;
9439         char symbol [128];
9440
9441         if (acfg->aot_opts.llvm_only) {
9442                 g_assert (acfg->unwind_ops->len == 0);
9443                 return;
9444         }
9445
9446         /* 
9447          * The unwind info contains a lot of duplicates so we emit each unique
9448          * entry once, and only store the offset from the start of the table in the
9449          * exception info.
9450          */
9451
9452         sprintf (symbol, "unwind_info");
9453         emit_section_change (acfg, RODATA_SECT, 1);
9454         emit_alignment (acfg, 8);
9455         emit_info_symbol (acfg, symbol);
9456
9457         for (i = 0; i < acfg->unwind_ops->len; ++i) {
9458                 guint32 index = GPOINTER_TO_UINT (g_ptr_array_index (acfg->unwind_ops, i));
9459                 guint8 *unwind_info;
9460                 guint32 unwind_info_len;
9461                 guint8 buf [16];
9462                 guint8 *p;
9463
9464                 unwind_info = mono_get_cached_unwind_info (index, &unwind_info_len);
9465
9466                 p = buf;
9467                 encode_value (unwind_info_len, p, &p);
9468                 emit_bytes (acfg, buf, p - buf);
9469                 emit_bytes (acfg, unwind_info, unwind_info_len);
9470
9471                 acfg->stats.unwind_info_size += (p - buf) + unwind_info_len;
9472         }
9473 }
9474
9475 static void
9476 emit_class_info (MonoAotCompile *acfg)
9477 {
9478         int i;
9479         gint32 *offsets;
9480
9481         offsets = g_new0 (gint32, acfg->image->tables [MONO_TABLE_TYPEDEF].rows);
9482         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i)
9483                 offsets [i] = emit_klass_info (acfg, MONO_TOKEN_TYPE_DEF | (i + 1));
9484
9485         acfg->stats.offsets_size += emit_offset_table (acfg, "class_info_offsets", MONO_AOT_TABLE_CLASS_INFO_OFFSETS, acfg->image->tables [MONO_TABLE_TYPEDEF].rows, 10, offsets);
9486         g_free (offsets);
9487 }
9488
9489 typedef struct ClassNameTableEntry {
9490         guint32 token, index;
9491         struct ClassNameTableEntry *next;
9492 } ClassNameTableEntry;
9493
9494 static void
9495 emit_class_name_table (MonoAotCompile *acfg)
9496 {
9497         int i, table_size, buf_size;
9498         guint32 token, hash;
9499         MonoClass *klass;
9500         GPtrArray *table;
9501         char *full_name;
9502         guint8 *buf, *p;
9503         ClassNameTableEntry *entry, *new_entry;
9504
9505         /*
9506          * Construct a chained hash table for mapping class names to typedef tokens.
9507          */
9508         table_size = g_spaced_primes_closest ((int)(acfg->image->tables [MONO_TABLE_TYPEDEF].rows * 1.5));
9509         table = g_ptr_array_sized_new (table_size);
9510         for (i = 0; i < table_size; ++i)
9511                 g_ptr_array_add (table, NULL);
9512         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
9513                 MonoError error;
9514                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
9515                 klass = mono_class_get_checked (acfg->image, token, &error);
9516                 if (!klass) {
9517                         mono_error_cleanup (&error);
9518                         continue;
9519                 }
9520                 full_name = mono_type_get_name_full (mono_class_get_type (klass), MONO_TYPE_NAME_FORMAT_FULL_NAME);
9521                 hash = mono_metadata_str_hash (full_name) % table_size;
9522                 g_free (full_name);
9523
9524                 /* FIXME: Allocate from the mempool */
9525                 new_entry = g_new0 (ClassNameTableEntry, 1);
9526                 new_entry->token = token;
9527
9528                 entry = (ClassNameTableEntry *)g_ptr_array_index (table, hash);
9529                 if (entry == NULL) {
9530                         new_entry->index = hash;
9531                         g_ptr_array_index (table, hash) = new_entry;
9532                 } else {
9533                         while (entry->next)
9534                                 entry = entry->next;
9535                         
9536                         entry->next = new_entry;
9537                         new_entry->index = table->len;
9538                         g_ptr_array_add (table, new_entry);
9539                 }
9540         }
9541
9542         /* Emit the table */
9543         buf_size = table->len * 4 + 4;
9544         p = buf = (guint8 *)g_malloc0 (buf_size);
9545
9546         /* FIXME: Optimize memory usage */
9547         g_assert (table_size < 65000);
9548         encode_int16 (table_size, p, &p);
9549         g_assert (table->len < 65000);
9550         for (i = 0; i < table->len; ++i) {
9551                 ClassNameTableEntry *entry = (ClassNameTableEntry *)g_ptr_array_index (table, i);
9552
9553                 if (entry == NULL) {
9554                         encode_int16 (0, p, &p);
9555                         encode_int16 (0, p, &p);
9556                 } else {
9557                         encode_int16 (mono_metadata_token_index (entry->token), p, &p);
9558                         if (entry->next)
9559                                 encode_int16 (entry->next->index, p, &p);
9560                         else
9561                                 encode_int16 (0, p, &p);
9562                 }
9563                 g_free (entry);
9564         }
9565         g_assert (p - buf <= buf_size);
9566         g_ptr_array_free (table, TRUE);
9567
9568         emit_aot_data (acfg, MONO_AOT_TABLE_CLASS_NAME, "class_name_table", buf, p - buf);
9569
9570         g_free (buf);
9571 }
9572
9573 static void
9574 emit_image_table (MonoAotCompile *acfg)
9575 {
9576         int i, buf_size;
9577         guint8 *buf, *p;
9578
9579         /*
9580          * The image table is small but referenced in a lot of places.
9581          * So we emit it at once, and reference its elements by an index.
9582          */
9583         buf_size = acfg->image_table->len * 28 + 4;
9584         for (i = 0; i < acfg->image_table->len; i++) {
9585                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9586                 MonoAssemblyName *aname = &image->assembly->aname;
9587
9588                 buf_size += strlen (image->assembly_name) + strlen (image->guid) + (aname->culture ? strlen (aname->culture) : 1) + strlen ((char*)aname->public_key_token) + 4;
9589         }
9590
9591         buf = p = (guint8 *)g_malloc0 (buf_size);
9592         encode_int (acfg->image_table->len, p, &p);
9593         for (i = 0; i < acfg->image_table->len; i++) {
9594                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9595                 MonoAssemblyName *aname = &image->assembly->aname;
9596
9597                 /* FIXME: Support multi-module assemblies */
9598                 g_assert (image->assembly->image == image);
9599
9600                 encode_string (image->assembly_name, p, &p);
9601                 encode_string (image->guid, p, &p);
9602                 encode_string (aname->culture ? aname->culture : "", p, &p);
9603                 encode_string ((const char*)aname->public_key_token, p, &p);
9604
9605                 while (GPOINTER_TO_UINT (p) % 8 != 0)
9606                         p ++;
9607
9608                 encode_int (aname->flags, p, &p);
9609                 encode_int (aname->major, p, &p);
9610                 encode_int (aname->minor, p, &p);
9611                 encode_int (aname->build, p, &p);
9612                 encode_int (aname->revision, p, &p);
9613         }
9614         g_assert (p - buf <= buf_size);
9615
9616         emit_aot_data (acfg, MONO_AOT_TABLE_IMAGE_TABLE, "image_table", buf, p - buf);
9617
9618         g_free (buf);
9619 }
9620
9621 static void
9622 emit_got_info (MonoAotCompile *acfg, gboolean llvm)
9623 {
9624         int i, first_plt_got_patch = 0, buf_size;
9625         guint8 *p, *buf;
9626         guint32 *got_info_offsets;
9627         GotInfo *info = llvm ? &acfg->llvm_got_info : &acfg->got_info;
9628
9629         /* Add the patches needed by the PLT to the GOT */
9630         if (!llvm) {
9631                 acfg->plt_got_offset_base = acfg->got_offset;
9632                 first_plt_got_patch = info->got_patches->len;
9633                 for (i = 1; i < acfg->plt_offset; ++i) {
9634                         MonoPltEntry *plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
9635
9636                         g_ptr_array_add (info->got_patches, plt_entry->ji);
9637
9638                         acfg->stats.got_slot_types [plt_entry->ji->type] ++;
9639                 }
9640
9641                 acfg->got_offset += acfg->plt_offset;
9642         }
9643
9644         /**
9645          * FIXME: 
9646          * - optimize offsets table.
9647          * - reduce number of exported symbols.
9648          * - emit info for a klass only once.
9649          * - determine when a method uses a GOT slot which is guaranteed to be already 
9650          *   initialized.
9651          * - clean up and document the code.
9652          * - use String.Empty in class libs.
9653          */
9654
9655         /* Encode info required to decode shared GOT entries */
9656         buf_size = info->got_patches->len * 128;
9657         p = buf = (guint8 *)mono_mempool_alloc (acfg->mempool, buf_size);
9658         got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, info->got_patches->len * sizeof (guint32));
9659         if (!llvm) {
9660                 acfg->plt_got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, acfg->plt_offset * sizeof (guint32));
9661                 /* Unused */
9662                 if (acfg->plt_offset)
9663                         acfg->plt_got_info_offsets [0] = 0;
9664         }
9665         for (i = 0; i < info->got_patches->len; ++i) {
9666                 MonoJumpInfo *ji = (MonoJumpInfo *)g_ptr_array_index (info->got_patches, i);
9667                 guint8 *p2;
9668
9669                 p = buf;
9670
9671                 encode_value (ji->type, p, &p);
9672                 p2 = p;
9673                 encode_patch (acfg, ji, p, &p);
9674                 acfg->stats.got_slot_info_sizes [ji->type] += p - p2;
9675                 g_assert (p - buf <= buf_size);
9676                 got_info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9677
9678                 if (!llvm && i >= first_plt_got_patch)
9679                         acfg->plt_got_info_offsets [i - first_plt_got_patch + 1] = got_info_offsets [i];
9680                 acfg->stats.got_info_size += p - buf;
9681         }
9682
9683         /* Emit got_info_offsets table */
9684
9685         /* No need to emit offsets for the got plt entries, the plt embeds them directly */
9686         acfg->stats.offsets_size += emit_offset_table (acfg, llvm ? "llvm_got_info_offsets" : "got_info_offsets", llvm ? MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS : MONO_AOT_TABLE_GOT_INFO_OFFSETS, llvm ? acfg->llvm_got_offset : first_plt_got_patch, 10, (gint32*)got_info_offsets);
9687 }
9688
9689 static void
9690 emit_got (MonoAotCompile *acfg)
9691 {
9692         char symbol [MAX_SYMBOL_SIZE];
9693
9694         if (acfg->aot_opts.llvm_only)
9695                 return;
9696
9697         /* Don't make GOT global so accesses to it don't need relocations */
9698         sprintf (symbol, "%s", acfg->got_symbol);
9699
9700 #ifdef TARGET_MACH
9701         emit_unset_mode (acfg);
9702         fprintf (acfg->fp, ".section __DATA, __bss\n");
9703         emit_alignment (acfg, 8);
9704         if (acfg->llvm)
9705                 emit_info_symbol (acfg, "jit_got");
9706         fprintf (acfg->fp, ".lcomm %s, %d\n", acfg->got_symbol, (int)(acfg->got_offset * sizeof (gpointer)));
9707 #else
9708         emit_section_change (acfg, ".bss", 0);
9709         emit_alignment (acfg, 8);
9710         if (acfg->aot_opts.write_symbols)
9711                 emit_local_symbol (acfg, symbol, "got_end", FALSE);
9712         emit_label (acfg, symbol);
9713         if (acfg->llvm)
9714                 emit_info_symbol (acfg, "jit_got");
9715         if (acfg->got_offset > 0)
9716                 emit_zero_bytes (acfg, (int)(acfg->got_offset * sizeof (gpointer)));
9717 #endif
9718
9719         sprintf (symbol, "got_end");
9720         emit_label (acfg, symbol);
9721 }
9722
9723 typedef struct GlobalsTableEntry {
9724         guint32 value, index;
9725         struct GlobalsTableEntry *next;
9726 } GlobalsTableEntry;
9727
9728 #ifdef TARGET_WIN32_MSVC
9729 #define DLL_ENTRY_POINT "DllMain"
9730
9731 static void
9732 emit_library_info (MonoAotCompile *acfg)
9733 {
9734         // Only include for shared libraries linked directly from generated object.
9735         if (link_shared_library (acfg)) {
9736                 char    *name = NULL;
9737                 char    symbol [MAX_SYMBOL_SIZE];
9738
9739                 // Ask linker to export all global symbols.
9740                 emit_section_change (acfg, ".drectve", 0);
9741                 for (guint i = 0; i < acfg->globals->len; ++i) {
9742                         name = (char *)g_ptr_array_index (acfg->globals, i);
9743                         g_assert (name != NULL);
9744                         sprintf_s (symbol, MAX_SYMBOL_SIZE, " /EXPORT:%s", name);
9745                         emit_string (acfg, symbol);
9746                 }
9747
9748                 // Emit DLLMain function, needed by MSVC linker for DLL's.
9749                 // NOTE, DllMain should not go into exports above.
9750                 emit_section_change (acfg, ".text", 0);
9751                 emit_global (acfg, DLL_ENTRY_POINT, TRUE);
9752                 emit_label (acfg, DLL_ENTRY_POINT);
9753
9754                 // Simple implementation of DLLMain, just returning TRUE.
9755                 // For more information about DLLMain: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682583(v=vs.85).aspx
9756                 fprintf (acfg->fp, "movl $1, %%eax\n");
9757                 fprintf (acfg->fp, "ret\n");
9758
9759                 // Inform linker about our dll entry function.
9760                 emit_section_change (acfg, ".drectve", 0);
9761                 emit_string (acfg, "/ENTRY:" DLL_ENTRY_POINT);
9762                 return;
9763         }
9764 }
9765
9766 #else
9767
9768 static inline void
9769 emit_library_info (MonoAotCompile *acfg)
9770 {
9771         return;
9772 }
9773 #endif
9774
9775 static void
9776 emit_globals (MonoAotCompile *acfg)
9777 {
9778         int i, table_size;
9779         guint32 hash;
9780         GPtrArray *table;
9781         char symbol [1024];
9782         GlobalsTableEntry *entry, *new_entry;
9783
9784         if (!acfg->aot_opts.static_link)
9785                 return;
9786
9787         if (acfg->aot_opts.llvm_only) {
9788                 g_assert (acfg->globals->len == 0);
9789                 return;
9790         }
9791
9792         /* 
9793          * When static linking, we emit a table containing our globals.
9794          */
9795
9796         /*
9797          * Construct a chained hash table for mapping global names to their index in
9798          * the globals table.
9799          */
9800         table_size = g_spaced_primes_closest ((int)(acfg->globals->len * 1.5));
9801         table = g_ptr_array_sized_new (table_size);
9802         for (i = 0; i < table_size; ++i)
9803                 g_ptr_array_add (table, NULL);
9804         for (i = 0; i < acfg->globals->len; ++i) {
9805                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9806
9807                 hash = mono_metadata_str_hash (name) % table_size;
9808
9809                 /* FIXME: Allocate from the mempool */
9810                 new_entry = g_new0 (GlobalsTableEntry, 1);
9811                 new_entry->value = i;
9812
9813                 entry = (GlobalsTableEntry *)g_ptr_array_index (table, hash);
9814                 if (entry == NULL) {
9815                         new_entry->index = hash;
9816                         g_ptr_array_index (table, hash) = new_entry;
9817                 } else {
9818                         while (entry->next)
9819                                 entry = entry->next;
9820                         
9821                         entry->next = new_entry;
9822                         new_entry->index = table->len;
9823                         g_ptr_array_add (table, new_entry);
9824                 }
9825         }
9826
9827         /* Emit the table */
9828         sprintf (symbol, ".Lglobals_hash");
9829         emit_section_change (acfg, RODATA_SECT, 0);
9830         emit_alignment (acfg, 8);
9831         emit_label (acfg, symbol);
9832
9833         /* FIXME: Optimize memory usage */
9834         g_assert (table_size < 65000);
9835         emit_int16 (acfg, table_size);
9836         for (i = 0; i < table->len; ++i) {
9837                 GlobalsTableEntry *entry = (GlobalsTableEntry *)g_ptr_array_index (table, i);
9838
9839                 if (entry == NULL) {
9840                         emit_int16 (acfg, 0);
9841                         emit_int16 (acfg, 0);
9842                 } else {
9843                         emit_int16 (acfg, entry->value + 1);
9844                         if (entry->next)
9845                                 emit_int16 (acfg, entry->next->index);
9846                         else
9847                                 emit_int16 (acfg, 0);
9848                 }
9849         }
9850
9851         /* Emit the names */
9852         for (i = 0; i < acfg->globals->len; ++i) {
9853                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9854
9855                 sprintf (symbol, "name_%d", i);
9856                 emit_section_change (acfg, RODATA_SECT, 1);
9857 #ifdef TARGET_MACH
9858                 emit_alignment (acfg, 4);
9859 #endif
9860                 emit_label (acfg, symbol);
9861                 emit_string (acfg, name);
9862         }
9863
9864         /* Emit the globals table */
9865         sprintf (symbol, "globals");
9866         emit_section_change (acfg, ".data", 0);
9867         /* This is not a global, since it is accessed by the init function */
9868         emit_alignment (acfg, 8);
9869         emit_info_symbol (acfg, symbol);
9870
9871         sprintf (symbol, "%sglobals_hash", acfg->temp_prefix);
9872         emit_pointer (acfg, symbol);
9873
9874         for (i = 0; i < acfg->globals->len; ++i) {
9875                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9876
9877                 sprintf (symbol, "name_%d", i);
9878                 emit_pointer (acfg, symbol);
9879
9880                 g_assert (strlen (name) < sizeof (symbol));
9881                 sprintf (symbol, "%s", name);
9882                 emit_pointer (acfg, symbol);
9883         }
9884         /* Null terminate the table */
9885         emit_int32 (acfg, 0);
9886         emit_int32 (acfg, 0);
9887 }
9888
9889 static void
9890 emit_mem_end (MonoAotCompile *acfg)
9891 {
9892         char symbol [128];
9893
9894         if (acfg->aot_opts.llvm_only)
9895                 return;
9896
9897         sprintf (symbol, "mem_end");
9898         emit_section_change (acfg, ".text", 1);
9899         emit_alignment_code (acfg, 8);
9900         emit_label (acfg, symbol);
9901 }
9902
9903 static void
9904 init_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9905 {
9906         int i;
9907
9908         info->version = MONO_AOT_FILE_VERSION;
9909         info->plt_got_offset_base = acfg->plt_got_offset_base;
9910         info->got_size = acfg->got_offset * sizeof (gpointer);
9911         info->plt_size = acfg->plt_offset;
9912         info->nmethods = acfg->nmethods;
9913         info->flags = acfg->flags;
9914         info->opts = acfg->opts;
9915         info->simd_opts = acfg->simd_opts;
9916         info->gc_name_index = acfg->gc_name_offset;
9917         info->datafile_size = acfg->datafile_offset;
9918         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9919                 info->table_offsets [i] = acfg->table_offsets [i];
9920         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9921                 info->num_trampolines [i] = acfg->num_trampolines [i];
9922         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9923                 info->trampoline_got_offset_base [i] = acfg->trampoline_got_offset_base [i];
9924         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9925                 info->trampoline_size [i] = acfg->trampoline_size [i];
9926         info->num_rgctx_fetch_trampolines = acfg->aot_opts.nrgctx_fetch_trampolines;
9927
9928         info->double_align = MONO_ABI_ALIGNOF (double);
9929         info->long_align = MONO_ABI_ALIGNOF (gint64);
9930         info->generic_tramp_num = MONO_TRAMPOLINE_NUM;
9931         info->tramp_page_size = acfg->tramp_page_size;
9932         info->nshared_got_entries = acfg->nshared_got_entries;
9933         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9934                 info->tramp_page_code_offsets [i] = acfg->tramp_page_code_offsets [i];
9935
9936         memcpy(&info->aotid, acfg->image->aotid, 16);
9937 }
9938
9939 static void
9940 emit_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9941 {
9942         char symbol [MAX_SYMBOL_SIZE];
9943         int i, sindex;
9944         const char **symbols;
9945
9946         symbols = g_new0 (const char *, MONO_AOT_FILE_INFO_NUM_SYMBOLS);
9947         sindex = 0;
9948         symbols [sindex ++] = acfg->got_symbol;
9949         if (acfg->llvm) {
9950                 symbols [sindex ++] = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, acfg->llvm_got_symbol);
9951                 symbols [sindex ++] = acfg->llvm_eh_frame_symbol;
9952         } else {
9953                 symbols [sindex ++] = NULL;
9954                 symbols [sindex ++] = NULL;
9955         }
9956         /* llvm_get_method */
9957         symbols [sindex ++] = NULL;
9958         /* llvm_get_unbox_tramp */
9959         symbols [sindex ++] = NULL;
9960         if (!acfg->aot_opts.llvm_only) {
9961                 symbols [sindex ++] = "jit_code_start";
9962                 symbols [sindex ++] = "jit_code_end";
9963                 symbols [sindex ++] = "method_addresses";
9964         } else {
9965                 symbols [sindex ++] = NULL;
9966                 symbols [sindex ++] = NULL;
9967                 symbols [sindex ++] = NULL;
9968         }
9969         if (acfg->data_outfile) {
9970                 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9971                         symbols [sindex ++] = NULL;
9972         } else {
9973                 symbols [sindex ++] = "blob";
9974                 symbols [sindex ++] = "class_name_table";
9975                 symbols [sindex ++] = "class_info_offsets";
9976                 symbols [sindex ++] = "method_info_offsets";
9977                 symbols [sindex ++] = "ex_info_offsets";
9978                 symbols [sindex ++] = "extra_method_info_offsets";
9979                 symbols [sindex ++] = "extra_method_table";
9980                 symbols [sindex ++] = "got_info_offsets";
9981                 if (acfg->llvm)
9982                         symbols [sindex ++] = "llvm_got_info_offsets";
9983                 else
9984                         symbols [sindex ++] = NULL;
9985                 symbols [sindex ++] = "image_table";
9986         }
9987         symbols [sindex ++] = "mem_end";
9988         symbols [sindex ++] = "assembly_guid";
9989         symbols [sindex ++] = "runtime_version";
9990         if (acfg->num_trampoline_got_entries) {
9991                 symbols [sindex ++] = "specific_trampolines";
9992                 symbols [sindex ++] = "static_rgctx_trampolines";
9993                 symbols [sindex ++] = "imt_trampolines";
9994                 symbols [sindex ++] = "gsharedvt_arg_trampolines";
9995         } else {
9996                 symbols [sindex ++] = NULL;
9997                 symbols [sindex ++] = NULL;
9998                 symbols [sindex ++] = NULL;
9999                 symbols [sindex ++] = NULL;
10000         }
10001         if (acfg->aot_opts.static_link) {
10002                 symbols [sindex ++] = "globals";
10003         } else {
10004                 symbols [sindex ++] = NULL;
10005         }
10006         symbols [sindex ++] = "assembly_name";
10007         symbols [sindex ++] = "plt";
10008         symbols [sindex ++] = "plt_end";
10009         symbols [sindex ++] = "unwind_info";
10010         if (!acfg->aot_opts.llvm_only) {
10011                 symbols [sindex ++] = "unbox_trampolines";
10012                 symbols [sindex ++] = "unbox_trampolines_end";
10013                 symbols [sindex ++] = "unbox_trampoline_addresses";
10014         } else {
10015                 symbols [sindex ++] = NULL;
10016                 symbols [sindex ++] = NULL;
10017                 symbols [sindex ++] = NULL;
10018         }
10019
10020         g_assert (sindex == MONO_AOT_FILE_INFO_NUM_SYMBOLS);
10021
10022         sprintf (symbol, "%smono_aot_file_info", acfg->user_symbol_prefix);
10023         emit_section_change (acfg, ".data", 0);
10024         emit_alignment (acfg, 8);
10025         emit_label (acfg, symbol);
10026         if (!acfg->aot_opts.static_link)
10027                 emit_global (acfg, symbol, FALSE);
10028
10029         /* The data emitted here must match MonoAotFileInfo. */
10030
10031         emit_int32 (acfg, info->version);
10032         emit_int32 (acfg, info->dummy);
10033
10034         /* 
10035          * We emit pointers to our data structures instead of emitting global symbols which
10036          * point to them, to reduce the number of globals, and because using globals leads to
10037          * various problems (i.e. arm/thumb).
10038          */
10039         for (i = 0; i < MONO_AOT_FILE_INFO_NUM_SYMBOLS; ++i)
10040                 emit_pointer (acfg, symbols [i]);
10041
10042         emit_int32 (acfg, info->plt_got_offset_base);
10043         emit_int32 (acfg, info->got_size);
10044         emit_int32 (acfg, info->plt_size);
10045         emit_int32 (acfg, info->nmethods);
10046         emit_int32 (acfg, info->flags);
10047         emit_int32 (acfg, info->opts);
10048         emit_int32 (acfg, info->simd_opts);
10049         emit_int32 (acfg, info->gc_name_index);
10050         emit_int32 (acfg, info->num_rgctx_fetch_trampolines);
10051         emit_int32 (acfg, info->double_align);
10052         emit_int32 (acfg, info->long_align);
10053         emit_int32 (acfg, info->generic_tramp_num);
10054         emit_int32 (acfg, info->tramp_page_size);
10055         emit_int32 (acfg, info->nshared_got_entries);
10056         emit_int32 (acfg, info->datafile_size);
10057
10058         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
10059                 emit_int32 (acfg, info->table_offsets [i]);
10060         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10061                 emit_int32 (acfg, info->num_trampolines [i]);
10062         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10063                 emit_int32 (acfg, info->trampoline_got_offset_base [i]);
10064         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10065                 emit_int32 (acfg, info->trampoline_size [i]);
10066         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10067                 emit_int32 (acfg, info->tramp_page_code_offsets [i]);
10068
10069         emit_bytes (acfg, info->aotid, 16);
10070
10071         if (acfg->aot_opts.static_link) {
10072                 emit_global_inner (acfg, acfg->static_linking_symbol, FALSE);
10073                 emit_alignment (acfg, sizeof (gpointer));
10074                 emit_label (acfg, acfg->static_linking_symbol);
10075                 emit_pointer_2 (acfg, acfg->user_symbol_prefix, "mono_aot_file_info");
10076         }
10077 }
10078
10079 /*
10080  * Emit a structure containing all the information not stored elsewhere.
10081  */
10082 static void
10083 emit_file_info (MonoAotCompile *acfg)
10084 {
10085         char *build_info;
10086         MonoAotFileInfo *info;
10087
10088         if (acfg->aot_opts.bind_to_runtime_version) {
10089                 build_info = mono_get_runtime_build_info ();
10090                 emit_string_symbol (acfg, "runtime_version", build_info);
10091                 g_free (build_info);
10092         } else {
10093                 emit_string_symbol (acfg, "runtime_version", "");
10094         }
10095
10096         emit_string_symbol (acfg, "assembly_guid" , acfg->image->guid);
10097
10098         /* Emit a string holding the assembly name */
10099         emit_string_symbol (acfg, "assembly_name", acfg->image->assembly->aname.name);
10100
10101         info = g_new0 (MonoAotFileInfo, 1);
10102         init_aot_file_info (acfg, info);
10103
10104         if (acfg->aot_opts.static_link) {
10105                 char symbol [MAX_SYMBOL_SIZE];
10106                 char *p;
10107
10108                 /*
10109                  * Emit a global symbol which can be passed by an embedding app to
10110                  * mono_aot_register_module (). The symbol points to a pointer to the the file info
10111                  * structure.
10112                  */
10113                 sprintf (symbol, "%smono_aot_module_%s_info", acfg->user_symbol_prefix, acfg->image->assembly->aname.name);
10114
10115                 /* Get rid of characters which cannot occur in symbols */
10116                 p = symbol;
10117                 for (p = symbol; *p; ++p) {
10118                         if (!(isalnum (*p) || *p == '_'))
10119                                 *p = '_';
10120                 }
10121                 acfg->static_linking_symbol = g_strdup (symbol);
10122         }
10123
10124         if (acfg->llvm)
10125                 mono_llvm_emit_aot_file_info (info, acfg->has_jitted_code);
10126         else
10127                 emit_aot_file_info (acfg, info);
10128 }
10129
10130 static void
10131 emit_blob (MonoAotCompile *acfg)
10132 {
10133         acfg->blob_closed = TRUE;
10134
10135         emit_aot_data (acfg, MONO_AOT_TABLE_BLOB, "blob", (guint8*)acfg->blob.data, acfg->blob.index);
10136 }
10137
10138 static void
10139 emit_objc_selectors (MonoAotCompile *acfg)
10140 {
10141         int i;
10142         char symbol [128];
10143
10144         if (!acfg->objc_selectors || acfg->objc_selectors->len == 0)
10145                 return;
10146
10147         /*
10148          * From
10149          * cat > foo.m << EOF
10150          * void *ret ()
10151          * {
10152          * return @selector(print:);
10153          * }
10154          * EOF
10155          */
10156
10157         mono_img_writer_emit_unset_mode (acfg->w);
10158         g_assert (acfg->fp);
10159         fprintf (acfg->fp, ".section    __DATA,__objc_selrefs,literal_pointers,no_dead_strip\n");
10160         fprintf (acfg->fp, ".align      3\n");
10161         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10162                 sprintf (symbol, "L_OBJC_SELECTOR_REFERENCES_%d", i);
10163                 emit_label (acfg, symbol);
10164                 sprintf (symbol, "L_OBJC_METH_VAR_NAME_%d", i);
10165                 emit_pointer (acfg, symbol);
10166
10167         }
10168         fprintf (acfg->fp, ".section    __TEXT,__cstring,cstring_literals\n");
10169         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10170                 fprintf (acfg->fp, "L_OBJC_METH_VAR_NAME_%d:\n", i);
10171                 fprintf (acfg->fp, ".asciz \"%s\"\n", (char*)g_ptr_array_index (acfg->objc_selectors, i));
10172         }
10173
10174         fprintf (acfg->fp, ".section    __DATA,__objc_imageinfo,regular,no_dead_strip\n");
10175         fprintf (acfg->fp, ".align      3\n");
10176         fprintf (acfg->fp, "L_OBJC_IMAGE_INFO:\n");
10177         fprintf (acfg->fp, ".long       0\n");
10178         fprintf (acfg->fp, ".long       16\n");
10179 }
10180
10181 static void
10182 emit_dwarf_info (MonoAotCompile *acfg)
10183 {
10184 #ifdef EMIT_DWARF_INFO
10185         int i;
10186         char symbol2 [128];
10187
10188         /* DIEs for methods */
10189         for (i = 0; i < acfg->nmethods; ++i) {
10190                 MonoCompile *cfg = acfg->cfgs [i];
10191
10192                 if (!cfg)
10193                         continue;
10194
10195                 // FIXME: LLVM doesn't define .Lme_...
10196                 if (cfg->compile_llvm)
10197                         continue;
10198
10199                 sprintf (symbol2, "%sme_%x", acfg->temp_prefix, i);
10200
10201                 mono_dwarf_writer_emit_method (acfg->dwarf, cfg, cfg->method, cfg->asm_symbol, symbol2, cfg->asm_debug_symbol, (guint8 *)cfg->jit_info->code_start, cfg->jit_info->code_size, cfg->args, cfg->locals, cfg->unwind_ops, mono_debug_find_method (cfg->jit_info->d.method, mono_domain_get ()));
10202         }
10203 #endif
10204 }
10205
10206 static gboolean
10207 collect_methods (MonoAotCompile *acfg)
10208 {
10209         int mindex, i;
10210         MonoImage *image = acfg->image;
10211
10212         /* Collect methods */
10213         for (i = 0; i < image->tables [MONO_TABLE_METHOD].rows; ++i) {
10214                 MonoError error;
10215                 MonoMethod *method;
10216                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
10217
10218                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10219
10220                 if (!method) {
10221                         aot_printerrf (acfg, "Failed to load method 0x%x from '%s' due to %s.\n", token, image->name, mono_error_get_message (&error));
10222                         aot_printerrf (acfg, "Run with MONO_LOG_LEVEL=debug for more information.\n");
10223                         mono_error_cleanup (&error);
10224                         return FALSE;
10225                 }
10226                         
10227                 /* Load all methods eagerly to skip the slower lazy loading code */
10228                 mono_class_setup_methods (method->klass);
10229
10230                 if (mono_aot_mode_is_full (&acfg->aot_opts) && method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
10231                         /* Compile the wrapper instead */
10232                         /* We do this here instead of add_wrappers () because it is easy to do it here */
10233                         MonoMethod *wrapper = mono_marshal_get_native_wrapper (method, TRUE, TRUE);
10234                         method = wrapper;
10235                 }
10236
10237                 /* FIXME: Some mscorlib methods don't have debug info */
10238                 /*
10239                 if (acfg->aot_opts.soft_debug && !method->wrapper_type) {
10240                         if (!((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
10241                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
10242                                   (method->flags & METHOD_ATTRIBUTE_ABSTRACT) ||
10243                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))) {
10244                                 if (!mono_debug_lookup_method (method)) {
10245                                         fprintf (stderr, "Method %s has no debug info, probably the .mdb file for the assembly is missing.\n", mono_method_get_full_name (method));
10246                                         exit (1);
10247                                 }
10248                         }
10249                 }
10250                 */
10251
10252                 if (method->is_generic || mono_class_is_gtd (method->klass))
10253                         /* Compile the ref shared version instead */
10254                         method = mini_get_shared_method (method);
10255
10256                 /* Since we add the normal methods first, their index will be equal to their zero based token index */
10257                 add_method_with_index (acfg, method, i, FALSE);
10258                 acfg->method_index ++;
10259         }
10260
10261         /* gsharedvt methods */
10262         for (mindex = 0; mindex < image->tables [MONO_TABLE_METHOD].rows; ++mindex) {
10263                 MonoError error;
10264                 MonoMethod *method;
10265                 guint32 token = MONO_TOKEN_METHOD_DEF | (mindex + 1);
10266
10267                 if (!(acfg->opts & MONO_OPT_GSHAREDVT))
10268                         continue;
10269
10270                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10271                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
10272
10273                 if (method->is_generic || mono_class_is_gtd (method->klass)) {
10274                         MonoMethod *gshared;
10275
10276                         gshared = mini_get_shared_method_full (method, TRUE, TRUE);
10277                         add_extra_method (acfg, gshared);
10278                 }
10279         }
10280
10281         if (mono_aot_mode_is_full (&acfg->aot_opts))
10282                 add_generic_instances (acfg);
10283
10284         if (mono_aot_mode_is_full (&acfg->aot_opts))
10285                 add_wrappers (acfg);
10286         return TRUE;
10287 }
10288
10289 static void
10290 compile_methods (MonoAotCompile *acfg)
10291 {
10292         int i, methods_len;
10293
10294         if (acfg->aot_opts.nthreads > 0) {
10295                 GPtrArray *frag;
10296                 int len, j;
10297                 GPtrArray *threads;
10298                 MonoThreadHandle *thread_handle;
10299                 gpointer *user_data;
10300                 MonoMethod **methods;
10301
10302                 methods_len = acfg->methods->len;
10303
10304                 len = acfg->methods->len / acfg->aot_opts.nthreads;
10305                 g_assert (len > 0);
10306                 /* 
10307                  * Partition the list of methods into fragments, and hand it to threads to
10308                  * process.
10309                  */
10310                 threads = g_ptr_array_new ();
10311                 /* Make a copy since acfg->methods is modified by compile_method () */
10312                 methods = g_new0 (MonoMethod*, methods_len);
10313                 //memcpy (methods, g_ptr_array_index (acfg->methods, 0), sizeof (MonoMethod*) * methods_len);
10314                 for (i = 0; i < methods_len; ++i)
10315                         methods [i] = (MonoMethod *)g_ptr_array_index (acfg->methods, i);
10316                 i = 0;
10317                 while (i < methods_len) {
10318                         MonoError error;
10319                         MonoInternalThread *thread;
10320
10321                         frag = g_ptr_array_new ();
10322                         for (j = 0; j < len; ++j) {
10323                                 if (i < methods_len) {
10324                                         g_ptr_array_add (frag, methods [i]);
10325                                         i ++;
10326                                 }
10327                         }
10328
10329                         user_data = g_new0 (gpointer, 3);
10330                         user_data [0] = acfg;
10331                         user_data [1] = frag;
10332                         
10333                         thread = mono_thread_create_internal (mono_domain_get (), compile_thread_main, (gpointer) user_data, MONO_THREAD_CREATE_FLAGS_NONE, &error);
10334                         mono_error_assert_ok (&error);
10335
10336                         thread_handle = mono_threads_open_thread_handle (thread->handle);
10337                         g_ptr_array_add (threads, thread_handle);
10338                 }
10339                 g_free (methods);
10340
10341                 for (i = 0; i < threads->len; ++i) {
10342                         mono_thread_info_wait_one_handle (g_ptr_array_index (threads, i), MONO_INFINITE_WAIT, FALSE);
10343                         mono_threads_close_thread_handle (g_ptr_array_index (threads, i));
10344                 }
10345         } else {
10346                 methods_len = 0;
10347         }
10348
10349         /* Compile methods added by compile_method () or all methods if nthreads == 0 */
10350         for (i = methods_len; i < acfg->methods->len; ++i) {
10351                 /* This can add new methods to acfg->methods */
10352                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (acfg->methods, i));
10353         }
10354 }
10355
10356 static int
10357 compile_asm (MonoAotCompile *acfg)
10358 {
10359         char *command, *objfile;
10360         char *outfile_name, *tmp_outfile_name, *llvm_ofile;
10361         const char *tool_prefix = acfg->aot_opts.tool_prefix ? acfg->aot_opts.tool_prefix : "";
10362         char *ld_flags = acfg->aot_opts.ld_flags ? acfg->aot_opts.ld_flags : g_strdup("");
10363
10364 #ifdef TARGET_WIN32_MSVC
10365 #define AS_OPTIONS "-c -x assembler"
10366 #elif defined(TARGET_AMD64) && !defined(TARGET_MACH)
10367 #define AS_OPTIONS "--64"
10368 #elif defined(TARGET_POWERPC64)
10369 #define AS_OPTIONS "-a64 -mppc64"
10370 #elif defined(sparc) && SIZEOF_VOID_P == 8
10371 #define AS_OPTIONS "-xarch=v9"
10372 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10373 #define AS_OPTIONS "-arch i386"
10374 #else
10375 #define AS_OPTIONS ""
10376 #endif
10377
10378 #if defined(TARGET_OSX)
10379 #define AS_NAME "clang"
10380 #elif defined(TARGET_WIN32_MSVC)
10381 #define AS_NAME "clang.exe"
10382 #else
10383 #define AS_NAME "as"
10384 #endif
10385
10386 #ifdef TARGET_WIN32_MSVC
10387 #define AS_OBJECT_FILE_SUFFIX "obj"
10388 #else
10389 #define AS_OBJECT_FILE_SUFFIX "o"
10390 #endif
10391
10392 #if defined(sparc)
10393 #define LD_NAME "ld"
10394 #define LD_OPTIONS "-shared -G"
10395 #elif defined(__ppc__) && defined(TARGET_MACH)
10396 #define LD_NAME "gcc"
10397 #define LD_OPTIONS "-dynamiclib"
10398 #elif defined(TARGET_AMD64) && defined(TARGET_MACH)
10399 #define LD_NAME "clang"
10400 #define LD_OPTIONS "--shared"
10401 #elif defined(TARGET_WIN32_MSVC)
10402 #define LD_NAME "link.exe"
10403 #define LD_OPTIONS "/DLL /MACHINE:X64 /NOLOGO"
10404 #elif defined(TARGET_WIN32) && !defined(TARGET_ANDROID)
10405 #define LD_NAME "gcc"
10406 #define LD_OPTIONS "-shared"
10407 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10408 #define LD_NAME "clang"
10409 #define LD_OPTIONS "-m32 -dynamiclib"
10410 #elif defined(TARGET_ARM) && !defined(TARGET_ANDROID)
10411 #define LD_NAME "gcc"
10412 #define LD_OPTIONS "--shared"
10413 #elif defined(TARGET_POWERPC64)
10414 #define LD_OPTIONS "-m elf64ppc"
10415 #endif
10416
10417 #ifndef LD_OPTIONS
10418 #define LD_OPTIONS ""
10419 #endif
10420
10421         if (acfg->aot_opts.asm_only) {
10422                 aot_printf (acfg, "Output file: '%s'.\n", acfg->tmpfname);
10423                 if (acfg->aot_opts.static_link)
10424                         aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10425                 if (acfg->llvm)
10426                         aot_printf (acfg, "LLVM output file: '%s'.\n", acfg->llvm_sfile);
10427                 return 0;
10428         }
10429
10430         if (acfg->aot_opts.static_link) {
10431                 if (acfg->aot_opts.outfile)
10432                         objfile = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10433                 else
10434                         objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->image->name);
10435         } else {
10436                 objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname);
10437         }
10438
10439 #ifdef TARGET_OSX
10440         g_string_append (acfg->as_args, "-c -x assembler");
10441 #endif
10442
10443         command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10444                         acfg->as_args ? acfg->as_args->str : "", 
10445                         wrap_path (objfile), wrap_path (acfg->tmpfname));
10446         aot_printf (acfg, "Executing the native assembler: %s\n", command);
10447         if (execute_system (command) != 0) {
10448                 g_free (command);
10449                 g_free (objfile);
10450                 return 1;
10451         }
10452
10453         if (acfg->llvm && !acfg->llvm_owriter) {
10454                 command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10455                         acfg->as_args ? acfg->as_args->str : "",
10456                         wrap_path (acfg->llvm_ofile), wrap_path (acfg->llvm_sfile));
10457                 aot_printf (acfg, "Executing the native assembler: %s\n", command);
10458                 if (execute_system (command) != 0) {
10459                         g_free (command);
10460                         g_free (objfile);
10461                         return 1;
10462                 }
10463         }
10464
10465         g_free (command);
10466
10467         if (acfg->aot_opts.static_link) {
10468                 aot_printf (acfg, "Output file: '%s'.\n", objfile);
10469                 aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10470                 g_free (objfile);
10471                 return 0;
10472         }
10473
10474         if (acfg->aot_opts.outfile)
10475                 outfile_name = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10476         else
10477                 outfile_name = g_strdup_printf ("%s%s", acfg->image->name, MONO_SOLIB_EXT);
10478
10479         tmp_outfile_name = g_strdup_printf ("%s.tmp", outfile_name);
10480
10481         if (acfg->llvm) {
10482                 llvm_ofile = g_strdup_printf ("\"%s\"", acfg->llvm_ofile);
10483         } else {
10484                 llvm_ofile = g_strdup ("");
10485         }
10486
10487         /* replace the ; flags separators with spaces */
10488         g_strdelimit (ld_flags, ";", ' ');
10489
10490         if (acfg->aot_opts.llvm_only)
10491                 ld_flags = g_strdup_printf ("%s %s", ld_flags, "-lstdc++");
10492
10493 #ifdef TARGET_WIN32_MSVC
10494         g_assert (tmp_outfile_name != NULL);
10495         g_assert (objfile != NULL);
10496         command = g_strdup_printf ("\"%s%s\" %s %s /OUT:\"%s\" \"%s\"", tool_prefix, LD_NAME, LD_OPTIONS,
10497                 ld_flags, tmp_outfile_name, objfile);
10498 #elif defined(LD_NAME)
10499         command = g_strdup_printf ("%s%s %s -o %s %s %s %s", tool_prefix, LD_NAME, LD_OPTIONS,
10500                 wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10501                 wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10502 #else
10503         // Default (linux)
10504         if (acfg->aot_opts.tool_prefix) {
10505                 /* Cross compiling */
10506                 command = g_strdup_printf ("\"%sld\" %s -shared -o %s %s %s %s", tool_prefix, LD_OPTIONS,
10507                                                                    wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10508                                                                    wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10509         } else {
10510                 char *args = g_strdup_printf ("%s -shared -o %s %s %s %s", LD_OPTIONS,
10511                                                                           wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10512                                                                           wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10513
10514                 if (acfg->aot_opts.llvm_only) {
10515                         command = g_strdup_printf ("clang++ %s", args);
10516                 } else {
10517                         command = g_strdup_printf ("\"%sld\" %s", tool_prefix, args);
10518                 }
10519                 g_free (args);
10520         }
10521 #endif
10522         aot_printf (acfg, "Executing the native linker: %s\n", command);
10523         if (execute_system (command) != 0) {
10524                 g_free (tmp_outfile_name);
10525                 g_free (outfile_name);
10526                 g_free (command);
10527                 g_free (objfile);
10528                 g_free (ld_flags);
10529                 return 1;
10530         }
10531
10532         g_free (command);
10533
10534         /*com = g_strdup_printf ("strip --strip-unneeded %s%s", acfg->image->name, MONO_SOLIB_EXT);
10535         printf ("Stripping the binary: %s\n", com);
10536         execute_system (com);
10537         g_free (com);*/
10538
10539 #if defined(TARGET_ARM) && !defined(TARGET_MACH)
10540         /* 
10541          * gas generates 'mapping symbols' each time code and data is mixed, which 
10542          * happens a lot in emit_and_reloc_code (), so we need to get rid of them.
10543          */
10544         command = g_strdup_printf ("\"%sstrip\" --strip-symbol=\\$a --strip-symbol=\\$d %s", wrap_path(tool_prefix), wrap_path(tmp_outfile_name));
10545         aot_printf (acfg, "Stripping the binary: %s\n", command);
10546         if (execute_system (command) != 0) {
10547                 g_free (tmp_outfile_name);
10548                 g_free (outfile_name);
10549                 g_free (command);
10550                 g_free (objfile);
10551                 return 1;
10552         }
10553 #endif
10554
10555         if (0 != rename (tmp_outfile_name, outfile_name)) {
10556                 if (G_FILE_ERROR_EXIST == g_file_error_from_errno (errno)) {
10557                         /* Since we are rebuilding the module we need to be able to replace any old copies. Remove old file and retry rename operation. */
10558                         unlink (outfile_name);
10559                         rename (tmp_outfile_name, outfile_name);
10560                 }
10561         }
10562
10563 #if defined(TARGET_MACH)
10564         command = g_strdup_printf ("dsymutil \"%s\"", outfile_name);
10565         aot_printf (acfg, "Executing dsymutil: %s\n", command);
10566         if (execute_system (command) != 0) {
10567                 return 1;
10568         }
10569 #endif
10570
10571         if (!acfg->aot_opts.save_temps)
10572                 unlink (objfile);
10573
10574         g_free (tmp_outfile_name);
10575         g_free (outfile_name);
10576         g_free (objfile);
10577
10578         if (acfg->aot_opts.save_temps)
10579                 aot_printf (acfg, "Retained input file.\n");
10580         else
10581                 unlink (acfg->tmpfname);
10582
10583         return 0;
10584 }
10585
10586 static guint8
10587 profread_byte (FILE *infile)
10588 {
10589         guint8 i;
10590         int res;
10591
10592         res = fread (&i, 1, 1, infile);
10593         g_assert (res == 1);
10594         return i;
10595 }
10596
10597 static int
10598 profread_int (FILE *infile)
10599 {
10600         int i, res;
10601
10602         res = fread (&i, 4, 1, infile);
10603         g_assert (res == 1);
10604         return i;
10605 }
10606
10607 static char*
10608 profread_string (FILE *infile)
10609 {
10610         int len, res;
10611         char buf [1024];
10612         char *pbuf;
10613
10614         len = profread_int (infile);
10615         if (len + 1 > 1024)
10616                 pbuf = g_malloc (len + 1);
10617         else
10618                 pbuf = buf;
10619         res = fread (pbuf, 1, len, infile);
10620         g_assert (res == len);
10621         pbuf [len] = '\0';
10622         if (pbuf == buf)
10623                 return g_strdup (buf);
10624         else
10625                 return pbuf;
10626 }
10627
10628 static void
10629 load_profile_file (MonoAotCompile *acfg, char *filename)
10630 {
10631         FILE *infile;
10632         char buf [1024];
10633         int res, len, version;
10634         char magic [32];
10635
10636         infile = fopen (filename, "r");
10637         if (!infile) {
10638                 fprintf (stderr, "Unable to open file '%s': %s.\n", filename, strerror (errno));
10639                 exit (1);
10640         }
10641
10642         printf ("Using profile data file '%s'\n", filename);
10643
10644         sprintf (magic, AOT_PROFILER_MAGIC);
10645         len = strlen (magic);
10646         res = fread (buf, 1, len, infile);
10647         magic [len] = '\0';
10648         buf [len] = '\0';
10649         if ((res != len) || strcmp (buf, magic) != 0) {
10650                 printf ("Profile file has wrong header: '%s'.\n", buf);
10651                 fclose (infile);
10652                 exit (1);
10653         }
10654         guint32 expected_version = (AOT_PROFILER_MAJOR_VERSION << 16) | AOT_PROFILER_MINOR_VERSION;
10655         version = profread_int (infile);
10656         if (version != expected_version) {
10657                 printf ("Profile file has wrong version 0x%4x, expected 0x%4x.\n", version, expected_version);
10658                 fclose (infile);
10659                 exit (1);
10660         }
10661
10662         ProfileData *data = g_new0 (ProfileData, 1);
10663         data->images = g_hash_table_new (NULL, NULL);
10664         data->classes = g_hash_table_new (NULL, NULL);
10665         data->ginsts = g_hash_table_new (NULL, NULL);
10666         data->methods = g_hash_table_new (NULL, NULL);
10667
10668         while (TRUE) {
10669                 int type = profread_byte (infile);
10670                 int id = profread_int (infile);
10671
10672                 if (type == AOTPROF_RECORD_NONE)
10673                         break;
10674
10675                 switch (type) {
10676                 case AOTPROF_RECORD_IMAGE: {
10677                         ImageProfileData *idata = g_new0 (ImageProfileData, 1);
10678                         idata->name = profread_string (infile);
10679                         char *mvid = profread_string (infile);
10680                         g_free (mvid);
10681                         g_hash_table_insert (data->images, GINT_TO_POINTER (id), idata);
10682                         break;
10683                 }
10684                 case AOTPROF_RECORD_GINST: {
10685                         int i;
10686                         int len = profread_int (infile);
10687
10688                         GInstProfileData *gdata = g_new0 (GInstProfileData, 1);
10689                         gdata->argc = len;
10690                         gdata->argv = g_new0 (ClassProfileData*, len);
10691
10692                         for (i = 0; i < len; ++i) {
10693                                 int class_id = profread_int (infile);
10694
10695                                 gdata->argv [i] = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10696                                 g_assert (gdata->argv [i]);
10697                         }
10698                         g_hash_table_insert (data->ginsts, GINT_TO_POINTER (id), gdata);
10699                         break;
10700                 }
10701                 case AOTPROF_RECORD_TYPE: {
10702                         int type = profread_byte (infile);
10703
10704                         switch (type) {
10705                         case MONO_TYPE_CLASS: {
10706                                 int image_id = profread_int (infile);
10707                                 int ginst_id = profread_int (infile);
10708                                 char *class_name = profread_string (infile);
10709
10710                                 ImageProfileData *image = g_hash_table_lookup (data->images, GINT_TO_POINTER (image_id));
10711                                 g_assert (image);
10712
10713                                 char *p = strrchr (class_name, '.');
10714                                 g_assert (p);
10715                                 *p = '\0';
10716
10717                                 ClassProfileData *cdata = g_new0 (ClassProfileData, 1);
10718                                 cdata->image = image;
10719                                 cdata->ns = g_strdup (class_name);
10720                                 cdata->name = g_strdup (p + 1);
10721
10722                                 if (ginst_id != -1) {
10723                                         cdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10724                                         g_assert (cdata->inst);
10725                                 }
10726                                 g_free (class_name);
10727
10728                                 g_hash_table_insert (data->classes, GINT_TO_POINTER (id), cdata);
10729                                 break;
10730                         }
10731 #if 0
10732                         case MONO_TYPE_SZARRAY: {
10733                                 int elem_id = profread_int (infile);
10734                                 // FIXME:
10735                                 break;
10736                         }
10737 #endif
10738                         default:
10739                                 g_assert_not_reached ();
10740                                 break;
10741                         }
10742                         break;
10743                 }
10744                 case AOTPROF_RECORD_METHOD: {
10745                         int class_id = profread_int (infile);
10746                         int ginst_id = profread_int (infile);
10747                         int param_count = profread_int (infile);
10748                         char *method_name = profread_string (infile);
10749                         char *sig = profread_string (infile);
10750
10751                         ClassProfileData *klass = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10752                         g_assert (klass);
10753
10754                         MethodProfileData *mdata = g_new0 (MethodProfileData, 1);
10755                         mdata->id = id;
10756                         mdata->klass = klass;
10757                         mdata->name = method_name;
10758                         mdata->signature = sig;
10759                         mdata->param_count = param_count;
10760
10761                         if (ginst_id != -1) {
10762                                 mdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10763                                 g_assert (mdata->inst);
10764                         }
10765                         g_hash_table_insert (data->methods, GINT_TO_POINTER (id), mdata);
10766                         break;
10767                 }
10768                 default:
10769                         printf ("%d\n", type);
10770                         g_assert_not_reached ();
10771                         break;
10772                 }
10773         }
10774
10775         fclose (infile);
10776         acfg->profile_data = g_list_append (acfg->profile_data, data);
10777 }
10778
10779 static void
10780 resolve_class (ClassProfileData *cdata);
10781
10782 static void
10783 resolve_ginst (GInstProfileData *inst_data)
10784 {
10785         int i;
10786
10787         if (inst_data->inst)
10788                 return;
10789
10790         for (i = 0; i < inst_data->argc; ++i) {
10791                 resolve_class (inst_data->argv [i]);
10792                 if (!inst_data->argv [i]->klass)
10793                         return;
10794         }
10795         MonoType **args = g_new0 (MonoType*, inst_data->argc);
10796         for (i = 0; i < inst_data->argc; ++i)
10797                 args [i] = &inst_data->argv [i]->klass->byval_arg;
10798
10799         inst_data->inst = mono_metadata_get_generic_inst (inst_data->argc, args);
10800 }
10801
10802 static void
10803 resolve_class (ClassProfileData *cdata)
10804 {
10805         MonoError error;
10806         MonoClass *klass;
10807
10808         if (!cdata->image->image)
10809                 return;
10810
10811         klass = mono_class_from_name_checked (cdata->image->image, cdata->ns, cdata->name, &error);
10812         if (!klass) {
10813                 //printf ("[%s] %s.%s\n", cdata->image->name, cdata->ns, cdata->name);
10814                 return;
10815         }
10816         if (cdata->inst) {
10817                 resolve_ginst (cdata->inst);
10818                 if (!cdata->inst->inst)
10819                         return;
10820                 MonoGenericContext ctx;
10821
10822                 memset (&ctx, 0, sizeof (ctx));
10823                 ctx.class_inst = cdata->inst->inst;
10824                 cdata->klass = mono_class_inflate_generic_class_checked (klass, &ctx, &error);
10825         } else {
10826                 cdata->klass = klass;
10827         }
10828 }
10829
10830 /*
10831  * Resolve the profile data to the corresponding loaded classes/methods etc. if possible.
10832  */
10833 static void
10834 resolve_profile_data (MonoAotCompile *acfg, ProfileData *data)
10835 {
10836         GHashTableIter iter;
10837         gpointer key, value;
10838         int i;
10839
10840         if (!data)
10841                 return;
10842
10843         /* Images */
10844         GPtrArray *assemblies = mono_domain_get_assemblies (mono_get_root_domain (), FALSE);
10845         g_hash_table_iter_init (&iter, data->images);
10846         while (g_hash_table_iter_next (&iter, &key, &value)) {
10847                 ImageProfileData *idata = (ImageProfileData*)value;
10848
10849                 for (i = 0; i < assemblies->len; ++i) {
10850                         MonoAssembly *ass = g_ptr_array_index (assemblies, i);
10851
10852                         if (!strcmp (ass->aname.name, idata->name)) {
10853                                 idata->image = ass->image;
10854                                 break;
10855                         }
10856                 }
10857         }
10858         g_ptr_array_free (assemblies, TRUE);
10859
10860         /* Classes */
10861         g_hash_table_iter_init (&iter, data->classes);
10862         while (g_hash_table_iter_next (&iter, &key, &value)) {
10863                 ClassProfileData *cdata = (ClassProfileData*)value;
10864
10865                 if (!cdata->image->image) {
10866                         if (acfg->aot_opts.verbose)
10867                                 printf ("Unable to load class '%s.%s' because its image '%s' is not loaded.\n", cdata->ns, cdata->name, cdata->image->name);
10868                         continue;
10869                 }
10870
10871                 resolve_class (cdata);
10872                 /*
10873                 if (cdata->klass)
10874                         printf ("%s %s %s\n", cdata->ns, cdata->name, mono_class_full_name (cdata->klass));
10875                 */
10876         }
10877
10878         /* Methods */
10879         g_hash_table_iter_init (&iter, data->methods);
10880         while (g_hash_table_iter_next (&iter, &key, &value)) {
10881                 MethodProfileData *mdata = (MethodProfileData*)value;
10882                 MonoClass *klass;
10883                 MonoMethod *m;
10884                 gpointer miter;
10885
10886                 resolve_class (mdata->klass);
10887                 klass = mdata->klass->klass;
10888                 if (!klass) {
10889                         if (acfg->aot_opts.verbose)
10890                                 printf ("Unable to load method '%s' because its class '%s.%s' is not loaded.\n", mdata->name, mdata->klass->ns, mdata->klass->name);
10891                         continue;
10892                 }
10893                 miter = NULL;
10894                 while ((m = mono_class_get_methods (klass, &miter))) {
10895                         MonoError error;
10896
10897                         if (strcmp (m->name, mdata->name))
10898                                 continue;
10899                         MonoMethodSignature *sig = mono_method_signature (m);
10900                         if (!sig)
10901                                 continue;
10902                         if (sig->param_count != mdata->param_count)
10903                                 continue;
10904                         if (mdata->inst) {
10905                                 resolve_ginst (mdata->inst);
10906                                 if (!mdata->inst->inst)
10907                                         continue;
10908                                 MonoGenericContext ctx;
10909
10910                                 memset (&ctx, 0, sizeof (ctx));
10911                                 ctx.method_inst = mdata->inst->inst;
10912
10913                                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
10914                                 if (!m)
10915                                         continue;
10916                                 sig = mono_method_signature_checked (m, &error);
10917                                 if (!is_ok (&error)) {
10918                                         mono_error_cleanup (&error);
10919                                         continue;
10920                                 }
10921                         }
10922                         char *sig_str = mono_signature_full_name (sig);
10923                         gboolean match = !strcmp (sig_str, mdata->signature);
10924                         g_free (sig_str);
10925                         if (!match)
10926
10927                                 continue;
10928                         //printf ("%s\n", mono_method_full_name (m, 1));
10929                         mdata->method = m;
10930                         break;
10931                 }
10932                 if (!mdata->method) {
10933                         if (acfg->aot_opts.verbose)
10934                                 printf ("Unable to load method '%s' from class '%s', not found.\n", mdata->name, mono_class_full_name (klass));
10935                 }
10936         }
10937 }
10938
10939 static gboolean
10940 inst_references_image (MonoGenericInst *inst, MonoImage *image)
10941 {
10942         int i;
10943
10944         for (i = 0; i < inst->type_argc; ++i) {
10945                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10946                 if (k->image == image)
10947                         return TRUE;
10948                 if (mono_class_is_ginst (k)) {
10949                         MonoGenericInst *kinst = mono_class_get_context (k)->class_inst;
10950                         if (inst_references_image (kinst, image))
10951                                 return TRUE;
10952                 }
10953         }
10954         return FALSE;
10955 }
10956
10957 static gboolean
10958 is_local_inst (MonoGenericInst *inst, MonoImage *image)
10959 {
10960         int i;
10961
10962         for (i = 0; i < inst->type_argc; ++i) {
10963                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10964                 if (!MONO_TYPE_IS_PRIMITIVE (inst->type_argv [i]) && k->image != image)
10965                         return FALSE;
10966         }
10967         return TRUE;
10968 }
10969
10970 static void
10971 add_profile_instances (MonoAotCompile *acfg, ProfileData *data)
10972 {
10973         GHashTableIter iter;
10974         gpointer key, value;
10975         int count = 0;
10976
10977         if (!data)
10978                 return;
10979
10980         if (acfg->aot_opts.profile_only) {
10981                 /* Add methods referenced by the profile */
10982                 g_hash_table_iter_init (&iter, data->methods);
10983                 while (g_hash_table_iter_next (&iter, &key, &value)) {
10984                         MethodProfileData *mdata = (MethodProfileData*)value;
10985                         MonoMethod *m = mdata->method;
10986
10987                         if (!m)
10988                                 continue;
10989                         if (m->is_inflated)
10990                                 continue;
10991                         add_extra_method (acfg, m);
10992                         g_hash_table_insert (acfg->profile_methods, m, m);
10993                         count ++;
10994                 }
10995         }
10996
10997         /*
10998          * Add method instances 'related' to this assembly to the AOT image.
10999          */
11000         g_hash_table_iter_init (&iter, data->methods);
11001         while (g_hash_table_iter_next (&iter, &key, &value)) {
11002                 MethodProfileData *mdata = (MethodProfileData*)value;
11003                 MonoMethod *m = mdata->method;
11004                 MonoGenericContext *ctx;
11005
11006                 if (!m)
11007                         continue;
11008                 if (!m->is_inflated)
11009                         continue;
11010
11011                 ctx = mono_method_get_context (m);
11012                 /* For simplicity, add instances which reference the assembly we are compiling */
11013                 if (((ctx->class_inst && inst_references_image (ctx->class_inst, acfg->image)) ||
11014                          (ctx->method_inst && inst_references_image (ctx->method_inst, acfg->image))) &&
11015                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) {
11016                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11017                         add_extra_method (acfg, m);
11018                         count ++;
11019                 } else if (m->klass->image == acfg->image &&
11020                         ((ctx->class_inst && is_local_inst (ctx->class_inst, acfg->image)) ||
11021                          (ctx->method_inst && is_local_inst (ctx->method_inst, acfg->image))) &&
11022                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE))  {
11023                         /* Add instances where the gtd is in the assembly and its inflated with types from this assembly or corlib */
11024                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11025                         add_extra_method (acfg, m);
11026                         count ++;
11027                 }
11028                 /*
11029                  * FIXME: We might skip some instances, for example:
11030                  * Foo<Bar> won't be compiled when compiling Foo's assembly since it doesn't match the first case,
11031                  * and it won't be compiled when compiling Bar's assembly if Foo's assembly is not loaded.
11032                  */
11033         }
11034
11035         printf ("Added %d methods from profile.\n", count);
11036 }
11037
11038 static void
11039 init_got_info (GotInfo *info)
11040 {
11041         int i;
11042
11043         info->patch_to_got_offset = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11044         info->patch_to_got_offset_by_type = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11045         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11046                 info->patch_to_got_offset_by_type [i] = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11047         info->got_patches = g_ptr_array_new ();
11048 }
11049
11050 static MonoAotCompile*
11051 acfg_create (MonoAssembly *ass, guint32 opts)
11052 {
11053         MonoImage *image = ass->image;
11054         MonoAotCompile *acfg;
11055
11056         acfg = g_new0 (MonoAotCompile, 1);
11057         acfg->methods = g_ptr_array_new ();
11058         acfg->method_indexes = g_hash_table_new (NULL, NULL);
11059         acfg->method_depth = g_hash_table_new (NULL, NULL);
11060         acfg->plt_offset_to_entry = g_hash_table_new (NULL, NULL);
11061         acfg->patch_to_plt_entry = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11062         acfg->method_to_cfg = g_hash_table_new (NULL, NULL);
11063         acfg->token_info_hash = g_hash_table_new_full (NULL, NULL, NULL, NULL);
11064         acfg->method_to_pinvoke_import = g_hash_table_new_full (NULL, NULL, NULL, g_free);
11065         acfg->image_hash = g_hash_table_new (NULL, NULL);
11066         acfg->image_table = g_ptr_array_new ();
11067         acfg->globals = g_ptr_array_new ();
11068         acfg->image = image;
11069         acfg->opts = opts;
11070         /* TODO: Write out set of SIMD instructions used, rather than just those available */
11071         acfg->simd_opts = mono_arch_cpu_enumerate_simd_versions ();
11072         acfg->mempool = mono_mempool_new ();
11073         acfg->extra_methods = g_ptr_array_new ();
11074         acfg->unwind_info_offsets = g_hash_table_new (NULL, NULL);
11075         acfg->unwind_ops = g_ptr_array_new ();
11076         acfg->method_label_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
11077         acfg->method_order = g_ptr_array_new ();
11078         acfg->export_names = g_hash_table_new (NULL, NULL);
11079         acfg->klass_blob_hash = g_hash_table_new (NULL, NULL);
11080         acfg->method_blob_hash = g_hash_table_new (NULL, NULL);
11081         acfg->plt_entry_debug_sym_cache = g_hash_table_new (g_str_hash, g_str_equal);
11082         acfg->gsharedvt_in_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11083         acfg->gsharedvt_out_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11084         acfg->profile_methods = g_hash_table_new (NULL, NULL);
11085         mono_os_mutex_init_recursive (&acfg->mutex);
11086
11087         init_got_info (&acfg->got_info);
11088         init_got_info (&acfg->llvm_got_info);
11089
11090         return acfg;
11091 }
11092
11093 static void
11094 got_info_free (GotInfo *info)
11095 {
11096         int i;
11097
11098         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11099                 g_hash_table_destroy (info->patch_to_got_offset_by_type [i]);
11100         g_free (info->patch_to_got_offset_by_type);
11101         g_hash_table_destroy (info->patch_to_got_offset);
11102         g_ptr_array_free (info->got_patches, TRUE);
11103 }
11104
11105 static void
11106 acfg_free (MonoAotCompile *acfg)
11107 {
11108         int i;
11109
11110         mono_img_writer_destroy (acfg->w);
11111         for (i = 0; i < acfg->nmethods; ++i)
11112                 if (acfg->cfgs [i])
11113                         mono_destroy_compile (acfg->cfgs [i]);
11114
11115         g_free (acfg->cfgs);
11116
11117         g_free (acfg->static_linking_symbol);
11118         g_free (acfg->got_symbol);
11119         g_free (acfg->plt_symbol);
11120         g_ptr_array_free (acfg->methods, TRUE);
11121         g_ptr_array_free (acfg->image_table, TRUE);
11122         g_ptr_array_free (acfg->globals, TRUE);
11123         g_ptr_array_free (acfg->unwind_ops, TRUE);
11124         g_hash_table_destroy (acfg->method_indexes);
11125         g_hash_table_destroy (acfg->method_depth);
11126         g_hash_table_destroy (acfg->plt_offset_to_entry);
11127         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i) {
11128                 if (acfg->patch_to_plt_entry [i])
11129                         g_hash_table_destroy (acfg->patch_to_plt_entry [i]);
11130         }
11131         g_free (acfg->patch_to_plt_entry);
11132         g_hash_table_destroy (acfg->method_to_cfg);
11133         g_hash_table_destroy (acfg->token_info_hash);
11134         g_hash_table_destroy (acfg->method_to_pinvoke_import);
11135         g_hash_table_destroy (acfg->image_hash);
11136         g_hash_table_destroy (acfg->unwind_info_offsets);
11137         g_hash_table_destroy (acfg->method_label_hash);
11138         if (acfg->typespec_classes)
11139                 g_hash_table_destroy (acfg->typespec_classes);
11140         g_hash_table_destroy (acfg->export_names);
11141         g_hash_table_destroy (acfg->plt_entry_debug_sym_cache);
11142         g_hash_table_destroy (acfg->klass_blob_hash);
11143         g_hash_table_destroy (acfg->method_blob_hash);
11144         got_info_free (&acfg->got_info);
11145         got_info_free (&acfg->llvm_got_info);
11146         mono_mempool_destroy (acfg->mempool);
11147         g_free (acfg);
11148 }
11149
11150 #define WRAPPER(e,n) n,
11151 static const char* const
11152 wrapper_type_names [MONO_WRAPPER_NUM + 1] = {
11153 #include "mono/metadata/wrapper-types.h"
11154         NULL
11155 };
11156
11157 static G_GNUC_UNUSED const char*
11158 get_wrapper_type_name (int type)
11159 {
11160         return wrapper_type_names [type];
11161 }
11162
11163 //#define DUMP_PLT
11164 //#define DUMP_GOT
11165
11166 static void aot_dump (MonoAotCompile *acfg)
11167 {
11168         FILE *dumpfile;
11169         char * dumpname;
11170
11171         JsonWriter writer;
11172         mono_json_writer_init (&writer);
11173
11174         mono_json_writer_object_begin(&writer);
11175
11176         // Methods
11177         mono_json_writer_indent (&writer);
11178         mono_json_writer_object_key(&writer, "methods");
11179         mono_json_writer_array_begin (&writer);
11180
11181         int i;
11182         for (i = 0; i < acfg->nmethods; ++i) {
11183                 MonoCompile *cfg;
11184                 MonoMethod *method;
11185                 MonoClass *klass;
11186
11187                 cfg = acfg->cfgs [i];
11188                 if (!cfg)
11189                         continue;
11190
11191                 method = cfg->orig_method;
11192
11193                 mono_json_writer_indent (&writer);
11194                 mono_json_writer_object_begin(&writer);
11195
11196                 mono_json_writer_indent (&writer);
11197                 mono_json_writer_object_key(&writer, "name");
11198                 mono_json_writer_printf (&writer, "\"%s\",\n", method->name);
11199
11200                 mono_json_writer_indent (&writer);
11201                 mono_json_writer_object_key(&writer, "signature");
11202                 mono_json_writer_printf (&writer, "\"%s\",\n", mono_method_get_full_name (method));
11203
11204                 mono_json_writer_indent (&writer);
11205                 mono_json_writer_object_key(&writer, "code_size");
11206                 mono_json_writer_printf (&writer, "\"%d\",\n", cfg->code_size);
11207
11208                 klass = method->klass;
11209
11210                 mono_json_writer_indent (&writer);
11211                 mono_json_writer_object_key(&writer, "class");
11212                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name);
11213
11214                 mono_json_writer_indent (&writer);
11215                 mono_json_writer_object_key(&writer, "namespace");
11216                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name_space);
11217
11218                 mono_json_writer_indent (&writer);
11219                 mono_json_writer_object_key(&writer, "wrapper_type");
11220                 mono_json_writer_printf (&writer, "\"%s\",\n", get_wrapper_type_name(method->wrapper_type));
11221
11222                 mono_json_writer_indent_pop (&writer);
11223                 mono_json_writer_indent (&writer);
11224                 mono_json_writer_object_end (&writer);
11225                 mono_json_writer_printf (&writer, ",\n");
11226         }
11227
11228         mono_json_writer_indent_pop (&writer);
11229         mono_json_writer_indent (&writer);
11230         mono_json_writer_array_end (&writer);
11231         mono_json_writer_printf (&writer, ",\n");
11232
11233         // PLT entries
11234 #ifdef DUMP_PLT
11235         mono_json_writer_indent_push (&writer);
11236         mono_json_writer_indent (&writer);
11237         mono_json_writer_object_key(&writer, "plt");
11238         mono_json_writer_array_begin (&writer);
11239
11240         for (i = 0; i < acfg->plt_offset; ++i) {
11241                 MonoPltEntry *plt_entry = NULL;
11242                 MonoJumpInfo *ji;
11243
11244                 if (i == 0)
11245                         /* 
11246                          * The first plt entry is unused.
11247                          */
11248                         continue;
11249
11250                 plt_entry = g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
11251                 ji = plt_entry->ji;
11252
11253                 mono_json_writer_indent (&writer);
11254                 mono_json_writer_printf (&writer, "{ ");
11255                 mono_json_writer_object_key(&writer, "symbol");
11256                 mono_json_writer_printf (&writer, "\"%s\" },\n", plt_entry->symbol);
11257         }
11258
11259         mono_json_writer_indent_pop (&writer);
11260         mono_json_writer_indent (&writer);
11261         mono_json_writer_array_end (&writer);
11262         mono_json_writer_printf (&writer, ",\n");
11263 #endif
11264
11265         // GOT entries
11266 #ifdef DUMP_GOT
11267         mono_json_writer_indent_push (&writer);
11268         mono_json_writer_indent (&writer);
11269         mono_json_writer_object_key(&writer, "got");
11270         mono_json_writer_array_begin (&writer);
11271
11272         mono_json_writer_indent_push (&writer);
11273         for (i = 0; i < acfg->got_info.got_patches->len; ++i) {
11274                 MonoJumpInfo *ji = g_ptr_array_index (acfg->got_info.got_patches, i);
11275
11276                 mono_json_writer_indent (&writer);
11277                 mono_json_writer_printf (&writer, "{ ");
11278                 mono_json_writer_object_key(&writer, "patch_name");
11279                 mono_json_writer_printf (&writer, "\"%s\" },\n", get_patch_name (ji->type));
11280         }
11281
11282         mono_json_writer_indent_pop (&writer);
11283         mono_json_writer_indent (&writer);
11284         mono_json_writer_array_end (&writer);
11285         mono_json_writer_printf (&writer, ",\n");
11286 #endif
11287
11288         mono_json_writer_indent_pop (&writer);
11289         mono_json_writer_indent (&writer);
11290         mono_json_writer_object_end (&writer);
11291
11292         dumpname = g_strdup_printf ("%s.json", g_path_get_basename (acfg->image->name));
11293         dumpfile = fopen (dumpname, "w+");
11294         g_free (dumpname);
11295
11296         fprintf (dumpfile, "%s", writer.text->str);
11297         fclose (dumpfile);
11298
11299         mono_json_writer_destroy (&writer);
11300 }
11301
11302 static const char *preinited_jit_icalls[] = {
11303         "mono_aot_init_llvm_method",
11304         "mono_aot_init_gshared_method_this",
11305         "mono_aot_init_gshared_method_mrgctx",
11306         "mono_aot_init_gshared_method_vtable",
11307         "mono_llvm_throw_corlib_exception",
11308         "mono_init_vtable_slot",
11309         "mono_helper_ldstr_mscorlib"
11310 };
11311
11312 static void
11313 add_preinit_got_slots (MonoAotCompile *acfg)
11314 {
11315         MonoJumpInfo *ji;
11316         int i;
11317
11318         /*
11319          * Allocate the first few GOT entries to information which is needed frequently, or it is needed
11320          * during method initialization etc.
11321          */
11322
11323         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11324         ji->type = MONO_PATCH_INFO_IMAGE;
11325         ji->data.image = acfg->image;
11326         get_got_offset (acfg, FALSE, ji);
11327         get_got_offset (acfg, TRUE, ji);
11328
11329         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11330         ji->type = MONO_PATCH_INFO_MSCORLIB_GOT_ADDR;
11331         get_got_offset (acfg, FALSE, ji);
11332         get_got_offset (acfg, TRUE, ji);
11333
11334         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11335         ji->type = MONO_PATCH_INFO_GC_CARD_TABLE_ADDR;
11336         get_got_offset (acfg, FALSE, ji);
11337         get_got_offset (acfg, TRUE, ji);
11338
11339         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11340         ji->type = MONO_PATCH_INFO_GC_NURSERY_START;
11341         get_got_offset (acfg, FALSE, ji);
11342         get_got_offset (acfg, TRUE, ji);
11343
11344         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11345         ji->type = MONO_PATCH_INFO_AOT_MODULE;
11346         get_got_offset (acfg, FALSE, ji);
11347         get_got_offset (acfg, TRUE, ji);
11348
11349         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11350         ji->type = MONO_PATCH_INFO_GC_NURSERY_BITS;
11351         get_got_offset (acfg, FALSE, ji);
11352         get_got_offset (acfg, TRUE, ji);
11353
11354         for (i = 0; i < TLS_KEY_NUM; i++) {
11355                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11356                 ji->type = MONO_PATCH_INFO_GET_TLS_TRAMP;
11357                 ji->data.index = i;
11358                 get_got_offset (acfg, FALSE, ji);
11359                 get_got_offset (acfg, TRUE, ji);
11360
11361                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11362                 ji->type = MONO_PATCH_INFO_SET_TLS_TRAMP;
11363                 ji->data.index = i;
11364                 get_got_offset (acfg, FALSE, ji);
11365                 get_got_offset (acfg, TRUE, ji);
11366         }
11367
11368         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11369         ji->type = MONO_PATCH_INFO_JIT_THREAD_ATTACH;
11370         get_got_offset (acfg, FALSE, ji);
11371         get_got_offset (acfg, TRUE, ji);
11372
11373         /* Called by native-to-managed wrappers on possibly unattached threads */
11374         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11375         ji->type = MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL;
11376         ji->data.name = "mono_threads_attach_coop";
11377         get_got_offset (acfg, FALSE, ji);
11378         get_got_offset (acfg, TRUE, ji);
11379
11380         for (i = 0; i < sizeof (preinited_jit_icalls) / sizeof (char*); ++i) {
11381                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoAotCompile));
11382                 ji->type = MONO_PATCH_INFO_INTERNAL_METHOD;
11383                 ji->data.name = preinited_jit_icalls [i];
11384                 get_got_offset (acfg, FALSE, ji);
11385                 get_got_offset (acfg, TRUE, ji);
11386         }
11387
11388         acfg->nshared_got_entries = acfg->got_offset;
11389 }
11390
11391 int
11392 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11393 {
11394         MonoImage *image = ass->image;
11395         int i, res;
11396         gint64 all_sizes;
11397         MonoAotCompile *acfg;
11398         char *outfile_name, *tmp_outfile_name, *p;
11399         char llvm_stats_msg [256];
11400         TV_DECLARE (atv);
11401         TV_DECLARE (btv);
11402
11403         acfg = acfg_create (ass, opts);
11404
11405         memset (&acfg->aot_opts, 0, sizeof (acfg->aot_opts));
11406         acfg->aot_opts.write_symbols = TRUE;
11407         acfg->aot_opts.ntrampolines = 4096;
11408         acfg->aot_opts.nrgctx_trampolines = 4096;
11409         acfg->aot_opts.nimt_trampolines = 512;
11410         acfg->aot_opts.nrgctx_fetch_trampolines = 128;
11411         acfg->aot_opts.ngsharedvt_arg_trampolines = 512;
11412         acfg->aot_opts.llvm_path = g_strdup ("");
11413         acfg->aot_opts.temp_path = g_strdup ("");
11414 #ifdef MONOTOUCH
11415         acfg->aot_opts.use_trampolines_page = TRUE;
11416 #endif
11417
11418         mono_aot_parse_options (aot_options, &acfg->aot_opts);
11419
11420         if (acfg->aot_opts.logfile) {
11421                 acfg->logfile = fopen (acfg->aot_opts.logfile, "a+");
11422         }
11423
11424         if (acfg->aot_opts.data_outfile) {
11425                 acfg->data_outfile = fopen (acfg->aot_opts.data_outfile, "w+");
11426                 if (!acfg->data_outfile) {
11427                         aot_printerrf (acfg, "Unable to create file '%s': %s\n", acfg->aot_opts.data_outfile, strerror (errno));
11428                         return 1;
11429                 }
11430                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SEPARATE_DATA);
11431         }
11432
11433         //acfg->aot_opts.print_skipped_methods = TRUE;
11434
11435 #if !defined(MONO_ARCH_GSHAREDVT_SUPPORTED)
11436         if (acfg->opts & MONO_OPT_GSHAREDVT) {
11437                 aot_printerrf (acfg, "-O=gsharedvt not supported on this platform.\n");
11438                 return 1;
11439         }
11440         if (acfg->aot_opts.llvm_only) {
11441                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime that supports gsharedvt.\n");
11442                 return 1;
11443         }
11444 #else
11445         if (acfg->aot_opts.llvm_only || mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11446                 acfg->opts |= MONO_OPT_GSHAREDVT;
11447 #endif
11448
11449 #if !defined(ENABLE_LLVM)
11450         if (acfg->aot_opts.llvm_only) {
11451                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime compiled with llvm support.\n");
11452                 return 1;
11453         }
11454 #endif
11455
11456         if (acfg->opts & MONO_OPT_GSHAREDVT)
11457                 mono_set_generic_sharing_vt_supported (TRUE);
11458
11459         aot_printf (acfg, "Mono Ahead of Time compiler - compiling assembly %s\n", image->name);
11460
11461         generate_aotid ((guint8*) &acfg->image->aotid);
11462
11463         char *aotid = mono_guid_to_string (acfg->image->aotid);
11464         aot_printf (acfg, "AOTID %s\n", aotid);
11465         g_free (aotid);
11466
11467 #ifndef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
11468         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11469                 aot_printerrf (acfg, "--aot=full is not supported on this platform.\n");
11470                 return 1;
11471         }
11472 #endif
11473
11474         if (acfg->aot_opts.direct_pinvoke && !acfg->aot_opts.static_link) {
11475                 aot_printerrf (acfg, "The 'direct-pinvoke' AOT option also requires the 'static' AOT option.\n");
11476                 return 1;
11477         }
11478
11479         if (acfg->aot_opts.static_link)
11480                 acfg->aot_opts.asm_writer = TRUE;
11481
11482         if (acfg->aot_opts.soft_debug) {
11483                 MonoDebugOptions *opt = mini_get_debug_options ();
11484
11485                 opt->mdb_optimizations = TRUE;
11486                 opt->gen_sdb_seq_points = TRUE;
11487
11488                 if (!mono_debug_enabled ()) {
11489                         aot_printerrf (acfg, "The soft-debug AOT option requires the --debug option.\n");
11490                         return 1;
11491                 }
11492                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_DEBUG);
11493         }
11494
11495         if (mono_use_llvm || acfg->aot_opts.llvm) {
11496                 acfg->llvm = TRUE;
11497                 acfg->aot_opts.asm_writer = TRUE;
11498                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_WITH_LLVM);
11499
11500                 if (acfg->aot_opts.soft_debug) {
11501                         aot_printerrf (acfg, "The 'soft-debug' option is not supported when compiling with LLVM.\n");
11502                         return 1;
11503                 }
11504
11505                 mini_llvm_init ();
11506
11507                 if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_outfile) {
11508                         aot_printerrf (acfg, "Compiling with LLVM and the asm-only option requires the llvm-outfile= option.\n");
11509                         return 1;
11510                 }
11511         }
11512
11513         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11514                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_FULL_AOT);
11515                 acfg->is_full_aot = TRUE;
11516         }
11517
11518         if (mono_threads_is_coop_enabled ())
11519                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SAFEPOINTS);
11520
11521         if (acfg->aot_opts.instances_logfile_path) {
11522                 acfg->instances_logfile = fopen (acfg->aot_opts.instances_logfile_path, "w");
11523                 if (!acfg->instances_logfile) {
11524                         aot_printerrf (acfg, "Unable to create logfile: '%s'.\n", acfg->aot_opts.instances_logfile_path);
11525                         return 1;
11526                 }
11527         }
11528
11529         if (acfg->aot_opts.profile_files) {
11530                 GList *l;
11531
11532                 for (l = acfg->aot_opts.profile_files; l; l = l->next) {
11533                         load_profile_file (acfg, (char*)l->data);
11534                 }
11535         }
11536
11537         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11538                 int method_index;
11539
11540        for (method_index = 0; method_index < acfg->image->tables [MONO_TABLE_METHOD].rows; ++method_index) {
11541                    g_ptr_array_add (acfg->method_order,GUINT_TO_POINTER (method_index));
11542        }
11543         }
11544
11545         acfg->num_trampolines [MONO_AOT_TRAMP_SPECIFIC] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ntrampolines : 0;
11546 #ifdef MONO_ARCH_GSHARED_SUPPORTED
11547         acfg->num_trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nrgctx_trampolines : 0;
11548 #endif
11549         acfg->num_trampolines [MONO_AOT_TRAMP_IMT] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nimt_trampolines : 0;
11550 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
11551         if (acfg->opts & MONO_OPT_GSHAREDVT)
11552                 acfg->num_trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ngsharedvt_arg_trampolines : 0;
11553 #endif
11554
11555         acfg->temp_prefix = mono_img_writer_get_temp_label_prefix (NULL);
11556
11557         arch_init (acfg);
11558
11559         if (mono_use_llvm || acfg->aot_opts.llvm) {
11560
11561                 /*
11562                  * Emit all LLVM code into a separate assembly/object file and link with it
11563                  * normally.
11564                  */
11565                 if (!acfg->aot_opts.asm_only && acfg->llvm_owriter_supported) {
11566                         acfg->llvm_owriter = TRUE;
11567                 } else if (acfg->aot_opts.llvm_outfile) {
11568                         int len = strlen (acfg->aot_opts.llvm_outfile);
11569
11570                         if (len >= 2 && acfg->aot_opts.llvm_outfile [len - 2] == '.' && acfg->aot_opts.llvm_outfile [len - 1] == 'o')
11571                                 acfg->llvm_owriter = TRUE;
11572                 }
11573         }
11574
11575         if (acfg->llvm && acfg->thumb_mixed)
11576                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_THUMB);
11577         if (acfg->aot_opts.llvm_only)
11578                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_ONLY);
11579
11580         acfg->assembly_name_sym = g_strdup (acfg->image->assembly->aname.name);
11581         /* Get rid of characters which cannot occur in symbols */
11582         for (p = acfg->assembly_name_sym; *p; ++p) {
11583                 if (!(isalnum (*p) || *p == '_'))
11584                         *p = '_';
11585         }
11586
11587         acfg->global_prefix = g_strdup_printf ("mono_aot_%s", acfg->assembly_name_sym);
11588         acfg->plt_symbol = g_strdup_printf ("%s_plt", acfg->global_prefix);
11589         acfg->got_symbol = g_strdup_printf ("%s_got", acfg->global_prefix);
11590         if (acfg->llvm) {
11591                 acfg->llvm_got_symbol = g_strdup_printf ("%s_llvm_got", acfg->global_prefix);
11592                 acfg->llvm_eh_frame_symbol = g_strdup_printf ("%s_eh_frame", acfg->global_prefix);
11593         }
11594
11595         acfg->method_index = 1;
11596
11597         if (mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11598                 mono_set_partial_sharing_supported (TRUE);
11599
11600         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11601                 res = collect_methods (acfg);
11602
11603                 if (!res)
11604                         return 1;
11605         }
11606
11607         {
11608                 GList *l;
11609
11610                 for (l = acfg->profile_data; l; l = l->next)
11611                         resolve_profile_data (acfg, (ProfileData*)l->data);
11612                 for (l = acfg->profile_data; l; l = l->next)
11613                         add_profile_instances (acfg, (ProfileData*)l->data);
11614         }
11615
11616         acfg->cfgs_size = acfg->methods->len + 32;
11617         acfg->cfgs = g_new0 (MonoCompile*, acfg->cfgs_size);
11618
11619         /* PLT offset 0 is reserved for the PLT trampoline */
11620         acfg->plt_offset = 1;
11621         add_preinit_got_slots (acfg);
11622
11623 #ifdef ENABLE_LLVM
11624         if (acfg->llvm) {
11625                 llvm_acfg = acfg;
11626                 mono_llvm_create_aot_module (acfg->image->assembly, acfg->global_prefix, acfg->nshared_got_entries, TRUE, acfg->aot_opts.static_link, acfg->aot_opts.llvm_only);
11627         }
11628 #endif
11629
11630         if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
11631                 MonoMethod *wrapper;
11632                 MonoMethodSignature *sig;
11633
11634                 /* object object:interp_in_static (object,intptr,intptr,intptr) */
11635                 sig = mono_create_icall_signature ("object object ptr ptr ptr");
11636                 wrapper = mini_get_interp_in_wrapper (sig);
11637                 add_method (acfg, wrapper);
11638
11639                 /* int object:interp_in_static (intptr,int,intptr) */
11640                 sig = mono_create_icall_signature ("int32 ptr int32 ptr");
11641                 wrapper = mini_get_interp_in_wrapper (sig);
11642                 add_method (acfg, wrapper);
11643
11644                 /* void object:interp_in_static (object,intptr,intptr,intptr) */
11645                 sig = mono_create_icall_signature ("void object ptr ptr ptr");
11646                 wrapper = mini_get_interp_in_wrapper (sig);
11647                 add_method (acfg, wrapper);
11648         }
11649
11650         TV_GETTIME (atv);
11651
11652         compile_methods (acfg);
11653
11654         TV_GETTIME (btv);
11655
11656         acfg->stats.jit_time = TV_ELAPSED (atv, btv);
11657
11658         TV_GETTIME (atv);
11659
11660 #ifdef ENABLE_LLVM
11661         if (acfg->llvm) {
11662                 if (acfg->aot_opts.asm_only) {
11663                         if (acfg->aot_opts.outfile) {
11664                                 acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11665                                 acfg->tmpbasename = g_strdup (acfg->tmpfname);
11666                         } else {
11667                                 acfg->tmpbasename = g_strdup_printf ("%s", acfg->image->name);
11668                                 acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11669                         }
11670                         g_assert (acfg->aot_opts.llvm_outfile);
11671                         acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11672                         if (acfg->llvm_owriter)
11673                                 acfg->llvm_ofile = g_strdup (acfg->aot_opts.llvm_outfile);
11674                         else
11675                                 acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11676                 } else {
11677                         acfg->tmpbasename = (strcmp (acfg->aot_opts.temp_path, "") == 0) ?
11678                                 g_strdup_printf ("%s", "temp") :
11679                                 g_build_filename (acfg->aot_opts.temp_path, "temp", NULL);
11680                                 
11681                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11682                         acfg->llvm_sfile = g_strdup_printf ("%s-llvm.s", acfg->tmpbasename);
11683                         acfg->llvm_ofile = g_strdup_printf ("%s-llvm.o", acfg->tmpbasename);
11684                 }
11685         }
11686 #endif
11687
11688         if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_only) {
11689                 if (acfg->aot_opts.outfile)
11690                         acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11691                 else
11692                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->image->name);
11693                 acfg->fp = fopen (acfg->tmpfname, "w+");
11694         } else {
11695                 if (strcmp (acfg->aot_opts.temp_path, "") == 0) {
11696                         int i = g_file_open_tmp ("mono_aot_XXXXXX", &acfg->tmpfname, NULL);
11697                         acfg->fp = fdopen (i, "w+");
11698                 } else {
11699                         acfg->tmpbasename = g_build_filename (acfg->aot_opts.temp_path, "temp", NULL);
11700                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11701                         acfg->fp = fopen (acfg->tmpfname, "w+");
11702                 }
11703         }
11704         if (acfg->fp == 0 && !acfg->aot_opts.llvm_only) {
11705                 aot_printerrf (acfg, "Unable to open file '%s': %s\n", acfg->tmpfname, strerror (errno));
11706                 return 1;
11707         }
11708         if (acfg->fp)
11709                 acfg->w = mono_img_writer_create (acfg->fp, FALSE);
11710
11711         tmp_outfile_name = NULL;
11712         outfile_name = NULL;
11713
11714         /* Compute symbols for methods */
11715         for (i = 0; i < acfg->nmethods; ++i) {
11716                 if (acfg->cfgs [i]) {
11717                         MonoCompile *cfg = acfg->cfgs [i];
11718                         int method_index = get_method_index (acfg, cfg->orig_method);
11719
11720                         if (COMPILE_LLVM (cfg))
11721                                 cfg->asm_symbol = g_strdup_printf ("%s%s", acfg->llvm_label_prefix, cfg->llvm_method_name);
11722                         else if (acfg->global_symbols || acfg->llvm)
11723                                 cfg->asm_symbol = get_debug_sym (cfg->orig_method, "", acfg->method_label_hash);
11724                         else
11725                                 cfg->asm_symbol = g_strdup_printf ("%s%sm_%x", acfg->temp_prefix, acfg->llvm_label_prefix, method_index);
11726                         cfg->asm_debug_symbol = cfg->asm_symbol;
11727                 }
11728         }
11729
11730         if (acfg->aot_opts.dwarf_debug && acfg->aot_opts.gnu_asm) {
11731                 /*
11732                  * CLANG supports GAS .file/.loc directives, so emit line number information this way
11733                  */
11734                 acfg->gas_line_numbers = TRUE;
11735         }
11736
11737 #ifdef EMIT_DWARF_INFO
11738         if ((!acfg->aot_opts.nodebug || acfg->aot_opts.dwarf_debug) && acfg->has_jitted_code) {
11739                 if (acfg->aot_opts.dwarf_debug && !mono_debug_enabled ()) {
11740                         aot_printerrf (acfg, "The dwarf AOT option requires the --debug option.\n");
11741                         return 1;
11742                 }
11743                 acfg->dwarf = mono_dwarf_writer_create (acfg->w, NULL, 0, !acfg->gas_line_numbers);
11744         }
11745 #endif /* EMIT_DWARF_INFO */
11746
11747         if (acfg->w)
11748                 mono_img_writer_emit_start (acfg->w);
11749
11750         if (acfg->dwarf)
11751                 mono_dwarf_writer_emit_base_info (acfg->dwarf, g_path_get_basename (acfg->image->name), mono_unwind_get_cie_program ());
11752
11753         emit_code (acfg);
11754
11755         emit_info (acfg);
11756
11757         emit_extra_methods (acfg);
11758
11759         emit_trampolines (acfg);
11760
11761         emit_class_name_table (acfg);
11762
11763         emit_got_info (acfg, FALSE);
11764         if (acfg->llvm)
11765                 emit_got_info (acfg, TRUE);
11766
11767         emit_exception_info (acfg);
11768
11769         emit_unwind_info (acfg);
11770
11771         emit_class_info (acfg);
11772
11773         emit_plt (acfg);
11774
11775         emit_image_table (acfg);
11776
11777         emit_got (acfg);
11778
11779         {
11780                 /*
11781                  * The managed allocators are GC specific, so can't use an AOT image created by one GC
11782                  * in another.
11783                  */
11784                 const char *gc_name = mono_gc_get_gc_name ();
11785                 acfg->gc_name_offset = add_to_blob (acfg, (guint8*)gc_name, strlen (gc_name) + 1);
11786         }
11787
11788         emit_blob (acfg);
11789
11790         emit_objc_selectors (acfg);
11791
11792         emit_globals (acfg);
11793
11794         emit_file_info (acfg);
11795
11796         emit_library_info (acfg);
11797
11798         if (acfg->dwarf) {
11799                 emit_dwarf_info (acfg);
11800                 mono_dwarf_writer_close (acfg->dwarf);
11801         }
11802
11803         emit_mem_end (acfg);
11804
11805         if (acfg->need_pt_gnu_stack) {
11806                 /* This is required so the .so doesn't have an executable stack */
11807                 /* The bin writer already emits this */
11808                 fprintf (acfg->fp, "\n.section  .note.GNU-stack,\"\",@progbits\n");
11809         }
11810
11811         if (acfg->aot_opts.data_outfile)
11812                 fclose (acfg->data_outfile);
11813
11814 #ifdef ENABLE_LLVM
11815         if (acfg->llvm) {
11816                 gboolean res;
11817
11818                 res = emit_llvm_file (acfg);
11819                 if (!res)
11820                         return 1;
11821         }
11822 #endif
11823
11824         TV_GETTIME (btv);
11825
11826         acfg->stats.gen_time = TV_ELAPSED (atv, btv);
11827
11828         if (acfg->llvm)
11829                 sprintf (llvm_stats_msg, ", LLVM: %d (%d%%)", acfg->stats.llvm_count, acfg->stats.mcount ? (acfg->stats.llvm_count * 100) / acfg->stats.mcount : 100);
11830         else
11831                 strcpy (llvm_stats_msg, "");
11832
11833         all_sizes = acfg->stats.code_size + acfg->stats.info_size + acfg->stats.ex_info_size + acfg->stats.unwind_info_size + acfg->stats.class_info_size + acfg->stats.got_info_size + acfg->stats.offsets_size + acfg->stats.plt_size;
11834
11835         aot_printf (acfg, "Code: %d(%d%%) Info: %d(%d%%) Ex Info: %d(%d%%) Unwind Info: %d(%d%%) Class Info: %d(%d%%) PLT: %d(%d%%) GOT Info: %d(%d%%) Offsets: %d(%d%%) GOT: %d\n",
11836                                 (int)acfg->stats.code_size, (int)(acfg->stats.code_size * 100 / all_sizes),
11837                                 (int)acfg->stats.info_size, (int)(acfg->stats.info_size * 100 / all_sizes),
11838                                 (int)acfg->stats.ex_info_size, (int)(acfg->stats.ex_info_size * 100 / all_sizes),
11839                                 (int)acfg->stats.unwind_info_size, (int)(acfg->stats.unwind_info_size * 100 / all_sizes),
11840                                 (int)acfg->stats.class_info_size, (int)(acfg->stats.class_info_size * 100 / all_sizes),
11841                                 acfg->stats.plt_size ? (int)acfg->stats.plt_size : (int)acfg->plt_offset, acfg->stats.plt_size ? (int)(acfg->stats.plt_size * 100 / all_sizes) : 0,
11842                                 (int)acfg->stats.got_info_size, (int)(acfg->stats.got_info_size * 100 / all_sizes),
11843                                 (int)acfg->stats.offsets_size, (int)(acfg->stats.offsets_size * 100 / all_sizes),
11844                         (int)(acfg->got_offset * sizeof (gpointer)));
11845         aot_printf (acfg, "Compiled: %d/%d (%d%%)%s, No GOT slots: %d (%d%%), Direct calls: %d (%d%%)\n", 
11846                         acfg->stats.ccount, acfg->stats.mcount, acfg->stats.mcount ? (acfg->stats.ccount * 100) / acfg->stats.mcount : 100,
11847                         llvm_stats_msg,
11848                         acfg->stats.methods_without_got_slots, acfg->stats.mcount ? (acfg->stats.methods_without_got_slots * 100) / acfg->stats.mcount : 100,
11849                         acfg->stats.direct_calls, acfg->stats.all_calls ? (acfg->stats.direct_calls * 100) / acfg->stats.all_calls : 100);
11850         if (acfg->stats.genericcount)
11851                 aot_printf (acfg, "%d methods are generic (%d%%)\n", acfg->stats.genericcount, acfg->stats.mcount ? (acfg->stats.genericcount * 100) / acfg->stats.mcount : 100);
11852         if (acfg->stats.abscount)
11853                 aot_printf (acfg, "%d methods contain absolute addresses (%d%%)\n", acfg->stats.abscount, acfg->stats.mcount ? (acfg->stats.abscount * 100) / acfg->stats.mcount : 100);
11854         if (acfg->stats.lmfcount)
11855                 aot_printf (acfg, "%d methods contain lmf pointers (%d%%)\n", acfg->stats.lmfcount, acfg->stats.mcount ? (acfg->stats.lmfcount * 100) / acfg->stats.mcount : 100);
11856         if (acfg->stats.ocount)
11857                 aot_printf (acfg, "%d methods have other problems (%d%%)\n", acfg->stats.ocount, acfg->stats.mcount ? (acfg->stats.ocount * 100) / acfg->stats.mcount : 100);
11858
11859         TV_GETTIME (atv);
11860         if (acfg->w) {
11861                 res = mono_img_writer_emit_writeout (acfg->w);
11862                 if (res != 0) {
11863                         acfg_free (acfg);
11864                         return res;
11865                 }
11866                 res = compile_asm (acfg);
11867                 if (res != 0) {
11868                         acfg_free (acfg);
11869                         return res;
11870                 }
11871         }
11872         TV_GETTIME (btv);
11873         acfg->stats.link_time = TV_ELAPSED (atv, btv);
11874
11875         if (acfg->aot_opts.stats) {
11876                 int i;
11877
11878                 aot_printf (acfg, "GOT slot distribution:\n");
11879                 for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11880                         if (acfg->stats.got_slot_types [i])
11881                                 aot_printf (acfg, "\t%s: %d (%d)\n", get_patch_name (i), acfg->stats.got_slot_types [i], acfg->stats.got_slot_info_sizes [i]);
11882                 aot_printf (acfg, "\nMethod stats:\n");
11883                 aot_printf (acfg, "\tNormal:    %d\n", acfg->stats.method_categories [METHOD_CAT_NORMAL]);
11884                 aot_printf (acfg, "\tInstance:  %d\n", acfg->stats.method_categories [METHOD_CAT_INST]);
11885                 aot_printf (acfg, "\tGSharedvt: %d\n", acfg->stats.method_categories [METHOD_CAT_GSHAREDVT]);
11886                 aot_printf (acfg, "\tWrapper:   %d\n", acfg->stats.method_categories [METHOD_CAT_WRAPPER]);
11887         }
11888
11889         aot_printf (acfg, "JIT time: %d ms, Generation time: %d ms, Assembly+Link time: %d ms.\n", acfg->stats.jit_time / 1000, acfg->stats.gen_time / 1000, acfg->stats.link_time / 1000);
11890
11891         if (acfg->aot_opts.dump_json)
11892                 aot_dump (acfg);
11893
11894         acfg_free (acfg);
11895         
11896         return 0;
11897 }
11898
11899 #else
11900
11901 /* AOT disabled */
11902
11903 void*
11904 mono_aot_readonly_field_override (MonoClassField *field)
11905 {
11906         return NULL;
11907 }
11908
11909 int
11910 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11911 {
11912         return 0;
11913 }
11914
11915 gboolean
11916 mono_aot_is_shared_got_offset (int offset)
11917 {
11918         return FALSE;
11919 }
11920
11921 #endif