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