[aot] fixes temp-path argument only working when using LLVM compiler. (#5099)
[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 (gpar->parent, NULL, klass->byval_arg.type == MONO_TYPE_MVAR), 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                 }
3982
3983                 /* write barriers */
3984                 if (mono_gc_is_moving ()) {
3985                         add_method (acfg, mono_gc_get_specific_write_barrier (FALSE));
3986                         add_method (acfg, mono_gc_get_specific_write_barrier (TRUE));
3987                 }
3988
3989                 /* Stelemref wrappers */
3990                 {
3991                         MonoMethod **wrappers;
3992                         int nwrappers;
3993
3994                         wrappers = mono_marshal_get_virtual_stelemref_wrappers (&nwrappers);
3995                         for (i = 0; i < nwrappers; ++i)
3996                                 add_method (acfg, wrappers [i]);
3997                         g_free (wrappers);
3998                 }
3999
4000                 /* castclass_with_check wrapper */
4001                 add_method (acfg, mono_marshal_get_castclass_with_cache ());
4002                 /* isinst_with_check wrapper */
4003                 add_method (acfg, mono_marshal_get_isinst_with_cache ());
4004
4005                 /* JIT icall wrappers */
4006                 /* FIXME: locking - this is "safe" as full-AOT threads don't mutate the icall hash*/
4007                 g_hash_table_foreach (mono_get_jit_icall_info (), add_jit_icall_wrapper, acfg);
4008         }
4009
4010         /* 
4011          * remoting-invoke-with-check wrappers are very frequent, so avoid emitting them,
4012          * we use the original method instead at runtime.
4013          * Since full-aot doesn't support remoting, this is not a problem.
4014          */
4015 #if 0
4016         /* remoting-invoke wrappers */
4017         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4018                 MonoError error;
4019                 MonoMethodSignature *sig;
4020                 
4021                 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4022                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4023                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4024
4025                 sig = mono_method_signature (method);
4026
4027                 if (sig->hasthis && (method->klass->marshalbyref || method->klass == mono_defaults.object_class)) {
4028                         m = mono_marshal_get_remoting_invoke_with_check (method);
4029
4030                         add_method (acfg, m);
4031                 }
4032         }
4033 #endif
4034
4035         /* delegate-invoke wrappers */
4036         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
4037                 MonoError error;
4038                 MonoClass *klass;
4039                 MonoCustomAttrInfo *cattr;
4040                 
4041                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
4042                 klass = mono_class_get_checked (acfg->image, token, &error);
4043
4044                 if (!klass) {
4045                         mono_error_cleanup (&error);
4046                         continue;
4047                 }
4048
4049                 if (!klass->delegate || klass == mono_defaults.delegate_class || klass == mono_defaults.multicastdelegate_class)
4050                         continue;
4051
4052                 if (!mono_class_is_gtd (klass)) {
4053                         method = mono_get_delegate_invoke (klass);
4054
4055                         m = mono_marshal_get_delegate_invoke (method, NULL);
4056
4057                         add_method (acfg, m);
4058
4059                         method = mono_class_get_method_from_name_flags (klass, "BeginInvoke", -1, 0);
4060                         if (method)
4061                                 add_method (acfg, mono_marshal_get_delegate_begin_invoke (method));
4062
4063                         method = mono_class_get_method_from_name_flags (klass, "EndInvoke", -1, 0);
4064                         if (method)
4065                                 add_method (acfg, mono_marshal_get_delegate_end_invoke (method));
4066
4067                         cattr = mono_custom_attrs_from_class_checked (klass, &error);
4068                         if (!is_ok (&error)) {
4069                                 mono_error_cleanup (&error);
4070                                 continue;
4071                         }
4072
4073                         if (cattr) {
4074                                 int j;
4075
4076                                 for (j = 0; j < cattr->num_attrs; ++j)
4077                                         if (cattr->attrs [j].ctor && (!strcmp (cattr->attrs [j].ctor->klass->name, "MonoNativeFunctionWrapperAttribute") || !strcmp (cattr->attrs [j].ctor->klass->name, "UnmanagedFunctionPointerAttribute")))
4078                                                 break;
4079                                 if (j < cattr->num_attrs) {
4080                                         MonoMethod *invoke;
4081                                         MonoMethod *wrapper;
4082                                         MonoMethod *del_invoke;
4083
4084                                         /* Add wrappers needed by mono_ftnptr_to_delegate () */
4085                                         invoke = mono_get_delegate_invoke (klass);
4086                                         wrapper = mono_marshal_get_native_func_wrapper_aot (klass);
4087                                         del_invoke = mono_marshal_get_delegate_invoke_internal (invoke, FALSE, TRUE, wrapper);
4088                                         add_method (acfg, wrapper);
4089                                         add_method (acfg, del_invoke);
4090                                 }
4091                         }
4092                 } else if ((acfg->opts & MONO_OPT_GSHAREDVT) && mono_class_is_gtd (klass)) {
4093                         MonoError error;
4094                         MonoGenericContext ctx;
4095                         MonoMethod *inst, *gshared;
4096
4097                         /*
4098                          * Emit gsharedvt versions of the generic delegate-invoke wrappers
4099                          */
4100                         /* Invoke */
4101                         method = mono_get_delegate_invoke (klass);
4102                         create_gsharedvt_inst (acfg, method, &ctx);
4103
4104                         inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4105                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4106
4107                         m = mono_marshal_get_delegate_invoke (inst, NULL);
4108                         g_assert (m->is_inflated);
4109
4110                         gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4111                         add_extra_method (acfg, gshared);
4112
4113                         /* begin-invoke */
4114                         method = mono_get_delegate_begin_invoke (klass);
4115                         if (method) {
4116                                 create_gsharedvt_inst (acfg, method, &ctx);
4117
4118                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4119                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4120
4121                                 m = mono_marshal_get_delegate_begin_invoke (inst);
4122                                 g_assert (m->is_inflated);
4123
4124                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4125                                 add_extra_method (acfg, gshared);
4126                         }
4127
4128                         /* end-invoke */
4129                         method = mono_get_delegate_end_invoke (klass);
4130                         if (method) {
4131                                 create_gsharedvt_inst (acfg, method, &ctx);
4132
4133                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4134                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4135
4136                                 m = mono_marshal_get_delegate_end_invoke (inst);
4137                                 g_assert (m->is_inflated);
4138
4139                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4140                                 add_extra_method (acfg, gshared);
4141                         }
4142                 }
4143         }
4144
4145         /* array access wrappers */
4146         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows; ++i) {
4147                 MonoError error;
4148                 MonoClass *klass;
4149                 
4150                 token = MONO_TOKEN_TYPE_SPEC | (i + 1);
4151                 klass = mono_class_get_checked (acfg->image, token, &error);
4152
4153                 if (!klass) {
4154                         mono_error_cleanup (&error);
4155                         continue;
4156                 }
4157
4158                 if (klass->rank && MONO_TYPE_IS_PRIMITIVE (&klass->element_class->byval_arg)) {
4159                         MonoMethod *m, *wrapper;
4160
4161                         /* Add runtime-invoke wrappers too */
4162
4163                         m = mono_class_get_method_from_name (klass, "Get", -1);
4164                         g_assert (m);
4165                         wrapper = mono_marshal_get_array_accessor_wrapper (m);
4166                         add_extra_method (acfg, wrapper);
4167                         if (!acfg->aot_opts.llvm_only)
4168                                 add_extra_method (acfg, get_runtime_invoke (acfg, wrapper, FALSE));
4169
4170                         m = mono_class_get_method_from_name (klass, "Set", -1);
4171                         g_assert (m);
4172                         wrapper = mono_marshal_get_array_accessor_wrapper (m);
4173                         add_extra_method (acfg, wrapper);
4174                         if (!acfg->aot_opts.llvm_only)
4175                                 add_extra_method (acfg, get_runtime_invoke (acfg, wrapper, FALSE));
4176                 }
4177         }
4178
4179         /* Synchronized wrappers */
4180         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4181                 MonoError error;
4182                 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4183                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4184                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4185
4186                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) {
4187                         if (method->is_generic) {
4188                                 // FIXME:
4189                         } else if ((acfg->opts & MONO_OPT_GSHAREDVT) && mono_class_is_gtd (method->klass)) {
4190                                 MonoError error;
4191                                 MonoGenericContext ctx;
4192                                 MonoMethod *inst, *gshared, *m;
4193
4194                                 /*
4195                                  * Create a generic wrapper for a generic instance, and AOT that.
4196                                  */
4197                                 create_gsharedvt_inst (acfg, method, &ctx);
4198                                 inst = mono_class_inflate_generic_method_checked (method, &ctx, &error);
4199                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4200                                 m = mono_marshal_get_synchronized_wrapper (inst);
4201                                 g_assert (m->is_inflated);
4202                                 gshared = mini_get_shared_method_full (m, FALSE, TRUE);
4203                                 add_method (acfg, gshared);
4204                         } else {
4205                                 add_method (acfg, mono_marshal_get_synchronized_wrapper (method));
4206                         }
4207                 }
4208         }
4209
4210         /* pinvoke wrappers */
4211         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4212                 MonoError error;
4213                 MonoMethod *method;
4214                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4215
4216                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4217                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4218
4219                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4220                         (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
4221                         add_method (acfg, mono_marshal_get_native_wrapper (method, TRUE, TRUE));
4222                 }
4223
4224                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
4225                         if (acfg->aot_opts.llvm_only) {
4226                                 /* The wrappers have a different signature (hasthis is not set) so need to add this too */
4227                                 add_gsharedvt_wrappers (acfg, mono_method_signature (method), FALSE, TRUE);
4228                         }
4229                 }
4230         }
4231  
4232         /* native-to-managed wrappers */
4233         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
4234                 MonoError error;
4235                 MonoMethod *method;
4236                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
4237                 MonoCustomAttrInfo *cattr;
4238                 int j;
4239
4240                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4241                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
4242
4243                 /* 
4244                  * Only generate native-to-managed wrappers for methods which have an
4245                  * attribute named MonoPInvokeCallbackAttribute. We search for the attribute by
4246                  * name to avoid defining a new assembly to contain it.
4247                  */
4248                 cattr = mono_custom_attrs_from_method_checked (method, &error);
4249                 if (!is_ok (&error)) {
4250                         char *name = mono_method_get_full_name (method);
4251                         report_loader_error (acfg, &error, "Failed to load custom attributes from method %s due to %s\n", name, mono_error_get_message (&error));
4252                         g_free (name);
4253                 }
4254
4255                 if (cattr) {
4256                         for (j = 0; j < cattr->num_attrs; ++j)
4257                                 if (cattr->attrs [j].ctor && !strcmp (cattr->attrs [j].ctor->klass->name, "MonoPInvokeCallbackAttribute"))
4258                                         break;
4259                         if (j < cattr->num_attrs) {
4260                                 MonoCustomAttrEntry *e = &cattr->attrs [j];
4261                                 MonoMethodSignature *sig = mono_method_signature (e->ctor);
4262                                 const char *p = (const char*)e->data;
4263                                 const char *named;
4264                                 int slen, num_named, named_type;
4265                                 char *n;
4266                                 MonoType *t;
4267                                 MonoClass *klass;
4268                                 char *export_name = NULL;
4269                                 MonoMethod *wrapper;
4270
4271                                 /* this cannot be enforced by the C# compiler so we must give the user some warning before aborting */
4272                                 if (!(method->flags & METHOD_ATTRIBUTE_STATIC)) {
4273                                         g_warning ("AOT restriction: Method '%s' must be static since it is decorated with [MonoPInvokeCallback]. See http://ios.xamarin.com/Documentation/Limitations#Reverse_Callbacks", 
4274                                                 mono_method_full_name (method, TRUE));
4275                                         exit (1);
4276                                 }
4277
4278                                 g_assert (sig->param_count == 1);
4279                                 g_assert (sig->params [0]->type == MONO_TYPE_CLASS && !strcmp (mono_class_from_mono_type (sig->params [0])->name, "Type"));
4280
4281                                 /* 
4282                                  * Decode the cattr manually since we can't create objects
4283                                  * during aot compilation.
4284                                  */
4285                                         
4286                                 /* Skip prolog */
4287                                 p += 2;
4288
4289                                 /* From load_cattr_value () in reflection.c */
4290                                 slen = mono_metadata_decode_value (p, &p);
4291                                 n = (char *)g_memdup (p, slen + 1);
4292                                 n [slen] = 0;
4293                                 t = mono_reflection_type_from_name_checked (n, acfg->image, &error);
4294                                 g_assert (t);
4295                                 mono_error_assert_ok (&error);
4296                                 g_free (n);
4297
4298                                 klass = mono_class_from_mono_type (t);
4299                                 g_assert (klass->parent == mono_defaults.multicastdelegate_class);
4300
4301                                 p += slen;
4302
4303                                 num_named = read16 (p);
4304                                 p += 2;
4305
4306                                 g_assert (num_named < 2);
4307                                 if (num_named == 1) {
4308                                         int name_len;
4309                                         char *name;
4310
4311                                         /* parse ExportSymbol attribute */
4312                                         named = p;
4313                                         named_type = *named;
4314                                         named += 1;
4315                                         /* data_type = *named; */
4316                                         named += 1;
4317
4318                                         name_len = mono_metadata_decode_blob_size (named, &named);
4319                                         name = (char *)g_malloc (name_len + 1);
4320                                         memcpy (name, named, name_len);
4321                                         name [name_len] = 0;
4322                                         named += name_len;
4323
4324                                         g_assert (named_type == 0x54);
4325                                         g_assert (!strcmp (name, "ExportSymbol"));
4326
4327                                         /* load_cattr_value (), string case */
4328                                         g_assert (*named != (char)0xff);
4329                                         slen = mono_metadata_decode_value (named, &named);
4330                                         export_name = (char *)g_malloc (slen + 1);
4331                                         memcpy (export_name, named, slen);
4332                                         export_name [slen] = 0;
4333                                         named += slen;
4334                                 }
4335
4336                                 wrapper = mono_marshal_get_managed_wrapper (method, klass, 0, &error);
4337                                 mono_error_assert_ok (&error);
4338
4339                                 add_method (acfg, wrapper);
4340                                 if (export_name)
4341                                         g_hash_table_insert (acfg->export_names, wrapper, export_name);
4342                         }
4343                         g_free (cattr);
4344                 }
4345
4346                 if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4347                         (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
4348                         add_method (acfg, mono_marshal_get_native_wrapper (method, TRUE, TRUE));
4349                 }
4350         }
4351
4352         /* StructureToPtr/PtrToStructure wrappers */
4353         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
4354                 MonoError error;
4355                 MonoClass *klass;
4356                 
4357                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
4358                 klass = mono_class_get_checked (acfg->image, token, &error);
4359
4360                 if (!klass) {
4361                         mono_error_cleanup (&error);
4362                         continue;
4363                 }
4364
4365                 if (klass->valuetype && !mono_class_is_gtd (klass) && can_marshal_struct (klass) &&
4366                         !(klass->nested_in && strstr (klass->nested_in->name, "<PrivateImplementationDetails>") == klass->nested_in->name)) {
4367                         add_method (acfg, mono_marshal_get_struct_to_ptr (klass));
4368                         add_method (acfg, mono_marshal_get_ptr_to_struct (klass));
4369                 }
4370         }
4371 }
4372
4373 static gboolean
4374 has_type_vars (MonoClass *klass)
4375 {
4376         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
4377                 return TRUE;
4378         if (klass->rank)
4379                 return has_type_vars (klass->element_class);
4380         if (mono_class_is_ginst (klass)) {
4381                 MonoGenericContext *context = &mono_class_get_generic_class (klass)->context;
4382                 if (context->class_inst) {
4383                         int i;
4384
4385                         for (i = 0; i < context->class_inst->type_argc; ++i)
4386                                 if (has_type_vars (mono_class_from_mono_type (context->class_inst->type_argv [i])))
4387                                         return TRUE;
4388                 }
4389         }
4390         if (mono_class_is_gtd (klass))
4391                 return TRUE;
4392         return FALSE;
4393 }
4394
4395 static gboolean
4396 is_vt_inst (MonoGenericInst *inst)
4397 {
4398         int i;
4399
4400         for (i = 0; i < inst->type_argc; ++i) {
4401                 MonoType *t = inst->type_argv [i];
4402                 if (MONO_TYPE_ISSTRUCT (t) || t->type == MONO_TYPE_VALUETYPE)
4403                         return TRUE;
4404         }
4405         return FALSE;
4406 }
4407
4408 static gboolean
4409 method_has_type_vars (MonoMethod *method)
4410 {
4411         if (has_type_vars (method->klass))
4412                 return TRUE;
4413
4414         if (method->is_inflated) {
4415                 MonoGenericContext *context = mono_method_get_context (method);
4416                 if (context->method_inst) {
4417                         int i;
4418
4419                         for (i = 0; i < context->method_inst->type_argc; ++i)
4420                                 if (has_type_vars (mono_class_from_mono_type (context->method_inst->type_argv [i])))
4421                                         return TRUE;
4422                 }
4423         }
4424         return FALSE;
4425 }
4426
4427 static
4428 gboolean mono_aot_mode_is_full (MonoAotOptions *opts)
4429 {
4430         return opts->mode == MONO_AOT_MODE_FULL || opts->mode == MONO_AOT_MODE_INTERP;
4431 }
4432
4433 static
4434 gboolean mono_aot_mode_is_interp (MonoAotOptions *opts)
4435 {
4436         return opts->mode == MONO_AOT_MODE_INTERP;
4437 }
4438
4439 static
4440 gboolean mono_aot_mode_is_hybrid (MonoAotOptions *opts)
4441 {
4442         return opts->mode == MONO_AOT_MODE_HYBRID;
4443 }
4444
4445 static void add_generic_class_with_depth (MonoAotCompile *acfg, MonoClass *klass, int depth, const char *ref);
4446
4447 static void
4448 add_generic_class (MonoAotCompile *acfg, MonoClass *klass, gboolean force, const char *ref)
4449 {
4450         /* This might lead to a huge code blowup so only do it if neccesary */
4451         if (!mono_aot_mode_is_full (&acfg->aot_opts) && !mono_aot_mode_is_hybrid (&acfg->aot_opts) && !force)
4452                 return;
4453
4454         add_generic_class_with_depth (acfg, klass, 0, ref);
4455 }
4456
4457 static gboolean
4458 check_type_depth (MonoType *t, int depth)
4459 {
4460         int i;
4461
4462         if (depth > 8)
4463                 return TRUE;
4464
4465         switch (t->type) {
4466         case MONO_TYPE_GENERICINST: {
4467                 MonoGenericClass *gklass = t->data.generic_class;
4468                 MonoGenericInst *ginst = gklass->context.class_inst;
4469
4470                 if (ginst) {
4471                         for (i = 0; i < ginst->type_argc; ++i) {
4472                                 if (check_type_depth (ginst->type_argv [i], depth + 1))
4473                                         return TRUE;
4474                         }
4475                 }
4476                 break;
4477         }
4478         default:
4479                 break;
4480         }
4481
4482         return FALSE;
4483 }
4484
4485 static void
4486 add_types_from_method_header (MonoAotCompile *acfg, MonoMethod *method);
4487
4488 /*
4489  * add_generic_class:
4490  *
4491  *   Add all methods of a generic class.
4492  */
4493 static void
4494 add_generic_class_with_depth (MonoAotCompile *acfg, MonoClass *klass, int depth, const char *ref)
4495 {
4496         MonoMethod *method;
4497         MonoClassField *field;
4498         gpointer iter;
4499         gboolean use_gsharedvt = FALSE;
4500
4501         if (!acfg->ginst_hash)
4502                 acfg->ginst_hash = g_hash_table_new (NULL, NULL);
4503
4504         mono_class_init (klass);
4505
4506         if (mono_class_is_ginst (klass) && mono_class_get_generic_class (klass)->context.class_inst->is_open)
4507                 return;
4508
4509         if (has_type_vars (klass))
4510                 return;
4511
4512         if (!mono_class_is_ginst (klass) && !klass->rank)
4513                 return;
4514
4515         if (mono_class_has_failure (klass))
4516                 return;
4517
4518         if (!acfg->ginst_hash)
4519                 acfg->ginst_hash = g_hash_table_new (NULL, NULL);
4520
4521         if (g_hash_table_lookup (acfg->ginst_hash, klass))
4522                 return;
4523
4524         if (check_type_depth (&klass->byval_arg, 0))
4525                 return;
4526
4527         if (acfg->aot_opts.log_generics)
4528                 aot_printf (acfg, "%*sAdding generic instance %s [%s].\n", depth, "", mono_type_full_name (&klass->byval_arg), ref);
4529
4530         g_hash_table_insert (acfg->ginst_hash, klass, klass);
4531
4532         /*
4533          * Use gsharedvt for generic collections with vtype arguments to avoid code blowup.
4534          * Enable this only for some classes since gsharedvt might not support all methods.
4535          */
4536         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) &&
4537                 (!strcmp (klass->name, "Dictionary`2") || !strcmp (klass->name, "List`1") || !strcmp (klass->name, "ReadOnlyCollection`1")))
4538                 use_gsharedvt = TRUE;
4539
4540         iter = NULL;
4541         while ((method = mono_class_get_methods (klass, &iter))) {
4542                 if ((acfg->opts & MONO_OPT_GSHAREDVT) && method->is_inflated && mono_method_get_context (method)->method_inst) {
4543                         /*
4544                          * This is partial sharing, and we can't handle it yet
4545                          */
4546                         continue;
4547                 }
4548                 
4549                 if (mono_method_is_generic_sharable_full (method, FALSE, FALSE, use_gsharedvt)) {
4550                         /* Already added */
4551                         add_types_from_method_header (acfg, method);
4552                         continue;
4553                 }
4554
4555                 if (method->is_generic)
4556                         /* FIXME: */
4557                         continue;
4558
4559                 /*
4560                  * FIXME: Instances which are referenced by these methods are not added,
4561                  * for example Array.Resize<int> for List<int>.Add ().
4562                  */
4563                 add_extra_method_with_depth (acfg, method, depth + 1);
4564         }
4565
4566         iter = NULL;
4567         while ((field = mono_class_get_fields (klass, &iter))) {
4568                 if (field->type->type == MONO_TYPE_GENERICINST)
4569                         add_generic_class_with_depth (acfg, mono_class_from_mono_type (field->type), depth + 1, "field");
4570         }
4571
4572         if (klass->delegate) {
4573                 method = mono_get_delegate_invoke (klass);
4574
4575                 method = mono_marshal_get_delegate_invoke (method, NULL);
4576
4577                 if (acfg->aot_opts.log_generics)
4578                         aot_printf (acfg, "%*sAdding method %s.\n", depth, "", mono_method_get_full_name (method));
4579
4580                 add_method (acfg, method);
4581         }
4582
4583         /* Add superclasses */
4584         if (klass->parent)
4585                 add_generic_class_with_depth (acfg, klass->parent, depth, "parent");
4586
4587         /* 
4588          * For ICollection<T>, add instances of the helper methods
4589          * in Array, since a T[] could be cast to ICollection<T>.
4590          */
4591         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") &&
4592                 (!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"))) {
4593                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4594                 MonoClass *array_class = mono_bounded_array_class_get (tclass, 1, FALSE);
4595                 gpointer iter;
4596                 char *name_prefix;
4597
4598                 if (!strcmp (klass->name, "IEnumerator`1"))
4599                         name_prefix = g_strdup_printf ("%s.%s", klass->name_space, "IEnumerable`1");
4600                 else
4601                         name_prefix = g_strdup_printf ("%s.%s", klass->name_space, klass->name);
4602
4603                 /* Add the T[]/InternalEnumerator class */
4604                 if (!strcmp (klass->name, "IEnumerable`1") || !strcmp (klass->name, "IEnumerator`1")) {
4605                         MonoError error;
4606                         MonoClass *nclass;
4607
4608                         iter = NULL;
4609                         while ((nclass = mono_class_get_nested_types (array_class->parent, &iter))) {
4610                                 if (!strcmp (nclass->name, "InternalEnumerator`1"))
4611                                         break;
4612                         }
4613                         g_assert (nclass);
4614                         nclass = mono_class_inflate_generic_class_checked (nclass, mono_generic_class_get_context (mono_class_get_generic_class (klass)), &error);
4615                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4616                         add_generic_class (acfg, nclass, FALSE, "ICollection<T>");
4617                 }
4618
4619                 iter = NULL;
4620                 while ((method = mono_class_get_methods (array_class, &iter))) {
4621                         if (strstr (method->name, name_prefix)) {
4622                                 MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4623
4624                                 add_extra_method_with_depth (acfg, m, depth);
4625                         }
4626                 }
4627
4628                 g_free (name_prefix);
4629         }
4630
4631         /* Add an instance of GenericComparer<T> which is created dynamically by Comparer<T> */
4632         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "Comparer`1")) {
4633                 MonoError error;
4634                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4635                 MonoClass *icomparable, *gcomparer, *icomparable_inst;
4636                 MonoGenericContext ctx;
4637                 MonoType *args [16];
4638
4639                 memset (&ctx, 0, sizeof (ctx));
4640
4641                 icomparable = mono_class_load_from_name (mono_defaults.corlib, "System", "IComparable`1");
4642
4643                 args [0] = &tclass->byval_arg;
4644                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4645
4646                 icomparable_inst = mono_class_inflate_generic_class_checked (icomparable, &ctx, &error);
4647                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4648
4649                 if (mono_class_is_assignable_from (icomparable_inst, tclass)) {
4650                         MonoClass *gcomparer_inst;
4651                         gcomparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "GenericComparer`1");
4652                         gcomparer_inst = mono_class_inflate_generic_class_checked (gcomparer, &ctx, &error);
4653                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4654
4655                         add_generic_class (acfg, gcomparer_inst, FALSE, "Comparer<T>");
4656                 }
4657         }
4658
4659         /* Add an instance of GenericEqualityComparer<T> which is created dynamically by EqualityComparer<T> */
4660         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "EqualityComparer`1")) {
4661                 MonoError error;
4662                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4663                 MonoClass *iface, *gcomparer, *iface_inst;
4664                 MonoGenericContext ctx;
4665                 MonoType *args [16];
4666
4667                 memset (&ctx, 0, sizeof (ctx));
4668
4669                 iface = mono_class_load_from_name (mono_defaults.corlib, "System", "IEquatable`1");
4670                 g_assert (iface);
4671                 args [0] = &tclass->byval_arg;
4672                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4673
4674                 iface_inst = mono_class_inflate_generic_class_checked (iface, &ctx, &error);
4675                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4676
4677                 if (mono_class_is_assignable_from (iface_inst, tclass)) {
4678                         MonoClass *gcomparer_inst;
4679                         MonoError error;
4680
4681                         gcomparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "GenericEqualityComparer`1");
4682                         gcomparer_inst = mono_class_inflate_generic_class_checked (gcomparer, &ctx, &error);
4683                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4684                         add_generic_class (acfg, gcomparer_inst, FALSE, "EqualityComparer<T>");
4685                 }
4686         }
4687
4688         /* Add an instance of EnumComparer<T> which is created dynamically by EqualityComparer<T> for enums */
4689         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "EqualityComparer`1")) {
4690                 MonoClass *enum_comparer;
4691                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4692                 MonoGenericContext ctx;
4693                 MonoType *args [16];
4694
4695                 if (mono_class_is_enum (tclass)) {
4696                         MonoClass *enum_comparer_inst;
4697                         MonoError error;
4698
4699                         memset (&ctx, 0, sizeof (ctx));
4700                         args [0] = &tclass->byval_arg;
4701                         ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4702
4703                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "EnumEqualityComparer`1");
4704                         enum_comparer_inst = mono_class_inflate_generic_class_checked (enum_comparer, &ctx, &error);
4705                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4706                         add_generic_class (acfg, enum_comparer_inst, FALSE, "EqualityComparer<T>");
4707                 }
4708         }
4709
4710         /* Add an instance of ObjectComparer<T> which is created dynamically by Comparer<T> for enums */
4711         if (klass->image == mono_defaults.corlib && !strcmp (klass->name_space, "System.Collections.Generic") && !strcmp (klass->name, "Comparer`1")) {
4712                 MonoClass *comparer;
4713                 MonoClass *tclass = mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
4714                 MonoGenericContext ctx;
4715                 MonoType *args [16];
4716
4717                 if (mono_class_is_enum (tclass)) {
4718                         MonoClass *comparer_inst;
4719                         MonoError error;
4720
4721                         memset (&ctx, 0, sizeof (ctx));
4722                         args [0] = &tclass->byval_arg;
4723                         ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4724
4725                         comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "ObjectComparer`1");
4726                         comparer_inst = mono_class_inflate_generic_class_checked (comparer, &ctx, &error);
4727                         mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4728                         add_generic_class (acfg, comparer_inst, FALSE, "Comparer<T>");
4729                 }
4730         }
4731 }
4732
4733 static void
4734 add_instances_of (MonoAotCompile *acfg, MonoClass *klass, MonoType **insts, int ninsts, gboolean force)
4735 {
4736         int i;
4737         MonoGenericContext ctx;
4738         MonoType *args [16];
4739
4740         if (acfg->aot_opts.no_instances)
4741                 return;
4742
4743         memset (&ctx, 0, sizeof (ctx));
4744
4745         for (i = 0; i < ninsts; ++i) {
4746                 MonoError error;
4747                 MonoClass *generic_inst;
4748                 args [0] = insts [i];
4749                 ctx.class_inst = mono_metadata_get_generic_inst (1, args);
4750                 generic_inst = mono_class_inflate_generic_class_checked (klass, &ctx, &error);
4751                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
4752                 add_generic_class (acfg, generic_inst, force, "");
4753         }
4754 }
4755
4756 static void
4757 add_types_from_method_header (MonoAotCompile *acfg, MonoMethod *method)
4758 {
4759         MonoError error;
4760         MonoMethodHeader *header;
4761         MonoMethodSignature *sig;
4762         int j, depth;
4763
4764         depth = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_depth, method));
4765
4766         sig = mono_method_signature (method);
4767
4768         if (sig) {
4769                 for (j = 0; j < sig->param_count; ++j)
4770                         if (sig->params [j]->type == MONO_TYPE_GENERICINST)
4771                                 add_generic_class_with_depth (acfg, mono_class_from_mono_type (sig->params [j]), depth + 1, "arg");
4772         }
4773
4774         header = mono_method_get_header_checked (method, &error);
4775
4776         if (header) {
4777                 for (j = 0; j < header->num_locals; ++j)
4778                         if (header->locals [j]->type == MONO_TYPE_GENERICINST)
4779                                 add_generic_class_with_depth (acfg, mono_class_from_mono_type (header->locals [j]), depth + 1, "local");
4780                 mono_metadata_free_mh (header);
4781         } else {
4782                 mono_error_cleanup (&error); /* FIXME report the error */
4783         }
4784
4785 }
4786
4787 /*
4788  * add_generic_instances:
4789  *
4790  *   Add instances referenced by the METHODSPEC/TYPESPEC table.
4791  */
4792 static void
4793 add_generic_instances (MonoAotCompile *acfg)
4794 {
4795         int i;
4796         guint32 token;
4797         MonoMethod *method;
4798         MonoGenericContext *context;
4799
4800         if (acfg->aot_opts.no_instances)
4801                 return;
4802
4803         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHODSPEC].rows; ++i) {
4804                 MonoError error;
4805                 token = MONO_TOKEN_METHOD_SPEC | (i + 1);
4806                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
4807
4808                 if (!method) {
4809                         aot_printerrf (acfg, "Failed to load methodspec 0x%x due to %s.\n", token, mono_error_get_message (&error));
4810                         aot_printerrf (acfg, "Run with MONO_LOG_LEVEL=debug for more information.\n");
4811                         mono_error_cleanup (&error);
4812                         continue;
4813                 }
4814
4815                 if (method->klass->image != acfg->image)
4816                         continue;
4817
4818                 context = mono_method_get_context (method);
4819
4820                 if (context && ((context->class_inst && context->class_inst->is_open)))
4821                         continue;
4822
4823                 /*
4824                  * For open methods, create an instantiation which can be passed to the JIT.
4825                  * FIXME: Handle class_inst as well.
4826                  */
4827                 if (context && context->method_inst && context->method_inst->is_open) {
4828                         MonoError error;
4829                         MonoGenericContext shared_context;
4830                         MonoGenericInst *inst;
4831                         MonoType **type_argv;
4832                         int i;
4833                         MonoMethod *declaring_method;
4834                         gboolean supported = TRUE;
4835
4836                         /* Check that the context doesn't contain open constructed types */
4837                         if (context->class_inst) {
4838                                 inst = context->class_inst;
4839                                 for (i = 0; i < inst->type_argc; ++i) {
4840                                         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)
4841                                                 continue;
4842                                         if (mono_class_is_open_constructed_type (inst->type_argv [i]))
4843                                                 supported = FALSE;
4844                                 }
4845                         }
4846                         if (context->method_inst) {
4847                                 inst = context->method_inst;
4848                                 for (i = 0; i < inst->type_argc; ++i) {
4849                                         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)
4850                                                 continue;
4851                                         if (mono_class_is_open_constructed_type (inst->type_argv [i]))
4852                                                 supported = FALSE;
4853                                 }
4854                         }
4855
4856                         if (!supported)
4857                                 continue;
4858
4859                         memset (&shared_context, 0, sizeof (MonoGenericContext));
4860
4861                         inst = context->class_inst;
4862                         if (inst) {
4863                                 type_argv = g_new0 (MonoType*, inst->type_argc);
4864                                 for (i = 0; i < inst->type_argc; ++i) {
4865                                         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)
4866                                                 type_argv [i] = &mono_defaults.object_class->byval_arg;
4867                                         else
4868                                                 type_argv [i] = inst->type_argv [i];
4869                                 }
4870                                 
4871                                 shared_context.class_inst = mono_metadata_get_generic_inst (inst->type_argc, type_argv);
4872                                 g_free (type_argv);
4873                         }
4874
4875                         inst = context->method_inst;
4876                         if (inst) {
4877                                 type_argv = g_new0 (MonoType*, inst->type_argc);
4878                                 for (i = 0; i < inst->type_argc; ++i) {
4879                                         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)
4880                                                 type_argv [i] = &mono_defaults.object_class->byval_arg;
4881                                         else
4882                                                 type_argv [i] = inst->type_argv [i];
4883                                 }
4884
4885                                 shared_context.method_inst = mono_metadata_get_generic_inst (inst->type_argc, type_argv);
4886                                 g_free (type_argv);
4887                         }
4888
4889                         if (method->is_generic || mono_class_is_gtd (method->klass))
4890                                 declaring_method = method;
4891                         else
4892                                 declaring_method = mono_method_get_declaring_generic_method (method);
4893
4894                         method = mono_class_inflate_generic_method_checked (declaring_method, &shared_context, &error);
4895                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
4896                 }
4897
4898                 /* 
4899                  * If the method is fully sharable, it was already added in place of its
4900                  * generic definition.
4901                  */
4902                 if (mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE))
4903                         continue;
4904
4905                 /*
4906                  * FIXME: Partially shared methods are not shared here, so we end up with
4907                  * many identical methods.
4908                  */
4909                 add_extra_method (acfg, method);
4910         }
4911
4912         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows; ++i) {
4913                 MonoError error;
4914                 MonoClass *klass;
4915
4916                 token = MONO_TOKEN_TYPE_SPEC | (i + 1);
4917
4918                 klass = mono_class_get_checked (acfg->image, token, &error);
4919                 if (!klass || klass->rank) {
4920                         mono_error_cleanup (&error);
4921                         continue;
4922                 }
4923
4924                 add_generic_class (acfg, klass, FALSE, "typespec");
4925         }
4926
4927         /* Add types of args/locals */
4928         for (i = 0; i < acfg->methods->len; ++i) {
4929                 method = (MonoMethod *)g_ptr_array_index (acfg->methods, i);
4930                 add_types_from_method_header (acfg, method);
4931         }
4932
4933         if (acfg->image == mono_defaults.corlib) {
4934                 MonoClass *klass;
4935                 MonoType *insts [256];
4936                 int ninsts = 0;
4937
4938                 insts [ninsts ++] = &mono_defaults.byte_class->byval_arg;
4939                 insts [ninsts ++] = &mono_defaults.sbyte_class->byval_arg;
4940                 insts [ninsts ++] = &mono_defaults.int16_class->byval_arg;
4941                 insts [ninsts ++] = &mono_defaults.uint16_class->byval_arg;
4942                 insts [ninsts ++] = &mono_defaults.int32_class->byval_arg;
4943                 insts [ninsts ++] = &mono_defaults.uint32_class->byval_arg;
4944                 insts [ninsts ++] = &mono_defaults.int64_class->byval_arg;
4945                 insts [ninsts ++] = &mono_defaults.uint64_class->byval_arg;
4946                 insts [ninsts ++] = &mono_defaults.single_class->byval_arg;
4947                 insts [ninsts ++] = &mono_defaults.double_class->byval_arg;
4948                 insts [ninsts ++] = &mono_defaults.char_class->byval_arg;
4949                 insts [ninsts ++] = &mono_defaults.boolean_class->byval_arg;
4950
4951                 /* Add GenericComparer<T> instances for primitive types for Enum.ToString () */
4952                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "GenericComparer`1");
4953                 if (klass)
4954                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4955                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "GenericEqualityComparer`1");
4956                 if (klass)
4957                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4958
4959                 /* Add instances of EnumEqualityComparer which are created by EqualityComparer<T> for enums */
4960                 {
4961                         MonoClass *enum_comparer;
4962                         MonoType *insts [16];
4963                         int ninsts;
4964
4965                         ninsts = 0;
4966                         insts [ninsts ++] = &mono_defaults.int32_class->byval_arg;
4967                         insts [ninsts ++] = &mono_defaults.uint32_class->byval_arg;
4968                         insts [ninsts ++] = &mono_defaults.uint16_class->byval_arg;
4969                         insts [ninsts ++] = &mono_defaults.byte_class->byval_arg;
4970                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "EnumEqualityComparer`1");
4971                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4972
4973                         ninsts = 0;
4974                         insts [ninsts ++] = &mono_defaults.int16_class->byval_arg;
4975                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "ShortEnumEqualityComparer`1");
4976                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4977
4978                         ninsts = 0;
4979                         insts [ninsts ++] = &mono_defaults.sbyte_class->byval_arg;
4980                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "SByteEnumEqualityComparer`1");
4981                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4982
4983                         enum_comparer = mono_class_load_from_name (mono_defaults.corlib, "System.Collections.Generic", "LongEnumEqualityComparer`1");
4984                         ninsts = 0;
4985                         insts [ninsts ++] = &mono_defaults.int64_class->byval_arg;
4986                         insts [ninsts ++] = &mono_defaults.uint64_class->byval_arg;
4987                         add_instances_of (acfg, enum_comparer, insts, ninsts, FALSE);
4988                 }
4989
4990                 /* Add instances of the array generic interfaces for primitive types */
4991                 /* This will add instances of the InternalArray_ helper methods in Array too */
4992                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "ICollection`1");
4993                 if (klass)
4994                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4995
4996                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "IList`1");
4997                 if (klass)
4998                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
4999
5000                 klass = mono_class_try_load_from_name (acfg->image, "System.Collections.Generic", "IEnumerable`1");
5001                 if (klass)
5002                         add_instances_of (acfg, klass, insts, ninsts, TRUE);
5003
5004                 /* 
5005                  * Add a managed-to-native wrapper of Array.GetGenericValueImpl<object>, which is
5006                  * used for all instances of GetGenericValueImpl by the AOT runtime.
5007                  */
5008                 {
5009                         MonoGenericContext ctx;
5010                         MonoType *args [16];
5011                         MonoMethod *get_method;
5012                         MonoClass *array_klass = mono_array_class_get (mono_defaults.object_class, 1)->parent;
5013
5014                         get_method = mono_class_get_method_from_name (array_klass, "GetGenericValueImpl", 2);
5015
5016                         if (get_method) {
5017                                 MonoError error;
5018                                 memset (&ctx, 0, sizeof (ctx));
5019                                 args [0] = &mono_defaults.object_class->byval_arg;
5020                                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5021                                 add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (get_method, &ctx, &error), TRUE, TRUE));
5022                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5023                         }
5024                 }
5025
5026                 /* Same for CompareExchange<T>/Exchange<T> */
5027                 {
5028                         MonoGenericContext ctx;
5029                         MonoType *args [16];
5030                         MonoMethod *m;
5031                         MonoClass *interlocked_klass = mono_class_load_from_name (mono_defaults.corlib, "System.Threading", "Interlocked");
5032                         gpointer iter = NULL;
5033
5034                         while ((m = mono_class_get_methods (interlocked_klass, &iter))) {
5035                                 if ((!strcmp (m->name, "CompareExchange") || !strcmp (m->name, "Exchange")) && m->is_generic) {
5036                                         MonoError error;
5037                                         memset (&ctx, 0, sizeof (ctx));
5038                                         args [0] = &mono_defaults.object_class->byval_arg;
5039                                         ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5040                                         add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE));
5041                                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5042                                 }
5043                         }
5044                 }
5045
5046                 /* Same for Volatile.Read/Write<T> */
5047                 {
5048                         MonoGenericContext ctx;
5049                         MonoType *args [16];
5050                         MonoMethod *m;
5051                         MonoClass *volatile_klass = mono_class_try_load_from_name (mono_defaults.corlib, "System.Threading", "Volatile");
5052                         gpointer iter = NULL;
5053
5054                         if (volatile_klass) {
5055                                 while ((m = mono_class_get_methods (volatile_klass, &iter))) {
5056                                         if ((!strcmp (m->name, "Read") || !strcmp (m->name, "Write")) && m->is_generic) {
5057                                                 MonoError error;
5058                                                 memset (&ctx, 0, sizeof (ctx));
5059                                                 args [0] = &mono_defaults.object_class->byval_arg;
5060                                                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
5061                                                 add_extra_method (acfg, mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, &error), TRUE, TRUE));
5062                                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
5063                                         }
5064                                 }
5065                         }
5066                 }
5067
5068                 /* object[] accessor wrappers. */
5069                 for (i = 1; i < 4; ++i) {
5070                         MonoClass *obj_array_class = mono_array_class_get (mono_defaults.object_class, i);
5071                         MonoMethod *m;
5072
5073                         m = mono_class_get_method_from_name (obj_array_class, "Get", i);
5074                         g_assert (m);
5075
5076                         m = mono_marshal_get_array_accessor_wrapper (m);
5077                         add_extra_method (acfg, m);
5078
5079                         m = mono_class_get_method_from_name (obj_array_class, "Address", i);
5080                         g_assert (m);
5081
5082                         m = mono_marshal_get_array_accessor_wrapper (m);
5083                         add_extra_method (acfg, m);
5084
5085                         m = mono_class_get_method_from_name (obj_array_class, "Set", i + 1);
5086                         g_assert (m);
5087
5088                         m = mono_marshal_get_array_accessor_wrapper (m);
5089                         add_extra_method (acfg, m);
5090                 }
5091         }
5092 }
5093
5094 /*
5095  * is_direct_callable:
5096  *
5097  *   Return whenever the method identified by JI is directly callable without 
5098  * going through the PLT.
5099  */
5100 static gboolean
5101 is_direct_callable (MonoAotCompile *acfg, MonoMethod *method, MonoJumpInfo *patch_info)
5102 {
5103         if ((patch_info->type == MONO_PATCH_INFO_METHOD) && (patch_info->data.method->klass->image == acfg->image)) {
5104                 MonoCompile *callee_cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, patch_info->data.method);
5105                 if (callee_cfg) {
5106                         gboolean direct_callable = TRUE;
5107
5108                         if (direct_callable && !(!callee_cfg->has_got_slots && mono_class_is_before_field_init (callee_cfg->method->klass)))
5109                                 direct_callable = FALSE;
5110                         if ((callee_cfg->method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) && (!method || method->wrapper_type != MONO_WRAPPER_SYNCHRONIZED))
5111                                 // FIXME: Maybe call the wrapper directly ?
5112                                 direct_callable = FALSE;
5113
5114                         if (acfg->aot_opts.soft_debug || acfg->aot_opts.no_direct_calls) {
5115                                 /* Disable this so all calls go through load_method (), see the
5116                                  * mini_get_debug_options ()->load_aot_jit_info_eagerly = TRUE; line in
5117                                  * mono_debugger_agent_init ().
5118                                  */
5119                                 direct_callable = FALSE;
5120                         }
5121
5122                         if (callee_cfg->method->wrapper_type == MONO_WRAPPER_ALLOC)
5123                                 /* sgen does some initialization when the allocator method is created */
5124                                 direct_callable = FALSE;
5125                         if (callee_cfg->method->wrapper_type == MONO_WRAPPER_WRITE_BARRIER)
5126                                 /* we don't know at compile time whether sgen is concurrent or not */
5127                                 direct_callable = FALSE;
5128
5129                         if (direct_callable)
5130                                 return TRUE;
5131                 }
5132         } else if ((patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL && patch_info->data.method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
5133                 if (acfg->aot_opts.direct_pinvoke)
5134                         return TRUE;
5135         } else if (patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
5136                 if (acfg->aot_opts.direct_icalls)
5137                         return TRUE;
5138                 return FALSE;
5139         }
5140
5141         return FALSE;
5142 }
5143
5144 #ifdef MONO_ARCH_AOT_SUPPORTED
5145 static const char *
5146 get_pinvoke_import (MonoAotCompile *acfg, MonoMethod *method)
5147 {
5148         MonoImage *image = method->klass->image;
5149         MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *) method;
5150         MonoTableInfo *tables = image->tables;
5151         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
5152         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
5153         guint32 im_cols [MONO_IMPLMAP_SIZE];
5154         char *import;
5155
5156         import = (char *)g_hash_table_lookup (acfg->method_to_pinvoke_import, method);
5157         if (import != NULL)
5158                 return import;
5159
5160         if (!piinfo->implmap_idx || piinfo->implmap_idx > im->rows)
5161                 return NULL;
5162
5163         mono_metadata_decode_row (im, piinfo->implmap_idx - 1, im_cols, MONO_IMPLMAP_SIZE);
5164
5165         if (!im_cols [MONO_IMPLMAP_SCOPE] || im_cols [MONO_IMPLMAP_SCOPE] > mr->rows)
5166                 return NULL;
5167
5168         import = g_strdup_printf ("%s", mono_metadata_string_heap (image, im_cols [MONO_IMPLMAP_NAME]));
5169
5170         g_hash_table_insert (acfg->method_to_pinvoke_import, method, import);
5171         
5172         return import;
5173 }
5174 #else
5175 static const char *
5176 get_pinvoke_import (MonoAotCompile *acfg, MonoMethod *method)
5177 {
5178         return NULL;
5179 }
5180 #endif
5181
5182 static gint
5183 compare_lne (MonoDebugLineNumberEntry *a, MonoDebugLineNumberEntry *b)
5184 {
5185         if (a->native_offset == b->native_offset)
5186                 return a->il_offset - b->il_offset;
5187         else
5188                 return a->native_offset - b->native_offset;
5189 }
5190
5191 /*
5192  * compute_line_numbers:
5193  *
5194  * Returns a sparse array of size CODE_SIZE containing MonoDebugSourceLocation* entries for the native offsets which have a corresponding line number
5195  * entry.
5196  */
5197 static MonoDebugSourceLocation**
5198 compute_line_numbers (MonoMethod *method, int code_size, MonoDebugMethodJitInfo *debug_info)
5199 {
5200         MonoDebugMethodInfo *minfo;
5201         MonoDebugLineNumberEntry *ln_array;
5202         MonoDebugSourceLocation *loc;
5203         int i, prev_line, prev_il_offset;
5204         int *native_to_il_offset = NULL;
5205         MonoDebugSourceLocation **res;
5206         gboolean first;
5207
5208         minfo = mono_debug_lookup_method (method);
5209         if (!minfo)
5210                 return NULL;
5211         // FIXME: This seems to happen when two methods have the same cfg->method_to_register
5212         if (debug_info->code_size != code_size)
5213                 return NULL;
5214
5215         g_assert (code_size);
5216
5217         /* Compute the native->IL offset mapping */
5218
5219         ln_array = g_new0 (MonoDebugLineNumberEntry, debug_info->num_line_numbers);
5220         memcpy (ln_array, debug_info->line_numbers, debug_info->num_line_numbers * sizeof (MonoDebugLineNumberEntry));
5221
5222         qsort (ln_array, debug_info->num_line_numbers, sizeof (MonoDebugLineNumberEntry), (int (*)(const void *, const void *))compare_lne);
5223
5224         native_to_il_offset = g_new0 (int, code_size + 1);
5225
5226         for (i = 0; i < debug_info->num_line_numbers; ++i) {
5227                 int j;
5228                 MonoDebugLineNumberEntry *lne = &ln_array [i];
5229
5230                 if (i == 0) {
5231                         for (j = 0; j < lne->native_offset; ++j)
5232                                 native_to_il_offset [j] = -1;
5233                 }
5234
5235                 if (i < debug_info->num_line_numbers - 1) {
5236                         MonoDebugLineNumberEntry *lne_next = &ln_array [i + 1];
5237
5238                         for (j = lne->native_offset; j < lne_next->native_offset; ++j)
5239                                 native_to_il_offset [j] = lne->il_offset;
5240                 } else {
5241                         for (j = lne->native_offset; j < code_size; ++j)
5242                                 native_to_il_offset [j] = lne->il_offset;
5243                 }
5244         }
5245         g_free (ln_array);
5246
5247         /* Compute the native->line number mapping */
5248         res = g_new0 (MonoDebugSourceLocation*, code_size);
5249         prev_il_offset = -1;
5250         prev_line = -1;
5251         first = TRUE;
5252         for (i = 0; i < code_size; ++i) {
5253                 int il_offset = native_to_il_offset [i];
5254
5255                 if (il_offset == -1 || il_offset == prev_il_offset)
5256                         continue;
5257                 prev_il_offset = il_offset;
5258                 loc = mono_debug_method_lookup_location (minfo, il_offset);
5259                 if (!(loc && loc->source_file))
5260                         continue;
5261                 if (loc->row == prev_line) {
5262                         mono_debug_free_source_location (loc);
5263                         continue;
5264                 }
5265                 prev_line = loc->row;
5266                 //printf ("D: %s:%d il=%x native=%x\n", loc->source_file, loc->row, il_offset, i);
5267                 if (first)
5268                         /* This will cover the prolog too */
5269                         res [0] = loc;
5270                 else
5271                         res [i] = loc;
5272                 first = FALSE;
5273         }
5274         return res;
5275 }
5276
5277 static int
5278 get_file_index (MonoAotCompile *acfg, const char *source_file)
5279 {
5280         int findex;
5281
5282         // FIXME: Free these
5283         if (!acfg->dwarf_ln_filenames)
5284                 acfg->dwarf_ln_filenames = g_hash_table_new (g_str_hash, g_str_equal);
5285         findex = GPOINTER_TO_INT (g_hash_table_lookup (acfg->dwarf_ln_filenames, source_file));
5286         if (!findex) {
5287                 findex = g_hash_table_size (acfg->dwarf_ln_filenames) + 1;
5288                 g_hash_table_insert (acfg->dwarf_ln_filenames, g_strdup (source_file), GINT_TO_POINTER (findex));
5289                 emit_unset_mode (acfg);
5290                 fprintf (acfg->fp, ".file %d \"%s\"\n", findex, mono_dwarf_escape_path (source_file));
5291         }
5292         return findex;
5293 }
5294
5295 #ifdef TARGET_ARM64
5296 #define INST_LEN 4
5297 #else
5298 #define INST_LEN 1
5299 #endif
5300
5301 /*
5302  * emit_and_reloc_code:
5303  *
5304  *   Emit the native code in CODE, handling relocations along the way. If GOT_ONLY
5305  * is true, calls are made through the GOT too. This is used for emitting trampolines
5306  * in full-aot mode, since calls made from trampolines couldn't go through the PLT,
5307  * since trampolines are needed to make PTL work.
5308  */
5309 static void
5310 emit_and_reloc_code (MonoAotCompile *acfg, MonoMethod *method, guint8 *code, guint32 code_len, MonoJumpInfo *relocs, gboolean got_only, MonoDebugMethodJitInfo *debug_info)
5311 {
5312         int i, pindex, start_index;
5313         GPtrArray *patches;
5314         MonoJumpInfo *patch_info;
5315         MonoDebugSourceLocation **locs = NULL;
5316         gboolean skip, prologue_end = FALSE;
5317 #ifdef MONO_ARCH_AOT_SUPPORTED
5318         gboolean direct_call, external_call;
5319         guint32 got_slot;
5320         const char *direct_call_target = 0;
5321         const char *direct_pinvoke;
5322 #endif
5323
5324         if (acfg->gas_line_numbers && method && debug_info) {
5325                 locs = compute_line_numbers (method, code_len, debug_info);
5326                 if (!locs) {
5327                         int findex = get_file_index (acfg, "<unknown>");
5328                         emit_unset_mode (acfg);
5329                         fprintf (acfg->fp, ".loc %d %d 0\n", findex, 1);
5330                 }
5331         }
5332
5333         /* Collect and sort relocations */
5334         patches = g_ptr_array_new ();
5335         for (patch_info = relocs; patch_info; patch_info = patch_info->next)
5336                 g_ptr_array_add (patches, patch_info);
5337         g_ptr_array_sort (patches, compare_patches);
5338
5339         start_index = 0;
5340         for (i = 0; i < code_len; i += INST_LEN) {
5341                 patch_info = NULL;
5342                 for (pindex = start_index; pindex < patches->len; ++pindex) {
5343                         patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5344                         if (patch_info->ip.i >= i)
5345                                 break;
5346                 }
5347
5348                 if (locs && locs [i]) {
5349                         MonoDebugSourceLocation *loc = locs [i];
5350                         int findex;
5351                         const char *options;
5352
5353                         findex = get_file_index (acfg, loc->source_file);
5354                         emit_unset_mode (acfg);
5355                         if (!prologue_end)
5356                                 options = " prologue_end";
5357                         else
5358                                 options = "";
5359                         prologue_end = TRUE;
5360                         fprintf (acfg->fp, ".loc %d %d 0%s\n", findex, loc->row, options);
5361                         mono_debug_free_source_location (loc);
5362                 }
5363
5364                 skip = FALSE;
5365 #ifdef MONO_ARCH_AOT_SUPPORTED
5366                 if (patch_info && (patch_info->ip.i == i) && (pindex < patches->len)) {
5367                         start_index = pindex;
5368
5369                         switch (patch_info->type) {
5370                         case MONO_PATCH_INFO_NONE:
5371                                 break;
5372                         case MONO_PATCH_INFO_GOT_OFFSET: {
5373                                 int code_size;
5374  
5375                                 arch_emit_got_offset (acfg, code + i, &code_size);
5376                                 i += code_size - INST_LEN;
5377                                 skip = TRUE;
5378                                 patch_info->type = MONO_PATCH_INFO_NONE;
5379                                 break;
5380                         }
5381                         case MONO_PATCH_INFO_OBJC_SELECTOR_REF: {
5382                                 int code_size, index;
5383                                 char *selector = (char *)patch_info->data.target;
5384
5385                                 if (!acfg->objc_selector_to_index)
5386                                         acfg->objc_selector_to_index = g_hash_table_new (g_str_hash, g_str_equal);
5387                                 if (!acfg->objc_selectors)
5388                                         acfg->objc_selectors = g_ptr_array_new ();
5389                                 index = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->objc_selector_to_index, selector));
5390                                 if (index)
5391                                         index --;
5392                                 else {
5393                                         index = acfg->objc_selector_index;
5394                                         g_ptr_array_add (acfg->objc_selectors, (void*)patch_info->data.target);
5395                                         g_hash_table_insert (acfg->objc_selector_to_index, selector, GUINT_TO_POINTER (index + 1));
5396                                         acfg->objc_selector_index ++;
5397                                 }
5398
5399                                 arch_emit_objc_selector_ref (acfg, code + i, index, &code_size);
5400                                 i += code_size - INST_LEN;
5401                                 skip = TRUE;
5402                                 patch_info->type = MONO_PATCH_INFO_NONE;
5403                                 break;
5404                         }
5405                         default: {
5406                                 /*
5407                                  * If this patch is a call, try emitting a direct call instead of
5408                                  * through a PLT entry. This is possible if the called method is in
5409                                  * the same assembly and requires no initialization.
5410                                  */
5411                                 direct_call = FALSE;
5412                                 external_call = FALSE;
5413                                 if ((patch_info->type == MONO_PATCH_INFO_METHOD) && (patch_info->data.method->klass->image == acfg->image)) {
5414                                         if (!got_only && is_direct_callable (acfg, method, patch_info)) {
5415                                                 MonoCompile *callee_cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, patch_info->data.method);
5416                                                 //printf ("DIRECT: %s %s\n", method ? mono_method_full_name (method, TRUE) : "", mono_method_full_name (callee_cfg->method, TRUE));
5417                                                 direct_call = TRUE;
5418                                                 direct_call_target = callee_cfg->asm_symbol;
5419                                                 patch_info->type = MONO_PATCH_INFO_NONE;
5420                                                 acfg->stats.direct_calls ++;
5421                                         }
5422
5423                                         acfg->stats.all_calls ++;
5424                                 } else if (patch_info->type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
5425                                         if (!got_only && is_direct_callable (acfg, method, patch_info)) {
5426                                                 if (!(patch_info->data.method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
5427                                                         direct_pinvoke = mono_lookup_icall_symbol (patch_info->data.method);
5428                                                 else
5429                                                         direct_pinvoke = get_pinvoke_import (acfg, patch_info->data.method);
5430                                                 if (direct_pinvoke) {
5431                                                         direct_call = TRUE;
5432                                                         g_assert (strlen (direct_pinvoke) < 1000);
5433                                                         direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, direct_pinvoke);
5434                                                 }
5435                                         }
5436                                 } else if (patch_info->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
5437                                         const char *sym = mono_lookup_jit_icall_symbol (patch_info->data.name);
5438                                         if (!got_only && sym && acfg->aot_opts.direct_icalls) {
5439                                                 /* Call to a C function implementing a jit icall */
5440                                                 direct_call = TRUE;
5441                                                 external_call = TRUE;
5442                                                 g_assert (strlen (sym) < 1000);
5443                                                 direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, sym);
5444                                         }
5445                                 } else if (patch_info->type == MONO_PATCH_INFO_INTERNAL_METHOD) {
5446                                         MonoJitICallInfo *info = mono_find_jit_icall_by_name (patch_info->data.name);
5447                                         const char *sym = mono_lookup_jit_icall_symbol (patch_info->data.name);
5448                                         if (!got_only && sym && acfg->aot_opts.direct_icalls && info->func == info->wrapper) {
5449                                                 /* Call to a jit icall without a wrapper */
5450                                                 direct_call = TRUE;
5451                                                 external_call = TRUE;
5452                                                 g_assert (strlen (sym) < 1000);
5453                                                 direct_call_target = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, sym);
5454                                         }
5455                                 }
5456
5457                                 if (direct_call) {
5458                                         patch_info->type = MONO_PATCH_INFO_NONE;
5459                                         acfg->stats.direct_calls ++;
5460                                 }
5461
5462                                 if (!got_only && !direct_call) {
5463                                         MonoPltEntry *plt_entry = get_plt_entry (acfg, patch_info);
5464                                         if (plt_entry) {
5465                                                 /* This patch has a PLT entry, so we must emit a call to the PLT entry */
5466                                                 direct_call = TRUE;
5467                                                 direct_call_target = plt_entry->symbol;
5468                 
5469                                                 /* Nullify the patch */
5470                                                 patch_info->type = MONO_PATCH_INFO_NONE;
5471                                                 plt_entry->jit_used = TRUE;
5472                                         }
5473                                 }
5474
5475                                 if (direct_call) {
5476                                         int call_size;
5477
5478                                         arch_emit_direct_call (acfg, direct_call_target, external_call, FALSE, patch_info, &call_size);
5479                                         i += call_size - INST_LEN;
5480                                 } else {
5481                                         int code_size;
5482
5483                                         got_slot = get_got_offset (acfg, FALSE, patch_info);
5484
5485                                         arch_emit_got_access (acfg, acfg->got_symbol, code + i, got_slot, &code_size);
5486                                         i += code_size - INST_LEN;
5487                                 }
5488                                 skip = TRUE;
5489                         }
5490                         }
5491                 }
5492 #endif /* MONO_ARCH_AOT_SUPPORTED */
5493
5494                 if (!skip) {
5495                         /* Find next patch */
5496                         patch_info = NULL;
5497                         for (pindex = start_index; pindex < patches->len; ++pindex) {
5498                                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5499                                 if (patch_info->ip.i >= i)
5500                                         break;
5501                         }
5502
5503                         /* Try to emit multiple bytes at once */
5504                         if (pindex < patches->len && patch_info->ip.i > i) {
5505                                 int limit;
5506
5507                                 for (limit = i + INST_LEN; limit < patch_info->ip.i; limit += INST_LEN) {
5508                                         if (locs && locs [limit])
5509                                                 break;
5510                                 }
5511
5512                                 emit_code_bytes (acfg, code + i, limit - i);
5513                                 i = limit - INST_LEN;
5514                         } else {
5515                                 emit_code_bytes (acfg, code + i, INST_LEN);
5516                         }
5517                 }
5518         }
5519
5520         g_ptr_array_free (patches, TRUE);
5521         g_free (locs);
5522 }
5523
5524 /*
5525  * sanitize_symbol:
5526  *
5527  *   Return a modified version of S which only includes characters permissible in symbols.
5528  */
5529 static char*
5530 sanitize_symbol (MonoAotCompile *acfg, char *s)
5531 {
5532         gboolean process = FALSE;
5533         int i, len;
5534         GString *gs;
5535         char *res;
5536
5537         if (!s)
5538                 return s;
5539
5540         len = strlen (s);
5541         for (i = 0; i < len; ++i)
5542                 if (!(s [i] <= 0x7f && (isalnum (s [i]) || s [i] == '_')))
5543                         process = TRUE;
5544         if (!process)
5545                 return s;
5546
5547         gs = g_string_sized_new (len);
5548         for (i = 0; i < len; ++i) {
5549                 guint8 c = s [i];
5550                 if (c <= 0x7f && (isalnum (c) || c == '_')) {
5551                         g_string_append_c (gs, c);
5552                 } else if (c > 0x7f) {
5553                         /* multi-byte utf8 */
5554                         g_string_append_printf (gs, "_0x%x", c);
5555                         i ++;
5556                         c = s [i];
5557                         while (c >> 6 == 0x2) {
5558                                 g_string_append_printf (gs, "%x", c);
5559                                 i ++;
5560                                 c = s [i];
5561                         }
5562                         g_string_append_printf (gs, "_");
5563                         i --;
5564                 } else {
5565                         g_string_append_c (gs, '_');
5566                 }
5567         }
5568
5569         res = mono_mempool_strdup (acfg->mempool, gs->str);
5570         g_string_free (gs, TRUE);
5571         return res;
5572 }
5573
5574 static char*
5575 get_debug_sym (MonoMethod *method, const char *prefix, GHashTable *cache)
5576 {
5577         char *name1, *name2, *cached;
5578         int i, j, len, count;
5579         MonoMethod *cached_method;
5580
5581         name1 = mono_method_full_name (method, TRUE);
5582
5583 #ifdef TARGET_MACH
5584         // This is so that we don't accidentally create a local symbol (which starts with 'L')
5585         if ((!prefix || !*prefix) && name1 [0] == 'L')
5586                 prefix = "_";
5587 #endif
5588
5589 #if defined(TARGET_WIN32) && defined(TARGET_X86)
5590         char adjustedPrefix [MAX_SYMBOL_SIZE];
5591         prefix = mangle_symbol (prefix, adjustedPrefix, G_N_ELEMENTS (adjustedPrefix));
5592 #endif
5593
5594         len = strlen (name1);
5595         name2 = (char *)malloc (strlen (prefix) + len + 16);
5596         memcpy (name2, prefix, strlen (prefix));
5597         j = strlen (prefix);
5598         for (i = 0; i < len; ++i) {
5599                 if (i == 0 && name1 [0] >= '0' && name1 [0] <= '9') {
5600                         name2 [j ++] = '_';
5601                 } else if (isalnum (name1 [i])) {
5602                         name2 [j ++] = name1 [i];
5603                 } else if (name1 [i] == ' ' && name1 [i + 1] == '(' && name1 [i + 2] == ')') {
5604                         i += 2;
5605                 } else if (name1 [i] == ',' && name1 [i + 1] == ' ') {
5606                         name2 [j ++] = '_';
5607                         i++;
5608                 } else if (name1 [i] == '(' || name1 [i] == ')' || name1 [i] == '>') {
5609                 } else
5610                         name2 [j ++] = '_';
5611         }
5612         name2 [j] = '\0';
5613
5614         g_free (name1);
5615
5616         count = 0;
5617         while (TRUE) {
5618                 cached_method = (MonoMethod *)g_hash_table_lookup (cache, name2);
5619                 if (!(cached_method && cached_method != method))
5620                         break;
5621                 sprintf (name2 + j, "_%d", count);
5622                 count ++;
5623         }
5624
5625         cached = g_strdup (name2);
5626         g_hash_table_insert (cache, cached, method);
5627
5628         return name2;
5629 }
5630
5631 static void
5632 emit_method_code (MonoAotCompile *acfg, MonoCompile *cfg)
5633 {
5634         MonoMethod *method;
5635         int method_index;
5636         guint8 *code;
5637         char *debug_sym = NULL;
5638         char *symbol = NULL;
5639         int func_alignment = AOT_FUNC_ALIGNMENT;
5640         char *export_name;
5641
5642         method = cfg->orig_method;
5643         code = cfg->native_code;
5644
5645         method_index = get_method_index (acfg, method);
5646         symbol = g_strdup_printf ("%sme_%x", acfg->temp_prefix, method_index);
5647
5648         /* Make the labels local */
5649         emit_section_change (acfg, ".text", 0);
5650         emit_alignment_code (acfg, func_alignment);
5651         
5652         if (acfg->global_symbols && acfg->need_no_dead_strip)
5653                 fprintf (acfg->fp, "    .no_dead_strip %s\n", cfg->asm_symbol);
5654         
5655         emit_label (acfg, cfg->asm_symbol);
5656
5657         if (acfg->aot_opts.write_symbols && !acfg->global_symbols && !acfg->llvm) {
5658                 /* 
5659                  * Write a C style symbol for every method, this has two uses:
5660                  * - it works on platforms where the dwarf debugging info is not
5661                  *   yet supported.
5662                  * - it allows the setting of breakpoints of aot-ed methods.
5663                  */
5664                 debug_sym = get_debug_sym (method, "", acfg->method_label_hash);
5665                 cfg->asm_debug_symbol = g_strdup (debug_sym);
5666
5667                 if (acfg->need_no_dead_strip)
5668                         fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
5669                 emit_local_symbol (acfg, debug_sym, symbol, TRUE);
5670                 emit_label (acfg, debug_sym);
5671         }
5672
5673         export_name = (char *)g_hash_table_lookup (acfg->export_names, method);
5674         if (export_name) {
5675                 /* Emit a global symbol for the method */
5676                 emit_global_inner (acfg, export_name, TRUE);
5677                 emit_label (acfg, export_name);
5678         }
5679
5680         if (cfg->verbose_level > 0)
5681                 g_print ("Method %s emitted as %s\n", mono_method_get_full_name (method), cfg->asm_symbol);
5682
5683         acfg->stats.code_size += cfg->code_len;
5684
5685         acfg->cfgs [method_index]->got_offset = acfg->got_offset;
5686
5687         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 ()));
5688
5689         emit_line (acfg);
5690
5691         if (acfg->aot_opts.write_symbols) {
5692                 if (debug_sym)
5693                         emit_symbol_size (acfg, debug_sym, ".");
5694                 else
5695                         emit_symbol_size (acfg, cfg->asm_symbol, ".");
5696                 g_free (debug_sym);
5697         }
5698
5699         emit_label (acfg, symbol);
5700         g_free (symbol);
5701 }
5702
5703 /**
5704  * encode_patch:
5705  *
5706  *  Encode PATCH_INFO into its disk representation.
5707  */
5708 static void
5709 encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info, guint8 *buf, guint8 **endbuf)
5710 {
5711         guint8 *p = buf;
5712
5713         switch (patch_info->type) {
5714         case MONO_PATCH_INFO_NONE:
5715                 break;
5716         case MONO_PATCH_INFO_IMAGE:
5717                 encode_value (get_image_index (acfg, patch_info->data.image), p, &p);
5718                 break;
5719         case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
5720         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
5721         case MONO_PATCH_INFO_GC_NURSERY_START:
5722         case MONO_PATCH_INFO_GC_NURSERY_BITS:
5723                 break;
5724         case MONO_PATCH_INFO_CASTCLASS_CACHE:
5725                 encode_value (patch_info->data.index, p, &p);
5726                 break;
5727         case MONO_PATCH_INFO_METHOD_REL:
5728                 encode_value ((gint)patch_info->data.offset, p, &p);
5729                 break;
5730         case MONO_PATCH_INFO_SWITCH: {
5731                 gpointer *table = (gpointer *)patch_info->data.table->table;
5732                 int k;
5733
5734                 encode_value (patch_info->data.table->table_size, p, &p);
5735                 for (k = 0; k < patch_info->data.table->table_size; k++)
5736                         encode_value ((int)(gssize)table [k], p, &p);
5737                 break;
5738         }
5739         case MONO_PATCH_INFO_METHODCONST:
5740         case MONO_PATCH_INFO_METHOD:
5741         case MONO_PATCH_INFO_METHOD_JUMP:
5742         case MONO_PATCH_INFO_ICALL_ADDR:
5743         case MONO_PATCH_INFO_ICALL_ADDR_CALL:
5744         case MONO_PATCH_INFO_METHOD_RGCTX:
5745         case MONO_PATCH_INFO_METHOD_CODE_SLOT:
5746                 encode_method_ref (acfg, patch_info->data.method, p, &p);
5747                 break;
5748         case MONO_PATCH_INFO_AOT_JIT_INFO:
5749         case MONO_PATCH_INFO_GET_TLS_TRAMP:
5750         case MONO_PATCH_INFO_SET_TLS_TRAMP:
5751                 encode_value (patch_info->data.index, p, &p);
5752                 break;
5753         case MONO_PATCH_INFO_INTERNAL_METHOD:
5754         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
5755         case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL: {
5756                 guint32 len = strlen (patch_info->data.name);
5757
5758                 encode_value (len, p, &p);
5759
5760                 memcpy (p, patch_info->data.name, len);
5761                 p += len;
5762                 *p++ = '\0';
5763                 break;
5764         }
5765         case MONO_PATCH_INFO_LDSTR: {
5766                 guint32 image_index = get_image_index (acfg, patch_info->data.token->image);
5767                 guint32 token = patch_info->data.token->token;
5768                 g_assert (mono_metadata_token_code (token) == MONO_TOKEN_STRING);
5769                 encode_value (image_index, p, &p);
5770                 encode_value (patch_info->data.token->token - MONO_TOKEN_STRING, p, &p);
5771                 break;
5772         }
5773         case MONO_PATCH_INFO_RVA:
5774         case MONO_PATCH_INFO_DECLSEC:
5775         case MONO_PATCH_INFO_LDTOKEN:
5776         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
5777                 encode_value (get_image_index (acfg, patch_info->data.token->image), p, &p);
5778                 encode_value (patch_info->data.token->token, p, &p);
5779                 encode_value (patch_info->data.token->has_context, p, &p);
5780                 if (patch_info->data.token->has_context)
5781                         encode_generic_context (acfg, &patch_info->data.token->context, p, &p);
5782                 break;
5783         case MONO_PATCH_INFO_EXC_NAME: {
5784                 MonoClass *ex_class;
5785
5786                 ex_class =
5787                         mono_class_load_from_name (mono_defaults.exception_class->image,
5788                                                                   "System", (const char *)patch_info->data.target);
5789                 encode_klass_ref (acfg, ex_class, p, &p);
5790                 break;
5791         }
5792         case MONO_PATCH_INFO_R4:
5793                 encode_value (*((guint32 *)patch_info->data.target), p, &p);
5794                 break;
5795         case MONO_PATCH_INFO_R8:
5796                 encode_value (((guint32 *)patch_info->data.target) [MINI_LS_WORD_IDX], p, &p);
5797                 encode_value (((guint32 *)patch_info->data.target) [MINI_MS_WORD_IDX], p, &p);
5798                 break;
5799         case MONO_PATCH_INFO_VTABLE:
5800         case MONO_PATCH_INFO_CLASS:
5801         case MONO_PATCH_INFO_IID:
5802         case MONO_PATCH_INFO_ADJUSTED_IID:
5803                 encode_klass_ref (acfg, patch_info->data.klass, p, &p);
5804                 break;
5805         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
5806                 encode_klass_ref (acfg, patch_info->data.del_tramp->klass, p, &p);
5807                 if (patch_info->data.del_tramp->method) {
5808                         encode_value (1, p, &p);
5809                         encode_method_ref (acfg, patch_info->data.del_tramp->method, p, &p);
5810                 } else {
5811                         encode_value (0, p, &p);
5812                 }
5813                 encode_value (patch_info->data.del_tramp->is_virtual, p, &p);
5814                 break;
5815         case MONO_PATCH_INFO_FIELD:
5816         case MONO_PATCH_INFO_SFLDA:
5817                 encode_field_info (acfg, patch_info->data.field, p, &p);
5818                 break;
5819         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
5820                 break;
5821         case MONO_PATCH_INFO_RGCTX_FETCH:
5822         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
5823                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
5824                 guint32 offset;
5825                 guint8 *buf2, *p2;
5826
5827                 /* 
5828                  * entry->method has a lenghtly encoding and multiple rgctx_fetch entries
5829                  * reference the same method, so encode the method only once.
5830                  */
5831                 offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_blob_hash, entry->method));
5832                 if (!offset) {
5833                         buf2 = (guint8 *)g_malloc (1024);
5834                         p2 = buf2;
5835
5836                         encode_method_ref (acfg, entry->method, p2, &p2);
5837                         g_assert (p2 - buf2 < 1024);
5838
5839                         offset = add_to_blob (acfg, buf2, p2 - buf2);
5840                         g_free (buf2);
5841
5842                         g_hash_table_insert (acfg->method_blob_hash, entry->method, GUINT_TO_POINTER (offset + 1));
5843                 } else {
5844                         offset --;
5845                 }
5846
5847                 encode_value (offset, p, &p);
5848                 g_assert ((int)entry->info_type < 256);
5849                 g_assert (entry->data->type < 256);
5850                 encode_value ((entry->in_mrgctx ? 1 : 0) | (entry->info_type << 1) | (entry->data->type << 9), p, &p);
5851                 encode_patch (acfg, entry->data, p, &p);
5852                 break;
5853         }
5854         case MONO_PATCH_INFO_SEQ_POINT_INFO:
5855         case MONO_PATCH_INFO_AOT_MODULE:
5856                 break;
5857         case MONO_PATCH_INFO_SIGNATURE:
5858         case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
5859                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.target, p, &p);
5860                 break;
5861         case MONO_PATCH_INFO_GSHAREDVT_CALL:
5862                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.gsharedvt->sig, p, &p);
5863                 encode_method_ref (acfg, patch_info->data.gsharedvt->method, p, &p);
5864                 break;
5865         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
5866                 MonoGSharedVtMethodInfo *info = patch_info->data.gsharedvt_method;
5867                 int i;
5868
5869                 encode_method_ref (acfg, info->method, p, &p);
5870                 encode_value (info->num_entries, p, &p);
5871                 for (i = 0; i < info->num_entries; ++i) {
5872                         MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
5873
5874                         encode_value (template_->info_type, p, &p);
5875                         switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
5876                         case MONO_PATCH_INFO_CLASS:
5877                                 encode_klass_ref (acfg, mono_class_from_mono_type ((MonoType *)template_->data), p, &p);
5878                                 break;
5879                         case MONO_PATCH_INFO_FIELD:
5880                                 encode_field_info (acfg, (MonoClassField *)template_->data, p, &p);
5881                                 break;
5882                         default:
5883                                 g_assert_not_reached ();
5884                                 break;
5885                         }
5886                 }
5887                 break;
5888         }
5889         case MONO_PATCH_INFO_LDSTR_LIT: {
5890                 const char *s = (const char *)patch_info->data.target;
5891                 int len = strlen (s);
5892
5893                 encode_value (len, p, &p);
5894                 memcpy (p, s, len + 1);
5895                 p += len + 1;
5896                 break;
5897         }
5898         case MONO_PATCH_INFO_VIRT_METHOD:
5899                 encode_klass_ref (acfg, patch_info->data.virt_method->klass, p, &p);
5900                 encode_method_ref (acfg, patch_info->data.virt_method->method, p, &p);
5901                 break;
5902         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
5903         case MONO_PATCH_INFO_JIT_THREAD_ATTACH:
5904                 break;
5905         default:
5906                 g_warning ("unable to handle jump info %d", patch_info->type);
5907                 g_assert_not_reached ();
5908         }
5909
5910         *endbuf = p;
5911 }
5912
5913 static void
5914 encode_patch_list (MonoAotCompile *acfg, GPtrArray *patches, int n_patches, gboolean llvm, int first_got_offset, guint8 *buf, guint8 **endbuf)
5915 {
5916         guint8 *p = buf;
5917         guint32 pindex, offset;
5918         MonoJumpInfo *patch_info;
5919
5920         encode_value (n_patches, p, &p);
5921
5922         for (pindex = 0; pindex < patches->len; ++pindex) {
5923                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5924
5925                 if (patch_info->type == MONO_PATCH_INFO_NONE || patch_info->type == MONO_PATCH_INFO_BB)
5926                         /* Nothing to do */
5927                         continue;
5928
5929                 offset = get_got_offset (acfg, llvm, patch_info);
5930                 encode_value (offset, p, &p);
5931         }
5932
5933         *endbuf = p;
5934 }
5935
5936 static void
5937 emit_method_info (MonoAotCompile *acfg, MonoCompile *cfg)
5938 {
5939         MonoMethod *method;
5940         int pindex, buf_size, n_patches;
5941         GPtrArray *patches;
5942         MonoJumpInfo *patch_info;
5943         guint32 method_index;
5944         guint8 *p, *buf;
5945         guint32 first_got_offset;
5946
5947         method = cfg->orig_method;
5948
5949         method_index = get_method_index (acfg, method);
5950
5951         /* Sort relocations */
5952         patches = g_ptr_array_new ();
5953         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next)
5954                 g_ptr_array_add (patches, patch_info);
5955         g_ptr_array_sort (patches, compare_patches);
5956
5957         first_got_offset = acfg->cfgs [method_index]->got_offset;
5958
5959         /**********************/
5960         /* Encode method info */
5961         /**********************/
5962
5963         buf_size = (patches->len < 1000) ? 40960 : 40960 + (patches->len * 64);
5964         p = buf = (guint8 *)g_malloc (buf_size);
5965
5966         if (mono_class_get_cctor (method->klass)) {
5967                 encode_value (1, p, &p);
5968                 encode_klass_ref (acfg, method->klass, p, &p);
5969         } else {
5970                 /* Not needed when loading the method */
5971                 encode_value (0, p, &p);
5972         }
5973
5974         g_assert (!(cfg->opt & MONO_OPT_SHARED));
5975
5976         n_patches = 0;
5977         for (pindex = 0; pindex < patches->len; ++pindex) {
5978                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5979                 
5980                 if ((patch_info->type == MONO_PATCH_INFO_GOT_OFFSET) ||
5981                         (patch_info->type == MONO_PATCH_INFO_NONE)) {
5982                         patch_info->type = MONO_PATCH_INFO_NONE;
5983                         /* Nothing to do */
5984                         continue;
5985                 }
5986
5987                 if ((patch_info->type == MONO_PATCH_INFO_IMAGE) && (patch_info->data.image == acfg->image)) {
5988                         /* Stored in a GOT slot initialized at module load time */
5989                         patch_info->type = MONO_PATCH_INFO_NONE;
5990                         continue;
5991                 }
5992
5993                 if (patch_info->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR ||
5994                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_START ||
5995                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_BITS ||
5996                         patch_info->type == MONO_PATCH_INFO_AOT_MODULE) {
5997                         /* Stored in a GOT slot initialized at module load time */
5998                         patch_info->type = MONO_PATCH_INFO_NONE;
5999                         continue;
6000                 }
6001
6002                 if (is_plt_patch (patch_info) && !(cfg->compile_llvm && acfg->aot_opts.llvm_only)) {
6003                         /* Calls are made through the PLT */
6004                         patch_info->type = MONO_PATCH_INFO_NONE;
6005                         continue;
6006                 }
6007
6008                 n_patches ++;
6009         }
6010
6011         if (n_patches)
6012                 g_assert (cfg->has_got_slots);
6013
6014         encode_patch_list (acfg, patches, n_patches, cfg->compile_llvm, first_got_offset, p, &p);
6015
6016         g_ptr_array_free (patches, TRUE);
6017
6018         acfg->stats.info_size += p - buf;
6019
6020         g_assert (p - buf < buf_size);
6021
6022         cfg->method_info_offset = add_to_blob (acfg, buf, p - buf);
6023         g_free (buf);
6024 }
6025
6026 static guint32
6027 get_unwind_info_offset (MonoAotCompile *acfg, guint8 *encoded, guint32 encoded_len)
6028 {
6029         guint32 cache_index;
6030         guint32 offset;
6031
6032         /* Reuse the unwind module to canonize and store unwind info entries */
6033         cache_index = mono_cache_unwind_info (encoded, encoded_len);
6034
6035         /* Use +/- 1 to distinguish 0s from missing entries */
6036         offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1)));
6037         if (offset)
6038                 return offset - 1;
6039         else {
6040                 guint8 buf [16];
6041                 guint8 *p;
6042
6043                 /* 
6044                  * It would be easier to use assembler symbols, but the caller needs an
6045                  * offset now.
6046                  */
6047                 offset = acfg->unwind_info_offset;
6048                 g_hash_table_insert (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1), GUINT_TO_POINTER (offset + 1));
6049                 g_ptr_array_add (acfg->unwind_ops, GUINT_TO_POINTER (cache_index));
6050
6051                 p = buf;
6052                 encode_value (encoded_len, p, &p);
6053
6054                 acfg->unwind_info_offset += encoded_len + (p - buf);
6055                 return offset;
6056         }
6057 }
6058
6059 static void
6060 emit_exception_debug_info (MonoAotCompile *acfg, MonoCompile *cfg, gboolean store_seq_points)
6061 {
6062         int i, k, buf_size;
6063         guint32 debug_info_size, seq_points_size;
6064         guint8 *code;
6065         MonoMethodHeader *header;
6066         guint8 *p, *buf, *debug_info;
6067         MonoJitInfo *jinfo = cfg->jit_info;
6068         guint32 flags;
6069         gboolean use_unwind_ops = FALSE;
6070         MonoSeqPointInfo *seq_points;
6071
6072         code = cfg->native_code;
6073         header = cfg->header;
6074
6075         if (!acfg->aot_opts.nodebug) {
6076                 mono_debug_serialize_debug_info (cfg, &debug_info, &debug_info_size);
6077         } else {
6078                 debug_info = NULL;
6079                 debug_info_size = 0;
6080         }
6081
6082         seq_points = cfg->seq_point_info;
6083         seq_points_size = (store_seq_points)? mono_seq_point_info_get_write_size (seq_points) : 0;
6084
6085         buf_size = header->num_clauses * 256 + debug_info_size + 2048 + seq_points_size + cfg->gc_map_size;
6086
6087         p = buf = (guint8 *)g_malloc (buf_size);
6088
6089         use_unwind_ops = cfg->unwind_ops != NULL;
6090
6091         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);
6092
6093         encode_value (flags, p, &p);
6094
6095         if (use_unwind_ops) {
6096                 guint32 encoded_len;
6097                 guint8 *encoded;
6098                 guint32 unwind_desc;
6099
6100                 encoded = mono_unwind_ops_encode (cfg->unwind_ops, &encoded_len);
6101
6102                 unwind_desc = get_unwind_info_offset (acfg, encoded, encoded_len);
6103                 encode_value (unwind_desc, p, &p);
6104
6105                 g_free (encoded);
6106         } else {
6107                 encode_value (jinfo->unwind_info, p, &p);
6108         }
6109
6110         /*Encode the number of holes before the number of clauses to make decoding easier*/
6111         if (jinfo->has_try_block_holes) {
6112                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6113                 encode_value (table->num_holes, p, &p);
6114         }
6115
6116         if (jinfo->has_arch_eh_info) {
6117                 /*
6118                  * In AOT mode, the code length is calculated from the address of the previous method,
6119                  * which could include alignment padding, so calculating the start of the epilog as
6120                  * code_len - epilog_size is correct any more. Save the real code len as a workaround.
6121                  */
6122                 encode_value (jinfo->code_size, p, &p);
6123         }
6124
6125         /* Exception table */
6126         if (cfg->compile_llvm) {
6127                 /*
6128                  * When using LLVM, we can't emit some data, like pc offsets, this reg/offset etc.,
6129                  * since the information is only available to llc. Instead, we let llc save the data
6130                  * into the LSDA, and read it from there at runtime.
6131                  */
6132                 /* The assembly might be CIL stripped so emit the data ourselves */
6133                 if (header->num_clauses)
6134                         encode_value (header->num_clauses, p, &p);
6135
6136                 for (k = 0; k < header->num_clauses; ++k) {
6137                         MonoExceptionClause *clause;
6138
6139                         clause = &header->clauses [k];
6140
6141                         encode_value (clause->flags, p, &p);
6142                         if (!(clause->flags == MONO_EXCEPTION_CLAUSE_FILTER || clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)) {
6143                                 if (clause->data.catch_class) {
6144                                         guint8 *buf2, *p2;
6145                                         int len;
6146
6147                                         buf2 = (guint8 *)g_malloc (4096);
6148                                         p2 = buf2;
6149                                         encode_klass_ref (acfg, clause->data.catch_class, p2, &p2);
6150                                         len = p2 - buf2;
6151                                         g_assert (len < 4096);
6152                                         encode_value (len, p, &p);
6153                                         memcpy (p, buf2, len);
6154                                         p += p2 - buf2;
6155                                         g_free (buf2);
6156                                 } else {
6157                                         encode_value (0, p, &p);
6158                                 }
6159                         }
6160
6161                         /* Emit the IL ranges too, since they might not be available at runtime */
6162                         encode_value (clause->try_offset, p, &p);
6163                         encode_value (clause->try_len, p, &p);
6164                         encode_value (clause->handler_offset, p, &p);
6165                         encode_value (clause->handler_len, p, &p);
6166
6167                         /* Emit a list of nesting clauses */
6168                         for (i = 0; i < header->num_clauses; ++i) {
6169                                 gint32 cindex1 = k;
6170                                 MonoExceptionClause *clause1 = &header->clauses [cindex1];
6171                                 gint32 cindex2 = i;
6172                                 MonoExceptionClause *clause2 = &header->clauses [cindex2];
6173
6174                                 if (cindex1 != cindex2 && clause1->try_offset >= clause2->try_offset && clause1->handler_offset <= clause2->handler_offset)
6175                                         encode_value (i, p, &p);
6176                         }
6177                         encode_value (-1, p, &p);
6178                 }
6179         } else {
6180                 if (jinfo->num_clauses)
6181                         encode_value (jinfo->num_clauses, p, &p);
6182
6183                 for (k = 0; k < jinfo->num_clauses; ++k) {
6184                         MonoJitExceptionInfo *ei = &jinfo->clauses [k];
6185
6186                         encode_value (ei->flags, p, &p);
6187 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
6188                         /* Not used for catch clauses */
6189                         if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
6190                                 encode_value (ei->exvar_offset, p, &p);
6191 #else
6192                         encode_value (ei->exvar_offset, p, &p);
6193 #endif
6194
6195                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
6196                                 encode_value ((gint)((guint8*)ei->data.filter - code), p, &p);
6197                         else {
6198                                 if (ei->data.catch_class) {
6199                                         guint8 *buf2, *p2;
6200                                         int len;
6201
6202                                         buf2 = (guint8 *)g_malloc (4096);
6203                                         p2 = buf2;
6204                                         encode_klass_ref (acfg, ei->data.catch_class, p2, &p2);
6205                                         len = p2 - buf2;
6206                                         g_assert (len < 4096);
6207                                         encode_value (len, p, &p);
6208                                         memcpy (p, buf2, len);
6209                                         p += p2 - buf2;
6210                                         g_free (buf2);
6211                                 } else {
6212                                         encode_value (0, p, &p);
6213                                 }
6214                         }
6215
6216                         encode_value ((gint)((guint8*)ei->try_start - code), p, &p);
6217                         encode_value ((gint)((guint8*)ei->try_end - code), p, &p);
6218                         encode_value ((gint)((guint8*)ei->handler_start - code), p, &p);
6219                 }
6220         }
6221
6222         if (jinfo->has_try_block_holes) {
6223                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6224                 for (i = 0; i < table->num_holes; ++i) {
6225                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
6226                         encode_value (hole->clause, p, &p);
6227                         encode_value (hole->length, p, &p);
6228                         encode_value (hole->offset, p, &p);
6229                 }
6230         }
6231
6232         if (jinfo->has_arch_eh_info) {
6233                 MonoArchEHJitInfo *eh_info;
6234
6235                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
6236                 encode_value (eh_info->stack_size, p, &p);
6237                 encode_value (eh_info->epilog_size, p, &p);
6238         }
6239
6240         if (jinfo->has_generic_jit_info) {
6241                 MonoGenericJitInfo *gi = mono_jit_info_get_generic_jit_info (jinfo);
6242                 MonoGenericSharingContext* gsctx = gi->generic_sharing_context;
6243                 guint8 *buf2, *p2;
6244                 int len;
6245
6246                 encode_value (gi->nlocs, p, &p);
6247                 if (gi->nlocs) {
6248                         for (i = 0; i < gi->nlocs; ++i) {
6249                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
6250
6251                                 encode_value (entry->is_reg ? 1 : 0, p, &p);
6252                                 encode_value (entry->reg, p, &p);
6253                                 if (!entry->is_reg)
6254                                         encode_value (entry->offset, p, &p);
6255                                 if (i == 0)
6256                                         g_assert (entry->from == 0);
6257                                 else
6258                                         encode_value (entry->from, p, &p);
6259                                 encode_value (entry->to, p, &p);
6260                         }
6261                 } else {
6262                         if (!cfg->compile_llvm) {
6263                                 encode_value (gi->has_this ? 1 : 0, p, &p);
6264                                 encode_value (gi->this_reg, p, &p);
6265                                 encode_value (gi->this_offset, p, &p);
6266                         }
6267                 }
6268
6269                 /* 
6270                  * Need to encode jinfo->method too, since it is not equal to 'method'
6271                  * when using generic sharing.
6272                  */
6273                 buf2 = (guint8 *)g_malloc (4096);
6274                 p2 = buf2;
6275                 encode_method_ref (acfg, jinfo->d.method, p2, &p2);
6276                 len = p2 - buf2;
6277                 g_assert (len < 4096);
6278                 encode_value (len, p, &p);
6279                 memcpy (p, buf2, len);
6280                 p += p2 - buf2;
6281                 g_free (buf2);
6282
6283                 if (gsctx && gsctx->is_gsharedvt) {
6284                         encode_value (1, p, &p);
6285                 } else {
6286                         encode_value (0, p, &p);
6287                 }
6288         }
6289
6290         if (seq_points_size)
6291                 p += mono_seq_point_info_write (seq_points, p);
6292
6293         g_assert (debug_info_size < buf_size);
6294
6295         encode_value (debug_info_size, p, &p);
6296         if (debug_info_size) {
6297                 memcpy (p, debug_info, debug_info_size);
6298                 p += debug_info_size;
6299                 g_free (debug_info);
6300         }
6301
6302         /* GC Map */
6303         if (cfg->gc_map) {
6304                 encode_value (cfg->gc_map_size, p, &p);
6305                 /* The GC map requires 4 bytes of alignment */
6306                 while ((gsize)p % 4)
6307                         p ++;
6308                 memcpy (p, cfg->gc_map, cfg->gc_map_size);
6309                 p += cfg->gc_map_size;
6310         }
6311
6312         acfg->stats.ex_info_size += p - buf;
6313
6314         g_assert (p - buf < buf_size);
6315
6316         /* Emit info */
6317         /* The GC Map requires 4 byte alignment */
6318         cfg->ex_info_offset = add_to_blob_aligned (acfg, buf, p - buf, cfg->gc_map ? 4 : 1);
6319         g_free (buf);
6320 }
6321
6322 static guint32
6323 emit_klass_info (MonoAotCompile *acfg, guint32 token)
6324 {
6325         MonoError error;
6326         MonoClass *klass = mono_class_get_checked (acfg->image, token, &error);
6327         guint8 *p, *buf;
6328         int i, buf_size, res;
6329         gboolean no_special_static, cant_encode;
6330         gpointer iter = NULL;
6331
6332         if (!klass) {
6333                 mono_error_cleanup (&error);
6334
6335                 buf_size = 16;
6336
6337                 p = buf = (guint8 *)g_malloc (buf_size);
6338
6339                 /* Mark as unusable */
6340                 encode_value (-1, p, &p);
6341
6342                 res = add_to_blob (acfg, buf, p - buf);
6343                 g_free (buf);
6344
6345                 return res;
6346         }
6347                 
6348         buf_size = 10240 + (klass->vtable_size * 16);
6349         p = buf = (guint8 *)g_malloc (buf_size);
6350
6351         g_assert (klass);
6352
6353         mono_class_init (klass);
6354
6355         mono_class_get_nested_types (klass, &iter);
6356         g_assert (klass->nested_classes_inited);
6357
6358         mono_class_setup_vtable (klass);
6359
6360         /* 
6361          * Emit all the information which is required for creating vtables so
6362          * the runtime does not need to create the MonoMethod structures which
6363          * take up a lot of space.
6364          */
6365
6366         no_special_static = !mono_class_has_special_static_fields (klass);
6367
6368         /* Check whenever we have enough info to encode the vtable */
6369         cant_encode = FALSE;
6370         for (i = 0; i < klass->vtable_size; ++i) {
6371                 MonoMethod *cm = klass->vtable [i];
6372
6373                 if (cm && mono_method_signature (cm)->is_inflated && !g_hash_table_lookup (acfg->token_info_hash, cm))
6374                         cant_encode = TRUE;
6375         }
6376
6377         mono_class_has_finalizer (klass);
6378         if (mono_class_has_failure (klass))
6379                 cant_encode = TRUE;
6380
6381         if (mono_class_is_gtd (klass) || cant_encode) {
6382                 encode_value (-1, p, &p);
6383         } else {
6384                 gboolean has_nested = mono_class_get_nested_classes_property (klass) != NULL;
6385                 encode_value (klass->vtable_size, p, &p);
6386                 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);
6387                 if (klass->has_cctor)
6388                         encode_method_ref (acfg, mono_class_get_cctor (klass), p, &p);
6389                 if (klass->has_finalize)
6390                         encode_method_ref (acfg, mono_class_get_finalizer (klass), p, &p);
6391  
6392                 encode_value (klass->instance_size, p, &p);
6393                 encode_value (mono_class_data_size (klass), p, &p);
6394                 encode_value (klass->packing_size, p, &p);
6395                 encode_value (klass->min_align, p, &p);
6396
6397                 for (i = 0; i < klass->vtable_size; ++i) {
6398                         MonoMethod *cm = klass->vtable [i];
6399
6400                         if (cm)
6401                                 encode_method_ref (acfg, cm, p, &p);
6402                         else
6403                                 encode_value (0, p, &p);
6404                 }
6405         }
6406
6407         acfg->stats.class_info_size += p - buf;
6408
6409         g_assert (p - buf < buf_size);
6410         res = add_to_blob (acfg, buf, p - buf);
6411         g_free (buf);
6412
6413         return res;
6414 }
6415
6416 static char*
6417 get_plt_entry_debug_sym (MonoAotCompile *acfg, MonoJumpInfo *ji, GHashTable *cache)
6418 {
6419         char *debug_sym = NULL;
6420         char *prefix;
6421
6422         if (acfg->llvm && llvm_acfg->aot_opts.static_link) {
6423                 /* Need to add a prefix to create unique symbols */
6424                 prefix = g_strdup_printf ("plt_%s_", acfg->assembly_name_sym);
6425         } else {
6426 #if defined(TARGET_WIN32) && defined(TARGET_X86)
6427                 prefix = mangle_symbol_alloc ("plt_");
6428 #else
6429                 prefix = g_strdup ("plt_");
6430 #endif
6431         }
6432
6433         switch (ji->type) {
6434         case MONO_PATCH_INFO_METHOD:
6435                 debug_sym = get_debug_sym (ji->data.method, prefix, cache);
6436                 break;
6437         case MONO_PATCH_INFO_INTERNAL_METHOD:
6438                 debug_sym = g_strdup_printf ("%s_jit_icall_%s", prefix, ji->data.name);
6439                 break;
6440         case MONO_PATCH_INFO_RGCTX_FETCH:
6441                 debug_sym = g_strdup_printf ("%s_rgctx_fetch_%d", prefix, acfg->label_generator ++);
6442                 break;
6443         case MONO_PATCH_INFO_ICALL_ADDR:
6444         case MONO_PATCH_INFO_ICALL_ADDR_CALL: {
6445                 char *s = get_debug_sym (ji->data.method, "", cache);
6446                 
6447                 debug_sym = g_strdup_printf ("%s_icall_native_%s", prefix, s);
6448                 g_free (s);
6449                 break;
6450         }
6451         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
6452                 debug_sym = g_strdup_printf ("%s_jit_icall_native_%s", prefix, ji->data.name);
6453                 break;
6454         default:
6455                 break;
6456         }
6457
6458         g_free (prefix);
6459
6460         return sanitize_symbol (acfg, debug_sym);
6461 }
6462
6463 /*
6464  * Calls made from AOTed code are routed through a table of jumps similar to the
6465  * ELF PLT (Program Linkage Table). Initially the PLT entries jump to code which transfers
6466  * control to the AOT runtime through a trampoline.
6467  */
6468 static void
6469 emit_plt (MonoAotCompile *acfg)
6470 {
6471         int i;
6472
6473         if (acfg->aot_opts.llvm_only) {
6474                 g_assert (acfg->plt_offset == 1);
6475                 return;
6476         }
6477
6478         emit_line (acfg);
6479
6480         emit_section_change (acfg, ".text", 0);
6481         emit_alignment_code (acfg, 16);
6482         emit_info_symbol (acfg, "plt");
6483         emit_label (acfg, acfg->plt_symbol);
6484
6485         for (i = 0; i < acfg->plt_offset; ++i) {
6486                 char *debug_sym = NULL;
6487                 MonoPltEntry *plt_entry = NULL;
6488
6489                 if (i == 0)
6490                         /* 
6491                          * The first plt entry is unused.
6492                          */
6493                         continue;
6494
6495                 plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6496
6497                 debug_sym = plt_entry->debug_sym;
6498
6499                 if (acfg->thumb_mixed && !plt_entry->jit_used)
6500                         /* Emit only a thumb version */
6501                         continue;
6502
6503                 /* Skip plt entries not actually called */
6504                 if (!plt_entry->jit_used && !plt_entry->llvm_used)
6505                         continue;
6506
6507                 if (acfg->llvm && !acfg->thumb_mixed) {
6508                         emit_label (acfg, plt_entry->llvm_symbol);
6509                         if (acfg->llvm) {
6510                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6511 #if defined(TARGET_MACH)
6512                                 fprintf (acfg->fp, ".private_extern %s\n", plt_entry->llvm_symbol);
6513 #endif
6514                         }
6515                 }
6516
6517                 if (debug_sym) {
6518                         if (acfg->need_no_dead_strip) {
6519                                 emit_unset_mode (acfg);
6520                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6521                         }
6522                         emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6523                         emit_label (acfg, debug_sym);
6524                 }
6525
6526                 emit_label (acfg, plt_entry->symbol);
6527
6528                 arch_emit_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6529
6530                 if (debug_sym)
6531                         emit_symbol_size (acfg, debug_sym, ".");
6532         }
6533
6534         if (acfg->thumb_mixed) {
6535                 /* Make sure the ARM symbols don't alias the thumb ones */
6536                 emit_zero_bytes (acfg, 16);
6537
6538                 /* 
6539                  * Emit a separate set of PLT entries using thumb2 which is called by LLVM generated
6540                  * code.
6541                  */
6542                 for (i = 0; i < acfg->plt_offset; ++i) {
6543                         char *debug_sym = NULL;
6544                         MonoPltEntry *plt_entry = NULL;
6545
6546                         if (i == 0)
6547                                 continue;
6548
6549                         plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6550
6551                         /* Skip plt entries not actually called by LLVM code */
6552                         if (!plt_entry->llvm_used)
6553                                 continue;
6554
6555                         if (acfg->aot_opts.write_symbols) {
6556                                 if (plt_entry->debug_sym)
6557                                         debug_sym = g_strdup_printf ("%s_thumb", plt_entry->debug_sym);
6558                         }
6559
6560                         if (debug_sym) {
6561 #if defined(TARGET_MACH)
6562                                 fprintf (acfg->fp, "    .thumb_func %s\n", debug_sym);
6563                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6564 #endif
6565                                 emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6566                                 emit_label (acfg, debug_sym);
6567                         }
6568                         fprintf (acfg->fp, "\n.thumb_func\n");
6569
6570                         emit_label (acfg, plt_entry->llvm_symbol);
6571
6572                         if (acfg->llvm)
6573                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6574
6575                         arch_emit_llvm_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6576
6577                         if (debug_sym) {
6578                                 emit_symbol_size (acfg, debug_sym, ".");
6579                                 g_free (debug_sym);
6580                         }
6581                 }
6582         }
6583
6584         emit_symbol_size (acfg, acfg->plt_symbol, ".");
6585
6586         emit_info_symbol (acfg, "plt_end");
6587 }
6588
6589 /*
6590  * emit_trampoline_full:
6591  *
6592  *   If EMIT_TINFO is TRUE, emit additional information which can be used to create a MonoJitInfo for this trampoline by
6593  * create_jit_info_for_trampoline ().
6594  */
6595 static G_GNUC_UNUSED void
6596 emit_trampoline_full (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info, gboolean emit_tinfo)
6597 {
6598         char start_symbol [MAX_SYMBOL_SIZE];
6599         char end_symbol [MAX_SYMBOL_SIZE];
6600         char symbol [MAX_SYMBOL_SIZE];
6601         guint32 buf_size, info_offset;
6602         MonoJumpInfo *patch_info;
6603         guint8 *buf, *p;
6604         GPtrArray *patches;
6605         char *name;
6606         guint8 *code;
6607         guint32 code_size;
6608         MonoJumpInfo *ji;
6609         GSList *unwind_ops;
6610
6611         g_assert (info);
6612
6613         name = info->name;
6614         code = info->code;
6615         code_size = info->code_size;
6616         ji = info->ji;
6617         unwind_ops = info->unwind_ops;
6618
6619         /* Emit code */
6620
6621         sprintf (start_symbol, "%s%s", acfg->user_symbol_prefix, name);
6622
6623         emit_section_change (acfg, ".text", 0);
6624         emit_global (acfg, start_symbol, TRUE);
6625         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6626         emit_label (acfg, start_symbol);
6627
6628         sprintf (symbol, "%snamed_%s", acfg->temp_prefix, name);
6629         emit_label (acfg, symbol);
6630
6631         /* 
6632          * The code should access everything through the GOT, so we pass
6633          * TRUE here.
6634          */
6635         emit_and_reloc_code (acfg, NULL, code, code_size, ji, TRUE, NULL);
6636
6637         emit_symbol_size (acfg, start_symbol, ".");
6638
6639         if (emit_tinfo) {
6640                 sprintf (end_symbol, "%snamede_%s", acfg->temp_prefix, name);
6641                 emit_label (acfg, end_symbol);
6642         }
6643
6644         /* Emit info */
6645
6646         /* Sort relocations */
6647         patches = g_ptr_array_new ();
6648         for (patch_info = ji; patch_info; patch_info = patch_info->next)
6649                 if (patch_info->type != MONO_PATCH_INFO_NONE)
6650                         g_ptr_array_add (patches, patch_info);
6651         g_ptr_array_sort (patches, compare_patches);
6652
6653         buf_size = patches->len * 128 + 128;
6654         buf = (guint8 *)g_malloc (buf_size);
6655         p = buf;
6656
6657         encode_patch_list (acfg, patches, patches->len, FALSE, got_offset, p, &p);
6658         g_assert (p - buf < buf_size);
6659         g_ptr_array_free (patches, TRUE);
6660
6661         sprintf (symbol, "%s%s_p", acfg->user_symbol_prefix, name);
6662
6663         info_offset = add_to_blob (acfg, buf, p - buf);
6664
6665         emit_section_change (acfg, RODATA_SECT, 0);
6666         emit_global (acfg, symbol, FALSE);
6667         emit_label (acfg, symbol);
6668
6669         emit_int32 (acfg, info_offset);
6670
6671         if (emit_tinfo) {
6672                 guint8 *encoded;
6673                 guint32 encoded_len;
6674                 guint32 uw_offset;
6675
6676                 /*
6677                  * Emit additional information which can be used to reconstruct a partial MonoTrampInfo.
6678                  */
6679                 encoded = mono_unwind_ops_encode (info->unwind_ops, &encoded_len);
6680                 uw_offset = get_unwind_info_offset (acfg, encoded, encoded_len);
6681                 g_free (encoded);
6682
6683                 emit_symbol_diff (acfg, end_symbol, start_symbol, 0);
6684                 emit_int32 (acfg, uw_offset);
6685         }
6686
6687         /* Emit debug info */
6688         if (unwind_ops) {
6689                 char symbol2 [MAX_SYMBOL_SIZE];
6690
6691                 sprintf (symbol, "%s", name);
6692                 sprintf (symbol2, "%snamed_%s", acfg->temp_prefix, name);
6693
6694                 if (acfg->dwarf)
6695                         mono_dwarf_writer_emit_trampoline (acfg->dwarf, symbol, symbol2, NULL, NULL, code_size, unwind_ops);
6696         }
6697
6698         g_free (buf);
6699 }
6700
6701 static G_GNUC_UNUSED void
6702 emit_trampoline (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info)
6703 {
6704         emit_trampoline_full (acfg, got_offset, info, TRUE);
6705 }
6706
6707 static void
6708 emit_trampolines (MonoAotCompile *acfg)
6709 {
6710         char symbol [MAX_SYMBOL_SIZE];
6711         char end_symbol [MAX_SYMBOL_SIZE];
6712         int i, tramp_got_offset;
6713         int ntype;
6714 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6715         int tramp_type;
6716 #endif
6717
6718         if (!mono_aot_mode_is_full (&acfg->aot_opts) || acfg->aot_opts.llvm_only)
6719                 return;
6720         
6721         g_assert (acfg->image->assembly);
6722
6723         /* Currently, we emit most trampolines into the mscorlib AOT image. */
6724         if (strcmp (acfg->image->assembly->aname.name, "mscorlib") == 0) {
6725 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6726                 MonoTrampInfo *info;
6727
6728                 /*
6729                  * Emit the generic trampolines.
6730                  *
6731                  * We could save some code by treating the generic trampolines as a wrapper
6732                  * method, but that approach has its own complexities, so we choose the simpler
6733                  * method.
6734                  */
6735                 for (tramp_type = 0; tramp_type < MONO_TRAMPOLINE_NUM; ++tramp_type) {
6736                         /* we overload the boolean here to indicate the slightly different trampoline needed, see mono_arch_create_generic_trampoline() */
6737 #ifdef DISABLE_REMOTING
6738                         if (tramp_type == MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING)
6739                                 continue;
6740 #endif
6741 #ifndef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
6742                         if (tramp_type == MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD)
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 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD_AOT
6825                 mono_arch_create_handler_block_trampoline (&info, TRUE);
6826                 emit_trampoline (acfg, acfg->got_offset, info);
6827 #endif
6828
6829                 if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
6830                         mono_arch_get_enter_icall_trampoline (&info);
6831                         emit_trampoline (acfg, acfg->got_offset, info);
6832                 }
6833
6834 #endif /* #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES */
6835
6836                 /* Emit trampolines which are numerous */
6837
6838                 /*
6839                  * These include the following:
6840                  * - specific trampolines
6841                  * - static rgctx invoke trampolines
6842                  * - imt trampolines
6843                  * These trampolines have the same code, they are parameterized by GOT 
6844                  * slots. 
6845                  * They are defined in this file, in the arch_... routines instead of
6846                  * in tramp-<ARCH>.c, since it is easier to do it this way.
6847                  */
6848
6849                 /*
6850                  * When running in aot-only mode, we can't create specific trampolines at 
6851                  * runtime, so we create a few, and save them in the AOT file. 
6852                  * Normal trampolines embed their argument as a literal inside the 
6853                  * trampoline code, we can't do that here, so instead we embed an offset
6854                  * which needs to be added to the trampoline address to get the address of
6855                  * the GOT slot which contains the argument value.
6856                  * The generated trampolines jump to the generic trampolines using another
6857                  * GOT slot, which will be setup by the AOT loader to point to the 
6858                  * generic trampoline code of the given type.
6859                  */
6860
6861                 /*
6862                  * FIXME: Maybe we should use more specific trampolines (i.e. one class init for
6863                  * each class).
6864                  */
6865
6866                 emit_section_change (acfg, ".text", 0);
6867
6868                 tramp_got_offset = acfg->got_offset;
6869
6870                 for (ntype = 0; ntype < MONO_AOT_TRAMP_NUM; ++ntype) {
6871                         switch (ntype) {
6872                         case MONO_AOT_TRAMP_SPECIFIC:
6873                                 sprintf (symbol, "specific_trampolines");
6874                                 break;
6875                         case MONO_AOT_TRAMP_STATIC_RGCTX:
6876                                 sprintf (symbol, "static_rgctx_trampolines");
6877                                 break;
6878                         case MONO_AOT_TRAMP_IMT:
6879                                 sprintf (symbol, "imt_trampolines");
6880                                 break;
6881                         case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6882                                 sprintf (symbol, "gsharedvt_arg_trampolines");
6883                                 break;
6884                         default:
6885                                 g_assert_not_reached ();
6886                         }
6887
6888                         sprintf (end_symbol, "%s_e", symbol);
6889
6890                         if (acfg->aot_opts.write_symbols)
6891                                 emit_local_symbol (acfg, symbol, end_symbol, TRUE);
6892
6893                         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6894                         emit_info_symbol (acfg, symbol);
6895
6896                         acfg->trampoline_got_offset_base [ntype] = tramp_got_offset;
6897
6898                         for (i = 0; i < acfg->num_trampolines [ntype]; ++i) {
6899                                 int tramp_size = 0;
6900
6901                                 switch (ntype) {
6902                                 case MONO_AOT_TRAMP_SPECIFIC:
6903                                         arch_emit_specific_trampoline (acfg, tramp_got_offset, &tramp_size);
6904                                         tramp_got_offset += 2;
6905                                 break;
6906                                 case MONO_AOT_TRAMP_STATIC_RGCTX:
6907                                         arch_emit_static_rgctx_trampoline (acfg, tramp_got_offset, &tramp_size);                                
6908                                         tramp_got_offset += 2;
6909                                         break;
6910                                 case MONO_AOT_TRAMP_IMT:
6911                                         arch_emit_imt_trampoline (acfg, tramp_got_offset, &tramp_size);
6912                                         tramp_got_offset += 1;
6913                                         break;
6914                                 case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6915                                         arch_emit_gsharedvt_arg_trampoline (acfg, tramp_got_offset, &tramp_size);                               
6916                                         tramp_got_offset += 2;
6917                                         break;
6918                                 default:
6919                                         g_assert_not_reached ();
6920                                 }
6921                                 if (!acfg->trampoline_size [ntype]) {
6922                                         g_assert (tramp_size);
6923                                         acfg->trampoline_size [ntype] = tramp_size;
6924                                 }
6925                         }
6926
6927                         emit_label (acfg, end_symbol);
6928                         emit_int32 (acfg, 0);
6929                 }
6930
6931                 arch_emit_specific_trampoline_pages (acfg);
6932
6933                 /* Reserve some entries at the end of the GOT for our use */
6934                 acfg->num_trampoline_got_entries = tramp_got_offset - acfg->got_offset;
6935         }
6936
6937         acfg->got_offset += acfg->num_trampoline_got_entries;
6938 }
6939
6940 static gboolean
6941 str_begins_with (const char *str1, const char *str2)
6942 {
6943         int len = strlen (str2);
6944         return strncmp (str1, str2, len) == 0;
6945 }
6946
6947 void*
6948 mono_aot_readonly_field_override (MonoClassField *field)
6949 {
6950         ReadOnlyValue *rdv;
6951         for (rdv = readonly_values; rdv; rdv = rdv->next) {
6952                 char *p = rdv->name;
6953                 int len;
6954                 len = strlen (field->parent->name_space);
6955                 if (strncmp (p, field->parent->name_space, len))
6956                         continue;
6957                 p += len;
6958                 if (*p++ != '.')
6959                         continue;
6960                 len = strlen (field->parent->name);
6961                 if (strncmp (p, field->parent->name, len))
6962                         continue;
6963                 p += len;
6964                 if (*p++ != '.')
6965                         continue;
6966                 if (strcmp (p, field->name))
6967                         continue;
6968                 switch (rdv->type) {
6969                 case MONO_TYPE_I1:
6970                         return &rdv->value.i1;
6971                 case MONO_TYPE_I2:
6972                         return &rdv->value.i2;
6973                 case MONO_TYPE_I4:
6974                         return &rdv->value.i4;
6975                 default:
6976                         break;
6977                 }
6978         }
6979         return NULL;
6980 }
6981
6982 static void
6983 add_readonly_value (MonoAotOptions *opts, const char *val)
6984 {
6985         ReadOnlyValue *rdv;
6986         const char *fval;
6987         const char *tval;
6988         /* the format of val is:
6989          * namespace.typename.fieldname=type/value
6990          * type can be i1 for uint8/int8/boolean, i2 for uint16/int16/char, i4 for uint32/int32
6991          */
6992         fval = strrchr (val, '/');
6993         if (!fval) {
6994                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing /.\n", val);
6995                 exit (1);
6996         }
6997         tval = strrchr (val, '=');
6998         if (!tval) {
6999                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing =.\n", val);
7000                 exit (1);
7001         }
7002         rdv = g_new0 (ReadOnlyValue, 1);
7003         rdv->name = (char *)g_malloc0 (tval - val + 1);
7004         memcpy (rdv->name, val, tval - val);
7005         tval++;
7006         fval++;
7007         if (strncmp (tval, "i1", 2) == 0) {
7008                 rdv->value.i1 = atoi (fval);
7009                 rdv->type = MONO_TYPE_I1;
7010         } else if (strncmp (tval, "i2", 2) == 0) {
7011                 rdv->value.i2 = atoi (fval);
7012                 rdv->type = MONO_TYPE_I2;
7013         } else if (strncmp (tval, "i4", 2) == 0) {
7014                 rdv->value.i4 = atoi (fval);
7015                 rdv->type = MONO_TYPE_I4;
7016         } else {
7017                 fprintf (stderr, "AOT : unsupported type for readonly field '%s'.\n", tval);
7018                 exit (1);
7019         }
7020         rdv->next = readonly_values;
7021         readonly_values = rdv;
7022 }
7023
7024 static gchar *
7025 clean_path (gchar * path)
7026 {
7027         if (!path)
7028                 return NULL;
7029
7030         if (g_str_has_suffix (path, G_DIR_SEPARATOR_S))
7031                 return path;
7032
7033         gchar *clean = g_strconcat (path, G_DIR_SEPARATOR_S, NULL);
7034         g_free (path);
7035
7036         return clean;
7037 }
7038
7039 static gchar *
7040 wrap_path (gchar * path)
7041 {
7042         int len;
7043         if (!path)
7044                 return NULL;
7045
7046         // If the string contains no spaces, just return the original string.
7047         if (strstr (path, " ") == NULL)
7048                 return path;
7049
7050         // If the string is already wrapped in quotes, return it.
7051         len = strlen (path);
7052         if (len >= 2 && path[0] == '\"' && path[len-1] == '\"')
7053                 return path;
7054
7055         // If the string contains spaces, then wrap it in quotes.
7056         gchar *clean = g_strdup_printf ("\"%s\"", path);
7057
7058         return clean;
7059 }
7060
7061 // Duplicate a char range and add it to a ptrarray, but only if it is nonempty
7062 static void
7063 ptr_array_add_range_if_nonempty(GPtrArray *args, gchar const *start, gchar const *end)
7064 {
7065         ptrdiff_t len = end-start;
7066         if (len > 0)
7067                 g_ptr_array_add (args, g_strndup (start, len));
7068 }
7069
7070 static GPtrArray *
7071 mono_aot_split_options (const char *aot_options)
7072 {
7073         enum MonoAotOptionState {
7074                 MONO_AOT_OPTION_STATE_DEFAULT,
7075                 MONO_AOT_OPTION_STATE_STRING,
7076                 MONO_AOT_OPTION_STATE_ESCAPE,
7077         };
7078
7079         GPtrArray *args = g_ptr_array_new ();
7080         enum MonoAotOptionState state = MONO_AOT_OPTION_STATE_DEFAULT;
7081         gchar const *opt_start = aot_options;
7082         gboolean end_of_string = FALSE;
7083         gchar cur;
7084
7085         g_return_val_if_fail (aot_options != NULL, NULL);
7086
7087         while ((cur = *aot_options) != '\0') {
7088                 if (state == MONO_AOT_OPTION_STATE_ESCAPE)
7089                         goto next;
7090
7091                 switch (cur) {
7092                 case '"':
7093                         // If we find a quote, then if we're in the default case then
7094                         // it means we've found the start of a string, if not then it
7095                         // means we've found the end of the string and should switch
7096                         // back to the default case.            
7097                         switch (state) {
7098                         case MONO_AOT_OPTION_STATE_DEFAULT:
7099                                 state = MONO_AOT_OPTION_STATE_STRING;
7100                                 break;
7101                         case MONO_AOT_OPTION_STATE_STRING:
7102                                 state = MONO_AOT_OPTION_STATE_DEFAULT;
7103                                 break;
7104                         case MONO_AOT_OPTION_STATE_ESCAPE:
7105                                 g_assert_not_reached ();
7106                                 break;
7107                         }
7108                         break;
7109                 case '\\':
7110                         // If we've found an escaping operator, then this means we
7111                         // should not process the next character if inside a string.            
7112                         if (state == MONO_AOT_OPTION_STATE_STRING) 
7113                                 state = MONO_AOT_OPTION_STATE_ESCAPE;
7114                         break;
7115                 case ',':
7116                         // If we're in the default state then this means we've found
7117                         // an option, store it for later processing.
7118                         if (state == MONO_AOT_OPTION_STATE_DEFAULT)
7119                                 goto new_opt;
7120                         break;
7121                 }
7122
7123         next:
7124                 aot_options++;
7125         restart:
7126                 // If the next character is end of string, then process the last option.
7127                 if (*(aot_options) == '\0') {
7128                         end_of_string = TRUE;
7129                         goto new_opt;
7130                 }
7131                 continue;
7132
7133         new_opt:
7134                 ptr_array_add_range_if_nonempty (args, opt_start, aot_options);
7135                 opt_start = ++aot_options;
7136                 if (end_of_string)
7137                         break;
7138                 goto restart; // Check for null and continue loop
7139         }
7140
7141         return args;
7142 }
7143
7144 static void
7145 mono_aot_parse_options (const char *aot_options, MonoAotOptions *opts)
7146 {
7147         GPtrArray* args;
7148
7149         args = mono_aot_split_options (aot_options ? aot_options : "");
7150         for (int i = 0; i < args->len; ++i) {
7151                 const char *arg = (const char *)g_ptr_array_index (args, i);
7152
7153                 if (str_begins_with (arg, "outfile=")) {
7154                         opts->outfile = g_strdup (arg + strlen ("outfile="));
7155                 } else if (str_begins_with (arg, "llvm-outfile=")) {
7156                         opts->llvm_outfile = g_strdup (arg + strlen ("llvm-outfile="));
7157                 } else if (str_begins_with (arg, "temp-path=")) {
7158                         opts->temp_path = clean_path (g_strdup (arg + strlen ("temp-path=")));
7159                 } else if (str_begins_with (arg, "save-temps")) {
7160                         opts->save_temps = TRUE;
7161                 } else if (str_begins_with (arg, "keep-temps")) {
7162                         opts->save_temps = TRUE;
7163                 } else if (str_begins_with (arg, "write-symbols")) {
7164                         opts->write_symbols = TRUE;
7165                 } else if (str_begins_with (arg, "no-write-symbols")) {
7166                         opts->write_symbols = FALSE;
7167                 // Intentionally undocumented -- one-off experiment
7168                 } else if (str_begins_with (arg, "metadata-only")) {
7169                         opts->metadata_only = TRUE;
7170                 } else if (str_begins_with (arg, "bind-to-runtime-version")) {
7171                         opts->bind_to_runtime_version = TRUE;
7172                 } else if (str_begins_with (arg, "full")) {
7173                         opts->mode = MONO_AOT_MODE_FULL;
7174                 } else if (str_begins_with (arg, "hybrid")) {
7175                         opts->mode = MONO_AOT_MODE_HYBRID;                      
7176                 } else if (str_begins_with (arg, "interp")) {
7177                         opts->mode = MONO_AOT_MODE_INTERP;
7178                 } else if (str_begins_with (arg, "threads=")) {
7179                         opts->nthreads = atoi (arg + strlen ("threads="));
7180                 } else if (str_begins_with (arg, "static")) {
7181                         opts->static_link = TRUE;
7182                         opts->no_dlsym = TRUE;
7183                 } else if (str_begins_with (arg, "asmonly")) {
7184                         opts->asm_only = TRUE;
7185                 } else if (str_begins_with (arg, "asmwriter")) {
7186                         opts->asm_writer = TRUE;
7187                 } else if (str_begins_with (arg, "nodebug")) {
7188                         opts->nodebug = TRUE;
7189                 } else if (str_begins_with (arg, "dwarfdebug")) {
7190                         opts->dwarf_debug = TRUE;
7191                 // Intentionally undocumented -- No one remembers what this does. It appears to be ARM-only
7192                 } else if (str_begins_with (arg, "nopagetrampolines")) {
7193                         opts->use_trampolines_page = FALSE;
7194                 } else if (str_begins_with (arg, "ntrampolines=")) {
7195                         opts->ntrampolines = atoi (arg + strlen ("ntrampolines="));
7196                 } else if (str_begins_with (arg, "nrgctx-trampolines=")) {
7197                         opts->nrgctx_trampolines = atoi (arg + strlen ("nrgctx-trampolines="));
7198                 } else if (str_begins_with (arg, "nrgctx-fetch-trampolines=")) {
7199                         opts->nrgctx_fetch_trampolines = atoi (arg + strlen ("nrgctx-fetch-trampolines="));
7200                 } else if (str_begins_with (arg, "nimt-trampolines=")) {
7201                         opts->nimt_trampolines = atoi (arg + strlen ("nimt-trampolines="));
7202                 } else if (str_begins_with (arg, "ngsharedvt-trampolines=")) {
7203                         opts->ngsharedvt_arg_trampolines = atoi (arg + strlen ("ngsharedvt-trampolines="));
7204                 } else if (str_begins_with (arg, "tool-prefix=")) {
7205                         opts->tool_prefix = g_strdup (arg + strlen ("tool-prefix="));
7206                 } else if (str_begins_with (arg, "ld-flags=")) {
7207                         opts->ld_flags = g_strdup (arg + strlen ("ld-flags="));                 
7208                 } else if (str_begins_with (arg, "soft-debug")) {
7209                         opts->soft_debug = TRUE;
7210                 // Intentionally undocumented x2-- deprecated
7211                 } else if (str_begins_with (arg, "gen-seq-points-file=")) {
7212                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file= is deprecated.\n");
7213                 } else if (str_begins_with (arg, "gen-seq-points-file")) {
7214                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file is deprecated.\n");
7215                 } else if (str_begins_with (arg, "msym-dir=")) {
7216                         debug_options.no_seq_points_compact_data = FALSE;
7217                         opts->gen_msym_dir = TRUE;
7218                         opts->gen_msym_dir_path = g_strdup (arg + strlen ("msym_dir="));;
7219                 } else if (str_begins_with (arg, "direct-pinvoke")) {
7220                         opts->direct_pinvoke = TRUE;
7221                 } else if (str_begins_with (arg, "direct-icalls")) {
7222                         opts->direct_icalls = TRUE;
7223                 } else if (str_begins_with (arg, "no-direct-calls")) {
7224                         opts->no_direct_calls = TRUE;
7225                 } else if (str_begins_with (arg, "print-skipped")) {
7226                         opts->print_skipped_methods = TRUE;
7227                 } else if (str_begins_with (arg, "stats")) {
7228                         opts->stats = TRUE;
7229                 // Intentionally undocumented-- has no known function other than to debug the compiler
7230                 } else if (str_begins_with (arg, "no-instances")) {
7231                         opts->no_instances = TRUE;
7232                 // Intentionally undocumented x4-- Used for internal debugging of compiler
7233                 } else if (str_begins_with (arg, "log-generics")) {
7234                         opts->log_generics = TRUE;
7235                 } else if (str_begins_with (arg, "log-instances=")) {
7236                         opts->log_instances = TRUE;
7237                         opts->instances_logfile_path = g_strdup (arg + strlen ("log-instances="));
7238                 } else if (str_begins_with (arg, "log-instances")) {
7239                         opts->log_instances = TRUE;
7240                 } else if (str_begins_with (arg, "internal-logfile=")) {
7241                         opts->logfile = g_strdup (arg + strlen ("internal-logfile="));
7242                 } else if (str_begins_with (arg, "mtriple=")) {
7243                         opts->mtriple = g_strdup (arg + strlen ("mtriple="));
7244                 } else if (str_begins_with (arg, "llvm-path=")) {
7245                         opts->llvm_path = clean_path (g_strdup (arg + strlen ("llvm-path=")));
7246                 } else if (!strcmp (arg, "llvm")) {
7247                         opts->llvm = TRUE;
7248                 } else if (str_begins_with (arg, "readonly-value=")) {
7249                         add_readonly_value (opts, arg + strlen ("readonly-value="));
7250                 } else if (str_begins_with (arg, "info")) {
7251                         printf ("AOT target setup: %s.\n", AOT_TARGET_STR);
7252                         exit (0);
7253                 // Intentionally undocumented: Used for precise stack maps, which are not available yet
7254                 } else if (str_begins_with (arg, "gc-maps")) {
7255                         mini_gc_enable_gc_maps_for_aot ();
7256                 // Intentionally undocumented: Used for internal debugging
7257                 } else if (str_begins_with (arg, "dump")) {
7258                         opts->dump_json = TRUE;
7259                 } else if (str_begins_with (arg, "llvmonly")) {
7260                         opts->mode = MONO_AOT_MODE_FULL;
7261                         opts->llvm = TRUE;
7262                         opts->llvm_only = TRUE;
7263                 } else if (str_begins_with (arg, "data-outfile=")) {
7264                         opts->data_outfile = g_strdup (arg + strlen ("data-outfile="));
7265                 } else if (str_begins_with (arg, "profile=")) {
7266                         opts->profile_files = g_list_append (opts->profile_files, g_strdup (arg + strlen ("profile=")));
7267                 } else if (!strcmp (arg, "profile-only")) {
7268                         opts->profile_only = TRUE;
7269                 } else if (!strcmp (arg, "verbose")) {
7270                         opts->verbose = TRUE;
7271                 } else if (str_begins_with (arg, "help") || str_begins_with (arg, "?")) {
7272                         printf ("Supported options for --aot:\n");
7273                         printf ("    asmonly\n");
7274                         printf ("    bind-to-runtime-version\n");
7275                         printf ("    bitcode\n");
7276                         printf ("    data-outfile=\n");
7277                         printf ("    direct-icalls\n");
7278                         printf ("    direct-pinvoke\n");
7279                         printf ("    dwarfdebug\n");
7280                         printf ("    full\n");
7281                         printf ("    hybrid\n");
7282                         printf ("    info\n");
7283                         printf ("    keep-temps\n");
7284                         printf ("    llvm\n");
7285                         printf ("    llvmonly\n");
7286                         printf ("    llvm-outfile=\n");
7287                         printf ("    llvm-path=\n");
7288                         printf ("    msym-dir=\n");
7289                         printf ("    mtriple\n");
7290                         printf ("    nimt-trampolines=\n");
7291                         printf ("    nodebug\n");
7292                         printf ("    no-direct-calls\n");
7293                         printf ("    no-write-symbols\n");
7294                         printf ("    nrgctx-trampolines=\n");
7295                         printf ("    nrgctx-fetch-trampolines=\n");
7296                         printf ("    ngsharedvt-trampolines=\n");
7297                         printf ("    ntrampolines=\n");
7298                         printf ("    outfile=\n");
7299                         printf ("    profile=\n");
7300                         printf ("    profile-only\n");
7301                         printf ("    print-skipped-methods\n");
7302                         printf ("    readonly-value=\n");
7303                         printf ("    save-temps\n");
7304                         printf ("    soft-debug\n");
7305                         printf ("    static\n");
7306                         printf ("    stats\n");
7307                         printf ("    temp-path=\n");
7308                         printf ("    tool-prefix=\n");
7309                         printf ("    threads=\n");
7310                         printf ("    write-symbols\n");
7311                         printf ("    verbose\n");
7312                         printf ("    help/?\n");
7313                         exit (0);
7314                 } else {
7315                         fprintf (stderr, "AOT : Unknown argument '%s'.\n", arg);
7316                         exit (1);
7317                 }
7318
7319                 g_free ((gpointer) arg);
7320         }
7321
7322         if (opts->use_trampolines_page) {
7323                 opts->ntrampolines = 0;
7324                 opts->nrgctx_trampolines = 0;
7325                 opts->nimt_trampolines = 0;
7326                 opts->ngsharedvt_arg_trampolines = 0;
7327         }
7328
7329         g_ptr_array_free (args, /*free_seg=*/TRUE);
7330 }
7331
7332 static void
7333 add_token_info_hash (gpointer key, gpointer value, gpointer user_data)
7334 {
7335         MonoMethod *method = (MonoMethod*)key;
7336         MonoJumpInfoToken *ji = (MonoJumpInfoToken*)value;
7337         MonoAotCompile *acfg = (MonoAotCompile *)user_data;
7338         MonoJumpInfoToken *new_ji;
7339
7340         new_ji = (MonoJumpInfoToken *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfoToken));
7341         new_ji->image = ji->image;
7342         new_ji->token = ji->token;
7343         g_hash_table_insert (acfg->token_info_hash, method, new_ji);
7344 }
7345
7346 static gboolean
7347 can_encode_class (MonoAotCompile *acfg, MonoClass *klass)
7348 {
7349         if (klass->type_token)
7350                 return TRUE;
7351         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR) || (klass->byval_arg.type == MONO_TYPE_PTR))
7352                 return TRUE;
7353         if (klass->rank)
7354                 return can_encode_class (acfg, klass->element_class);
7355         return FALSE;
7356 }
7357
7358 static gboolean
7359 can_encode_method (MonoAotCompile *acfg, MonoMethod *method)
7360 {
7361                 if (method->wrapper_type) {
7362                         switch (method->wrapper_type) {
7363                         case MONO_WRAPPER_NONE:
7364                         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
7365                         case MONO_WRAPPER_XDOMAIN_INVOKE:
7366                         case MONO_WRAPPER_STFLD:
7367                         case MONO_WRAPPER_LDFLD:
7368                         case MONO_WRAPPER_LDFLDA:
7369                         case MONO_WRAPPER_STELEMREF:
7370                         case MONO_WRAPPER_PROXY_ISINST:
7371                         case MONO_WRAPPER_ALLOC:
7372                         case MONO_WRAPPER_REMOTING_INVOKE:
7373                         case MONO_WRAPPER_UNKNOWN:
7374                         case MONO_WRAPPER_WRITE_BARRIER:
7375                         case MONO_WRAPPER_DELEGATE_INVOKE:
7376                         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
7377                         case MONO_WRAPPER_DELEGATE_END_INVOKE:
7378                         case MONO_WRAPPER_SYNCHRONIZED:
7379                                 break;
7380                         case MONO_WRAPPER_MANAGED_TO_MANAGED:
7381                         case MONO_WRAPPER_CASTCLASS: {
7382                                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
7383
7384                                 if (info)
7385                                         return TRUE;
7386                                 else
7387                                         return FALSE;
7388                                 break;
7389                         }
7390                         default:
7391                                 //printf ("Skip (wrapper call): %d -> %s\n", patch_info->type, mono_method_full_name (patch_info->data.method, TRUE));
7392                                 return FALSE;
7393                         }
7394                 } else {
7395                         if (!method->token) {
7396                                 /* The method is part of a constructed type like Int[,].Set (). */
7397                                 if (!g_hash_table_lookup (acfg->token_info_hash, method)) {
7398                                         if (method->klass->rank)
7399                                                 return TRUE;
7400                                         return FALSE;
7401                                 }
7402                         }
7403                 }
7404                 return TRUE;
7405 }
7406
7407 static gboolean
7408 can_encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info)
7409 {
7410         switch (patch_info->type) {
7411         case MONO_PATCH_INFO_METHOD:
7412         case MONO_PATCH_INFO_METHODCONST:
7413         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
7414                 MonoMethod *method = patch_info->data.method;
7415
7416                 return can_encode_method (acfg, method);
7417         }
7418         case MONO_PATCH_INFO_VTABLE:
7419         case MONO_PATCH_INFO_CLASS:
7420         case MONO_PATCH_INFO_IID:
7421         case MONO_PATCH_INFO_ADJUSTED_IID:
7422                 if (!can_encode_class (acfg, patch_info->data.klass)) {
7423                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7424                         return FALSE;
7425                 }
7426                 break;
7427         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE: {
7428                 if (!can_encode_class (acfg, patch_info->data.del_tramp->klass)) {
7429                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7430                         return FALSE;
7431                 }
7432                 break;
7433         }
7434         case MONO_PATCH_INFO_RGCTX_FETCH:
7435         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
7436                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
7437
7438                 if (!can_encode_method (acfg, entry->method))
7439                         return FALSE;
7440                 if (!can_encode_patch (acfg, entry->data))
7441                         return FALSE;
7442                 break;
7443         }
7444         default:
7445                 break;
7446         }
7447
7448         return TRUE;
7449 }
7450
7451 static gboolean
7452 is_concrete_type (MonoType *t)
7453 {
7454         MonoClass *klass;
7455         int i;
7456
7457         if (t->type == MONO_TYPE_VAR || t->type == MONO_TYPE_MVAR)
7458                 return FALSE;
7459         if (t->type == MONO_TYPE_GENERICINST) {
7460                 MonoGenericContext *orig_ctx;
7461                 MonoGenericInst *inst;
7462                 MonoType *arg;
7463
7464                 if (!MONO_TYPE_ISSTRUCT (t))
7465                         return TRUE;
7466                 klass = mono_class_from_mono_type (t);
7467                 orig_ctx = &mono_class_get_generic_class (klass)->context;
7468
7469                 inst = orig_ctx->class_inst;
7470                 if (inst) {
7471                         for (i = 0; i < inst->type_argc; ++i) {
7472                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7473                                 if (!is_concrete_type (arg))
7474                                         return FALSE;
7475                         }
7476                 }
7477                 inst = orig_ctx->method_inst;
7478                 if (inst) {
7479                         for (i = 0; i < inst->type_argc; ++i) {
7480                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7481                                 if (!is_concrete_type (arg))
7482                                         return FALSE;
7483                         }
7484                 }
7485         }
7486         return TRUE;
7487 }
7488
7489 /* LOCKING: Assumes the loader lock is held */
7490 static void
7491 add_gsharedvt_wrappers (MonoAotCompile *acfg, MonoMethodSignature *sig, gboolean gsharedvt_in, gboolean gsharedvt_out)
7492 {
7493         MonoMethod *wrapper;
7494         gboolean concrete = TRUE;
7495         gboolean add_in = gsharedvt_in;
7496         gboolean add_out = gsharedvt_out;
7497
7498         if (gsharedvt_in && g_hash_table_lookup (acfg->gsharedvt_in_signatures, sig))
7499                 add_in = FALSE;
7500         if (gsharedvt_out && g_hash_table_lookup (acfg->gsharedvt_out_signatures, sig))
7501                 add_out = FALSE;
7502
7503         if (!add_in && !add_out)
7504                 return;
7505
7506         if (mini_is_gsharedvt_variable_signature (sig))
7507                 return;
7508
7509         if (add_in)
7510                 g_hash_table_insert (acfg->gsharedvt_in_signatures, sig, sig);
7511         if (add_out)
7512                 g_hash_table_insert (acfg->gsharedvt_out_signatures, sig, sig);
7513
7514         if (!sig->has_type_parameters) {
7515                 //printf ("%s\n", mono_signature_full_name (sig));
7516
7517                 if (gsharedvt_in) {
7518                         wrapper = mini_get_gsharedvt_in_sig_wrapper (sig);
7519                         add_extra_method (acfg, wrapper);
7520                 }
7521                 if (gsharedvt_out) {
7522                         wrapper = mini_get_gsharedvt_out_sig_wrapper (sig);
7523                         add_extra_method (acfg, wrapper);
7524                 }
7525         } else {
7526                 /* For signatures creared during generic sharing, convert them to a concrete signature if possible */
7527                 MonoMethodSignature *copy = mono_metadata_signature_dup (sig);
7528                 int i;
7529
7530                 //printf ("%s\n", mono_signature_full_name (sig));
7531
7532                 copy->ret = mini_get_underlying_type (sig->ret);
7533                 if (!is_concrete_type (copy->ret))
7534                         concrete = FALSE;
7535                 for (i = 0; i < sig->param_count; ++i) {
7536                         copy->params [i] = mini_get_underlying_type (sig->params [i]);
7537                         if (!is_concrete_type (copy->params [i]))
7538                                 concrete = FALSE;
7539                 }
7540                 if (concrete) {
7541                         copy->has_type_parameters = 0;
7542
7543                         if (gsharedvt_in) {
7544                                 wrapper = mini_get_gsharedvt_in_sig_wrapper (copy);
7545                                 add_extra_method (acfg, wrapper);
7546                         }
7547
7548                         if (gsharedvt_out) {
7549                                 wrapper = mini_get_gsharedvt_out_sig_wrapper (copy);
7550                                 add_extra_method (acfg, wrapper);
7551                         }
7552
7553                         //printf ("%s\n", mono_method_full_name (wrapper, 1));
7554                 }
7555         }
7556 }
7557
7558 /*
7559  * compile_method:
7560  *
7561  *   AOT compile a given method.
7562  * This function might be called by multiple threads, so it must be thread-safe.
7563  */
7564 static void
7565 compile_method (MonoAotCompile *acfg, MonoMethod *method)
7566 {
7567         MonoCompile *cfg;
7568         MonoJumpInfo *patch_info;
7569         gboolean skip;
7570         int index, depth;
7571         MonoMethod *wrapped;
7572         GTimer *jit_timer;
7573         JitFlags flags;
7574
7575         if (acfg->aot_opts.metadata_only)
7576                 return;
7577
7578         mono_acfg_lock (acfg);
7579         index = get_method_index (acfg, method);
7580         mono_acfg_unlock (acfg);
7581
7582         /* fixme: maybe we can also precompile wrapper methods */
7583         if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
7584                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
7585                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT)) {
7586                 //printf ("Skip (impossible): %s\n", mono_method_full_name (method, TRUE));
7587                 return;
7588         }
7589
7590         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
7591                 return;
7592
7593         wrapped = mono_marshal_method_from_wrapper (method);
7594         if (wrapped && (wrapped->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && wrapped->is_generic)
7595                 // FIXME: The wrapper should be generic too, but it is not
7596                 return;
7597
7598         if (method->wrapper_type == MONO_WRAPPER_COMINTEROP)
7599                 return;
7600
7601         if (acfg->aot_opts.profile_only && !method->is_inflated && !g_hash_table_lookup (acfg->profile_methods, method))
7602                 return;
7603
7604         InterlockedIncrement (&acfg->stats.mcount);
7605
7606 #if 0
7607         if (method->is_generic || mono_class_is_gtd (method->klass)) {
7608                 InterlockedIncrement (&acfg->stats.genericcount);
7609                 return;
7610         }
7611 #endif
7612
7613         //acfg->aot_opts.print_skipped_methods = TRUE;
7614
7615         /*
7616          * Since these methods are the only ones which are compiled with
7617          * AOT support, and they are not used by runtime startup/shutdown code,
7618          * the runtime will not see AOT methods during AOT compilation,so it
7619          * does not need to support them by creating a fake GOT etc.
7620          */
7621         flags = JIT_FLAG_AOT;
7622         if (mono_aot_mode_is_full (&acfg->aot_opts))
7623                 flags = (JitFlags)(flags | JIT_FLAG_FULL_AOT);
7624         if (acfg->llvm)
7625                 flags = (JitFlags)(flags | JIT_FLAG_LLVM);
7626         if (acfg->aot_opts.llvm_only)
7627                 flags = (JitFlags)(flags | JIT_FLAG_LLVM_ONLY | JIT_FLAG_EXPLICIT_NULL_CHECKS);
7628         if (acfg->aot_opts.no_direct_calls)
7629                 flags = (JitFlags)(flags | JIT_FLAG_NO_DIRECT_ICALLS);
7630         if (acfg->aot_opts.direct_pinvoke)
7631                 flags = (JitFlags)(flags | JIT_FLAG_DIRECT_PINVOKE);
7632
7633         jit_timer = mono_time_track_start ();
7634         cfg = mini_method_compile (method, acfg->opts, mono_get_root_domain (), flags, 0, index);
7635         mono_time_track_end (&mono_jit_stats.jit_time, jit_timer);
7636
7637         if (cfg->exception_type == MONO_EXCEPTION_GENERIC_SHARING_FAILED) {
7638                 if (acfg->aot_opts.print_skipped_methods)
7639                         printf ("Skip (gshared failure): %s (%s)\n", mono_method_get_full_name (method), cfg->exception_message);
7640                 InterlockedIncrement (&acfg->stats.genericcount);
7641                 return;
7642         }
7643         if (cfg->exception_type != MONO_EXCEPTION_NONE) {
7644                 /* Some instances cannot be JITted due to constraints etc. */
7645                 if (!method->is_inflated)
7646                         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));
7647                 /* Let the exception happen at runtime */
7648                 return;
7649         }
7650
7651         if (cfg->disable_aot) {
7652                 if (acfg->aot_opts.print_skipped_methods)
7653                         printf ("Skip (disabled): %s\n", mono_method_get_full_name (method));
7654                 InterlockedIncrement (&acfg->stats.ocount);
7655                 return;
7656         }
7657         cfg->method_index = index;
7658
7659         /* Nullify patches which need no aot processing */
7660         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7661                 switch (patch_info->type) {
7662                 case MONO_PATCH_INFO_LABEL:
7663                 case MONO_PATCH_INFO_BB:
7664                         patch_info->type = MONO_PATCH_INFO_NONE;
7665                         break;
7666                 default:
7667                         break;
7668                 }
7669         }
7670
7671         /* Collect method->token associations from the cfg */
7672         mono_acfg_lock (acfg);
7673         g_hash_table_foreach (cfg->token_info_hash, add_token_info_hash, acfg);
7674         mono_acfg_unlock (acfg);
7675         g_hash_table_destroy (cfg->token_info_hash);
7676         cfg->token_info_hash = NULL;
7677
7678         /*
7679          * Check for absolute addresses.
7680          */
7681         skip = FALSE;
7682         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7683                 switch (patch_info->type) {
7684                 case MONO_PATCH_INFO_ABS:
7685                         /* unable to handle this */
7686                         skip = TRUE;    
7687                         break;
7688                 default:
7689                         break;
7690                 }
7691         }
7692
7693         if (skip) {
7694                 if (acfg->aot_opts.print_skipped_methods)
7695                         printf ("Skip (abs call): %s\n", mono_method_get_full_name (method));
7696                 InterlockedIncrement (&acfg->stats.abscount);
7697                 return;
7698         }
7699
7700         /* Lock for the rest of the code */
7701         mono_acfg_lock (acfg);
7702
7703         if (cfg->gsharedvt)
7704                 acfg->stats.method_categories [METHOD_CAT_GSHAREDVT] ++;
7705         else if (cfg->gshared)
7706                 acfg->stats.method_categories [METHOD_CAT_INST] ++;
7707         else if (cfg->method->wrapper_type)
7708                 acfg->stats.method_categories [METHOD_CAT_WRAPPER] ++;
7709         else
7710                 acfg->stats.method_categories [METHOD_CAT_NORMAL] ++;
7711
7712         /*
7713          * Check for methods/klasses we can't encode.
7714          */
7715         skip = FALSE;
7716         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7717                 if (!can_encode_patch (acfg, patch_info))
7718                         skip = TRUE;
7719         }
7720
7721         if (skip) {
7722                 if (acfg->aot_opts.print_skipped_methods)
7723                         printf ("Skip (patches): %s\n", mono_method_get_full_name (method));
7724                 acfg->stats.ocount++;
7725                 mono_acfg_unlock (acfg);
7726                 return;
7727         }
7728
7729         if (!cfg->compile_llvm)
7730                 acfg->has_jitted_code = TRUE;
7731
7732         if (method->is_inflated && acfg->aot_opts.log_instances) {
7733                 if (acfg->instances_logfile)
7734                         fprintf (acfg->instances_logfile, "%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7735                 else
7736                         printf ("%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7737         }
7738
7739         /* Adds generic instances referenced by this method */
7740         /* 
7741          * The depth is used to avoid infinite loops when generic virtual recursion is 
7742          * encountered.
7743          */
7744         depth = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_depth, method));
7745         if (!acfg->aot_opts.no_instances && depth < 32 && mono_aot_mode_is_full (&acfg->aot_opts)) {
7746                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7747                         switch (patch_info->type) {
7748                         case MONO_PATCH_INFO_RGCTX_FETCH:
7749                         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX:
7750                         case MONO_PATCH_INFO_METHOD: {
7751                                 MonoMethod *m = NULL;
7752
7753                                 if (patch_info->type == MONO_PATCH_INFO_RGCTX_FETCH || patch_info->type == MONO_PATCH_INFO_RGCTX_SLOT_INDEX) {
7754                                         MonoJumpInfoRgctxEntry *e = patch_info->data.rgctx_entry;
7755
7756                                         if (e->info_type == MONO_RGCTX_INFO_GENERIC_METHOD_CODE)
7757                                                 m = e->data->data.method;
7758                                 } else {
7759                                         m = patch_info->data.method;
7760                                 }
7761
7762                                 if (!m)
7763                                         break;
7764                                 if (m->is_inflated && mono_aot_mode_is_full (&acfg->aot_opts)) {
7765                                         if (!(mono_class_generic_sharing_enabled (m->klass) &&
7766                                                   mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) &&
7767                                                 (!method_has_type_vars (m) || mono_method_is_generic_sharable_full (m, TRUE, TRUE, FALSE))) {
7768                                                 if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
7769                                                         if (mono_aot_mode_is_full (&acfg->aot_opts) && !method_has_type_vars (m))
7770                                                                 add_extra_method_with_depth (acfg, mono_marshal_get_native_wrapper (m, TRUE, TRUE), depth + 1);
7771                                                 } else {
7772                                                         add_extra_method_with_depth (acfg, m, depth + 1);
7773                                                         add_types_from_method_header (acfg, m);
7774                                                 }
7775                                         }
7776                                         add_generic_class_with_depth (acfg, m->klass, depth + 5, "method");
7777                                 }
7778                                 if (m->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED) {
7779                                         WrapperInfo *info = mono_marshal_get_wrapper_info (m);
7780
7781                                         if (info && info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR)
7782                                                 add_extra_method_with_depth (acfg, m, depth + 1);
7783                                 }
7784                                 break;
7785                         }
7786                         case MONO_PATCH_INFO_VTABLE: {
7787                                 MonoClass *klass = patch_info->data.klass;
7788
7789                                 if (mono_class_is_ginst (klass) && !mini_class_is_generic_sharable (klass))
7790                                         add_generic_class_with_depth (acfg, klass, depth + 5, "vtable");
7791                                 break;
7792                         }
7793                         case MONO_PATCH_INFO_SFLDA: {
7794                                 MonoClass *klass = patch_info->data.field->parent;
7795
7796                                 /* The .cctor needs to run at runtime. */
7797                                 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))
7798                                         add_extra_method_with_depth (acfg, mono_class_get_cctor (klass), depth + 1);
7799                                 break;
7800                         }
7801                         default:
7802                                 break;
7803                         }
7804                 }
7805         }
7806
7807         /* Determine whenever the method has GOT slots */
7808         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7809                 switch (patch_info->type) {
7810                 case MONO_PATCH_INFO_GOT_OFFSET:
7811                 case MONO_PATCH_INFO_NONE:
7812                 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
7813                 case MONO_PATCH_INFO_GC_NURSERY_START:
7814                 case MONO_PATCH_INFO_GC_NURSERY_BITS:
7815                         break;
7816                 case MONO_PATCH_INFO_IMAGE:
7817                         /* The assembly is stored in GOT slot 0 */
7818                         if (patch_info->data.image != acfg->image)
7819                                 cfg->has_got_slots = TRUE;
7820                         break;
7821                 default:
7822                         if (!is_plt_patch (patch_info) || (cfg->compile_llvm && acfg->aot_opts.llvm_only))
7823                                 cfg->has_got_slots = TRUE;
7824                         break;
7825                 }
7826         }
7827
7828         if (!cfg->has_got_slots)
7829                 InterlockedIncrement (&acfg->stats.methods_without_got_slots);
7830
7831         /* Add gsharedvt wrappers for signatures used by the method */
7832         if (acfg->aot_opts.llvm_only) {
7833                 GSList *l;
7834
7835                 if (!cfg->method->wrapper_type || cfg->method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
7836                         /* These only need out wrappers */
7837                         add_gsharedvt_wrappers (acfg, mono_method_signature (cfg->method), FALSE, TRUE);
7838
7839                 for (l = cfg->signatures; l; l = l->next) {
7840                         MonoMethodSignature *sig = mono_metadata_signature_dup ((MonoMethodSignature*)l->data);
7841
7842                         /* These only need in wrappers */
7843                         add_gsharedvt_wrappers (acfg, sig, TRUE, FALSE);
7844                 }
7845         }
7846
7847         /* 
7848          * FIXME: Instead of this mess, allocate the patches from the aot mempool.
7849          */
7850         /* Make a copy of the patch info which is in the mempool */
7851         {
7852                 MonoJumpInfo *patches = NULL, *patches_end = NULL;
7853
7854                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7855                         MonoJumpInfo *new_patch_info = mono_patch_info_dup_mp (acfg->mempool, patch_info);
7856
7857                         if (!patches)
7858                                 patches = new_patch_info;
7859                         else
7860                                 patches_end->next = new_patch_info;
7861                         patches_end = new_patch_info;
7862                 }
7863                 cfg->patch_info = patches;
7864         }
7865         /* Make a copy of the unwind info */
7866         {
7867                 GSList *l, *unwind_ops;
7868                 MonoUnwindOp *op;
7869
7870                 unwind_ops = NULL;
7871                 for (l = cfg->unwind_ops; l; l = l->next) {
7872                         op = (MonoUnwindOp *)mono_mempool_alloc (acfg->mempool, sizeof (MonoUnwindOp));
7873                         memcpy (op, l->data, sizeof (MonoUnwindOp));
7874                         unwind_ops = g_slist_prepend_mempool (acfg->mempool, unwind_ops, op);
7875                 }
7876                 cfg->unwind_ops = g_slist_reverse (unwind_ops);
7877         }
7878         /* Make a copy of the argument/local info */
7879         {
7880                 MonoError error;
7881                 MonoInst **args, **locals;
7882                 MonoMethodSignature *sig;
7883                 MonoMethodHeader *header;
7884                 int i;
7885                 
7886                 sig = mono_method_signature (method);
7887                 args = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * (sig->param_count + sig->hasthis));
7888                 for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
7889                         args [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7890                         memcpy (args [i], cfg->args [i], sizeof (MonoInst));
7891                 }
7892                 cfg->args = args;
7893
7894                 header = mono_method_get_header_checked (method, &error);
7895                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
7896                 locals = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * header->num_locals);
7897                 for (i = 0; i < header->num_locals; ++i) {
7898                         locals [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7899                         memcpy (locals [i], cfg->locals [i], sizeof (MonoInst));
7900                 }
7901                 mono_metadata_free_mh (header);
7902                 cfg->locals = locals;
7903         }
7904
7905         /* Free some fields used by cfg to conserve memory */
7906         mono_empty_compile (cfg);
7907
7908         //printf ("Compile:           %s\n", mono_method_full_name (method, TRUE));
7909
7910         while (index >= acfg->cfgs_size) {
7911                 MonoCompile **new_cfgs;
7912                 int new_size;
7913
7914                 new_size = acfg->cfgs_size * 2;
7915                 new_cfgs = g_new0 (MonoCompile*, new_size);
7916                 memcpy (new_cfgs, acfg->cfgs, sizeof (MonoCompile*) * acfg->cfgs_size);
7917                 g_free (acfg->cfgs);
7918                 acfg->cfgs = new_cfgs;
7919                 acfg->cfgs_size = new_size;
7920         }
7921         acfg->cfgs [index] = cfg;
7922
7923         g_hash_table_insert (acfg->method_to_cfg, cfg->orig_method, cfg);
7924
7925         mono_update_jit_stats (cfg);
7926
7927         /*
7928         if (cfg->orig_method->wrapper_type)
7929                 g_ptr_array_add (acfg->extra_methods, cfg->orig_method);
7930         */
7931
7932         mono_acfg_unlock (acfg);
7933
7934         InterlockedIncrement (&acfg->stats.ccount);
7935 }
7936  
7937 static mono_thread_start_return_t WINAPI
7938 compile_thread_main (gpointer user_data)
7939 {
7940         MonoAotCompile *acfg = ((MonoAotCompile **)user_data) [0];
7941         GPtrArray *methods = ((GPtrArray **)user_data) [1];
7942         int i;
7943
7944         MonoError error;
7945         MonoInternalThread *internal = mono_thread_internal_current ();
7946         MonoString *str = mono_string_new_checked (mono_domain_get (), "AOT compiler", &error);
7947         mono_error_assert_ok (&error);
7948         mono_thread_set_name_internal (internal, str, TRUE, FALSE, &error);
7949         mono_error_assert_ok (&error);
7950
7951         for (i = 0; i < methods->len; ++i)
7952                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (methods, i));
7953
7954         return 0;
7955 }
7956  
7957 /* Used by the LLVM backend */
7958 guint32
7959 mono_aot_get_got_offset (MonoJumpInfo *ji)
7960 {
7961         return get_got_offset (llvm_acfg, TRUE, ji);
7962 }
7963
7964 /*
7965  * mono_aot_is_shared_got_offset:
7966  *
7967  *   Return whenever OFFSET refers to a GOT slot which is preinitialized
7968  * when the AOT image is loaded.
7969  */
7970 gboolean
7971 mono_aot_is_shared_got_offset (int offset)
7972 {
7973         return offset < llvm_acfg->nshared_got_entries;
7974 }
7975
7976 char*
7977 mono_aot_get_method_name (MonoCompile *cfg)
7978 {
7979         if (llvm_acfg->aot_opts.static_link)
7980                 /* Include the assembly name too to avoid duplicate symbol errors */
7981                 return g_strdup_printf ("%s_%s", llvm_acfg->assembly_name_sym, get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash));
7982         else
7983                 return get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash);
7984 }
7985
7986 /*
7987  * mono_aot_is_linkonce_method:
7988  *
7989  *   Return whenever METHOD should be emitted with linkonce linkage,
7990  * eliminating duplicate copies when compiling in static mode.
7991  */
7992 gboolean
7993 mono_aot_is_linkonce_method (MonoMethod *method)
7994 {
7995         return FALSE;
7996 #if 0
7997         WrapperInfo *info;
7998
7999         // FIXME: Add more cases
8000         if (method->wrapper_type != MONO_WRAPPER_UNKNOWN)
8001                 return FALSE;
8002         info = mono_marshal_get_wrapper_info (method);
8003         if ((info && (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG || info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)))
8004                 return TRUE;
8005         return FALSE;
8006 #endif
8007 }
8008
8009 static gboolean
8010 append_mangled_type (GString *s, MonoType *t)
8011 {
8012         if (t->byref)
8013                 g_string_append_printf (s, "b");
8014         switch (t->type) {
8015         case MONO_TYPE_VOID:
8016                 g_string_append_printf (s, "void_");
8017                 break;
8018         case MONO_TYPE_I1:
8019                 g_string_append_printf (s, "i1");
8020                 break;
8021         case MONO_TYPE_U1:
8022                 g_string_append_printf (s, "u1");
8023                 break;
8024         case MONO_TYPE_I2:
8025                 g_string_append_printf (s, "i2");
8026                 break;
8027         case MONO_TYPE_U2:
8028                 g_string_append_printf (s, "u2");
8029                 break;
8030         case MONO_TYPE_I4:
8031                 g_string_append_printf (s, "i4");
8032                 break;
8033         case MONO_TYPE_U4:
8034                 g_string_append_printf (s, "u4");
8035                 break;
8036         case MONO_TYPE_I8:
8037                 g_string_append_printf (s, "i8");
8038                 break;
8039         case MONO_TYPE_U8:
8040                 g_string_append_printf (s, "u8");
8041                 break;
8042         case MONO_TYPE_I:
8043                 g_string_append_printf (s, "ii");
8044                 break;
8045         case MONO_TYPE_U:
8046                 g_string_append_printf (s, "ui");
8047                 break;
8048         case MONO_TYPE_R4:
8049                 g_string_append_printf (s, "fl");
8050                 break;
8051         case MONO_TYPE_R8:
8052                 g_string_append_printf (s, "do");
8053                 break;
8054         default: {
8055                 char *fullname = mono_type_full_name (t);
8056                 GString *temp;
8057                 char *temps;
8058                 int i, len;
8059
8060                 /*
8061                  * Have to create a mangled name which is:
8062                  * - a valid symbol
8063                  * - unique
8064                  */
8065                 temp = g_string_new ("");
8066                 len = strlen (fullname);
8067                 for (i = 0; i < len; ++i) {
8068                         char c = fullname [i];
8069                         if (isalnum (c)) {
8070                                 g_string_append_c (temp, c);
8071                         } else if (c == '_') {
8072                                 g_string_append_c (temp, '_');
8073                                 g_string_append_c (temp, '_');
8074                         } else {
8075                                 g_string_append_c (temp, '_');
8076                                 g_string_append_printf (temp, "%x", (int)c);
8077                         }
8078                 }
8079                 temps = g_string_free (temp, FALSE);
8080                 /* Include the length to avoid different length type names aliasing each other */
8081                 g_string_append_printf (s, "cl%x_%s_", strlen (temps), temps);
8082                 g_free (temps);
8083                 return TRUE;
8084         }
8085         }
8086         return TRUE;
8087 }
8088
8089 static gboolean
8090 append_mangled_signature (GString *s, MonoMethodSignature *sig)
8091 {
8092         int i;
8093         gboolean supported;
8094
8095         supported = append_mangled_type (s, sig->ret);
8096         if (!supported)
8097                 return FALSE;
8098         if (sig->hasthis)
8099                 g_string_append_printf (s, "this_");
8100         for (i = 0; i < sig->param_count; ++i) {
8101                 supported = append_mangled_type (s, sig->params [i]);
8102                 if (!supported)
8103                         return FALSE;
8104         }
8105
8106         return TRUE;
8107 }
8108
8109 static void
8110 append_mangled_wrapper_type (GString *s, guint32 wrapper_type) 
8111 {
8112         const char *label;
8113
8114         switch (wrapper_type) {
8115         case MONO_WRAPPER_REMOTING_INVOKE:
8116                 label = "remoting_invoke";
8117                 break;
8118         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8119                 label = "remoting_invoke_check";
8120                 break;
8121         case MONO_WRAPPER_XDOMAIN_INVOKE:
8122                 label = "remoting_invoke_xdomain";
8123                 break;
8124         case MONO_WRAPPER_PROXY_ISINST:
8125                 label = "proxy_isinst";
8126                 break;
8127         case MONO_WRAPPER_LDFLD:
8128                 label = "ldfld";
8129                 break;
8130         case MONO_WRAPPER_LDFLDA:
8131                 label = "ldflda";
8132                 break;
8133         case MONO_WRAPPER_STFLD: 
8134                 label = "stfld";
8135                 break;
8136         case MONO_WRAPPER_ALLOC:
8137                 label = "alloc";
8138                 break;
8139         case MONO_WRAPPER_WRITE_BARRIER:
8140                 label = "write_barrier";
8141                 break;
8142         case MONO_WRAPPER_STELEMREF:
8143                 label = "stelemref";
8144                 break;
8145         case MONO_WRAPPER_UNKNOWN:
8146                 label = "unknown";
8147                 break;
8148         case MONO_WRAPPER_MANAGED_TO_NATIVE:
8149                 label = "man2native";
8150                 break;
8151         case MONO_WRAPPER_SYNCHRONIZED:
8152                 label = "synch";
8153                 break;
8154         case MONO_WRAPPER_MANAGED_TO_MANAGED:
8155                 label = "man2man";
8156                 break;
8157         case MONO_WRAPPER_CASTCLASS:
8158                 label = "castclass";
8159                 break;
8160         case MONO_WRAPPER_RUNTIME_INVOKE:
8161                 label = "run_invoke";
8162                 break;
8163         case MONO_WRAPPER_DELEGATE_INVOKE:
8164                 label = "del_inv";
8165                 break;
8166         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8167                 label = "del_beg_inv";
8168                 break;
8169         case MONO_WRAPPER_DELEGATE_END_INVOKE:
8170                 label = "del_end_inv";
8171                 break;
8172         case MONO_WRAPPER_NATIVE_TO_MANAGED:
8173                 label = "native2man";
8174                 break;
8175         default:
8176                 g_assert_not_reached ();
8177         }
8178
8179         g_string_append_printf (s, "%s_", label);
8180 }
8181
8182 static void
8183 append_mangled_wrapper_subtype (GString *s, WrapperSubtype subtype) 
8184 {
8185         const char *label;
8186
8187         switch (subtype) 
8188         {
8189         case WRAPPER_SUBTYPE_NONE:
8190                 return;
8191         case WRAPPER_SUBTYPE_ELEMENT_ADDR:
8192                 label = "elem_addr";
8193                 break;
8194         case WRAPPER_SUBTYPE_STRING_CTOR:
8195                 label = "str_ctor";
8196                 break;
8197         case WRAPPER_SUBTYPE_VIRTUAL_STELEMREF:
8198                 label = "virt_stelem";
8199                 break;
8200         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER:
8201                 label = "fast_mon_enter";
8202                 break;
8203         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4:
8204                 label = "fast_mon_enter_4";
8205                 break;
8206         case WRAPPER_SUBTYPE_FAST_MONITOR_EXIT:
8207                 label = "fast_monitor_exit";
8208                 break;
8209         case WRAPPER_SUBTYPE_PTR_TO_STRUCTURE:
8210                 label = "ptr2struct";
8211                 break;
8212         case WRAPPER_SUBTYPE_STRUCTURE_TO_PTR:
8213                 label = "struct2ptr";
8214                 break;
8215         case WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE:
8216                 label = "castclass_w_cache";
8217                 break;
8218         case WRAPPER_SUBTYPE_ISINST_WITH_CACHE:
8219                 label = "isinst_w_cache";
8220                 break;
8221         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL:
8222                 label = "run_inv_norm";
8223                 break;
8224         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC:
8225                 label = "run_inv_dyn";
8226                 break;
8227         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT:
8228                 label = "run_inv_dir";
8229                 break;
8230         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL:
8231                 label = "run_inv_vir";
8232                 break;
8233         case WRAPPER_SUBTYPE_ICALL_WRAPPER:
8234                 label = "icall";
8235                 break;
8236         case WRAPPER_SUBTYPE_NATIVE_FUNC_AOT:
8237                 label = "native_func_aot";
8238                 break;
8239         case WRAPPER_SUBTYPE_PINVOKE:
8240                 label = "pinvoke";
8241                 break;
8242         case WRAPPER_SUBTYPE_SYNCHRONIZED_INNER:
8243                 label = "synch_inner";
8244                 break;
8245         case WRAPPER_SUBTYPE_GSHAREDVT_IN:
8246                 label = "gshared_in";
8247                 break;
8248         case WRAPPER_SUBTYPE_GSHAREDVT_OUT:
8249                 label = "gshared_out";
8250                 break;
8251         case WRAPPER_SUBTYPE_ARRAY_ACCESSOR:
8252                 label = "array_acc";
8253                 break;
8254         case WRAPPER_SUBTYPE_GENERIC_ARRAY_HELPER:
8255                 label = "generic_arry_help";
8256                 break;
8257         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_VIRTUAL:
8258                 label = "del_inv_virt";
8259                 break;
8260         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_BOUND:
8261                 label = "del_inv_bound";
8262                 break;
8263         case WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG:
8264                 label = "gsharedvt_in_sig";
8265                 break;
8266         case WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG:
8267                 label = "gsharedvt_out_sig";
8268                 break;
8269         default:
8270                 g_assert_not_reached ();
8271         }
8272
8273         g_string_append_printf (s, "%s_", label);
8274 }
8275
8276 static char *
8277 sanitize_mangled_string (const char *input)
8278 {
8279         GString *s = g_string_new ("");
8280
8281         for (int i=0; input [i] != '\0'; i++) {
8282                 char c = input [i];
8283                 switch (c) {
8284                 case '.':
8285                         g_string_append (s, "_dot_");
8286                         break;
8287                 case ' ':
8288                         g_string_append (s, "_");
8289                         break;
8290                 case '`':
8291                         g_string_append (s, "_bt_");
8292                         break;
8293                 case '<':
8294                         g_string_append (s, "_le_");
8295                         break;
8296                 case '>':
8297                         g_string_append (s, "_gt_");
8298                         break;
8299                 case '/':
8300                         g_string_append (s, "_sl_");
8301                         break;
8302                 case '[':
8303                         g_string_append (s, "_lbrack_");
8304                         break;
8305                 case ']':
8306                         g_string_append (s, "_rbrack_");
8307                         break;
8308                 case '(':
8309                         g_string_append (s, "_lparen_");
8310                         break;
8311                 case '-':
8312                         g_string_append (s, "_dash_");
8313                         break;
8314                 case ')':
8315                         g_string_append (s, "_rparen_");
8316                         break;
8317                 case ',':
8318                         g_string_append (s, "_comma_");
8319                         break;
8320                 default:
8321                         g_string_append_c (s, c);
8322                 }
8323         }
8324
8325         return g_string_free (s, FALSE);
8326 }
8327
8328 static gboolean
8329 append_mangled_klass (GString *s, MonoClass *klass)
8330 {
8331         char *klass_desc = mono_class_full_name (klass);
8332         g_string_append_printf (s, "_%s_%s_", klass->name_space, klass_desc);
8333         g_free (klass_desc);
8334
8335         // Success
8336         return TRUE;
8337 }
8338
8339 static gboolean
8340 append_mangled_method (GString *s, MonoMethod *method);
8341
8342 static gboolean
8343 append_mangled_wrapper (GString *s, MonoMethod *method) 
8344 {
8345         gboolean success = TRUE;
8346         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8347         g_string_append_printf (s, "wrapper_");
8348
8349         append_mangled_wrapper_type (s, method->wrapper_type);
8350
8351         switch (method->wrapper_type) {
8352         case MONO_WRAPPER_REMOTING_INVOKE:
8353         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8354         case MONO_WRAPPER_XDOMAIN_INVOKE: {
8355                 MonoMethod *m = mono_marshal_method_from_wrapper (method);
8356                 g_assert (m);
8357                 success = success && append_mangled_method (s, m);
8358                 break;
8359         }
8360         case MONO_WRAPPER_PROXY_ISINST:
8361         case MONO_WRAPPER_LDFLD:
8362         case MONO_WRAPPER_LDFLDA:
8363         case MONO_WRAPPER_STFLD: {
8364                 g_assert (info);
8365                 success = success && append_mangled_klass (s, info->d.proxy.klass);
8366                 break;
8367         }
8368         case MONO_WRAPPER_ALLOC: {
8369                 /* The GC name is saved once in MonoAotFileInfo */
8370                 g_assert (info->d.alloc.alloc_type != -1);
8371                 g_string_append_printf (s, "%d_", info->d.alloc.alloc_type);
8372                 // SlowAlloc, etc
8373                 g_string_append_printf (s, "%s_", method->name);
8374                 break;
8375         }
8376         case MONO_WRAPPER_WRITE_BARRIER: {
8377                 break;
8378         }
8379         case MONO_WRAPPER_STELEMREF: {
8380                 append_mangled_wrapper_subtype (s, info->subtype);
8381                 if (info->subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF)
8382                         g_string_append_printf (s, "%d", info->d.virtual_stelemref.kind);
8383                 break;
8384         }
8385         case MONO_WRAPPER_UNKNOWN: {
8386                 append_mangled_wrapper_subtype (s, info->subtype);
8387                 if (info->subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE ||
8388                         info->subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR)
8389                         success = success && append_mangled_klass (s, method->klass);
8390                 else if (info->subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER)
8391                         success = success && append_mangled_method (s, info->d.synchronized_inner.method);
8392                 else if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR)
8393                         success = success && append_mangled_method (s, info->d.array_accessor.method);
8394                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG)
8395                         append_mangled_signature (s, info->d.gsharedvt.sig);
8396                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)
8397                         append_mangled_signature (s, info->d.gsharedvt.sig);
8398                 break;
8399         }
8400         case MONO_WRAPPER_MANAGED_TO_NATIVE: {
8401                 append_mangled_wrapper_subtype (s, info->subtype);
8402                 if (info->subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
8403                         g_string_append_printf (s, "%s", method->name);
8404                 } else if (info->subtype == WRAPPER_SUBTYPE_NATIVE_FUNC_AOT) {
8405                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8406                 } else {
8407                         g_assert (info->subtype == WRAPPER_SUBTYPE_NONE || info->subtype == WRAPPER_SUBTYPE_PINVOKE);
8408                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8409                 }
8410                 break;
8411         }
8412         case MONO_WRAPPER_SYNCHRONIZED: {
8413                 MonoMethod *m;
8414
8415                 m = mono_marshal_method_from_wrapper (method);
8416                 g_assert (m);
8417                 g_assert (m != method);
8418                 success = success && append_mangled_method (s, m);
8419                 break;
8420         }
8421         case MONO_WRAPPER_MANAGED_TO_MANAGED: {
8422                 append_mangled_wrapper_subtype (s, info->subtype);
8423
8424                 if (info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
8425                         g_string_append_printf (s, "%d_", info->d.element_addr.rank);
8426                         g_string_append_printf (s, "%d_", info->d.element_addr.elem_size);
8427                 } else if (info->subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
8428                         success = success && append_mangled_method (s, info->d.string_ctor.method);
8429                 } else {
8430                         g_assert_not_reached ();
8431                 }
8432                 break;
8433         }
8434         case MONO_WRAPPER_CASTCLASS: {
8435                 append_mangled_wrapper_subtype (s, info->subtype);
8436                 break;
8437         }
8438         case MONO_WRAPPER_RUNTIME_INVOKE: {
8439                 append_mangled_wrapper_subtype (s, info->subtype);
8440                 if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT || info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL)
8441                         success = success && append_mangled_method (s, info->d.runtime_invoke.method);
8442                 else if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL)
8443                         success = success && append_mangled_signature (s, info->d.runtime_invoke.sig);
8444                 break;
8445         }
8446         case MONO_WRAPPER_DELEGATE_INVOKE:
8447         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8448         case MONO_WRAPPER_DELEGATE_END_INVOKE: {
8449                 if (method->is_inflated) {
8450                         /* These wrappers are identified by their class */
8451                         g_string_append_printf (s, "i_");
8452                         success = success && append_mangled_klass (s, method->klass);
8453                 } else {
8454                         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8455
8456                         g_string_append_printf (s, "u_");
8457                         if (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
8458                                 append_mangled_wrapper_subtype (s, info->subtype);
8459                         g_string_append_printf (s, "u_sigstart");
8460                 }
8461                 break;
8462         }
8463         case MONO_WRAPPER_NATIVE_TO_MANAGED: {
8464                 g_assert (info);
8465                 success = success && append_mangled_method (s, info->d.native_to_managed.method);
8466                 success = success && append_mangled_klass (s, method->klass);
8467                 break;
8468         }
8469         default:
8470                 g_assert_not_reached ();
8471         }
8472         return success && append_mangled_signature (s, mono_method_signature (method));
8473 }
8474
8475 static void
8476 append_mangled_context (GString *str, MonoGenericContext *context)
8477 {
8478         GString *res = g_string_new ("");
8479
8480         g_string_append_printf (res, "gens_");
8481         g_string_append (res, "00");
8482
8483         gboolean good = context->class_inst && context->class_inst->type_argc > 0;
8484         good = good || (context->method_inst && context->method_inst->type_argc > 0);
8485         g_assert (good);
8486
8487         if (context->class_inst)
8488                 mono_ginst_get_desc (res, context->class_inst);
8489         if (context->method_inst) {
8490                 if (context->class_inst)
8491                         g_string_append (res, "11");
8492                 mono_ginst_get_desc (res, context->method_inst);
8493         }
8494         g_string_append_printf (str, "gens_%s", res->str);
8495 }       
8496
8497 static gboolean
8498 append_mangled_method (GString *s, MonoMethod *method)
8499 {
8500         if (method->wrapper_type)
8501                 return append_mangled_wrapper (s, method);
8502
8503         g_string_append_printf (s, "%s_", method->klass->image->assembly->aname.name);
8504
8505         if (method->is_inflated) {
8506                 g_string_append_printf (s, "inflated_");
8507                 MonoMethodInflated *imethod = (MonoMethodInflated*) method;
8508                 g_assert (imethod->context.class_inst != NULL || imethod->context.method_inst != NULL);
8509
8510                 append_mangled_context (s, &imethod->context);
8511                 g_string_append_printf (s, "_declared_by_");
8512                 append_mangled_method (s, imethod->declaring);
8513         } else if (method->is_generic) {
8514                 g_string_append_printf (s, "generic_");
8515                 append_mangled_klass (s, method->klass);
8516                 g_string_append_printf (s, "_%s_", method->name);
8517
8518                 MonoGenericContainer *container = mono_method_get_generic_container (method);
8519                 g_string_append_printf (s, "_%s");
8520                 append_mangled_context (s, &container->context);
8521
8522                 return append_mangled_signature (s, mono_method_signature (method));
8523         } else {
8524                 g_string_append_printf (s, "_");
8525                 append_mangled_klass (s, method->klass);
8526                 g_string_append_printf (s, "_%s_", method->name);
8527                 if (!append_mangled_signature (s, mono_method_signature (method))) {
8528                         g_string_free (s, TRUE);
8529                         return FALSE;
8530                 }
8531         }
8532
8533         return TRUE;
8534 }
8535
8536 /*
8537  * mono_aot_get_mangled_method_name:
8538  *
8539  *   Return a unique mangled name for METHOD, or NULL.
8540  */
8541 char*
8542 mono_aot_get_mangled_method_name (MonoMethod *method)
8543 {
8544         GString *s = g_string_new ("aot_");
8545         if (!append_mangled_method (s, method)) {
8546                 g_string_free (s, TRUE);
8547                 return NULL;
8548         } else {
8549                 char *out = g_string_free (s, FALSE);
8550                 // Scrub method and class names
8551                 char *cleaned = sanitize_mangled_string (out);
8552                 g_free (out);
8553                 return cleaned;
8554         }
8555 }
8556
8557 gboolean
8558 mono_aot_is_direct_callable (MonoJumpInfo *patch_info)
8559 {
8560         return is_direct_callable (llvm_acfg, NULL, patch_info);
8561 }
8562
8563 void
8564 mono_aot_mark_unused_llvm_plt_entry (MonoJumpInfo *patch_info)
8565 {
8566         MonoPltEntry *plt_entry;
8567
8568         plt_entry = get_plt_entry (llvm_acfg, patch_info);
8569         plt_entry->llvm_used = FALSE;
8570 }
8571
8572 char*
8573 mono_aot_get_direct_call_symbol (MonoJumpInfoType type, gconstpointer data)
8574 {
8575         const char *sym = NULL;
8576
8577         if (llvm_acfg->aot_opts.direct_icalls) {
8578                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8579                         /* Call to a C function implementing a jit icall */
8580                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8581                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8582                         MonoMethod *method = (MonoMethod *)data;
8583                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8584                                 sym = mono_lookup_icall_symbol (method);
8585                         else if (llvm_acfg->aot_opts.direct_pinvoke)
8586                                 sym = get_pinvoke_import (llvm_acfg, method);
8587                 }
8588                 if (sym)
8589                         return g_strdup (sym);
8590         }
8591         return NULL;
8592 }
8593
8594 char*
8595 mono_aot_get_plt_symbol (MonoJumpInfoType type, gconstpointer data)
8596 {
8597         MonoJumpInfo *ji = (MonoJumpInfo *)mono_mempool_alloc (llvm_acfg->mempool, sizeof (MonoJumpInfo));
8598         MonoPltEntry *plt_entry;
8599         const char *sym = NULL;
8600
8601         ji->type = type;
8602         ji->data.target = data;
8603
8604         if (!can_encode_patch (llvm_acfg, ji))
8605                 return NULL;
8606
8607         if (llvm_acfg->aot_opts.direct_icalls) {
8608                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8609                         /* Call to a C function implementing a jit icall */
8610                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8611                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8612                         MonoMethod *method = (MonoMethod *)data;
8613                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8614                                 sym = mono_lookup_icall_symbol (method);
8615                 }
8616                 if (sym)
8617                         return g_strdup (sym);
8618         }
8619
8620         plt_entry = get_plt_entry (llvm_acfg, ji);
8621         plt_entry->llvm_used = TRUE;
8622
8623 #if defined(TARGET_MACH)
8624         return g_strdup_printf (plt_entry->llvm_symbol + strlen (llvm_acfg->llvm_label_prefix));
8625 #else
8626         return g_strdup_printf (plt_entry->llvm_symbol);
8627 #endif
8628 }
8629
8630 int
8631 mono_aot_get_method_index (MonoMethod *method)
8632 {
8633         g_assert (llvm_acfg);
8634         return get_method_index (llvm_acfg, method);
8635 }
8636
8637 MonoJumpInfo*
8638 mono_aot_patch_info_dup (MonoJumpInfo* ji)
8639 {
8640         MonoJumpInfo *res;
8641
8642         mono_acfg_lock (llvm_acfg);
8643         res = mono_patch_info_dup_mp (llvm_acfg->mempool, ji);
8644         mono_acfg_unlock (llvm_acfg);
8645
8646         return res;
8647 }
8648
8649 static int
8650 execute_system (const char * command)
8651 {
8652         int status = 0;
8653
8654 #if defined(HOST_WIN32)
8655         // We need an extra set of quotes around the whole command to properly handle commands 
8656         // with spaces since internally the command is called through "cmd /c.
8657         char * quoted_command = g_strdup_printf ("\"%s\"", command);
8658
8659         int size =  MultiByteToWideChar (CP_UTF8, 0 , quoted_command , -1, NULL , 0);
8660         wchar_t* wstr = g_malloc (sizeof (wchar_t) * size);
8661         MultiByteToWideChar (CP_UTF8, 0, quoted_command, -1, wstr , size);
8662         status = _wsystem (wstr);
8663         g_free (wstr);
8664
8665         g_free (quoted_command);
8666 #elif defined (HAVE_SYSTEM)
8667         status = system (command);
8668 #else
8669         g_assert_not_reached ();
8670 #endif
8671
8672         return status;
8673 }
8674
8675 #ifdef ENABLE_LLVM
8676
8677 /*
8678  * emit_llvm_file:
8679  *
8680  *   Emit the LLVM code into an LLVM bytecode file, and compile it using the LLVM
8681  * tools.
8682  */
8683 static gboolean
8684 emit_llvm_file (MonoAotCompile *acfg)
8685 {
8686         char *command, *opts, *tempbc, *optbc, *output_fname;
8687
8688         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only) {
8689                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8690                 optbc = g_strdup (acfg->aot_opts.llvm_outfile);
8691         } else {
8692                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8693                 optbc = g_strdup_printf ("%s.opt.bc", acfg->tmpbasename);
8694         }
8695
8696         mono_llvm_emit_aot_module (tempbc, g_path_get_basename (acfg->image->name));
8697
8698         /*
8699          * FIXME: Experiment with adding optimizations, the -std-compile-opts set takes
8700          * a lot of time, and doesn't seem to save much space.
8701          * The following optimizations cannot be enabled:
8702          * - 'tailcallelim'
8703          * - 'jump-threading' changes our blockaddress references to int constants.
8704          * - 'basiccg' fails because it contains:
8705          * if (CS && !isa<IntrinsicInst>(II)) {
8706          * and isa<IntrinsicInst> is false for invokes to intrinsics (iltests.exe).
8707          * - 'prune-eh' and 'functionattrs' depend on 'basiccg'.
8708          * The opt list below was produced by taking the output of:
8709          * llvm-as < /dev/null | opt -O2 -disable-output -debug-pass=Arguments
8710          * then removing tailcallelim + the global opts.
8711          * strip-dead-prototypes deletes unused intrinsics definitions.
8712          */
8713         /* The dse pass is disabled because of #13734 and #17616 */
8714         /*
8715          * The dse bug is in DeadStoreElimination.cpp:isOverwrite ():
8716          * // If we have no DataLayout information around, then the size of the store
8717          *  // is inferrable from the pointee type.  If they are the same type, then
8718          * // we know that the store is safe.
8719          * if (AA.getDataLayout() == 0 &&
8720          * Later.Ptr->getType() == Earlier.Ptr->getType()) {
8721          * return OverwriteComplete;
8722          * Here, if 'Earlier' refers to a memset, and Later has no size info, it mistakenly thinks the memset is redundant.
8723          */
8724         if (acfg->aot_opts.llvm_only)
8725                 // FIXME: This doesn't work yet
8726                 opts = g_strdup ("");
8727         else
8728 #if LLVM_API_VERSION > 100
8729                 opts = g_strdup ("-O2 -disable-tail-calls");
8730 #else
8731                 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");
8732 #endif
8733         command = g_strdup_printf ("\"%sopt\" -f %s -o \"%s\" \"%s\"", acfg->aot_opts.llvm_path, opts, optbc, tempbc);
8734         aot_printf (acfg, "Executing opt: %s\n", command);
8735         if (execute_system (command) != 0)
8736                 return FALSE;
8737         g_free (opts);
8738
8739         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only)
8740                 /* Nothing else to do */
8741                 return TRUE;
8742
8743         if (acfg->aot_opts.llvm_only) {
8744                 /* Use the stock clang from xcode */
8745                 // FIXME: arch
8746                 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);
8747
8748                 aot_printf (acfg, "Executing clang: %s\n", command);
8749                 if (execute_system (command) != 0)
8750                         return FALSE;
8751                 return TRUE;
8752         }
8753
8754         if (!acfg->llc_args)
8755                 acfg->llc_args = g_string_new ("");
8756
8757         /* Verbose asm slows down llc greatly */
8758         g_string_append (acfg->llc_args, " -asm-verbose=false");
8759
8760         if (acfg->aot_opts.mtriple)
8761                 g_string_append_printf (acfg->llc_args, " -mtriple=%s", acfg->aot_opts.mtriple);
8762
8763         g_string_append (acfg->llc_args, " -disable-gnu-eh-frame -enable-mono-eh-frame");
8764
8765         g_string_append_printf (acfg->llc_args, " -mono-eh-frame-symbol=%s%s", acfg->user_symbol_prefix, acfg->llvm_eh_frame_symbol);
8766
8767 #if LLVM_API_VERSION > 100
8768         g_string_append_printf (acfg->llc_args, " -disable-tail-calls");
8769 #endif
8770
8771 #if ( defined(TARGET_MACH) && defined(TARGET_ARM) ) || defined(TARGET_ORBIS)
8772         /* ios requires PIC code now */
8773         g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8774 #else
8775         if (llvm_acfg->aot_opts.static_link)
8776                 g_string_append_printf (acfg->llc_args, " -relocation-model=static");
8777         else
8778                 g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8779 #endif
8780
8781         if (acfg->llvm_owriter) {
8782                 /* Emit an object file directly */
8783                 output_fname = g_strdup_printf ("%s", acfg->llvm_ofile);
8784                 g_string_append_printf (acfg->llc_args, " -filetype=obj");
8785         } else {
8786                 output_fname = g_strdup_printf ("%s", acfg->llvm_sfile);
8787         }
8788         command = g_strdup_printf ("\"%sllc\" %s -o \"%s\" \"%s.opt.bc\"", acfg->aot_opts.llvm_path, acfg->llc_args->str, output_fname, acfg->tmpbasename);
8789         g_free (output_fname);
8790
8791         aot_printf (acfg, "Executing llc: %s\n", command);
8792
8793         if (execute_system (command) != 0)
8794                 return FALSE;
8795         return TRUE;
8796 }
8797 #endif
8798
8799 static void
8800 emit_code (MonoAotCompile *acfg)
8801 {
8802         int oindex, i, prev_index;
8803         gboolean saved_unbox_info = FALSE;
8804         char symbol [MAX_SYMBOL_SIZE];
8805
8806         if (acfg->aot_opts.llvm_only)
8807                 return;
8808
8809 #if defined(TARGET_POWERPC64)
8810         sprintf (symbol, ".Lgot_addr");
8811         emit_section_change (acfg, ".text", 0);
8812         emit_alignment (acfg, 8);
8813         emit_label (acfg, symbol);
8814         emit_pointer (acfg, acfg->got_symbol);
8815 #endif
8816
8817         /* 
8818          * This global symbol is used to compute the address of each method using the
8819          * code_offsets array. It is also used to compute the memory ranges occupied by
8820          * AOT code, so it must be equal to the address of the first emitted method.
8821          */
8822         emit_section_change (acfg, ".text", 0);
8823         emit_alignment_code (acfg, 8);
8824         emit_info_symbol (acfg, "jit_code_start");
8825
8826         /* 
8827          * Emit some padding so the local symbol for the first method doesn't have the
8828          * same address as 'methods'.
8829          */
8830         emit_padding (acfg, 16);
8831
8832         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
8833                 MonoCompile *cfg;
8834                 MonoMethod *method;
8835
8836                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
8837
8838                 cfg = acfg->cfgs [i];
8839
8840                 if (!cfg)
8841                         continue;
8842
8843                 method = cfg->orig_method;
8844
8845                 /* Emit unbox trampoline */
8846                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8847                         sprintf (symbol, "ut_%d", get_method_index (acfg, method));
8848
8849                         emit_section_change (acfg, ".text", 0);
8850
8851                         if (acfg->thumb_mixed && cfg->compile_llvm) {
8852                                 emit_set_thumb_mode (acfg);
8853                                 fprintf (acfg->fp, "\n.thumb_func\n");
8854                         }
8855
8856                         emit_label (acfg, symbol);
8857
8858                         arch_emit_unbox_trampoline (acfg, cfg, cfg->orig_method, cfg->asm_symbol);
8859
8860                         if (acfg->thumb_mixed && cfg->compile_llvm)
8861                                 emit_set_arm_mode (acfg);
8862
8863                         if (!saved_unbox_info) {
8864                                 char user_symbol [128];
8865                                 GSList *unwind_ops;
8866                                 sprintf (user_symbol, "%sunbox_trampoline_p", acfg->user_symbol_prefix);
8867
8868                                 emit_label (acfg, "ut_end");
8869
8870                                 unwind_ops = mono_unwind_get_cie_program ();
8871                                 save_unwind_info (acfg, user_symbol, unwind_ops);
8872                                 mono_free_unwind_info (unwind_ops);
8873
8874                                 /* Save the unbox trampoline size */
8875                                 emit_symbol_diff (acfg, "ut_end", symbol, 0);
8876
8877                                 saved_unbox_info = TRUE;
8878                         }
8879                 }
8880
8881                 if (cfg->compile_llvm)
8882                         acfg->stats.llvm_count ++;
8883                 else
8884                         emit_method_code (acfg, cfg);
8885         }
8886
8887         emit_section_change (acfg, ".text", 0);
8888         emit_alignment_code (acfg, 8);
8889         emit_info_symbol (acfg, "jit_code_end");
8890
8891         /* To distinguish it from the next symbol */
8892         emit_padding (acfg, 4);
8893
8894         /* 
8895          * Add .no_dead_strip directives for all LLVM methods to prevent the OSX linker
8896          * from optimizing them away, since it doesn't see that code_offsets references them.
8897          * JITted methods don't need this since they are referenced using assembler local
8898          * symbols.
8899          * FIXME: This is why write-symbols doesn't work on OSX ?
8900          */
8901         if (acfg->llvm && acfg->need_no_dead_strip) {
8902                 fprintf (acfg->fp, "\n");
8903                 for (i = 0; i < acfg->nmethods; ++i) {
8904                         if (acfg->cfgs [i] && acfg->cfgs [i]->compile_llvm)
8905                                 fprintf (acfg->fp, ".no_dead_strip %s\n", acfg->cfgs [i]->asm_symbol);
8906                 }
8907         }
8908
8909         /*
8910          * To work around linker issues, we emit a table of branches, and disassemble them at runtime.
8911          * This is PIE code, and the linker can update it if needed.
8912          */
8913         
8914         sprintf (symbol, "method_addresses");
8915         emit_section_change (acfg, ".text", 1);
8916         emit_alignment_code (acfg, 8);
8917         emit_info_symbol (acfg, symbol);
8918         if (acfg->aot_opts.write_symbols)
8919                 emit_local_symbol (acfg, symbol, "method_addresses_end", TRUE);
8920         emit_unset_mode (acfg);
8921         if (acfg->need_no_dead_strip)
8922                 fprintf (acfg->fp, "    .no_dead_strip %s\n", symbol);
8923
8924         for (i = 0; i < acfg->nmethods; ++i) {
8925 #ifdef MONO_ARCH_AOT_SUPPORTED
8926                 int call_size;
8927
8928                 if (acfg->cfgs [i]) {
8929                         arch_emit_direct_call (acfg, acfg->cfgs [i]->asm_symbol, FALSE, acfg->thumb_mixed && acfg->cfgs [i]->compile_llvm, NULL, &call_size);
8930                 } else {
8931                         arch_emit_direct_call (acfg, symbol, FALSE, FALSE, NULL, &call_size);
8932                 }
8933 #endif
8934         }
8935
8936         sprintf (symbol, "method_addresses_end");
8937         emit_label (acfg, symbol);
8938         emit_line (acfg);
8939
8940         /* Emit a sorted table mapping methods to the index of their unbox trampolines */
8941         sprintf (symbol, "unbox_trampolines");
8942         emit_section_change (acfg, RODATA_SECT, 0);
8943         emit_alignment (acfg, 8);
8944         emit_info_symbol (acfg, symbol);
8945
8946         prev_index = -1;
8947         for (i = 0; i < acfg->nmethods; ++i) {
8948                 MonoCompile *cfg;
8949                 MonoMethod *method;
8950                 int index;
8951
8952                 cfg = acfg->cfgs [i];
8953                 if (!cfg)
8954                         continue;
8955
8956                 method = cfg->orig_method;
8957
8958                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8959                         index = get_method_index (acfg, method);
8960
8961                         emit_int32 (acfg, index);
8962                         /* Make sure the table is sorted by index */
8963                         g_assert (index > prev_index);
8964                         prev_index = index;
8965                 }
8966         }
8967         sprintf (symbol, "unbox_trampolines_end");
8968         emit_info_symbol (acfg, symbol);
8969         emit_int32 (acfg, 0);
8970
8971         /* Emit a separate table with the trampoline addresses/offsets */
8972         sprintf (symbol, "unbox_trampoline_addresses");
8973         emit_section_change (acfg, ".text", 0);
8974         emit_alignment_code (acfg, 8);
8975         emit_info_symbol (acfg, symbol);
8976
8977         for (i = 0; i < acfg->nmethods; ++i) {
8978                 MonoCompile *cfg;
8979                 MonoMethod *method;
8980                 int index;
8981
8982                 cfg = acfg->cfgs [i];
8983                 if (!cfg)
8984                         continue;
8985
8986                 method = cfg->orig_method;
8987
8988                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8989 #ifdef MONO_ARCH_AOT_SUPPORTED
8990                         int call_size;
8991
8992                         index = get_method_index (acfg, method);
8993                         sprintf (symbol, "ut_%d", index);
8994
8995                         arch_emit_direct_call (acfg, symbol, FALSE, acfg->thumb_mixed && cfg->compile_llvm, NULL, &call_size);
8996 #endif
8997                 }
8998         }
8999         emit_int32 (acfg, 0);
9000 }
9001
9002 static void
9003 emit_info (MonoAotCompile *acfg)
9004 {
9005         int oindex, i;
9006         gint32 *offsets;
9007
9008         offsets = g_new0 (gint32, acfg->nmethods);
9009
9010         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
9011                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
9012
9013                 if (acfg->cfgs [i]) {
9014                         emit_method_info (acfg, acfg->cfgs [i]);
9015                         offsets [i] = acfg->cfgs [i]->method_info_offset;
9016                 } else {
9017                         offsets [i] = 0;
9018                 }
9019         }
9020
9021         acfg->stats.offsets_size += emit_offset_table (acfg, "method_info_offsets", MONO_AOT_TABLE_METHOD_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9022
9023         g_free (offsets);
9024 }
9025
9026 #endif /* #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT) */
9027
9028 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
9029 #define mix(a,b,c) { \
9030         a -= c;  a ^= rot(c, 4);  c += b; \
9031         b -= a;  b ^= rot(a, 6);  a += c; \
9032         c -= b;  c ^= rot(b, 8);  b += a; \
9033         a -= c;  a ^= rot(c,16);  c += b; \
9034         b -= a;  b ^= rot(a,19);  a += c; \
9035         c -= b;  c ^= rot(b, 4);  b += a; \
9036 }
9037 #define final(a,b,c) { \
9038         c ^= b; c -= rot(b,14); \
9039         a ^= c; a -= rot(c,11); \
9040         b ^= a; b -= rot(a,25); \
9041         c ^= b; c -= rot(b,16); \
9042         a ^= c; a -= rot(c,4);  \
9043         b ^= a; b -= rot(a,14); \
9044         c ^= b; c -= rot(b,24); \
9045 }
9046
9047 static guint
9048 mono_aot_type_hash (MonoType *t1)
9049 {
9050         guint hash = t1->type;
9051
9052         hash |= t1->byref << 6; /* do not collide with t1->type values */
9053         switch (t1->type) {
9054         case MONO_TYPE_VALUETYPE:
9055         case MONO_TYPE_CLASS:
9056         case MONO_TYPE_SZARRAY:
9057                 /* check if the distribution is good enough */
9058                 return ((hash << 5) - hash) ^ mono_metadata_str_hash (t1->data.klass->name);
9059         case MONO_TYPE_PTR:
9060                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
9061         case MONO_TYPE_ARRAY:
9062                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
9063         case MONO_TYPE_GENERICINST:
9064                 return ((hash << 5) - hash) ^ 0;
9065         default:
9066                 return hash;
9067         }
9068 }
9069
9070 /*
9071  * mono_aot_method_hash:
9072  *
9073  *   Return a hash code for methods which only depends on metadata.
9074  */
9075 guint32
9076 mono_aot_method_hash (MonoMethod *method)
9077 {
9078         MonoMethodSignature *sig;
9079         MonoClass *klass;
9080         int i, hindex;
9081         int hashes_count;
9082         guint32 *hashes_start, *hashes;
9083         guint32 a, b, c;
9084         MonoGenericInst *class_ginst = NULL;
9085         MonoGenericInst *ginst = NULL;
9086
9087         /* Similar to the hash in mono_method_get_imt_slot () */
9088
9089         sig = mono_method_signature (method);
9090
9091         if (mono_class_is_ginst (method->klass))
9092                 class_ginst = mono_class_get_generic_class (method->klass)->context.class_inst;
9093         if (method->is_inflated)
9094                 ginst = ((MonoMethodInflated*)method)->context.method_inst;
9095
9096         hashes_count = sig->param_count + 5 + (class_ginst ? class_ginst->type_argc : 0) + (ginst ? ginst->type_argc : 0);
9097         hashes_start = (guint32 *)g_malloc0 (hashes_count * sizeof (guint32));
9098         hashes = hashes_start;
9099
9100         /* Some wrappers are assigned to random classes */
9101         if (!method->wrapper_type || method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
9102                 klass = method->klass;
9103         else
9104                 klass = mono_defaults.object_class;
9105
9106         if (!method->wrapper_type) {
9107                 char *full_name;
9108
9109                 if (mono_class_is_ginst (klass))
9110                         full_name = mono_type_full_name (&mono_class_get_generic_class (klass)->container_class->byval_arg);
9111                 else
9112                         full_name = mono_type_full_name (&klass->byval_arg);
9113
9114                 hashes [0] = mono_metadata_str_hash (full_name);
9115                 hashes [1] = 0;
9116                 g_free (full_name);
9117         } else {
9118                 hashes [0] = mono_metadata_str_hash (klass->name);
9119                 hashes [1] = mono_metadata_str_hash (klass->name_space);
9120         }
9121         if (method->wrapper_type == MONO_WRAPPER_STFLD || method->wrapper_type == MONO_WRAPPER_LDFLD || method->wrapper_type == MONO_WRAPPER_LDFLDA)
9122                 /* The method name includes a stringified pointer */
9123                 hashes [2] = 0;
9124         else
9125                 hashes [2] = mono_metadata_str_hash (method->name);
9126         hashes [3] = method->wrapper_type;
9127         hashes [4] = mono_aot_type_hash (sig->ret);
9128         hindex = 5;
9129         for (i = 0; i < sig->param_count; i++) {
9130                 hashes [hindex ++] = mono_aot_type_hash (sig->params [i]);
9131         }
9132         if (class_ginst) {
9133                 for (i = 0; i < class_ginst->type_argc; ++i)
9134                         hashes [hindex ++] = mono_aot_type_hash (class_ginst->type_argv [i]);
9135         }
9136         if (ginst) {
9137                 for (i = 0; i < ginst->type_argc; ++i)
9138                         hashes [hindex ++] = mono_aot_type_hash (ginst->type_argv [i]);
9139         }               
9140         g_assert (hindex == hashes_count);
9141
9142         /* Setup internal state */
9143         a = b = c = 0xdeadbeef + (((guint32)hashes_count)<<2);
9144
9145         /* Handle most of the hashes */
9146         while (hashes_count > 3) {
9147                 a += hashes [0];
9148                 b += hashes [1];
9149                 c += hashes [2];
9150                 mix (a,b,c);
9151                 hashes_count -= 3;
9152                 hashes += 3;
9153         }
9154
9155         /* Handle the last 3 hashes (all the case statements fall through) */
9156         switch (hashes_count) { 
9157         case 3 : c += hashes [2];
9158         case 2 : b += hashes [1];
9159         case 1 : a += hashes [0];
9160                 final (a,b,c);
9161         case 0: /* nothing left to add */
9162                 break;
9163         }
9164         
9165         g_free (hashes_start);
9166         
9167         return c;
9168 }
9169 #undef rot
9170 #undef mix
9171 #undef final
9172
9173 /*
9174  * mono_aot_get_array_helper_from_wrapper;
9175  *
9176  * Get the helper method in Array called by an array wrapper method.
9177  */
9178 MonoMethod*
9179 mono_aot_get_array_helper_from_wrapper (MonoMethod *method)
9180 {
9181         MonoMethod *m;
9182         const char *prefix;
9183         MonoGenericContext ctx;
9184         MonoType *args [16];
9185         char *mname, *iname, *s, *s2, *helper_name = NULL;
9186
9187         prefix = "System.Collections.Generic";
9188         s = g_strdup_printf ("%s", method->name + strlen (prefix) + 1);
9189         s2 = strstr (s, "`1.");
9190         g_assert (s2);
9191         s2 [0] = '\0';
9192         iname = s;
9193         mname = s2 + 3;
9194
9195         //printf ("X: %s %s\n", iname, mname);
9196
9197         if (!strcmp (iname, "IList"))
9198                 helper_name = g_strdup_printf ("InternalArray__%s", mname);
9199         else
9200                 helper_name = g_strdup_printf ("InternalArray__%s_%s", iname, mname);
9201         m = mono_class_get_method_from_name (mono_defaults.array_class, helper_name, mono_method_signature (method)->param_count);
9202         g_assert (m);
9203         g_free (helper_name);
9204         g_free (s);
9205
9206         if (m->is_generic) {
9207                 MonoError error;
9208                 memset (&ctx, 0, sizeof (ctx));
9209                 args [0] = &method->klass->element_class->byval_arg;
9210                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
9211                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
9212                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
9213         }
9214
9215         return m;
9216 }
9217
9218 #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT)
9219
9220 typedef struct HashEntry {
9221     guint32 key, value, index;
9222         struct HashEntry *next;
9223 } HashEntry;
9224
9225 /*
9226  * emit_extra_methods:
9227  *
9228  * Emit methods which are not in the METHOD table, like wrappers.
9229  */
9230 static void
9231 emit_extra_methods (MonoAotCompile *acfg)
9232 {
9233         int i, table_size, buf_size;
9234         guint8 *p, *buf;
9235         guint32 *info_offsets;
9236         guint32 hash;
9237         GPtrArray *table;
9238         HashEntry *entry, *new_entry;
9239         int nmethods, max_chain_length;
9240         int *chain_lengths;
9241
9242         info_offsets = g_new0 (guint32, acfg->extra_methods->len);
9243
9244         /* Emit method info */
9245         nmethods = 0;
9246         for (i = 0; i < acfg->extra_methods->len; ++i) {
9247                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9248                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9249
9250                 if (!cfg)
9251                         continue;
9252
9253                 buf_size = 10240;
9254                 p = buf = (guint8 *)g_malloc (buf_size);
9255
9256                 nmethods ++;
9257
9258                 method = cfg->method_to_register;
9259
9260                 encode_method_ref (acfg, method, p, &p);
9261
9262                 g_assert ((p - buf) < buf_size);
9263
9264                 info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9265                 g_free (buf);
9266         }
9267
9268         /*
9269          * Construct a chained hash table for mapping indexes in extra_method_info to
9270          * method indexes.
9271          */
9272         table_size = g_spaced_primes_closest ((int)(nmethods * 1.5));
9273         table = g_ptr_array_sized_new (table_size);
9274         for (i = 0; i < table_size; ++i)
9275                 g_ptr_array_add (table, NULL);
9276         chain_lengths = g_new0 (int, table_size);
9277         max_chain_length = 0;
9278         for (i = 0; i < acfg->extra_methods->len; ++i) {
9279                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9280                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9281                 guint32 key, value;
9282
9283                 if (!cfg)
9284                         continue;
9285
9286                 key = info_offsets [i];
9287                 value = get_method_index (acfg, method);
9288
9289                 hash = mono_aot_method_hash (method) % table_size;
9290                 //printf ("X: %s %x\n", mono_method_get_full_name (method), mono_aot_method_hash (method));
9291
9292                 chain_lengths [hash] ++;
9293                 max_chain_length = MAX (max_chain_length, chain_lengths [hash]);
9294
9295                 new_entry = (HashEntry *)mono_mempool_alloc0 (acfg->mempool, sizeof (HashEntry));
9296                 new_entry->key = key;
9297                 new_entry->value = value;
9298
9299                 entry = (HashEntry *)g_ptr_array_index (table, hash);
9300                 if (entry == NULL) {
9301                         new_entry->index = hash;
9302                         g_ptr_array_index (table, hash) = new_entry;
9303                 } else {
9304                         while (entry->next)
9305                                 entry = entry->next;
9306                         
9307                         entry->next = new_entry;
9308                         new_entry->index = table->len;
9309                         g_ptr_array_add (table, new_entry);
9310                 }
9311         }
9312         g_free (chain_lengths);
9313
9314         //printf ("MAX: %d\n", max_chain_length);
9315
9316         buf_size = table->len * 12 + 4;
9317         p = buf = (guint8 *)g_malloc (buf_size);
9318         encode_int (table_size, p, &p);
9319
9320         for (i = 0; i < table->len; ++i) {
9321                 HashEntry *entry = (HashEntry *)g_ptr_array_index (table, i);
9322
9323                 if (entry == NULL) {
9324                         encode_int (0, p, &p);
9325                         encode_int (0, p, &p);
9326                         encode_int (0, p, &p);
9327                 } else {
9328                         //g_assert (entry->key > 0);
9329                         encode_int (entry->key, p, &p);
9330                         encode_int (entry->value, p, &p);
9331                         if (entry->next)
9332                                 encode_int (entry->next->index, p, &p);
9333                         else
9334                                 encode_int (0, p, &p);
9335                 }
9336         }
9337         g_assert (p - buf <= buf_size);
9338
9339         /* Emit the table */
9340         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_TABLE, "extra_method_table", buf, p - buf);
9341
9342         g_free (buf);
9343
9344         /* 
9345          * Emit a table reverse mapping method indexes to their index in extra_method_info.
9346          * This is used by mono_aot_find_jit_info ().
9347          */
9348         buf_size = acfg->extra_methods->len * 8 + 4;
9349         p = buf = (guint8 *)g_malloc (buf_size);
9350         encode_int (acfg->extra_methods->len, p, &p);
9351         for (i = 0; i < acfg->extra_methods->len; ++i) {
9352                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9353
9354                 encode_int (get_method_index (acfg, method), p, &p);
9355                 encode_int (info_offsets [i], p, &p);
9356         }
9357         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS, "extra_method_info_offsets", buf, p - buf);
9358
9359         g_free (buf);
9360         g_free (info_offsets);
9361         g_ptr_array_free (table, TRUE);
9362 }       
9363
9364 static void
9365 generate_aotid (guint8* aotid)
9366 {
9367         gpointer rand_handle;
9368         MonoError error;
9369
9370         mono_rand_open ();
9371         rand_handle = mono_rand_init (NULL, 0);
9372
9373         mono_rand_try_get_bytes (&rand_handle, aotid, 16, &error);
9374         mono_error_assert_ok (&error);
9375
9376         mono_rand_close (rand_handle);
9377 }
9378
9379 static void
9380 emit_exception_info (MonoAotCompile *acfg)
9381 {
9382         int i;
9383         gint32 *offsets;
9384         SeqPointData sp_data;
9385         gboolean seq_points_to_file = FALSE;
9386
9387         offsets = g_new0 (gint32, acfg->nmethods);
9388         for (i = 0; i < acfg->nmethods; ++i) {
9389                 if (acfg->cfgs [i]) {
9390                         MonoCompile *cfg = acfg->cfgs [i];
9391
9392                         // By design aot-runtime decode_exception_debug_info is not able to load sequence point debug data from a file.
9393                         // As it is not possible to load debug data from a file its is also not possible to store it in a file.
9394                         gboolean method_seq_points_to_file = acfg->aot_opts.gen_msym_dir &&
9395                                 cfg->gen_seq_points && !cfg->gen_sdb_seq_points;
9396                         gboolean method_seq_points_to_binary = cfg->gen_seq_points && !method_seq_points_to_file;
9397                         
9398                         emit_exception_debug_info (acfg, cfg, method_seq_points_to_binary);
9399                         offsets [i] = cfg->ex_info_offset;
9400
9401                         if (method_seq_points_to_file) {
9402                                 if (!seq_points_to_file) {
9403                                         mono_seq_point_data_init (&sp_data, acfg->nmethods);
9404                                         seq_points_to_file = TRUE;
9405                                 }
9406                                 mono_seq_point_data_add (&sp_data, cfg->method->token, cfg->method_index, cfg->seq_point_info);
9407                         }
9408                 } else {
9409                         offsets [i] = 0;
9410                 }
9411         }
9412
9413         if (seq_points_to_file) {
9414                 char *aotid = mono_guid_to_string_minimal (acfg->image->aotid);
9415                 char *dir = g_build_filename (acfg->aot_opts.gen_msym_dir_path, aotid, NULL);
9416                 char *image_basename = g_path_get_basename (acfg->image->name);
9417                 char *aot_file = g_strdup_printf("%s%s", image_basename, SEQ_POINT_AOT_EXT);
9418                 char *aot_file_path = g_build_filename (dir, aot_file, NULL);
9419
9420                 if (g_ensure_directory_exists (aot_file_path) == FALSE) {
9421                         fprintf (stderr, "AOT : failed to create msym directory: %s\n", aot_file_path);
9422                         exit (1);
9423                 }
9424
9425                 mono_seq_point_data_write (&sp_data, aot_file_path);
9426                 mono_seq_point_data_free (&sp_data);
9427
9428                 g_free (aotid);
9429                 g_free (dir);
9430                 g_free (image_basename);
9431                 g_free (aot_file);
9432                 g_free (aot_file_path);
9433         }
9434
9435         acfg->stats.offsets_size += emit_offset_table (acfg, "ex_info_offsets", MONO_AOT_TABLE_EX_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9436         g_free (offsets);
9437 }
9438
9439 static void
9440 emit_unwind_info (MonoAotCompile *acfg)
9441 {
9442         int i;
9443         char symbol [128];
9444
9445         if (acfg->aot_opts.llvm_only) {
9446                 g_assert (acfg->unwind_ops->len == 0);
9447                 return;
9448         }
9449
9450         /* 
9451          * The unwind info contains a lot of duplicates so we emit each unique
9452          * entry once, and only store the offset from the start of the table in the
9453          * exception info.
9454          */
9455
9456         sprintf (symbol, "unwind_info");
9457         emit_section_change (acfg, RODATA_SECT, 1);
9458         emit_alignment (acfg, 8);
9459         emit_info_symbol (acfg, symbol);
9460
9461         for (i = 0; i < acfg->unwind_ops->len; ++i) {
9462                 guint32 index = GPOINTER_TO_UINT (g_ptr_array_index (acfg->unwind_ops, i));
9463                 guint8 *unwind_info;
9464                 guint32 unwind_info_len;
9465                 guint8 buf [16];
9466                 guint8 *p;
9467
9468                 unwind_info = mono_get_cached_unwind_info (index, &unwind_info_len);
9469
9470                 p = buf;
9471                 encode_value (unwind_info_len, p, &p);
9472                 emit_bytes (acfg, buf, p - buf);
9473                 emit_bytes (acfg, unwind_info, unwind_info_len);
9474
9475                 acfg->stats.unwind_info_size += (p - buf) + unwind_info_len;
9476         }
9477 }
9478
9479 static void
9480 emit_class_info (MonoAotCompile *acfg)
9481 {
9482         int i;
9483         gint32 *offsets;
9484
9485         offsets = g_new0 (gint32, acfg->image->tables [MONO_TABLE_TYPEDEF].rows);
9486         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i)
9487                 offsets [i] = emit_klass_info (acfg, MONO_TOKEN_TYPE_DEF | (i + 1));
9488
9489         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);
9490         g_free (offsets);
9491 }
9492
9493 typedef struct ClassNameTableEntry {
9494         guint32 token, index;
9495         struct ClassNameTableEntry *next;
9496 } ClassNameTableEntry;
9497
9498 static void
9499 emit_class_name_table (MonoAotCompile *acfg)
9500 {
9501         int i, table_size, buf_size;
9502         guint32 token, hash;
9503         MonoClass *klass;
9504         GPtrArray *table;
9505         char *full_name;
9506         guint8 *buf, *p;
9507         ClassNameTableEntry *entry, *new_entry;
9508
9509         /*
9510          * Construct a chained hash table for mapping class names to typedef tokens.
9511          */
9512         table_size = g_spaced_primes_closest ((int)(acfg->image->tables [MONO_TABLE_TYPEDEF].rows * 1.5));
9513         table = g_ptr_array_sized_new (table_size);
9514         for (i = 0; i < table_size; ++i)
9515                 g_ptr_array_add (table, NULL);
9516         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
9517                 MonoError error;
9518                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
9519                 klass = mono_class_get_checked (acfg->image, token, &error);
9520                 if (!klass) {
9521                         mono_error_cleanup (&error);
9522                         continue;
9523                 }
9524                 full_name = mono_type_get_name_full (mono_class_get_type (klass), MONO_TYPE_NAME_FORMAT_FULL_NAME);
9525                 hash = mono_metadata_str_hash (full_name) % table_size;
9526                 g_free (full_name);
9527
9528                 /* FIXME: Allocate from the mempool */
9529                 new_entry = g_new0 (ClassNameTableEntry, 1);
9530                 new_entry->token = token;
9531
9532                 entry = (ClassNameTableEntry *)g_ptr_array_index (table, hash);
9533                 if (entry == NULL) {
9534                         new_entry->index = hash;
9535                         g_ptr_array_index (table, hash) = new_entry;
9536                 } else {
9537                         while (entry->next)
9538                                 entry = entry->next;
9539                         
9540                         entry->next = new_entry;
9541                         new_entry->index = table->len;
9542                         g_ptr_array_add (table, new_entry);
9543                 }
9544         }
9545
9546         /* Emit the table */
9547         buf_size = table->len * 4 + 4;
9548         p = buf = (guint8 *)g_malloc0 (buf_size);
9549
9550         /* FIXME: Optimize memory usage */
9551         g_assert (table_size < 65000);
9552         encode_int16 (table_size, p, &p);
9553         g_assert (table->len < 65000);
9554         for (i = 0; i < table->len; ++i) {
9555                 ClassNameTableEntry *entry = (ClassNameTableEntry *)g_ptr_array_index (table, i);
9556
9557                 if (entry == NULL) {
9558                         encode_int16 (0, p, &p);
9559                         encode_int16 (0, p, &p);
9560                 } else {
9561                         encode_int16 (mono_metadata_token_index (entry->token), p, &p);
9562                         if (entry->next)
9563                                 encode_int16 (entry->next->index, p, &p);
9564                         else
9565                                 encode_int16 (0, p, &p);
9566                 }
9567                 g_free (entry);
9568         }
9569         g_assert (p - buf <= buf_size);
9570         g_ptr_array_free (table, TRUE);
9571
9572         emit_aot_data (acfg, MONO_AOT_TABLE_CLASS_NAME, "class_name_table", buf, p - buf);
9573
9574         g_free (buf);
9575 }
9576
9577 static void
9578 emit_image_table (MonoAotCompile *acfg)
9579 {
9580         int i, buf_size;
9581         guint8 *buf, *p;
9582
9583         /*
9584          * The image table is small but referenced in a lot of places.
9585          * So we emit it at once, and reference its elements by an index.
9586          */
9587         buf_size = acfg->image_table->len * 28 + 4;
9588         for (i = 0; i < acfg->image_table->len; i++) {
9589                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9590                 MonoAssemblyName *aname = &image->assembly->aname;
9591
9592                 buf_size += strlen (image->assembly_name) + strlen (image->guid) + (aname->culture ? strlen (aname->culture) : 1) + strlen ((char*)aname->public_key_token) + 4;
9593         }
9594
9595         buf = p = (guint8 *)g_malloc0 (buf_size);
9596         encode_int (acfg->image_table->len, p, &p);
9597         for (i = 0; i < acfg->image_table->len; i++) {
9598                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9599                 MonoAssemblyName *aname = &image->assembly->aname;
9600
9601                 /* FIXME: Support multi-module assemblies */
9602                 g_assert (image->assembly->image == image);
9603
9604                 encode_string (image->assembly_name, p, &p);
9605                 encode_string (image->guid, p, &p);
9606                 encode_string (aname->culture ? aname->culture : "", p, &p);
9607                 encode_string ((const char*)aname->public_key_token, p, &p);
9608
9609                 while (GPOINTER_TO_UINT (p) % 8 != 0)
9610                         p ++;
9611
9612                 encode_int (aname->flags, p, &p);
9613                 encode_int (aname->major, p, &p);
9614                 encode_int (aname->minor, p, &p);
9615                 encode_int (aname->build, p, &p);
9616                 encode_int (aname->revision, p, &p);
9617         }
9618         g_assert (p - buf <= buf_size);
9619
9620         emit_aot_data (acfg, MONO_AOT_TABLE_IMAGE_TABLE, "image_table", buf, p - buf);
9621
9622         g_free (buf);
9623 }
9624
9625 static void
9626 emit_got_info (MonoAotCompile *acfg, gboolean llvm)
9627 {
9628         int i, first_plt_got_patch = 0, buf_size;
9629         guint8 *p, *buf;
9630         guint32 *got_info_offsets;
9631         GotInfo *info = llvm ? &acfg->llvm_got_info : &acfg->got_info;
9632
9633         /* Add the patches needed by the PLT to the GOT */
9634         if (!llvm) {
9635                 acfg->plt_got_offset_base = acfg->got_offset;
9636                 first_plt_got_patch = info->got_patches->len;
9637                 for (i = 1; i < acfg->plt_offset; ++i) {
9638                         MonoPltEntry *plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
9639
9640                         g_ptr_array_add (info->got_patches, plt_entry->ji);
9641
9642                         acfg->stats.got_slot_types [plt_entry->ji->type] ++;
9643                 }
9644
9645                 acfg->got_offset += acfg->plt_offset;
9646         }
9647
9648         /**
9649          * FIXME: 
9650          * - optimize offsets table.
9651          * - reduce number of exported symbols.
9652          * - emit info for a klass only once.
9653          * - determine when a method uses a GOT slot which is guaranteed to be already 
9654          *   initialized.
9655          * - clean up and document the code.
9656          * - use String.Empty in class libs.
9657          */
9658
9659         /* Encode info required to decode shared GOT entries */
9660         buf_size = info->got_patches->len * 128;
9661         p = buf = (guint8 *)mono_mempool_alloc (acfg->mempool, buf_size);
9662         got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, info->got_patches->len * sizeof (guint32));
9663         if (!llvm) {
9664                 acfg->plt_got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, acfg->plt_offset * sizeof (guint32));
9665                 /* Unused */
9666                 if (acfg->plt_offset)
9667                         acfg->plt_got_info_offsets [0] = 0;
9668         }
9669         for (i = 0; i < info->got_patches->len; ++i) {
9670                 MonoJumpInfo *ji = (MonoJumpInfo *)g_ptr_array_index (info->got_patches, i);
9671                 guint8 *p2;
9672
9673                 p = buf;
9674
9675                 encode_value (ji->type, p, &p);
9676                 p2 = p;
9677                 encode_patch (acfg, ji, p, &p);
9678                 acfg->stats.got_slot_info_sizes [ji->type] += p - p2;
9679                 g_assert (p - buf <= buf_size);
9680                 got_info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9681
9682                 if (!llvm && i >= first_plt_got_patch)
9683                         acfg->plt_got_info_offsets [i - first_plt_got_patch + 1] = got_info_offsets [i];
9684                 acfg->stats.got_info_size += p - buf;
9685         }
9686
9687         /* Emit got_info_offsets table */
9688
9689         /* No need to emit offsets for the got plt entries, the plt embeds them directly */
9690         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);
9691 }
9692
9693 static void
9694 emit_got (MonoAotCompile *acfg)
9695 {
9696         char symbol [MAX_SYMBOL_SIZE];
9697
9698         if (acfg->aot_opts.llvm_only)
9699                 return;
9700
9701         /* Don't make GOT global so accesses to it don't need relocations */
9702         sprintf (symbol, "%s", acfg->got_symbol);
9703
9704 #ifdef TARGET_MACH
9705         emit_unset_mode (acfg);
9706         fprintf (acfg->fp, ".section __DATA, __bss\n");
9707         emit_alignment (acfg, 8);
9708         if (acfg->llvm)
9709                 emit_info_symbol (acfg, "jit_got");
9710         fprintf (acfg->fp, ".lcomm %s, %d\n", acfg->got_symbol, (int)(acfg->got_offset * sizeof (gpointer)));
9711 #else
9712         emit_section_change (acfg, ".bss", 0);
9713         emit_alignment (acfg, 8);
9714         if (acfg->aot_opts.write_symbols)
9715                 emit_local_symbol (acfg, symbol, "got_end", FALSE);
9716         emit_label (acfg, symbol);
9717         if (acfg->llvm)
9718                 emit_info_symbol (acfg, "jit_got");
9719         if (acfg->got_offset > 0)
9720                 emit_zero_bytes (acfg, (int)(acfg->got_offset * sizeof (gpointer)));
9721 #endif
9722
9723         sprintf (symbol, "got_end");
9724         emit_label (acfg, symbol);
9725 }
9726
9727 typedef struct GlobalsTableEntry {
9728         guint32 value, index;
9729         struct GlobalsTableEntry *next;
9730 } GlobalsTableEntry;
9731
9732 #ifdef TARGET_WIN32_MSVC
9733 #define DLL_ENTRY_POINT "DllMain"
9734
9735 static void
9736 emit_library_info (MonoAotCompile *acfg)
9737 {
9738         // Only include for shared libraries linked directly from generated object.
9739         if (link_shared_library (acfg)) {
9740                 char    *name = NULL;
9741                 char    symbol [MAX_SYMBOL_SIZE];
9742
9743                 // Ask linker to export all global symbols.
9744                 emit_section_change (acfg, ".drectve", 0);
9745                 for (guint i = 0; i < acfg->globals->len; ++i) {
9746                         name = (char *)g_ptr_array_index (acfg->globals, i);
9747                         g_assert (name != NULL);
9748                         sprintf_s (symbol, MAX_SYMBOL_SIZE, " /EXPORT:%s", name);
9749                         emit_string (acfg, symbol);
9750                 }
9751
9752                 // Emit DLLMain function, needed by MSVC linker for DLL's.
9753                 // NOTE, DllMain should not go into exports above.
9754                 emit_section_change (acfg, ".text", 0);
9755                 emit_global (acfg, DLL_ENTRY_POINT, TRUE);
9756                 emit_label (acfg, DLL_ENTRY_POINT);
9757
9758                 // Simple implementation of DLLMain, just returning TRUE.
9759                 // For more information about DLLMain: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682583(v=vs.85).aspx
9760                 fprintf (acfg->fp, "movl $1, %%eax\n");
9761                 fprintf (acfg->fp, "ret\n");
9762
9763                 // Inform linker about our dll entry function.
9764                 emit_section_change (acfg, ".drectve", 0);
9765                 emit_string (acfg, "/ENTRY:" DLL_ENTRY_POINT);
9766                 return;
9767         }
9768 }
9769
9770 #else
9771
9772 static inline void
9773 emit_library_info (MonoAotCompile *acfg)
9774 {
9775         return;
9776 }
9777 #endif
9778
9779 static void
9780 emit_globals (MonoAotCompile *acfg)
9781 {
9782         int i, table_size;
9783         guint32 hash;
9784         GPtrArray *table;
9785         char symbol [1024];
9786         GlobalsTableEntry *entry, *new_entry;
9787
9788         if (!acfg->aot_opts.static_link)
9789                 return;
9790
9791         if (acfg->aot_opts.llvm_only) {
9792                 g_assert (acfg->globals->len == 0);
9793                 return;
9794         }
9795
9796         /* 
9797          * When static linking, we emit a table containing our globals.
9798          */
9799
9800         /*
9801          * Construct a chained hash table for mapping global names to their index in
9802          * the globals table.
9803          */
9804         table_size = g_spaced_primes_closest ((int)(acfg->globals->len * 1.5));
9805         table = g_ptr_array_sized_new (table_size);
9806         for (i = 0; i < table_size; ++i)
9807                 g_ptr_array_add (table, NULL);
9808         for (i = 0; i < acfg->globals->len; ++i) {
9809                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9810
9811                 hash = mono_metadata_str_hash (name) % table_size;
9812
9813                 /* FIXME: Allocate from the mempool */
9814                 new_entry = g_new0 (GlobalsTableEntry, 1);
9815                 new_entry->value = i;
9816
9817                 entry = (GlobalsTableEntry *)g_ptr_array_index (table, hash);
9818                 if (entry == NULL) {
9819                         new_entry->index = hash;
9820                         g_ptr_array_index (table, hash) = new_entry;
9821                 } else {
9822                         while (entry->next)
9823                                 entry = entry->next;
9824                         
9825                         entry->next = new_entry;
9826                         new_entry->index = table->len;
9827                         g_ptr_array_add (table, new_entry);
9828                 }
9829         }
9830
9831         /* Emit the table */
9832         sprintf (symbol, ".Lglobals_hash");
9833         emit_section_change (acfg, RODATA_SECT, 0);
9834         emit_alignment (acfg, 8);
9835         emit_label (acfg, symbol);
9836
9837         /* FIXME: Optimize memory usage */
9838         g_assert (table_size < 65000);
9839         emit_int16 (acfg, table_size);
9840         for (i = 0; i < table->len; ++i) {
9841                 GlobalsTableEntry *entry = (GlobalsTableEntry *)g_ptr_array_index (table, i);
9842
9843                 if (entry == NULL) {
9844                         emit_int16 (acfg, 0);
9845                         emit_int16 (acfg, 0);
9846                 } else {
9847                         emit_int16 (acfg, entry->value + 1);
9848                         if (entry->next)
9849                                 emit_int16 (acfg, entry->next->index);
9850                         else
9851                                 emit_int16 (acfg, 0);
9852                 }
9853         }
9854
9855         /* Emit the names */
9856         for (i = 0; i < acfg->globals->len; ++i) {
9857                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9858
9859                 sprintf (symbol, "name_%d", i);
9860                 emit_section_change (acfg, RODATA_SECT, 1);
9861 #ifdef TARGET_MACH
9862                 emit_alignment (acfg, 4);
9863 #endif
9864                 emit_label (acfg, symbol);
9865                 emit_string (acfg, name);
9866         }
9867
9868         /* Emit the globals table */
9869         sprintf (symbol, "globals");
9870         emit_section_change (acfg, ".data", 0);
9871         /* This is not a global, since it is accessed by the init function */
9872         emit_alignment (acfg, 8);
9873         emit_info_symbol (acfg, symbol);
9874
9875         sprintf (symbol, "%sglobals_hash", acfg->temp_prefix);
9876         emit_pointer (acfg, symbol);
9877
9878         for (i = 0; i < acfg->globals->len; ++i) {
9879                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9880
9881                 sprintf (symbol, "name_%d", i);
9882                 emit_pointer (acfg, symbol);
9883
9884                 g_assert (strlen (name) < sizeof (symbol));
9885                 sprintf (symbol, "%s", name);
9886                 emit_pointer (acfg, symbol);
9887         }
9888         /* Null terminate the table */
9889         emit_int32 (acfg, 0);
9890         emit_int32 (acfg, 0);
9891 }
9892
9893 static void
9894 emit_mem_end (MonoAotCompile *acfg)
9895 {
9896         char symbol [128];
9897
9898         if (acfg->aot_opts.llvm_only)
9899                 return;
9900
9901         sprintf (symbol, "mem_end");
9902         emit_section_change (acfg, ".text", 1);
9903         emit_alignment_code (acfg, 8);
9904         emit_label (acfg, symbol);
9905 }
9906
9907 static void
9908 init_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9909 {
9910         int i;
9911
9912         info->version = MONO_AOT_FILE_VERSION;
9913         info->plt_got_offset_base = acfg->plt_got_offset_base;
9914         info->got_size = acfg->got_offset * sizeof (gpointer);
9915         info->plt_size = acfg->plt_offset;
9916         info->nmethods = acfg->nmethods;
9917         info->flags = acfg->flags;
9918         info->opts = acfg->opts;
9919         info->simd_opts = acfg->simd_opts;
9920         info->gc_name_index = acfg->gc_name_offset;
9921         info->datafile_size = acfg->datafile_offset;
9922         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9923                 info->table_offsets [i] = acfg->table_offsets [i];
9924         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9925                 info->num_trampolines [i] = acfg->num_trampolines [i];
9926         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9927                 info->trampoline_got_offset_base [i] = acfg->trampoline_got_offset_base [i];
9928         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9929                 info->trampoline_size [i] = acfg->trampoline_size [i];
9930         info->num_rgctx_fetch_trampolines = acfg->aot_opts.nrgctx_fetch_trampolines;
9931
9932         info->double_align = MONO_ABI_ALIGNOF (double);
9933         info->long_align = MONO_ABI_ALIGNOF (gint64);
9934         info->generic_tramp_num = MONO_TRAMPOLINE_NUM;
9935         info->tramp_page_size = acfg->tramp_page_size;
9936         info->nshared_got_entries = acfg->nshared_got_entries;
9937         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9938                 info->tramp_page_code_offsets [i] = acfg->tramp_page_code_offsets [i];
9939
9940         memcpy(&info->aotid, acfg->image->aotid, 16);
9941 }
9942
9943 static void
9944 emit_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9945 {
9946         char symbol [MAX_SYMBOL_SIZE];
9947         int i, sindex;
9948         const char **symbols;
9949
9950         symbols = g_new0 (const char *, MONO_AOT_FILE_INFO_NUM_SYMBOLS);
9951         sindex = 0;
9952         symbols [sindex ++] = acfg->got_symbol;
9953         if (acfg->llvm) {
9954                 symbols [sindex ++] = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, acfg->llvm_got_symbol);
9955                 symbols [sindex ++] = acfg->llvm_eh_frame_symbol;
9956         } else {
9957                 symbols [sindex ++] = NULL;
9958                 symbols [sindex ++] = NULL;
9959         }
9960         /* llvm_get_method */
9961         symbols [sindex ++] = NULL;
9962         /* llvm_get_unbox_tramp */
9963         symbols [sindex ++] = NULL;
9964         if (!acfg->aot_opts.llvm_only) {
9965                 symbols [sindex ++] = "jit_code_start";
9966                 symbols [sindex ++] = "jit_code_end";
9967                 symbols [sindex ++] = "method_addresses";
9968         } else {
9969                 symbols [sindex ++] = NULL;
9970                 symbols [sindex ++] = NULL;
9971                 symbols [sindex ++] = NULL;
9972         }
9973         if (acfg->data_outfile) {
9974                 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9975                         symbols [sindex ++] = NULL;
9976         } else {
9977                 symbols [sindex ++] = "blob";
9978                 symbols [sindex ++] = "class_name_table";
9979                 symbols [sindex ++] = "class_info_offsets";
9980                 symbols [sindex ++] = "method_info_offsets";
9981                 symbols [sindex ++] = "ex_info_offsets";
9982                 symbols [sindex ++] = "extra_method_info_offsets";
9983                 symbols [sindex ++] = "extra_method_table";
9984                 symbols [sindex ++] = "got_info_offsets";
9985                 if (acfg->llvm)
9986                         symbols [sindex ++] = "llvm_got_info_offsets";
9987                 else
9988                         symbols [sindex ++] = NULL;
9989                 symbols [sindex ++] = "image_table";
9990         }
9991         symbols [sindex ++] = "mem_end";
9992         symbols [sindex ++] = "assembly_guid";
9993         symbols [sindex ++] = "runtime_version";
9994         if (acfg->num_trampoline_got_entries) {
9995                 symbols [sindex ++] = "specific_trampolines";
9996                 symbols [sindex ++] = "static_rgctx_trampolines";
9997                 symbols [sindex ++] = "imt_trampolines";
9998                 symbols [sindex ++] = "gsharedvt_arg_trampolines";
9999         } else {
10000                 symbols [sindex ++] = NULL;
10001                 symbols [sindex ++] = NULL;
10002                 symbols [sindex ++] = NULL;
10003                 symbols [sindex ++] = NULL;
10004         }
10005         if (acfg->aot_opts.static_link) {
10006                 symbols [sindex ++] = "globals";
10007         } else {
10008                 symbols [sindex ++] = NULL;
10009         }
10010         symbols [sindex ++] = "assembly_name";
10011         symbols [sindex ++] = "plt";
10012         symbols [sindex ++] = "plt_end";
10013         symbols [sindex ++] = "unwind_info";
10014         if (!acfg->aot_opts.llvm_only) {
10015                 symbols [sindex ++] = "unbox_trampolines";
10016                 symbols [sindex ++] = "unbox_trampolines_end";
10017                 symbols [sindex ++] = "unbox_trampoline_addresses";
10018         } else {
10019                 symbols [sindex ++] = NULL;
10020                 symbols [sindex ++] = NULL;
10021                 symbols [sindex ++] = NULL;
10022         }
10023
10024         g_assert (sindex == MONO_AOT_FILE_INFO_NUM_SYMBOLS);
10025
10026         sprintf (symbol, "%smono_aot_file_info", acfg->user_symbol_prefix);
10027         emit_section_change (acfg, ".data", 0);
10028         emit_alignment (acfg, 8);
10029         emit_label (acfg, symbol);
10030         if (!acfg->aot_opts.static_link)
10031                 emit_global (acfg, symbol, FALSE);
10032
10033         /* The data emitted here must match MonoAotFileInfo. */
10034
10035         emit_int32 (acfg, info->version);
10036         emit_int32 (acfg, info->dummy);
10037
10038         /* 
10039          * We emit pointers to our data structures instead of emitting global symbols which
10040          * point to them, to reduce the number of globals, and because using globals leads to
10041          * various problems (i.e. arm/thumb).
10042          */
10043         for (i = 0; i < MONO_AOT_FILE_INFO_NUM_SYMBOLS; ++i)
10044                 emit_pointer (acfg, symbols [i]);
10045
10046         emit_int32 (acfg, info->plt_got_offset_base);
10047         emit_int32 (acfg, info->got_size);
10048         emit_int32 (acfg, info->plt_size);
10049         emit_int32 (acfg, info->nmethods);
10050         emit_int32 (acfg, info->flags);
10051         emit_int32 (acfg, info->opts);
10052         emit_int32 (acfg, info->simd_opts);
10053         emit_int32 (acfg, info->gc_name_index);
10054         emit_int32 (acfg, info->num_rgctx_fetch_trampolines);
10055         emit_int32 (acfg, info->double_align);
10056         emit_int32 (acfg, info->long_align);
10057         emit_int32 (acfg, info->generic_tramp_num);
10058         emit_int32 (acfg, info->tramp_page_size);
10059         emit_int32 (acfg, info->nshared_got_entries);
10060         emit_int32 (acfg, info->datafile_size);
10061
10062         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
10063                 emit_int32 (acfg, info->table_offsets [i]);
10064         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10065                 emit_int32 (acfg, info->num_trampolines [i]);
10066         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10067                 emit_int32 (acfg, info->trampoline_got_offset_base [i]);
10068         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10069                 emit_int32 (acfg, info->trampoline_size [i]);
10070         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10071                 emit_int32 (acfg, info->tramp_page_code_offsets [i]);
10072
10073         emit_bytes (acfg, info->aotid, 16);
10074
10075         if (acfg->aot_opts.static_link) {
10076                 emit_global_inner (acfg, acfg->static_linking_symbol, FALSE);
10077                 emit_alignment (acfg, sizeof (gpointer));
10078                 emit_label (acfg, acfg->static_linking_symbol);
10079                 emit_pointer_2 (acfg, acfg->user_symbol_prefix, "mono_aot_file_info");
10080         }
10081 }
10082
10083 /*
10084  * Emit a structure containing all the information not stored elsewhere.
10085  */
10086 static void
10087 emit_file_info (MonoAotCompile *acfg)
10088 {
10089         char *build_info;
10090         MonoAotFileInfo *info;
10091
10092         if (acfg->aot_opts.bind_to_runtime_version) {
10093                 build_info = mono_get_runtime_build_info ();
10094                 emit_string_symbol (acfg, "runtime_version", build_info);
10095                 g_free (build_info);
10096         } else {
10097                 emit_string_symbol (acfg, "runtime_version", "");
10098         }
10099
10100         emit_string_symbol (acfg, "assembly_guid" , acfg->image->guid);
10101
10102         /* Emit a string holding the assembly name */
10103         emit_string_symbol (acfg, "assembly_name", acfg->image->assembly->aname.name);
10104
10105         info = g_new0 (MonoAotFileInfo, 1);
10106         init_aot_file_info (acfg, info);
10107
10108         if (acfg->aot_opts.static_link) {
10109                 char symbol [MAX_SYMBOL_SIZE];
10110                 char *p;
10111
10112                 /*
10113                  * Emit a global symbol which can be passed by an embedding app to
10114                  * mono_aot_register_module (). The symbol points to a pointer to the the file info
10115                  * structure.
10116                  */
10117                 sprintf (symbol, "%smono_aot_module_%s_info", acfg->user_symbol_prefix, acfg->image->assembly->aname.name);
10118
10119                 /* Get rid of characters which cannot occur in symbols */
10120                 p = symbol;
10121                 for (p = symbol; *p; ++p) {
10122                         if (!(isalnum (*p) || *p == '_'))
10123                                 *p = '_';
10124                 }
10125                 acfg->static_linking_symbol = g_strdup (symbol);
10126         }
10127
10128         if (acfg->llvm)
10129                 mono_llvm_emit_aot_file_info (info, acfg->has_jitted_code);
10130         else
10131                 emit_aot_file_info (acfg, info);
10132 }
10133
10134 static void
10135 emit_blob (MonoAotCompile *acfg)
10136 {
10137         acfg->blob_closed = TRUE;
10138
10139         emit_aot_data (acfg, MONO_AOT_TABLE_BLOB, "blob", (guint8*)acfg->blob.data, acfg->blob.index);
10140 }
10141
10142 static void
10143 emit_objc_selectors (MonoAotCompile *acfg)
10144 {
10145         int i;
10146         char symbol [128];
10147
10148         if (!acfg->objc_selectors || acfg->objc_selectors->len == 0)
10149                 return;
10150
10151         /*
10152          * From
10153          * cat > foo.m << EOF
10154          * void *ret ()
10155          * {
10156          * return @selector(print:);
10157          * }
10158          * EOF
10159          */
10160
10161         mono_img_writer_emit_unset_mode (acfg->w);
10162         g_assert (acfg->fp);
10163         fprintf (acfg->fp, ".section    __DATA,__objc_selrefs,literal_pointers,no_dead_strip\n");
10164         fprintf (acfg->fp, ".align      3\n");
10165         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10166                 sprintf (symbol, "L_OBJC_SELECTOR_REFERENCES_%d", i);
10167                 emit_label (acfg, symbol);
10168                 sprintf (symbol, "L_OBJC_METH_VAR_NAME_%d", i);
10169                 emit_pointer (acfg, symbol);
10170
10171         }
10172         fprintf (acfg->fp, ".section    __TEXT,__cstring,cstring_literals\n");
10173         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10174                 fprintf (acfg->fp, "L_OBJC_METH_VAR_NAME_%d:\n", i);
10175                 fprintf (acfg->fp, ".asciz \"%s\"\n", (char*)g_ptr_array_index (acfg->objc_selectors, i));
10176         }
10177
10178         fprintf (acfg->fp, ".section    __DATA,__objc_imageinfo,regular,no_dead_strip\n");
10179         fprintf (acfg->fp, ".align      3\n");
10180         fprintf (acfg->fp, "L_OBJC_IMAGE_INFO:\n");
10181         fprintf (acfg->fp, ".long       0\n");
10182         fprintf (acfg->fp, ".long       16\n");
10183 }
10184
10185 static void
10186 emit_dwarf_info (MonoAotCompile *acfg)
10187 {
10188 #ifdef EMIT_DWARF_INFO
10189         int i;
10190         char symbol2 [128];
10191
10192         /* DIEs for methods */
10193         for (i = 0; i < acfg->nmethods; ++i) {
10194                 MonoCompile *cfg = acfg->cfgs [i];
10195
10196                 if (!cfg)
10197                         continue;
10198
10199                 // FIXME: LLVM doesn't define .Lme_...
10200                 if (cfg->compile_llvm)
10201                         continue;
10202
10203                 sprintf (symbol2, "%sme_%x", acfg->temp_prefix, i);
10204
10205                 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 ()));
10206         }
10207 #endif
10208 }
10209
10210 static gboolean
10211 collect_methods (MonoAotCompile *acfg)
10212 {
10213         int mindex, i;
10214         MonoImage *image = acfg->image;
10215
10216         /* Collect methods */
10217         for (i = 0; i < image->tables [MONO_TABLE_METHOD].rows; ++i) {
10218                 MonoError error;
10219                 MonoMethod *method;
10220                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
10221
10222                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10223
10224                 if (!method) {
10225                         aot_printerrf (acfg, "Failed to load method 0x%x from '%s' due to %s.\n", token, image->name, mono_error_get_message (&error));
10226                         aot_printerrf (acfg, "Run with MONO_LOG_LEVEL=debug for more information.\n");
10227                         mono_error_cleanup (&error);
10228                         return FALSE;
10229                 }
10230                         
10231                 /* Load all methods eagerly to skip the slower lazy loading code */
10232                 mono_class_setup_methods (method->klass);
10233
10234                 if (mono_aot_mode_is_full (&acfg->aot_opts) && method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
10235                         /* Compile the wrapper instead */
10236                         /* We do this here instead of add_wrappers () because it is easy to do it here */
10237                         MonoMethod *wrapper = mono_marshal_get_native_wrapper (method, TRUE, TRUE);
10238                         method = wrapper;
10239                 }
10240
10241                 /* FIXME: Some mscorlib methods don't have debug info */
10242                 /*
10243                 if (acfg->aot_opts.soft_debug && !method->wrapper_type) {
10244                         if (!((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
10245                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
10246                                   (method->flags & METHOD_ATTRIBUTE_ABSTRACT) ||
10247                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))) {
10248                                 if (!mono_debug_lookup_method (method)) {
10249                                         fprintf (stderr, "Method %s has no debug info, probably the .mdb file for the assembly is missing.\n", mono_method_get_full_name (method));
10250                                         exit (1);
10251                                 }
10252                         }
10253                 }
10254                 */
10255
10256                 if (method->is_generic || mono_class_is_gtd (method->klass))
10257                         /* Compile the ref shared version instead */
10258                         method = mini_get_shared_method (method);
10259
10260                 /* Since we add the normal methods first, their index will be equal to their zero based token index */
10261                 add_method_with_index (acfg, method, i, FALSE);
10262                 acfg->method_index ++;
10263         }
10264
10265         /* gsharedvt methods */
10266         for (mindex = 0; mindex < image->tables [MONO_TABLE_METHOD].rows; ++mindex) {
10267                 MonoError error;
10268                 MonoMethod *method;
10269                 guint32 token = MONO_TOKEN_METHOD_DEF | (mindex + 1);
10270
10271                 if (!(acfg->opts & MONO_OPT_GSHAREDVT))
10272                         continue;
10273
10274                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10275                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
10276
10277                 if (method->is_generic || mono_class_is_gtd (method->klass)) {
10278                         MonoMethod *gshared;
10279
10280                         gshared = mini_get_shared_method_full (method, TRUE, TRUE);
10281                         add_extra_method (acfg, gshared);
10282                 }
10283         }
10284
10285         if (mono_aot_mode_is_full (&acfg->aot_opts))
10286                 add_generic_instances (acfg);
10287
10288         if (mono_aot_mode_is_full (&acfg->aot_opts))
10289                 add_wrappers (acfg);
10290         return TRUE;
10291 }
10292
10293 static void
10294 compile_methods (MonoAotCompile *acfg)
10295 {
10296         int i, methods_len;
10297
10298         if (acfg->aot_opts.nthreads > 0) {
10299                 GPtrArray *frag;
10300                 int len, j;
10301                 GPtrArray *threads;
10302                 MonoThreadHandle *thread_handle;
10303                 gpointer *user_data;
10304                 MonoMethod **methods;
10305
10306                 methods_len = acfg->methods->len;
10307
10308                 len = acfg->methods->len / acfg->aot_opts.nthreads;
10309                 g_assert (len > 0);
10310                 /* 
10311                  * Partition the list of methods into fragments, and hand it to threads to
10312                  * process.
10313                  */
10314                 threads = g_ptr_array_new ();
10315                 /* Make a copy since acfg->methods is modified by compile_method () */
10316                 methods = g_new0 (MonoMethod*, methods_len);
10317                 //memcpy (methods, g_ptr_array_index (acfg->methods, 0), sizeof (MonoMethod*) * methods_len);
10318                 for (i = 0; i < methods_len; ++i)
10319                         methods [i] = (MonoMethod *)g_ptr_array_index (acfg->methods, i);
10320                 i = 0;
10321                 while (i < methods_len) {
10322                         MonoError error;
10323                         MonoInternalThread *thread;
10324
10325                         frag = g_ptr_array_new ();
10326                         for (j = 0; j < len; ++j) {
10327                                 if (i < methods_len) {
10328                                         g_ptr_array_add (frag, methods [i]);
10329                                         i ++;
10330                                 }
10331                         }
10332
10333                         user_data = g_new0 (gpointer, 3);
10334                         user_data [0] = acfg;
10335                         user_data [1] = frag;
10336                         
10337                         thread = mono_thread_create_internal (mono_domain_get (), compile_thread_main, (gpointer) user_data, MONO_THREAD_CREATE_FLAGS_NONE, &error);
10338                         mono_error_assert_ok (&error);
10339
10340                         thread_handle = mono_threads_open_thread_handle (thread->handle);
10341                         g_ptr_array_add (threads, thread_handle);
10342                 }
10343                 g_free (methods);
10344
10345                 for (i = 0; i < threads->len; ++i) {
10346                         mono_thread_info_wait_one_handle (g_ptr_array_index (threads, i), MONO_INFINITE_WAIT, FALSE);
10347                         mono_threads_close_thread_handle (g_ptr_array_index (threads, i));
10348                 }
10349         } else {
10350                 methods_len = 0;
10351         }
10352
10353         /* Compile methods added by compile_method () or all methods if nthreads == 0 */
10354         for (i = methods_len; i < acfg->methods->len; ++i) {
10355                 /* This can add new methods to acfg->methods */
10356                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (acfg->methods, i));
10357         }
10358 }
10359
10360 static int
10361 compile_asm (MonoAotCompile *acfg)
10362 {
10363         char *command, *objfile;
10364         char *outfile_name, *tmp_outfile_name, *llvm_ofile;
10365         const char *tool_prefix = acfg->aot_opts.tool_prefix ? acfg->aot_opts.tool_prefix : "";
10366         char *ld_flags = acfg->aot_opts.ld_flags ? acfg->aot_opts.ld_flags : g_strdup("");
10367
10368 #ifdef TARGET_WIN32_MSVC
10369 #define AS_OPTIONS "-c -x assembler"
10370 #elif defined(TARGET_AMD64) && !defined(TARGET_MACH)
10371 #define AS_OPTIONS "--64"
10372 #elif defined(TARGET_POWERPC64)
10373 #define AS_OPTIONS "-a64 -mppc64"
10374 #elif defined(sparc) && SIZEOF_VOID_P == 8
10375 #define AS_OPTIONS "-xarch=v9"
10376 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10377 #define AS_OPTIONS "-arch i386"
10378 #else
10379 #define AS_OPTIONS ""
10380 #endif
10381
10382 #if defined(TARGET_OSX)
10383 #define AS_NAME "clang"
10384 #elif defined(TARGET_WIN32_MSVC)
10385 #define AS_NAME "clang.exe"
10386 #else
10387 #define AS_NAME "as"
10388 #endif
10389
10390 #ifdef TARGET_WIN32_MSVC
10391 #define AS_OBJECT_FILE_SUFFIX "obj"
10392 #else
10393 #define AS_OBJECT_FILE_SUFFIX "o"
10394 #endif
10395
10396 #if defined(sparc)
10397 #define LD_NAME "ld"
10398 #define LD_OPTIONS "-shared -G"
10399 #elif defined(__ppc__) && defined(TARGET_MACH)
10400 #define LD_NAME "gcc"
10401 #define LD_OPTIONS "-dynamiclib"
10402 #elif defined(TARGET_AMD64) && defined(TARGET_MACH)
10403 #define LD_NAME "clang"
10404 #define LD_OPTIONS "--shared"
10405 #elif defined(TARGET_WIN32_MSVC)
10406 #define LD_NAME "link.exe"
10407 #define LD_OPTIONS "/DLL /MACHINE:X64 /NOLOGO"
10408 #elif defined(TARGET_WIN32) && !defined(TARGET_ANDROID)
10409 #define LD_NAME "gcc"
10410 #define LD_OPTIONS "-shared"
10411 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10412 #define LD_NAME "clang"
10413 #define LD_OPTIONS "-m32 -dynamiclib"
10414 #elif defined(TARGET_ARM) && !defined(TARGET_ANDROID)
10415 #define LD_NAME "gcc"
10416 #define LD_OPTIONS "--shared"
10417 #elif defined(TARGET_POWERPC64)
10418 #define LD_OPTIONS "-m elf64ppc"
10419 #endif
10420
10421 #ifndef LD_OPTIONS
10422 #define LD_OPTIONS ""
10423 #endif
10424
10425         if (acfg->aot_opts.asm_only) {
10426                 aot_printf (acfg, "Output file: '%s'.\n", acfg->tmpfname);
10427                 if (acfg->aot_opts.static_link)
10428                         aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10429                 if (acfg->llvm)
10430                         aot_printf (acfg, "LLVM output file: '%s'.\n", acfg->llvm_sfile);
10431                 return 0;
10432         }
10433
10434         if (acfg->aot_opts.static_link) {
10435                 if (acfg->aot_opts.outfile)
10436                         objfile = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10437                 else
10438                         objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->image->name);
10439         } else {
10440                 objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname);
10441         }
10442
10443 #ifdef TARGET_OSX
10444         g_string_append (acfg->as_args, "-c -x assembler");
10445 #endif
10446
10447         command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10448                         acfg->as_args ? acfg->as_args->str : "", 
10449                         wrap_path (objfile), wrap_path (acfg->tmpfname));
10450         aot_printf (acfg, "Executing the native assembler: %s\n", command);
10451         if (execute_system (command) != 0) {
10452                 g_free (command);
10453                 g_free (objfile);
10454                 return 1;
10455         }
10456
10457         if (acfg->llvm && !acfg->llvm_owriter) {
10458                 command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10459                         acfg->as_args ? acfg->as_args->str : "",
10460                         wrap_path (acfg->llvm_ofile), wrap_path (acfg->llvm_sfile));
10461                 aot_printf (acfg, "Executing the native assembler: %s\n", command);
10462                 if (execute_system (command) != 0) {
10463                         g_free (command);
10464                         g_free (objfile);
10465                         return 1;
10466                 }
10467         }
10468
10469         g_free (command);
10470
10471         if (acfg->aot_opts.static_link) {
10472                 aot_printf (acfg, "Output file: '%s'.\n", objfile);
10473                 aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10474                 g_free (objfile);
10475                 return 0;
10476         }
10477
10478         if (acfg->aot_opts.outfile)
10479                 outfile_name = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10480         else
10481                 outfile_name = g_strdup_printf ("%s%s", acfg->image->name, MONO_SOLIB_EXT);
10482
10483         tmp_outfile_name = g_strdup_printf ("%s.tmp", outfile_name);
10484
10485         if (acfg->llvm) {
10486                 llvm_ofile = g_strdup_printf ("\"%s\"", acfg->llvm_ofile);
10487         } else {
10488                 llvm_ofile = g_strdup ("");
10489         }
10490
10491         /* replace the ; flags separators with spaces */
10492         g_strdelimit (ld_flags, ";", ' ');
10493
10494         if (acfg->aot_opts.llvm_only)
10495                 ld_flags = g_strdup_printf ("%s %s", ld_flags, "-lstdc++");
10496
10497 #ifdef TARGET_WIN32_MSVC
10498         g_assert (tmp_outfile_name != NULL);
10499         g_assert (objfile != NULL);
10500         command = g_strdup_printf ("\"%s%s\" %s %s /OUT:\"%s\" \"%s\"", tool_prefix, LD_NAME, LD_OPTIONS,
10501                 ld_flags, tmp_outfile_name, objfile);
10502 #elif defined(LD_NAME)
10503         command = g_strdup_printf ("%s%s %s -o %s %s %s %s", tool_prefix, LD_NAME, LD_OPTIONS,
10504                 wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10505                 wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10506 #else
10507         // Default (linux)
10508         if (acfg->aot_opts.tool_prefix) {
10509                 /* Cross compiling */
10510                 command = g_strdup_printf ("\"%sld\" %s -shared -o %s %s %s %s", tool_prefix, 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         } else {
10514                 char *args = g_strdup_printf ("%s -shared -o %s %s %s %s", LD_OPTIONS,
10515                                                                           wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10516                                                                           wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10517
10518                 if (acfg->aot_opts.llvm_only) {
10519                         command = g_strdup_printf ("clang++ %s", args);
10520                 } else {
10521                         command = g_strdup_printf ("\"%sld\" %s", tool_prefix, args);
10522                 }
10523                 g_free (args);
10524         }
10525 #endif
10526         aot_printf (acfg, "Executing the native linker: %s\n", command);
10527         if (execute_system (command) != 0) {
10528                 g_free (tmp_outfile_name);
10529                 g_free (outfile_name);
10530                 g_free (command);
10531                 g_free (objfile);
10532                 g_free (ld_flags);
10533                 return 1;
10534         }
10535
10536         g_free (command);
10537
10538         /*com = g_strdup_printf ("strip --strip-unneeded %s%s", acfg->image->name, MONO_SOLIB_EXT);
10539         printf ("Stripping the binary: %s\n", com);
10540         execute_system (com);
10541         g_free (com);*/
10542
10543 #if defined(TARGET_ARM) && !defined(TARGET_MACH)
10544         /* 
10545          * gas generates 'mapping symbols' each time code and data is mixed, which 
10546          * happens a lot in emit_and_reloc_code (), so we need to get rid of them.
10547          */
10548         command = g_strdup_printf ("\"%sstrip\" --strip-symbol=\\$a --strip-symbol=\\$d %s", wrap_path(tool_prefix), wrap_path(tmp_outfile_name));
10549         aot_printf (acfg, "Stripping the binary: %s\n", command);
10550         if (execute_system (command) != 0) {
10551                 g_free (tmp_outfile_name);
10552                 g_free (outfile_name);
10553                 g_free (command);
10554                 g_free (objfile);
10555                 return 1;
10556         }
10557 #endif
10558
10559         if (0 != rename (tmp_outfile_name, outfile_name)) {
10560                 if (G_FILE_ERROR_EXIST == g_file_error_from_errno (errno)) {
10561                         /* Since we are rebuilding the module we need to be able to replace any old copies. Remove old file and retry rename operation. */
10562                         unlink (outfile_name);
10563                         rename (tmp_outfile_name, outfile_name);
10564                 }
10565         }
10566
10567 #if defined(TARGET_MACH)
10568         command = g_strdup_printf ("dsymutil \"%s\"", outfile_name);
10569         aot_printf (acfg, "Executing dsymutil: %s\n", command);
10570         if (execute_system (command) != 0) {
10571                 return 1;
10572         }
10573 #endif
10574
10575         if (!acfg->aot_opts.save_temps)
10576                 unlink (objfile);
10577
10578         g_free (tmp_outfile_name);
10579         g_free (outfile_name);
10580         g_free (objfile);
10581
10582         if (acfg->aot_opts.save_temps)
10583                 aot_printf (acfg, "Retained input file.\n");
10584         else
10585                 unlink (acfg->tmpfname);
10586
10587         return 0;
10588 }
10589
10590 static guint8
10591 profread_byte (FILE *infile)
10592 {
10593         guint8 i;
10594         int res;
10595
10596         res = fread (&i, 1, 1, infile);
10597         g_assert (res == 1);
10598         return i;
10599 }
10600
10601 static int
10602 profread_int (FILE *infile)
10603 {
10604         int i, res;
10605
10606         res = fread (&i, 4, 1, infile);
10607         g_assert (res == 1);
10608         return i;
10609 }
10610
10611 static char*
10612 profread_string (FILE *infile)
10613 {
10614         int len, res;
10615         char buf [1024];
10616         char *pbuf;
10617
10618         len = profread_int (infile);
10619         if (len + 1 > 1024)
10620                 pbuf = g_malloc (len + 1);
10621         else
10622                 pbuf = buf;
10623         res = fread (pbuf, 1, len, infile);
10624         g_assert (res == len);
10625         pbuf [len] = '\0';
10626         if (pbuf == buf)
10627                 return g_strdup (buf);
10628         else
10629                 return pbuf;
10630 }
10631
10632 static void
10633 load_profile_file (MonoAotCompile *acfg, char *filename)
10634 {
10635         FILE *infile;
10636         char buf [1024];
10637         int res, len, version;
10638         char magic [32];
10639
10640         infile = fopen (filename, "r");
10641         if (!infile) {
10642                 fprintf (stderr, "Unable to open file '%s': %s.\n", filename, strerror (errno));
10643                 exit (1);
10644         }
10645
10646         printf ("Using profile data file '%s'\n", filename);
10647
10648         sprintf (magic, AOT_PROFILER_MAGIC);
10649         len = strlen (magic);
10650         res = fread (buf, 1, len, infile);
10651         magic [len] = '\0';
10652         buf [len] = '\0';
10653         if ((res != len) || strcmp (buf, magic) != 0) {
10654                 printf ("Profile file has wrong header: '%s'.\n", buf);
10655                 fclose (infile);
10656                 exit (1);
10657         }
10658         guint32 expected_version = (AOT_PROFILER_MAJOR_VERSION << 16) | AOT_PROFILER_MINOR_VERSION;
10659         version = profread_int (infile);
10660         if (version != expected_version) {
10661                 printf ("Profile file has wrong version 0x%4x, expected 0x%4x.\n", version, expected_version);
10662                 fclose (infile);
10663                 exit (1);
10664         }
10665
10666         ProfileData *data = g_new0 (ProfileData, 1);
10667         data->images = g_hash_table_new (NULL, NULL);
10668         data->classes = g_hash_table_new (NULL, NULL);
10669         data->ginsts = g_hash_table_new (NULL, NULL);
10670         data->methods = g_hash_table_new (NULL, NULL);
10671
10672         while (TRUE) {
10673                 int type = profread_byte (infile);
10674                 int id = profread_int (infile);
10675
10676                 if (type == AOTPROF_RECORD_NONE)
10677                         break;
10678
10679                 switch (type) {
10680                 case AOTPROF_RECORD_IMAGE: {
10681                         ImageProfileData *idata = g_new0 (ImageProfileData, 1);
10682                         idata->name = profread_string (infile);
10683                         char *mvid = profread_string (infile);
10684                         g_free (mvid);
10685                         g_hash_table_insert (data->images, GINT_TO_POINTER (id), idata);
10686                         break;
10687                 }
10688                 case AOTPROF_RECORD_GINST: {
10689                         int i;
10690                         int len = profread_int (infile);
10691
10692                         GInstProfileData *gdata = g_new0 (GInstProfileData, 1);
10693                         gdata->argc = len;
10694                         gdata->argv = g_new0 (ClassProfileData*, len);
10695
10696                         for (i = 0; i < len; ++i) {
10697                                 int class_id = profread_int (infile);
10698
10699                                 gdata->argv [i] = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10700                                 g_assert (gdata->argv [i]);
10701                         }
10702                         g_hash_table_insert (data->ginsts, GINT_TO_POINTER (id), gdata);
10703                         break;
10704                 }
10705                 case AOTPROF_RECORD_TYPE: {
10706                         int type = profread_byte (infile);
10707
10708                         switch (type) {
10709                         case MONO_TYPE_CLASS: {
10710                                 int image_id = profread_int (infile);
10711                                 int ginst_id = profread_int (infile);
10712                                 char *class_name = profread_string (infile);
10713
10714                                 ImageProfileData *image = g_hash_table_lookup (data->images, GINT_TO_POINTER (image_id));
10715                                 g_assert (image);
10716
10717                                 char *p = strrchr (class_name, '.');
10718                                 g_assert (p);
10719                                 *p = '\0';
10720
10721                                 ClassProfileData *cdata = g_new0 (ClassProfileData, 1);
10722                                 cdata->image = image;
10723                                 cdata->ns = g_strdup (class_name);
10724                                 cdata->name = g_strdup (p + 1);
10725
10726                                 if (ginst_id != -1) {
10727                                         cdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10728                                         g_assert (cdata->inst);
10729                                 }
10730                                 g_free (class_name);
10731
10732                                 g_hash_table_insert (data->classes, GINT_TO_POINTER (id), cdata);
10733                                 break;
10734                         }
10735 #if 0
10736                         case MONO_TYPE_SZARRAY: {
10737                                 int elem_id = profread_int (infile);
10738                                 // FIXME:
10739                                 break;
10740                         }
10741 #endif
10742                         default:
10743                                 g_assert_not_reached ();
10744                                 break;
10745                         }
10746                         break;
10747                 }
10748                 case AOTPROF_RECORD_METHOD: {
10749                         int class_id = profread_int (infile);
10750                         int ginst_id = profread_int (infile);
10751                         int param_count = profread_int (infile);
10752                         char *method_name = profread_string (infile);
10753                         char *sig = profread_string (infile);
10754
10755                         ClassProfileData *klass = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10756                         g_assert (klass);
10757
10758                         MethodProfileData *mdata = g_new0 (MethodProfileData, 1);
10759                         mdata->id = id;
10760                         mdata->klass = klass;
10761                         mdata->name = method_name;
10762                         mdata->signature = sig;
10763                         mdata->param_count = param_count;
10764
10765                         if (ginst_id != -1) {
10766                                 mdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10767                                 g_assert (mdata->inst);
10768                         }
10769                         g_hash_table_insert (data->methods, GINT_TO_POINTER (id), mdata);
10770                         break;
10771                 }
10772                 default:
10773                         printf ("%d\n", type);
10774                         g_assert_not_reached ();
10775                         break;
10776                 }
10777         }
10778
10779         fclose (infile);
10780         acfg->profile_data = g_list_append (acfg->profile_data, data);
10781 }
10782
10783 static void
10784 resolve_class (ClassProfileData *cdata);
10785
10786 static void
10787 resolve_ginst (GInstProfileData *inst_data)
10788 {
10789         int i;
10790
10791         if (inst_data->inst)
10792                 return;
10793
10794         for (i = 0; i < inst_data->argc; ++i) {
10795                 resolve_class (inst_data->argv [i]);
10796                 if (!inst_data->argv [i]->klass)
10797                         return;
10798         }
10799         MonoType **args = g_new0 (MonoType*, inst_data->argc);
10800         for (i = 0; i < inst_data->argc; ++i)
10801                 args [i] = &inst_data->argv [i]->klass->byval_arg;
10802
10803         inst_data->inst = mono_metadata_get_generic_inst (inst_data->argc, args);
10804 }
10805
10806 static void
10807 resolve_class (ClassProfileData *cdata)
10808 {
10809         MonoError error;
10810         MonoClass *klass;
10811
10812         if (!cdata->image->image)
10813                 return;
10814
10815         klass = mono_class_from_name_checked (cdata->image->image, cdata->ns, cdata->name, &error);
10816         if (!klass) {
10817                 //printf ("[%s] %s.%s\n", cdata->image->name, cdata->ns, cdata->name);
10818                 return;
10819         }
10820         if (cdata->inst) {
10821                 resolve_ginst (cdata->inst);
10822                 if (!cdata->inst->inst)
10823                         return;
10824                 MonoGenericContext ctx;
10825
10826                 memset (&ctx, 0, sizeof (ctx));
10827                 ctx.class_inst = cdata->inst->inst;
10828                 cdata->klass = mono_class_inflate_generic_class_checked (klass, &ctx, &error);
10829         } else {
10830                 cdata->klass = klass;
10831         }
10832 }
10833
10834 /*
10835  * Resolve the profile data to the corresponding loaded classes/methods etc. if possible.
10836  */
10837 static void
10838 resolve_profile_data (MonoAotCompile *acfg, ProfileData *data)
10839 {
10840         GHashTableIter iter;
10841         gpointer key, value;
10842         int i;
10843
10844         if (!data)
10845                 return;
10846
10847         /* Images */
10848         GPtrArray *assemblies = mono_domain_get_assemblies (mono_get_root_domain (), FALSE);
10849         g_hash_table_iter_init (&iter, data->images);
10850         while (g_hash_table_iter_next (&iter, &key, &value)) {
10851                 ImageProfileData *idata = (ImageProfileData*)value;
10852
10853                 for (i = 0; i < assemblies->len; ++i) {
10854                         MonoAssembly *ass = g_ptr_array_index (assemblies, i);
10855
10856                         if (!strcmp (ass->aname.name, idata->name)) {
10857                                 idata->image = ass->image;
10858                                 break;
10859                         }
10860                 }
10861         }
10862         g_ptr_array_free (assemblies, TRUE);
10863
10864         /* Classes */
10865         g_hash_table_iter_init (&iter, data->classes);
10866         while (g_hash_table_iter_next (&iter, &key, &value)) {
10867                 ClassProfileData *cdata = (ClassProfileData*)value;
10868
10869                 if (!cdata->image->image) {
10870                         if (acfg->aot_opts.verbose)
10871                                 printf ("Unable to load class '%s.%s' because its image '%s' is not loaded.\n", cdata->ns, cdata->name, cdata->image->name);
10872                         continue;
10873                 }
10874
10875                 resolve_class (cdata);
10876                 /*
10877                 if (cdata->klass)
10878                         printf ("%s %s %s\n", cdata->ns, cdata->name, mono_class_full_name (cdata->klass));
10879                 */
10880         }
10881
10882         /* Methods */
10883         g_hash_table_iter_init (&iter, data->methods);
10884         while (g_hash_table_iter_next (&iter, &key, &value)) {
10885                 MethodProfileData *mdata = (MethodProfileData*)value;
10886                 MonoClass *klass;
10887                 MonoMethod *m;
10888                 gpointer miter;
10889
10890                 resolve_class (mdata->klass);
10891                 klass = mdata->klass->klass;
10892                 if (!klass) {
10893                         if (acfg->aot_opts.verbose)
10894                                 printf ("Unable to load method '%s' because its class '%s.%s' is not loaded.\n", mdata->name, mdata->klass->ns, mdata->klass->name);
10895                         continue;
10896                 }
10897                 miter = NULL;
10898                 while ((m = mono_class_get_methods (klass, &miter))) {
10899                         MonoError error;
10900
10901                         if (strcmp (m->name, mdata->name))
10902                                 continue;
10903                         MonoMethodSignature *sig = mono_method_signature (m);
10904                         if (!sig)
10905                                 continue;
10906                         if (sig->param_count != mdata->param_count)
10907                                 continue;
10908                         if (mdata->inst) {
10909                                 resolve_ginst (mdata->inst);
10910                                 if (!mdata->inst->inst)
10911                                         continue;
10912                                 MonoGenericContext ctx;
10913
10914                                 memset (&ctx, 0, sizeof (ctx));
10915                                 ctx.method_inst = mdata->inst->inst;
10916
10917                                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
10918                                 if (!m)
10919                                         continue;
10920                                 sig = mono_method_signature_checked (m, &error);
10921                                 if (!is_ok (&error)) {
10922                                         mono_error_cleanup (&error);
10923                                         continue;
10924                                 }
10925                         }
10926                         char *sig_str = mono_signature_full_name (sig);
10927                         gboolean match = !strcmp (sig_str, mdata->signature);
10928                         g_free (sig_str);
10929                         if (!match)
10930
10931                                 continue;
10932                         //printf ("%s\n", mono_method_full_name (m, 1));
10933                         mdata->method = m;
10934                         break;
10935                 }
10936                 if (!mdata->method) {
10937                         if (acfg->aot_opts.verbose)
10938                                 printf ("Unable to load method '%s' from class '%s', not found.\n", mdata->name, mono_class_full_name (klass));
10939                 }
10940         }
10941 }
10942
10943 static gboolean
10944 inst_references_image (MonoGenericInst *inst, MonoImage *image)
10945 {
10946         int i;
10947
10948         for (i = 0; i < inst->type_argc; ++i) {
10949                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10950                 if (k->image == image)
10951                         return TRUE;
10952                 if (mono_class_is_ginst (k)) {
10953                         MonoGenericInst *kinst = mono_class_get_context (k)->class_inst;
10954                         if (inst_references_image (kinst, image))
10955                                 return TRUE;
10956                 }
10957         }
10958         return FALSE;
10959 }
10960
10961 static gboolean
10962 is_local_inst (MonoGenericInst *inst, MonoImage *image)
10963 {
10964         int i;
10965
10966         for (i = 0; i < inst->type_argc; ++i) {
10967                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10968                 if (!MONO_TYPE_IS_PRIMITIVE (inst->type_argv [i]) && k->image != image)
10969                         return FALSE;
10970         }
10971         return TRUE;
10972 }
10973
10974 static void
10975 add_profile_instances (MonoAotCompile *acfg, ProfileData *data)
10976 {
10977         GHashTableIter iter;
10978         gpointer key, value;
10979         int count = 0;
10980
10981         if (!data)
10982                 return;
10983
10984         if (acfg->aot_opts.profile_only) {
10985                 /* Add methods referenced by the profile */
10986                 g_hash_table_iter_init (&iter, data->methods);
10987                 while (g_hash_table_iter_next (&iter, &key, &value)) {
10988                         MethodProfileData *mdata = (MethodProfileData*)value;
10989                         MonoMethod *m = mdata->method;
10990
10991                         if (!m)
10992                                 continue;
10993                         if (m->is_inflated)
10994                                 continue;
10995                         add_extra_method (acfg, m);
10996                         g_hash_table_insert (acfg->profile_methods, m, m);
10997                         count ++;
10998                 }
10999         }
11000
11001         /*
11002          * Add method instances 'related' to this assembly to the AOT image.
11003          */
11004         g_hash_table_iter_init (&iter, data->methods);
11005         while (g_hash_table_iter_next (&iter, &key, &value)) {
11006                 MethodProfileData *mdata = (MethodProfileData*)value;
11007                 MonoMethod *m = mdata->method;
11008                 MonoGenericContext *ctx;
11009
11010                 if (!m)
11011                         continue;
11012                 if (!m->is_inflated)
11013                         continue;
11014
11015                 ctx = mono_method_get_context (m);
11016                 /* For simplicity, add instances which reference the assembly we are compiling */
11017                 if (((ctx->class_inst && inst_references_image (ctx->class_inst, acfg->image)) ||
11018                          (ctx->method_inst && inst_references_image (ctx->method_inst, acfg->image))) &&
11019                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) {
11020                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11021                         add_extra_method (acfg, m);
11022                         count ++;
11023                 } else if (m->klass->image == acfg->image &&
11024                         ((ctx->class_inst && is_local_inst (ctx->class_inst, acfg->image)) ||
11025                          (ctx->method_inst && is_local_inst (ctx->method_inst, acfg->image))) &&
11026                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE))  {
11027                         /* Add instances where the gtd is in the assembly and its inflated with types from this assembly or corlib */
11028                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11029                         add_extra_method (acfg, m);
11030                         count ++;
11031                 }
11032                 /*
11033                  * FIXME: We might skip some instances, for example:
11034                  * Foo<Bar> won't be compiled when compiling Foo's assembly since it doesn't match the first case,
11035                  * and it won't be compiled when compiling Bar's assembly if Foo's assembly is not loaded.
11036                  */
11037         }
11038
11039         printf ("Added %d methods from profile.\n", count);
11040 }
11041
11042 static void
11043 init_got_info (GotInfo *info)
11044 {
11045         int i;
11046
11047         info->patch_to_got_offset = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11048         info->patch_to_got_offset_by_type = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11049         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11050                 info->patch_to_got_offset_by_type [i] = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11051         info->got_patches = g_ptr_array_new ();
11052 }
11053
11054 static MonoAotCompile*
11055 acfg_create (MonoAssembly *ass, guint32 opts)
11056 {
11057         MonoImage *image = ass->image;
11058         MonoAotCompile *acfg;
11059
11060         acfg = g_new0 (MonoAotCompile, 1);
11061         acfg->methods = g_ptr_array_new ();
11062         acfg->method_indexes = g_hash_table_new (NULL, NULL);
11063         acfg->method_depth = g_hash_table_new (NULL, NULL);
11064         acfg->plt_offset_to_entry = g_hash_table_new (NULL, NULL);
11065         acfg->patch_to_plt_entry = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11066         acfg->method_to_cfg = g_hash_table_new (NULL, NULL);
11067         acfg->token_info_hash = g_hash_table_new_full (NULL, NULL, NULL, NULL);
11068         acfg->method_to_pinvoke_import = g_hash_table_new_full (NULL, NULL, NULL, g_free);
11069         acfg->image_hash = g_hash_table_new (NULL, NULL);
11070         acfg->image_table = g_ptr_array_new ();
11071         acfg->globals = g_ptr_array_new ();
11072         acfg->image = image;
11073         acfg->opts = opts;
11074         /* TODO: Write out set of SIMD instructions used, rather than just those available */
11075         acfg->simd_opts = mono_arch_cpu_enumerate_simd_versions ();
11076         acfg->mempool = mono_mempool_new ();
11077         acfg->extra_methods = g_ptr_array_new ();
11078         acfg->unwind_info_offsets = g_hash_table_new (NULL, NULL);
11079         acfg->unwind_ops = g_ptr_array_new ();
11080         acfg->method_label_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
11081         acfg->method_order = g_ptr_array_new ();
11082         acfg->export_names = g_hash_table_new (NULL, NULL);
11083         acfg->klass_blob_hash = g_hash_table_new (NULL, NULL);
11084         acfg->method_blob_hash = g_hash_table_new (NULL, NULL);
11085         acfg->plt_entry_debug_sym_cache = g_hash_table_new (g_str_hash, g_str_equal);
11086         acfg->gsharedvt_in_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11087         acfg->gsharedvt_out_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11088         acfg->profile_methods = g_hash_table_new (NULL, NULL);
11089         mono_os_mutex_init_recursive (&acfg->mutex);
11090
11091         init_got_info (&acfg->got_info);
11092         init_got_info (&acfg->llvm_got_info);
11093
11094         return acfg;
11095 }
11096
11097 static void
11098 got_info_free (GotInfo *info)
11099 {
11100         int i;
11101
11102         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11103                 g_hash_table_destroy (info->patch_to_got_offset_by_type [i]);
11104         g_free (info->patch_to_got_offset_by_type);
11105         g_hash_table_destroy (info->patch_to_got_offset);
11106         g_ptr_array_free (info->got_patches, TRUE);
11107 }
11108
11109 static void
11110 acfg_free (MonoAotCompile *acfg)
11111 {
11112         int i;
11113
11114         mono_img_writer_destroy (acfg->w);
11115         for (i = 0; i < acfg->nmethods; ++i)
11116                 if (acfg->cfgs [i])
11117                         mono_destroy_compile (acfg->cfgs [i]);
11118
11119         g_free (acfg->cfgs);
11120
11121         g_free (acfg->static_linking_symbol);
11122         g_free (acfg->got_symbol);
11123         g_free (acfg->plt_symbol);
11124         g_ptr_array_free (acfg->methods, TRUE);
11125         g_ptr_array_free (acfg->image_table, TRUE);
11126         g_ptr_array_free (acfg->globals, TRUE);
11127         g_ptr_array_free (acfg->unwind_ops, TRUE);
11128         g_hash_table_destroy (acfg->method_indexes);
11129         g_hash_table_destroy (acfg->method_depth);
11130         g_hash_table_destroy (acfg->plt_offset_to_entry);
11131         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i) {
11132                 if (acfg->patch_to_plt_entry [i])
11133                         g_hash_table_destroy (acfg->patch_to_plt_entry [i]);
11134         }
11135         g_free (acfg->patch_to_plt_entry);
11136         g_hash_table_destroy (acfg->method_to_cfg);
11137         g_hash_table_destroy (acfg->token_info_hash);
11138         g_hash_table_destroy (acfg->method_to_pinvoke_import);
11139         g_hash_table_destroy (acfg->image_hash);
11140         g_hash_table_destroy (acfg->unwind_info_offsets);
11141         g_hash_table_destroy (acfg->method_label_hash);
11142         if (acfg->typespec_classes)
11143                 g_hash_table_destroy (acfg->typespec_classes);
11144         g_hash_table_destroy (acfg->export_names);
11145         g_hash_table_destroy (acfg->plt_entry_debug_sym_cache);
11146         g_hash_table_destroy (acfg->klass_blob_hash);
11147         g_hash_table_destroy (acfg->method_blob_hash);
11148         got_info_free (&acfg->got_info);
11149         got_info_free (&acfg->llvm_got_info);
11150         mono_mempool_destroy (acfg->mempool);
11151         g_free (acfg);
11152 }
11153
11154 #define WRAPPER(e,n) n,
11155 static const char* const
11156 wrapper_type_names [MONO_WRAPPER_NUM + 1] = {
11157 #include "mono/metadata/wrapper-types.h"
11158         NULL
11159 };
11160
11161 static G_GNUC_UNUSED const char*
11162 get_wrapper_type_name (int type)
11163 {
11164         return wrapper_type_names [type];
11165 }
11166
11167 //#define DUMP_PLT
11168 //#define DUMP_GOT
11169
11170 static void aot_dump (MonoAotCompile *acfg)
11171 {
11172         FILE *dumpfile;
11173         char * dumpname;
11174
11175         JsonWriter writer;
11176         mono_json_writer_init (&writer);
11177
11178         mono_json_writer_object_begin(&writer);
11179
11180         // Methods
11181         mono_json_writer_indent (&writer);
11182         mono_json_writer_object_key(&writer, "methods");
11183         mono_json_writer_array_begin (&writer);
11184
11185         int i;
11186         for (i = 0; i < acfg->nmethods; ++i) {
11187                 MonoCompile *cfg;
11188                 MonoMethod *method;
11189                 MonoClass *klass;
11190
11191                 cfg = acfg->cfgs [i];
11192                 if (!cfg)
11193                         continue;
11194
11195                 method = cfg->orig_method;
11196
11197                 mono_json_writer_indent (&writer);
11198                 mono_json_writer_object_begin(&writer);
11199
11200                 mono_json_writer_indent (&writer);
11201                 mono_json_writer_object_key(&writer, "name");
11202                 mono_json_writer_printf (&writer, "\"%s\",\n", method->name);
11203
11204                 mono_json_writer_indent (&writer);
11205                 mono_json_writer_object_key(&writer, "signature");
11206                 mono_json_writer_printf (&writer, "\"%s\",\n", mono_method_get_full_name (method));
11207
11208                 mono_json_writer_indent (&writer);
11209                 mono_json_writer_object_key(&writer, "code_size");
11210                 mono_json_writer_printf (&writer, "\"%d\",\n", cfg->code_size);
11211
11212                 klass = method->klass;
11213
11214                 mono_json_writer_indent (&writer);
11215                 mono_json_writer_object_key(&writer, "class");
11216                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name);
11217
11218                 mono_json_writer_indent (&writer);
11219                 mono_json_writer_object_key(&writer, "namespace");
11220                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name_space);
11221
11222                 mono_json_writer_indent (&writer);
11223                 mono_json_writer_object_key(&writer, "wrapper_type");
11224                 mono_json_writer_printf (&writer, "\"%s\",\n", get_wrapper_type_name(method->wrapper_type));
11225
11226                 mono_json_writer_indent_pop (&writer);
11227                 mono_json_writer_indent (&writer);
11228                 mono_json_writer_object_end (&writer);
11229                 mono_json_writer_printf (&writer, ",\n");
11230         }
11231
11232         mono_json_writer_indent_pop (&writer);
11233         mono_json_writer_indent (&writer);
11234         mono_json_writer_array_end (&writer);
11235         mono_json_writer_printf (&writer, ",\n");
11236
11237         // PLT entries
11238 #ifdef DUMP_PLT
11239         mono_json_writer_indent_push (&writer);
11240         mono_json_writer_indent (&writer);
11241         mono_json_writer_object_key(&writer, "plt");
11242         mono_json_writer_array_begin (&writer);
11243
11244         for (i = 0; i < acfg->plt_offset; ++i) {
11245                 MonoPltEntry *plt_entry = NULL;
11246                 MonoJumpInfo *ji;
11247
11248                 if (i == 0)
11249                         /* 
11250                          * The first plt entry is unused.
11251                          */
11252                         continue;
11253
11254                 plt_entry = g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
11255                 ji = plt_entry->ji;
11256
11257                 mono_json_writer_indent (&writer);
11258                 mono_json_writer_printf (&writer, "{ ");
11259                 mono_json_writer_object_key(&writer, "symbol");
11260                 mono_json_writer_printf (&writer, "\"%s\" },\n", plt_entry->symbol);
11261         }
11262
11263         mono_json_writer_indent_pop (&writer);
11264         mono_json_writer_indent (&writer);
11265         mono_json_writer_array_end (&writer);
11266         mono_json_writer_printf (&writer, ",\n");
11267 #endif
11268
11269         // GOT entries
11270 #ifdef DUMP_GOT
11271         mono_json_writer_indent_push (&writer);
11272         mono_json_writer_indent (&writer);
11273         mono_json_writer_object_key(&writer, "got");
11274         mono_json_writer_array_begin (&writer);
11275
11276         mono_json_writer_indent_push (&writer);
11277         for (i = 0; i < acfg->got_info.got_patches->len; ++i) {
11278                 MonoJumpInfo *ji = g_ptr_array_index (acfg->got_info.got_patches, i);
11279
11280                 mono_json_writer_indent (&writer);
11281                 mono_json_writer_printf (&writer, "{ ");
11282                 mono_json_writer_object_key(&writer, "patch_name");
11283                 mono_json_writer_printf (&writer, "\"%s\" },\n", get_patch_name (ji->type));
11284         }
11285
11286         mono_json_writer_indent_pop (&writer);
11287         mono_json_writer_indent (&writer);
11288         mono_json_writer_array_end (&writer);
11289         mono_json_writer_printf (&writer, ",\n");
11290 #endif
11291
11292         mono_json_writer_indent_pop (&writer);
11293         mono_json_writer_indent (&writer);
11294         mono_json_writer_object_end (&writer);
11295
11296         dumpname = g_strdup_printf ("%s.json", g_path_get_basename (acfg->image->name));
11297         dumpfile = fopen (dumpname, "w+");
11298         g_free (dumpname);
11299
11300         fprintf (dumpfile, "%s", writer.text->str);
11301         fclose (dumpfile);
11302
11303         mono_json_writer_destroy (&writer);
11304 }
11305
11306 static const char *preinited_jit_icalls[] = {
11307         "mono_aot_init_llvm_method",
11308         "mono_aot_init_gshared_method_this",
11309         "mono_aot_init_gshared_method_mrgctx",
11310         "mono_aot_init_gshared_method_vtable",
11311         "mono_llvm_throw_corlib_exception",
11312         "mono_init_vtable_slot",
11313         "mono_helper_ldstr_mscorlib"
11314 };
11315
11316 static void
11317 add_preinit_got_slots (MonoAotCompile *acfg)
11318 {
11319         MonoJumpInfo *ji;
11320         int i;
11321
11322         /*
11323          * Allocate the first few GOT entries to information which is needed frequently, or it is needed
11324          * during method initialization etc.
11325          */
11326
11327         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11328         ji->type = MONO_PATCH_INFO_IMAGE;
11329         ji->data.image = acfg->image;
11330         get_got_offset (acfg, FALSE, ji);
11331         get_got_offset (acfg, TRUE, ji);
11332
11333         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11334         ji->type = MONO_PATCH_INFO_MSCORLIB_GOT_ADDR;
11335         get_got_offset (acfg, FALSE, ji);
11336         get_got_offset (acfg, TRUE, ji);
11337
11338         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11339         ji->type = MONO_PATCH_INFO_GC_CARD_TABLE_ADDR;
11340         get_got_offset (acfg, FALSE, ji);
11341         get_got_offset (acfg, TRUE, ji);
11342
11343         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11344         ji->type = MONO_PATCH_INFO_GC_NURSERY_START;
11345         get_got_offset (acfg, FALSE, ji);
11346         get_got_offset (acfg, TRUE, ji);
11347
11348         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11349         ji->type = MONO_PATCH_INFO_AOT_MODULE;
11350         get_got_offset (acfg, FALSE, ji);
11351         get_got_offset (acfg, TRUE, ji);
11352
11353         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11354         ji->type = MONO_PATCH_INFO_GC_NURSERY_BITS;
11355         get_got_offset (acfg, FALSE, ji);
11356         get_got_offset (acfg, TRUE, ji);
11357
11358         for (i = 0; i < TLS_KEY_NUM; i++) {
11359                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11360                 ji->type = MONO_PATCH_INFO_GET_TLS_TRAMP;
11361                 ji->data.index = i;
11362                 get_got_offset (acfg, FALSE, ji);
11363                 get_got_offset (acfg, TRUE, ji);
11364
11365                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11366                 ji->type = MONO_PATCH_INFO_SET_TLS_TRAMP;
11367                 ji->data.index = i;
11368                 get_got_offset (acfg, FALSE, ji);
11369                 get_got_offset (acfg, TRUE, ji);
11370         }
11371
11372         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11373         ji->type = MONO_PATCH_INFO_JIT_THREAD_ATTACH;
11374         get_got_offset (acfg, FALSE, ji);
11375         get_got_offset (acfg, TRUE, ji);
11376
11377         /* Called by native-to-managed wrappers on possibly unattached threads */
11378         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11379         ji->type = MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL;
11380         ji->data.name = "mono_threads_attach_coop";
11381         get_got_offset (acfg, FALSE, ji);
11382         get_got_offset (acfg, TRUE, ji);
11383
11384         for (i = 0; i < sizeof (preinited_jit_icalls) / sizeof (char*); ++i) {
11385                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoAotCompile));
11386                 ji->type = MONO_PATCH_INFO_INTERNAL_METHOD;
11387                 ji->data.name = preinited_jit_icalls [i];
11388                 get_got_offset (acfg, FALSE, ji);
11389                 get_got_offset (acfg, TRUE, ji);
11390         }
11391
11392         acfg->nshared_got_entries = acfg->got_offset;
11393 }
11394
11395 int
11396 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11397 {
11398         MonoImage *image = ass->image;
11399         int i, res;
11400         gint64 all_sizes;
11401         MonoAotCompile *acfg;
11402         char *outfile_name, *tmp_outfile_name, *p;
11403         char llvm_stats_msg [256];
11404         TV_DECLARE (atv);
11405         TV_DECLARE (btv);
11406
11407         acfg = acfg_create (ass, opts);
11408
11409         memset (&acfg->aot_opts, 0, sizeof (acfg->aot_opts));
11410         acfg->aot_opts.write_symbols = TRUE;
11411         acfg->aot_opts.ntrampolines = 4096;
11412         acfg->aot_opts.nrgctx_trampolines = 4096;
11413         acfg->aot_opts.nimt_trampolines = 512;
11414         acfg->aot_opts.nrgctx_fetch_trampolines = 128;
11415         acfg->aot_opts.ngsharedvt_arg_trampolines = 512;
11416         acfg->aot_opts.llvm_path = g_strdup ("");
11417         acfg->aot_opts.temp_path = g_strdup ("");
11418 #ifdef MONOTOUCH
11419         acfg->aot_opts.use_trampolines_page = TRUE;
11420 #endif
11421
11422         mono_aot_parse_options (aot_options, &acfg->aot_opts);
11423
11424         if (acfg->aot_opts.logfile) {
11425                 acfg->logfile = fopen (acfg->aot_opts.logfile, "a+");
11426         }
11427
11428         if (acfg->aot_opts.data_outfile) {
11429                 acfg->data_outfile = fopen (acfg->aot_opts.data_outfile, "w+");
11430                 if (!acfg->data_outfile) {
11431                         aot_printerrf (acfg, "Unable to create file '%s': %s\n", acfg->aot_opts.data_outfile, strerror (errno));
11432                         return 1;
11433                 }
11434                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SEPARATE_DATA);
11435         }
11436
11437         //acfg->aot_opts.print_skipped_methods = TRUE;
11438
11439 #if !defined(MONO_ARCH_GSHAREDVT_SUPPORTED)
11440         if (acfg->opts & MONO_OPT_GSHAREDVT) {
11441                 aot_printerrf (acfg, "-O=gsharedvt not supported on this platform.\n");
11442                 return 1;
11443         }
11444         if (acfg->aot_opts.llvm_only) {
11445                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime that supports gsharedvt.\n");
11446                 return 1;
11447         }
11448 #else
11449         if (acfg->aot_opts.llvm_only || mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11450                 acfg->opts |= MONO_OPT_GSHAREDVT;
11451 #endif
11452
11453 #if !defined(ENABLE_LLVM)
11454         if (acfg->aot_opts.llvm_only) {
11455                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime compiled with llvm support.\n");
11456                 return 1;
11457         }
11458 #endif
11459
11460         if (acfg->opts & MONO_OPT_GSHAREDVT)
11461                 mono_set_generic_sharing_vt_supported (TRUE);
11462
11463         aot_printf (acfg, "Mono Ahead of Time compiler - compiling assembly %s\n", image->name);
11464
11465         generate_aotid ((guint8*) &acfg->image->aotid);
11466
11467         char *aotid = mono_guid_to_string (acfg->image->aotid);
11468         aot_printf (acfg, "AOTID %s\n", aotid);
11469         g_free (aotid);
11470
11471 #ifndef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
11472         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11473                 aot_printerrf (acfg, "--aot=full is not supported on this platform.\n");
11474                 return 1;
11475         }
11476 #endif
11477
11478         if (acfg->aot_opts.direct_pinvoke && !acfg->aot_opts.static_link) {
11479                 aot_printerrf (acfg, "The 'direct-pinvoke' AOT option also requires the 'static' AOT option.\n");
11480                 return 1;
11481         }
11482
11483         if (acfg->aot_opts.static_link)
11484                 acfg->aot_opts.asm_writer = TRUE;
11485
11486         if (acfg->aot_opts.soft_debug) {
11487                 MonoDebugOptions *opt = mini_get_debug_options ();
11488
11489                 opt->mdb_optimizations = TRUE;
11490                 opt->gen_sdb_seq_points = TRUE;
11491
11492                 if (!mono_debug_enabled ()) {
11493                         aot_printerrf (acfg, "The soft-debug AOT option requires the --debug option.\n");
11494                         return 1;
11495                 }
11496                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_DEBUG);
11497         }
11498
11499         if (mono_use_llvm || acfg->aot_opts.llvm) {
11500                 acfg->llvm = TRUE;
11501                 acfg->aot_opts.asm_writer = TRUE;
11502                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_WITH_LLVM);
11503
11504                 if (acfg->aot_opts.soft_debug) {
11505                         aot_printerrf (acfg, "The 'soft-debug' option is not supported when compiling with LLVM.\n");
11506                         return 1;
11507                 }
11508
11509                 mini_llvm_init ();
11510
11511                 if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_outfile) {
11512                         aot_printerrf (acfg, "Compiling with LLVM and the asm-only option requires the llvm-outfile= option.\n");
11513                         return 1;
11514                 }
11515         }
11516
11517         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11518                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_FULL_AOT);
11519                 acfg->is_full_aot = TRUE;
11520         }
11521
11522         if (mono_threads_is_coop_enabled ())
11523                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SAFEPOINTS);
11524
11525         if (acfg->aot_opts.instances_logfile_path) {
11526                 acfg->instances_logfile = fopen (acfg->aot_opts.instances_logfile_path, "w");
11527                 if (!acfg->instances_logfile) {
11528                         aot_printerrf (acfg, "Unable to create logfile: '%s'.\n", acfg->aot_opts.instances_logfile_path);
11529                         return 1;
11530                 }
11531         }
11532
11533         if (acfg->aot_opts.profile_files) {
11534                 GList *l;
11535
11536                 for (l = acfg->aot_opts.profile_files; l; l = l->next) {
11537                         load_profile_file (acfg, (char*)l->data);
11538                 }
11539         }
11540
11541         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11542                 int method_index;
11543
11544        for (method_index = 0; method_index < acfg->image->tables [MONO_TABLE_METHOD].rows; ++method_index) {
11545                    g_ptr_array_add (acfg->method_order,GUINT_TO_POINTER (method_index));
11546        }
11547         }
11548
11549         acfg->num_trampolines [MONO_AOT_TRAMP_SPECIFIC] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ntrampolines : 0;
11550 #ifdef MONO_ARCH_GSHARED_SUPPORTED
11551         acfg->num_trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nrgctx_trampolines : 0;
11552 #endif
11553         acfg->num_trampolines [MONO_AOT_TRAMP_IMT] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nimt_trampolines : 0;
11554 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
11555         if (acfg->opts & MONO_OPT_GSHAREDVT)
11556                 acfg->num_trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ngsharedvt_arg_trampolines : 0;
11557 #endif
11558
11559         acfg->temp_prefix = mono_img_writer_get_temp_label_prefix (NULL);
11560
11561         arch_init (acfg);
11562
11563         if (mono_use_llvm || acfg->aot_opts.llvm) {
11564
11565                 /*
11566                  * Emit all LLVM code into a separate assembly/object file and link with it
11567                  * normally.
11568                  */
11569                 if (!acfg->aot_opts.asm_only && acfg->llvm_owriter_supported) {
11570                         acfg->llvm_owriter = TRUE;
11571                 } else if (acfg->aot_opts.llvm_outfile) {
11572                         int len = strlen (acfg->aot_opts.llvm_outfile);
11573
11574                         if (len >= 2 && acfg->aot_opts.llvm_outfile [len - 2] == '.' && acfg->aot_opts.llvm_outfile [len - 1] == 'o')
11575                                 acfg->llvm_owriter = TRUE;
11576                 }
11577         }
11578
11579         if (acfg->llvm && acfg->thumb_mixed)
11580                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_THUMB);
11581         if (acfg->aot_opts.llvm_only)
11582                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_ONLY);
11583
11584         acfg->assembly_name_sym = g_strdup (acfg->image->assembly->aname.name);
11585         /* Get rid of characters which cannot occur in symbols */
11586         for (p = acfg->assembly_name_sym; *p; ++p) {
11587                 if (!(isalnum (*p) || *p == '_'))
11588                         *p = '_';
11589         }
11590
11591         acfg->global_prefix = g_strdup_printf ("mono_aot_%s", acfg->assembly_name_sym);
11592         acfg->plt_symbol = g_strdup_printf ("%s_plt", acfg->global_prefix);
11593         acfg->got_symbol = g_strdup_printf ("%s_got", acfg->global_prefix);
11594         if (acfg->llvm) {
11595                 acfg->llvm_got_symbol = g_strdup_printf ("%s_llvm_got", acfg->global_prefix);
11596                 acfg->llvm_eh_frame_symbol = g_strdup_printf ("%s_eh_frame", acfg->global_prefix);
11597         }
11598
11599         acfg->method_index = 1;
11600
11601         if (mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11602                 mono_set_partial_sharing_supported (TRUE);
11603
11604         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11605                 res = collect_methods (acfg);
11606
11607                 if (!res)
11608                         return 1;
11609         }
11610
11611         {
11612                 GList *l;
11613
11614                 for (l = acfg->profile_data; l; l = l->next)
11615                         resolve_profile_data (acfg, (ProfileData*)l->data);
11616                 for (l = acfg->profile_data; l; l = l->next)
11617                         add_profile_instances (acfg, (ProfileData*)l->data);
11618         }
11619
11620         acfg->cfgs_size = acfg->methods->len + 32;
11621         acfg->cfgs = g_new0 (MonoCompile*, acfg->cfgs_size);
11622
11623         /* PLT offset 0 is reserved for the PLT trampoline */
11624         acfg->plt_offset = 1;
11625         add_preinit_got_slots (acfg);
11626
11627 #ifdef ENABLE_LLVM
11628         if (acfg->llvm) {
11629                 llvm_acfg = acfg;
11630                 mono_llvm_create_aot_module (acfg->image->assembly, acfg->global_prefix, TRUE, acfg->aot_opts.static_link, acfg->aot_opts.llvm_only);
11631         }
11632 #endif
11633
11634         if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
11635                 MonoMethod *wrapper;
11636                 MonoMethodSignature *sig;
11637
11638                 /* object object:interp_in_static (object,intptr,intptr,intptr) */
11639                 sig = mono_create_icall_signature ("object object ptr ptr ptr");
11640                 wrapper = mini_get_interp_in_wrapper (sig);
11641                 add_method (acfg, wrapper);
11642
11643                 /* int object:interp_in_static (intptr,int,intptr) */
11644                 sig = mono_create_icall_signature ("int32 ptr int32 ptr");
11645                 wrapper = mini_get_interp_in_wrapper (sig);
11646                 add_method (acfg, wrapper);
11647
11648                 /* void object:interp_in_static (object,intptr,intptr,intptr) */
11649                 sig = mono_create_icall_signature ("void object ptr ptr ptr");
11650                 wrapper = mini_get_interp_in_wrapper (sig);
11651                 add_method (acfg, wrapper);
11652         }
11653
11654         TV_GETTIME (atv);
11655
11656         compile_methods (acfg);
11657
11658         TV_GETTIME (btv);
11659
11660         acfg->stats.jit_time = TV_ELAPSED (atv, btv);
11661
11662         TV_GETTIME (atv);
11663
11664 #ifdef ENABLE_LLVM
11665         if (acfg->llvm) {
11666                 if (acfg->aot_opts.asm_only) {
11667                         if (acfg->aot_opts.outfile) {
11668                                 acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11669                                 acfg->tmpbasename = g_strdup (acfg->tmpfname);
11670                         } else {
11671                                 acfg->tmpbasename = g_strdup_printf ("%s", acfg->image->name);
11672                                 acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11673                         }
11674                         g_assert (acfg->aot_opts.llvm_outfile);
11675                         acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11676                         if (acfg->llvm_owriter)
11677                                 acfg->llvm_ofile = g_strdup (acfg->aot_opts.llvm_outfile);
11678                         else
11679                                 acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11680                 } else {
11681                         acfg->tmpbasename = (strcmp (acfg->aot_opts.temp_path, "") == 0) ?
11682                                 g_strdup_printf ("%s", "temp") :
11683                                 g_build_filename (acfg->aot_opts.temp_path, "temp", NULL);
11684                                 
11685                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11686                         acfg->llvm_sfile = g_strdup_printf ("%s-llvm.s", acfg->tmpbasename);
11687                         acfg->llvm_ofile = g_strdup_printf ("%s-llvm.o", acfg->tmpbasename);
11688                 }
11689         }
11690 #endif
11691
11692         if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_only) {
11693                 if (acfg->aot_opts.outfile)
11694                         acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11695                 else
11696                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->image->name);
11697                 acfg->fp = fopen (acfg->tmpfname, "w+");
11698         } else {
11699                 if (strcmp (acfg->aot_opts.temp_path, "") == 0) {
11700                         int i = g_file_open_tmp ("mono_aot_XXXXXX", &acfg->tmpfname, NULL);
11701                         acfg->fp = fdopen (i, "w+");
11702                 } else {
11703                         acfg->tmpbasename = g_build_filename (acfg->aot_opts.temp_path, "temp", NULL);
11704                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11705                         acfg->fp = fopen (acfg->tmpfname, "w+");
11706                 }
11707         }
11708         if (acfg->fp == 0 && !acfg->aot_opts.llvm_only) {
11709                 aot_printerrf (acfg, "Unable to open file '%s': %s\n", acfg->tmpfname, strerror (errno));
11710                 return 1;
11711         }
11712         if (acfg->fp)
11713                 acfg->w = mono_img_writer_create (acfg->fp, FALSE);
11714
11715         tmp_outfile_name = NULL;
11716         outfile_name = NULL;
11717
11718         /* Compute symbols for methods */
11719         for (i = 0; i < acfg->nmethods; ++i) {
11720                 if (acfg->cfgs [i]) {
11721                         MonoCompile *cfg = acfg->cfgs [i];
11722                         int method_index = get_method_index (acfg, cfg->orig_method);
11723
11724                         if (COMPILE_LLVM (cfg))
11725                                 cfg->asm_symbol = g_strdup_printf ("%s%s", acfg->llvm_label_prefix, cfg->llvm_method_name);
11726                         else if (acfg->global_symbols || acfg->llvm)
11727                                 cfg->asm_symbol = get_debug_sym (cfg->orig_method, "", acfg->method_label_hash);
11728                         else
11729                                 cfg->asm_symbol = g_strdup_printf ("%s%sm_%x", acfg->temp_prefix, acfg->llvm_label_prefix, method_index);
11730                         cfg->asm_debug_symbol = cfg->asm_symbol;
11731                 }
11732         }
11733
11734         if (acfg->aot_opts.dwarf_debug && acfg->aot_opts.gnu_asm) {
11735                 /*
11736                  * CLANG supports GAS .file/.loc directives, so emit line number information this way
11737                  */
11738                 acfg->gas_line_numbers = TRUE;
11739         }
11740
11741 #ifdef EMIT_DWARF_INFO
11742         if ((!acfg->aot_opts.nodebug || acfg->aot_opts.dwarf_debug) && acfg->has_jitted_code) {
11743                 if (acfg->aot_opts.dwarf_debug && !mono_debug_enabled ()) {
11744                         aot_printerrf (acfg, "The dwarf AOT option requires the --debug option.\n");
11745                         return 1;
11746                 }
11747                 acfg->dwarf = mono_dwarf_writer_create (acfg->w, NULL, 0, !acfg->gas_line_numbers);
11748         }
11749 #endif /* EMIT_DWARF_INFO */
11750
11751         if (acfg->w)
11752                 mono_img_writer_emit_start (acfg->w);
11753
11754         if (acfg->dwarf)
11755                 mono_dwarf_writer_emit_base_info (acfg->dwarf, g_path_get_basename (acfg->image->name), mono_unwind_get_cie_program ());
11756
11757         emit_code (acfg);
11758
11759         emit_info (acfg);
11760
11761         emit_extra_methods (acfg);
11762
11763         emit_trampolines (acfg);
11764
11765         emit_class_name_table (acfg);
11766
11767         emit_got_info (acfg, FALSE);
11768         if (acfg->llvm)
11769                 emit_got_info (acfg, TRUE);
11770
11771         emit_exception_info (acfg);
11772
11773         emit_unwind_info (acfg);
11774
11775         emit_class_info (acfg);
11776
11777         emit_plt (acfg);
11778
11779         emit_image_table (acfg);
11780
11781         emit_got (acfg);
11782
11783         {
11784                 /*
11785                  * The managed allocators are GC specific, so can't use an AOT image created by one GC
11786                  * in another.
11787                  */
11788                 const char *gc_name = mono_gc_get_gc_name ();
11789                 acfg->gc_name_offset = add_to_blob (acfg, (guint8*)gc_name, strlen (gc_name) + 1);
11790         }
11791
11792         emit_blob (acfg);
11793
11794         emit_objc_selectors (acfg);
11795
11796         emit_globals (acfg);
11797
11798         emit_file_info (acfg);
11799
11800         emit_library_info (acfg);
11801
11802         if (acfg->dwarf) {
11803                 emit_dwarf_info (acfg);
11804                 mono_dwarf_writer_close (acfg->dwarf);
11805         }
11806
11807         emit_mem_end (acfg);
11808
11809         if (acfg->need_pt_gnu_stack) {
11810                 /* This is required so the .so doesn't have an executable stack */
11811                 /* The bin writer already emits this */
11812                 fprintf (acfg->fp, "\n.section  .note.GNU-stack,\"\",@progbits\n");
11813         }
11814
11815         if (acfg->aot_opts.data_outfile)
11816                 fclose (acfg->data_outfile);
11817
11818 #ifdef ENABLE_LLVM
11819         if (acfg->llvm) {
11820                 gboolean res;
11821
11822                 res = emit_llvm_file (acfg);
11823                 if (!res)
11824                         return 1;
11825         }
11826 #endif
11827
11828         TV_GETTIME (btv);
11829
11830         acfg->stats.gen_time = TV_ELAPSED (atv, btv);
11831
11832         if (acfg->llvm)
11833                 sprintf (llvm_stats_msg, ", LLVM: %d (%d%%)", acfg->stats.llvm_count, acfg->stats.mcount ? (acfg->stats.llvm_count * 100) / acfg->stats.mcount : 100);
11834         else
11835                 strcpy (llvm_stats_msg, "");
11836
11837         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;
11838
11839         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",
11840                                 (int)acfg->stats.code_size, (int)(acfg->stats.code_size * 100 / all_sizes),
11841                                 (int)acfg->stats.info_size, (int)(acfg->stats.info_size * 100 / all_sizes),
11842                                 (int)acfg->stats.ex_info_size, (int)(acfg->stats.ex_info_size * 100 / all_sizes),
11843                                 (int)acfg->stats.unwind_info_size, (int)(acfg->stats.unwind_info_size * 100 / all_sizes),
11844                                 (int)acfg->stats.class_info_size, (int)(acfg->stats.class_info_size * 100 / all_sizes),
11845                                 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,
11846                                 (int)acfg->stats.got_info_size, (int)(acfg->stats.got_info_size * 100 / all_sizes),
11847                                 (int)acfg->stats.offsets_size, (int)(acfg->stats.offsets_size * 100 / all_sizes),
11848                         (int)(acfg->got_offset * sizeof (gpointer)));
11849         aot_printf (acfg, "Compiled: %d/%d (%d%%)%s, No GOT slots: %d (%d%%), Direct calls: %d (%d%%)\n", 
11850                         acfg->stats.ccount, acfg->stats.mcount, acfg->stats.mcount ? (acfg->stats.ccount * 100) / acfg->stats.mcount : 100,
11851                         llvm_stats_msg,
11852                         acfg->stats.methods_without_got_slots, acfg->stats.mcount ? (acfg->stats.methods_without_got_slots * 100) / acfg->stats.mcount : 100,
11853                         acfg->stats.direct_calls, acfg->stats.all_calls ? (acfg->stats.direct_calls * 100) / acfg->stats.all_calls : 100);
11854         if (acfg->stats.genericcount)
11855                 aot_printf (acfg, "%d methods are generic (%d%%)\n", acfg->stats.genericcount, acfg->stats.mcount ? (acfg->stats.genericcount * 100) / acfg->stats.mcount : 100);
11856         if (acfg->stats.abscount)
11857                 aot_printf (acfg, "%d methods contain absolute addresses (%d%%)\n", acfg->stats.abscount, acfg->stats.mcount ? (acfg->stats.abscount * 100) / acfg->stats.mcount : 100);
11858         if (acfg->stats.lmfcount)
11859                 aot_printf (acfg, "%d methods contain lmf pointers (%d%%)\n", acfg->stats.lmfcount, acfg->stats.mcount ? (acfg->stats.lmfcount * 100) / acfg->stats.mcount : 100);
11860         if (acfg->stats.ocount)
11861                 aot_printf (acfg, "%d methods have other problems (%d%%)\n", acfg->stats.ocount, acfg->stats.mcount ? (acfg->stats.ocount * 100) / acfg->stats.mcount : 100);
11862
11863         TV_GETTIME (atv);
11864         if (acfg->w) {
11865                 res = mono_img_writer_emit_writeout (acfg->w);
11866                 if (res != 0) {
11867                         acfg_free (acfg);
11868                         return res;
11869                 }
11870                 res = compile_asm (acfg);
11871                 if (res != 0) {
11872                         acfg_free (acfg);
11873                         return res;
11874                 }
11875         }
11876         TV_GETTIME (btv);
11877         acfg->stats.link_time = TV_ELAPSED (atv, btv);
11878
11879         if (acfg->aot_opts.stats) {
11880                 int i;
11881
11882                 aot_printf (acfg, "GOT slot distribution:\n");
11883                 for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11884                         if (acfg->stats.got_slot_types [i])
11885                                 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]);
11886                 aot_printf (acfg, "\nMethod stats:\n");
11887                 aot_printf (acfg, "\tNormal:    %d\n", acfg->stats.method_categories [METHOD_CAT_NORMAL]);
11888                 aot_printf (acfg, "\tInstance:  %d\n", acfg->stats.method_categories [METHOD_CAT_INST]);
11889                 aot_printf (acfg, "\tGSharedvt: %d\n", acfg->stats.method_categories [METHOD_CAT_GSHAREDVT]);
11890                 aot_printf (acfg, "\tWrapper:   %d\n", acfg->stats.method_categories [METHOD_CAT_WRAPPER]);
11891         }
11892
11893         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);
11894
11895         if (acfg->aot_opts.dump_json)
11896                 aot_dump (acfg);
11897
11898         acfg_free (acfg);
11899         
11900         return 0;
11901 }
11902
11903 #else
11904
11905 /* AOT disabled */
11906
11907 void*
11908 mono_aot_readonly_field_override (MonoClassField *field)
11909 {
11910         return NULL;
11911 }
11912
11913 int
11914 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11915 {
11916         return 0;
11917 }
11918
11919 gboolean
11920 mono_aot_is_shared_got_offset (int offset)
11921 {
11922         return FALSE;
11923 }
11924
11925 #endif