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