Merge pull request #4967 from kumpera/profiler-arg-cleanup
[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                 guint32 len = strlen (patch_info->data.name);
5756
5757                 encode_value (len, p, &p);
5758
5759                 memcpy (p, patch_info->data.name, len);
5760                 p += len;
5761                 *p++ = '\0';
5762                 break;
5763         }
5764         case MONO_PATCH_INFO_LDSTR: {
5765                 guint32 image_index = get_image_index (acfg, patch_info->data.token->image);
5766                 guint32 token = patch_info->data.token->token;
5767                 g_assert (mono_metadata_token_code (token) == MONO_TOKEN_STRING);
5768                 encode_value (image_index, p, &p);
5769                 encode_value (patch_info->data.token->token - MONO_TOKEN_STRING, p, &p);
5770                 break;
5771         }
5772         case MONO_PATCH_INFO_RVA:
5773         case MONO_PATCH_INFO_DECLSEC:
5774         case MONO_PATCH_INFO_LDTOKEN:
5775         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
5776                 encode_value (get_image_index (acfg, patch_info->data.token->image), p, &p);
5777                 encode_value (patch_info->data.token->token, p, &p);
5778                 encode_value (patch_info->data.token->has_context, p, &p);
5779                 if (patch_info->data.token->has_context)
5780                         encode_generic_context (acfg, &patch_info->data.token->context, p, &p);
5781                 break;
5782         case MONO_PATCH_INFO_EXC_NAME: {
5783                 MonoClass *ex_class;
5784
5785                 ex_class =
5786                         mono_class_load_from_name (mono_defaults.exception_class->image,
5787                                                                   "System", (const char *)patch_info->data.target);
5788                 encode_klass_ref (acfg, ex_class, p, &p);
5789                 break;
5790         }
5791         case MONO_PATCH_INFO_R4:
5792                 encode_value (*((guint32 *)patch_info->data.target), p, &p);
5793                 break;
5794         case MONO_PATCH_INFO_R8:
5795                 encode_value (((guint32 *)patch_info->data.target) [MINI_LS_WORD_IDX], p, &p);
5796                 encode_value (((guint32 *)patch_info->data.target) [MINI_MS_WORD_IDX], p, &p);
5797                 break;
5798         case MONO_PATCH_INFO_VTABLE:
5799         case MONO_PATCH_INFO_CLASS:
5800         case MONO_PATCH_INFO_IID:
5801         case MONO_PATCH_INFO_ADJUSTED_IID:
5802                 encode_klass_ref (acfg, patch_info->data.klass, p, &p);
5803                 break;
5804         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
5805                 encode_klass_ref (acfg, patch_info->data.del_tramp->klass, p, &p);
5806                 if (patch_info->data.del_tramp->method) {
5807                         encode_value (1, p, &p);
5808                         encode_method_ref (acfg, patch_info->data.del_tramp->method, p, &p);
5809                 } else {
5810                         encode_value (0, p, &p);
5811                 }
5812                 encode_value (patch_info->data.del_tramp->is_virtual, p, &p);
5813                 break;
5814         case MONO_PATCH_INFO_FIELD:
5815         case MONO_PATCH_INFO_SFLDA:
5816                 encode_field_info (acfg, patch_info->data.field, p, &p);
5817                 break;
5818         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
5819                 break;
5820         case MONO_PATCH_INFO_RGCTX_FETCH:
5821         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
5822                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
5823                 guint32 offset;
5824                 guint8 *buf2, *p2;
5825
5826                 /* 
5827                  * entry->method has a lenghtly encoding and multiple rgctx_fetch entries
5828                  * reference the same method, so encode the method only once.
5829                  */
5830                 offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_blob_hash, entry->method));
5831                 if (!offset) {
5832                         buf2 = (guint8 *)g_malloc (1024);
5833                         p2 = buf2;
5834
5835                         encode_method_ref (acfg, entry->method, p2, &p2);
5836                         g_assert (p2 - buf2 < 1024);
5837
5838                         offset = add_to_blob (acfg, buf2, p2 - buf2);
5839                         g_free (buf2);
5840
5841                         g_hash_table_insert (acfg->method_blob_hash, entry->method, GUINT_TO_POINTER (offset + 1));
5842                 } else {
5843                         offset --;
5844                 }
5845
5846                 encode_value (offset, p, &p);
5847                 g_assert ((int)entry->info_type < 256);
5848                 g_assert (entry->data->type < 256);
5849                 encode_value ((entry->in_mrgctx ? 1 : 0) | (entry->info_type << 1) | (entry->data->type << 9), p, &p);
5850                 encode_patch (acfg, entry->data, p, &p);
5851                 break;
5852         }
5853         case MONO_PATCH_INFO_SEQ_POINT_INFO:
5854         case MONO_PATCH_INFO_AOT_MODULE:
5855                 break;
5856         case MONO_PATCH_INFO_SIGNATURE:
5857         case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
5858                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.target, p, &p);
5859                 break;
5860         case MONO_PATCH_INFO_GSHAREDVT_CALL:
5861                 encode_signature (acfg, (MonoMethodSignature*)patch_info->data.gsharedvt->sig, p, &p);
5862                 encode_method_ref (acfg, patch_info->data.gsharedvt->method, p, &p);
5863                 break;
5864         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
5865                 MonoGSharedVtMethodInfo *info = patch_info->data.gsharedvt_method;
5866                 int i;
5867
5868                 encode_method_ref (acfg, info->method, p, &p);
5869                 encode_value (info->num_entries, p, &p);
5870                 for (i = 0; i < info->num_entries; ++i) {
5871                         MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
5872
5873                         encode_value (template_->info_type, p, &p);
5874                         switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
5875                         case MONO_PATCH_INFO_CLASS:
5876                                 encode_klass_ref (acfg, mono_class_from_mono_type ((MonoType *)template_->data), p, &p);
5877                                 break;
5878                         case MONO_PATCH_INFO_FIELD:
5879                                 encode_field_info (acfg, (MonoClassField *)template_->data, p, &p);
5880                                 break;
5881                         default:
5882                                 g_assert_not_reached ();
5883                                 break;
5884                         }
5885                 }
5886                 break;
5887         }
5888         case MONO_PATCH_INFO_LDSTR_LIT: {
5889                 const char *s = (const char *)patch_info->data.target;
5890                 int len = strlen (s);
5891
5892                 encode_value (len, p, &p);
5893                 memcpy (p, s, len + 1);
5894                 p += len + 1;
5895                 break;
5896         }
5897         case MONO_PATCH_INFO_VIRT_METHOD:
5898                 encode_klass_ref (acfg, patch_info->data.virt_method->klass, p, &p);
5899                 encode_method_ref (acfg, patch_info->data.virt_method->method, p, &p);
5900                 break;
5901         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
5902         case MONO_PATCH_INFO_JIT_THREAD_ATTACH:
5903                 break;
5904         default:
5905                 g_warning ("unable to handle jump info %d", patch_info->type);
5906                 g_assert_not_reached ();
5907         }
5908
5909         *endbuf = p;
5910 }
5911
5912 static void
5913 encode_patch_list (MonoAotCompile *acfg, GPtrArray *patches, int n_patches, gboolean llvm, int first_got_offset, guint8 *buf, guint8 **endbuf)
5914 {
5915         guint8 *p = buf;
5916         guint32 pindex, offset;
5917         MonoJumpInfo *patch_info;
5918
5919         encode_value (n_patches, p, &p);
5920
5921         for (pindex = 0; pindex < patches->len; ++pindex) {
5922                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5923
5924                 if (patch_info->type == MONO_PATCH_INFO_NONE || patch_info->type == MONO_PATCH_INFO_BB)
5925                         /* Nothing to do */
5926                         continue;
5927
5928                 offset = get_got_offset (acfg, llvm, patch_info);
5929                 encode_value (offset, p, &p);
5930         }
5931
5932         *endbuf = p;
5933 }
5934
5935 static void
5936 emit_method_info (MonoAotCompile *acfg, MonoCompile *cfg)
5937 {
5938         MonoMethod *method;
5939         int pindex, buf_size, n_patches;
5940         GPtrArray *patches;
5941         MonoJumpInfo *patch_info;
5942         guint32 method_index;
5943         guint8 *p, *buf;
5944         guint32 first_got_offset;
5945
5946         method = cfg->orig_method;
5947
5948         method_index = get_method_index (acfg, method);
5949
5950         /* Sort relocations */
5951         patches = g_ptr_array_new ();
5952         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next)
5953                 g_ptr_array_add (patches, patch_info);
5954         g_ptr_array_sort (patches, compare_patches);
5955
5956         first_got_offset = acfg->cfgs [method_index]->got_offset;
5957
5958         /**********************/
5959         /* Encode method info */
5960         /**********************/
5961
5962         buf_size = (patches->len < 1000) ? 40960 : 40960 + (patches->len * 64);
5963         p = buf = (guint8 *)g_malloc (buf_size);
5964
5965         if (mono_class_get_cctor (method->klass)) {
5966                 encode_value (1, p, &p);
5967                 encode_klass_ref (acfg, method->klass, p, &p);
5968         } else {
5969                 /* Not needed when loading the method */
5970                 encode_value (0, p, &p);
5971         }
5972
5973         g_assert (!(cfg->opt & MONO_OPT_SHARED));
5974
5975         n_patches = 0;
5976         for (pindex = 0; pindex < patches->len; ++pindex) {
5977                 patch_info = (MonoJumpInfo *)g_ptr_array_index (patches, pindex);
5978                 
5979                 if ((patch_info->type == MONO_PATCH_INFO_GOT_OFFSET) ||
5980                         (patch_info->type == MONO_PATCH_INFO_NONE)) {
5981                         patch_info->type = MONO_PATCH_INFO_NONE;
5982                         /* Nothing to do */
5983                         continue;
5984                 }
5985
5986                 if ((patch_info->type == MONO_PATCH_INFO_IMAGE) && (patch_info->data.image == acfg->image)) {
5987                         /* Stored in a GOT slot initialized at module load time */
5988                         patch_info->type = MONO_PATCH_INFO_NONE;
5989                         continue;
5990                 }
5991
5992                 if (patch_info->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR ||
5993                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_START ||
5994                         patch_info->type == MONO_PATCH_INFO_GC_NURSERY_BITS ||
5995                         patch_info->type == MONO_PATCH_INFO_AOT_MODULE) {
5996                         /* Stored in a GOT slot initialized at module load time */
5997                         patch_info->type = MONO_PATCH_INFO_NONE;
5998                         continue;
5999                 }
6000
6001                 if (is_plt_patch (patch_info) && !(cfg->compile_llvm && acfg->aot_opts.llvm_only)) {
6002                         /* Calls are made through the PLT */
6003                         patch_info->type = MONO_PATCH_INFO_NONE;
6004                         continue;
6005                 }
6006
6007                 n_patches ++;
6008         }
6009
6010         if (n_patches)
6011                 g_assert (cfg->has_got_slots);
6012
6013         encode_patch_list (acfg, patches, n_patches, cfg->compile_llvm, first_got_offset, p, &p);
6014
6015         g_ptr_array_free (patches, TRUE);
6016
6017         acfg->stats.info_size += p - buf;
6018
6019         g_assert (p - buf < buf_size);
6020
6021         cfg->method_info_offset = add_to_blob (acfg, buf, p - buf);
6022         g_free (buf);
6023 }
6024
6025 static guint32
6026 get_unwind_info_offset (MonoAotCompile *acfg, guint8 *encoded, guint32 encoded_len)
6027 {
6028         guint32 cache_index;
6029         guint32 offset;
6030
6031         /* Reuse the unwind module to canonize and store unwind info entries */
6032         cache_index = mono_cache_unwind_info (encoded, encoded_len);
6033
6034         /* Use +/- 1 to distinguish 0s from missing entries */
6035         offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1)));
6036         if (offset)
6037                 return offset - 1;
6038         else {
6039                 guint8 buf [16];
6040                 guint8 *p;
6041
6042                 /* 
6043                  * It would be easier to use assembler symbols, but the caller needs an
6044                  * offset now.
6045                  */
6046                 offset = acfg->unwind_info_offset;
6047                 g_hash_table_insert (acfg->unwind_info_offsets, GUINT_TO_POINTER (cache_index + 1), GUINT_TO_POINTER (offset + 1));
6048                 g_ptr_array_add (acfg->unwind_ops, GUINT_TO_POINTER (cache_index));
6049
6050                 p = buf;
6051                 encode_value (encoded_len, p, &p);
6052
6053                 acfg->unwind_info_offset += encoded_len + (p - buf);
6054                 return offset;
6055         }
6056 }
6057
6058 static void
6059 emit_exception_debug_info (MonoAotCompile *acfg, MonoCompile *cfg, gboolean store_seq_points)
6060 {
6061         int i, k, buf_size;
6062         guint32 debug_info_size, seq_points_size;
6063         guint8 *code;
6064         MonoMethodHeader *header;
6065         guint8 *p, *buf, *debug_info;
6066         MonoJitInfo *jinfo = cfg->jit_info;
6067         guint32 flags;
6068         gboolean use_unwind_ops = FALSE;
6069         MonoSeqPointInfo *seq_points;
6070
6071         code = cfg->native_code;
6072         header = cfg->header;
6073
6074         if (!acfg->aot_opts.nodebug) {
6075                 mono_debug_serialize_debug_info (cfg, &debug_info, &debug_info_size);
6076         } else {
6077                 debug_info = NULL;
6078                 debug_info_size = 0;
6079         }
6080
6081         seq_points = cfg->seq_point_info;
6082         seq_points_size = (store_seq_points)? mono_seq_point_info_get_write_size (seq_points) : 0;
6083
6084         buf_size = header->num_clauses * 256 + debug_info_size + 2048 + seq_points_size + cfg->gc_map_size;
6085
6086         p = buf = (guint8 *)g_malloc (buf_size);
6087
6088         use_unwind_ops = cfg->unwind_ops != NULL;
6089
6090         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);
6091
6092         encode_value (flags, p, &p);
6093
6094         if (use_unwind_ops) {
6095                 guint32 encoded_len;
6096                 guint8 *encoded;
6097                 guint32 unwind_desc;
6098
6099                 encoded = mono_unwind_ops_encode (cfg->unwind_ops, &encoded_len);
6100
6101                 unwind_desc = get_unwind_info_offset (acfg, encoded, encoded_len);
6102                 encode_value (unwind_desc, p, &p);
6103
6104                 g_free (encoded);
6105         } else {
6106                 encode_value (jinfo->unwind_info, p, &p);
6107         }
6108
6109         /*Encode the number of holes before the number of clauses to make decoding easier*/
6110         if (jinfo->has_try_block_holes) {
6111                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6112                 encode_value (table->num_holes, p, &p);
6113         }
6114
6115         if (jinfo->has_arch_eh_info) {
6116                 /*
6117                  * In AOT mode, the code length is calculated from the address of the previous method,
6118                  * which could include alignment padding, so calculating the start of the epilog as
6119                  * code_len - epilog_size is correct any more. Save the real code len as a workaround.
6120                  */
6121                 encode_value (jinfo->code_size, p, &p);
6122         }
6123
6124         /* Exception table */
6125         if (cfg->compile_llvm) {
6126                 /*
6127                  * When using LLVM, we can't emit some data, like pc offsets, this reg/offset etc.,
6128                  * since the information is only available to llc. Instead, we let llc save the data
6129                  * into the LSDA, and read it from there at runtime.
6130                  */
6131                 /* The assembly might be CIL stripped so emit the data ourselves */
6132                 if (header->num_clauses)
6133                         encode_value (header->num_clauses, p, &p);
6134
6135                 for (k = 0; k < header->num_clauses; ++k) {
6136                         MonoExceptionClause *clause;
6137
6138                         clause = &header->clauses [k];
6139
6140                         encode_value (clause->flags, p, &p);
6141                         if (!(clause->flags == MONO_EXCEPTION_CLAUSE_FILTER || clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)) {
6142                                 if (clause->data.catch_class) {
6143                                         guint8 *buf2, *p2;
6144                                         int len;
6145
6146                                         buf2 = (guint8 *)g_malloc (4096);
6147                                         p2 = buf2;
6148                                         encode_klass_ref (acfg, clause->data.catch_class, p2, &p2);
6149                                         len = p2 - buf2;
6150                                         g_assert (len < 4096);
6151                                         encode_value (len, p, &p);
6152                                         memcpy (p, buf2, len);
6153                                         p += p2 - buf2;
6154                                         g_free (buf2);
6155                                 } else {
6156                                         encode_value (0, p, &p);
6157                                 }
6158                         }
6159
6160                         /* Emit the IL ranges too, since they might not be available at runtime */
6161                         encode_value (clause->try_offset, p, &p);
6162                         encode_value (clause->try_len, p, &p);
6163                         encode_value (clause->handler_offset, p, &p);
6164                         encode_value (clause->handler_len, p, &p);
6165
6166                         /* Emit a list of nesting clauses */
6167                         for (i = 0; i < header->num_clauses; ++i) {
6168                                 gint32 cindex1 = k;
6169                                 MonoExceptionClause *clause1 = &header->clauses [cindex1];
6170                                 gint32 cindex2 = i;
6171                                 MonoExceptionClause *clause2 = &header->clauses [cindex2];
6172
6173                                 if (cindex1 != cindex2 && clause1->try_offset >= clause2->try_offset && clause1->handler_offset <= clause2->handler_offset)
6174                                         encode_value (i, p, &p);
6175                         }
6176                         encode_value (-1, p, &p);
6177                 }
6178         } else {
6179                 if (jinfo->num_clauses)
6180                         encode_value (jinfo->num_clauses, p, &p);
6181
6182                 for (k = 0; k < jinfo->num_clauses; ++k) {
6183                         MonoJitExceptionInfo *ei = &jinfo->clauses [k];
6184
6185                         encode_value (ei->flags, p, &p);
6186 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
6187                         /* Not used for catch clauses */
6188                         if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
6189                                 encode_value (ei->exvar_offset, p, &p);
6190 #else
6191                         encode_value (ei->exvar_offset, p, &p);
6192 #endif
6193
6194                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
6195                                 encode_value ((gint)((guint8*)ei->data.filter - code), p, &p);
6196                         else {
6197                                 if (ei->data.catch_class) {
6198                                         guint8 *buf2, *p2;
6199                                         int len;
6200
6201                                         buf2 = (guint8 *)g_malloc (4096);
6202                                         p2 = buf2;
6203                                         encode_klass_ref (acfg, ei->data.catch_class, p2, &p2);
6204                                         len = p2 - buf2;
6205                                         g_assert (len < 4096);
6206                                         encode_value (len, p, &p);
6207                                         memcpy (p, buf2, len);
6208                                         p += p2 - buf2;
6209                                         g_free (buf2);
6210                                 } else {
6211                                         encode_value (0, p, &p);
6212                                 }
6213                         }
6214
6215                         encode_value ((gint)((guint8*)ei->try_start - code), p, &p);
6216                         encode_value ((gint)((guint8*)ei->try_end - code), p, &p);
6217                         encode_value ((gint)((guint8*)ei->handler_start - code), p, &p);
6218                 }
6219         }
6220
6221         if (jinfo->has_try_block_holes) {
6222                 MonoTryBlockHoleTableJitInfo *table = mono_jit_info_get_try_block_hole_table_info (jinfo);
6223                 for (i = 0; i < table->num_holes; ++i) {
6224                         MonoTryBlockHoleJitInfo *hole = &table->holes [i];
6225                         encode_value (hole->clause, p, &p);
6226                         encode_value (hole->length, p, &p);
6227                         encode_value (hole->offset, p, &p);
6228                 }
6229         }
6230
6231         if (jinfo->has_arch_eh_info) {
6232                 MonoArchEHJitInfo *eh_info;
6233
6234                 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
6235                 encode_value (eh_info->stack_size, p, &p);
6236                 encode_value (eh_info->epilog_size, p, &p);
6237         }
6238
6239         if (jinfo->has_generic_jit_info) {
6240                 MonoGenericJitInfo *gi = mono_jit_info_get_generic_jit_info (jinfo);
6241                 MonoGenericSharingContext* gsctx = gi->generic_sharing_context;
6242                 guint8 *buf2, *p2;
6243                 int len;
6244
6245                 encode_value (gi->nlocs, p, &p);
6246                 if (gi->nlocs) {
6247                         for (i = 0; i < gi->nlocs; ++i) {
6248                                 MonoDwarfLocListEntry *entry = &gi->locations [i];
6249
6250                                 encode_value (entry->is_reg ? 1 : 0, p, &p);
6251                                 encode_value (entry->reg, p, &p);
6252                                 if (!entry->is_reg)
6253                                         encode_value (entry->offset, p, &p);
6254                                 if (i == 0)
6255                                         g_assert (entry->from == 0);
6256                                 else
6257                                         encode_value (entry->from, p, &p);
6258                                 encode_value (entry->to, p, &p);
6259                         }
6260                 } else {
6261                         if (!cfg->compile_llvm) {
6262                                 encode_value (gi->has_this ? 1 : 0, p, &p);
6263                                 encode_value (gi->this_reg, p, &p);
6264                                 encode_value (gi->this_offset, p, &p);
6265                         }
6266                 }
6267
6268                 /* 
6269                  * Need to encode jinfo->method too, since it is not equal to 'method'
6270                  * when using generic sharing.
6271                  */
6272                 buf2 = (guint8 *)g_malloc (4096);
6273                 p2 = buf2;
6274                 encode_method_ref (acfg, jinfo->d.method, p2, &p2);
6275                 len = p2 - buf2;
6276                 g_assert (len < 4096);
6277                 encode_value (len, p, &p);
6278                 memcpy (p, buf2, len);
6279                 p += p2 - buf2;
6280                 g_free (buf2);
6281
6282                 if (gsctx && gsctx->is_gsharedvt) {
6283                         encode_value (1, p, &p);
6284                 } else {
6285                         encode_value (0, p, &p);
6286                 }
6287         }
6288
6289         if (seq_points_size)
6290                 p += mono_seq_point_info_write (seq_points, p);
6291
6292         g_assert (debug_info_size < buf_size);
6293
6294         encode_value (debug_info_size, p, &p);
6295         if (debug_info_size) {
6296                 memcpy (p, debug_info, debug_info_size);
6297                 p += debug_info_size;
6298                 g_free (debug_info);
6299         }
6300
6301         /* GC Map */
6302         if (cfg->gc_map) {
6303                 encode_value (cfg->gc_map_size, p, &p);
6304                 /* The GC map requires 4 bytes of alignment */
6305                 while ((gsize)p % 4)
6306                         p ++;
6307                 memcpy (p, cfg->gc_map, cfg->gc_map_size);
6308                 p += cfg->gc_map_size;
6309         }
6310
6311         acfg->stats.ex_info_size += p - buf;
6312
6313         g_assert (p - buf < buf_size);
6314
6315         /* Emit info */
6316         /* The GC Map requires 4 byte alignment */
6317         cfg->ex_info_offset = add_to_blob_aligned (acfg, buf, p - buf, cfg->gc_map ? 4 : 1);
6318         g_free (buf);
6319 }
6320
6321 static guint32
6322 emit_klass_info (MonoAotCompile *acfg, guint32 token)
6323 {
6324         MonoError error;
6325         MonoClass *klass = mono_class_get_checked (acfg->image, token, &error);
6326         guint8 *p, *buf;
6327         int i, buf_size, res;
6328         gboolean no_special_static, cant_encode;
6329         gpointer iter = NULL;
6330
6331         if (!klass) {
6332                 mono_error_cleanup (&error);
6333
6334                 buf_size = 16;
6335
6336                 p = buf = (guint8 *)g_malloc (buf_size);
6337
6338                 /* Mark as unusable */
6339                 encode_value (-1, p, &p);
6340
6341                 res = add_to_blob (acfg, buf, p - buf);
6342                 g_free (buf);
6343
6344                 return res;
6345         }
6346                 
6347         buf_size = 10240 + (klass->vtable_size * 16);
6348         p = buf = (guint8 *)g_malloc (buf_size);
6349
6350         g_assert (klass);
6351
6352         mono_class_init (klass);
6353
6354         mono_class_get_nested_types (klass, &iter);
6355         g_assert (klass->nested_classes_inited);
6356
6357         mono_class_setup_vtable (klass);
6358
6359         /* 
6360          * Emit all the information which is required for creating vtables so
6361          * the runtime does not need to create the MonoMethod structures which
6362          * take up a lot of space.
6363          */
6364
6365         no_special_static = !mono_class_has_special_static_fields (klass);
6366
6367         /* Check whenever we have enough info to encode the vtable */
6368         cant_encode = FALSE;
6369         for (i = 0; i < klass->vtable_size; ++i) {
6370                 MonoMethod *cm = klass->vtable [i];
6371
6372                 if (cm && mono_method_signature (cm)->is_inflated && !g_hash_table_lookup (acfg->token_info_hash, cm))
6373                         cant_encode = TRUE;
6374         }
6375
6376         mono_class_has_finalizer (klass);
6377         if (mono_class_has_failure (klass))
6378                 cant_encode = TRUE;
6379
6380         if (mono_class_is_gtd (klass) || cant_encode) {
6381                 encode_value (-1, p, &p);
6382         } else {
6383                 gboolean has_nested = mono_class_get_nested_classes_property (klass) != NULL;
6384                 encode_value (klass->vtable_size, p, &p);
6385                 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);
6386                 if (klass->has_cctor)
6387                         encode_method_ref (acfg, mono_class_get_cctor (klass), p, &p);
6388                 if (klass->has_finalize)
6389                         encode_method_ref (acfg, mono_class_get_finalizer (klass), p, &p);
6390  
6391                 encode_value (klass->instance_size, p, &p);
6392                 encode_value (mono_class_data_size (klass), p, &p);
6393                 encode_value (klass->packing_size, p, &p);
6394                 encode_value (klass->min_align, p, &p);
6395
6396                 for (i = 0; i < klass->vtable_size; ++i) {
6397                         MonoMethod *cm = klass->vtable [i];
6398
6399                         if (cm)
6400                                 encode_method_ref (acfg, cm, p, &p);
6401                         else
6402                                 encode_value (0, p, &p);
6403                 }
6404         }
6405
6406         acfg->stats.class_info_size += p - buf;
6407
6408         g_assert (p - buf < buf_size);
6409         res = add_to_blob (acfg, buf, p - buf);
6410         g_free (buf);
6411
6412         return res;
6413 }
6414
6415 static char*
6416 get_plt_entry_debug_sym (MonoAotCompile *acfg, MonoJumpInfo *ji, GHashTable *cache)
6417 {
6418         char *debug_sym = NULL;
6419         char *prefix;
6420
6421         if (acfg->llvm && llvm_acfg->aot_opts.static_link) {
6422                 /* Need to add a prefix to create unique symbols */
6423                 prefix = g_strdup_printf ("plt_%s_", acfg->assembly_name_sym);
6424         } else {
6425 #if defined(TARGET_WIN32) && defined(TARGET_X86)
6426                 prefix = mangle_symbol_alloc ("plt_");
6427 #else
6428                 prefix = g_strdup ("plt_");
6429 #endif
6430         }
6431
6432         switch (ji->type) {
6433         case MONO_PATCH_INFO_METHOD:
6434                 debug_sym = get_debug_sym (ji->data.method, prefix, cache);
6435                 break;
6436         case MONO_PATCH_INFO_INTERNAL_METHOD:
6437                 debug_sym = g_strdup_printf ("%s_jit_icall_%s", prefix, ji->data.name);
6438                 break;
6439         case MONO_PATCH_INFO_RGCTX_FETCH:
6440                 debug_sym = g_strdup_printf ("%s_rgctx_fetch_%d", prefix, acfg->label_generator ++);
6441                 break;
6442         case MONO_PATCH_INFO_ICALL_ADDR:
6443         case MONO_PATCH_INFO_ICALL_ADDR_CALL: {
6444                 char *s = get_debug_sym (ji->data.method, "", cache);
6445                 
6446                 debug_sym = g_strdup_printf ("%s_icall_native_%s", prefix, s);
6447                 g_free (s);
6448                 break;
6449         }
6450         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
6451                 debug_sym = g_strdup_printf ("%s_jit_icall_native_%s", prefix, ji->data.name);
6452                 break;
6453         default:
6454                 break;
6455         }
6456
6457         g_free (prefix);
6458
6459         return sanitize_symbol (acfg, debug_sym);
6460 }
6461
6462 /*
6463  * Calls made from AOTed code are routed through a table of jumps similar to the
6464  * ELF PLT (Program Linkage Table). Initially the PLT entries jump to code which transfers
6465  * control to the AOT runtime through a trampoline.
6466  */
6467 static void
6468 emit_plt (MonoAotCompile *acfg)
6469 {
6470         int i;
6471
6472         if (acfg->aot_opts.llvm_only) {
6473                 g_assert (acfg->plt_offset == 1);
6474                 return;
6475         }
6476
6477         emit_line (acfg);
6478
6479         emit_section_change (acfg, ".text", 0);
6480         emit_alignment_code (acfg, 16);
6481         emit_info_symbol (acfg, "plt");
6482         emit_label (acfg, acfg->plt_symbol);
6483
6484         for (i = 0; i < acfg->plt_offset; ++i) {
6485                 char *debug_sym = NULL;
6486                 MonoPltEntry *plt_entry = NULL;
6487
6488                 if (i == 0)
6489                         /* 
6490                          * The first plt entry is unused.
6491                          */
6492                         continue;
6493
6494                 plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6495
6496                 debug_sym = plt_entry->debug_sym;
6497
6498                 if (acfg->thumb_mixed && !plt_entry->jit_used)
6499                         /* Emit only a thumb version */
6500                         continue;
6501
6502                 /* Skip plt entries not actually called */
6503                 if (!plt_entry->jit_used && !plt_entry->llvm_used)
6504                         continue;
6505
6506                 if (acfg->llvm && !acfg->thumb_mixed) {
6507                         emit_label (acfg, plt_entry->llvm_symbol);
6508                         if (acfg->llvm) {
6509                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6510 #if defined(TARGET_MACH)
6511                                 fprintf (acfg->fp, ".private_extern %s\n", plt_entry->llvm_symbol);
6512 #endif
6513                         }
6514                 }
6515
6516                 if (debug_sym) {
6517                         if (acfg->need_no_dead_strip) {
6518                                 emit_unset_mode (acfg);
6519                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6520                         }
6521                         emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6522                         emit_label (acfg, debug_sym);
6523                 }
6524
6525                 emit_label (acfg, plt_entry->symbol);
6526
6527                 arch_emit_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6528
6529                 if (debug_sym)
6530                         emit_symbol_size (acfg, debug_sym, ".");
6531         }
6532
6533         if (acfg->thumb_mixed) {
6534                 /* Make sure the ARM symbols don't alias the thumb ones */
6535                 emit_zero_bytes (acfg, 16);
6536
6537                 /* 
6538                  * Emit a separate set of PLT entries using thumb2 which is called by LLVM generated
6539                  * code.
6540                  */
6541                 for (i = 0; i < acfg->plt_offset; ++i) {
6542                         char *debug_sym = NULL;
6543                         MonoPltEntry *plt_entry = NULL;
6544
6545                         if (i == 0)
6546                                 continue;
6547
6548                         plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
6549
6550                         /* Skip plt entries not actually called by LLVM code */
6551                         if (!plt_entry->llvm_used)
6552                                 continue;
6553
6554                         if (acfg->aot_opts.write_symbols) {
6555                                 if (plt_entry->debug_sym)
6556                                         debug_sym = g_strdup_printf ("%s_thumb", plt_entry->debug_sym);
6557                         }
6558
6559                         if (debug_sym) {
6560 #if defined(TARGET_MACH)
6561                                 fprintf (acfg->fp, "    .thumb_func %s\n", debug_sym);
6562                                 fprintf (acfg->fp, "    .no_dead_strip %s\n", debug_sym);
6563 #endif
6564                                 emit_local_symbol (acfg, debug_sym, NULL, TRUE);
6565                                 emit_label (acfg, debug_sym);
6566                         }
6567                         fprintf (acfg->fp, "\n.thumb_func\n");
6568
6569                         emit_label (acfg, plt_entry->llvm_symbol);
6570
6571                         if (acfg->llvm)
6572                                 emit_global_inner (acfg, plt_entry->llvm_symbol, TRUE);
6573
6574                         arch_emit_llvm_plt_entry (acfg, acfg->got_symbol, (acfg->plt_got_offset_base + i) * sizeof (gpointer), acfg->plt_got_info_offsets [i]);
6575
6576                         if (debug_sym) {
6577                                 emit_symbol_size (acfg, debug_sym, ".");
6578                                 g_free (debug_sym);
6579                         }
6580                 }
6581         }
6582
6583         emit_symbol_size (acfg, acfg->plt_symbol, ".");
6584
6585         emit_info_symbol (acfg, "plt_end");
6586 }
6587
6588 /*
6589  * emit_trampoline_full:
6590  *
6591  *   If EMIT_TINFO is TRUE, emit additional information which can be used to create a MonoJitInfo for this trampoline by
6592  * create_jit_info_for_trampoline ().
6593  */
6594 static G_GNUC_UNUSED void
6595 emit_trampoline_full (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info, gboolean emit_tinfo)
6596 {
6597         char start_symbol [MAX_SYMBOL_SIZE];
6598         char end_symbol [MAX_SYMBOL_SIZE];
6599         char symbol [MAX_SYMBOL_SIZE];
6600         guint32 buf_size, info_offset;
6601         MonoJumpInfo *patch_info;
6602         guint8 *buf, *p;
6603         GPtrArray *patches;
6604         char *name;
6605         guint8 *code;
6606         guint32 code_size;
6607         MonoJumpInfo *ji;
6608         GSList *unwind_ops;
6609
6610         g_assert (info);
6611
6612         name = info->name;
6613         code = info->code;
6614         code_size = info->code_size;
6615         ji = info->ji;
6616         unwind_ops = info->unwind_ops;
6617
6618         /* Emit code */
6619
6620         sprintf (start_symbol, "%s%s", acfg->user_symbol_prefix, name);
6621
6622         emit_section_change (acfg, ".text", 0);
6623         emit_global (acfg, start_symbol, TRUE);
6624         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6625         emit_label (acfg, start_symbol);
6626
6627         sprintf (symbol, "%snamed_%s", acfg->temp_prefix, name);
6628         emit_label (acfg, symbol);
6629
6630         /* 
6631          * The code should access everything through the GOT, so we pass
6632          * TRUE here.
6633          */
6634         emit_and_reloc_code (acfg, NULL, code, code_size, ji, TRUE, NULL);
6635
6636         emit_symbol_size (acfg, start_symbol, ".");
6637
6638         if (emit_tinfo) {
6639                 sprintf (end_symbol, "%snamede_%s", acfg->temp_prefix, name);
6640                 emit_label (acfg, end_symbol);
6641         }
6642
6643         /* Emit info */
6644
6645         /* Sort relocations */
6646         patches = g_ptr_array_new ();
6647         for (patch_info = ji; patch_info; patch_info = patch_info->next)
6648                 if (patch_info->type != MONO_PATCH_INFO_NONE)
6649                         g_ptr_array_add (patches, patch_info);
6650         g_ptr_array_sort (patches, compare_patches);
6651
6652         buf_size = patches->len * 128 + 128;
6653         buf = (guint8 *)g_malloc (buf_size);
6654         p = buf;
6655
6656         encode_patch_list (acfg, patches, patches->len, FALSE, got_offset, p, &p);
6657         g_assert (p - buf < buf_size);
6658         g_ptr_array_free (patches, TRUE);
6659
6660         sprintf (symbol, "%s%s_p", acfg->user_symbol_prefix, name);
6661
6662         info_offset = add_to_blob (acfg, buf, p - buf);
6663
6664         emit_section_change (acfg, RODATA_SECT, 0);
6665         emit_global (acfg, symbol, FALSE);
6666         emit_label (acfg, symbol);
6667
6668         emit_int32 (acfg, info_offset);
6669
6670         if (emit_tinfo) {
6671                 guint8 *encoded;
6672                 guint32 encoded_len;
6673                 guint32 uw_offset;
6674
6675                 /*
6676                  * Emit additional information which can be used to reconstruct a partial MonoTrampInfo.
6677                  */
6678                 encoded = mono_unwind_ops_encode (info->unwind_ops, &encoded_len);
6679                 uw_offset = get_unwind_info_offset (acfg, encoded, encoded_len);
6680                 g_free (encoded);
6681
6682                 emit_symbol_diff (acfg, end_symbol, start_symbol, 0);
6683                 emit_int32 (acfg, uw_offset);
6684         }
6685
6686         /* Emit debug info */
6687         if (unwind_ops) {
6688                 char symbol2 [MAX_SYMBOL_SIZE];
6689
6690                 sprintf (symbol, "%s", name);
6691                 sprintf (symbol2, "%snamed_%s", acfg->temp_prefix, name);
6692
6693                 if (acfg->dwarf)
6694                         mono_dwarf_writer_emit_trampoline (acfg->dwarf, symbol, symbol2, NULL, NULL, code_size, unwind_ops);
6695         }
6696
6697         g_free (buf);
6698 }
6699
6700 static G_GNUC_UNUSED void
6701 emit_trampoline (MonoAotCompile *acfg, int got_offset, MonoTrampInfo *info)
6702 {
6703         emit_trampoline_full (acfg, got_offset, info, TRUE);
6704 }
6705
6706 static void
6707 emit_trampolines (MonoAotCompile *acfg)
6708 {
6709         char symbol [MAX_SYMBOL_SIZE];
6710         char end_symbol [MAX_SYMBOL_SIZE];
6711         int i, tramp_got_offset;
6712         int ntype;
6713 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6714         int tramp_type;
6715 #endif
6716
6717         if (!mono_aot_mode_is_full (&acfg->aot_opts) || acfg->aot_opts.llvm_only)
6718                 return;
6719         
6720         g_assert (acfg->image->assembly);
6721
6722         /* Currently, we emit most trampolines into the mscorlib AOT image. */
6723         if (strcmp (acfg->image->assembly->aname.name, "mscorlib") == 0) {
6724 #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
6725                 MonoTrampInfo *info;
6726
6727                 /*
6728                  * Emit the generic trampolines.
6729                  *
6730                  * We could save some code by treating the generic trampolines as a wrapper
6731                  * method, but that approach has its own complexities, so we choose the simpler
6732                  * method.
6733                  */
6734                 for (tramp_type = 0; tramp_type < MONO_TRAMPOLINE_NUM; ++tramp_type) {
6735                         /* we overload the boolean here to indicate the slightly different trampoline needed, see mono_arch_create_generic_trampoline() */
6736 #ifdef DISABLE_REMOTING
6737                         if (tramp_type == MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING)
6738                                 continue;
6739 #endif
6740 #ifndef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
6741                         if (tramp_type == MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD)
6742                                 continue;
6743 #endif
6744                         mono_arch_create_generic_trampoline ((MonoTrampolineType)tramp_type, &info, acfg->aot_opts.use_trampolines_page? 2: TRUE);
6745                         emit_trampoline (acfg, acfg->got_offset, info);
6746                 }
6747
6748                 /* Emit the exception related code pieces */
6749                 mono_arch_get_restore_context (&info, TRUE);
6750                 emit_trampoline (acfg, acfg->got_offset, info);
6751                 mono_arch_get_call_filter (&info, TRUE);
6752                 emit_trampoline (acfg, acfg->got_offset, info);
6753                 mono_arch_get_throw_exception (&info, TRUE);
6754                 emit_trampoline (acfg, acfg->got_offset, info);
6755                 mono_arch_get_rethrow_exception (&info, TRUE);
6756                 emit_trampoline (acfg, acfg->got_offset, info);
6757                 mono_arch_get_throw_corlib_exception (&info, TRUE);
6758                 emit_trampoline (acfg, acfg->got_offset, info);
6759
6760 #ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES
6761                 mono_arch_create_sdb_trampoline (TRUE, &info, TRUE);
6762                 emit_trampoline (acfg, acfg->got_offset, info);
6763                 mono_arch_create_sdb_trampoline (FALSE, &info, TRUE);
6764                 emit_trampoline (acfg, acfg->got_offset, info);
6765 #endif
6766
6767 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
6768                 mono_arch_get_gsharedvt_trampoline (&info, TRUE);
6769                 if (info) {
6770                         emit_trampoline_full (acfg, acfg->got_offset, info, TRUE);
6771
6772                         /* Create a separate out trampoline for more information in stack traces */
6773                         info->name = g_strdup ("gsharedvt_out_trampoline");
6774                         emit_trampoline_full (acfg, acfg->got_offset, info, TRUE);
6775                 }
6776 #endif
6777
6778 #if defined(MONO_ARCH_HAVE_GET_TRAMPOLINES)
6779                 {
6780                         GSList *l = mono_arch_get_trampolines (TRUE);
6781
6782                         while (l) {
6783                                 MonoTrampInfo *info = (MonoTrampInfo *)l->data;
6784
6785                                 emit_trampoline (acfg, acfg->got_offset, info);
6786                                 l = l->next;
6787                         }
6788                 }
6789 #endif
6790
6791                 for (i = 0; i < acfg->aot_opts.nrgctx_fetch_trampolines; ++i) {
6792                         int offset;
6793
6794                         offset = MONO_RGCTX_SLOT_MAKE_RGCTX (i);
6795                         mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, TRUE);
6796                         emit_trampoline (acfg, acfg->got_offset, info);
6797                         g_free (info);
6798
6799                         offset = MONO_RGCTX_SLOT_MAKE_MRGCTX (i);
6800                         mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, TRUE);
6801                         emit_trampoline (acfg, acfg->got_offset, info);
6802                         g_free (info);
6803                 }
6804
6805 #ifdef MONO_ARCH_HAVE_GENERAL_RGCTX_LAZY_FETCH_TRAMPOLINE
6806                 mono_arch_create_general_rgctx_lazy_fetch_trampoline (&info, TRUE);
6807                 emit_trampoline (acfg, acfg->got_offset, info);
6808 #endif
6809
6810                 {
6811                         GSList *l;
6812
6813                         /* delegate_invoke_impl trampolines */
6814                         l = mono_arch_get_delegate_invoke_impls ();
6815                         while (l) {
6816                                 MonoTrampInfo *info = (MonoTrampInfo *)l->data;
6817
6818                                 emit_trampoline (acfg, acfg->got_offset, info);
6819                                 l = l->next;
6820                         }
6821                 }
6822
6823 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD_AOT
6824                 mono_arch_create_handler_block_trampoline (&info, TRUE);
6825                 emit_trampoline (acfg, acfg->got_offset, info);
6826 #endif
6827
6828 #endif /* #ifdef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES */
6829
6830                 if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
6831                         mono_arch_get_enter_icall_trampoline (&info);
6832                         emit_trampoline (acfg, acfg->got_offset, info);
6833                 }
6834
6835                 /* Emit trampolines which are numerous */
6836
6837                 /*
6838                  * These include the following:
6839                  * - specific trampolines
6840                  * - static rgctx invoke trampolines
6841                  * - imt trampolines
6842                  * These trampolines have the same code, they are parameterized by GOT 
6843                  * slots. 
6844                  * They are defined in this file, in the arch_... routines instead of
6845                  * in tramp-<ARCH>.c, since it is easier to do it this way.
6846                  */
6847
6848                 /*
6849                  * When running in aot-only mode, we can't create specific trampolines at 
6850                  * runtime, so we create a few, and save them in the AOT file. 
6851                  * Normal trampolines embed their argument as a literal inside the 
6852                  * trampoline code, we can't do that here, so instead we embed an offset
6853                  * which needs to be added to the trampoline address to get the address of
6854                  * the GOT slot which contains the argument value.
6855                  * The generated trampolines jump to the generic trampolines using another
6856                  * GOT slot, which will be setup by the AOT loader to point to the 
6857                  * generic trampoline code of the given type.
6858                  */
6859
6860                 /*
6861                  * FIXME: Maybe we should use more specific trampolines (i.e. one class init for
6862                  * each class).
6863                  */
6864
6865                 emit_section_change (acfg, ".text", 0);
6866
6867                 tramp_got_offset = acfg->got_offset;
6868
6869                 for (ntype = 0; ntype < MONO_AOT_TRAMP_NUM; ++ntype) {
6870                         switch (ntype) {
6871                         case MONO_AOT_TRAMP_SPECIFIC:
6872                                 sprintf (symbol, "specific_trampolines");
6873                                 break;
6874                         case MONO_AOT_TRAMP_STATIC_RGCTX:
6875                                 sprintf (symbol, "static_rgctx_trampolines");
6876                                 break;
6877                         case MONO_AOT_TRAMP_IMT:
6878                                 sprintf (symbol, "imt_trampolines");
6879                                 break;
6880                         case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6881                                 sprintf (symbol, "gsharedvt_arg_trampolines");
6882                                 break;
6883                         default:
6884                                 g_assert_not_reached ();
6885                         }
6886
6887                         sprintf (end_symbol, "%s_e", symbol);
6888
6889                         if (acfg->aot_opts.write_symbols)
6890                                 emit_local_symbol (acfg, symbol, end_symbol, TRUE);
6891
6892                         emit_alignment_code (acfg, AOT_FUNC_ALIGNMENT);
6893                         emit_info_symbol (acfg, symbol);
6894
6895                         acfg->trampoline_got_offset_base [ntype] = tramp_got_offset;
6896
6897                         for (i = 0; i < acfg->num_trampolines [ntype]; ++i) {
6898                                 int tramp_size = 0;
6899
6900                                 switch (ntype) {
6901                                 case MONO_AOT_TRAMP_SPECIFIC:
6902                                         arch_emit_specific_trampoline (acfg, tramp_got_offset, &tramp_size);
6903                                         tramp_got_offset += 2;
6904                                 break;
6905                                 case MONO_AOT_TRAMP_STATIC_RGCTX:
6906                                         arch_emit_static_rgctx_trampoline (acfg, tramp_got_offset, &tramp_size);                                
6907                                         tramp_got_offset += 2;
6908                                         break;
6909                                 case MONO_AOT_TRAMP_IMT:
6910                                         arch_emit_imt_trampoline (acfg, tramp_got_offset, &tramp_size);
6911                                         tramp_got_offset += 1;
6912                                         break;
6913                                 case MONO_AOT_TRAMP_GSHAREDVT_ARG:
6914                                         arch_emit_gsharedvt_arg_trampoline (acfg, tramp_got_offset, &tramp_size);                               
6915                                         tramp_got_offset += 2;
6916                                         break;
6917                                 default:
6918                                         g_assert_not_reached ();
6919                                 }
6920                                 if (!acfg->trampoline_size [ntype]) {
6921                                         g_assert (tramp_size);
6922                                         acfg->trampoline_size [ntype] = tramp_size;
6923                                 }
6924                         }
6925
6926                         emit_label (acfg, end_symbol);
6927                         emit_int32 (acfg, 0);
6928                 }
6929
6930                 arch_emit_specific_trampoline_pages (acfg);
6931
6932                 /* Reserve some entries at the end of the GOT for our use */
6933                 acfg->num_trampoline_got_entries = tramp_got_offset - acfg->got_offset;
6934         }
6935
6936         acfg->got_offset += acfg->num_trampoline_got_entries;
6937 }
6938
6939 static gboolean
6940 str_begins_with (const char *str1, const char *str2)
6941 {
6942         int len = strlen (str2);
6943         return strncmp (str1, str2, len) == 0;
6944 }
6945
6946 void*
6947 mono_aot_readonly_field_override (MonoClassField *field)
6948 {
6949         ReadOnlyValue *rdv;
6950         for (rdv = readonly_values; rdv; rdv = rdv->next) {
6951                 char *p = rdv->name;
6952                 int len;
6953                 len = strlen (field->parent->name_space);
6954                 if (strncmp (p, field->parent->name_space, len))
6955                         continue;
6956                 p += len;
6957                 if (*p++ != '.')
6958                         continue;
6959                 len = strlen (field->parent->name);
6960                 if (strncmp (p, field->parent->name, len))
6961                         continue;
6962                 p += len;
6963                 if (*p++ != '.')
6964                         continue;
6965                 if (strcmp (p, field->name))
6966                         continue;
6967                 switch (rdv->type) {
6968                 case MONO_TYPE_I1:
6969                         return &rdv->value.i1;
6970                 case MONO_TYPE_I2:
6971                         return &rdv->value.i2;
6972                 case MONO_TYPE_I4:
6973                         return &rdv->value.i4;
6974                 default:
6975                         break;
6976                 }
6977         }
6978         return NULL;
6979 }
6980
6981 static void
6982 add_readonly_value (MonoAotOptions *opts, const char *val)
6983 {
6984         ReadOnlyValue *rdv;
6985         const char *fval;
6986         const char *tval;
6987         /* the format of val is:
6988          * namespace.typename.fieldname=type/value
6989          * type can be i1 for uint8/int8/boolean, i2 for uint16/int16/char, i4 for uint32/int32
6990          */
6991         fval = strrchr (val, '/');
6992         if (!fval) {
6993                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing /.\n", val);
6994                 exit (1);
6995         }
6996         tval = strrchr (val, '=');
6997         if (!tval) {
6998                 fprintf (stderr, "AOT : invalid format for readonly field '%s', missing =.\n", val);
6999                 exit (1);
7000         }
7001         rdv = g_new0 (ReadOnlyValue, 1);
7002         rdv->name = (char *)g_malloc0 (tval - val + 1);
7003         memcpy (rdv->name, val, tval - val);
7004         tval++;
7005         fval++;
7006         if (strncmp (tval, "i1", 2) == 0) {
7007                 rdv->value.i1 = atoi (fval);
7008                 rdv->type = MONO_TYPE_I1;
7009         } else if (strncmp (tval, "i2", 2) == 0) {
7010                 rdv->value.i2 = atoi (fval);
7011                 rdv->type = MONO_TYPE_I2;
7012         } else if (strncmp (tval, "i4", 2) == 0) {
7013                 rdv->value.i4 = atoi (fval);
7014                 rdv->type = MONO_TYPE_I4;
7015         } else {
7016                 fprintf (stderr, "AOT : unsupported type for readonly field '%s'.\n", tval);
7017                 exit (1);
7018         }
7019         rdv->next = readonly_values;
7020         readonly_values = rdv;
7021 }
7022
7023 static gchar *
7024 clean_path (gchar * path)
7025 {
7026         if (!path)
7027                 return NULL;
7028
7029         if (g_str_has_suffix (path, G_DIR_SEPARATOR_S))
7030                 return path;
7031
7032         gchar *clean = g_strconcat (path, G_DIR_SEPARATOR_S, NULL);
7033         g_free (path);
7034
7035         return clean;
7036 }
7037
7038 static gchar *
7039 wrap_path (gchar * path)
7040 {
7041         int len;
7042         if (!path)
7043                 return NULL;
7044
7045         // If the string contains no spaces, just return the original string.
7046         if (strstr (path, " ") == NULL)
7047                 return path;
7048
7049         // If the string is already wrapped in quotes, return it.
7050         len = strlen (path);
7051         if (len >= 2 && path[0] == '\"' && path[len-1] == '\"')
7052                 return path;
7053
7054         // If the string contains spaces, then wrap it in quotes.
7055         gchar *clean = g_strdup_printf ("\"%s\"", path);
7056
7057         return clean;
7058 }
7059
7060 // Duplicate a char range and add it to a ptrarray, but only if it is nonempty
7061 static void
7062 ptr_array_add_range_if_nonempty(GPtrArray *args, gchar const *start, gchar const *end)
7063 {
7064         ptrdiff_t len = end-start;
7065         if (len > 0)
7066                 g_ptr_array_add (args, g_strndup (start, len));
7067 }
7068
7069 static GPtrArray *
7070 mono_aot_split_options (const char *aot_options)
7071 {
7072         enum MonoAotOptionState {
7073                 MONO_AOT_OPTION_STATE_DEFAULT,
7074                 MONO_AOT_OPTION_STATE_STRING,
7075                 MONO_AOT_OPTION_STATE_ESCAPE,
7076         };
7077
7078         GPtrArray *args = g_ptr_array_new ();
7079         enum MonoAotOptionState state = MONO_AOT_OPTION_STATE_DEFAULT;
7080         gchar const *opt_start = aot_options;
7081         gboolean end_of_string = FALSE;
7082         gchar cur;
7083
7084         g_return_val_if_fail (aot_options != NULL, NULL);
7085
7086         while ((cur = *aot_options) != '\0') {
7087                 if (state == MONO_AOT_OPTION_STATE_ESCAPE)
7088                         goto next;
7089
7090                 switch (cur) {
7091                 case '"':
7092                         // If we find a quote, then if we're in the default case then
7093                         // it means we've found the start of a string, if not then it
7094                         // means we've found the end of the string and should switch
7095                         // back to the default case.            
7096                         switch (state) {
7097                         case MONO_AOT_OPTION_STATE_DEFAULT:
7098                                 state = MONO_AOT_OPTION_STATE_STRING;
7099                                 break;
7100                         case MONO_AOT_OPTION_STATE_STRING:
7101                                 state = MONO_AOT_OPTION_STATE_DEFAULT;
7102                                 break;
7103                         case MONO_AOT_OPTION_STATE_ESCAPE:
7104                                 g_assert_not_reached ();
7105                                 break;
7106                         }
7107                         break;
7108                 case '\\':
7109                         // If we've found an escaping operator, then this means we
7110                         // should not process the next character if inside a string.            
7111                         if (state == MONO_AOT_OPTION_STATE_STRING) 
7112                                 state = MONO_AOT_OPTION_STATE_ESCAPE;
7113                         break;
7114                 case ',':
7115                         // If we're in the default state then this means we've found
7116                         // an option, store it for later processing.
7117                         if (state == MONO_AOT_OPTION_STATE_DEFAULT)
7118                                 goto new_opt;
7119                         break;
7120                 }
7121
7122         next:
7123                 aot_options++;
7124         restart:
7125                 // If the next character is end of string, then process the last option.
7126                 if (*(aot_options) == '\0') {
7127                         end_of_string = TRUE;
7128                         goto new_opt;
7129                 }
7130                 continue;
7131
7132         new_opt:
7133                 ptr_array_add_range_if_nonempty (args, opt_start, aot_options);
7134                 opt_start = ++aot_options;
7135                 if (end_of_string)
7136                         break;
7137                 goto restart; // Check for null and continue loop
7138         }
7139
7140         return args;
7141 }
7142
7143 static void
7144 mono_aot_parse_options (const char *aot_options, MonoAotOptions *opts)
7145 {
7146         GPtrArray* args;
7147
7148         args = mono_aot_split_options (aot_options ? aot_options : "");
7149         for (int i = 0; i < args->len; ++i) {
7150                 const char *arg = (const char *)g_ptr_array_index (args, i);
7151
7152                 if (str_begins_with (arg, "outfile=")) {
7153                         opts->outfile = g_strdup (arg + strlen ("outfile="));
7154                 } else if (str_begins_with (arg, "llvm-outfile=")) {
7155                         opts->llvm_outfile = g_strdup (arg + strlen ("llvm-outfile="));
7156                 } else if (str_begins_with (arg, "temp-path=")) {
7157                         opts->temp_path = clean_path (g_strdup (arg + strlen ("temp-path=")));
7158                 } else if (str_begins_with (arg, "save-temps")) {
7159                         opts->save_temps = TRUE;
7160                 } else if (str_begins_with (arg, "keep-temps")) {
7161                         opts->save_temps = TRUE;
7162                 } else if (str_begins_with (arg, "write-symbols")) {
7163                         opts->write_symbols = TRUE;
7164                 } else if (str_begins_with (arg, "no-write-symbols")) {
7165                         opts->write_symbols = FALSE;
7166                 // Intentionally undocumented -- one-off experiment
7167                 } else if (str_begins_with (arg, "metadata-only")) {
7168                         opts->metadata_only = TRUE;
7169                 } else if (str_begins_with (arg, "bind-to-runtime-version")) {
7170                         opts->bind_to_runtime_version = TRUE;
7171                 } else if (str_begins_with (arg, "full")) {
7172                         opts->mode = MONO_AOT_MODE_FULL;
7173                 } else if (str_begins_with (arg, "hybrid")) {
7174                         opts->mode = MONO_AOT_MODE_HYBRID;                      
7175                 } else if (str_begins_with (arg, "interp")) {
7176                         opts->mode = MONO_AOT_MODE_INTERP;
7177                 } else if (str_begins_with (arg, "threads=")) {
7178                         opts->nthreads = atoi (arg + strlen ("threads="));
7179                 } else if (str_begins_with (arg, "static")) {
7180                         opts->static_link = TRUE;
7181                         opts->no_dlsym = TRUE;
7182                 } else if (str_begins_with (arg, "asmonly")) {
7183                         opts->asm_only = TRUE;
7184                 } else if (str_begins_with (arg, "asmwriter")) {
7185                         opts->asm_writer = TRUE;
7186                 } else if (str_begins_with (arg, "nodebug")) {
7187                         opts->nodebug = TRUE;
7188                 } else if (str_begins_with (arg, "dwarfdebug")) {
7189                         opts->dwarf_debug = TRUE;
7190                 // Intentionally undocumented -- No one remembers what this does. It appears to be ARM-only
7191                 } else if (str_begins_with (arg, "nopagetrampolines")) {
7192                         opts->use_trampolines_page = FALSE;
7193                 } else if (str_begins_with (arg, "ntrampolines=")) {
7194                         opts->ntrampolines = atoi (arg + strlen ("ntrampolines="));
7195                 } else if (str_begins_with (arg, "nrgctx-trampolines=")) {
7196                         opts->nrgctx_trampolines = atoi (arg + strlen ("nrgctx-trampolines="));
7197                 } else if (str_begins_with (arg, "nrgctx-fetch-trampolines=")) {
7198                         opts->nrgctx_fetch_trampolines = atoi (arg + strlen ("nrgctx-fetch-trampolines="));
7199                 } else if (str_begins_with (arg, "nimt-trampolines=")) {
7200                         opts->nimt_trampolines = atoi (arg + strlen ("nimt-trampolines="));
7201                 } else if (str_begins_with (arg, "ngsharedvt-trampolines=")) {
7202                         opts->ngsharedvt_arg_trampolines = atoi (arg + strlen ("ngsharedvt-trampolines="));
7203                 } else if (str_begins_with (arg, "tool-prefix=")) {
7204                         opts->tool_prefix = g_strdup (arg + strlen ("tool-prefix="));
7205                 } else if (str_begins_with (arg, "ld-flags=")) {
7206                         opts->ld_flags = g_strdup (arg + strlen ("ld-flags="));                 
7207                 } else if (str_begins_with (arg, "soft-debug")) {
7208                         opts->soft_debug = TRUE;
7209                 // Intentionally undocumented x2-- deprecated
7210                 } else if (str_begins_with (arg, "gen-seq-points-file=")) {
7211                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file= is deprecated.\n");
7212                 } else if (str_begins_with (arg, "gen-seq-points-file")) {
7213                         fprintf (stderr, "Mono Warning: aot option gen-seq-points-file is deprecated.\n");
7214                 } else if (str_begins_with (arg, "msym-dir=")) {
7215                         debug_options.no_seq_points_compact_data = FALSE;
7216                         opts->gen_msym_dir = TRUE;
7217                         opts->gen_msym_dir_path = g_strdup (arg + strlen ("msym_dir="));;
7218                 } else if (str_begins_with (arg, "direct-pinvoke")) {
7219                         opts->direct_pinvoke = TRUE;
7220                 } else if (str_begins_with (arg, "direct-icalls")) {
7221                         opts->direct_icalls = TRUE;
7222                 } else if (str_begins_with (arg, "no-direct-calls")) {
7223                         opts->no_direct_calls = TRUE;
7224                 } else if (str_begins_with (arg, "print-skipped")) {
7225                         opts->print_skipped_methods = TRUE;
7226                 } else if (str_begins_with (arg, "stats")) {
7227                         opts->stats = TRUE;
7228                 // Intentionally undocumented-- has no known function other than to debug the compiler
7229                 } else if (str_begins_with (arg, "no-instances")) {
7230                         opts->no_instances = TRUE;
7231                 // Intentionally undocumented x4-- Used for internal debugging of compiler
7232                 } else if (str_begins_with (arg, "log-generics")) {
7233                         opts->log_generics = TRUE;
7234                 } else if (str_begins_with (arg, "log-instances=")) {
7235                         opts->log_instances = TRUE;
7236                         opts->instances_logfile_path = g_strdup (arg + strlen ("log-instances="));
7237                 } else if (str_begins_with (arg, "log-instances")) {
7238                         opts->log_instances = TRUE;
7239                 } else if (str_begins_with (arg, "internal-logfile=")) {
7240                         opts->logfile = g_strdup (arg + strlen ("internal-logfile="));
7241                 } else if (str_begins_with (arg, "mtriple=")) {
7242                         opts->mtriple = g_strdup (arg + strlen ("mtriple="));
7243                 } else if (str_begins_with (arg, "llvm-path=")) {
7244                         opts->llvm_path = clean_path (g_strdup (arg + strlen ("llvm-path=")));
7245                 } else if (!strcmp (arg, "llvm")) {
7246                         opts->llvm = TRUE;
7247                 } else if (str_begins_with (arg, "readonly-value=")) {
7248                         add_readonly_value (opts, arg + strlen ("readonly-value="));
7249                 } else if (str_begins_with (arg, "info")) {
7250                         printf ("AOT target setup: %s.\n", AOT_TARGET_STR);
7251                         exit (0);
7252                 // Intentionally undocumented: Used for precise stack maps, which are not available yet
7253                 } else if (str_begins_with (arg, "gc-maps")) {
7254                         mini_gc_enable_gc_maps_for_aot ();
7255                 // Intentionally undocumented: Used for internal debugging
7256                 } else if (str_begins_with (arg, "dump")) {
7257                         opts->dump_json = TRUE;
7258                 } else if (str_begins_with (arg, "llvmonly")) {
7259                         opts->mode = MONO_AOT_MODE_FULL;
7260                         opts->llvm = TRUE;
7261                         opts->llvm_only = TRUE;
7262                 } else if (str_begins_with (arg, "data-outfile=")) {
7263                         opts->data_outfile = g_strdup (arg + strlen ("data-outfile="));
7264                 } else if (str_begins_with (arg, "profile=")) {
7265                         opts->profile_files = g_list_append (opts->profile_files, g_strdup (arg + strlen ("profile=")));
7266                 } else if (!strcmp (arg, "profile-only")) {
7267                         opts->profile_only = TRUE;
7268                 } else if (!strcmp (arg, "verbose")) {
7269                         opts->verbose = TRUE;
7270                 } else if (str_begins_with (arg, "help") || str_begins_with (arg, "?")) {
7271                         printf ("Supported options for --aot:\n");
7272                         printf ("    asmonly\n");
7273                         printf ("    bind-to-runtime-version\n");
7274                         printf ("    bitcode\n");
7275                         printf ("    data-outfile=\n");
7276                         printf ("    direct-icalls\n");
7277                         printf ("    direct-pinvoke\n");
7278                         printf ("    dwarfdebug\n");
7279                         printf ("    full\n");
7280                         printf ("    hybrid\n");
7281                         printf ("    info\n");
7282                         printf ("    keep-temps\n");
7283                         printf ("    llvm\n");
7284                         printf ("    llvmonly\n");
7285                         printf ("    llvm-outfile=\n");
7286                         printf ("    llvm-path=\n");
7287                         printf ("    msym-dir=\n");
7288                         printf ("    mtriple\n");
7289                         printf ("    nimt-trampolines=\n");
7290                         printf ("    nodebug\n");
7291                         printf ("    no-direct-calls\n");
7292                         printf ("    no-write-symbols\n");
7293                         printf ("    nrgctx-trampolines=\n");
7294                         printf ("    nrgctx-fetch-trampolines=\n");
7295                         printf ("    ngsharedvt-trampolines=\n");
7296                         printf ("    ntrampolines=\n");
7297                         printf ("    outfile=\n");
7298                         printf ("    profile=\n");
7299                         printf ("    profile-only\n");
7300                         printf ("    print-skipped-methods\n");
7301                         printf ("    readonly-value=\n");
7302                         printf ("    save-temps\n");
7303                         printf ("    soft-debug\n");
7304                         printf ("    static\n");
7305                         printf ("    stats\n");
7306                         printf ("    temp-path=\n");
7307                         printf ("    tool-prefix=\n");
7308                         printf ("    threads=\n");
7309                         printf ("    write-symbols\n");
7310                         printf ("    verbose\n");
7311                         printf ("    help/?\n");
7312                         exit (0);
7313                 } else {
7314                         fprintf (stderr, "AOT : Unknown argument '%s'.\n", arg);
7315                         exit (1);
7316                 }
7317
7318                 g_free ((gpointer) arg);
7319         }
7320
7321         if (opts->use_trampolines_page) {
7322                 opts->ntrampolines = 0;
7323                 opts->nrgctx_trampolines = 0;
7324                 opts->nimt_trampolines = 0;
7325                 opts->ngsharedvt_arg_trampolines = 0;
7326         }
7327
7328         g_ptr_array_free (args, /*free_seg=*/TRUE);
7329 }
7330
7331 static void
7332 add_token_info_hash (gpointer key, gpointer value, gpointer user_data)
7333 {
7334         MonoMethod *method = (MonoMethod*)key;
7335         MonoJumpInfoToken *ji = (MonoJumpInfoToken*)value;
7336         MonoAotCompile *acfg = (MonoAotCompile *)user_data;
7337         MonoJumpInfoToken *new_ji;
7338
7339         new_ji = (MonoJumpInfoToken *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfoToken));
7340         new_ji->image = ji->image;
7341         new_ji->token = ji->token;
7342         g_hash_table_insert (acfg->token_info_hash, method, new_ji);
7343 }
7344
7345 static gboolean
7346 can_encode_class (MonoAotCompile *acfg, MonoClass *klass)
7347 {
7348         if (klass->type_token)
7349                 return TRUE;
7350         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR) || (klass->byval_arg.type == MONO_TYPE_PTR))
7351                 return TRUE;
7352         if (klass->rank)
7353                 return can_encode_class (acfg, klass->element_class);
7354         return FALSE;
7355 }
7356
7357 static gboolean
7358 can_encode_method (MonoAotCompile *acfg, MonoMethod *method)
7359 {
7360                 if (method->wrapper_type) {
7361                         switch (method->wrapper_type) {
7362                         case MONO_WRAPPER_NONE:
7363                         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
7364                         case MONO_WRAPPER_XDOMAIN_INVOKE:
7365                         case MONO_WRAPPER_STFLD:
7366                         case MONO_WRAPPER_LDFLD:
7367                         case MONO_WRAPPER_LDFLDA:
7368                         case MONO_WRAPPER_STELEMREF:
7369                         case MONO_WRAPPER_PROXY_ISINST:
7370                         case MONO_WRAPPER_ALLOC:
7371                         case MONO_WRAPPER_REMOTING_INVOKE:
7372                         case MONO_WRAPPER_UNKNOWN:
7373                         case MONO_WRAPPER_WRITE_BARRIER:
7374                         case MONO_WRAPPER_DELEGATE_INVOKE:
7375                         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
7376                         case MONO_WRAPPER_DELEGATE_END_INVOKE:
7377                         case MONO_WRAPPER_SYNCHRONIZED:
7378                                 break;
7379                         case MONO_WRAPPER_MANAGED_TO_MANAGED:
7380                         case MONO_WRAPPER_CASTCLASS: {
7381                                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
7382
7383                                 if (info)
7384                                         return TRUE;
7385                                 else
7386                                         return FALSE;
7387                                 break;
7388                         }
7389                         default:
7390                                 //printf ("Skip (wrapper call): %d -> %s\n", patch_info->type, mono_method_full_name (patch_info->data.method, TRUE));
7391                                 return FALSE;
7392                         }
7393                 } else {
7394                         if (!method->token) {
7395                                 /* The method is part of a constructed type like Int[,].Set (). */
7396                                 if (!g_hash_table_lookup (acfg->token_info_hash, method)) {
7397                                         if (method->klass->rank)
7398                                                 return TRUE;
7399                                         return FALSE;
7400                                 }
7401                         }
7402                 }
7403                 return TRUE;
7404 }
7405
7406 static gboolean
7407 can_encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info)
7408 {
7409         switch (patch_info->type) {
7410         case MONO_PATCH_INFO_METHOD:
7411         case MONO_PATCH_INFO_METHODCONST:
7412         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
7413                 MonoMethod *method = patch_info->data.method;
7414
7415                 return can_encode_method (acfg, method);
7416         }
7417         case MONO_PATCH_INFO_VTABLE:
7418         case MONO_PATCH_INFO_CLASS:
7419         case MONO_PATCH_INFO_IID:
7420         case MONO_PATCH_INFO_ADJUSTED_IID:
7421                 if (!can_encode_class (acfg, patch_info->data.klass)) {
7422                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7423                         return FALSE;
7424                 }
7425                 break;
7426         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE: {
7427                 if (!can_encode_class (acfg, patch_info->data.del_tramp->klass)) {
7428                         //printf ("Skip: %s\n", mono_type_full_name (&patch_info->data.klass->byval_arg));
7429                         return FALSE;
7430                 }
7431                 break;
7432         }
7433         case MONO_PATCH_INFO_RGCTX_FETCH:
7434         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
7435                 MonoJumpInfoRgctxEntry *entry = patch_info->data.rgctx_entry;
7436
7437                 if (!can_encode_method (acfg, entry->method))
7438                         return FALSE;
7439                 if (!can_encode_patch (acfg, entry->data))
7440                         return FALSE;
7441                 break;
7442         }
7443         default:
7444                 break;
7445         }
7446
7447         return TRUE;
7448 }
7449
7450 static gboolean
7451 is_concrete_type (MonoType *t)
7452 {
7453         MonoClass *klass;
7454         int i;
7455
7456         if (t->type == MONO_TYPE_VAR || t->type == MONO_TYPE_MVAR)
7457                 return FALSE;
7458         if (t->type == MONO_TYPE_GENERICINST) {
7459                 MonoGenericContext *orig_ctx;
7460                 MonoGenericInst *inst;
7461                 MonoType *arg;
7462
7463                 if (!MONO_TYPE_ISSTRUCT (t))
7464                         return TRUE;
7465                 klass = mono_class_from_mono_type (t);
7466                 orig_ctx = &mono_class_get_generic_class (klass)->context;
7467
7468                 inst = orig_ctx->class_inst;
7469                 if (inst) {
7470                         for (i = 0; i < inst->type_argc; ++i) {
7471                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7472                                 if (!is_concrete_type (arg))
7473                                         return FALSE;
7474                         }
7475                 }
7476                 inst = orig_ctx->method_inst;
7477                 if (inst) {
7478                         for (i = 0; i < inst->type_argc; ++i) {
7479                                 arg = mini_get_underlying_type (inst->type_argv [i]);
7480                                 if (!is_concrete_type (arg))
7481                                         return FALSE;
7482                         }
7483                 }
7484         }
7485         return TRUE;
7486 }
7487
7488 /* LOCKING: Assumes the loader lock is held */
7489 static void
7490 add_gsharedvt_wrappers (MonoAotCompile *acfg, MonoMethodSignature *sig, gboolean gsharedvt_in, gboolean gsharedvt_out)
7491 {
7492         MonoMethod *wrapper;
7493         gboolean concrete = TRUE;
7494         gboolean add_in = gsharedvt_in;
7495         gboolean add_out = gsharedvt_out;
7496
7497         if (gsharedvt_in && g_hash_table_lookup (acfg->gsharedvt_in_signatures, sig))
7498                 add_in = FALSE;
7499         if (gsharedvt_out && g_hash_table_lookup (acfg->gsharedvt_out_signatures, sig))
7500                 add_out = FALSE;
7501
7502         if (!add_in && !add_out)
7503                 return;
7504
7505         if (mini_is_gsharedvt_variable_signature (sig))
7506                 return;
7507
7508         if (add_in)
7509                 g_hash_table_insert (acfg->gsharedvt_in_signatures, sig, sig);
7510         if (add_out)
7511                 g_hash_table_insert (acfg->gsharedvt_out_signatures, sig, sig);
7512
7513         if (!sig->has_type_parameters) {
7514                 //printf ("%s\n", mono_signature_full_name (sig));
7515
7516                 if (gsharedvt_in) {
7517                         wrapper = mini_get_gsharedvt_in_sig_wrapper (sig);
7518                         add_extra_method (acfg, wrapper);
7519                 }
7520                 if (gsharedvt_out) {
7521                         wrapper = mini_get_gsharedvt_out_sig_wrapper (sig);
7522                         add_extra_method (acfg, wrapper);
7523                 }
7524         } else {
7525                 /* For signatures creared during generic sharing, convert them to a concrete signature if possible */
7526                 MonoMethodSignature *copy = mono_metadata_signature_dup (sig);
7527                 int i;
7528
7529                 //printf ("%s\n", mono_signature_full_name (sig));
7530
7531                 copy->ret = mini_get_underlying_type (sig->ret);
7532                 if (!is_concrete_type (copy->ret))
7533                         concrete = FALSE;
7534                 for (i = 0; i < sig->param_count; ++i) {
7535                         copy->params [i] = mini_get_underlying_type (sig->params [i]);
7536                         if (!is_concrete_type (copy->params [i]))
7537                                 concrete = FALSE;
7538                 }
7539                 if (concrete) {
7540                         copy->has_type_parameters = 0;
7541
7542                         if (gsharedvt_in) {
7543                                 wrapper = mini_get_gsharedvt_in_sig_wrapper (copy);
7544                                 add_extra_method (acfg, wrapper);
7545                         }
7546
7547                         if (gsharedvt_out) {
7548                                 wrapper = mini_get_gsharedvt_out_sig_wrapper (copy);
7549                                 add_extra_method (acfg, wrapper);
7550                         }
7551
7552                         //printf ("%s\n", mono_method_full_name (wrapper, 1));
7553                 }
7554         }
7555 }
7556
7557 /*
7558  * compile_method:
7559  *
7560  *   AOT compile a given method.
7561  * This function might be called by multiple threads, so it must be thread-safe.
7562  */
7563 static void
7564 compile_method (MonoAotCompile *acfg, MonoMethod *method)
7565 {
7566         MonoCompile *cfg;
7567         MonoJumpInfo *patch_info;
7568         gboolean skip;
7569         int index, depth;
7570         MonoMethod *wrapped;
7571         GTimer *jit_timer;
7572         JitFlags flags;
7573
7574         if (acfg->aot_opts.metadata_only)
7575                 return;
7576
7577         mono_acfg_lock (acfg);
7578         index = get_method_index (acfg, method);
7579         mono_acfg_unlock (acfg);
7580
7581         /* fixme: maybe we can also precompile wrapper methods */
7582         if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
7583                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
7584                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT)) {
7585                 //printf ("Skip (impossible): %s\n", mono_method_full_name (method, TRUE));
7586                 return;
7587         }
7588
7589         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
7590                 return;
7591
7592         wrapped = mono_marshal_method_from_wrapper (method);
7593         if (wrapped && (wrapped->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && wrapped->is_generic)
7594                 // FIXME: The wrapper should be generic too, but it is not
7595                 return;
7596
7597         if (method->wrapper_type == MONO_WRAPPER_COMINTEROP)
7598                 return;
7599
7600         if (acfg->aot_opts.profile_only && !method->is_inflated && !g_hash_table_lookup (acfg->profile_methods, method))
7601                 return;
7602
7603         InterlockedIncrement (&acfg->stats.mcount);
7604
7605 #if 0
7606         if (method->is_generic || mono_class_is_gtd (method->klass)) {
7607                 InterlockedIncrement (&acfg->stats.genericcount);
7608                 return;
7609         }
7610 #endif
7611
7612         //acfg->aot_opts.print_skipped_methods = TRUE;
7613
7614         /*
7615          * Since these methods are the only ones which are compiled with
7616          * AOT support, and they are not used by runtime startup/shutdown code,
7617          * the runtime will not see AOT methods during AOT compilation,so it
7618          * does not need to support them by creating a fake GOT etc.
7619          */
7620         flags = JIT_FLAG_AOT;
7621         if (mono_aot_mode_is_full (&acfg->aot_opts))
7622                 flags = (JitFlags)(flags | JIT_FLAG_FULL_AOT);
7623         if (acfg->llvm)
7624                 flags = (JitFlags)(flags | JIT_FLAG_LLVM);
7625         if (acfg->aot_opts.llvm_only)
7626                 flags = (JitFlags)(flags | JIT_FLAG_LLVM_ONLY | JIT_FLAG_EXPLICIT_NULL_CHECKS);
7627         if (acfg->aot_opts.no_direct_calls)
7628                 flags = (JitFlags)(flags | JIT_FLAG_NO_DIRECT_ICALLS);
7629         if (acfg->aot_opts.direct_pinvoke)
7630                 flags = (JitFlags)(flags | JIT_FLAG_DIRECT_PINVOKE);
7631
7632         jit_timer = mono_time_track_start ();
7633         cfg = mini_method_compile (method, acfg->opts, mono_get_root_domain (), flags, 0, index);
7634         mono_time_track_end (&mono_jit_stats.jit_time, jit_timer);
7635
7636         if (cfg->exception_type == MONO_EXCEPTION_GENERIC_SHARING_FAILED) {
7637                 if (acfg->aot_opts.print_skipped_methods)
7638                         printf ("Skip (gshared failure): %s (%s)\n", mono_method_get_full_name (method), cfg->exception_message);
7639                 InterlockedIncrement (&acfg->stats.genericcount);
7640                 return;
7641         }
7642         if (cfg->exception_type != MONO_EXCEPTION_NONE) {
7643                 /* Some instances cannot be JITted due to constraints etc. */
7644                 if (!method->is_inflated)
7645                         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));
7646                 /* Let the exception happen at runtime */
7647                 return;
7648         }
7649
7650         if (cfg->disable_aot) {
7651                 if (acfg->aot_opts.print_skipped_methods)
7652                         printf ("Skip (disabled): %s\n", mono_method_get_full_name (method));
7653                 InterlockedIncrement (&acfg->stats.ocount);
7654                 return;
7655         }
7656         cfg->method_index = index;
7657
7658         /* Nullify patches which need no aot processing */
7659         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7660                 switch (patch_info->type) {
7661                 case MONO_PATCH_INFO_LABEL:
7662                 case MONO_PATCH_INFO_BB:
7663                         patch_info->type = MONO_PATCH_INFO_NONE;
7664                         break;
7665                 default:
7666                         break;
7667                 }
7668         }
7669
7670         /* Collect method->token associations from the cfg */
7671         mono_acfg_lock (acfg);
7672         g_hash_table_foreach (cfg->token_info_hash, add_token_info_hash, acfg);
7673         mono_acfg_unlock (acfg);
7674         g_hash_table_destroy (cfg->token_info_hash);
7675         cfg->token_info_hash = NULL;
7676
7677         /*
7678          * Check for absolute addresses.
7679          */
7680         skip = FALSE;
7681         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7682                 switch (patch_info->type) {
7683                 case MONO_PATCH_INFO_ABS:
7684                         /* unable to handle this */
7685                         skip = TRUE;    
7686                         break;
7687                 default:
7688                         break;
7689                 }
7690         }
7691
7692         if (skip) {
7693                 if (acfg->aot_opts.print_skipped_methods)
7694                         printf ("Skip (abs call): %s\n", mono_method_get_full_name (method));
7695                 InterlockedIncrement (&acfg->stats.abscount);
7696                 return;
7697         }
7698
7699         /* Lock for the rest of the code */
7700         mono_acfg_lock (acfg);
7701
7702         if (cfg->gsharedvt)
7703                 acfg->stats.method_categories [METHOD_CAT_GSHAREDVT] ++;
7704         else if (cfg->gshared)
7705                 acfg->stats.method_categories [METHOD_CAT_INST] ++;
7706         else if (cfg->method->wrapper_type)
7707                 acfg->stats.method_categories [METHOD_CAT_WRAPPER] ++;
7708         else
7709                 acfg->stats.method_categories [METHOD_CAT_NORMAL] ++;
7710
7711         /*
7712          * Check for methods/klasses we can't encode.
7713          */
7714         skip = FALSE;
7715         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7716                 if (!can_encode_patch (acfg, patch_info))
7717                         skip = TRUE;
7718         }
7719
7720         if (skip) {
7721                 if (acfg->aot_opts.print_skipped_methods)
7722                         printf ("Skip (patches): %s\n", mono_method_get_full_name (method));
7723                 acfg->stats.ocount++;
7724                 mono_acfg_unlock (acfg);
7725                 return;
7726         }
7727
7728         if (!cfg->compile_llvm)
7729                 acfg->has_jitted_code = TRUE;
7730
7731         if (method->is_inflated && acfg->aot_opts.log_instances) {
7732                 if (acfg->instances_logfile)
7733                         fprintf (acfg->instances_logfile, "%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7734                 else
7735                         printf ("%s ### %d\n", mono_method_get_full_name (method), cfg->code_size);
7736         }
7737
7738         /* Adds generic instances referenced by this method */
7739         /* 
7740          * The depth is used to avoid infinite loops when generic virtual recursion is 
7741          * encountered.
7742          */
7743         depth = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->method_depth, method));
7744         if (!acfg->aot_opts.no_instances && depth < 32 && mono_aot_mode_is_full (&acfg->aot_opts)) {
7745                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7746                         switch (patch_info->type) {
7747                         case MONO_PATCH_INFO_RGCTX_FETCH:
7748                         case MONO_PATCH_INFO_RGCTX_SLOT_INDEX:
7749                         case MONO_PATCH_INFO_METHOD: {
7750                                 MonoMethod *m = NULL;
7751
7752                                 if (patch_info->type == MONO_PATCH_INFO_RGCTX_FETCH || patch_info->type == MONO_PATCH_INFO_RGCTX_SLOT_INDEX) {
7753                                         MonoJumpInfoRgctxEntry *e = patch_info->data.rgctx_entry;
7754
7755                                         if (e->info_type == MONO_RGCTX_INFO_GENERIC_METHOD_CODE)
7756                                                 m = e->data->data.method;
7757                                 } else {
7758                                         m = patch_info->data.method;
7759                                 }
7760
7761                                 if (!m)
7762                                         break;
7763                                 if (m->is_inflated && mono_aot_mode_is_full (&acfg->aot_opts)) {
7764                                         if (!(mono_class_generic_sharing_enabled (m->klass) &&
7765                                                   mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) &&
7766                                                 (!method_has_type_vars (m) || mono_method_is_generic_sharable_full (m, TRUE, TRUE, FALSE))) {
7767                                                 if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
7768                                                         if (mono_aot_mode_is_full (&acfg->aot_opts) && !method_has_type_vars (m))
7769                                                                 add_extra_method_with_depth (acfg, mono_marshal_get_native_wrapper (m, TRUE, TRUE), depth + 1);
7770                                                 } else {
7771                                                         add_extra_method_with_depth (acfg, m, depth + 1);
7772                                                         add_types_from_method_header (acfg, m);
7773                                                 }
7774                                         }
7775                                         add_generic_class_with_depth (acfg, m->klass, depth + 5, "method");
7776                                 }
7777                                 if (m->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED) {
7778                                         WrapperInfo *info = mono_marshal_get_wrapper_info (m);
7779
7780                                         if (info && info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR)
7781                                                 add_extra_method_with_depth (acfg, m, depth + 1);
7782                                 }
7783                                 break;
7784                         }
7785                         case MONO_PATCH_INFO_VTABLE: {
7786                                 MonoClass *klass = patch_info->data.klass;
7787
7788                                 if (mono_class_is_ginst (klass) && !mini_class_is_generic_sharable (klass))
7789                                         add_generic_class_with_depth (acfg, klass, depth + 5, "vtable");
7790                                 break;
7791                         }
7792                         case MONO_PATCH_INFO_SFLDA: {
7793                                 MonoClass *klass = patch_info->data.field->parent;
7794
7795                                 /* The .cctor needs to run at runtime. */
7796                                 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))
7797                                         add_extra_method_with_depth (acfg, mono_class_get_cctor (klass), depth + 1);
7798                                 break;
7799                         }
7800                         default:
7801                                 break;
7802                         }
7803                 }
7804         }
7805
7806         /* Determine whenever the method has GOT slots */
7807         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7808                 switch (patch_info->type) {
7809                 case MONO_PATCH_INFO_GOT_OFFSET:
7810                 case MONO_PATCH_INFO_NONE:
7811                 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
7812                 case MONO_PATCH_INFO_GC_NURSERY_START:
7813                 case MONO_PATCH_INFO_GC_NURSERY_BITS:
7814                         break;
7815                 case MONO_PATCH_INFO_IMAGE:
7816                         /* The assembly is stored in GOT slot 0 */
7817                         if (patch_info->data.image != acfg->image)
7818                                 cfg->has_got_slots = TRUE;
7819                         break;
7820                 default:
7821                         if (!is_plt_patch (patch_info) || (cfg->compile_llvm && acfg->aot_opts.llvm_only))
7822                                 cfg->has_got_slots = TRUE;
7823                         break;
7824                 }
7825         }
7826
7827         if (!cfg->has_got_slots)
7828                 InterlockedIncrement (&acfg->stats.methods_without_got_slots);
7829
7830         /* Add gsharedvt wrappers for signatures used by the method */
7831         if (acfg->aot_opts.llvm_only) {
7832                 GSList *l;
7833
7834                 if (!cfg->method->wrapper_type || cfg->method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
7835                         /* These only need out wrappers */
7836                         add_gsharedvt_wrappers (acfg, mono_method_signature (cfg->method), FALSE, TRUE);
7837
7838                 for (l = cfg->signatures; l; l = l->next) {
7839                         MonoMethodSignature *sig = mono_metadata_signature_dup ((MonoMethodSignature*)l->data);
7840
7841                         /* These only need in wrappers */
7842                         add_gsharedvt_wrappers (acfg, sig, TRUE, FALSE);
7843                 }
7844         }
7845
7846         /* 
7847          * FIXME: Instead of this mess, allocate the patches from the aot mempool.
7848          */
7849         /* Make a copy of the patch info which is in the mempool */
7850         {
7851                 MonoJumpInfo *patches = NULL, *patches_end = NULL;
7852
7853                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7854                         MonoJumpInfo *new_patch_info = mono_patch_info_dup_mp (acfg->mempool, patch_info);
7855
7856                         if (!patches)
7857                                 patches = new_patch_info;
7858                         else
7859                                 patches_end->next = new_patch_info;
7860                         patches_end = new_patch_info;
7861                 }
7862                 cfg->patch_info = patches;
7863         }
7864         /* Make a copy of the unwind info */
7865         {
7866                 GSList *l, *unwind_ops;
7867                 MonoUnwindOp *op;
7868
7869                 unwind_ops = NULL;
7870                 for (l = cfg->unwind_ops; l; l = l->next) {
7871                         op = (MonoUnwindOp *)mono_mempool_alloc (acfg->mempool, sizeof (MonoUnwindOp));
7872                         memcpy (op, l->data, sizeof (MonoUnwindOp));
7873                         unwind_ops = g_slist_prepend_mempool (acfg->mempool, unwind_ops, op);
7874                 }
7875                 cfg->unwind_ops = g_slist_reverse (unwind_ops);
7876         }
7877         /* Make a copy of the argument/local info */
7878         {
7879                 MonoError error;
7880                 MonoInst **args, **locals;
7881                 MonoMethodSignature *sig;
7882                 MonoMethodHeader *header;
7883                 int i;
7884                 
7885                 sig = mono_method_signature (method);
7886                 args = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * (sig->param_count + sig->hasthis));
7887                 for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
7888                         args [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7889                         memcpy (args [i], cfg->args [i], sizeof (MonoInst));
7890                 }
7891                 cfg->args = args;
7892
7893                 header = mono_method_get_header_checked (method, &error);
7894                 mono_error_assert_ok (&error); /* FIXME don't swallow the error */
7895                 locals = (MonoInst **)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst*) * header->num_locals);
7896                 for (i = 0; i < header->num_locals; ++i) {
7897                         locals [i] = (MonoInst *)mono_mempool_alloc (acfg->mempool, sizeof (MonoInst));
7898                         memcpy (locals [i], cfg->locals [i], sizeof (MonoInst));
7899                 }
7900                 mono_metadata_free_mh (header);
7901                 cfg->locals = locals;
7902         }
7903
7904         /* Free some fields used by cfg to conserve memory */
7905         mono_empty_compile (cfg);
7906
7907         //printf ("Compile:           %s\n", mono_method_full_name (method, TRUE));
7908
7909         while (index >= acfg->cfgs_size) {
7910                 MonoCompile **new_cfgs;
7911                 int new_size;
7912
7913                 new_size = acfg->cfgs_size * 2;
7914                 new_cfgs = g_new0 (MonoCompile*, new_size);
7915                 memcpy (new_cfgs, acfg->cfgs, sizeof (MonoCompile*) * acfg->cfgs_size);
7916                 g_free (acfg->cfgs);
7917                 acfg->cfgs = new_cfgs;
7918                 acfg->cfgs_size = new_size;
7919         }
7920         acfg->cfgs [index] = cfg;
7921
7922         g_hash_table_insert (acfg->method_to_cfg, cfg->orig_method, cfg);
7923
7924         mono_update_jit_stats (cfg);
7925
7926         /*
7927         if (cfg->orig_method->wrapper_type)
7928                 g_ptr_array_add (acfg->extra_methods, cfg->orig_method);
7929         */
7930
7931         mono_acfg_unlock (acfg);
7932
7933         InterlockedIncrement (&acfg->stats.ccount);
7934 }
7935  
7936 static mono_thread_start_return_t WINAPI
7937 compile_thread_main (gpointer user_data)
7938 {
7939         MonoAotCompile *acfg = ((MonoAotCompile **)user_data) [0];
7940         GPtrArray *methods = ((GPtrArray **)user_data) [1];
7941         int i;
7942
7943         MonoError error;
7944         MonoInternalThread *internal = mono_thread_internal_current ();
7945         MonoString *str = mono_string_new_checked (mono_domain_get (), "AOT compiler", &error);
7946         mono_error_assert_ok (&error);
7947         mono_thread_set_name_internal (internal, str, TRUE, FALSE, &error);
7948         mono_error_assert_ok (&error);
7949
7950         for (i = 0; i < methods->len; ++i)
7951                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (methods, i));
7952
7953         return 0;
7954 }
7955  
7956 /* Used by the LLVM backend */
7957 guint32
7958 mono_aot_get_got_offset (MonoJumpInfo *ji)
7959 {
7960         return get_got_offset (llvm_acfg, TRUE, ji);
7961 }
7962
7963 /*
7964  * mono_aot_is_shared_got_offset:
7965  *
7966  *   Return whenever OFFSET refers to a GOT slot which is preinitialized
7967  * when the AOT image is loaded.
7968  */
7969 gboolean
7970 mono_aot_is_shared_got_offset (int offset)
7971 {
7972         return offset < llvm_acfg->nshared_got_entries;
7973 }
7974
7975 char*
7976 mono_aot_get_method_name (MonoCompile *cfg)
7977 {
7978         if (llvm_acfg->aot_opts.static_link)
7979                 /* Include the assembly name too to avoid duplicate symbol errors */
7980                 return g_strdup_printf ("%s_%s", llvm_acfg->assembly_name_sym, get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash));
7981         else
7982                 return get_debug_sym (cfg->orig_method, "", llvm_acfg->method_label_hash);
7983 }
7984
7985 /*
7986  * mono_aot_is_linkonce_method:
7987  *
7988  *   Return whenever METHOD should be emitted with linkonce linkage,
7989  * eliminating duplicate copies when compiling in static mode.
7990  */
7991 gboolean
7992 mono_aot_is_linkonce_method (MonoMethod *method)
7993 {
7994         return FALSE;
7995 #if 0
7996         WrapperInfo *info;
7997
7998         // FIXME: Add more cases
7999         if (method->wrapper_type != MONO_WRAPPER_UNKNOWN)
8000                 return FALSE;
8001         info = mono_marshal_get_wrapper_info (method);
8002         if ((info && (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG || info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)))
8003                 return TRUE;
8004         return FALSE;
8005 #endif
8006 }
8007
8008 static gboolean
8009 append_mangled_type (GString *s, MonoType *t)
8010 {
8011         if (t->byref)
8012                 g_string_append_printf (s, "b");
8013         switch (t->type) {
8014         case MONO_TYPE_VOID:
8015                 g_string_append_printf (s, "void_");
8016                 break;
8017         case MONO_TYPE_I1:
8018                 g_string_append_printf (s, "i1");
8019                 break;
8020         case MONO_TYPE_U1:
8021                 g_string_append_printf (s, "u1");
8022                 break;
8023         case MONO_TYPE_I2:
8024                 g_string_append_printf (s, "i2");
8025                 break;
8026         case MONO_TYPE_U2:
8027                 g_string_append_printf (s, "u2");
8028                 break;
8029         case MONO_TYPE_I4:
8030                 g_string_append_printf (s, "i4");
8031                 break;
8032         case MONO_TYPE_U4:
8033                 g_string_append_printf (s, "u4");
8034                 break;
8035         case MONO_TYPE_I8:
8036                 g_string_append_printf (s, "i8");
8037                 break;
8038         case MONO_TYPE_U8:
8039                 g_string_append_printf (s, "u8");
8040                 break;
8041         case MONO_TYPE_I:
8042                 g_string_append_printf (s, "ii");
8043                 break;
8044         case MONO_TYPE_U:
8045                 g_string_append_printf (s, "ui");
8046                 break;
8047         case MONO_TYPE_R4:
8048                 g_string_append_printf (s, "fl");
8049                 break;
8050         case MONO_TYPE_R8:
8051                 g_string_append_printf (s, "do");
8052                 break;
8053         default: {
8054                 char *fullname = mono_type_full_name (t);
8055                 GString *temp;
8056                 char *temps;
8057                 int i, len;
8058
8059                 /*
8060                  * Have to create a mangled name which is:
8061                  * - a valid symbol
8062                  * - unique
8063                  */
8064                 temp = g_string_new ("");
8065                 len = strlen (fullname);
8066                 for (i = 0; i < len; ++i) {
8067                         char c = fullname [i];
8068                         if (isalnum (c)) {
8069                                 g_string_append_c (temp, c);
8070                         } else if (c == '_') {
8071                                 g_string_append_c (temp, '_');
8072                                 g_string_append_c (temp, '_');
8073                         } else {
8074                                 g_string_append_c (temp, '_');
8075                                 g_string_append_printf (temp, "%x", (int)c);
8076                         }
8077                 }
8078                 temps = g_string_free (temp, FALSE);
8079                 /* Include the length to avoid different length type names aliasing each other */
8080                 g_string_append_printf (s, "cl%x_%s_", strlen (temps), temps);
8081                 g_free (temps);
8082                 return TRUE;
8083         }
8084         }
8085         return TRUE;
8086 }
8087
8088 static gboolean
8089 append_mangled_signature (GString *s, MonoMethodSignature *sig)
8090 {
8091         int i;
8092         gboolean supported;
8093
8094         supported = append_mangled_type (s, sig->ret);
8095         if (!supported)
8096                 return FALSE;
8097         if (sig->hasthis)
8098                 g_string_append_printf (s, "this_");
8099         for (i = 0; i < sig->param_count; ++i) {
8100                 supported = append_mangled_type (s, sig->params [i]);
8101                 if (!supported)
8102                         return FALSE;
8103         }
8104
8105         return TRUE;
8106 }
8107
8108 static void
8109 append_mangled_wrapper_type (GString *s, guint32 wrapper_type) 
8110 {
8111         const char *label;
8112
8113         switch (wrapper_type) {
8114         case MONO_WRAPPER_REMOTING_INVOKE:
8115                 label = "remoting_invoke";
8116                 break;
8117         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8118                 label = "remoting_invoke_check";
8119                 break;
8120         case MONO_WRAPPER_XDOMAIN_INVOKE:
8121                 label = "remoting_invoke_xdomain";
8122                 break;
8123         case MONO_WRAPPER_PROXY_ISINST:
8124                 label = "proxy_isinst";
8125                 break;
8126         case MONO_WRAPPER_LDFLD:
8127                 label = "ldfld";
8128                 break;
8129         case MONO_WRAPPER_LDFLDA:
8130                 label = "ldflda";
8131                 break;
8132         case MONO_WRAPPER_STFLD: 
8133                 label = "stfld";
8134                 break;
8135         case MONO_WRAPPER_ALLOC:
8136                 label = "alloc";
8137                 break;
8138         case MONO_WRAPPER_WRITE_BARRIER:
8139                 label = "write_barrier";
8140                 break;
8141         case MONO_WRAPPER_STELEMREF:
8142                 label = "stelemref";
8143                 break;
8144         case MONO_WRAPPER_UNKNOWN:
8145                 label = "unknown";
8146                 break;
8147         case MONO_WRAPPER_MANAGED_TO_NATIVE:
8148                 label = "man2native";
8149                 break;
8150         case MONO_WRAPPER_SYNCHRONIZED:
8151                 label = "synch";
8152                 break;
8153         case MONO_WRAPPER_MANAGED_TO_MANAGED:
8154                 label = "man2man";
8155                 break;
8156         case MONO_WRAPPER_CASTCLASS:
8157                 label = "castclass";
8158                 break;
8159         case MONO_WRAPPER_RUNTIME_INVOKE:
8160                 label = "run_invoke";
8161                 break;
8162         case MONO_WRAPPER_DELEGATE_INVOKE:
8163                 label = "del_inv";
8164                 break;
8165         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8166                 label = "del_beg_inv";
8167                 break;
8168         case MONO_WRAPPER_DELEGATE_END_INVOKE:
8169                 label = "del_end_inv";
8170                 break;
8171         case MONO_WRAPPER_NATIVE_TO_MANAGED:
8172                 label = "native2man";
8173                 break;
8174         default:
8175                 g_assert_not_reached ();
8176         }
8177
8178         g_string_append_printf (s, "%s_", label);
8179 }
8180
8181 static void
8182 append_mangled_wrapper_subtype (GString *s, WrapperSubtype subtype) 
8183 {
8184         const char *label;
8185
8186         switch (subtype) 
8187         {
8188         case WRAPPER_SUBTYPE_NONE:
8189                 return;
8190         case WRAPPER_SUBTYPE_ELEMENT_ADDR:
8191                 label = "elem_addr";
8192                 break;
8193         case WRAPPER_SUBTYPE_STRING_CTOR:
8194                 label = "str_ctor";
8195                 break;
8196         case WRAPPER_SUBTYPE_VIRTUAL_STELEMREF:
8197                 label = "virt_stelem";
8198                 break;
8199         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER:
8200                 label = "fast_mon_enter";
8201                 break;
8202         case WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4:
8203                 label = "fast_mon_enter_4";
8204                 break;
8205         case WRAPPER_SUBTYPE_FAST_MONITOR_EXIT:
8206                 label = "fast_monitor_exit";
8207                 break;
8208         case WRAPPER_SUBTYPE_PTR_TO_STRUCTURE:
8209                 label = "ptr2struct";
8210                 break;
8211         case WRAPPER_SUBTYPE_STRUCTURE_TO_PTR:
8212                 label = "struct2ptr";
8213                 break;
8214         case WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE:
8215                 label = "castclass_w_cache";
8216                 break;
8217         case WRAPPER_SUBTYPE_ISINST_WITH_CACHE:
8218                 label = "isinst_w_cache";
8219                 break;
8220         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL:
8221                 label = "run_inv_norm";
8222                 break;
8223         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC:
8224                 label = "run_inv_dyn";
8225                 break;
8226         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT:
8227                 label = "run_inv_dir";
8228                 break;
8229         case WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL:
8230                 label = "run_inv_vir";
8231                 break;
8232         case WRAPPER_SUBTYPE_ICALL_WRAPPER:
8233                 label = "icall";
8234                 break;
8235         case WRAPPER_SUBTYPE_NATIVE_FUNC_AOT:
8236                 label = "native_func_aot";
8237                 break;
8238         case WRAPPER_SUBTYPE_PINVOKE:
8239                 label = "pinvoke";
8240                 break;
8241         case WRAPPER_SUBTYPE_SYNCHRONIZED_INNER:
8242                 label = "synch_inner";
8243                 break;
8244         case WRAPPER_SUBTYPE_GSHAREDVT_IN:
8245                 label = "gshared_in";
8246                 break;
8247         case WRAPPER_SUBTYPE_GSHAREDVT_OUT:
8248                 label = "gshared_out";
8249                 break;
8250         case WRAPPER_SUBTYPE_ARRAY_ACCESSOR:
8251                 label = "array_acc";
8252                 break;
8253         case WRAPPER_SUBTYPE_GENERIC_ARRAY_HELPER:
8254                 label = "generic_arry_help";
8255                 break;
8256         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_VIRTUAL:
8257                 label = "del_inv_virt";
8258                 break;
8259         case WRAPPER_SUBTYPE_DELEGATE_INVOKE_BOUND:
8260                 label = "del_inv_bound";
8261                 break;
8262         case WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG:
8263                 label = "gsharedvt_in_sig";
8264                 break;
8265         case WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG:
8266                 label = "gsharedvt_out_sig";
8267                 break;
8268         default:
8269                 g_assert_not_reached ();
8270         }
8271
8272         g_string_append_printf (s, "%s_", label);
8273 }
8274
8275 static char *
8276 sanitize_mangled_string (const char *input)
8277 {
8278         GString *s = g_string_new ("");
8279
8280         for (int i=0; input [i] != '\0'; i++) {
8281                 char c = input [i];
8282                 switch (c) {
8283                 case '.':
8284                         g_string_append (s, "_dot_");
8285                         break;
8286                 case ' ':
8287                         g_string_append (s, "_");
8288                         break;
8289                 case '`':
8290                         g_string_append (s, "_bt_");
8291                         break;
8292                 case '<':
8293                         g_string_append (s, "_le_");
8294                         break;
8295                 case '>':
8296                         g_string_append (s, "_gt_");
8297                         break;
8298                 case '/':
8299                         g_string_append (s, "_sl_");
8300                         break;
8301                 case '[':
8302                         g_string_append (s, "_lbrack_");
8303                         break;
8304                 case ']':
8305                         g_string_append (s, "_rbrack_");
8306                         break;
8307                 case '(':
8308                         g_string_append (s, "_lparen_");
8309                         break;
8310                 case '-':
8311                         g_string_append (s, "_dash_");
8312                         break;
8313                 case ')':
8314                         g_string_append (s, "_rparen_");
8315                         break;
8316                 case ',':
8317                         g_string_append (s, "_comma_");
8318                         break;
8319                 default:
8320                         g_string_append_c (s, c);
8321                 }
8322         }
8323
8324         return g_string_free (s, FALSE);
8325 }
8326
8327 static gboolean
8328 append_mangled_klass (GString *s, MonoClass *klass)
8329 {
8330         char *klass_desc = mono_class_full_name (klass);
8331         g_string_append_printf (s, "_%s_%s_", klass->name_space, klass_desc);
8332         g_free (klass_desc);
8333
8334         // Success
8335         return TRUE;
8336 }
8337
8338 static gboolean
8339 append_mangled_method (GString *s, MonoMethod *method);
8340
8341 static gboolean
8342 append_mangled_wrapper (GString *s, MonoMethod *method) 
8343 {
8344         gboolean success = TRUE;
8345         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8346         g_string_append_printf (s, "wrapper_");
8347
8348         append_mangled_wrapper_type (s, method->wrapper_type);
8349
8350         switch (method->wrapper_type) {
8351         case MONO_WRAPPER_REMOTING_INVOKE:
8352         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
8353         case MONO_WRAPPER_XDOMAIN_INVOKE: {
8354                 MonoMethod *m = mono_marshal_method_from_wrapper (method);
8355                 g_assert (m);
8356                 success = success && append_mangled_method (s, m);
8357                 break;
8358         }
8359         case MONO_WRAPPER_PROXY_ISINST:
8360         case MONO_WRAPPER_LDFLD:
8361         case MONO_WRAPPER_LDFLDA:
8362         case MONO_WRAPPER_STFLD: {
8363                 g_assert (info);
8364                 success = success && append_mangled_klass (s, info->d.proxy.klass);
8365                 break;
8366         }
8367         case MONO_WRAPPER_ALLOC: {
8368                 /* The GC name is saved once in MonoAotFileInfo */
8369                 g_assert (info->d.alloc.alloc_type != -1);
8370                 g_string_append_printf (s, "%d_", info->d.alloc.alloc_type);
8371                 // SlowAlloc, etc
8372                 g_string_append_printf (s, "%s_", method->name);
8373                 break;
8374         }
8375         case MONO_WRAPPER_WRITE_BARRIER: {
8376                 break;
8377         }
8378         case MONO_WRAPPER_STELEMREF: {
8379                 append_mangled_wrapper_subtype (s, info->subtype);
8380                 if (info->subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF)
8381                         g_string_append_printf (s, "%d", info->d.virtual_stelemref.kind);
8382                 break;
8383         }
8384         case MONO_WRAPPER_UNKNOWN: {
8385                 append_mangled_wrapper_subtype (s, info->subtype);
8386                 if (info->subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE ||
8387                         info->subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR)
8388                         success = success && append_mangled_klass (s, method->klass);
8389                 else if (info->subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER)
8390                         success = success && append_mangled_method (s, info->d.synchronized_inner.method);
8391                 else if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR)
8392                         success = success && append_mangled_method (s, info->d.array_accessor.method);
8393                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG)
8394                         append_mangled_signature (s, info->d.gsharedvt.sig);
8395                 else if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG)
8396                         append_mangled_signature (s, info->d.gsharedvt.sig);
8397                 break;
8398         }
8399         case MONO_WRAPPER_MANAGED_TO_NATIVE: {
8400                 append_mangled_wrapper_subtype (s, info->subtype);
8401                 if (info->subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
8402                         g_string_append_printf (s, "%s", method->name);
8403                 } else if (info->subtype == WRAPPER_SUBTYPE_NATIVE_FUNC_AOT) {
8404                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8405                 } else {
8406                         g_assert (info->subtype == WRAPPER_SUBTYPE_NONE || info->subtype == WRAPPER_SUBTYPE_PINVOKE);
8407                         success = success && append_mangled_method (s, info->d.managed_to_native.method);
8408                 }
8409                 break;
8410         }
8411         case MONO_WRAPPER_SYNCHRONIZED: {
8412                 MonoMethod *m;
8413
8414                 m = mono_marshal_method_from_wrapper (method);
8415                 g_assert (m);
8416                 g_assert (m != method);
8417                 success = success && append_mangled_method (s, m);
8418                 break;
8419         }
8420         case MONO_WRAPPER_MANAGED_TO_MANAGED: {
8421                 append_mangled_wrapper_subtype (s, info->subtype);
8422
8423                 if (info->subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
8424                         g_string_append_printf (s, "%d_", info->d.element_addr.rank);
8425                         g_string_append_printf (s, "%d_", info->d.element_addr.elem_size);
8426                 } else if (info->subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
8427                         success = success && append_mangled_method (s, info->d.string_ctor.method);
8428                 } else {
8429                         g_assert_not_reached ();
8430                 }
8431                 break;
8432         }
8433         case MONO_WRAPPER_CASTCLASS: {
8434                 append_mangled_wrapper_subtype (s, info->subtype);
8435                 break;
8436         }
8437         case MONO_WRAPPER_RUNTIME_INVOKE: {
8438                 append_mangled_wrapper_subtype (s, info->subtype);
8439                 if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT || info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL)
8440                         success = success && append_mangled_method (s, info->d.runtime_invoke.method);
8441                 else if (info->subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL)
8442                         success = success && append_mangled_signature (s, info->d.runtime_invoke.sig);
8443                 break;
8444         }
8445         case MONO_WRAPPER_DELEGATE_INVOKE:
8446         case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
8447         case MONO_WRAPPER_DELEGATE_END_INVOKE: {
8448                 if (method->is_inflated) {
8449                         /* These wrappers are identified by their class */
8450                         g_string_append_printf (s, "i_");
8451                         success = success && append_mangled_klass (s, method->klass);
8452                 } else {
8453                         WrapperInfo *info = mono_marshal_get_wrapper_info (method);
8454
8455                         g_string_append_printf (s, "u_");
8456                         if (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE)
8457                                 append_mangled_wrapper_subtype (s, info->subtype);
8458                         g_string_append_printf (s, "u_sigstart");
8459                 }
8460                 break;
8461         }
8462         case MONO_WRAPPER_NATIVE_TO_MANAGED: {
8463                 g_assert (info);
8464                 success = success && append_mangled_method (s, info->d.native_to_managed.method);
8465                 success = success && append_mangled_klass (s, method->klass);
8466                 break;
8467         }
8468         default:
8469                 g_assert_not_reached ();
8470         }
8471         return success && append_mangled_signature (s, mono_method_signature (method));
8472 }
8473
8474 static void
8475 append_mangled_context (GString *str, MonoGenericContext *context)
8476 {
8477         GString *res = g_string_new ("");
8478
8479         g_string_append_printf (res, "gens_");
8480         g_string_append (res, "00");
8481
8482         gboolean good = context->class_inst && context->class_inst->type_argc > 0;
8483         good = good || (context->method_inst && context->method_inst->type_argc > 0);
8484         g_assert (good);
8485
8486         if (context->class_inst)
8487                 mono_ginst_get_desc (res, context->class_inst);
8488         if (context->method_inst) {
8489                 if (context->class_inst)
8490                         g_string_append (res, "11");
8491                 mono_ginst_get_desc (res, context->method_inst);
8492         }
8493         g_string_append_printf (str, "gens_%s", res->str);
8494 }       
8495
8496 static gboolean
8497 append_mangled_method (GString *s, MonoMethod *method)
8498 {
8499         if (method->wrapper_type)
8500                 return append_mangled_wrapper (s, method);
8501
8502         g_string_append_printf (s, "%s_", method->klass->image->assembly->aname.name);
8503
8504         if (method->is_inflated) {
8505                 g_string_append_printf (s, "inflated_");
8506                 MonoMethodInflated *imethod = (MonoMethodInflated*) method;
8507                 g_assert (imethod->context.class_inst != NULL || imethod->context.method_inst != NULL);
8508
8509                 append_mangled_context (s, &imethod->context);
8510                 g_string_append_printf (s, "_declared_by_");
8511                 append_mangled_method (s, imethod->declaring);
8512         } else if (method->is_generic) {
8513                 g_string_append_printf (s, "generic_");
8514                 append_mangled_klass (s, method->klass);
8515                 g_string_append_printf (s, "_%s_", method->name);
8516
8517                 MonoGenericContainer *container = mono_method_get_generic_container (method);
8518                 g_string_append_printf (s, "_%s");
8519                 append_mangled_context (s, &container->context);
8520
8521                 return append_mangled_signature (s, mono_method_signature (method));
8522         } else {
8523                 g_string_append_printf (s, "_");
8524                 append_mangled_klass (s, method->klass);
8525                 g_string_append_printf (s, "_%s_", method->name);
8526                 if (!append_mangled_signature (s, mono_method_signature (method))) {
8527                         g_string_free (s, TRUE);
8528                         return FALSE;
8529                 }
8530         }
8531
8532         return TRUE;
8533 }
8534
8535 /*
8536  * mono_aot_get_mangled_method_name:
8537  *
8538  *   Return a unique mangled name for METHOD, or NULL.
8539  */
8540 char*
8541 mono_aot_get_mangled_method_name (MonoMethod *method)
8542 {
8543         GString *s = g_string_new ("aot_");
8544         if (!append_mangled_method (s, method)) {
8545                 g_string_free (s, TRUE);
8546                 return NULL;
8547         } else {
8548                 char *out = g_string_free (s, FALSE);
8549                 // Scrub method and class names
8550                 char *cleaned = sanitize_mangled_string (out);
8551                 g_free (out);
8552                 return cleaned;
8553         }
8554 }
8555
8556 gboolean
8557 mono_aot_is_direct_callable (MonoJumpInfo *patch_info)
8558 {
8559         return is_direct_callable (llvm_acfg, NULL, patch_info);
8560 }
8561
8562 void
8563 mono_aot_mark_unused_llvm_plt_entry (MonoJumpInfo *patch_info)
8564 {
8565         MonoPltEntry *plt_entry;
8566
8567         plt_entry = get_plt_entry (llvm_acfg, patch_info);
8568         plt_entry->llvm_used = FALSE;
8569 }
8570
8571 char*
8572 mono_aot_get_direct_call_symbol (MonoJumpInfoType type, gconstpointer data)
8573 {
8574         const char *sym = NULL;
8575
8576         if (llvm_acfg->aot_opts.direct_icalls) {
8577                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8578                         /* Call to a C function implementing a jit icall */
8579                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8580                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8581                         MonoMethod *method = (MonoMethod *)data;
8582                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8583                                 sym = mono_lookup_icall_symbol (method);
8584                         else if (llvm_acfg->aot_opts.direct_pinvoke)
8585                                 sym = get_pinvoke_import (llvm_acfg, method);
8586                 }
8587                 if (sym)
8588                         return g_strdup (sym);
8589         }
8590         return NULL;
8591 }
8592
8593 char*
8594 mono_aot_get_plt_symbol (MonoJumpInfoType type, gconstpointer data)
8595 {
8596         MonoJumpInfo *ji = (MonoJumpInfo *)mono_mempool_alloc (llvm_acfg->mempool, sizeof (MonoJumpInfo));
8597         MonoPltEntry *plt_entry;
8598         const char *sym = NULL;
8599
8600         ji->type = type;
8601         ji->data.target = data;
8602
8603         if (!can_encode_patch (llvm_acfg, ji))
8604                 return NULL;
8605
8606         if (llvm_acfg->aot_opts.direct_icalls) {
8607                 if (type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8608                         /* Call to a C function implementing a jit icall */
8609                         sym = mono_lookup_jit_icall_symbol ((const char *)data);
8610                 } else if (type == MONO_PATCH_INFO_ICALL_ADDR_CALL) {
8611                         MonoMethod *method = (MonoMethod *)data;
8612                         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
8613                                 sym = mono_lookup_icall_symbol (method);
8614                 }
8615                 if (sym)
8616                         return g_strdup (sym);
8617         }
8618
8619         plt_entry = get_plt_entry (llvm_acfg, ji);
8620         plt_entry->llvm_used = TRUE;
8621
8622 #if defined(TARGET_MACH)
8623         return g_strdup_printf (plt_entry->llvm_symbol + strlen (llvm_acfg->llvm_label_prefix));
8624 #else
8625         return g_strdup_printf (plt_entry->llvm_symbol);
8626 #endif
8627 }
8628
8629 int
8630 mono_aot_get_method_index (MonoMethod *method)
8631 {
8632         g_assert (llvm_acfg);
8633         return get_method_index (llvm_acfg, method);
8634 }
8635
8636 MonoJumpInfo*
8637 mono_aot_patch_info_dup (MonoJumpInfo* ji)
8638 {
8639         MonoJumpInfo *res;
8640
8641         mono_acfg_lock (llvm_acfg);
8642         res = mono_patch_info_dup_mp (llvm_acfg->mempool, ji);
8643         mono_acfg_unlock (llvm_acfg);
8644
8645         return res;
8646 }
8647
8648 static int
8649 execute_system (const char * command)
8650 {
8651         int status = 0;
8652
8653 #if defined(HOST_WIN32)
8654         // We need an extra set of quotes around the whole command to properly handle commands 
8655         // with spaces since internally the command is called through "cmd /c.
8656         char * quoted_command = g_strdup_printf ("\"%s\"", command);
8657
8658         int size =  MultiByteToWideChar (CP_UTF8, 0 , quoted_command , -1, NULL , 0);
8659         wchar_t* wstr = g_malloc (sizeof (wchar_t) * size);
8660         MultiByteToWideChar (CP_UTF8, 0, quoted_command, -1, wstr , size);
8661         status = _wsystem (wstr);
8662         g_free (wstr);
8663
8664         g_free (quoted_command);
8665 #elif defined (HAVE_SYSTEM)
8666         status = system (command);
8667 #else
8668         g_assert_not_reached ();
8669 #endif
8670
8671         return status;
8672 }
8673
8674 #ifdef ENABLE_LLVM
8675
8676 /*
8677  * emit_llvm_file:
8678  *
8679  *   Emit the LLVM code into an LLVM bytecode file, and compile it using the LLVM
8680  * tools.
8681  */
8682 static gboolean
8683 emit_llvm_file (MonoAotCompile *acfg)
8684 {
8685         char *command, *opts, *tempbc, *optbc, *output_fname;
8686
8687         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only) {
8688                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8689                 optbc = g_strdup (acfg->aot_opts.llvm_outfile);
8690         } else {
8691                 tempbc = g_strdup_printf ("%s.bc", acfg->tmpbasename);
8692                 optbc = g_strdup_printf ("%s.opt.bc", acfg->tmpbasename);
8693         }
8694
8695         mono_llvm_emit_aot_module (tempbc, g_path_get_basename (acfg->image->name));
8696
8697         /*
8698          * FIXME: Experiment with adding optimizations, the -std-compile-opts set takes
8699          * a lot of time, and doesn't seem to save much space.
8700          * The following optimizations cannot be enabled:
8701          * - 'tailcallelim'
8702          * - 'jump-threading' changes our blockaddress references to int constants.
8703          * - 'basiccg' fails because it contains:
8704          * if (CS && !isa<IntrinsicInst>(II)) {
8705          * and isa<IntrinsicInst> is false for invokes to intrinsics (iltests.exe).
8706          * - 'prune-eh' and 'functionattrs' depend on 'basiccg'.
8707          * The opt list below was produced by taking the output of:
8708          * llvm-as < /dev/null | opt -O2 -disable-output -debug-pass=Arguments
8709          * then removing tailcallelim + the global opts.
8710          * strip-dead-prototypes deletes unused intrinsics definitions.
8711          */
8712         /* The dse pass is disabled because of #13734 and #17616 */
8713         /*
8714          * The dse bug is in DeadStoreElimination.cpp:isOverwrite ():
8715          * // If we have no DataLayout information around, then the size of the store
8716          *  // is inferrable from the pointee type.  If they are the same type, then
8717          * // we know that the store is safe.
8718          * if (AA.getDataLayout() == 0 &&
8719          * Later.Ptr->getType() == Earlier.Ptr->getType()) {
8720          * return OverwriteComplete;
8721          * Here, if 'Earlier' refers to a memset, and Later has no size info, it mistakenly thinks the memset is redundant.
8722          */
8723         if (acfg->aot_opts.llvm_only)
8724                 // FIXME: This doesn't work yet
8725                 opts = g_strdup ("");
8726         else
8727 #if LLVM_API_VERSION > 100
8728                 opts = g_strdup ("-O2 -disable-tail-calls");
8729 #else
8730                 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");
8731 #endif
8732         command = g_strdup_printf ("\"%sopt\" -f %s -o \"%s\" \"%s\"", acfg->aot_opts.llvm_path, opts, optbc, tempbc);
8733         aot_printf (acfg, "Executing opt: %s\n", command);
8734         if (execute_system (command) != 0)
8735                 return FALSE;
8736         g_free (opts);
8737
8738         if (acfg->aot_opts.llvm_only && acfg->aot_opts.asm_only)
8739                 /* Nothing else to do */
8740                 return TRUE;
8741
8742         if (acfg->aot_opts.llvm_only) {
8743                 /* Use the stock clang from xcode */
8744                 // FIXME: arch
8745                 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);
8746
8747                 aot_printf (acfg, "Executing clang: %s\n", command);
8748                 if (execute_system (command) != 0)
8749                         return FALSE;
8750                 return TRUE;
8751         }
8752
8753         if (!acfg->llc_args)
8754                 acfg->llc_args = g_string_new ("");
8755
8756         /* Verbose asm slows down llc greatly */
8757         g_string_append (acfg->llc_args, " -asm-verbose=false");
8758
8759         if (acfg->aot_opts.mtriple)
8760                 g_string_append_printf (acfg->llc_args, " -mtriple=%s", acfg->aot_opts.mtriple);
8761
8762         g_string_append (acfg->llc_args, " -disable-gnu-eh-frame -enable-mono-eh-frame");
8763
8764         g_string_append_printf (acfg->llc_args, " -mono-eh-frame-symbol=%s%s", acfg->user_symbol_prefix, acfg->llvm_eh_frame_symbol);
8765
8766 #if LLVM_API_VERSION > 100
8767         g_string_append_printf (acfg->llc_args, " -disable-tail-calls");
8768 #endif
8769
8770 #if ( defined(TARGET_MACH) && defined(TARGET_ARM) ) || defined(TARGET_ORBIS)
8771         /* ios requires PIC code now */
8772         g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8773 #else
8774         if (llvm_acfg->aot_opts.static_link)
8775                 g_string_append_printf (acfg->llc_args, " -relocation-model=static");
8776         else
8777                 g_string_append_printf (acfg->llc_args, " -relocation-model=pic");
8778 #endif
8779
8780         if (acfg->llvm_owriter) {
8781                 /* Emit an object file directly */
8782                 output_fname = g_strdup_printf ("%s", acfg->llvm_ofile);
8783                 g_string_append_printf (acfg->llc_args, " -filetype=obj");
8784         } else {
8785                 output_fname = g_strdup_printf ("%s", acfg->llvm_sfile);
8786         }
8787         command = g_strdup_printf ("\"%sllc\" %s -o \"%s\" \"%s.opt.bc\"", acfg->aot_opts.llvm_path, acfg->llc_args->str, output_fname, acfg->tmpbasename);
8788         g_free (output_fname);
8789
8790         aot_printf (acfg, "Executing llc: %s\n", command);
8791
8792         if (execute_system (command) != 0)
8793                 return FALSE;
8794         return TRUE;
8795 }
8796 #endif
8797
8798 static void
8799 emit_code (MonoAotCompile *acfg)
8800 {
8801         int oindex, i, prev_index;
8802         gboolean saved_unbox_info = FALSE;
8803         char symbol [MAX_SYMBOL_SIZE];
8804
8805         if (acfg->aot_opts.llvm_only)
8806                 return;
8807
8808 #if defined(TARGET_POWERPC64)
8809         sprintf (symbol, ".Lgot_addr");
8810         emit_section_change (acfg, ".text", 0);
8811         emit_alignment (acfg, 8);
8812         emit_label (acfg, symbol);
8813         emit_pointer (acfg, acfg->got_symbol);
8814 #endif
8815
8816         /* 
8817          * This global symbol is used to compute the address of each method using the
8818          * code_offsets array. It is also used to compute the memory ranges occupied by
8819          * AOT code, so it must be equal to the address of the first emitted method.
8820          */
8821         emit_section_change (acfg, ".text", 0);
8822         emit_alignment_code (acfg, 8);
8823         emit_info_symbol (acfg, "jit_code_start");
8824
8825         /* 
8826          * Emit some padding so the local symbol for the first method doesn't have the
8827          * same address as 'methods'.
8828          */
8829         emit_padding (acfg, 16);
8830
8831         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
8832                 MonoCompile *cfg;
8833                 MonoMethod *method;
8834
8835                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
8836
8837                 cfg = acfg->cfgs [i];
8838
8839                 if (!cfg)
8840                         continue;
8841
8842                 method = cfg->orig_method;
8843
8844                 /* Emit unbox trampoline */
8845                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8846                         sprintf (symbol, "ut_%d", get_method_index (acfg, method));
8847
8848                         emit_section_change (acfg, ".text", 0);
8849
8850                         if (acfg->thumb_mixed && cfg->compile_llvm) {
8851                                 emit_set_thumb_mode (acfg);
8852                                 fprintf (acfg->fp, "\n.thumb_func\n");
8853                         }
8854
8855                         emit_label (acfg, symbol);
8856
8857                         arch_emit_unbox_trampoline (acfg, cfg, cfg->orig_method, cfg->asm_symbol);
8858
8859                         if (acfg->thumb_mixed && cfg->compile_llvm)
8860                                 emit_set_arm_mode (acfg);
8861
8862                         if (!saved_unbox_info) {
8863                                 char user_symbol [128];
8864                                 GSList *unwind_ops;
8865                                 sprintf (user_symbol, "%sunbox_trampoline_p", acfg->user_symbol_prefix);
8866
8867                                 emit_label (acfg, "ut_end");
8868
8869                                 unwind_ops = mono_unwind_get_cie_program ();
8870                                 save_unwind_info (acfg, user_symbol, unwind_ops);
8871                                 mono_free_unwind_info (unwind_ops);
8872
8873                                 /* Save the unbox trampoline size */
8874                                 emit_symbol_diff (acfg, "ut_end", symbol, 0);
8875
8876                                 saved_unbox_info = TRUE;
8877                         }
8878                 }
8879
8880                 if (cfg->compile_llvm)
8881                         acfg->stats.llvm_count ++;
8882                 else
8883                         emit_method_code (acfg, cfg);
8884         }
8885
8886         emit_section_change (acfg, ".text", 0);
8887         emit_alignment_code (acfg, 8);
8888         emit_info_symbol (acfg, "jit_code_end");
8889
8890         /* To distinguish it from the next symbol */
8891         emit_padding (acfg, 4);
8892
8893         /* 
8894          * Add .no_dead_strip directives for all LLVM methods to prevent the OSX linker
8895          * from optimizing them away, since it doesn't see that code_offsets references them.
8896          * JITted methods don't need this since they are referenced using assembler local
8897          * symbols.
8898          * FIXME: This is why write-symbols doesn't work on OSX ?
8899          */
8900         if (acfg->llvm && acfg->need_no_dead_strip) {
8901                 fprintf (acfg->fp, "\n");
8902                 for (i = 0; i < acfg->nmethods; ++i) {
8903                         if (acfg->cfgs [i] && acfg->cfgs [i]->compile_llvm)
8904                                 fprintf (acfg->fp, ".no_dead_strip %s\n", acfg->cfgs [i]->asm_symbol);
8905                 }
8906         }
8907
8908         /*
8909          * To work around linker issues, we emit a table of branches, and disassemble them at runtime.
8910          * This is PIE code, and the linker can update it if needed.
8911          */
8912         
8913         sprintf (symbol, "method_addresses");
8914         emit_section_change (acfg, ".text", 1);
8915         emit_alignment_code (acfg, 8);
8916         emit_info_symbol (acfg, symbol);
8917         if (acfg->aot_opts.write_symbols)
8918                 emit_local_symbol (acfg, symbol, "method_addresses_end", TRUE);
8919         emit_unset_mode (acfg);
8920         if (acfg->need_no_dead_strip)
8921                 fprintf (acfg->fp, "    .no_dead_strip %s\n", symbol);
8922
8923         for (i = 0; i < acfg->nmethods; ++i) {
8924 #ifdef MONO_ARCH_AOT_SUPPORTED
8925                 int call_size;
8926
8927                 if (acfg->cfgs [i]) {
8928                         arch_emit_direct_call (acfg, acfg->cfgs [i]->asm_symbol, FALSE, acfg->thumb_mixed && acfg->cfgs [i]->compile_llvm, NULL, &call_size);
8929                 } else {
8930                         arch_emit_direct_call (acfg, symbol, FALSE, FALSE, NULL, &call_size);
8931                 }
8932 #endif
8933         }
8934
8935         sprintf (symbol, "method_addresses_end");
8936         emit_label (acfg, symbol);
8937         emit_line (acfg);
8938
8939         /* Emit a sorted table mapping methods to the index of their unbox trampolines */
8940         sprintf (symbol, "unbox_trampolines");
8941         emit_section_change (acfg, RODATA_SECT, 0);
8942         emit_alignment (acfg, 8);
8943         emit_info_symbol (acfg, symbol);
8944
8945         prev_index = -1;
8946         for (i = 0; i < acfg->nmethods; ++i) {
8947                 MonoCompile *cfg;
8948                 MonoMethod *method;
8949                 int index;
8950
8951                 cfg = acfg->cfgs [i];
8952                 if (!cfg)
8953                         continue;
8954
8955                 method = cfg->orig_method;
8956
8957                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8958                         index = get_method_index (acfg, method);
8959
8960                         emit_int32 (acfg, index);
8961                         /* Make sure the table is sorted by index */
8962                         g_assert (index > prev_index);
8963                         prev_index = index;
8964                 }
8965         }
8966         sprintf (symbol, "unbox_trampolines_end");
8967         emit_info_symbol (acfg, symbol);
8968         emit_int32 (acfg, 0);
8969
8970         /* Emit a separate table with the trampoline addresses/offsets */
8971         sprintf (symbol, "unbox_trampoline_addresses");
8972         emit_section_change (acfg, ".text", 0);
8973         emit_alignment_code (acfg, 8);
8974         emit_info_symbol (acfg, symbol);
8975
8976         for (i = 0; i < acfg->nmethods; ++i) {
8977                 MonoCompile *cfg;
8978                 MonoMethod *method;
8979                 int index;
8980
8981                 cfg = acfg->cfgs [i];
8982                 if (!cfg)
8983                         continue;
8984
8985                 method = cfg->orig_method;
8986
8987                 if (mono_aot_mode_is_full (&acfg->aot_opts) && cfg->orig_method->klass->valuetype) {
8988 #ifdef MONO_ARCH_AOT_SUPPORTED
8989                         int call_size;
8990
8991                         index = get_method_index (acfg, method);
8992                         sprintf (symbol, "ut_%d", index);
8993
8994                         arch_emit_direct_call (acfg, symbol, FALSE, acfg->thumb_mixed && cfg->compile_llvm, NULL, &call_size);
8995 #endif
8996                 }
8997         }
8998         emit_int32 (acfg, 0);
8999 }
9000
9001 static void
9002 emit_info (MonoAotCompile *acfg)
9003 {
9004         int oindex, i;
9005         gint32 *offsets;
9006
9007         offsets = g_new0 (gint32, acfg->nmethods);
9008
9009         for (oindex = 0; oindex < acfg->method_order->len; ++oindex) {
9010                 i = GPOINTER_TO_UINT (g_ptr_array_index (acfg->method_order, oindex));
9011
9012                 if (acfg->cfgs [i]) {
9013                         emit_method_info (acfg, acfg->cfgs [i]);
9014                         offsets [i] = acfg->cfgs [i]->method_info_offset;
9015                 } else {
9016                         offsets [i] = 0;
9017                 }
9018         }
9019
9020         acfg->stats.offsets_size += emit_offset_table (acfg, "method_info_offsets", MONO_AOT_TABLE_METHOD_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9021
9022         g_free (offsets);
9023 }
9024
9025 #endif /* #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT) */
9026
9027 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
9028 #define mix(a,b,c) { \
9029         a -= c;  a ^= rot(c, 4);  c += b; \
9030         b -= a;  b ^= rot(a, 6);  a += c; \
9031         c -= b;  c ^= rot(b, 8);  b += a; \
9032         a -= c;  a ^= rot(c,16);  c += b; \
9033         b -= a;  b ^= rot(a,19);  a += c; \
9034         c -= b;  c ^= rot(b, 4);  b += a; \
9035 }
9036 #define final(a,b,c) { \
9037         c ^= b; c -= rot(b,14); \
9038         a ^= c; a -= rot(c,11); \
9039         b ^= a; b -= rot(a,25); \
9040         c ^= b; c -= rot(b,16); \
9041         a ^= c; a -= rot(c,4);  \
9042         b ^= a; b -= rot(a,14); \
9043         c ^= b; c -= rot(b,24); \
9044 }
9045
9046 static guint
9047 mono_aot_type_hash (MonoType *t1)
9048 {
9049         guint hash = t1->type;
9050
9051         hash |= t1->byref << 6; /* do not collide with t1->type values */
9052         switch (t1->type) {
9053         case MONO_TYPE_VALUETYPE:
9054         case MONO_TYPE_CLASS:
9055         case MONO_TYPE_SZARRAY:
9056                 /* check if the distribution is good enough */
9057                 return ((hash << 5) - hash) ^ mono_metadata_str_hash (t1->data.klass->name);
9058         case MONO_TYPE_PTR:
9059                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
9060         case MONO_TYPE_ARRAY:
9061                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
9062         case MONO_TYPE_GENERICINST:
9063                 return ((hash << 5) - hash) ^ 0;
9064         default:
9065                 return hash;
9066         }
9067 }
9068
9069 /*
9070  * mono_aot_method_hash:
9071  *
9072  *   Return a hash code for methods which only depends on metadata.
9073  */
9074 guint32
9075 mono_aot_method_hash (MonoMethod *method)
9076 {
9077         MonoMethodSignature *sig;
9078         MonoClass *klass;
9079         int i, hindex;
9080         int hashes_count;
9081         guint32 *hashes_start, *hashes;
9082         guint32 a, b, c;
9083         MonoGenericInst *class_ginst = NULL;
9084         MonoGenericInst *ginst = NULL;
9085
9086         /* Similar to the hash in mono_method_get_imt_slot () */
9087
9088         sig = mono_method_signature (method);
9089
9090         if (mono_class_is_ginst (method->klass))
9091                 class_ginst = mono_class_get_generic_class (method->klass)->context.class_inst;
9092         if (method->is_inflated)
9093                 ginst = ((MonoMethodInflated*)method)->context.method_inst;
9094
9095         hashes_count = sig->param_count + 5 + (class_ginst ? class_ginst->type_argc : 0) + (ginst ? ginst->type_argc : 0);
9096         hashes_start = (guint32 *)g_malloc0 (hashes_count * sizeof (guint32));
9097         hashes = hashes_start;
9098
9099         /* Some wrappers are assigned to random classes */
9100         if (!method->wrapper_type || method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
9101                 klass = method->klass;
9102         else
9103                 klass = mono_defaults.object_class;
9104
9105         if (!method->wrapper_type) {
9106                 char *full_name;
9107
9108                 if (mono_class_is_ginst (klass))
9109                         full_name = mono_type_full_name (&mono_class_get_generic_class (klass)->container_class->byval_arg);
9110                 else
9111                         full_name = mono_type_full_name (&klass->byval_arg);
9112
9113                 hashes [0] = mono_metadata_str_hash (full_name);
9114                 hashes [1] = 0;
9115                 g_free (full_name);
9116         } else {
9117                 hashes [0] = mono_metadata_str_hash (klass->name);
9118                 hashes [1] = mono_metadata_str_hash (klass->name_space);
9119         }
9120         if (method->wrapper_type == MONO_WRAPPER_STFLD || method->wrapper_type == MONO_WRAPPER_LDFLD || method->wrapper_type == MONO_WRAPPER_LDFLDA)
9121                 /* The method name includes a stringified pointer */
9122                 hashes [2] = 0;
9123         else
9124                 hashes [2] = mono_metadata_str_hash (method->name);
9125         hashes [3] = method->wrapper_type;
9126         hashes [4] = mono_aot_type_hash (sig->ret);
9127         hindex = 5;
9128         for (i = 0; i < sig->param_count; i++) {
9129                 hashes [hindex ++] = mono_aot_type_hash (sig->params [i]);
9130         }
9131         if (class_ginst) {
9132                 for (i = 0; i < class_ginst->type_argc; ++i)
9133                         hashes [hindex ++] = mono_aot_type_hash (class_ginst->type_argv [i]);
9134         }
9135         if (ginst) {
9136                 for (i = 0; i < ginst->type_argc; ++i)
9137                         hashes [hindex ++] = mono_aot_type_hash (ginst->type_argv [i]);
9138         }               
9139         g_assert (hindex == hashes_count);
9140
9141         /* Setup internal state */
9142         a = b = c = 0xdeadbeef + (((guint32)hashes_count)<<2);
9143
9144         /* Handle most of the hashes */
9145         while (hashes_count > 3) {
9146                 a += hashes [0];
9147                 b += hashes [1];
9148                 c += hashes [2];
9149                 mix (a,b,c);
9150                 hashes_count -= 3;
9151                 hashes += 3;
9152         }
9153
9154         /* Handle the last 3 hashes (all the case statements fall through) */
9155         switch (hashes_count) { 
9156         case 3 : c += hashes [2];
9157         case 2 : b += hashes [1];
9158         case 1 : a += hashes [0];
9159                 final (a,b,c);
9160         case 0: /* nothing left to add */
9161                 break;
9162         }
9163         
9164         g_free (hashes_start);
9165         
9166         return c;
9167 }
9168 #undef rot
9169 #undef mix
9170 #undef final
9171
9172 /*
9173  * mono_aot_get_array_helper_from_wrapper;
9174  *
9175  * Get the helper method in Array called by an array wrapper method.
9176  */
9177 MonoMethod*
9178 mono_aot_get_array_helper_from_wrapper (MonoMethod *method)
9179 {
9180         MonoMethod *m;
9181         const char *prefix;
9182         MonoGenericContext ctx;
9183         MonoType *args [16];
9184         char *mname, *iname, *s, *s2, *helper_name = NULL;
9185
9186         prefix = "System.Collections.Generic";
9187         s = g_strdup_printf ("%s", method->name + strlen (prefix) + 1);
9188         s2 = strstr (s, "`1.");
9189         g_assert (s2);
9190         s2 [0] = '\0';
9191         iname = s;
9192         mname = s2 + 3;
9193
9194         //printf ("X: %s %s\n", iname, mname);
9195
9196         if (!strcmp (iname, "IList"))
9197                 helper_name = g_strdup_printf ("InternalArray__%s", mname);
9198         else
9199                 helper_name = g_strdup_printf ("InternalArray__%s_%s", iname, mname);
9200         m = mono_class_get_method_from_name (mono_defaults.array_class, helper_name, mono_method_signature (method)->param_count);
9201         g_assert (m);
9202         g_free (helper_name);
9203         g_free (s);
9204
9205         if (m->is_generic) {
9206                 MonoError error;
9207                 memset (&ctx, 0, sizeof (ctx));
9208                 args [0] = &method->klass->element_class->byval_arg;
9209                 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
9210                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
9211                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
9212         }
9213
9214         return m;
9215 }
9216
9217 #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT)
9218
9219 typedef struct HashEntry {
9220     guint32 key, value, index;
9221         struct HashEntry *next;
9222 } HashEntry;
9223
9224 /*
9225  * emit_extra_methods:
9226  *
9227  * Emit methods which are not in the METHOD table, like wrappers.
9228  */
9229 static void
9230 emit_extra_methods (MonoAotCompile *acfg)
9231 {
9232         int i, table_size, buf_size;
9233         guint8 *p, *buf;
9234         guint32 *info_offsets;
9235         guint32 hash;
9236         GPtrArray *table;
9237         HashEntry *entry, *new_entry;
9238         int nmethods, max_chain_length;
9239         int *chain_lengths;
9240
9241         info_offsets = g_new0 (guint32, acfg->extra_methods->len);
9242
9243         /* Emit method info */
9244         nmethods = 0;
9245         for (i = 0; i < acfg->extra_methods->len; ++i) {
9246                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9247                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9248
9249                 if (!cfg)
9250                         continue;
9251
9252                 buf_size = 10240;
9253                 p = buf = (guint8 *)g_malloc (buf_size);
9254
9255                 nmethods ++;
9256
9257                 method = cfg->method_to_register;
9258
9259                 encode_method_ref (acfg, method, p, &p);
9260
9261                 g_assert ((p - buf) < buf_size);
9262
9263                 info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9264                 g_free (buf);
9265         }
9266
9267         /*
9268          * Construct a chained hash table for mapping indexes in extra_method_info to
9269          * method indexes.
9270          */
9271         table_size = g_spaced_primes_closest ((int)(nmethods * 1.5));
9272         table = g_ptr_array_sized_new (table_size);
9273         for (i = 0; i < table_size; ++i)
9274                 g_ptr_array_add (table, NULL);
9275         chain_lengths = g_new0 (int, table_size);
9276         max_chain_length = 0;
9277         for (i = 0; i < acfg->extra_methods->len; ++i) {
9278                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9279                 MonoCompile *cfg = (MonoCompile *)g_hash_table_lookup (acfg->method_to_cfg, method);
9280                 guint32 key, value;
9281
9282                 if (!cfg)
9283                         continue;
9284
9285                 key = info_offsets [i];
9286                 value = get_method_index (acfg, method);
9287
9288                 hash = mono_aot_method_hash (method) % table_size;
9289                 //printf ("X: %s %x\n", mono_method_get_full_name (method), mono_aot_method_hash (method));
9290
9291                 chain_lengths [hash] ++;
9292                 max_chain_length = MAX (max_chain_length, chain_lengths [hash]);
9293
9294                 new_entry = (HashEntry *)mono_mempool_alloc0 (acfg->mempool, sizeof (HashEntry));
9295                 new_entry->key = key;
9296                 new_entry->value = value;
9297
9298                 entry = (HashEntry *)g_ptr_array_index (table, hash);
9299                 if (entry == NULL) {
9300                         new_entry->index = hash;
9301                         g_ptr_array_index (table, hash) = new_entry;
9302                 } else {
9303                         while (entry->next)
9304                                 entry = entry->next;
9305                         
9306                         entry->next = new_entry;
9307                         new_entry->index = table->len;
9308                         g_ptr_array_add (table, new_entry);
9309                 }
9310         }
9311         g_free (chain_lengths);
9312
9313         //printf ("MAX: %d\n", max_chain_length);
9314
9315         buf_size = table->len * 12 + 4;
9316         p = buf = (guint8 *)g_malloc (buf_size);
9317         encode_int (table_size, p, &p);
9318
9319         for (i = 0; i < table->len; ++i) {
9320                 HashEntry *entry = (HashEntry *)g_ptr_array_index (table, i);
9321
9322                 if (entry == NULL) {
9323                         encode_int (0, p, &p);
9324                         encode_int (0, p, &p);
9325                         encode_int (0, p, &p);
9326                 } else {
9327                         //g_assert (entry->key > 0);
9328                         encode_int (entry->key, p, &p);
9329                         encode_int (entry->value, p, &p);
9330                         if (entry->next)
9331                                 encode_int (entry->next->index, p, &p);
9332                         else
9333                                 encode_int (0, p, &p);
9334                 }
9335         }
9336         g_assert (p - buf <= buf_size);
9337
9338         /* Emit the table */
9339         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_TABLE, "extra_method_table", buf, p - buf);
9340
9341         g_free (buf);
9342
9343         /* 
9344          * Emit a table reverse mapping method indexes to their index in extra_method_info.
9345          * This is used by mono_aot_find_jit_info ().
9346          */
9347         buf_size = acfg->extra_methods->len * 8 + 4;
9348         p = buf = (guint8 *)g_malloc (buf_size);
9349         encode_int (acfg->extra_methods->len, p, &p);
9350         for (i = 0; i < acfg->extra_methods->len; ++i) {
9351                 MonoMethod *method = (MonoMethod *)g_ptr_array_index (acfg->extra_methods, i);
9352
9353                 encode_int (get_method_index (acfg, method), p, &p);
9354                 encode_int (info_offsets [i], p, &p);
9355         }
9356         emit_aot_data (acfg, MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS, "extra_method_info_offsets", buf, p - buf);
9357
9358         g_free (buf);
9359         g_free (info_offsets);
9360         g_ptr_array_free (table, TRUE);
9361 }       
9362
9363 static void
9364 generate_aotid (guint8* aotid)
9365 {
9366         gpointer rand_handle;
9367         MonoError error;
9368
9369         mono_rand_open ();
9370         rand_handle = mono_rand_init (NULL, 0);
9371
9372         mono_rand_try_get_bytes (&rand_handle, aotid, 16, &error);
9373         mono_error_assert_ok (&error);
9374
9375         mono_rand_close (rand_handle);
9376 }
9377
9378 static void
9379 emit_exception_info (MonoAotCompile *acfg)
9380 {
9381         int i;
9382         gint32 *offsets;
9383         SeqPointData sp_data;
9384         gboolean seq_points_to_file = FALSE;
9385
9386         offsets = g_new0 (gint32, acfg->nmethods);
9387         for (i = 0; i < acfg->nmethods; ++i) {
9388                 if (acfg->cfgs [i]) {
9389                         MonoCompile *cfg = acfg->cfgs [i];
9390
9391                         // By design aot-runtime decode_exception_debug_info is not able to load sequence point debug data from a file.
9392                         // As it is not possible to load debug data from a file its is also not possible to store it in a file.
9393                         gboolean method_seq_points_to_file = acfg->aot_opts.gen_msym_dir &&
9394                                 cfg->gen_seq_points && !cfg->gen_sdb_seq_points;
9395                         gboolean method_seq_points_to_binary = cfg->gen_seq_points && !method_seq_points_to_file;
9396                         
9397                         emit_exception_debug_info (acfg, cfg, method_seq_points_to_binary);
9398                         offsets [i] = cfg->ex_info_offset;
9399
9400                         if (method_seq_points_to_file) {
9401                                 if (!seq_points_to_file) {
9402                                         mono_seq_point_data_init (&sp_data, acfg->nmethods);
9403                                         seq_points_to_file = TRUE;
9404                                 }
9405                                 mono_seq_point_data_add (&sp_data, cfg->method->token, cfg->method_index, cfg->seq_point_info);
9406                         }
9407                 } else {
9408                         offsets [i] = 0;
9409                 }
9410         }
9411
9412         if (seq_points_to_file) {
9413                 char *aotid = mono_guid_to_string_minimal (acfg->image->aotid);
9414                 char *dir = g_build_filename (acfg->aot_opts.gen_msym_dir_path, aotid, NULL);
9415                 char *image_basename = g_path_get_basename (acfg->image->name);
9416                 char *aot_file = g_strdup_printf("%s%s", image_basename, SEQ_POINT_AOT_EXT);
9417                 char *aot_file_path = g_build_filename (dir, aot_file, NULL);
9418
9419                 if (g_ensure_directory_exists (aot_file_path) == FALSE) {
9420                         fprintf (stderr, "AOT : failed to create msym directory: %s\n", aot_file_path);
9421                         exit (1);
9422                 }
9423
9424                 mono_seq_point_data_write (&sp_data, aot_file_path);
9425                 mono_seq_point_data_free (&sp_data);
9426
9427                 g_free (aotid);
9428                 g_free (dir);
9429                 g_free (image_basename);
9430                 g_free (aot_file);
9431                 g_free (aot_file_path);
9432         }
9433
9434         acfg->stats.offsets_size += emit_offset_table (acfg, "ex_info_offsets", MONO_AOT_TABLE_EX_INFO_OFFSETS, acfg->nmethods, 10, offsets);
9435         g_free (offsets);
9436 }
9437
9438 static void
9439 emit_unwind_info (MonoAotCompile *acfg)
9440 {
9441         int i;
9442         char symbol [128];
9443
9444         if (acfg->aot_opts.llvm_only) {
9445                 g_assert (acfg->unwind_ops->len == 0);
9446                 return;
9447         }
9448
9449         /* 
9450          * The unwind info contains a lot of duplicates so we emit each unique
9451          * entry once, and only store the offset from the start of the table in the
9452          * exception info.
9453          */
9454
9455         sprintf (symbol, "unwind_info");
9456         emit_section_change (acfg, RODATA_SECT, 1);
9457         emit_alignment (acfg, 8);
9458         emit_info_symbol (acfg, symbol);
9459
9460         for (i = 0; i < acfg->unwind_ops->len; ++i) {
9461                 guint32 index = GPOINTER_TO_UINT (g_ptr_array_index (acfg->unwind_ops, i));
9462                 guint8 *unwind_info;
9463                 guint32 unwind_info_len;
9464                 guint8 buf [16];
9465                 guint8 *p;
9466
9467                 unwind_info = mono_get_cached_unwind_info (index, &unwind_info_len);
9468
9469                 p = buf;
9470                 encode_value (unwind_info_len, p, &p);
9471                 emit_bytes (acfg, buf, p - buf);
9472                 emit_bytes (acfg, unwind_info, unwind_info_len);
9473
9474                 acfg->stats.unwind_info_size += (p - buf) + unwind_info_len;
9475         }
9476 }
9477
9478 static void
9479 emit_class_info (MonoAotCompile *acfg)
9480 {
9481         int i;
9482         gint32 *offsets;
9483
9484         offsets = g_new0 (gint32, acfg->image->tables [MONO_TABLE_TYPEDEF].rows);
9485         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i)
9486                 offsets [i] = emit_klass_info (acfg, MONO_TOKEN_TYPE_DEF | (i + 1));
9487
9488         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);
9489         g_free (offsets);
9490 }
9491
9492 typedef struct ClassNameTableEntry {
9493         guint32 token, index;
9494         struct ClassNameTableEntry *next;
9495 } ClassNameTableEntry;
9496
9497 static void
9498 emit_class_name_table (MonoAotCompile *acfg)
9499 {
9500         int i, table_size, buf_size;
9501         guint32 token, hash;
9502         MonoClass *klass;
9503         GPtrArray *table;
9504         char *full_name;
9505         guint8 *buf, *p;
9506         ClassNameTableEntry *entry, *new_entry;
9507
9508         /*
9509          * Construct a chained hash table for mapping class names to typedef tokens.
9510          */
9511         table_size = g_spaced_primes_closest ((int)(acfg->image->tables [MONO_TABLE_TYPEDEF].rows * 1.5));
9512         table = g_ptr_array_sized_new (table_size);
9513         for (i = 0; i < table_size; ++i)
9514                 g_ptr_array_add (table, NULL);
9515         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
9516                 MonoError error;
9517                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
9518                 klass = mono_class_get_checked (acfg->image, token, &error);
9519                 if (!klass) {
9520                         mono_error_cleanup (&error);
9521                         continue;
9522                 }
9523                 full_name = mono_type_get_name_full (mono_class_get_type (klass), MONO_TYPE_NAME_FORMAT_FULL_NAME);
9524                 hash = mono_metadata_str_hash (full_name) % table_size;
9525                 g_free (full_name);
9526
9527                 /* FIXME: Allocate from the mempool */
9528                 new_entry = g_new0 (ClassNameTableEntry, 1);
9529                 new_entry->token = token;
9530
9531                 entry = (ClassNameTableEntry *)g_ptr_array_index (table, hash);
9532                 if (entry == NULL) {
9533                         new_entry->index = hash;
9534                         g_ptr_array_index (table, hash) = new_entry;
9535                 } else {
9536                         while (entry->next)
9537                                 entry = entry->next;
9538                         
9539                         entry->next = new_entry;
9540                         new_entry->index = table->len;
9541                         g_ptr_array_add (table, new_entry);
9542                 }
9543         }
9544
9545         /* Emit the table */
9546         buf_size = table->len * 4 + 4;
9547         p = buf = (guint8 *)g_malloc0 (buf_size);
9548
9549         /* FIXME: Optimize memory usage */
9550         g_assert (table_size < 65000);
9551         encode_int16 (table_size, p, &p);
9552         g_assert (table->len < 65000);
9553         for (i = 0; i < table->len; ++i) {
9554                 ClassNameTableEntry *entry = (ClassNameTableEntry *)g_ptr_array_index (table, i);
9555
9556                 if (entry == NULL) {
9557                         encode_int16 (0, p, &p);
9558                         encode_int16 (0, p, &p);
9559                 } else {
9560                         encode_int16 (mono_metadata_token_index (entry->token), p, &p);
9561                         if (entry->next)
9562                                 encode_int16 (entry->next->index, p, &p);
9563                         else
9564                                 encode_int16 (0, p, &p);
9565                 }
9566                 g_free (entry);
9567         }
9568         g_assert (p - buf <= buf_size);
9569         g_ptr_array_free (table, TRUE);
9570
9571         emit_aot_data (acfg, MONO_AOT_TABLE_CLASS_NAME, "class_name_table", buf, p - buf);
9572
9573         g_free (buf);
9574 }
9575
9576 static void
9577 emit_image_table (MonoAotCompile *acfg)
9578 {
9579         int i, buf_size;
9580         guint8 *buf, *p;
9581
9582         /*
9583          * The image table is small but referenced in a lot of places.
9584          * So we emit it at once, and reference its elements by an index.
9585          */
9586         buf_size = acfg->image_table->len * 28 + 4;
9587         for (i = 0; i < acfg->image_table->len; i++) {
9588                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9589                 MonoAssemblyName *aname = &image->assembly->aname;
9590
9591                 buf_size += strlen (image->assembly_name) + strlen (image->guid) + (aname->culture ? strlen (aname->culture) : 1) + strlen ((char*)aname->public_key_token) + 4;
9592         }
9593
9594         buf = p = (guint8 *)g_malloc0 (buf_size);
9595         encode_int (acfg->image_table->len, p, &p);
9596         for (i = 0; i < acfg->image_table->len; i++) {
9597                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
9598                 MonoAssemblyName *aname = &image->assembly->aname;
9599
9600                 /* FIXME: Support multi-module assemblies */
9601                 g_assert (image->assembly->image == image);
9602
9603                 encode_string (image->assembly_name, p, &p);
9604                 encode_string (image->guid, p, &p);
9605                 encode_string (aname->culture ? aname->culture : "", p, &p);
9606                 encode_string ((const char*)aname->public_key_token, p, &p);
9607
9608                 while (GPOINTER_TO_UINT (p) % 8 != 0)
9609                         p ++;
9610
9611                 encode_int (aname->flags, p, &p);
9612                 encode_int (aname->major, p, &p);
9613                 encode_int (aname->minor, p, &p);
9614                 encode_int (aname->build, p, &p);
9615                 encode_int (aname->revision, p, &p);
9616         }
9617         g_assert (p - buf <= buf_size);
9618
9619         emit_aot_data (acfg, MONO_AOT_TABLE_IMAGE_TABLE, "image_table", buf, p - buf);
9620
9621         g_free (buf);
9622 }
9623
9624 static void
9625 emit_got_info (MonoAotCompile *acfg, gboolean llvm)
9626 {
9627         int i, first_plt_got_patch = 0, buf_size;
9628         guint8 *p, *buf;
9629         guint32 *got_info_offsets;
9630         GotInfo *info = llvm ? &acfg->llvm_got_info : &acfg->got_info;
9631
9632         /* Add the patches needed by the PLT to the GOT */
9633         if (!llvm) {
9634                 acfg->plt_got_offset_base = acfg->got_offset;
9635                 first_plt_got_patch = info->got_patches->len;
9636                 for (i = 1; i < acfg->plt_offset; ++i) {
9637                         MonoPltEntry *plt_entry = (MonoPltEntry *)g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
9638
9639                         g_ptr_array_add (info->got_patches, plt_entry->ji);
9640
9641                         acfg->stats.got_slot_types [plt_entry->ji->type] ++;
9642                 }
9643
9644                 acfg->got_offset += acfg->plt_offset;
9645         }
9646
9647         /**
9648          * FIXME: 
9649          * - optimize offsets table.
9650          * - reduce number of exported symbols.
9651          * - emit info for a klass only once.
9652          * - determine when a method uses a GOT slot which is guaranteed to be already 
9653          *   initialized.
9654          * - clean up and document the code.
9655          * - use String.Empty in class libs.
9656          */
9657
9658         /* Encode info required to decode shared GOT entries */
9659         buf_size = info->got_patches->len * 128;
9660         p = buf = (guint8 *)mono_mempool_alloc (acfg->mempool, buf_size);
9661         got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, info->got_patches->len * sizeof (guint32));
9662         if (!llvm) {
9663                 acfg->plt_got_info_offsets = (guint32 *)mono_mempool_alloc (acfg->mempool, acfg->plt_offset * sizeof (guint32));
9664                 /* Unused */
9665                 if (acfg->plt_offset)
9666                         acfg->plt_got_info_offsets [0] = 0;
9667         }
9668         for (i = 0; i < info->got_patches->len; ++i) {
9669                 MonoJumpInfo *ji = (MonoJumpInfo *)g_ptr_array_index (info->got_patches, i);
9670                 guint8 *p2;
9671
9672                 p = buf;
9673
9674                 encode_value (ji->type, p, &p);
9675                 p2 = p;
9676                 encode_patch (acfg, ji, p, &p);
9677                 acfg->stats.got_slot_info_sizes [ji->type] += p - p2;
9678                 g_assert (p - buf <= buf_size);
9679                 got_info_offsets [i] = add_to_blob (acfg, buf, p - buf);
9680
9681                 if (!llvm && i >= first_plt_got_patch)
9682                         acfg->plt_got_info_offsets [i - first_plt_got_patch + 1] = got_info_offsets [i];
9683                 acfg->stats.got_info_size += p - buf;
9684         }
9685
9686         /* Emit got_info_offsets table */
9687
9688         /* No need to emit offsets for the got plt entries, the plt embeds them directly */
9689         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);
9690 }
9691
9692 static void
9693 emit_got (MonoAotCompile *acfg)
9694 {
9695         char symbol [MAX_SYMBOL_SIZE];
9696
9697         if (acfg->aot_opts.llvm_only)
9698                 return;
9699
9700         /* Don't make GOT global so accesses to it don't need relocations */
9701         sprintf (symbol, "%s", acfg->got_symbol);
9702
9703 #ifdef TARGET_MACH
9704         emit_unset_mode (acfg);
9705         fprintf (acfg->fp, ".section __DATA, __bss\n");
9706         emit_alignment (acfg, 8);
9707         if (acfg->llvm)
9708                 emit_info_symbol (acfg, "jit_got");
9709         fprintf (acfg->fp, ".lcomm %s, %d\n", acfg->got_symbol, (int)(acfg->got_offset * sizeof (gpointer)));
9710 #else
9711         emit_section_change (acfg, ".bss", 0);
9712         emit_alignment (acfg, 8);
9713         if (acfg->aot_opts.write_symbols)
9714                 emit_local_symbol (acfg, symbol, "got_end", FALSE);
9715         emit_label (acfg, symbol);
9716         if (acfg->llvm)
9717                 emit_info_symbol (acfg, "jit_got");
9718         if (acfg->got_offset > 0)
9719                 emit_zero_bytes (acfg, (int)(acfg->got_offset * sizeof (gpointer)));
9720 #endif
9721
9722         sprintf (symbol, "got_end");
9723         emit_label (acfg, symbol);
9724 }
9725
9726 typedef struct GlobalsTableEntry {
9727         guint32 value, index;
9728         struct GlobalsTableEntry *next;
9729 } GlobalsTableEntry;
9730
9731 #ifdef TARGET_WIN32_MSVC
9732 #define DLL_ENTRY_POINT "DllMain"
9733
9734 static void
9735 emit_library_info (MonoAotCompile *acfg)
9736 {
9737         // Only include for shared libraries linked directly from generated object.
9738         if (link_shared_library (acfg)) {
9739                 char    *name = NULL;
9740                 char    symbol [MAX_SYMBOL_SIZE];
9741
9742                 // Ask linker to export all global symbols.
9743                 emit_section_change (acfg, ".drectve", 0);
9744                 for (guint i = 0; i < acfg->globals->len; ++i) {
9745                         name = (char *)g_ptr_array_index (acfg->globals, i);
9746                         g_assert (name != NULL);
9747                         sprintf_s (symbol, MAX_SYMBOL_SIZE, " /EXPORT:%s", name);
9748                         emit_string (acfg, symbol);
9749                 }
9750
9751                 // Emit DLLMain function, needed by MSVC linker for DLL's.
9752                 // NOTE, DllMain should not go into exports above.
9753                 emit_section_change (acfg, ".text", 0);
9754                 emit_global (acfg, DLL_ENTRY_POINT, TRUE);
9755                 emit_label (acfg, DLL_ENTRY_POINT);
9756
9757                 // Simple implementation of DLLMain, just returning TRUE.
9758                 // For more information about DLLMain: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682583(v=vs.85).aspx
9759                 fprintf (acfg->fp, "movl $1, %%eax\n");
9760                 fprintf (acfg->fp, "ret\n");
9761
9762                 // Inform linker about our dll entry function.
9763                 emit_section_change (acfg, ".drectve", 0);
9764                 emit_string (acfg, "/ENTRY:" DLL_ENTRY_POINT);
9765                 return;
9766         }
9767 }
9768
9769 #else
9770
9771 static inline void
9772 emit_library_info (MonoAotCompile *acfg)
9773 {
9774         return;
9775 }
9776 #endif
9777
9778 static void
9779 emit_globals (MonoAotCompile *acfg)
9780 {
9781         int i, table_size;
9782         guint32 hash;
9783         GPtrArray *table;
9784         char symbol [1024];
9785         GlobalsTableEntry *entry, *new_entry;
9786
9787         if (!acfg->aot_opts.static_link)
9788                 return;
9789
9790         if (acfg->aot_opts.llvm_only) {
9791                 g_assert (acfg->globals->len == 0);
9792                 return;
9793         }
9794
9795         /* 
9796          * When static linking, we emit a table containing our globals.
9797          */
9798
9799         /*
9800          * Construct a chained hash table for mapping global names to their index in
9801          * the globals table.
9802          */
9803         table_size = g_spaced_primes_closest ((int)(acfg->globals->len * 1.5));
9804         table = g_ptr_array_sized_new (table_size);
9805         for (i = 0; i < table_size; ++i)
9806                 g_ptr_array_add (table, NULL);
9807         for (i = 0; i < acfg->globals->len; ++i) {
9808                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9809
9810                 hash = mono_metadata_str_hash (name) % table_size;
9811
9812                 /* FIXME: Allocate from the mempool */
9813                 new_entry = g_new0 (GlobalsTableEntry, 1);
9814                 new_entry->value = i;
9815
9816                 entry = (GlobalsTableEntry *)g_ptr_array_index (table, hash);
9817                 if (entry == NULL) {
9818                         new_entry->index = hash;
9819                         g_ptr_array_index (table, hash) = new_entry;
9820                 } else {
9821                         while (entry->next)
9822                                 entry = entry->next;
9823                         
9824                         entry->next = new_entry;
9825                         new_entry->index = table->len;
9826                         g_ptr_array_add (table, new_entry);
9827                 }
9828         }
9829
9830         /* Emit the table */
9831         sprintf (symbol, ".Lglobals_hash");
9832         emit_section_change (acfg, RODATA_SECT, 0);
9833         emit_alignment (acfg, 8);
9834         emit_label (acfg, symbol);
9835
9836         /* FIXME: Optimize memory usage */
9837         g_assert (table_size < 65000);
9838         emit_int16 (acfg, table_size);
9839         for (i = 0; i < table->len; ++i) {
9840                 GlobalsTableEntry *entry = (GlobalsTableEntry *)g_ptr_array_index (table, i);
9841
9842                 if (entry == NULL) {
9843                         emit_int16 (acfg, 0);
9844                         emit_int16 (acfg, 0);
9845                 } else {
9846                         emit_int16 (acfg, entry->value + 1);
9847                         if (entry->next)
9848                                 emit_int16 (acfg, entry->next->index);
9849                         else
9850                                 emit_int16 (acfg, 0);
9851                 }
9852         }
9853
9854         /* Emit the names */
9855         for (i = 0; i < acfg->globals->len; ++i) {
9856                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9857
9858                 sprintf (symbol, "name_%d", i);
9859                 emit_section_change (acfg, RODATA_SECT, 1);
9860 #ifdef TARGET_MACH
9861                 emit_alignment (acfg, 4);
9862 #endif
9863                 emit_label (acfg, symbol);
9864                 emit_string (acfg, name);
9865         }
9866
9867         /* Emit the globals table */
9868         sprintf (symbol, "globals");
9869         emit_section_change (acfg, ".data", 0);
9870         /* This is not a global, since it is accessed by the init function */
9871         emit_alignment (acfg, 8);
9872         emit_info_symbol (acfg, symbol);
9873
9874         sprintf (symbol, "%sglobals_hash", acfg->temp_prefix);
9875         emit_pointer (acfg, symbol);
9876
9877         for (i = 0; i < acfg->globals->len; ++i) {
9878                 char *name = (char *)g_ptr_array_index (acfg->globals, i);
9879
9880                 sprintf (symbol, "name_%d", i);
9881                 emit_pointer (acfg, symbol);
9882
9883                 g_assert (strlen (name) < sizeof (symbol));
9884                 sprintf (symbol, "%s", name);
9885                 emit_pointer (acfg, symbol);
9886         }
9887         /* Null terminate the table */
9888         emit_int32 (acfg, 0);
9889         emit_int32 (acfg, 0);
9890 }
9891
9892 static void
9893 emit_mem_end (MonoAotCompile *acfg)
9894 {
9895         char symbol [128];
9896
9897         if (acfg->aot_opts.llvm_only)
9898                 return;
9899
9900         sprintf (symbol, "mem_end");
9901         emit_section_change (acfg, ".text", 1);
9902         emit_alignment_code (acfg, 8);
9903         emit_label (acfg, symbol);
9904 }
9905
9906 static void
9907 init_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9908 {
9909         int i;
9910
9911         info->version = MONO_AOT_FILE_VERSION;
9912         info->plt_got_offset_base = acfg->plt_got_offset_base;
9913         info->got_size = acfg->got_offset * sizeof (gpointer);
9914         info->plt_size = acfg->plt_offset;
9915         info->nmethods = acfg->nmethods;
9916         info->flags = acfg->flags;
9917         info->opts = acfg->opts;
9918         info->simd_opts = acfg->simd_opts;
9919         info->gc_name_index = acfg->gc_name_offset;
9920         info->datafile_size = acfg->datafile_offset;
9921         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9922                 info->table_offsets [i] = acfg->table_offsets [i];
9923         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9924                 info->num_trampolines [i] = acfg->num_trampolines [i];
9925         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9926                 info->trampoline_got_offset_base [i] = acfg->trampoline_got_offset_base [i];
9927         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9928                 info->trampoline_size [i] = acfg->trampoline_size [i];
9929         info->num_rgctx_fetch_trampolines = acfg->aot_opts.nrgctx_fetch_trampolines;
9930
9931         info->double_align = MONO_ABI_ALIGNOF (double);
9932         info->long_align = MONO_ABI_ALIGNOF (gint64);
9933         info->generic_tramp_num = MONO_TRAMPOLINE_NUM;
9934         info->tramp_page_size = acfg->tramp_page_size;
9935         info->nshared_got_entries = acfg->nshared_got_entries;
9936         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
9937                 info->tramp_page_code_offsets [i] = acfg->tramp_page_code_offsets [i];
9938
9939         memcpy(&info->aotid, acfg->image->aotid, 16);
9940 }
9941
9942 static void
9943 emit_aot_file_info (MonoAotCompile *acfg, MonoAotFileInfo *info)
9944 {
9945         char symbol [MAX_SYMBOL_SIZE];
9946         int i, sindex;
9947         const char **symbols;
9948
9949         symbols = g_new0 (const char *, MONO_AOT_FILE_INFO_NUM_SYMBOLS);
9950         sindex = 0;
9951         symbols [sindex ++] = acfg->got_symbol;
9952         if (acfg->llvm) {
9953                 symbols [sindex ++] = g_strdup_printf ("%s%s", acfg->user_symbol_prefix, acfg->llvm_got_symbol);
9954                 symbols [sindex ++] = acfg->llvm_eh_frame_symbol;
9955         } else {
9956                 symbols [sindex ++] = NULL;
9957                 symbols [sindex ++] = NULL;
9958         }
9959         /* llvm_get_method */
9960         symbols [sindex ++] = NULL;
9961         /* llvm_get_unbox_tramp */
9962         symbols [sindex ++] = NULL;
9963         if (!acfg->aot_opts.llvm_only) {
9964                 symbols [sindex ++] = "jit_code_start";
9965                 symbols [sindex ++] = "jit_code_end";
9966                 symbols [sindex ++] = "method_addresses";
9967         } else {
9968                 symbols [sindex ++] = NULL;
9969                 symbols [sindex ++] = NULL;
9970                 symbols [sindex ++] = NULL;
9971         }
9972         if (acfg->data_outfile) {
9973                 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
9974                         symbols [sindex ++] = NULL;
9975         } else {
9976                 symbols [sindex ++] = "blob";
9977                 symbols [sindex ++] = "class_name_table";
9978                 symbols [sindex ++] = "class_info_offsets";
9979                 symbols [sindex ++] = "method_info_offsets";
9980                 symbols [sindex ++] = "ex_info_offsets";
9981                 symbols [sindex ++] = "extra_method_info_offsets";
9982                 symbols [sindex ++] = "extra_method_table";
9983                 symbols [sindex ++] = "got_info_offsets";
9984                 if (acfg->llvm)
9985                         symbols [sindex ++] = "llvm_got_info_offsets";
9986                 else
9987                         symbols [sindex ++] = NULL;
9988                 symbols [sindex ++] = "image_table";
9989         }
9990         symbols [sindex ++] = "mem_end";
9991         symbols [sindex ++] = "assembly_guid";
9992         symbols [sindex ++] = "runtime_version";
9993         if (acfg->num_trampoline_got_entries) {
9994                 symbols [sindex ++] = "specific_trampolines";
9995                 symbols [sindex ++] = "static_rgctx_trampolines";
9996                 symbols [sindex ++] = "imt_trampolines";
9997                 symbols [sindex ++] = "gsharedvt_arg_trampolines";
9998         } else {
9999                 symbols [sindex ++] = NULL;
10000                 symbols [sindex ++] = NULL;
10001                 symbols [sindex ++] = NULL;
10002                 symbols [sindex ++] = NULL;
10003         }
10004         if (acfg->aot_opts.static_link) {
10005                 symbols [sindex ++] = "globals";
10006         } else {
10007                 symbols [sindex ++] = NULL;
10008         }
10009         symbols [sindex ++] = "assembly_name";
10010         symbols [sindex ++] = "plt";
10011         symbols [sindex ++] = "plt_end";
10012         symbols [sindex ++] = "unwind_info";
10013         if (!acfg->aot_opts.llvm_only) {
10014                 symbols [sindex ++] = "unbox_trampolines";
10015                 symbols [sindex ++] = "unbox_trampolines_end";
10016                 symbols [sindex ++] = "unbox_trampoline_addresses";
10017         } else {
10018                 symbols [sindex ++] = NULL;
10019                 symbols [sindex ++] = NULL;
10020                 symbols [sindex ++] = NULL;
10021         }
10022
10023         g_assert (sindex == MONO_AOT_FILE_INFO_NUM_SYMBOLS);
10024
10025         sprintf (symbol, "%smono_aot_file_info", acfg->user_symbol_prefix);
10026         emit_section_change (acfg, ".data", 0);
10027         emit_alignment (acfg, 8);
10028         emit_label (acfg, symbol);
10029         if (!acfg->aot_opts.static_link)
10030                 emit_global (acfg, symbol, FALSE);
10031
10032         /* The data emitted here must match MonoAotFileInfo. */
10033
10034         emit_int32 (acfg, info->version);
10035         emit_int32 (acfg, info->dummy);
10036
10037         /* 
10038          * We emit pointers to our data structures instead of emitting global symbols which
10039          * point to them, to reduce the number of globals, and because using globals leads to
10040          * various problems (i.e. arm/thumb).
10041          */
10042         for (i = 0; i < MONO_AOT_FILE_INFO_NUM_SYMBOLS; ++i)
10043                 emit_pointer (acfg, symbols [i]);
10044
10045         emit_int32 (acfg, info->plt_got_offset_base);
10046         emit_int32 (acfg, info->got_size);
10047         emit_int32 (acfg, info->plt_size);
10048         emit_int32 (acfg, info->nmethods);
10049         emit_int32 (acfg, info->flags);
10050         emit_int32 (acfg, info->opts);
10051         emit_int32 (acfg, info->simd_opts);
10052         emit_int32 (acfg, info->gc_name_index);
10053         emit_int32 (acfg, info->num_rgctx_fetch_trampolines);
10054         emit_int32 (acfg, info->double_align);
10055         emit_int32 (acfg, info->long_align);
10056         emit_int32 (acfg, info->generic_tramp_num);
10057         emit_int32 (acfg, info->tramp_page_size);
10058         emit_int32 (acfg, info->nshared_got_entries);
10059         emit_int32 (acfg, info->datafile_size);
10060
10061         for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
10062                 emit_int32 (acfg, info->table_offsets [i]);
10063         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10064                 emit_int32 (acfg, info->num_trampolines [i]);
10065         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10066                 emit_int32 (acfg, info->trampoline_got_offset_base [i]);
10067         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10068                 emit_int32 (acfg, info->trampoline_size [i]);
10069         for (i = 0; i < MONO_AOT_TRAMP_NUM; ++i)
10070                 emit_int32 (acfg, info->tramp_page_code_offsets [i]);
10071
10072         emit_bytes (acfg, info->aotid, 16);
10073
10074         if (acfg->aot_opts.static_link) {
10075                 emit_global_inner (acfg, acfg->static_linking_symbol, FALSE);
10076                 emit_alignment (acfg, sizeof (gpointer));
10077                 emit_label (acfg, acfg->static_linking_symbol);
10078                 emit_pointer_2 (acfg, acfg->user_symbol_prefix, "mono_aot_file_info");
10079         }
10080 }
10081
10082 /*
10083  * Emit a structure containing all the information not stored elsewhere.
10084  */
10085 static void
10086 emit_file_info (MonoAotCompile *acfg)
10087 {
10088         char *build_info;
10089         MonoAotFileInfo *info;
10090
10091         if (acfg->aot_opts.bind_to_runtime_version) {
10092                 build_info = mono_get_runtime_build_info ();
10093                 emit_string_symbol (acfg, "runtime_version", build_info);
10094                 g_free (build_info);
10095         } else {
10096                 emit_string_symbol (acfg, "runtime_version", "");
10097         }
10098
10099         emit_string_symbol (acfg, "assembly_guid" , acfg->image->guid);
10100
10101         /* Emit a string holding the assembly name */
10102         emit_string_symbol (acfg, "assembly_name", acfg->image->assembly->aname.name);
10103
10104         info = g_new0 (MonoAotFileInfo, 1);
10105         init_aot_file_info (acfg, info);
10106
10107         if (acfg->aot_opts.static_link) {
10108                 char symbol [MAX_SYMBOL_SIZE];
10109                 char *p;
10110
10111                 /*
10112                  * Emit a global symbol which can be passed by an embedding app to
10113                  * mono_aot_register_module (). The symbol points to a pointer to the the file info
10114                  * structure.
10115                  */
10116                 sprintf (symbol, "%smono_aot_module_%s_info", acfg->user_symbol_prefix, acfg->image->assembly->aname.name);
10117
10118                 /* Get rid of characters which cannot occur in symbols */
10119                 p = symbol;
10120                 for (p = symbol; *p; ++p) {
10121                         if (!(isalnum (*p) || *p == '_'))
10122                                 *p = '_';
10123                 }
10124                 acfg->static_linking_symbol = g_strdup (symbol);
10125         }
10126
10127         if (acfg->llvm)
10128                 mono_llvm_emit_aot_file_info (info, acfg->has_jitted_code);
10129         else
10130                 emit_aot_file_info (acfg, info);
10131 }
10132
10133 static void
10134 emit_blob (MonoAotCompile *acfg)
10135 {
10136         acfg->blob_closed = TRUE;
10137
10138         emit_aot_data (acfg, MONO_AOT_TABLE_BLOB, "blob", (guint8*)acfg->blob.data, acfg->blob.index);
10139 }
10140
10141 static void
10142 emit_objc_selectors (MonoAotCompile *acfg)
10143 {
10144         int i;
10145         char symbol [128];
10146
10147         if (!acfg->objc_selectors || acfg->objc_selectors->len == 0)
10148                 return;
10149
10150         /*
10151          * From
10152          * cat > foo.m << EOF
10153          * void *ret ()
10154          * {
10155          * return @selector(print:);
10156          * }
10157          * EOF
10158          */
10159
10160         mono_img_writer_emit_unset_mode (acfg->w);
10161         g_assert (acfg->fp);
10162         fprintf (acfg->fp, ".section    __DATA,__objc_selrefs,literal_pointers,no_dead_strip\n");
10163         fprintf (acfg->fp, ".align      3\n");
10164         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10165                 sprintf (symbol, "L_OBJC_SELECTOR_REFERENCES_%d", i);
10166                 emit_label (acfg, symbol);
10167                 sprintf (symbol, "L_OBJC_METH_VAR_NAME_%d", i);
10168                 emit_pointer (acfg, symbol);
10169
10170         }
10171         fprintf (acfg->fp, ".section    __TEXT,__cstring,cstring_literals\n");
10172         for (i = 0; i < acfg->objc_selectors->len; ++i) {
10173                 fprintf (acfg->fp, "L_OBJC_METH_VAR_NAME_%d:\n", i);
10174                 fprintf (acfg->fp, ".asciz \"%s\"\n", (char*)g_ptr_array_index (acfg->objc_selectors, i));
10175         }
10176
10177         fprintf (acfg->fp, ".section    __DATA,__objc_imageinfo,regular,no_dead_strip\n");
10178         fprintf (acfg->fp, ".align      3\n");
10179         fprintf (acfg->fp, "L_OBJC_IMAGE_INFO:\n");
10180         fprintf (acfg->fp, ".long       0\n");
10181         fprintf (acfg->fp, ".long       16\n");
10182 }
10183
10184 static void
10185 emit_dwarf_info (MonoAotCompile *acfg)
10186 {
10187 #ifdef EMIT_DWARF_INFO
10188         int i;
10189         char symbol2 [128];
10190
10191         /* DIEs for methods */
10192         for (i = 0; i < acfg->nmethods; ++i) {
10193                 MonoCompile *cfg = acfg->cfgs [i];
10194
10195                 if (!cfg)
10196                         continue;
10197
10198                 // FIXME: LLVM doesn't define .Lme_...
10199                 if (cfg->compile_llvm)
10200                         continue;
10201
10202                 sprintf (symbol2, "%sme_%x", acfg->temp_prefix, i);
10203
10204                 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 ()));
10205         }
10206 #endif
10207 }
10208
10209 static gboolean
10210 collect_methods (MonoAotCompile *acfg)
10211 {
10212         int mindex, i;
10213         MonoImage *image = acfg->image;
10214
10215         /* Collect methods */
10216         for (i = 0; i < image->tables [MONO_TABLE_METHOD].rows; ++i) {
10217                 MonoError error;
10218                 MonoMethod *method;
10219                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
10220
10221                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10222
10223                 if (!method) {
10224                         aot_printerrf (acfg, "Failed to load method 0x%x from '%s' due to %s.\n", token, image->name, mono_error_get_message (&error));
10225                         aot_printerrf (acfg, "Run with MONO_LOG_LEVEL=debug for more information.\n");
10226                         mono_error_cleanup (&error);
10227                         return FALSE;
10228                 }
10229                         
10230                 /* Load all methods eagerly to skip the slower lazy loading code */
10231                 mono_class_setup_methods (method->klass);
10232
10233                 if (mono_aot_mode_is_full (&acfg->aot_opts) && method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
10234                         /* Compile the wrapper instead */
10235                         /* We do this here instead of add_wrappers () because it is easy to do it here */
10236                         MonoMethod *wrapper = mono_marshal_get_native_wrapper (method, TRUE, TRUE);
10237                         method = wrapper;
10238                 }
10239
10240                 /* FIXME: Some mscorlib methods don't have debug info */
10241                 /*
10242                 if (acfg->aot_opts.soft_debug && !method->wrapper_type) {
10243                         if (!((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
10244                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
10245                                   (method->flags & METHOD_ATTRIBUTE_ABSTRACT) ||
10246                                   (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))) {
10247                                 if (!mono_debug_lookup_method (method)) {
10248                                         fprintf (stderr, "Method %s has no debug info, probably the .mdb file for the assembly is missing.\n", mono_method_get_full_name (method));
10249                                         exit (1);
10250                                 }
10251                         }
10252                 }
10253                 */
10254
10255                 if (method->is_generic || mono_class_is_gtd (method->klass))
10256                         /* Compile the ref shared version instead */
10257                         method = mini_get_shared_method (method);
10258
10259                 /* Since we add the normal methods first, their index will be equal to their zero based token index */
10260                 add_method_with_index (acfg, method, i, FALSE);
10261                 acfg->method_index ++;
10262         }
10263
10264         /* gsharedvt methods */
10265         for (mindex = 0; mindex < image->tables [MONO_TABLE_METHOD].rows; ++mindex) {
10266                 MonoError error;
10267                 MonoMethod *method;
10268                 guint32 token = MONO_TOKEN_METHOD_DEF | (mindex + 1);
10269
10270                 if (!(acfg->opts & MONO_OPT_GSHAREDVT))
10271                         continue;
10272
10273                 method = mono_get_method_checked (acfg->image, token, NULL, NULL, &error);
10274                 report_loader_error (acfg, &error, "Failed to load method token 0x%x due to %s\n", i, mono_error_get_message (&error));
10275
10276                 if (method->is_generic || mono_class_is_gtd (method->klass)) {
10277                         MonoMethod *gshared;
10278
10279                         gshared = mini_get_shared_method_full (method, TRUE, TRUE);
10280                         add_extra_method (acfg, gshared);
10281                 }
10282         }
10283
10284         if (mono_aot_mode_is_full (&acfg->aot_opts))
10285                 add_generic_instances (acfg);
10286
10287         if (mono_aot_mode_is_full (&acfg->aot_opts))
10288                 add_wrappers (acfg);
10289         return TRUE;
10290 }
10291
10292 static void
10293 compile_methods (MonoAotCompile *acfg)
10294 {
10295         int i, methods_len;
10296
10297         if (acfg->aot_opts.nthreads > 0) {
10298                 GPtrArray *frag;
10299                 int len, j;
10300                 GPtrArray *threads;
10301                 MonoThreadHandle *thread_handle;
10302                 gpointer *user_data;
10303                 MonoMethod **methods;
10304
10305                 methods_len = acfg->methods->len;
10306
10307                 len = acfg->methods->len / acfg->aot_opts.nthreads;
10308                 g_assert (len > 0);
10309                 /* 
10310                  * Partition the list of methods into fragments, and hand it to threads to
10311                  * process.
10312                  */
10313                 threads = g_ptr_array_new ();
10314                 /* Make a copy since acfg->methods is modified by compile_method () */
10315                 methods = g_new0 (MonoMethod*, methods_len);
10316                 //memcpy (methods, g_ptr_array_index (acfg->methods, 0), sizeof (MonoMethod*) * methods_len);
10317                 for (i = 0; i < methods_len; ++i)
10318                         methods [i] = (MonoMethod *)g_ptr_array_index (acfg->methods, i);
10319                 i = 0;
10320                 while (i < methods_len) {
10321                         MonoError error;
10322                         MonoInternalThread *thread;
10323
10324                         frag = g_ptr_array_new ();
10325                         for (j = 0; j < len; ++j) {
10326                                 if (i < methods_len) {
10327                                         g_ptr_array_add (frag, methods [i]);
10328                                         i ++;
10329                                 }
10330                         }
10331
10332                         user_data = g_new0 (gpointer, 3);
10333                         user_data [0] = acfg;
10334                         user_data [1] = frag;
10335                         
10336                         thread = mono_thread_create_internal (mono_domain_get (), compile_thread_main, (gpointer) user_data, MONO_THREAD_CREATE_FLAGS_NONE, &error);
10337                         mono_error_assert_ok (&error);
10338
10339                         thread_handle = mono_threads_open_thread_handle (thread->handle);
10340                         g_ptr_array_add (threads, thread_handle);
10341                 }
10342                 g_free (methods);
10343
10344                 for (i = 0; i < threads->len; ++i) {
10345                         mono_thread_info_wait_one_handle (g_ptr_array_index (threads, i), MONO_INFINITE_WAIT, FALSE);
10346                         mono_threads_close_thread_handle (g_ptr_array_index (threads, i));
10347                 }
10348         } else {
10349                 methods_len = 0;
10350         }
10351
10352         /* Compile methods added by compile_method () or all methods if nthreads == 0 */
10353         for (i = methods_len; i < acfg->methods->len; ++i) {
10354                 /* This can add new methods to acfg->methods */
10355                 compile_method (acfg, (MonoMethod *)g_ptr_array_index (acfg->methods, i));
10356         }
10357 }
10358
10359 static int
10360 compile_asm (MonoAotCompile *acfg)
10361 {
10362         char *command, *objfile;
10363         char *outfile_name, *tmp_outfile_name, *llvm_ofile;
10364         const char *tool_prefix = acfg->aot_opts.tool_prefix ? acfg->aot_opts.tool_prefix : "";
10365         char *ld_flags = acfg->aot_opts.ld_flags ? acfg->aot_opts.ld_flags : g_strdup("");
10366
10367 #ifdef TARGET_WIN32_MSVC
10368 #define AS_OPTIONS "-c -x assembler"
10369 #elif defined(TARGET_AMD64) && !defined(TARGET_MACH)
10370 #define AS_OPTIONS "--64"
10371 #elif defined(TARGET_POWERPC64)
10372 #define AS_OPTIONS "-a64 -mppc64"
10373 #elif defined(sparc) && SIZEOF_VOID_P == 8
10374 #define AS_OPTIONS "-xarch=v9"
10375 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10376 #define AS_OPTIONS "-arch i386"
10377 #else
10378 #define AS_OPTIONS ""
10379 #endif
10380
10381 #if defined(TARGET_OSX)
10382 #define AS_NAME "clang"
10383 #elif defined(TARGET_WIN32_MSVC)
10384 #define AS_NAME "clang.exe"
10385 #else
10386 #define AS_NAME "as"
10387 #endif
10388
10389 #ifdef TARGET_WIN32_MSVC
10390 #define AS_OBJECT_FILE_SUFFIX "obj"
10391 #else
10392 #define AS_OBJECT_FILE_SUFFIX "o"
10393 #endif
10394
10395 #if defined(sparc)
10396 #define LD_NAME "ld"
10397 #define LD_OPTIONS "-shared -G"
10398 #elif defined(__ppc__) && defined(TARGET_MACH)
10399 #define LD_NAME "gcc"
10400 #define LD_OPTIONS "-dynamiclib"
10401 #elif defined(TARGET_AMD64) && defined(TARGET_MACH)
10402 #define LD_NAME "clang"
10403 #define LD_OPTIONS "--shared"
10404 #elif defined(TARGET_WIN32_MSVC)
10405 #define LD_NAME "link.exe"
10406 #define LD_OPTIONS "/DLL /MACHINE:X64 /NOLOGO"
10407 #elif defined(TARGET_WIN32) && !defined(TARGET_ANDROID)
10408 #define LD_NAME "gcc"
10409 #define LD_OPTIONS "-shared"
10410 #elif defined(TARGET_X86) && defined(TARGET_MACH)
10411 #define LD_NAME "clang"
10412 #define LD_OPTIONS "-m32 -dynamiclib"
10413 #elif defined(TARGET_ARM) && !defined(TARGET_ANDROID)
10414 #define LD_NAME "gcc"
10415 #define LD_OPTIONS "--shared"
10416 #elif defined(TARGET_POWERPC64)
10417 #define LD_OPTIONS "-m elf64ppc"
10418 #endif
10419
10420 #ifndef LD_OPTIONS
10421 #define LD_OPTIONS ""
10422 #endif
10423
10424         if (acfg->aot_opts.asm_only) {
10425                 aot_printf (acfg, "Output file: '%s'.\n", acfg->tmpfname);
10426                 if (acfg->aot_opts.static_link)
10427                         aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10428                 if (acfg->llvm)
10429                         aot_printf (acfg, "LLVM output file: '%s'.\n", acfg->llvm_sfile);
10430                 return 0;
10431         }
10432
10433         if (acfg->aot_opts.static_link) {
10434                 if (acfg->aot_opts.outfile)
10435                         objfile = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10436                 else
10437                         objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->image->name);
10438         } else {
10439                 objfile = g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname);
10440         }
10441
10442 #ifdef TARGET_OSX
10443         g_string_append (acfg->as_args, "-c -x assembler");
10444 #endif
10445
10446         command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10447                         acfg->as_args ? acfg->as_args->str : "", 
10448                         wrap_path (objfile), wrap_path (acfg->tmpfname));
10449         aot_printf (acfg, "Executing the native assembler: %s\n", command);
10450         if (execute_system (command) != 0) {
10451                 g_free (command);
10452                 g_free (objfile);
10453                 return 1;
10454         }
10455
10456         if (acfg->llvm && !acfg->llvm_owriter) {
10457                 command = g_strdup_printf ("\"%s%s\" %s %s -o %s %s", tool_prefix, AS_NAME, AS_OPTIONS,
10458                         acfg->as_args ? acfg->as_args->str : "",
10459                         wrap_path (acfg->llvm_ofile), wrap_path (acfg->llvm_sfile));
10460                 aot_printf (acfg, "Executing the native assembler: %s\n", command);
10461                 if (execute_system (command) != 0) {
10462                         g_free (command);
10463                         g_free (objfile);
10464                         return 1;
10465                 }
10466         }
10467
10468         g_free (command);
10469
10470         if (acfg->aot_opts.static_link) {
10471                 aot_printf (acfg, "Output file: '%s'.\n", objfile);
10472                 aot_printf (acfg, "Linking symbol: '%s'.\n", acfg->static_linking_symbol);
10473                 g_free (objfile);
10474                 return 0;
10475         }
10476
10477         if (acfg->aot_opts.outfile)
10478                 outfile_name = g_strdup_printf ("%s", acfg->aot_opts.outfile);
10479         else
10480                 outfile_name = g_strdup_printf ("%s%s", acfg->image->name, MONO_SOLIB_EXT);
10481
10482         tmp_outfile_name = g_strdup_printf ("%s.tmp", outfile_name);
10483
10484         if (acfg->llvm) {
10485                 llvm_ofile = g_strdup_printf ("\"%s\"", acfg->llvm_ofile);
10486         } else {
10487                 llvm_ofile = g_strdup ("");
10488         }
10489
10490         /* replace the ; flags separators with spaces */
10491         g_strdelimit (ld_flags, ";", ' ');
10492
10493         if (acfg->aot_opts.llvm_only)
10494                 ld_flags = g_strdup_printf ("%s %s", ld_flags, "-lstdc++");
10495
10496 #ifdef TARGET_WIN32_MSVC
10497         g_assert (tmp_outfile_name != NULL);
10498         g_assert (objfile != NULL);
10499         command = g_strdup_printf ("\"%s%s\" %s %s /OUT:\"%s\" \"%s\"", tool_prefix, LD_NAME, LD_OPTIONS,
10500                 ld_flags, tmp_outfile_name, objfile);
10501 #elif defined(LD_NAME)
10502         command = g_strdup_printf ("%s%s %s -o %s %s %s %s", tool_prefix, LD_NAME, LD_OPTIONS,
10503                 wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10504                 wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10505 #else
10506         // Default (linux)
10507         if (acfg->aot_opts.tool_prefix) {
10508                 /* Cross compiling */
10509                 command = g_strdup_printf ("\"%sld\" %s -shared -o %s %s %s %s", tool_prefix, LD_OPTIONS,
10510                                                                    wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10511                                                                    wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10512         } else {
10513                 char *args = g_strdup_printf ("%s -shared -o %s %s %s %s", LD_OPTIONS,
10514                                                                           wrap_path (tmp_outfile_name), wrap_path (llvm_ofile),
10515                                                                           wrap_path (g_strdup_printf ("%s." AS_OBJECT_FILE_SUFFIX, acfg->tmpfname)), ld_flags);
10516
10517                 if (acfg->aot_opts.llvm_only) {
10518                         command = g_strdup_printf ("clang++ %s", args);
10519                 } else {
10520                         command = g_strdup_printf ("\"%sld\" %s", tool_prefix, args);
10521                 }
10522                 g_free (args);
10523         }
10524 #endif
10525         aot_printf (acfg, "Executing the native linker: %s\n", command);
10526         if (execute_system (command) != 0) {
10527                 g_free (tmp_outfile_name);
10528                 g_free (outfile_name);
10529                 g_free (command);
10530                 g_free (objfile);
10531                 g_free (ld_flags);
10532                 return 1;
10533         }
10534
10535         g_free (command);
10536
10537         /*com = g_strdup_printf ("strip --strip-unneeded %s%s", acfg->image->name, MONO_SOLIB_EXT);
10538         printf ("Stripping the binary: %s\n", com);
10539         execute_system (com);
10540         g_free (com);*/
10541
10542 #if defined(TARGET_ARM) && !defined(TARGET_MACH)
10543         /* 
10544          * gas generates 'mapping symbols' each time code and data is mixed, which 
10545          * happens a lot in emit_and_reloc_code (), so we need to get rid of them.
10546          */
10547         command = g_strdup_printf ("\"%sstrip\" --strip-symbol=\\$a --strip-symbol=\\$d %s", wrap_path(tool_prefix), wrap_path(tmp_outfile_name));
10548         aot_printf (acfg, "Stripping the binary: %s\n", command);
10549         if (execute_system (command) != 0) {
10550                 g_free (tmp_outfile_name);
10551                 g_free (outfile_name);
10552                 g_free (command);
10553                 g_free (objfile);
10554                 return 1;
10555         }
10556 #endif
10557
10558         if (0 != rename (tmp_outfile_name, outfile_name)) {
10559                 if (G_FILE_ERROR_EXIST == g_file_error_from_errno (errno)) {
10560                         /* Since we are rebuilding the module we need to be able to replace any old copies. Remove old file and retry rename operation. */
10561                         unlink (outfile_name);
10562                         rename (tmp_outfile_name, outfile_name);
10563                 }
10564         }
10565
10566 #if defined(TARGET_MACH)
10567         command = g_strdup_printf ("dsymutil \"%s\"", outfile_name);
10568         aot_printf (acfg, "Executing dsymutil: %s\n", command);
10569         if (execute_system (command) != 0) {
10570                 return 1;
10571         }
10572 #endif
10573
10574         if (!acfg->aot_opts.save_temps)
10575                 unlink (objfile);
10576
10577         g_free (tmp_outfile_name);
10578         g_free (outfile_name);
10579         g_free (objfile);
10580
10581         if (acfg->aot_opts.save_temps)
10582                 aot_printf (acfg, "Retained input file.\n");
10583         else
10584                 unlink (acfg->tmpfname);
10585
10586         return 0;
10587 }
10588
10589 static guint8
10590 profread_byte (FILE *infile)
10591 {
10592         guint8 i;
10593         int res;
10594
10595         res = fread (&i, 1, 1, infile);
10596         g_assert (res == 1);
10597         return i;
10598 }
10599
10600 static int
10601 profread_int (FILE *infile)
10602 {
10603         int i, res;
10604
10605         res = fread (&i, 4, 1, infile);
10606         g_assert (res == 1);
10607         return i;
10608 }
10609
10610 static char*
10611 profread_string (FILE *infile)
10612 {
10613         int len, res;
10614         char buf [1024];
10615         char *pbuf;
10616
10617         len = profread_int (infile);
10618         if (len + 1 > 1024)
10619                 pbuf = g_malloc (len + 1);
10620         else
10621                 pbuf = buf;
10622         res = fread (pbuf, 1, len, infile);
10623         g_assert (res == len);
10624         pbuf [len] = '\0';
10625         if (pbuf == buf)
10626                 return g_strdup (buf);
10627         else
10628                 return pbuf;
10629 }
10630
10631 static void
10632 load_profile_file (MonoAotCompile *acfg, char *filename)
10633 {
10634         FILE *infile;
10635         char buf [1024];
10636         int res, len, version;
10637         char magic [32];
10638
10639         infile = fopen (filename, "r");
10640         if (!infile) {
10641                 fprintf (stderr, "Unable to open file '%s': %s.\n", filename, strerror (errno));
10642                 exit (1);
10643         }
10644
10645         printf ("Using profile data file '%s'\n", filename);
10646
10647         sprintf (magic, AOT_PROFILER_MAGIC);
10648         len = strlen (magic);
10649         res = fread (buf, 1, len, infile);
10650         magic [len] = '\0';
10651         buf [len] = '\0';
10652         if ((res != len) || strcmp (buf, magic) != 0) {
10653                 printf ("Profile file has wrong header: '%s'.\n", buf);
10654                 fclose (infile);
10655                 exit (1);
10656         }
10657         guint32 expected_version = (AOT_PROFILER_MAJOR_VERSION << 16) | AOT_PROFILER_MINOR_VERSION;
10658         version = profread_int (infile);
10659         if (version != expected_version) {
10660                 printf ("Profile file has wrong version 0x%4x, expected 0x%4x.\n", version, expected_version);
10661                 fclose (infile);
10662                 exit (1);
10663         }
10664
10665         ProfileData *data = g_new0 (ProfileData, 1);
10666         data->images = g_hash_table_new (NULL, NULL);
10667         data->classes = g_hash_table_new (NULL, NULL);
10668         data->ginsts = g_hash_table_new (NULL, NULL);
10669         data->methods = g_hash_table_new (NULL, NULL);
10670
10671         while (TRUE) {
10672                 int type = profread_byte (infile);
10673                 int id = profread_int (infile);
10674
10675                 if (type == AOTPROF_RECORD_NONE)
10676                         break;
10677
10678                 switch (type) {
10679                 case AOTPROF_RECORD_IMAGE: {
10680                         ImageProfileData *idata = g_new0 (ImageProfileData, 1);
10681                         idata->name = profread_string (infile);
10682                         char *mvid = profread_string (infile);
10683                         g_free (mvid);
10684                         g_hash_table_insert (data->images, GINT_TO_POINTER (id), idata);
10685                         break;
10686                 }
10687                 case AOTPROF_RECORD_GINST: {
10688                         int i;
10689                         int len = profread_int (infile);
10690
10691                         GInstProfileData *gdata = g_new0 (GInstProfileData, 1);
10692                         gdata->argc = len;
10693                         gdata->argv = g_new0 (ClassProfileData*, len);
10694
10695                         for (i = 0; i < len; ++i) {
10696                                 int class_id = profread_int (infile);
10697
10698                                 gdata->argv [i] = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10699                                 g_assert (gdata->argv [i]);
10700                         }
10701                         g_hash_table_insert (data->ginsts, GINT_TO_POINTER (id), gdata);
10702                         break;
10703                 }
10704                 case AOTPROF_RECORD_TYPE: {
10705                         int type = profread_byte (infile);
10706
10707                         switch (type) {
10708                         case MONO_TYPE_CLASS: {
10709                                 int image_id = profread_int (infile);
10710                                 int ginst_id = profread_int (infile);
10711                                 char *class_name = profread_string (infile);
10712
10713                                 ImageProfileData *image = g_hash_table_lookup (data->images, GINT_TO_POINTER (image_id));
10714                                 g_assert (image);
10715
10716                                 char *p = strrchr (class_name, '.');
10717                                 g_assert (p);
10718                                 *p = '\0';
10719
10720                                 ClassProfileData *cdata = g_new0 (ClassProfileData, 1);
10721                                 cdata->image = image;
10722                                 cdata->ns = g_strdup (class_name);
10723                                 cdata->name = g_strdup (p + 1);
10724
10725                                 if (ginst_id != -1) {
10726                                         cdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10727                                         g_assert (cdata->inst);
10728                                 }
10729                                 g_free (class_name);
10730
10731                                 g_hash_table_insert (data->classes, GINT_TO_POINTER (id), cdata);
10732                                 break;
10733                         }
10734 #if 0
10735                         case MONO_TYPE_SZARRAY: {
10736                                 int elem_id = profread_int (infile);
10737                                 // FIXME:
10738                                 break;
10739                         }
10740 #endif
10741                         default:
10742                                 g_assert_not_reached ();
10743                                 break;
10744                         }
10745                         break;
10746                 }
10747                 case AOTPROF_RECORD_METHOD: {
10748                         int class_id = profread_int (infile);
10749                         int ginst_id = profread_int (infile);
10750                         int param_count = profread_int (infile);
10751                         char *method_name = profread_string (infile);
10752                         char *sig = profread_string (infile);
10753
10754                         ClassProfileData *klass = g_hash_table_lookup (data->classes, GINT_TO_POINTER (class_id));
10755                         g_assert (klass);
10756
10757                         MethodProfileData *mdata = g_new0 (MethodProfileData, 1);
10758                         mdata->id = id;
10759                         mdata->klass = klass;
10760                         mdata->name = method_name;
10761                         mdata->signature = sig;
10762                         mdata->param_count = param_count;
10763
10764                         if (ginst_id != -1) {
10765                                 mdata->inst = g_hash_table_lookup (data->ginsts, GINT_TO_POINTER (ginst_id));
10766                                 g_assert (mdata->inst);
10767                         }
10768                         g_hash_table_insert (data->methods, GINT_TO_POINTER (id), mdata);
10769                         break;
10770                 }
10771                 default:
10772                         printf ("%d\n", type);
10773                         g_assert_not_reached ();
10774                         break;
10775                 }
10776         }
10777
10778         fclose (infile);
10779         acfg->profile_data = g_list_append (acfg->profile_data, data);
10780 }
10781
10782 static void
10783 resolve_class (ClassProfileData *cdata);
10784
10785 static void
10786 resolve_ginst (GInstProfileData *inst_data)
10787 {
10788         int i;
10789
10790         if (inst_data->inst)
10791                 return;
10792
10793         for (i = 0; i < inst_data->argc; ++i) {
10794                 resolve_class (inst_data->argv [i]);
10795                 if (!inst_data->argv [i]->klass)
10796                         return;
10797         }
10798         MonoType **args = g_new0 (MonoType*, inst_data->argc);
10799         for (i = 0; i < inst_data->argc; ++i)
10800                 args [i] = &inst_data->argv [i]->klass->byval_arg;
10801
10802         inst_data->inst = mono_metadata_get_generic_inst (inst_data->argc, args);
10803 }
10804
10805 static void
10806 resolve_class (ClassProfileData *cdata)
10807 {
10808         MonoError error;
10809         MonoClass *klass;
10810
10811         if (!cdata->image->image)
10812                 return;
10813
10814         klass = mono_class_from_name_checked (cdata->image->image, cdata->ns, cdata->name, &error);
10815         if (!klass) {
10816                 //printf ("[%s] %s.%s\n", cdata->image->name, cdata->ns, cdata->name);
10817                 return;
10818         }
10819         if (cdata->inst) {
10820                 resolve_ginst (cdata->inst);
10821                 if (!cdata->inst->inst)
10822                         return;
10823                 MonoGenericContext ctx;
10824
10825                 memset (&ctx, 0, sizeof (ctx));
10826                 ctx.class_inst = cdata->inst->inst;
10827                 cdata->klass = mono_class_inflate_generic_class_checked (klass, &ctx, &error);
10828         } else {
10829                 cdata->klass = klass;
10830         }
10831 }
10832
10833 /*
10834  * Resolve the profile data to the corresponding loaded classes/methods etc. if possible.
10835  */
10836 static void
10837 resolve_profile_data (MonoAotCompile *acfg, ProfileData *data)
10838 {
10839         GHashTableIter iter;
10840         gpointer key, value;
10841         int i;
10842
10843         if (!data)
10844                 return;
10845
10846         /* Images */
10847         GPtrArray *assemblies = mono_domain_get_assemblies (mono_get_root_domain (), FALSE);
10848         g_hash_table_iter_init (&iter, data->images);
10849         while (g_hash_table_iter_next (&iter, &key, &value)) {
10850                 ImageProfileData *idata = (ImageProfileData*)value;
10851
10852                 for (i = 0; i < assemblies->len; ++i) {
10853                         MonoAssembly *ass = g_ptr_array_index (assemblies, i);
10854
10855                         if (!strcmp (ass->aname.name, idata->name)) {
10856                                 idata->image = ass->image;
10857                                 break;
10858                         }
10859                 }
10860         }
10861         g_ptr_array_free (assemblies, TRUE);
10862
10863         /* Classes */
10864         g_hash_table_iter_init (&iter, data->classes);
10865         while (g_hash_table_iter_next (&iter, &key, &value)) {
10866                 ClassProfileData *cdata = (ClassProfileData*)value;
10867
10868                 if (!cdata->image->image) {
10869                         if (acfg->aot_opts.verbose)
10870                                 printf ("Unable to load class '%s.%s' because its image '%s' is not loaded.\n", cdata->ns, cdata->name, cdata->image->name);
10871                         continue;
10872                 }
10873
10874                 resolve_class (cdata);
10875                 /*
10876                 if (cdata->klass)
10877                         printf ("%s %s %s\n", cdata->ns, cdata->name, mono_class_full_name (cdata->klass));
10878                 */
10879         }
10880
10881         /* Methods */
10882         g_hash_table_iter_init (&iter, data->methods);
10883         while (g_hash_table_iter_next (&iter, &key, &value)) {
10884                 MethodProfileData *mdata = (MethodProfileData*)value;
10885                 MonoClass *klass;
10886                 MonoMethod *m;
10887                 gpointer miter;
10888
10889                 resolve_class (mdata->klass);
10890                 klass = mdata->klass->klass;
10891                 if (!klass) {
10892                         if (acfg->aot_opts.verbose)
10893                                 printf ("Unable to load method '%s' because its class '%s.%s' is not loaded.\n", mdata->name, mdata->klass->ns, mdata->klass->name);
10894                         continue;
10895                 }
10896                 miter = NULL;
10897                 while ((m = mono_class_get_methods (klass, &miter))) {
10898                         MonoError error;
10899
10900                         if (strcmp (m->name, mdata->name))
10901                                 continue;
10902                         MonoMethodSignature *sig = mono_method_signature (m);
10903                         if (!sig)
10904                                 continue;
10905                         if (sig->param_count != mdata->param_count)
10906                                 continue;
10907                         if (mdata->inst) {
10908                                 resolve_ginst (mdata->inst);
10909                                 if (!mdata->inst->inst)
10910                                         continue;
10911                                 MonoGenericContext ctx;
10912
10913                                 memset (&ctx, 0, sizeof (ctx));
10914                                 ctx.method_inst = mdata->inst->inst;
10915
10916                                 m = mono_class_inflate_generic_method_checked (m, &ctx, &error);
10917                                 if (!m)
10918                                         continue;
10919                                 sig = mono_method_signature_checked (m, &error);
10920                                 if (!is_ok (&error)) {
10921                                         mono_error_cleanup (&error);
10922                                         continue;
10923                                 }
10924                         }
10925                         char *sig_str = mono_signature_full_name (sig);
10926                         gboolean match = !strcmp (sig_str, mdata->signature);
10927                         g_free (sig_str);
10928                         if (!match)
10929
10930                                 continue;
10931                         //printf ("%s\n", mono_method_full_name (m, 1));
10932                         mdata->method = m;
10933                         break;
10934                 }
10935                 if (!mdata->method) {
10936                         if (acfg->aot_opts.verbose)
10937                                 printf ("Unable to load method '%s' from class '%s', not found.\n", mdata->name, mono_class_full_name (klass));
10938                 }
10939         }
10940 }
10941
10942 static gboolean
10943 inst_references_image (MonoGenericInst *inst, MonoImage *image)
10944 {
10945         int i;
10946
10947         for (i = 0; i < inst->type_argc; ++i) {
10948                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10949                 if (k->image == image)
10950                         return TRUE;
10951                 if (mono_class_is_ginst (k)) {
10952                         MonoGenericInst *kinst = mono_class_get_context (k)->class_inst;
10953                         if (inst_references_image (kinst, image))
10954                                 return TRUE;
10955                 }
10956         }
10957         return FALSE;
10958 }
10959
10960 static gboolean
10961 is_local_inst (MonoGenericInst *inst, MonoImage *image)
10962 {
10963         int i;
10964
10965         for (i = 0; i < inst->type_argc; ++i) {
10966                 MonoClass *k = mono_class_from_mono_type (inst->type_argv [i]);
10967                 if (!MONO_TYPE_IS_PRIMITIVE (inst->type_argv [i]) && k->image != image)
10968                         return FALSE;
10969         }
10970         return TRUE;
10971 }
10972
10973 static void
10974 add_profile_instances (MonoAotCompile *acfg, ProfileData *data)
10975 {
10976         GHashTableIter iter;
10977         gpointer key, value;
10978         int count = 0;
10979
10980         if (!data)
10981                 return;
10982
10983         if (acfg->aot_opts.profile_only) {
10984                 /* Add methods referenced by the profile */
10985                 g_hash_table_iter_init (&iter, data->methods);
10986                 while (g_hash_table_iter_next (&iter, &key, &value)) {
10987                         MethodProfileData *mdata = (MethodProfileData*)value;
10988                         MonoMethod *m = mdata->method;
10989
10990                         if (!m)
10991                                 continue;
10992                         if (m->is_inflated)
10993                                 continue;
10994                         add_extra_method (acfg, m);
10995                         g_hash_table_insert (acfg->profile_methods, m, m);
10996                         count ++;
10997                 }
10998         }
10999
11000         /*
11001          * Add method instances 'related' to this assembly to the AOT image.
11002          */
11003         g_hash_table_iter_init (&iter, data->methods);
11004         while (g_hash_table_iter_next (&iter, &key, &value)) {
11005                 MethodProfileData *mdata = (MethodProfileData*)value;
11006                 MonoMethod *m = mdata->method;
11007                 MonoGenericContext *ctx;
11008
11009                 if (!m)
11010                         continue;
11011                 if (!m->is_inflated)
11012                         continue;
11013
11014                 ctx = mono_method_get_context (m);
11015                 /* For simplicity, add instances which reference the assembly we are compiling */
11016                 if (((ctx->class_inst && inst_references_image (ctx->class_inst, acfg->image)) ||
11017                          (ctx->method_inst && inst_references_image (ctx->method_inst, acfg->image))) &&
11018                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE)) {
11019                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11020                         add_extra_method (acfg, m);
11021                         count ++;
11022                 } else if (m->klass->image == acfg->image &&
11023                         ((ctx->class_inst && is_local_inst (ctx->class_inst, acfg->image)) ||
11024                          (ctx->method_inst && is_local_inst (ctx->method_inst, acfg->image))) &&
11025                         !mono_method_is_generic_sharable_full (m, FALSE, FALSE, FALSE))  {
11026                         /* Add instances where the gtd is in the assembly and its inflated with types from this assembly or corlib */
11027                         //printf ("%s\n", mono_method_full_name (m, TRUE));
11028                         add_extra_method (acfg, m);
11029                         count ++;
11030                 }
11031                 /*
11032                  * FIXME: We might skip some instances, for example:
11033                  * Foo<Bar> won't be compiled when compiling Foo's assembly since it doesn't match the first case,
11034                  * and it won't be compiled when compiling Bar's assembly if Foo's assembly is not loaded.
11035                  */
11036         }
11037
11038         printf ("Added %d methods from profile.\n", count);
11039 }
11040
11041 static void
11042 init_got_info (GotInfo *info)
11043 {
11044         int i;
11045
11046         info->patch_to_got_offset = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11047         info->patch_to_got_offset_by_type = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11048         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11049                 info->patch_to_got_offset_by_type [i] = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
11050         info->got_patches = g_ptr_array_new ();
11051 }
11052
11053 static MonoAotCompile*
11054 acfg_create (MonoAssembly *ass, guint32 opts)
11055 {
11056         MonoImage *image = ass->image;
11057         MonoAotCompile *acfg;
11058
11059         acfg = g_new0 (MonoAotCompile, 1);
11060         acfg->methods = g_ptr_array_new ();
11061         acfg->method_indexes = g_hash_table_new (NULL, NULL);
11062         acfg->method_depth = g_hash_table_new (NULL, NULL);
11063         acfg->plt_offset_to_entry = g_hash_table_new (NULL, NULL);
11064         acfg->patch_to_plt_entry = g_new0 (GHashTable*, MONO_PATCH_INFO_NUM);
11065         acfg->method_to_cfg = g_hash_table_new (NULL, NULL);
11066         acfg->token_info_hash = g_hash_table_new_full (NULL, NULL, NULL, NULL);
11067         acfg->method_to_pinvoke_import = g_hash_table_new_full (NULL, NULL, NULL, g_free);
11068         acfg->image_hash = g_hash_table_new (NULL, NULL);
11069         acfg->image_table = g_ptr_array_new ();
11070         acfg->globals = g_ptr_array_new ();
11071         acfg->image = image;
11072         acfg->opts = opts;
11073         /* TODO: Write out set of SIMD instructions used, rather than just those available */
11074         acfg->simd_opts = mono_arch_cpu_enumerate_simd_versions ();
11075         acfg->mempool = mono_mempool_new ();
11076         acfg->extra_methods = g_ptr_array_new ();
11077         acfg->unwind_info_offsets = g_hash_table_new (NULL, NULL);
11078         acfg->unwind_ops = g_ptr_array_new ();
11079         acfg->method_label_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
11080         acfg->method_order = g_ptr_array_new ();
11081         acfg->export_names = g_hash_table_new (NULL, NULL);
11082         acfg->klass_blob_hash = g_hash_table_new (NULL, NULL);
11083         acfg->method_blob_hash = g_hash_table_new (NULL, NULL);
11084         acfg->plt_entry_debug_sym_cache = g_hash_table_new (g_str_hash, g_str_equal);
11085         acfg->gsharedvt_in_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11086         acfg->gsharedvt_out_signatures = g_hash_table_new ((GHashFunc)mono_signature_hash, (GEqualFunc)mono_metadata_signature_equal);
11087         acfg->profile_methods = g_hash_table_new (NULL, NULL);
11088         mono_os_mutex_init_recursive (&acfg->mutex);
11089
11090         init_got_info (&acfg->got_info);
11091         init_got_info (&acfg->llvm_got_info);
11092
11093         return acfg;
11094 }
11095
11096 static void
11097 got_info_free (GotInfo *info)
11098 {
11099         int i;
11100
11101         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11102                 g_hash_table_destroy (info->patch_to_got_offset_by_type [i]);
11103         g_free (info->patch_to_got_offset_by_type);
11104         g_hash_table_destroy (info->patch_to_got_offset);
11105         g_ptr_array_free (info->got_patches, TRUE);
11106 }
11107
11108 static void
11109 acfg_free (MonoAotCompile *acfg)
11110 {
11111         int i;
11112
11113         mono_img_writer_destroy (acfg->w);
11114         for (i = 0; i < acfg->nmethods; ++i)
11115                 if (acfg->cfgs [i])
11116                         mono_destroy_compile (acfg->cfgs [i]);
11117
11118         g_free (acfg->cfgs);
11119
11120         g_free (acfg->static_linking_symbol);
11121         g_free (acfg->got_symbol);
11122         g_free (acfg->plt_symbol);
11123         g_ptr_array_free (acfg->methods, TRUE);
11124         g_ptr_array_free (acfg->image_table, TRUE);
11125         g_ptr_array_free (acfg->globals, TRUE);
11126         g_ptr_array_free (acfg->unwind_ops, TRUE);
11127         g_hash_table_destroy (acfg->method_indexes);
11128         g_hash_table_destroy (acfg->method_depth);
11129         g_hash_table_destroy (acfg->plt_offset_to_entry);
11130         for (i = 0; i < MONO_PATCH_INFO_NUM; ++i) {
11131                 if (acfg->patch_to_plt_entry [i])
11132                         g_hash_table_destroy (acfg->patch_to_plt_entry [i]);
11133         }
11134         g_free (acfg->patch_to_plt_entry);
11135         g_hash_table_destroy (acfg->method_to_cfg);
11136         g_hash_table_destroy (acfg->token_info_hash);
11137         g_hash_table_destroy (acfg->method_to_pinvoke_import);
11138         g_hash_table_destroy (acfg->image_hash);
11139         g_hash_table_destroy (acfg->unwind_info_offsets);
11140         g_hash_table_destroy (acfg->method_label_hash);
11141         if (acfg->typespec_classes)
11142                 g_hash_table_destroy (acfg->typespec_classes);
11143         g_hash_table_destroy (acfg->export_names);
11144         g_hash_table_destroy (acfg->plt_entry_debug_sym_cache);
11145         g_hash_table_destroy (acfg->klass_blob_hash);
11146         g_hash_table_destroy (acfg->method_blob_hash);
11147         got_info_free (&acfg->got_info);
11148         got_info_free (&acfg->llvm_got_info);
11149         mono_mempool_destroy (acfg->mempool);
11150         g_free (acfg);
11151 }
11152
11153 #define WRAPPER(e,n) n,
11154 static const char* const
11155 wrapper_type_names [MONO_WRAPPER_NUM + 1] = {
11156 #include "mono/metadata/wrapper-types.h"
11157         NULL
11158 };
11159
11160 static G_GNUC_UNUSED const char*
11161 get_wrapper_type_name (int type)
11162 {
11163         return wrapper_type_names [type];
11164 }
11165
11166 //#define DUMP_PLT
11167 //#define DUMP_GOT
11168
11169 static void aot_dump (MonoAotCompile *acfg)
11170 {
11171         FILE *dumpfile;
11172         char * dumpname;
11173
11174         JsonWriter writer;
11175         mono_json_writer_init (&writer);
11176
11177         mono_json_writer_object_begin(&writer);
11178
11179         // Methods
11180         mono_json_writer_indent (&writer);
11181         mono_json_writer_object_key(&writer, "methods");
11182         mono_json_writer_array_begin (&writer);
11183
11184         int i;
11185         for (i = 0; i < acfg->nmethods; ++i) {
11186                 MonoCompile *cfg;
11187                 MonoMethod *method;
11188                 MonoClass *klass;
11189
11190                 cfg = acfg->cfgs [i];
11191                 if (!cfg)
11192                         continue;
11193
11194                 method = cfg->orig_method;
11195
11196                 mono_json_writer_indent (&writer);
11197                 mono_json_writer_object_begin(&writer);
11198
11199                 mono_json_writer_indent (&writer);
11200                 mono_json_writer_object_key(&writer, "name");
11201                 mono_json_writer_printf (&writer, "\"%s\",\n", method->name);
11202
11203                 mono_json_writer_indent (&writer);
11204                 mono_json_writer_object_key(&writer, "signature");
11205                 mono_json_writer_printf (&writer, "\"%s\",\n", mono_method_get_full_name (method));
11206
11207                 mono_json_writer_indent (&writer);
11208                 mono_json_writer_object_key(&writer, "code_size");
11209                 mono_json_writer_printf (&writer, "\"%d\",\n", cfg->code_size);
11210
11211                 klass = method->klass;
11212
11213                 mono_json_writer_indent (&writer);
11214                 mono_json_writer_object_key(&writer, "class");
11215                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name);
11216
11217                 mono_json_writer_indent (&writer);
11218                 mono_json_writer_object_key(&writer, "namespace");
11219                 mono_json_writer_printf (&writer, "\"%s\",\n", klass->name_space);
11220
11221                 mono_json_writer_indent (&writer);
11222                 mono_json_writer_object_key(&writer, "wrapper_type");
11223                 mono_json_writer_printf (&writer, "\"%s\",\n", get_wrapper_type_name(method->wrapper_type));
11224
11225                 mono_json_writer_indent_pop (&writer);
11226                 mono_json_writer_indent (&writer);
11227                 mono_json_writer_object_end (&writer);
11228                 mono_json_writer_printf (&writer, ",\n");
11229         }
11230
11231         mono_json_writer_indent_pop (&writer);
11232         mono_json_writer_indent (&writer);
11233         mono_json_writer_array_end (&writer);
11234         mono_json_writer_printf (&writer, ",\n");
11235
11236         // PLT entries
11237 #ifdef DUMP_PLT
11238         mono_json_writer_indent_push (&writer);
11239         mono_json_writer_indent (&writer);
11240         mono_json_writer_object_key(&writer, "plt");
11241         mono_json_writer_array_begin (&writer);
11242
11243         for (i = 0; i < acfg->plt_offset; ++i) {
11244                 MonoPltEntry *plt_entry = NULL;
11245                 MonoJumpInfo *ji;
11246
11247                 if (i == 0)
11248                         /* 
11249                          * The first plt entry is unused.
11250                          */
11251                         continue;
11252
11253                 plt_entry = g_hash_table_lookup (acfg->plt_offset_to_entry, GUINT_TO_POINTER (i));
11254                 ji = plt_entry->ji;
11255
11256                 mono_json_writer_indent (&writer);
11257                 mono_json_writer_printf (&writer, "{ ");
11258                 mono_json_writer_object_key(&writer, "symbol");
11259                 mono_json_writer_printf (&writer, "\"%s\" },\n", plt_entry->symbol);
11260         }
11261
11262         mono_json_writer_indent_pop (&writer);
11263         mono_json_writer_indent (&writer);
11264         mono_json_writer_array_end (&writer);
11265         mono_json_writer_printf (&writer, ",\n");
11266 #endif
11267
11268         // GOT entries
11269 #ifdef DUMP_GOT
11270         mono_json_writer_indent_push (&writer);
11271         mono_json_writer_indent (&writer);
11272         mono_json_writer_object_key(&writer, "got");
11273         mono_json_writer_array_begin (&writer);
11274
11275         mono_json_writer_indent_push (&writer);
11276         for (i = 0; i < acfg->got_info.got_patches->len; ++i) {
11277                 MonoJumpInfo *ji = g_ptr_array_index (acfg->got_info.got_patches, i);
11278
11279                 mono_json_writer_indent (&writer);
11280                 mono_json_writer_printf (&writer, "{ ");
11281                 mono_json_writer_object_key(&writer, "patch_name");
11282                 mono_json_writer_printf (&writer, "\"%s\" },\n", get_patch_name (ji->type));
11283         }
11284
11285         mono_json_writer_indent_pop (&writer);
11286         mono_json_writer_indent (&writer);
11287         mono_json_writer_array_end (&writer);
11288         mono_json_writer_printf (&writer, ",\n");
11289 #endif
11290
11291         mono_json_writer_indent_pop (&writer);
11292         mono_json_writer_indent (&writer);
11293         mono_json_writer_object_end (&writer);
11294
11295         dumpname = g_strdup_printf ("%s.json", g_path_get_basename (acfg->image->name));
11296         dumpfile = fopen (dumpname, "w+");
11297         g_free (dumpname);
11298
11299         fprintf (dumpfile, "%s", writer.text->str);
11300         fclose (dumpfile);
11301
11302         mono_json_writer_destroy (&writer);
11303 }
11304
11305 static const char *preinited_jit_icalls[] = {
11306         "mono_aot_init_llvm_method",
11307         "mono_aot_init_gshared_method_this",
11308         "mono_aot_init_gshared_method_mrgctx",
11309         "mono_aot_init_gshared_method_vtable",
11310         "mono_llvm_throw_corlib_exception",
11311         "mono_init_vtable_slot",
11312         "mono_helper_ldstr_mscorlib"
11313 };
11314
11315 static void
11316 add_preinit_got_slots (MonoAotCompile *acfg)
11317 {
11318         MonoJumpInfo *ji;
11319         int i;
11320
11321         /*
11322          * Allocate the first few GOT entries to information which is needed frequently, or it is needed
11323          * during method initialization etc.
11324          */
11325
11326         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11327         ji->type = MONO_PATCH_INFO_IMAGE;
11328         ji->data.image = acfg->image;
11329         get_got_offset (acfg, FALSE, ji);
11330         get_got_offset (acfg, TRUE, ji);
11331
11332         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11333         ji->type = MONO_PATCH_INFO_MSCORLIB_GOT_ADDR;
11334         get_got_offset (acfg, FALSE, ji);
11335         get_got_offset (acfg, TRUE, ji);
11336
11337         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11338         ji->type = MONO_PATCH_INFO_GC_CARD_TABLE_ADDR;
11339         get_got_offset (acfg, FALSE, ji);
11340         get_got_offset (acfg, TRUE, ji);
11341
11342         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11343         ji->type = MONO_PATCH_INFO_GC_NURSERY_START;
11344         get_got_offset (acfg, FALSE, ji);
11345         get_got_offset (acfg, TRUE, ji);
11346
11347         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11348         ji->type = MONO_PATCH_INFO_AOT_MODULE;
11349         get_got_offset (acfg, FALSE, ji);
11350         get_got_offset (acfg, TRUE, ji);
11351
11352         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11353         ji->type = MONO_PATCH_INFO_GC_NURSERY_BITS;
11354         get_got_offset (acfg, FALSE, ji);
11355         get_got_offset (acfg, TRUE, ji);
11356
11357         for (i = 0; i < TLS_KEY_NUM; i++) {
11358                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11359                 ji->type = MONO_PATCH_INFO_GET_TLS_TRAMP;
11360                 ji->data.index = i;
11361                 get_got_offset (acfg, FALSE, ji);
11362                 get_got_offset (acfg, TRUE, ji);
11363
11364                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11365                 ji->type = MONO_PATCH_INFO_SET_TLS_TRAMP;
11366                 ji->data.index = i;
11367                 get_got_offset (acfg, FALSE, ji);
11368                 get_got_offset (acfg, TRUE, ji);
11369         }
11370
11371         ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoJumpInfo));
11372         ji->type = MONO_PATCH_INFO_JIT_THREAD_ATTACH;
11373         get_got_offset (acfg, FALSE, ji);
11374         get_got_offset (acfg, TRUE, ji);
11375
11376         for (i = 0; i < sizeof (preinited_jit_icalls) / sizeof (char*); ++i) {
11377                 ji = (MonoJumpInfo *)mono_mempool_alloc0 (acfg->mempool, sizeof (MonoAotCompile));
11378                 ji->type = MONO_PATCH_INFO_INTERNAL_METHOD;
11379                 ji->data.name = preinited_jit_icalls [i];
11380                 get_got_offset (acfg, FALSE, ji);
11381                 get_got_offset (acfg, TRUE, ji);
11382         }
11383
11384         acfg->nshared_got_entries = acfg->got_offset;
11385 }
11386
11387 int
11388 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11389 {
11390         MonoImage *image = ass->image;
11391         int i, res;
11392         gint64 all_sizes;
11393         MonoAotCompile *acfg;
11394         char *outfile_name, *tmp_outfile_name, *p;
11395         char llvm_stats_msg [256];
11396         TV_DECLARE (atv);
11397         TV_DECLARE (btv);
11398
11399         acfg = acfg_create (ass, opts);
11400
11401         memset (&acfg->aot_opts, 0, sizeof (acfg->aot_opts));
11402         acfg->aot_opts.write_symbols = TRUE;
11403         acfg->aot_opts.ntrampolines = 4096;
11404         acfg->aot_opts.nrgctx_trampolines = 4096;
11405         acfg->aot_opts.nimt_trampolines = 512;
11406         acfg->aot_opts.nrgctx_fetch_trampolines = 128;
11407         acfg->aot_opts.ngsharedvt_arg_trampolines = 512;
11408         acfg->aot_opts.llvm_path = g_strdup ("");
11409         acfg->aot_opts.temp_path = g_strdup ("");
11410 #ifdef MONOTOUCH
11411         acfg->aot_opts.use_trampolines_page = TRUE;
11412 #endif
11413
11414         mono_aot_parse_options (aot_options, &acfg->aot_opts);
11415
11416         if (acfg->aot_opts.logfile) {
11417                 acfg->logfile = fopen (acfg->aot_opts.logfile, "a+");
11418         }
11419
11420         if (acfg->aot_opts.data_outfile) {
11421                 acfg->data_outfile = fopen (acfg->aot_opts.data_outfile, "w+");
11422                 if (!acfg->data_outfile) {
11423                         aot_printerrf (acfg, "Unable to create file '%s': %s\n", acfg->aot_opts.data_outfile, strerror (errno));
11424                         return 1;
11425                 }
11426                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SEPARATE_DATA);
11427         }
11428
11429         //acfg->aot_opts.print_skipped_methods = TRUE;
11430
11431 #if !defined(MONO_ARCH_GSHAREDVT_SUPPORTED)
11432         if (acfg->opts & MONO_OPT_GSHAREDVT) {
11433                 aot_printerrf (acfg, "-O=gsharedvt not supported on this platform.\n");
11434                 return 1;
11435         }
11436         if (acfg->aot_opts.llvm_only) {
11437                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime that supports gsharedvt.\n");
11438                 return 1;
11439         }
11440 #else
11441         if (acfg->aot_opts.llvm_only || mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11442                 acfg->opts |= MONO_OPT_GSHAREDVT;
11443 #endif
11444
11445 #if !defined(ENABLE_LLVM)
11446         if (acfg->aot_opts.llvm_only) {
11447                 aot_printerrf (acfg, "--aot=llvmonly requires a runtime compiled with llvm support.\n");
11448                 return 1;
11449         }
11450 #endif
11451
11452         if (acfg->opts & MONO_OPT_GSHAREDVT)
11453                 mono_set_generic_sharing_vt_supported (TRUE);
11454
11455         aot_printf (acfg, "Mono Ahead of Time compiler - compiling assembly %s\n", image->name);
11456
11457         generate_aotid ((guint8*) &acfg->image->aotid);
11458
11459         char *aotid = mono_guid_to_string (acfg->image->aotid);
11460         aot_printf (acfg, "AOTID %s\n", aotid);
11461         g_free (aotid);
11462
11463 #ifndef MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES
11464         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11465                 aot_printerrf (acfg, "--aot=full is not supported on this platform.\n");
11466                 return 1;
11467         }
11468 #endif
11469
11470         if (acfg->aot_opts.direct_pinvoke && !acfg->aot_opts.static_link) {
11471                 aot_printerrf (acfg, "The 'direct-pinvoke' AOT option also requires the 'static' AOT option.\n");
11472                 return 1;
11473         }
11474
11475         if (acfg->aot_opts.static_link)
11476                 acfg->aot_opts.asm_writer = TRUE;
11477
11478         if (acfg->aot_opts.soft_debug) {
11479                 MonoDebugOptions *opt = mini_get_debug_options ();
11480
11481                 opt->mdb_optimizations = TRUE;
11482                 opt->gen_sdb_seq_points = TRUE;
11483
11484                 if (!mono_debug_enabled ()) {
11485                         aot_printerrf (acfg, "The soft-debug AOT option requires the --debug option.\n");
11486                         return 1;
11487                 }
11488                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_DEBUG);
11489         }
11490
11491         if (mono_use_llvm || acfg->aot_opts.llvm) {
11492                 acfg->llvm = TRUE;
11493                 acfg->aot_opts.asm_writer = TRUE;
11494                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_WITH_LLVM);
11495
11496                 if (acfg->aot_opts.soft_debug) {
11497                         aot_printerrf (acfg, "The 'soft-debug' option is not supported when compiling with LLVM.\n");
11498                         return 1;
11499                 }
11500
11501                 mini_llvm_init ();
11502
11503                 if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_outfile) {
11504                         aot_printerrf (acfg, "Compiling with LLVM and the asm-only option requires the llvm-outfile= option.\n");
11505                         return 1;
11506                 }
11507         }
11508
11509         if (mono_aot_mode_is_full (&acfg->aot_opts)) {
11510                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_FULL_AOT);
11511                 acfg->is_full_aot = TRUE;
11512         }
11513
11514         if (mono_threads_is_coop_enabled ())
11515                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_SAFEPOINTS);
11516
11517         if (acfg->aot_opts.instances_logfile_path) {
11518                 acfg->instances_logfile = fopen (acfg->aot_opts.instances_logfile_path, "w");
11519                 if (!acfg->instances_logfile) {
11520                         aot_printerrf (acfg, "Unable to create logfile: '%s'.\n", acfg->aot_opts.instances_logfile_path);
11521                         return 1;
11522                 }
11523         }
11524
11525         if (acfg->aot_opts.profile_files) {
11526                 GList *l;
11527
11528                 for (l = acfg->aot_opts.profile_files; l; l = l->next) {
11529                         load_profile_file (acfg, (char*)l->data);
11530                 }
11531         }
11532
11533         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11534                 int method_index;
11535
11536        for (method_index = 0; method_index < acfg->image->tables [MONO_TABLE_METHOD].rows; ++method_index) {
11537                    g_ptr_array_add (acfg->method_order,GUINT_TO_POINTER (method_index));
11538        }
11539         }
11540
11541         acfg->num_trampolines [MONO_AOT_TRAMP_SPECIFIC] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ntrampolines : 0;
11542 #ifdef MONO_ARCH_GSHARED_SUPPORTED
11543         acfg->num_trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nrgctx_trampolines : 0;
11544 #endif
11545         acfg->num_trampolines [MONO_AOT_TRAMP_IMT] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.nimt_trampolines : 0;
11546 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
11547         if (acfg->opts & MONO_OPT_GSHAREDVT)
11548                 acfg->num_trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = mono_aot_mode_is_full (&acfg->aot_opts) ? acfg->aot_opts.ngsharedvt_arg_trampolines : 0;
11549 #endif
11550
11551         acfg->temp_prefix = mono_img_writer_get_temp_label_prefix (NULL);
11552
11553         arch_init (acfg);
11554
11555         if (mono_use_llvm || acfg->aot_opts.llvm) {
11556
11557                 /*
11558                  * Emit all LLVM code into a separate assembly/object file and link with it
11559                  * normally.
11560                  */
11561                 if (!acfg->aot_opts.asm_only && acfg->llvm_owriter_supported) {
11562                         acfg->llvm_owriter = TRUE;
11563                 } else if (acfg->aot_opts.llvm_outfile) {
11564                         int len = strlen (acfg->aot_opts.llvm_outfile);
11565
11566                         if (len >= 2 && acfg->aot_opts.llvm_outfile [len - 2] == '.' && acfg->aot_opts.llvm_outfile [len - 1] == 'o')
11567                                 acfg->llvm_owriter = TRUE;
11568                 }
11569         }
11570
11571         if (acfg->llvm && acfg->thumb_mixed)
11572                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_THUMB);
11573         if (acfg->aot_opts.llvm_only)
11574                 acfg->flags = (MonoAotFileFlags)(acfg->flags | MONO_AOT_FILE_FLAG_LLVM_ONLY);
11575
11576         acfg->assembly_name_sym = g_strdup (acfg->image->assembly->aname.name);
11577         /* Get rid of characters which cannot occur in symbols */
11578         for (p = acfg->assembly_name_sym; *p; ++p) {
11579                 if (!(isalnum (*p) || *p == '_'))
11580                         *p = '_';
11581         }
11582
11583         acfg->global_prefix = g_strdup_printf ("mono_aot_%s", acfg->assembly_name_sym);
11584         acfg->plt_symbol = g_strdup_printf ("%s_plt", acfg->global_prefix);
11585         acfg->got_symbol = g_strdup_printf ("%s_got", acfg->global_prefix);
11586         if (acfg->llvm) {
11587                 acfg->llvm_got_symbol = g_strdup_printf ("%s_llvm_got", acfg->global_prefix);
11588                 acfg->llvm_eh_frame_symbol = g_strdup_printf ("%s_eh_frame", acfg->global_prefix);
11589         }
11590
11591         acfg->method_index = 1;
11592
11593         if (mono_aot_mode_is_full (&acfg->aot_opts) || mono_aot_mode_is_hybrid (&acfg->aot_opts))
11594                 mono_set_partial_sharing_supported (TRUE);
11595
11596         if (!mono_aot_mode_is_interp (&acfg->aot_opts)) {
11597                 res = collect_methods (acfg);
11598
11599                 if (!res)
11600                         return 1;
11601         }
11602
11603         {
11604                 GList *l;
11605
11606                 for (l = acfg->profile_data; l; l = l->next)
11607                         resolve_profile_data (acfg, (ProfileData*)l->data);
11608                 for (l = acfg->profile_data; l; l = l->next)
11609                         add_profile_instances (acfg, (ProfileData*)l->data);
11610         }
11611
11612         acfg->cfgs_size = acfg->methods->len + 32;
11613         acfg->cfgs = g_new0 (MonoCompile*, acfg->cfgs_size);
11614
11615         /* PLT offset 0 is reserved for the PLT trampoline */
11616         acfg->plt_offset = 1;
11617         add_preinit_got_slots (acfg);
11618
11619 #ifdef ENABLE_LLVM
11620         if (acfg->llvm) {
11621                 llvm_acfg = acfg;
11622                 mono_llvm_create_aot_module (acfg->image->assembly, acfg->global_prefix, TRUE, acfg->aot_opts.static_link, acfg->aot_opts.llvm_only);
11623         }
11624 #endif
11625
11626         if (mono_aot_mode_is_interp (&acfg->aot_opts)) {
11627                 MonoMethod *wrapper;
11628                 MonoMethodSignature *sig;
11629
11630                 /* object object:interp_in_static (object,intptr,intptr,intptr) */
11631                 sig = mono_create_icall_signature ("object object ptr ptr ptr");
11632                 wrapper = mini_get_interp_in_wrapper (sig);
11633                 add_method (acfg, wrapper);
11634
11635                 /* int object:interp_in_static (intptr,int,intptr) */
11636                 sig = mono_create_icall_signature ("int32 ptr int32 ptr");
11637                 wrapper = mini_get_interp_in_wrapper (sig);
11638                 add_method (acfg, wrapper);
11639
11640                 /* void object:interp_in_static (object,intptr,intptr,intptr) */
11641                 sig = mono_create_icall_signature ("void object ptr ptr ptr");
11642                 wrapper = mini_get_interp_in_wrapper (sig);
11643                 add_method (acfg, wrapper);
11644         }
11645
11646         TV_GETTIME (atv);
11647
11648         compile_methods (acfg);
11649
11650         TV_GETTIME (btv);
11651
11652         acfg->stats.jit_time = TV_ELAPSED (atv, btv);
11653
11654         TV_GETTIME (atv);
11655
11656 #ifdef ENABLE_LLVM
11657         if (acfg->llvm) {
11658                 if (acfg->aot_opts.asm_only) {
11659                         if (acfg->aot_opts.outfile) {
11660                                 acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11661                                 acfg->tmpbasename = g_strdup (acfg->tmpfname);
11662                         } else {
11663                                 acfg->tmpbasename = g_strdup_printf ("%s", acfg->image->name);
11664                                 acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11665                         }
11666                         g_assert (acfg->aot_opts.llvm_outfile);
11667                         acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11668                         if (acfg->llvm_owriter)
11669                                 acfg->llvm_ofile = g_strdup (acfg->aot_opts.llvm_outfile);
11670                         else
11671                                 acfg->llvm_sfile = g_strdup (acfg->aot_opts.llvm_outfile);
11672                 } else {
11673                         acfg->tmpbasename = (strcmp (acfg->aot_opts.temp_path, "") == 0) ?
11674                                 g_strdup_printf ("%s", "temp") :
11675                                 g_build_filename (acfg->aot_opts.temp_path, "temp", NULL);
11676                                 
11677                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->tmpbasename);
11678                         acfg->llvm_sfile = g_strdup_printf ("%s-llvm.s", acfg->tmpbasename);
11679                         acfg->llvm_ofile = g_strdup_printf ("%s-llvm.o", acfg->tmpbasename);
11680                 }
11681         }
11682 #endif
11683
11684         if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_only) {
11685                 if (acfg->aot_opts.outfile)
11686                         acfg->tmpfname = g_strdup_printf ("%s", acfg->aot_opts.outfile);
11687                 else
11688                         acfg->tmpfname = g_strdup_printf ("%s.s", acfg->image->name);
11689                 acfg->fp = fopen (acfg->tmpfname, "w+");
11690         } else {
11691                 int i = g_file_open_tmp ("mono_aot_XXXXXX", &acfg->tmpfname, NULL);
11692                 acfg->fp = fdopen (i, "w+");
11693         }
11694         if (acfg->fp == 0 && !acfg->aot_opts.llvm_only) {
11695                 aot_printerrf (acfg, "Unable to open file '%s': %s\n", acfg->tmpfname, strerror (errno));
11696                 return 1;
11697         }
11698         if (acfg->fp)
11699                 acfg->w = mono_img_writer_create (acfg->fp, FALSE);
11700
11701         tmp_outfile_name = NULL;
11702         outfile_name = NULL;
11703
11704         /* Compute symbols for methods */
11705         for (i = 0; i < acfg->nmethods; ++i) {
11706                 if (acfg->cfgs [i]) {
11707                         MonoCompile *cfg = acfg->cfgs [i];
11708                         int method_index = get_method_index (acfg, cfg->orig_method);
11709
11710                         if (COMPILE_LLVM (cfg))
11711                                 cfg->asm_symbol = g_strdup_printf ("%s%s", acfg->llvm_label_prefix, cfg->llvm_method_name);
11712                         else if (acfg->global_symbols || acfg->llvm)
11713                                 cfg->asm_symbol = get_debug_sym (cfg->orig_method, "", acfg->method_label_hash);
11714                         else
11715                                 cfg->asm_symbol = g_strdup_printf ("%s%sm_%x", acfg->temp_prefix, acfg->llvm_label_prefix, method_index);
11716                         cfg->asm_debug_symbol = cfg->asm_symbol;
11717                 }
11718         }
11719
11720         if (acfg->aot_opts.dwarf_debug && acfg->aot_opts.gnu_asm) {
11721                 /*
11722                  * CLANG supports GAS .file/.loc directives, so emit line number information this way
11723                  */
11724                 acfg->gas_line_numbers = TRUE;
11725         }
11726
11727 #ifdef EMIT_DWARF_INFO
11728         if ((!acfg->aot_opts.nodebug || acfg->aot_opts.dwarf_debug) && acfg->has_jitted_code) {
11729                 if (acfg->aot_opts.dwarf_debug && !mono_debug_enabled ()) {
11730                         aot_printerrf (acfg, "The dwarf AOT option requires the --debug option.\n");
11731                         return 1;
11732                 }
11733                 acfg->dwarf = mono_dwarf_writer_create (acfg->w, NULL, 0, !acfg->gas_line_numbers);
11734         }
11735 #endif /* EMIT_DWARF_INFO */
11736
11737         if (acfg->w)
11738                 mono_img_writer_emit_start (acfg->w);
11739
11740         if (acfg->dwarf)
11741                 mono_dwarf_writer_emit_base_info (acfg->dwarf, g_path_get_basename (acfg->image->name), mono_unwind_get_cie_program ());
11742
11743         emit_code (acfg);
11744
11745         emit_info (acfg);
11746
11747         emit_extra_methods (acfg);
11748
11749         emit_trampolines (acfg);
11750
11751         emit_class_name_table (acfg);
11752
11753         emit_got_info (acfg, FALSE);
11754         if (acfg->llvm)
11755                 emit_got_info (acfg, TRUE);
11756
11757         emit_exception_info (acfg);
11758
11759         emit_unwind_info (acfg);
11760
11761         emit_class_info (acfg);
11762
11763         emit_plt (acfg);
11764
11765         emit_image_table (acfg);
11766
11767         emit_got (acfg);
11768
11769         {
11770                 /*
11771                  * The managed allocators are GC specific, so can't use an AOT image created by one GC
11772                  * in another.
11773                  */
11774                 const char *gc_name = mono_gc_get_gc_name ();
11775                 acfg->gc_name_offset = add_to_blob (acfg, (guint8*)gc_name, strlen (gc_name) + 1);
11776         }
11777
11778         emit_blob (acfg);
11779
11780         emit_objc_selectors (acfg);
11781
11782         emit_globals (acfg);
11783
11784         emit_file_info (acfg);
11785
11786         emit_library_info (acfg);
11787
11788         if (acfg->dwarf) {
11789                 emit_dwarf_info (acfg);
11790                 mono_dwarf_writer_close (acfg->dwarf);
11791         }
11792
11793         emit_mem_end (acfg);
11794
11795         if (acfg->need_pt_gnu_stack) {
11796                 /* This is required so the .so doesn't have an executable stack */
11797                 /* The bin writer already emits this */
11798                 fprintf (acfg->fp, "\n.section  .note.GNU-stack,\"\",@progbits\n");
11799         }
11800
11801         if (acfg->aot_opts.data_outfile)
11802                 fclose (acfg->data_outfile);
11803
11804 #ifdef ENABLE_LLVM
11805         if (acfg->llvm) {
11806                 gboolean res;
11807
11808                 res = emit_llvm_file (acfg);
11809                 if (!res)
11810                         return 1;
11811         }
11812 #endif
11813
11814         TV_GETTIME (btv);
11815
11816         acfg->stats.gen_time = TV_ELAPSED (atv, btv);
11817
11818         if (acfg->llvm)
11819                 sprintf (llvm_stats_msg, ", LLVM: %d (%d%%)", acfg->stats.llvm_count, acfg->stats.mcount ? (acfg->stats.llvm_count * 100) / acfg->stats.mcount : 100);
11820         else
11821                 strcpy (llvm_stats_msg, "");
11822
11823         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;
11824
11825         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",
11826                                 (int)acfg->stats.code_size, (int)(acfg->stats.code_size * 100 / all_sizes),
11827                                 (int)acfg->stats.info_size, (int)(acfg->stats.info_size * 100 / all_sizes),
11828                                 (int)acfg->stats.ex_info_size, (int)(acfg->stats.ex_info_size * 100 / all_sizes),
11829                                 (int)acfg->stats.unwind_info_size, (int)(acfg->stats.unwind_info_size * 100 / all_sizes),
11830                                 (int)acfg->stats.class_info_size, (int)(acfg->stats.class_info_size * 100 / all_sizes),
11831                                 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,
11832                                 (int)acfg->stats.got_info_size, (int)(acfg->stats.got_info_size * 100 / all_sizes),
11833                                 (int)acfg->stats.offsets_size, (int)(acfg->stats.offsets_size * 100 / all_sizes),
11834                         (int)(acfg->got_offset * sizeof (gpointer)));
11835         aot_printf (acfg, "Compiled: %d/%d (%d%%)%s, No GOT slots: %d (%d%%), Direct calls: %d (%d%%)\n", 
11836                         acfg->stats.ccount, acfg->stats.mcount, acfg->stats.mcount ? (acfg->stats.ccount * 100) / acfg->stats.mcount : 100,
11837                         llvm_stats_msg,
11838                         acfg->stats.methods_without_got_slots, acfg->stats.mcount ? (acfg->stats.methods_without_got_slots * 100) / acfg->stats.mcount : 100,
11839                         acfg->stats.direct_calls, acfg->stats.all_calls ? (acfg->stats.direct_calls * 100) / acfg->stats.all_calls : 100);
11840         if (acfg->stats.genericcount)
11841                 aot_printf (acfg, "%d methods are generic (%d%%)\n", acfg->stats.genericcount, acfg->stats.mcount ? (acfg->stats.genericcount * 100) / acfg->stats.mcount : 100);
11842         if (acfg->stats.abscount)
11843                 aot_printf (acfg, "%d methods contain absolute addresses (%d%%)\n", acfg->stats.abscount, acfg->stats.mcount ? (acfg->stats.abscount * 100) / acfg->stats.mcount : 100);
11844         if (acfg->stats.lmfcount)
11845                 aot_printf (acfg, "%d methods contain lmf pointers (%d%%)\n", acfg->stats.lmfcount, acfg->stats.mcount ? (acfg->stats.lmfcount * 100) / acfg->stats.mcount : 100);
11846         if (acfg->stats.ocount)
11847                 aot_printf (acfg, "%d methods have other problems (%d%%)\n", acfg->stats.ocount, acfg->stats.mcount ? (acfg->stats.ocount * 100) / acfg->stats.mcount : 100);
11848
11849         TV_GETTIME (atv);
11850         if (acfg->w) {
11851                 res = mono_img_writer_emit_writeout (acfg->w);
11852                 if (res != 0) {
11853                         acfg_free (acfg);
11854                         return res;
11855                 }
11856                 res = compile_asm (acfg);
11857                 if (res != 0) {
11858                         acfg_free (acfg);
11859                         return res;
11860                 }
11861         }
11862         TV_GETTIME (btv);
11863         acfg->stats.link_time = TV_ELAPSED (atv, btv);
11864
11865         if (acfg->aot_opts.stats) {
11866                 int i;
11867
11868                 aot_printf (acfg, "GOT slot distribution:\n");
11869                 for (i = 0; i < MONO_PATCH_INFO_NUM; ++i)
11870                         if (acfg->stats.got_slot_types [i])
11871                                 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]);
11872                 aot_printf (acfg, "\nMethod stats:\n");
11873                 aot_printf (acfg, "\tNormal:    %d\n", acfg->stats.method_categories [METHOD_CAT_NORMAL]);
11874                 aot_printf (acfg, "\tInstance:  %d\n", acfg->stats.method_categories [METHOD_CAT_INST]);
11875                 aot_printf (acfg, "\tGSharedvt: %d\n", acfg->stats.method_categories [METHOD_CAT_GSHAREDVT]);
11876                 aot_printf (acfg, "\tWrapper:   %d\n", acfg->stats.method_categories [METHOD_CAT_WRAPPER]);
11877         }
11878
11879         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);
11880
11881         if (acfg->aot_opts.dump_json)
11882                 aot_dump (acfg);
11883
11884         acfg_free (acfg);
11885         
11886         return 0;
11887 }
11888
11889 #else
11890
11891 /* AOT disabled */
11892
11893 void*
11894 mono_aot_readonly_field_override (MonoClassField *field)
11895 {
11896         return NULL;
11897 }
11898
11899 int
11900 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
11901 {
11902         return 0;
11903 }
11904
11905 gboolean
11906 mono_aot_is_shared_got_offset (int offset)
11907 {
11908         return FALSE;
11909 }
11910
11911 #endif